@charset "utf-8";
/* メニューactive */
.menu01 a{
	color: #fff !important;
}

/**************************** スライダー ****************************/
.slider-container {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
    margin: 0 0 100px;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-size: 47px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    /* 白いドロップシャドウを薄く広く */
    text-shadow: 
        3px 3px 8px rgba(255, 255, 255, 0.6),
        -3px -3px 8px rgba(255, 255, 255, 0.6),
        3px -3px 8px rgba(255, 255, 255, 0.6),
        -3px 3px 8px rgba(255, 255, 255, 0.6),
        0 0 30px rgba(255, 255, 255, 0.5),
        0 0 50px rgba(255, 255, 255, 0.3);
}

@media screen and (min-width:769px) and ( max-width:1049px) {
/*　画面サイズが769pxから1079pxまではここを読み込む　*/
.slider-container {
    height: 320px;
}
}

@media screen and (max-width: 768px) {
/* 768pxまでの幅の場合に適応される */
.slider-container {
    height: 320px;
    margin: 0 0 50px;
}
.slide-text {
    font-size: 27px;
}
}

/**************************** イントロ-低侵襲医療とは ****************************/
.intro h2{
	width: 100%;
	text-align: center;
	font-size: 27px;
	font-weight: 700;
	padding: 0;
	margin: 0 auto 40px;
	line-height: 2.0;
}
.intro h2 span{
	font-size: 36px;
	background: linear-gradient(transparent 70%, #cdf1f0 30%);
}
.intro-box{
	width: 1100px;
	margin: 0 auto 50px;
	position: relative;
}
.intro-box p{
	width: 600px;
	margin: 0 auto 60px;
	font-size: 16px;
	line-height: 1.8;
}
.ani01, .ani02{
	width: 300px;
	height: 300px;
	position: absolute;
	bottom: 0;
	z-index: -100;
}
.ani01{
	left: 0;
}
.ani02{
	right: 0;
}

@media screen and (max-width: 768px) {
/* 768pxまでの幅の場合に適応される */
.intro-box{
	width: 90%;
}
.intro-box p{
	width: 100%;
	margin: 0 auto 30px;
}
.intro .imgbox{
	display: flex;
	margin: 30px auto;
}
.ani01, .ani02{
	width: 50%;
	height: auto;
	position: static;
}
}


/**************************** お知らせ ****************************/
/***お願い***/
.onegai{
	width: 1006px;
	margin: 0 auto 70px;
	border: solid 2px #0abab5;
	padding: 20px;
	display: flex;
}
.onegai img{
	width: 120px;
	height: 150px;
	margin: 30px auto 0;
}
.onegai div{
	width: 740px;
	padding: 25px;
	background-color: #cdf1f0;
}
.onegai div h2{
	font-weight: 700;
	font-size: 27px;
	margin: 0 auto 15px;
	color: #f8b62d;
	text-align: center;
}

@media screen and (max-width: 768px) {
/* 768pxまでの幅の場合に適応される */
.onegai{
	width: calc( 90% - 40px );
	display: block;
}
.onegai img{
	display: block; 
	margin: 0 auto 30px;
}
.onegai div{
	width: calc( 100% - 50px );
	padding: 25px;
	background-color: #cdf1f0;
}
}

/***お知らせ***/
.news_wrap{
	width: 1050px;
	margin: 0 auto 80px;
	display: flex;
}
.news_wrap .title{
	width: 180px;
	margin: 0 70px 0 0;
}
.news_wrap .title h2{
	font-size: 36px;
	text-align: left;
}
.news_wrap .title span{
	width: 100%;
	height: 4px;
	background-color: #0abab5;
	margin: 0 auto 5px;
	display: block; 
}
.news_wrap .title p{
	font-size: 18px;
	font-weight: 700;
}
.news_wrap ul{
	width: 800px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.news_wrap ul li{
	width: 800px;
	border-bottom: solid 1px #0abab5;
	display: flex;
	align-items: center;
	padding: 10px 0;
	margin: 0 0 10px;
}
.news_wrap ul li div{
	width: 150px;
	text-align: center;
}
.news_wrap ul li span{
	width: 100px;
	margin: 0 45px 0 0;
	text-align: center;
	background-color: #0abab5;
	color: #fff;
}
.news_wrap ul li p{
	width: 500px;
	font-weight: 700;
	text-decoration: underline;
}
.news_wrap ul li p a{
	color:#333;
}

@media screen and (max-width: 768px) {
/* 768pxまでの幅の場合に適応される */
.news_wrap{
	width: 100%;
	display: block;
}
.news_wrap .title{
	margin: 0 auto 0;
}
.news_wrap .title h2, .news_wrap .title p{
	text-align: center;
}
.news_wrap ul{
	width: 90%;
	margin: 30px auto 0;
}
.news_wrap ul li{
	width: 100%;
	display: block;
	margin: 0 auto 20px;
}
.news_wrap ul li div{
	width: 100px;
	float: left;
}
.news_wrap ul li span{
	margin: 0 0 10px;
	float: left;
}
.news_wrap ul li p{
	width: 100%;
	clear: both;
}
}

/***外来ご紹介***/
.blue-back{
	width: 100%;
	padding: 35px 0 25px;
	background-color: #cdf1f0;
	border-top: solid 6px #0abab5;
	border-bottom: solid 6px #0abab5;
	margin: 0 0 80px;
	text-align: center;
}
.blue-back span{
	margin: 0 0 80px;
	padding: 3px 10px 5px;
	font-size: 18px;
	font-weight: 700;
	background-color: #0abab5;
	color: #fff;
}
.blue-back h2{
	font-size: 27px;
	font-weight: 700;
	margin: 20px 0;
	padding: 0;
}
.blue-back p a{
	text-decoration: underline;
}
/* コンテナ */
.gairai {
    width: 90%;
    max-width: 450px;
    margin: 30px auto;
    text-align: center;
}

/* タイトル */
.gairai p {
    font-size: 18px;
    font-weight: 700;
    padding: 10px 0;
}

/* 日付リスト */
#day-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* 各日付 */
.gairai .day {
    width: calc(33% - 10px); /* PCで3列 */
    max-width: 150px;
    background-color: #fff;
    padding: 6px 0;
    border-bottom: solid 6px #f8b62d;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    box-sizing: border-box;
}

/* スマホ向け */
@media screen and (max-width: 480px) {
    .gairai {
        width: 95%;
    }

    .gairai .day {
        width: calc(50% - 10px); /* 2列表示 */
        font-size: 16px;
    }

    #day-list {
        gap: 8px;
    }
    
    .gairai-txt{
        width: 90%;
        margin: 0 auto;
        text-align: left;
    
    }
}

/* 超小型画面（iPhone SEも安全） */
@media screen and (max-width: 320px) {
    .gairai .day {
        width: 100%;
        margin-bottom: 8px;
    }
}

/* 予約文リンク */
.yoyaku a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.yoyaku .spbr {
    display: none;
}

/* スマホなら改行 */
@media screen and (max-width: 480px) {
    .yoyaku .spbr {
        display: inline;
    }
}



















/***診療科目***/
.information_box{
    max-width: 1050px;
	margin: 0 auto 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 240px);
    gap: 20px;
    justify-content: center;
}

.department-card {
    width: 200px;
    height: 202px;
    background: linear-gradient(135deg, #1fb5b5 0%, #18d4d4 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 20px 20px 18px;
    transition: all 0.3s ease;
}

.department-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.department-icon img {
    width: 80px;
    height: 80px;
}

.department-name {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.department-button {
    width: 180px;
    height: 42px;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 21px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* ホバー効果 */
.department-card:hover .department-icon {
    transform: scale(1.2);
}

.department-card:hover .department-button {
    background-color: #fff;
    color: #1fb5b5;
}



/***病院案内***/
.hospital_box{
	width: 1050px;
	margin: 0 auto 150px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 180px);
    gap: 30px;
    justify-content: center;
}


.hospital-card {
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    margin: 0 0 30px;
}

.hospital-card-image {
    width: 180px;
    height: 180px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.hospital-card-text {
    padding: 15px;
    background-color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    transition: transform 0.3s ease;
    transform-origin: center center;
}
.hospital-card-text img{
	width: 14px;
	height: 14px;
	margin: 0 0 0 4px;
}

.hospital-card-text span{
    font-size: 12px;
}

/* ホバー効果 */
.hospital-card:hover .hospital-card-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
}

/*
.hospital-card:hover .hospital-card-text {
    transform: scale(1.2);
}
*/


/***取り組み***/
.initiative_box{
	width: 1050px;
	margin: 0 auto 150px;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.initiative-card {
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    margin: 0 0 30px;
}

.initiative-card-image {
    width: 240px;
    height: 150px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.initiative-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.initiative-card-text {
    padding: 15px;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    transition: transform 0.3s ease;
    transform-origin: center center;
}
.initiative-card-text img{
	width: 22px;
	height: 18px;
	margin: 0 4px 0 0;
}

.initiative-card-svg{
    width: 54px;
    height: 54px;
    margin: 0 auto;
}
.initiative-card-svg img {
    width: 54px;
    height: 54px;
}

/* ホバー効果 */
.initiative-card:hover .initiative-card-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
}

/*
.initiative-card:hover .initiative-card-text {
    transform: scale(1.2);
}
*/




/* 学会実績 */
/* メインコンテナ */
.achievements-section {
    max-width: 1050px;
    margin: 0 auto 150px;
    background-color: #cdf1f0;
    padding: 10px 0 20px;
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-size: 27px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

/* カードコンテナ */
.achievements-container {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    gap: 15px;
}

/* 個別カード */
.achievement-card {
    width: 300px;
    height: 240px;
    background-color: #fff;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* 年度と大会名 */
.achievement-year {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* 賞のラベル */
.award-label {
    background-color: #0abab5;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    padding: 3px 25px;
    border-radius: 5px;
    margin: 15px 0;
}

/* トロフィーアイコン */
.trophy-icon {
    width: 38px;
    height: 42px;
    margin: 10px 0;
}

.trophy-icon img {
    width: 100%;
    height: 100%;
}

/* 説明テキスト */
.achievement-description {
    font-size: 14px;
    color: #0abab5;
    text-decoration: underline;
    line-height: 1.5;
    margin-top: 10px;
}

.achievement-description a{
    color: #0abab5 !important;
}

/* 学会発表・執筆活動 */
.hs_box{
	width: 1050px;
	margin: 0 auto 150px;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.hs_area{
	width: 510px;
}

.hs_midashi h2{
	width: 100%;
	font-size: 27px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 20px;
}

.hs_tit{
	width: 100%;
	padding: 0 0 12px 0;
	margin: 0 0 14px;
	font-size: 16px;
	border-bottom: solid 1px #0abab5;
	text-decoration: underline;
}


/* 獣医師出勤表 */
.calender_box{
	width: 1050px;
	margin: 0 auto 150px;
	position: relative;
}
.calender{
	width: 514px;
	height: 535px;
	margin: 0 auto 150px;
}


.corel_img01{
	width: 120px;
	height: 220px;
	position: absolute;
	left: 0;
	bottom: 0;
}
.corel_img01 img{
	width: 120px;
	height: 220px;
}

.corel_img02{
	width: 300px;
	height: 160px;
	position: absolute;
	right: -60px;
	bottom: 0;
}
.corel_img02 img{
	width: 300px;
	height: 160px;
}



@media screen and (max-width: 768px) {
/* 768pxまでの幅の場合に適応される */











/***注目医療***/


/***診療科目***/
.information_box{
    max-width: 90%;
	margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 100px);
    gap: 20px;
    justify-content: center;
}

.department-card {
    width: 80px;
    height: 100px;
    background: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    padding: 20px 10px 18px;
    transition: all 0.3s ease;
}

.department-icon {
    width: 80px;
    height: 80px;
    background-color: #cdf1f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.department-icon img {
    width: 80px;
    height: 80px;
}

.department-name {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
}

.department-button {
    display: none;
}

/* ホバー効果 */
.department-card:hover .department-icon {
    transform: scale(1.0);
}

.department-card:hover .department-button {
    background-color: #fff;
    color: #1fb5b5;
}


/***病院案内***/
.hospital_box{
	width: 90%;
	margin: 0 auto 80px;
    display: grid;
    grid-template-columns: repeat(auto-fit, 90px);
    gap: 30px;
    justify-content: center;
}


.hospital-card {
    width: 90px;
    height: 130px;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    margin: 0 0 30px;
}

.hospital-card-image {
    width: 90px;
    height: 90px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.hospital-card-text {
    padding: 0;
    background-color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    transition: transform 0.3s ease;
    transform-origin: center center;
}
.hospital-card-text img{
	display: none;
}

.hospital-card-text span{
	display: none;
}

/* ホバー効果 */
.hospital-card:hover .hospital-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
.hospital-card:hover .hospital-card-text {
    transform: scale(1.2);
}
*/


/***取り組み***/
.initiative_box{
	width: 90%;
	margin: 0 auto 80px;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.initiative-card {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    margin: 0 0 30px;
    position: relative;
}

.initiative-card-image {
    width: 120px;
    height: 75px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
}

.initiative-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.initiative-card-text {
    width: calc( 100% - 150px );
    height: 35px;
    padding: 25px 15px 15px;
    text-align: left;
    background-color: #cdf1f0;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
    transition: transform 0.3s ease;
    transform-origin: center center;
    float: left;
}
.initiative-card-text img{
	display: none;
}

.initiative-card-svg{
    width: 54px;
    height: 54px;
    margin: 0 auto;
    position: absolute;
    right: 15px;
    top: 10px;
}
.initiative-card-svg img {
    width: 54px;
    height: 54px;
}

/* ホバー効果 */
.initiative-card:hover .initiative-card-image img {
    width: 90%;
    height: 90%;
    object-fit: cover;
}

/*
.initiative-card:hover .initiative-card-text {
    transform: scale(1.2);
}
*/


/* 学会実績 */
/* メインコンテナ */
.achievements-section {
    max-width: 90%;
    margin: 0 auto 150px;
    background-color: #cdf1f0;
    padding: 10px 5% 20px;
}

/* セクションタイトル */
.section-title {
    text-align: center;
    font-size: 27px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

/* カードコンテナ */
.achievements-container {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    gap: 15px;
}

/* 個別カード */
.achievement-card {
    width: 300px;
    height: 240px;
    background-color: #fff;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 0 20px;
}

/* 年度と大会名 */
.achievement-year {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}

/* 賞のラベル */
.award-label {
    background-color: #0abab5;
    color: #fff;
    font-size: 21px;
    font-weight: 700;
    padding: 3px 25px;
    border-radius: 5px;
    margin: 15px 0;
}

/* トロフィーアイコン */
.trophy-icon {
    width: 38px;
    height: 42px;
    margin: 10px 0;
}

.trophy-icon img {
    width: 100%;
    height: 100%;
}

/* 説明テキスト */
.achievement-description {
    font-size: 14px;
    color: #0abab5;
    text-decoration: underline;
    line-height: 1.5;
    margin-top: 10px;
}
.achievement-description a{
    color: #0abab5;
}

/* 学会発表・執筆活動 */
.hs_box{
	width: 90%;
	margin: 0 auto 80px;
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-around;
	justify-content: space-around;
}

.hs_area{
	width: 100%;
	margin: 0 0 60px;
}

.hs_midashi h2{
	width: 100%;
	font-size: 27px;
	font-weight: 700;
	text-align: center;
	margin: 0 0 20px;
}

.hs_tit{
	width: 100%;
	padding: 0 0 12px 0;
	margin: 0 0 14px;
	font-size: 16px;
	border-bottom: solid 1px #0abab5;
	text-decoration: underline;
}

/* 獣医師出勤表 */
.calender_box{
	width: 90%;
	margin: 0 auto 80px;
	position: relative;
}
.calender{
	width: 100%;
	height: auto;
	margin: 0 auto 80px;
}

.calen_txt{
	width: 100%;
	font-size: 14px;
	text-align: center;
	margin: 10px 0 0;
}

.corel_img01{
	display: none;
}

.corel_img02{
	display: none;
}


}

@media screen and (min-width: 769px) {
/*　画面サイズが769pxからはここを読み込む　*/

}
