/* header */
header {
    position: fixed;
    z-index: 100;
    width: 100%;
    margin-top: 10px;
    top: 0;
}

@media screen and (max-width: 600px) {
    header {
        margin-top: 0;
    }
}

header .header_wrapper {
    padding: 10px 40px;
    margin-left: 50px;
    margin-right: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 40px;
}

@media screen and (max-width: 1440px) {
    header .header_wrapper {
        padding: 10px 30px;
    }
}

@media screen and (max-width: 1024px) {
    header .header_wrapper {
        padding: 10px 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media screen and (max-width: 600px) {
    header .header_wrapper {       
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
    }
}

header .header_wrapper .header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header_content .main_logo {
    display: flex;
    align-items: center;
}

.header_content .main_logo img {
    width: 45px;
    margin-top: 10px;
    margin-right: 8px;
}

@media screen and (max-width: 1024px) {
    .header_content .main_logo img {
        width: 40px;
        margin-top: 7px;
    }
}

@media screen and (max-width: 810px) {
    .header_content .main_logo img {
        width: 28px;
        margin-top: 4px;
        margin-right: 5px;
    }
}

@media screen and (max-width: 600px) {
    .header_content .main_logo img {
        width: 24px;
        margin-top: 2px;
    }
}

.header_content .main_logo .logo_right_upside {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 20px;
    margin-bottom: 4px;
    margin-left: 1px;
}

@media screen and (max-width: 1024px) {
    .header_content .main_logo .logo_right_upside {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: .4px;
        line-height: 17px;
    }
}

@media screen and (max-width: 810px) {
    .header_content .main_logo .logo_right_upside {
        font-size: 10px;
        line-height: 10px;
        margin-bottom: 2px;
        margin-left: 2px;
    }
}

@media screen and (max-width: 600px) {
    .header_content .main_logo .logo_right_upside {
        font-size: 8px;
        line-height: 8px;
        margin-bottom: 1px;
        margin-left: 1px;
    }
}

.header_content .main_logo .main_logo_right {
    text-align: left;
}

@media screen and (max-width: 412px) {
    .header_content .main_logo .main_logo_right {
        text-align: left;
    }
}

.header_content .main_logo .logo_right_downside {
    font-size: 54px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 40px;
    color: #A3C2C7;
}

@media screen and (max-width: 1024px) {
    .header_content .main_logo .logo_right_downside {
        font-size: 51px;
        letter-spacing: 2px;
    }
}

@media screen and (max-width: 810px) {
    .header_content .main_logo .logo_right_downside {
        font-size: 28px;
        line-height: 28px;
    }
}

@media screen and (max-width: 600px) {
    .header_content .main_logo .logo_right_downside {
        font-size: 24px;
        line-height: 24px;
        letter-spacing: 1px;
    }
}

header .header_wrapper .header_content .pc_menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 45%;
    margin-left: 200px;
}

@media screen and (max-width: 1440px) {
    header .header_wrapper .header_content .pc_menu {
        width: 58%;
        margin-left: 0;
    }
}


header .header_wrapper .header_content .pc_menu li {
    font-size: 16px;
    font-weight: 600;
}

header .header_wrapper .header_content .pc_menu .non_drop_menu:hover a {
    opacity: .4;
    transition: .5s;
}

header .header_wrapper .header_content .header_pc_right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    header .header_wrapper .header_content .header_pc_right {
        margin-right: 55px;
    }
}

@media screen and (max-width: 600px) {
    header .header_wrapper .header_content .header_pc_right {
        margin-right: 41px;
    }
}

header .header_wrapper .header_content .header_pc_right a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #A3C2C7;
    background-color: #A3C2C7;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 1440px) {
    header .header_wrapper .header_content .header_pc_right a {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 600px) {
    header .header_wrapper .header_content .header_pc_right a {
        width: 30px;
        height: 30px;
    }
}

header .header_wrapper .header_content .header_pc_right a:hover {
    background-color: rgba(255, 255, 255, 0);
    transition: .5s;
}

header .header_wrapper .header_content .header_pc_right li {
    margin-right: 20px;
}

@media screen and (max-width: 1440px) {
    header .header_wrapper .header_content .header_pc_right li {
        margin-right: 15px;
    }
}

@media screen and (max-width: 600px) {
    header .header_wrapper .header_content .header_pc_right li {
        margin-right: 8px;
    }
}

header .header_wrapper .header_content .header_pc_right li:last-child {
    margin-right: 0;
}

header .header_wrapper .header_content .header_pc_right a i {
    color: #fff;
    font-size: 22px;
    margin-left: 1px;
}

@media screen and (max-width: 600px) {
    header .header_wrapper .header_content .header_pc_right a i {
        font-size: 15px;
    }
}

header .header_wrapper .header_content .header_pc_right a:hover i {
    color: #A3C2C7;
    transition: .5s;
}

@media screen and (max-width: 1024px) {
    header .header_wrapper .header_content .pc_menu {
        display: none;
    }
}

#sp_menu {
    position: fixed;
    display: none;
    z-index: 150;
    background-color: rgba(163, 194, 199, .9);
    width: 40%;
    top: 0;
    right: 0;
    text-align: left;
    padding: 60px 30px 30px 30px;
    font-size: 16px;
    border-radius: 40px;
    margin: 10px 20px;
}

@media screen and (max-width: 810px) {
    #sp_menu {
        width: 50%;
        padding: 50px 30px 30px 30px;
    }
}

@media screen and (max-width: 600px) {
    #sp_menu {
        width: 100%;
        height: 100vh;
        padding: 200px 50px;
        border-radius: 0 0 0 0;
        margin: 0;
    }
}

#sp_menu li {
    color: #555;
}

#sp_menu .sp_menu_list {
    border-bottom: 1px solid #f4f4f4;
    margin-bottom: 8px;
    padding-bottom: 8px;
}

#sp_menu .list_flex {
    display: flex;
    align-items: flex-start;
}

#sp_menu .sp_menu_list_child_older {
    width: 48%;
}

#sp_menu .sp_menu_list_child {
    font-size: 14px;
    position: relative;
}

#sp_menu .sp_menu_list_child::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 5px solid #555;
    top: 43%;
    left: -15px;
}

#sp_menu .sp_menu_list_child a {
    color: #555;
}

#sp_menu li a {
    color: #555;
}

/* Drop Down Menu */

/* PC Menu Drop Down */

.pc_menu .drop_menu {
    position: relative;
}

.pc_menu .drop_menu .drop-menu-list {
    position: absolute;
    background-color: rgba(163, 194, 199, .8);
    border-radius: 5px;
    width: 135px;
    padding: 10px 10px 10px 40px;
    opacity: 0;
}

.pc_menu .drop_menu .drop-menu-item a {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.pc_menu .drop_menu .drop-menu-item a:hover {
    color: #F4CE20;
    transition: .5s;
}

.pc_menu .drop_menu .drop-menu-item .drop-menu-item01::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
    border-right: 0;
    top: 25%;
    left: 15px;
}

.pc_menu .drop_menu .drop-menu-item .drop-menu-item01:hover::before {
    border-left: 8px solid #F4CE20;
    transition: .5s;
}

.pc_menu .drop_menu .drop-menu-item .drop-menu-item02::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
    border-right: 0;
    top: 63%;
    left: 15px;
}
.pc_menu .drop_menu .drop-menu-item .drop-menu-item02:hover::before {
    border-left: 8px solid #F4CE20;
    transition: .5s;
}

.pc_menu .drop_menu:hover .drop-menu-list {
    opacity: 1;
    transition: .5s;
}

/* Hamberger Menu */

header .header_wrapper .header_content .hamburger {
    display: none;
}

@media screen and (max-width: 1024px) {
    header .header_wrapper .header_content .hamburger {
        display: block;
    }
}

.hamburger {
    position: absolute;
    top: 28px;
    right:40px;
    cursor: pointer;
    width: 34px;
    height: 24px;
    z-index: 300;
}

@media screen and (max-width: 810px) {
    .hamburger {
        position: absolute;
        top: 17px;
    }
}

@media screen and (max-width: 600px) {
    .hamburger {
        right: 11.5px;
        top: 14px;
    }
}

.hamburger span {
    /*3本の線を作る*/
    transition: all .3s;
    position: absolute;
    height: 2px;
    background-color: #555;
    border-radius: 5px;
    width:100%;
    z-index: 250;
}

@media screen and (max-width: 600px) {
    .hamburger span {
        width:75%;
    }
}


.hamburger span:nth-of-type(1) {
    /*上の線の位置*/
    top: 4px;
}
.hamburger span:nth-of-type(2) {
    /*真ん中の線の位置*/
    top: 12px;
}
.hamburger span:nth-of-type(3) {
    /*下の線の位置*/
    top: 20px;
}
.hamburger.open span:nth-of-type(1) {
    /*openのとき、上の線を右斜めにする*/
    top: 7px;
    transform: translateY(6px) rotate(-33deg);
}
.hamburger.open span:nth-of-type(2) {
    /*真ん中の線を消す*/
    opacity: 0;
}

.hamburger.open span:nth-of-type(3) {
    /*下の線を左斜めにする*/
    top: 19px;
    transform: translateY(-6px) rotate(33deg);
}

/* flex_box */

.flex_box_1 {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

@media screen and (max-width: 600px) {
    .flex_box_1 {
        display: block;
        text-align: center;
    }
}

/* heading */

.heading {
    text-align: center;
    margin-bottom: 50px;
}

@media screen and (max-width: 810px) {
    .heading {
        margin-bottom: 30px;
    }
}

.heading_decoration {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.heading_decoration .decoration_block {
    width: 12px;
    height: 25px;
    background-color: #A3C2C7;
    transform: skewX(-25deg);
    border-radius: 2.5px;
}

@media screen and (max-width: 810px) {
    .heading_decoration .decoration_block {
        width: 8px;
        height: 18px;
        border-radius: 2px;
    }
}

.heading_decoration .decoration_01 {
    margin-right: 1px;
    background-color: #F4CE20;
}

.heading_decoration .decoration_02 {
    margin-right: 13px;
}

@media screen and (max-width: 810px) {
    .heading_decoration .decoration_02 {
        margin-right: 8px;
    }
}

.heading_decoration .decoration_03 {
    margin-left: 13px;
}

@media screen and (max-width: 810px) {
    .heading_decoration .decoration_03 {
        margin-left: 8px;
    }
}

.heading_decoration .decoration_04 {
    margin-left: 1px;
}

h2 {
    font-size: 30px;
    position: relative;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 600;
    font-style: normal;    
}

@media screen and (max-width: 1024px) {
    h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 810px) {
    h2 {
        font-size: 24px;
    }
}

.heading p {
    font-size: 16px;
    letter-spacing: 5px;
    color: #A3C2C7;
}

@media screen and (max-width: 810px) {
    .heading p {
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 5px;
        color: #A3C2C7;
    }
}

/* button */

.button {
    width: 280px;
    height: 70px;
    background-color: #A3C2C7;
    color: #fff;
    border: 1px solid #A3C2C7;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 70px;
    letter-spacing: 2.5px;
    position:relative;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1024px) {
    .button {
        width: 200px;
        height: 60px;
        font-size: 14px;
        font-weight: 500;
        line-height: 60px;
    }
}

@media screen and (max-width: 600px) {
    .button {
        width: 165px;
        height: 50px;
        font-size: 12px;
        font-weight: 600;
        line-height: 50px;
    }
}

.button::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
    border-right: 0;
    top: 42%;
    right: 16px;
}

@media screen and (max-width: 600px) {
    .button::after {
        border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
        border-left: 5px solid #fff;
        top: 43%;
        right: 12px;
    }
}

.button:hover {
    background-color: #fff;
    color: #A3C2C7;
    transition: .5s;
}

.button:hover::after {
    border-left: 8px solid #A3C2C7;
    transition: .5s;
}

/* news */

.news_wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

@media screen and (max-width: 1440px) {
    .news_wrapper {
        max-width: 1000px;
    }
}

@media screen and (max-width: 1024px) {
    .news_wrapper {
        max-width: 800px;
    }
}

@media screen and (max-width: 810px) {
    .news_wrapper {
        max-width: 80%;
    }
}

@media screen and (max-width: 600px) {
    .news_wrapper {
        max-width: 100%;
    }
}

.news_wrapper .heading {
    margin-top: 220px;
}

@media screen and (max-width: 1024px) {
    .news_wrapper .heading {
        margin-top: 120px;
    }
}

@media screen and (max-width: 600px) {
    .news_wrapper .heading {
        margin-top: 90px;
        margin-bottom: 30px;
    }
}

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

@media screen and (max-width: 810px) {
    .news_flex {
        display: block;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        justify-content: initial;
    }
}

@media screen and (max-width: 810px) {
    .news_flex .side_bar {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        grid-row: 2 / 3;
        margin-top: 0;
        margin-bottom: 50px;
        padding-bottom: 30px;
        border-bottom: 1px solid #e4e4e4;
    }
}

@media screen and (max-width: 600px) {
    .news_flex .side_bar {
        padding-bottom: 0;
    }
}

.news_wrapper .news_category_btn {
    display: block;
}

.news_wrapper .news_btn {
    background-color: #fff;
    color: #A3C2C7;
    border: 1px solid #A3C2C7;
}

.news_wrapper .news_btn:hover {
    background-color: #A3C2C7;
    color: #fff;
    transition: .5s;
}

@media screen and (max-width: 810px) {
    .news_wrapper .button {
        width: 143px;
        height: 57px;
        line-height: 57px;
    }
}

@media screen and (max-width: 600px) {
    .news_wrapper .button {
        width: 100px;
        height: 45px;
        line-height: 45px;
    }
}

.news_wrapper .button::after {
    display: none;
}


/* News List Content */

.news_list {
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 30px;
}

@media screen and (max-width: 1024px) {
    .news_list {
        padding-bottom: 20px;
        font-size: 14px;
    }
}

.news_list .news_list_items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.news_category_box {
    background-color: #999;
    padding: 0 8px;
    border-radius: 5px;
    margin: 0 15px 0 0;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .news_category {
        padding: 0 5px;
        font-size: 10px;
        line-height: 17px;
    }
}

.news_category_box .news_category {
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1px;
}

.news_date {
    margin-right: 30px;
    color: #c0c0c0;
}

@media screen and (max-width: 1024px) {
    .news_date {
        margin-right: 20px;
    }
}

.news_title {
    font-size: 18px;
    text-align: left;
}

@media screen and (max-width: 1024px) {
    .news_title {
        font-size: 16px;
    }
}

.news_list a:hover .news_category,
.news_list a:hover .news_date,
.news_list a:hover .news_title {
    opacity: .4;
    transition: .5s;
}


/* footer */

footer {
    width: 100%;
    background-color: #f4f4f4;
}

footer .footer_main {
    padding: 150px 0;
}

@media screen and (max-width: 1024px) {
    footer .footer_main {
        padding: 100px 0;
    }
}

@media screen and (max-width: 600px) {
    footer .footer_main {
        padding: 50px 0;
    }
}

footer .footer_wrapper {
        max-width: 1100px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        margin-left: auto;
        margin-right: auto;
    }

@media screen and (max-width: 810px) {
    footer .footer_wrapper {
        display: block;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

footer .footer_content {
    width: 50%;
}

@media screen and (max-width: 810px) {
    footer .footer_content {
        width: 100%;
        margin-bottom: 30px;
    }
}

footer .map_box {
    width: 48%;
    overflow: hidden;
}

@media screen and (max-width: 810px) {
    footer .map_box {
        width: 100%;
    }
}

@media screen and (max-width: 810px) {
    footer .map_box iframe {
        width: 100%;
    }
}

footer .footer_logo {
    display: flex;
    align-items: center;
}

footer .footer_logo img {
    width: 45px;
    margin-top: 10px;
    margin-right: 8px;
}

footer .footer_logo_right {
    text-align: left;
}

footer .logo_title_upside {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 20px;
    margin-left: 3px;
    margin-bottom: 5px;
}

footer .logo_title_downside {
    font-size: 54px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 40px;
    color: #A3C2C7;
}

footer .business_hours_box {
    text-align: left;
    margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
    footer .business_hours_box .flex_box_1 {
        text-align: left;
    }
}

footer .business_hours_box .flex_box_1 {
    justify-content: initial;
    flex-wrap: wrap;
}

footer .business_hours_box .flex_box_1 .footer_business_hour {
    margin-right: 20px;
}

@media screen and (max-width: 600px) {
    footer .business_hours_box .flex_box_1 .footer_business_hour {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 600px) {
    footer .business_hours_box .flex_box_1 .footer_business_hour {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 600px) {
    footer .business_hours_box .addition_02 {
        font-size: 12px;
    }
}

@media screen and (max-width: 600px) {
    footer .business_hours_box .addition {
        padding-left: .9em;
        text-indent: -.8em;
    }
}

footer .footer_info_box {
    font-size: 18px;
}

@media screen and (max-width: 810px) {
    footer .footer_info_box {
        font-size: 16px;
    }
}

footer .footer_info_box .footer_info_box_address {
    margin-bottom: 10px;
}

footer .button {
    width: 370px;
    height: 52px;
    margin-left: auto;
    margin-right: auto;
    line-height: 52px;
    margin-bottom: 30px;
}

@media screen and (max-width: 1024px) {
    footer .button {
        width: 300px;
    }
}

@media screen and (max-width: 600px) {
    footer .button {
        width: 200px;
    }
}

footer .sp_block {
    display: none;
}

@media screen and (max-width: 1440px) {
    footer .sp_block {
        display: block;
    }
}

footer .footer_info_flex {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

footer .footer_info_dd_box {
    text-align: left;
    margin-left: 15px;
}

footer .footer_info_tel {
    font-size: 30px;
    font-weight: 600;
}

@media screen and (max-width: 1024px) {
    footer .footer_info_tel {
        font-size: 24px;
    }
}

footer .footer_address_box {
    font-size: 18px;
}

@media screen and (max-width: 810px) {
    footer .footer_address_box {
        font-size: 16px;
    }
}

footer .back-to-carefull-wrapper {
    padding: 0 20px;
}

footer .back-to-carefull {
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #A3C2C7;
    border: 1px solid #A3C2C7;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    margin-top: 80px;
    font-family: "inter", sans-serif;
    font-weight: 800;
    font-size: 2.15rem;
    position: relative;
}

@media screen and (max-width: 600px) {
    footer .back-to-carefull {
        margin-top: 30px;
        margin-bottom: 50px;
        font-size: 1.7rem;
    }
}

footer .back-to-carefull::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
    border-right: 0;
    top: 42%;
    right: 16px;
}

footer .back-to-carefull:hover::after {
    border-left: 8px solid #A3C2C7;
    transition: .5s;
}

@media screen and (max-width: 600px) {
    footer .back-to-carefull::after {
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 6px solid #fff;
        top: 43%;
        right: 8px;
    }
}

footer .back-to-carefull:hover {
    background-color: #fff;
    transition: .5s;
}

footer .back-to-carefull a {
    color: #fff;
    display: block;
    width: 100%;
}

footer .back-to-carefull:hover a {
    color: #A3C2C7;
    transition: .5s;
}

footer .back-to-carefull span {
    font-size: 1rem;
    font-weight: normal;
    font-family: "ヒラギノ角ゴ ProN", 'Noto Sans JP', 'Noto Sans', sans-serif;
}

@media screen and (max-width: 600px) {
    footer .back-to-carefull span {
        font-size: 0.85rem;
    }
}


footer .footer_sub {
    background-color: #838383;
    text-align: center;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer_sub p {
    color: #fff;
}

@media screen and (max-width: 810px) {
    footer .footer_sub p {
        font-size: 12px;
    }
}

/* main_visual */

@media screen and (max-width: 600px) {
    .main_visual {
        margin-bottom: 50px;
    }
}

.main_visual .main_visual_wrapper {
    padding-right: 50px;
    margin-top: 120px;
}

@media screen and (max-width: 1024px) {
    .main_visual .main_visual_wrapper {
        padding-right: 20px;
        margin-top: 105px;
    }
}

@media screen and (max-width: 600px) {
    .main_visual .main_visual_wrapper {
        margin-top: 65px;
    }
}

.main_visual .main_visual_bg {
    border-radius: 0 150px 150px 0;
    height: 400px;
    position: relative;
    padding-left: 50px;
}

@media screen and (max-width: 1440px) {
    .main_visual .main_visual_bg {
        height: 315px;
    }
}

@media screen and (max-width: 1024px) {
    .main_visual .main_visual_bg {
        border-radius: 0 130px 130px 0;
        height: 270px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 600px) {
    .main_visual .main_visual_bg {
        border-radius: 0 50px 50px 0;
        height: 300px;
    }
}

.main_visual .main_visual_bg::after {
    content: "";
    position: absolute;
    border-radius: 0 150px 150px 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(33, 123, 126, 0.15);
}

@media screen and (max-width: 1024px) {
    .main_visual .main_visual_bg::after {
        border-radius: 0 130px 130px 0;
    }
}

@media screen and (max-width: 600px) {
    .main_visual .main_visual_bg::after {
        border-radius: 0 50px 50px 0;
    }
}

.main_visual .main_visual_headline_box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.main_visual .main_visual_headline {
    text-align: center;
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 20;
}

.main_visual .headline_main {
    font-size: 40px;
    font-family:"Zen Maru Gothic", serif;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
    .main_visual .headline_main {
        font-size: 30px;
    }
}

@media screen and (max-width: 600px) {
    .main_visual .headline_main {
        font-size: 24px;
        margin-bottom: 0;
    }
}

.main_visual .headline_sub {
    color: #fff;
}

@media screen and (max-width: 1024px) {
    .main_visual .headline_sub {
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .main_visual .headline_sub {
        font-size: 12px;
    }
}

/* steps nurse/reha-page */

@media screen and (max-width: 600px) {
    #reha .section.section_reha_steps,
    #nurse .section.section_nurse_steps {
        margin-bottom: 50px;
    }
}

.steps_wrapper {
    padding-left: 50px;
}

@media screen and (max-width: 1024px) {
    .steps_wrapper {
        padding-left: 20px;
    }
}

.background_wall_2 {
    border-radius: 170px 0 0 170px;
}

@media screen and (max-width: 1024px) {
    .background_wall_2 {
        border-radius: 130px 0 0 130px;
    }
}

@media screen and (max-width: 810px) {
    .background_wall_2 {
        border-radius: 70px 0 0 70px;
    }
}

@media screen and (max-width: 600px) {
    .background_wall_2 {
        border-radius: 40px 0 0 40px;
    }
}

.step_content_box {
    padding: 100px 50px 100px 0;
}

@media screen and (max-width: 1024px) {
    .step_content_box {
        padding: 80px 20px 80px 0;
    }
}

@media screen and (max-width: 600px) {
    .step_content_box {
        padding: 50px 0 50px 0;
    }
}

.steps_wrapper .steps_items_wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

@media screen and (max-width: 1440px) {
    .steps_wrapper .steps_items_wrapper {
        max-width: 1000px;
    }
}

@media screen and (max-width: 1024px) {
    .steps_wrapper .steps_items_wrapper {
        max-width: 800px;
    }
}

.steps_wrapper .steps_items_wrapper ul {
    position: relative;
}

.steps_wrapper .steps_items_wrapper ul::before {
    position: absolute;
    content: "";
    display: inline-block;
    border-left: 2px solid #fff;
    height: 630px;
    left: 50px;
    top: 10px;
    z-index: 0;
}

@media screen and (max-width: 1024px) {
    .steps_wrapper .steps_items_wrapper ul::before {
        height: 560px;
    }
}

@media screen and (max-width: 600px) {
    .steps_wrapper .steps_items_wrapper ul::before {
        position: absolute;
        height: 100%;
        left: 39px;
        top: 0;
        z-index: 0;
    }
}

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

.steps_wrapper .steps_circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 600px) {
    .steps_wrapper .steps_circle {
        width: 80px;
        height: 80px;
    }
}

.steps_wrapper .steps_circle p {
    color: #A3C2C7;
    font-family: "Darker Grotesque", ;
    font-size: 18px;
    font-weight: 600;
}

@media screen and (max-width: 600px) {
    .steps_wrapper .steps_circle p {
        font-size: 16px;
    }
}

.steps_wrapper .step_item_text_box {
    width: 85%;
}

@media screen and (max-width: 1024px) {
    .steps_wrapper .step_item_text_box {
        width: 80%;
    }
}

@media screen and (max-width: 600px) {
    .steps_wrapper .step_item_text_box {
        width: 65%;
    }
}

.steps_wrapper .step_item_text_box .steps_title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
    .steps_wrapper .step_item_text_box .steps_title {
        font-size: 20px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 810px) {
    .steps_wrapper .step_item_text_box .steps_title {
        font-size: 18px;
    }
}

@media screen and (max-width: 600px) {
    .steps_wrapper .step_item_text_box .steps_title {
        margin-bottom: 5px;
    }
}

/* link_area */

.link_area {
    margin-left: auto;
    margin-right: auto;
}

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

.link_area_box p {
    margin-bottom: 10px;
}

.link_area .link_area_box .button {
    margin-left: auto;
    margin-right: auto;
}

/* Swiper */

.top_about_swiper img {
    border-radius: 70px;
}

@media screen and (max-width: 810px) {
    .top_about_swiper img {
        border-radius: 40px;
    }
}

.top_about_swiper img {
    width: 90%;
    height: auto;
    object-fit: cover;
    opacity: .9;
}

 .top_about_swiper .swiper_01 {
    margin-top: 0;
}

.top_about_swiper .swiper_02 {
    margin-top: 20px;
}

.top_about_swiper .swiper_03 {
margin-bottom: 20px;
}

.top_about_swiper .swiper_04 {
    margin-top: 10px;
}

.top_about_swiper .swiper_05 {
    margin-bottom: 20px;
}

.top_about_swiper .swiper_06 {
    margin-top: 20px;
}


/* Workable Button */

body {
    position: relative;
}

.workable_btn {
    position: fixed;
    z-index: 500;
    bottom: 80px;
    right: 50px;
}

@media screen and (max-width: 1024px) {
    .workable_btn {
        bottom: 50px;
        right: 20px;
    }
}

.workable_btn a {
    width: 90px;
    height: 90px;
    display: block;
    border-radius: 50%;
    background-color: #F4CE20;
    border: 1px solid #F4CE20;
    position: relative;
}

.workable_btn a:hover {
    background-color: #fff;
    transition: .5s;
}

@media screen and (max-width: 810px) {
    .workable_btn a {
        width: 70px;
        height: 70px;
    }
}

.workable_btn a div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    line-height: 1.6em;
}

.workable_btn a:hover div {
    color: #F4CE20;
    transition: .5s;
}

@media screen and (max-width: 810px) {
    .workable_btn a div {
        font-size: 14px;
    }
}

/* Modal Window */


/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
}

@media screen and (max-width: 810px) {
    .modal-container {
        padding: 0;
    }
}


/*モーダル本体の擬似要素の指定*/
.modal-container:before{
content: "";
display: inline-block;
vertical-align: middle;
height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
    opacity: 1;
    visibility: visible;
}
.modal-container.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 半透明の背景 */
    z-index: 9998; /* 背景がモーダルより後ろに表示されるように */
    pointer-events: all; /* 背景のクリック無効化 */
}
/*モーダル枠の指定*/
.modal-body {
    position: relative;
    display: inline-block;
    max-width: 900px;
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/*モーダルを閉じるボタンの指定*/
.modal-close {
    position: absolute;
    top: -30px;
    right: -35px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

@media screen and (max-width: 810px) {
    .modal-close {
        top: -32px;
        right: -43px;
        width: 60px;
        height: 30px;
        font-size: 25px;
    }
}

/*モーダル内のコンテンツの指定*/
.modal-content{
background: #fff;
text-align: left;
border-radius: 30px;
}

/* タブボタンのスタイル */
.modal-tabs {
    display: flex;
    gap: 10px;
}

.tab-button {
    padding: 7px 20px;
    background: #fff;
    border: 1px solid #A3C2C7;
    cursor: pointer;
    color: #A3C2C7;
    border-radius: 20px;
    font-size: 16px;
    line-height: 16px;
}

@media screen and (max-width: 810px) {
    .tab-button {
        font-size: 14px;
        line-height: 14px;
    }
}

.tab-button.active {
    background: #A3C2C7;
    color: #fff;
}

/* コンテンツを非表示にする */
.modal-tab-content {
    display: none;
}

.modal-tab-content .workable-job-type {
    font-size: 18px;
    margin-bottom: 10px;
}

@media screen and (max-width: 810px) {
    .modal-tab-content .workable-job-type {
        font-size: 16px;
    }
}


.modal-tab-content.active {
    display: block;
}

.workable_choose_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

@media screen and (max-width: 600px) {
    .workable_choose_btn {
        align-items: flex-start;
        flex-direction: column-reverse;
    }
}

.workable_choose_btn .button {
    padding: 7px 20px;
    line-height: 16px;
    font-size: 16px;
}

@media screen and (max-width: 810px) {
    .workable_choose_btn .button {
        line-height: 14px;
        font-size: 14px;
    }
}

@media screen and (max-width: 600px) {
    .workable_link_btn {
        margin-bottom: 10px;
    }
}

.workable_choose_btn .button::after {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid #fff;
    border-right: 0;
    top: 34%;
    right: 6px;
}

.workable_choose_btn .button:hover::after {
    border-left: 5px solid #A3C2C7;
    transition: .5s;
}

.workable_choose_btn .button span {
    font-size: 16px;
    font-weight: 400;
}

/* Modal Window Workable  */

#workable-modal .modal-body {
    width: 900px;
    padding: 30px;
}

@media screen and (max-width: 810px) {
    #workable-modal .modal-body {
        width: 90%;
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {
    #workable-modal .modal-body {
        padding: 10px;
    }
}


#workable-modal .modal-body figure {
    margin-bottom: 0;
}

@media screen and (max-width: 810px) {
    #workable-modal .wp-block-flexible-table-block-table table tbody tr th.workable_time {
        width: 18% !important;
        font-size: 12px !important;
        font-weight: 400 !important;
    }
}

@media screen and (max-width: 600px) {
    #workable-modal .wp-block-flexible-table-block-table table tbody tr th.workable_time {
        font-size: 11px !important;
    }
}

@media screen and (max-width: 810px) {
    #workable-modal .wp-block-flexible-table-block-table table tbody tr td.workable_situation {
        width: 16.4% !important;
    }
}

/* Fee-Kaigo Modal */

@media screen and (max-width: 810px) {
    #fee-kaigo-modal {
        padding: 20px;
    }
}

@media screen and (max-width: 810px) {
    #fee-kaigo-modal .modal-body {
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {
    #fee-kaigo-modal .modal-body {
        padding: 10px;
    }
}

@media screen and (max-width: 810px) {
    #fee-kaigo-modal .modal-body th,
    #fee-kaigo-modal .modal-body td
        {
            font-size: 14px !important;
            line-height: 1.5 !important;
        }
}

@media screen and (max-width: 600px) {
    #fee-kaigo-modal .modal-body th,
    #fee-kaigo-modal .modal-body td
        {
            font-size: 12px !important;
            line-height: 1.2 !important;
        }
}

@media screen and (max-width: 810px) {
    #fee-kaigo-modal .modal-body .fee_kaigo_content_ p {
        font-size: 10px !important;
        text-align: justify;
        padding-left: 1em;
        text-indent: -1em;
        line-height: 18px;
        margin-bottom: 10px;
    }
}


/* Fee-Iryou Modal */

@media screen and (max-width: 810px) {
    #fee-iryou-modal {
        padding: 20px;
    }
}

@media screen and (max-width: 810px) {
    #fee-iryou-modal .modal-body {
        padding: 20px;
    }
}

@media screen and (max-width: 600px) {
    #fee-iryou-modal .modal-body {
        padding: 10px;
    }
}

@media screen and (max-width: 810px) {
    #fee-iryou-modal .modal-body th,
    #fee-iryou-modal .modal-body td
        {
            font-size: 14px !important;
            line-height: 1.5 !important;
        }
}

@media screen and (max-width: 600px) {
    #fee-iryou-modal .modal-body th,
    #fee-iryou-modal .modal-body td
        {
            font-size: 12px !important;
            line-height: 1.2 !important;
        }
}

@media screen and (max-width: 810px) {
    #fee-iryou-modal .modal-body .fee_iryou_content_ p {
        font-size: 10px !important;
        text-align: justify;
        padding-left: 1em;
        text-indent: -1em;
        line-height: 18px;
        margin-bottom: 10px;
    }
}

/* Fade In */

.fadeUpTrigger{
    opacity: 0;
    }

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(50px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* 各ページ　ヘッダータイトル　ぼんやりからのフェイドイン */

.blur{
	animation-name: blurAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 100%; /* 最大幅を100%に設定 */
}

@keyframes blurAnime{
  from {
	filter: blur(10px);
	transform: scale(1.02);
  }

  to {
	filter: blur(0);
	transform: scale(1);
  }
}

.demo-add {
    position: fixed;
    left: 15px;
    bottom: 15px;
    font-size: 12px;
    color: #cf2e2e;
    z-index: 9999;
}

@media screen and (max-width: 600px) {
    .demo-add {
        font-size: 10px;
    }
}

.demo-add a {
    color: #cf2e2e;
}