@charset "utf-8";
/*fadein*/
.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
  &.fadein-left{
      transform: translate(-30px,0);
  }
  &.fadein-right{
      transform: translate(30px,0);
  }
  &.fadein-up{
      transform: translate(0,-30px);
  }
  &.fadein-bottom{
      transform: translate(0,30px);
  }
  &.scrollin{
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }
}

p {
    color: #1e1e1e;
}

header .btn_nav {
    display: none;
}

.f_pp {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

header .header_normal {
	width: 100%;
	height: 150px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	z-index: 100;
}

header .header_normal > .logo {
    width: 220px;
    position: absolute;
    top: 50px;
    left: 50px;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin-bottom: 0px;
}

header .header_normal > .logo::before {
    width: 100%;
    height: 0;
    content: '';
    display: block;
    padding-top: 100%;
}


header .header_normal > .logo a {
    position: absolute;
    top: 0;
    background-image: url(https://sj-matsunaga.jp/medi-home/img/logo_medihome.png);
    z-index: 1;
}

.replace_img {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-size: contain;
}

header .header_normal .header_inner{
    width: 100%;
    padding: 0 clamp(190px, 7%, 80px) 0 477px;
    height: 50%;
}

@keyframes nav_01_off {
    0% {
    margin-top: -7px;
    }

    50% {
    margin-top: 0;
    }
    100% {
    margin-top: -7px;
    }
}

@keyframes nav_02_off {
    0% {
    margin-top: 7px;
    }
    50% {
    margin-top: 0;
    }
    100% {
    margin-top: 7px;
    }
}

header .navigation_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: space-around;
    background-color: #fff;
    padding: 15px 45px;
    border-radius: 40px;
    margin-bottom: 0;
}

header .navigation_list li {
    color: #0b0b0b;
    font-family: maru-maru-gothic-blr-stdn, sans-serif;
    font-size: 19px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

header .navigation_list li a {
    display: block;
	text-decoration: none;
}

/* header .navigation_list li:not(:first-of-type) {
    margin-left: 4.2%;
} */

header .navigation .en {
    color: #d4a343;
    font-family: Arial,Helvetica,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    display: block;
    margin-top: 10px;
    text-align: center;
}

header .navigation .jp {
    font-size: 16px;
}

header .header_normal .btn_contact {
    width: 120px;
    height: 150px;
    overflow: hidden;
    border-radius: 0 0 5px 5px;
    position: absolute;
    top: -2%;
    right: 2%;
}

header .header_normal .btn_contact a
 {
    background-image: url(https://sj-matsunaga.jp/medi-home/img/head_btn_recruit_on.png);
    background-position: 50% 50%;
    background-size: cover;
    transition: all .3s;
}

header .header_normal .btn_contact a:hover {
    opacity: 0.8;
    transition: all .3s;
} 

header .header_normal .btn_contact a::before {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(https://sj-matsunaga.jp/medi-home/img/head_btn_recruit_on.png);
    background-position: 50% 50%;
    background-size: cover;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

header .header_bnr {
    display: none;
}

header .cmn_contact.header_contact {
    display: none;
}

.cmn_contact_tel {
    margin-right: 2%;
    max-width: 400px;
}

.cmn_contact_item {
    width: 38%;
    width: calc((98% - 300px) / 2);
    max-width: 420px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.disp_sp {
    display: none;
}

ul {
  list-style: none;
}

.header_menu {
    background-color: #fcf7ea;
    overflow-x: hidden;
}

header .layer {
    width: 100vw;
    height: 100%;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-transition: all .6s;
    transition: all .6s;
}

body.active header .header_fixed {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

/* メニューの初期状態 (非表示) */
.header_fixed {
    position: fixed; /* 画面に固定 */
    top: -350px;     /* 最初は画面外の上部に配置 (メニューの高さ分を考慮) */
    width: 100%;
    transition: top 0.5s ease-out; /* スムーズなアニメーションのためのトランジション */
    z-index: 1000;   /* 他のコンテンツの上に表示 */
    /* その他のメニューのスタイル (背景色、パディングなど) をここに追加 */
    background-color: #fff;
    padding: 2px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: block;
}

/* スクロールで表示されたときの状態 */
.header_fixed.is-visible {
    top: 0; /* 画面の上部に表示 */
}

.header_fixed .logo {
    width: 240px;
    height: 45px;
    position: absolute;
    top: 20px;
    left: 40px;
    -webkit-transition: all .3s;
    transition: all .3s;
    margin-bottom: 0px;
}

.header_fixed .logo a {
    background-image: url(https://sj-matsunaga.jp/medi-home/img/logo_medihome_sp.png);
}

.header_fixed .header_inner {
    padding: 0 220px 0 300px;
}

.header_fixed .btn_contact {
    width: 220px;
    height: 84px;
    overflow: hidden;
    border-radius: 0px;
    position: absolute;
    top: -5%;
    right: 0;
    margin-bottom: 0px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.recruit_btn_img {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background-repeat: no-repeat;
    background-size: contain;
}

.header_fixed .btn_contact a {
    background-image: url(https://sj-matsunaga.jp/medi-home/img/head_btn_recruit_on_sp.png);
    background-position: 50% 50%;
    background-size: cover;
    transition: all .3s;
}

.header_fixed .btn_contact a:hover {
    opacity: 0.8;
    transition: all .3s;
}

.header_fixed .btn_contact a::before {
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(https://sj-matsunaga.jp/medi-home/img/head_btn_recruit_on_sp.png);
    background-position: 50% 50%;
    background-size: cover;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}


.header_fixed .navigation_list{
    align-items: center;
    justify-content: flex-end;
    padding: 15px 30px;
}

.header_fixed .navigation_list li{
    margin-right: 35px;
    margin-bottom: 5px;
}

.contact-info__text .tel_number:hover a {
    color: #bb903a;
    transition: all .3s;
}

/* ファーストビュー */
.fade.fade_block.fadeIn {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.mainvisual {
    background-color: #fcf7ea;
    padding-bottom: 80px;
    position: relative;
}

.mainvisual_inner {
    width: 100%;
    z-index: 1;
}

.slide_blank_box {
    max-width: 40%;
}

.slide_img_box {
    max-width: 70%;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

#slide_photo {
    width: 100%;
    height: 630px;
    overflow: hidden;
    position: relative;
    border-radius: 15px 0 0 15px;
}

#slide_photo img {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    border-radius: 15px 0 0 15px;
}

.mainvisual_copy {
    width: 50%;
    max-width: 535px;
    position: absolute;
    left: 8%;
    bottom: 20%;
    z-index: 3;
}

.mainvisual_copy img {
    vertical-align: bottom;
    box-shadow: #000 0 0 0;
    -webkit-backface-visibility: hidden;
    max-width: 100%;
    height: auto;
}

.watercolor_back_box {
    position: relative;
}

.watercolor_back_box img {
    width: 100%;
}

.watercolor_back_01 {
    position: absolute;
    top: -755px;
}

.watercolor_back_02 {
    position: absolute;
    top: -485px;
    left: 17%;
}

.watercolor_back_03 {
    position: absolute;
    top: -85px;
    right: 5%;
    z-index: 1;
}

.watercolor_back_04 {
    position: absolute;
    top: 215px;
    left: 17%;
    z-index: 1;
}

.watercolor_back_00 {
    position: absolute;
    top: -13%;
    left: 17%;
}

.watercolor_back_05 {
    position: absolute;
    top: 28%;
    right: 35%;
    z-index: 1;
}

.watercolor_back_06 {
    position: absolute;
    top: 52%;
    right: 3%;
    z-index: 0;
}

.watercolor_back_07 {
    position: absolute;
    top: 75%;
    left: -8%;
    z-index: 0;
}

.medi_news {
    background-color: #fcf7ea;
    padding-bottom: 80px;
    position: relative;
}

.news-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 30px 10px;
    z-index: 2;
}

/* フラワーイラスト */
.flower_illust_box {
    position: relative;
}

.flower_illust_01 {
    position: absolute;
    left: 100px;
    bottom: -45px;
    transform-origin: center bottom;
    animation: yurayura 4s linear infinite;
}

.flower_illust_02 {
    position: absolute;
    left: 18%;
    bottom: 95px;
    transform-origin: center bottom;
    animation: yurayura 4s linear infinite;
}

@keyframes yurayura {
  0% , 100%{
      transform: rotate(10deg);
  }
  50%{
      transform: rotate(-10deg);
  }
}

/* フッター */
footer .wrapper-base {
    padding-top: 70px;
    padding-bottom: 190px;
}

.footer-menu {
    float: right;
    width: calc(100% - 270px - 20%);
}

.footer-company .logo {
    margin-bottom: 20px;
}

.footer-company .logo img {
    width: 100%;
}

.footer-company__address {
    text-align: left;
    margin-bottom: 5px;
}

.footer-company__tel {
    text-align: left;
    margin-bottom: 5px;
}

.footer-company__tel a {
    text-decoration: none;
}

.footer-copy {
    font-size: 1.2rem;
    font-family: "Quicksand", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1;
    text-align: center;
}

.footer-menu__box__list {
    text-align: left;
}

.footer-menu__box__list li {
    margin-bottom: 5px;
}

.footer-menu__box__list li a {
    text-decoration: none;
}

.footer-menu__box {
    float: left;
}

.footer-menu__box:nth-child(1) {
    width: 27.9%;
}

.footer-menu__box:nth-child(2) {
    width: 27.9%;
}

.background-color__box {
    position: absolute;
    background-color: #fcf7ea;
    width: 500px;
    height: 500px;
    top: 0%;
    right: 0;
}

/* 施設・居室案内 */
.guidance_slide_box {
    background-color: #fcf7ea;
    padding: 50px;
    border-radius: 10px;
}
.guidance-center-text p {
    text-align: center;
    line-height: 2;
    font-size: 17px;
    color: #373737;
    font-family: "Yu Mincho Medium", "游明朝 Medium", YuMincho, "游明朝体", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "MS Mincho", "ＭＳ 明朝", serif;
    font-weight: 500;
    margin-bottom: 20px;
    margin-top: 20px;
}

.slick-list {
    width: 50%!important;
    margin: auto!important;
    border-radius: 5px!important;
}

.slick-slide img {
    width: 100%!important;
}

.slick-dots {
    text-align: center;
    margin-top: 20px;
    padding-left: 0!important;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border: 2px solid transparent;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button img {
    border-color: #d4a343;
    opacity: 1;
}

.slick-dots button {
    border: 0!important;
    padding: 0!important;
}

.slick-prev,
.slick-next {
    font-size: 0; 
    line-height: 0;
    position: absolute;
    top: 40%; 
    transform: translateY(-50%); 
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #d4a343;
    z-index: 10;
    border-radius: 50%;
}

.slick-prev::before,
.slick-next::before {
    font-family: "slick";
    font-size: 15px;
    line-height: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Prev ボタンの矢印 */
.slick-prev::before {
    content: "←"; 
    /* content: '\2190';  Unicode for left arrow */
    /* content: '\219C';  Slick Carousel's default prev arrow character */
}

/* Next ボタンの矢印 */
.slick-next::before {
    content: "→"; 
    /* content: '\2192';  Unicode for right arrow */
    /* content: '\219D';  Slick Carousel's default next arrow character */
}

/* ボタンの左右配置 */
.slick-prev {
    left: 20%; 
}

.slick-next {
    right: 20%; 
}

/* ホバー時の見た目 */
.slick-prev:hover,
.slick-next:hover {
    background: #b78d3a!important;
    border: 1px solid #b78d3a!important;
}

.brown-circle {
    color: #d4a343;
    padding-right: 5px;
}

.intro-brown {
    font-size: 17px;
    color: #d4a343;
}

.guidance_text_flex {
    display: flex;
}

.guidance_facility {
    width: 80%!important;
    margin: auto!important;
}

.guidance-slider {
    margin-bottom: 45px;
}
.service_price_Left h4 {
    color: #d4a343;
}

.service_price_Left h4 .frame {
    background-color: #d4a343;
    color: #fff!important;
    font-size: 16px;
    padding: 2px 5px;
    border-radius: 2px;
    margin-right: 8px;
}

.service_price_Left h4 .small {
    font-size: 16px;
}

.service_price_box {
    margin-bottom: -20px;
}

.service_price_right table tbody td {
    text-align: center!important;
}

.medical_response table tbody td {
    text-align: center!important;
}

.medical_response table tbody th,.medical_response table tbody td {
    width: 20%!important;
}

.speech_text {
    width: calc(70% - 20px);
}

.s-access {
    position: relative;
}

.conditions_line_box {
    padding: 10px 15px;
    background-color: #fcf7ea;
}

/* レスポンシブ */
@media screen and (min-width: 1600px) {
    header .navigation_list {
        justify-content: end;
    }
    header .navigation_list li {
        margin-right: 30px;
    }
    header .header_normal .header_inner {
        width: 890px;
    }
    .mainvisual_copy {
        bottom: 25%;
        left: 10%;
    }
    .watercolor_back_05 {
        top: 35%;
        right: 30%;
	}
    .guidance-center-text p {
        font-size: 18px;
    }
    .guidance_facility {
        width: 80%!important;
    }
    .watercolor_back_02 {
    left: 20%;
    }
}

@media screen and (min-width: 1400px) {
    header .header_inner {
        padding-right: 100px;
    }
}

@media screen and (min-width: 1024px) {
    .header_normal .header_inner .logo {
        display: none;
    }
    .wrapper-base {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-company {
        float: left;
        width: 300px;
    }
}

@media screen and (max-width: 1480px) {
    header .header_normal .header_inner {
        padding: 0 clamp(160px, 7%, 80px) 0 350px;
    }
    header .header_normal .btn_contact {
        width: 105px;
        height: 140px;
    }
    .header_fixed .navigation_list li {
        margin-right: 25px;
    }
}


@media screen and (max-width: 1330px) {
    .header_fixed .navigation .jp {
        font-size: 14px;
    }
    .header_fixed .contact-info__text .tel_number {
        font-size: 22px;
    }
    .icon_tel {
        width: 15px;
        height: 15px;
    }
    .header_fixed .btn_contact {
        width: 185px;
        height: 78px;
    }
    .header_fixed .header_inner {
        padding: 0 190px 0 300px;
    }
}

@media screen and (max-width: 1300px) {
    header .navigation .jp {
        font-size: 14px;
    }
    .contact-info__text .tel_number {
        font-size: 22px;
    }
    header .navigation .en {
        margin-top: 5px;
    }
}

@media screen and (max-width: 1225px) {
    .header_fixed .navigation_list li {
        margin-right: 20px;
    }
    .header_fixed .navigation_list {
        padding: 15px 15px;
    }
}

@media screen and (max-width: 1224px) {
    header .header_normal > .logo {
        width: 170px;
        left: 35px;
    }
    header .navigation_list {
        padding: 10px 35px;
    }
    header .header_normal .header_inner {
        padding: 0 clamp(150px, 7%, 80px) 0 275px;
    }
    .nav_active .header_inner {
        visibility: visible;
        position: fixed;
        max-height: 1060px;
        padding: 0;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
    }
    .intro-brown {
        font-size: 15px;
    }
}

@media screen and (max-width: 1170px) {
    .header_fixed .contact-info__text {
        display: none;
    }
    .header_fixed {
        height: 70px;
    }
    .header_fixed .navigation_list {
        padding: 25px 15px 15px;
    }
}

@media screen and (max-width: 1100px) {
    header .header_normal .btn_contact {
        width: 105px;
        height: 130px;
    }
    header .header_normal .header_inner {
        padding: 0 clamp(150px, 7%, 80px) 0 240px;
    }
    header .navigation_list {
        padding: 10px 15px;
    }
    .contact-info__text .tel_number {
        font-size: 20px;
    }
    header .header_normal {
        height: 125px;
    }
}

@media screen and (max-width: 1024px) {
    header .btn_nav {
        color: #fff;
        width: 90px;
        height: 80px;
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        padding-top: 5px;
        z-index: 9999;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: end;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    header .btn_nav::before {
        width: 100%;
        height: 100%;
        content: '';
        display: block;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
        background-image: url(https://sj-matsunaga.jp/medi-home/img/head_bg_btn_nav.jpg);
        background-position: 50% 0;
        background-size: cover;
        border-radius: 0 0 0 15px;
        -webkit-transition: all .3s;
        transition: all .3s;
        z-index: -1;
    }
    header .btn_nav .menu::before {
        -webkit-transform-origin: center;
        transform-origin: center;
        margin-top: -7px;
        -webkit-animation: nav_01_off 0.4s forwards;
        animation: nav_01_off 0.4s forwards;
    }
    header .btn_nav .menu span, header .btn_nav .menu::before, header .btn_nav .menu::after {
        width: 42px;
        height: 2px;
        display: block;
        content: '';
        position: absolute;
        left: 24px;
        background: #fff;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    header .btn_nav .menu::after {
        -webkit-transform-origin: center;
        transform-origin: center;
        margin-top: 7px;
        -webkit-animation: nav_02_off 0.4s forwards;
        animation: nav_02_off 0.4s forwards;
    }
    header .btn_nav .title {
        font-size: 14px;
        text-transform: uppercase;
        line-height: 1;
        margin-top: 10px;
        -webkit-transition: all .3s;
        transition: all .3s;
        color: #fff;
    }
    header .header_normal {
        height: 100px;
        padding: 18px 0 0 0;
        display: block;
    }
    .header_fixed {
        display: none!important;
    }
    /* ハンバーガーメニュー */
    /* 初期状態のメニュー (画面外に隠す) */
    .header_normal .header_inner {
        position: fixed; /* 固定 */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; /* ビューポートの高さ全体 */
        transform: translateY(-100%); /* 上方向に完全に移動して隠す */
        background-color: #fff; /* メニューの背景色 */
        overflow-y: auto; /* メニュー内容が多ければスクロール可能に */
        transition: transform 0.5s ease-out; /* スムーズなアニメーション */
        z-index: 999; /* 他のコンテンツの上に表示 (header_fixedよりは下) */
        padding-top: 60px; /* 必要に応じて上部の余白を調整 */
    }

    /* メニューが開いた状態 */
    .header_normal .header_inner.is-open {
        transform: translateY(0); /* 画面内にスライドイン */
        overflow-x: hidden;
    }

    /* ハンバーガーアイコンのアニメーション (任意) */
    .menu span {
        display: block;
        position: relative;
        height: 2px;
        width: 25px;
        background-color: #333; /* アイコンの色 */
        transition: all 0.3s ease-in-out;
    }
    .menu span:nth-child(1) { top: auto; }
    .menu span:nth-child(2) { top: 7px; }
    .menu span:nth-child(3) { top: 14px; }

    .menu.is-active span:nth-child(1) {
        top: auto;
        transform: rotate(45deg);
    }
    .menu.is-active span:nth-child(2) {
        opacity: 0;
    }
    .menu.is-active span:nth-child(3) {
        top: -8px;
        transform: rotate(-45deg);
    }

    /* オーバーレイ */
    .layer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
        z-index: 998; /* メニューのすぐ下 */
        opacity: 0; /* 初期は非表示 */
        visibility: hidden; /* 初期は非表示 */
        transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    }

    .layer.is-visible {
        opacity: 1; /* 表示 */
        visibility: visible; /* 表示 */
    }

    /* 背景スクロール禁止 */
    body.no-scroll {
        overflow: hidden; /* スクロールを無効にする */
    }

    header .header_normal > .logo {
        width: 150px;
        left: 20px;
        top: 20px;
    }

    header .header_normal .header_inner .logo a {
        position: relative;
        background-image: url(https://sj-matsunaga.jp/medi-home/img/logo_medihome_sp.png);
    }

    header .header_normal .header_inner .navigation {
        width: 84.375%;
        margin: 0 auto;
        margin-bottom: 40px;
        padding: 0;
    }
    header .header_normal .header_inner {
        padding: 0px;
    }
    header .navigation_list {
        display: block;
        padding: 45px 15px 10px;
    }
    .header_inner .logo {
        display: none;
    }
    header .navigation .en {
        text-align: left;
        margin-left: 25px;
    }
    header .navigation_list li {
        margin-bottom: 20px;
        align-items: center;
        border-bottom: #000000;
    }
    header .header_normal .header_inner .navigation_list li:not(:last-of-type){
        border-bottom: 1px solid #757575;
    }
    header .navigation_list li a {
        padding-bottom: 35px;
        padding-top: 15px;
    }
    header .navigation .jp {
        font-size: 16px;
    }
    header .navigation_list li a {
        display: flex;
    }
    header .header_normal .btn_contact a {
        display: none;
    }
    header .header_normal .btn_contact_sp a {
        background-image: url(https://sj-matsunaga.jp/medi-home/img/head_btn_recruit_hamburger.png);
        transition: all .3s;
    }
    header .header_normal .btn_contact_sp {
        width: 80%;
        height: 25%;
        overflow: hidden;
        margin: 0 auto;
    }
    header .header_normal .header_inner {
        height: 100%;
    }
    .slide_img_box {
        max-width: 80%;
        padding-top: 20px;
    }
    #slide_photo {
        border-radius: 15px 0 0 15px!important;
    }
    .mainvisual_copy {
        width: 45%;
        left: 5%;
    }
    .footer-company {
        text-align: center;
    }
    .wrapper-base {
        padding-left: 30px;
        padding-right: 30px;
    }
    .global-footer .wrapper-base {
        padding-top: 60px;
        padding-bottom: 70px;
    }
    .footer-company .logo img {
        width: 25%;
    }
    .footer-company__address {
        text-align: center;
    }
    .footer-company__tel {
        text-align: center;
    }
    .f-pc {
        display: none;
    }
    .slick-dots button {
        padding: 10px 0!important;
    }
    .watercolor_back_05 {
        right: 0%;
    }
    .guidance_facility {
        width: 100%!important;
    }
    .service_price_Left h4 .frame {
        font-size: 14px;
    }
    .service_price_Left h4 .small {
        font-size: 14px;
    }
    .watercolor_back_07 {
        left: -5%;
    }
    .flower_illust_02 {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    header .header_normal .header_inner .navigation {
        width: 95%;
    }
    header .header_normal .btn_contact_sp {
        width: 90%;
        height: 40%;
    }
    header .navigation .en {
        margin-left: 15px;
    }
    .slide_img_box {
        max-width: 95%;
    }
    .mainvisual_copy {
        width: 40%;
        left: 3%;
    }
    .watercolor_back_01 {
        top: -800px;
    }
    .watercolor_back_01 img {
        width: 80%;
    }
    .watercolor_back_02 {
        top: -265px;
        left: -8%;
    }
    .watercolor_back_02 img {
        width: 80%;
    }
    .watercolor_back_03 {
        top: -160px;
        right: 0%;
    }
    .guidance-center-text p {
        font-size: 14px;
        margin-top: 0px;
        text-align: left;
        font-family: "Noto Sans JP", sans-serif;
        font-weight: 500;
    }
    .slick-list {
        width: 100%!important;
    }
    .slick-prev {
        display: none!important;
    }
    .slick-next {
        display: none!important;
    }
    .guidance_slide_box {
        padding: 50px 15px!important;
    }
    .slick-dots {
        text-align: left;
    }
    .slick-dots li {
        width: 20%!important;
    }
    .guidance-slider {
        margin-bottom: 25px;
    }
    .slick-dots li button img {
        height: 65px;
    }
    .watercolor_back_06 {
        top: 35%;
        right: 0%;
    }
    .watercolor_back_07 {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .watercolor_back_04 {
        top: 310px;
        left: 10%;
    }
}

@media screen and (max-width: 650px) {
    .mainvisual_copy {
        bottom: 35%!important;
    }
    .flower_illust_01 {
        left: 15px;
        bottom: -60px;
    }
    .medi_news {
        padding-bottom: 50px;
    }
    .width-state--regular-news {
        width: calc(90% - 10vw);
    }
}

@media screen and (max-width: 550px) {
    .slide_img_box img {
        height: 100%;
        width: auto!important;
        left: -40%!important;
    }
    .mainvisual_copy {
        bottom: 15% !important;
        width: 85%;
    }
    #slide_photo {
        height: 600px;
    }
    .flower_illust_01 {
        bottom: -55px;
        z-index: 2;
    }
    .flower_illust_01 img {
        width: 65px;
    }
    .global-footer .wrapper-base {
        padding-bottom: 35px;
    }
    .footer-company .logo img {
        width: 60%
    }
    .guidance_room_box {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .outline-section {
        padding-top: 20px !important;
    }
    .watercolor_back_05 {
        top: 60%;
    }
    .service_price_Left h4 .frame {
        font-size: 13px;
    }
    .hospital-section table td, .hospital-section table th {
        padding: 10px;
        font-size: 13px;
    }
    .medical_response table tbody td {
        font-size: 13px!important;
    }
}

@media screen and (max-width: 550px) {
    .slide_img_box img {
        height: 100%;
        width: auto!important;
        left: -40%!important;
    }
}

@media screen and (max-width: 450px) {
    .slide_img_box img {
        left: -70%!important;
    }

    .slide_img_box .main_img01 {
        left: -45%!important;
    }

    .slide_img_box .main_img02 {
        left: -95%!important;
    }

    .slide_img_box .main_img03 {
        left: -80%!important;
    }
}

@media screen and (min-width: 1025px) {
    header .header_normal .btn_contact_sp a {
        display: none;
    }
}

@media screen and (min-width: 801px) {
    header .logo a:hover {
        -webkit-transform: translate(0, -4px);
        transform: translate(0, -4px);
    }
}
