/* CSS Custom Properties (Variables) */
:root {
    /* Colors */
    --primary-color: #2bbec9;
    /* Teal */
    --secondary-color: #14ae5c;
    /* Green */
    --accent-color: #f9f6f2;
    /* Light beige */
    --text-color: #000000;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #d9d9d9;

    /* Typography */
    --font-family: 'Zen Maru Gothic', sans-serif;
    --font-size-base: 16px;
    --font-size-large: 32px;
    --font-size-medium: 24px;
    --font-size-small: 14px;
    
  --font-size-xs: 13px;
  --font-size-sm: 15px;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;

    /* Breakpoints */
    --bp-mobile: 768px;
    --bp-tablet: 1024px;
    --bp-desktop: 1280px;

    /* Layout */
    --container-max-width: 1280px;
    --header-height: 295px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Header Styles */
.header {
    position: relative;
    height: 295px;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.header-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask: linear-gradient(to right, transparent 0%, white 100%);
    -webkit-mask: linear-gradient(to right, transparent 0%, white 100%);
}

.header-block {
    position: relative;
    z-index: 99999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 29px 33px;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.6) 100%);
    height: 128px;
}

.logo img {
    height: 70px;
    width: auto;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: var(--spacing-xs);
    z-index: 1001;
    gap: 8px;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hamburger-menu span {
    width: 36px;
    height: 2px;
    background-color: var(--text-color);
    transition: 0.3s;
    border-radius: 1px;
}

.menu-text {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0;
    line-height: 1;
}

/* Breadcrumb */
#breadcrumb {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: var(--spacing-sm) var(--spacing-lg);
}

#breadcrumb ol {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

#breadcrumb ol li {
    font-size: var(--font-size-small);
    color: var(--text-color);
}
#breadcrumb ol li:after {
  content: "/";
  margin: 0 .5em;
  color: #999;
}

#breadcrumb ol li:last-child:after {
  content: "";
  margin-right: 0;
}

#breadcrumb ol li a {
  color: #222222;
  text-decoration: none;
}
/* Main Content */
.main {
    margin-top: var(--spacing-xl);
}

/* Intro Section */
.intro-section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1005px;
    margin: 0 auto;
}

.intro-image {
    flex-shrink: 0;
}

.intro-image img {
    width: 154px;
    height: 154px;
    object-fit: cover;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: #c89058;
    margin: 0;
    text-align: left;
}

/* Hero Section */
.hero {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.hero-container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 8px;
}

.hero-title-container {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.hero-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin: 0;
    color: var(--text-color);
    text-align: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    max-width: 1024px;
    margin: 0 auto;
}

.hero-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #f9f6f2;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    height: 70px;
    box-sizing: border-box;
}

.hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    color: var(--text-color);
    flex: 1;
    text-align: left;
}

.card-icon {
    width: 22px;
    height: 22px;
    background-color: #ffa629;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon img {
    width: 12px;
    height: 12px;
    filter: brightness(0) invert(1);
}

.btn-wrap {
    display: flex;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--spacing-md);
    background-color: var(--accent-color);
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: left;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-text {
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.4;
}

.btn-arrow {
    width: 24px;
    height: 24px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: rotate(90deg) translateX(4px);
}

/* Section Styles */
.section {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
}

.section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    margin-bottom: var(--spacing-lg);
    position: relative;
    background: none !important;
    padding-left: 0 !important;
    margin-bottom: 0 !important;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
}

.section-description {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    color: var(--text-color);
    text-align: left;
    max-width: 1024px;
    margin: 0 auto var(--spacing-xl);
}

/* Green Button */
.btn-green{
    text-align: center;
    margin-top: var(--spacing-md);
}
.btn-green a{
    background: url("../../assets/img/ar_white.svg") no-repeat right 25px center var(--secondary-color);
    color: var(--white);
    border-radius: 30px;
    padding: 18px 36px;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    box-shadow: 0 0 16.7px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    width: 340px;
    height: 60px;
    justify-content: center;
    margin: auto;
}
.btn-green a:before,
.btn-green a:after{
    display: none;
}

.btn-green a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-more {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* innner-contents-btn */
ul.innner-contents-btn,
ul.innner-contents-btn li{
    list-style: none;
    margin: 0;
}
.innner-contents-btn {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 15px;
    margin: var(--spacing-xl) 0;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
    margin-top: var(--spacing-md);
}
@media screen and (max-width: 768px){
    .innner-contents-btn {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
    }
}

.innner-contents-btn a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px 20px 20px;
    background: url("../img/ar_white_circle.svg") no-repeat right 20px center var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    height: 80px;
    box-sizing: border-box;
}

.innner-contents-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 190, 201, 0.3);
}

.disease-text {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    color: var(--white);
    flex: 1;
    text-align: left;
}

.disease-icon {
    width: 24px;
    height: 24px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disease-icon img {
    width: 12px;
    height: 12px;
    filter: brightness(0);
}

/* Footer */
.footer_navGlobalWrap{
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}
.footer_navGlobal {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.menu-item {
  text-decoration: none;
  color: var(--color-black);
  font-size: var(--font-size-lg);
  font-weight: bold;
  padding: 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.footer_navGlobal a {
  text-decoration: none;
  color: var(--color-black);
  font-size: var(--font-size-xs);
}

.footer_navGlobal a:hover {
  text-decoration: underline;
}
.copyright {
  text-align: center;
  font-size: var(--font-size-sm);
  color: #A9A9A9;
}


/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: var(--white);
    padding: var(--spacing-md);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--spacing-lg);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-list {
    list-style: none;
}

.mobile-menu-list li {
    margin-bottom: var(--spacing-md);
}

.mobile-menu-list a {
    display: block;
    padding: var(--spacing-sm);
    color: var(--text-color);
    font-size: var(--font-size-base);
    border-bottom: 1px solid var(--gray-light);
    transition: background-color 0.3s ease;
}

.mobile-menu-list a:hover {
    background-color: var(--accent-color);
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --header-height: 200px;
        --font-size-large: 28px;
        --spacing-xl: 40px;
        --spacing-xxl: 48px;
    }

    .hero-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }

    .disease-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
        gap: 12px;
    }

    .disease-card {
        padding: 16px;
        height: 70px;
    }

    .disease-text {
        font-size: 14px;
        line-height: 20px;
    }

    .disease-icon {
        width: 20px;
        height: 20px;
    }

    .disease-icon img {
        width: 10px;
        height: 10px;
    }

    .hero-title {
        font-size: 28px;
    }

    .intro-content {
        gap: 12px;
        max-width: 800px;
    }

    .intro-image img {
        width: 120px;
        height: 120px;
    }

    .intro-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 12px;
    }

    .hero-card {
        padding: 16px;
        height: 60px;
    }

    .card-text {
        font-size: 14px;
        line-height: 20px;
    }

    .card-icon {
        width: 20px;
        height: 20px;
    }

    .card-icon img {
        width: 10px;
        height: 10px;
    }

    .section-title {
        font-size: 28px;
        line-height: 40px;
    }

    .section-description {
        font-size: 15px;
        line-height: 22px;
    }

    .btn-green {
        width: 240px;
        height: 55px;
        font-size: 16px;
        padding: 16px 32px;
    }
    .footer_navGlobal{
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
        padding: 0;
        margin-top: 50px;
    }
    .menu-item {
        width: calc(100% / 3);
        box-sizing: border-box;
        padding: 10px;
    }

}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 150px;
        --font-size-large: 24px;
        --font-size-base: 14px;
        --spacing-md: 16px;
        --spacing-lg: 24px;
        --spacing-xl: 32px;
        --spacing-xxl: 40px;
    }

    .header {
        height: 200px;
    }
    .header-block {
        padding: 10px;
        display: block;
        height: auto;
        /*height: 150px;*/
        background: none;
    }

    .logo img {
        height: 50px;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .disease-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, 1fr);
        gap: 10px;
    }

    .disease-card {
        padding: 14px;
        height: 60px;
    }

    .disease-text {
        font-size: 13px;
        line-height: 18px;
    }

    .disease-icon {
        width: 18px;
        height: 18px;
    }

    .disease-icon img {
        width: 8px;
        height: 8px;
    }

    .section-title {
        font-size: var(--font-size-medium);
    }

    .breadcrumb {
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-title {
        font-size: 24px;
    }

    .intro-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .intro-image img {
        width: 100px;
        height: 100px;
    }

    .intro-text p {
        font-size: 14px;
        line-height: 22px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 10px;
    }

    .hero-card {
        padding: 14px;
        height: 50px;
    }

    .card-text {
        font-size: 13px;
        line-height: 18px;
    }

    .card-icon {
        width: 18px;
        height: 18px;
    }

    .card-icon img {
        width: 8px;
        height: 8px;
    }

    .section-title {
        font-size: 24px;
        line-height: 34px;
        text-align: center;
    }

    .section-description {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }

    .btn-green {
        width: 90%;
        box-sizing: border-box;
        height: 50px;
        font-size: 14px;
        padding: 14px 28px;
        margin: auto;
    }
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/*common & add
************************************************************************************/
.clearfix:after{
	content: "";
	display: block;
	clear: both;
	height: 1px;
	overflow: hidden;
}
/*\*/
* html .clearfix{
	height: 1em;
}

.clearfix{
	display: block;
}
.lv_h1,
.post-content h1{
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 32px;
    font-weight: 700;
    padding: .4em 1em;
    margin-bottom: 1em;
    text-align: left;
    background: #FEE4B9;
    border-top: 3px solid #F2C276;
}
.lv_h2,
.post-content h2{
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 24px;
    font-weight: 700;
}
.lv_h2:before,
.post-content h2:before{
    content: "●";
    color: #84CD9C;
    padding-right: .3em;
}

.lv_h3,
.post-content h3{
	color: #000;
	font-size: 24px;
	display: flex;
	align-items: center;
    margin: 2em 0 1em;
}
.lv_h3:before,
.post-content h3:before,
.lv_h3:after,
.post-content h3:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	background: #000;
	display: block;
}
.lv_h3:before,
.post-content h3:before{
	margin-right: .7em;
}
.lv_h3:after,
.post-content h3:after{
	margin-left: .7em;
}

.section-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 32px;
    font-weight: 700;
    padding: 15px 0 0 0;
    margin-bottom: 1em;
    color: var(--text-color);
    text-align: left;
}
.insection-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 18px;
    font-weight: 700;
    padding: .6em 1em;
    margin-bottom: 1em;
    color: var(--white);
    text-align: left;
    background: #84CD9C;
}



.topcontent-copy{
    color: #C89058;
    font-size: 18px;
    font-weight: 700;
}

.contents-btn{
    margin: 40px auto;
}
.contents-btn ul,
.contents-btn li{
    list-style-type: none;
    margin: 0;
}
.contents-btn ul{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
	column-gap: 15px;
	row-gap: 15px;
	align-items: stretch;
}
@media screen and (max-width: 768px){
    .contents-btn ul{
        grid-template-columns: 1fr;
    }
}
.contents-btn li a{
    background: url("../../assets/img/ar-orange.svg") no-repeat right 15px center #F9F6F2;
    display: block;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    padding: 15px 30px 15px 15px;
    transition: all 0.3s ease;
}
.contents-btn li a:hover{
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/*#page_disease.page_details
************************************************************************************/
#page_disease.page_details .container.post-content h1{
    margin-bottom: var(--spacing-lg);
    position: relative;
    background: none !important;
    padding-left: 0 !important;
    margin: 1em 0 !important;
    margin-bottom: 0 !important;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 32px;
    font-weight: 700;
    padding: 15px 0 2em 0;
    color: var(--text-color);
    text-align: left;
    clear: both;
}
#page_disease.page_details .container.post-content h1::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
}
#page_disease.page_details .container.post-content{
    padding-bottom: 2em;
}
#page_disease.page_details .container.post-content img{
    max-width: 100%;
    height: auto;
}
#page_disease.page_details .head_data{
    display: flex;
    flex-wrap: wrap;
    width: 40%;
    margin: 0 0 1em auto;
}
#page_disease.page_details .head_data dt{
    width: 4em;
    padding: .5em 0;
}
#page_disease.page_details .head_data dt:after{
    content: "：";
}
#page_disease.page_details .head_data dd{
    width: calc(100% - 5em);
    padding: .5em 0;
}

#page_disease.page_details .head_data dd .affiliation{}
#page_disease.page_details .head_data dd .name{
    padding: .6em 0;
    font-weight: bold;
    font-size: 18px;
}
#page_disease.page_details .head_data dd .message{}

#page_disease.page_details .header_contents,
#page_disease.page_details .faq_contents{
    background: #FBFAF2;
    width: 100%;
    margin-bottom: 40px;
}
#page_disease.page_details .header_contents .container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#page_disease.page_details .header_contents .container .photo{
    width: 300px;
}
#page_disease.page_details .header_contents .container .photo img{
    max-width: 100%;
    height: auto;
}
#page_disease.page_details .header_contents .container .text{
    padding: 30px;
    width: calc(100% - 300px);
    box-sizing: border-box;
}
#page_disease.page_details .header_contents .container .text p{
    padding-bottom: .6em;
}
#page_disease.page_details .header_contents .container .text .catch{
    font-size: 32px;
    font-weight: bold;
}
#page_disease.page_details .header_contents .container .text .catch_sub{
    font-size: 24px;
    font-weight: bold;
}
#page_disease.page_details ul.dis_ankerMenu{
    display: table;
    margin: 1em auto;
    border-top: 1px solid #ccc;
    padding-top: 1em;
}
#page_disease.page_details ul.dis_ankerMenu li{
    display: table-cell;
    vertical-align: middle;
    padding: 0 1em;
    border-right: 1px solid #ccc;
}
#page_disease.page_details ul.dis_ankerMenu li:last-child{
    border: 0;
}

@media screen and (max-width: 768px){
    #page_disease.page_details .head_data{
        width: 100%;
    }
    #page_disease.page_details .header_contents .container{
        display: block;
    }
    #page_disease.page_details .header_contents .container .photo{
        width: auto;
    }
    #page_disease.page_details .header_contents .container .text{
        width: 100%;
    }
    #page_disease.page_details .header_contents .container .text p{
        padding-bottom: .6em;
    }
    #page_disease.page_details ul.dis_ankerMenu{
        display: flex;
        flex-wrap: wrap;
        border: 0;
    }
    #page_disease.page_details ul.dis_ankerMenu li,
    #page_disease.page_details ul.dis_ankerMenu li:last-child{
        width: 50%;
        border: 1px solid #CCC;
        padding: 15px;
    }
}
#page_disease ul.list{
	margin-top: 80px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: auto;
	column-gap: 50px;
	row-gap: 50px;
	align-items: stretch;
}
#page_disease ul.list li{
	background: var(--color-point);
	box-shadow: 0px 0px 14px -5px #191919;
}
#page_disease ul.list .image{
	position: relative;
	width: 100%;
	z-index: 10;
	overflow: hidden;
	text-align: center;
	background: #f1f1f1;
}
#page_disease ul.list .image:before {
	content:"";
	display: block;
	padding-top: 60%;
}
#page_disease ul.list .image img{
	height: 120%;
	width: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
	margin: auto;
}
#page_disease ul.list .title{
	font-size: 1.125em;
	font-weight: bold;
	margin: .5em 0 .5em;
	padding: 0 1.5em;
	text-align: center;
}
#page_disease ul.list .title span{
	font-size: 0.813em;
}
#page_disease ul.list a{
	color: #000;
	text-decoration: none;
}
#page_disease ul.list .txt{
	padding: 0 1.5em;
	margin-bottom: 1em;
}
#page_disease ul.list .date{
	padding: 1em 0;
	margin: 1em 1.5em 0;
	border-top: 1px solid #000;
	text-align: right;
	font-size: 0.813em;
}

#page_disease dl.faq dt{
    background: #84CD9C;
    padding: .7em;
    color: #FFF;
    font-weight: 500;
    margin-top: .7em;
}
#page_disease dl.faq dt:before{
    content: "Q. ";
}
#page_disease dl.faq dd{
    padding: 1em;
}
#page_disease dl.faq dd p{
    padding-bottom: .7em;
}
#page_disease dl.faq dd p:last-child{
    padding: 0;
}
@media screen and (min-width: 1025px) {
	#page_disease ul.list li:hover{
		background: #F4F4F4;
		box-shadow: 0px 0px 0px -5px #191919;
	}
	#page_disease ul.list li:hover .image img{
		transform: scale(1.1);
	}
	.over-fade,
	.list li,
	.list .image img{
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
}
@media screen and (max-width: 1024px){
	#page_disease ul.list{
		column-gap: 30px;
		row-gap: 30px;
		grid-template-columns: 1fr 1fr;
	}
}
@media screen and (max-width: 768px){
	#page_disease ul.list{
		grid-template-columns: 1fr;
	}
}

/******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/*　フォーム全体　*/
#cf7-area {
    width: 100%;
    margin: 0 auto;
}
.cf7-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 0 1.75em;
}
.cf7-q {
    width: 30%;
    margin: 0 0 0 10px;
}
.cf7-a {
    width: 60%;
}
/*　見出し　*/
.form-heading {
    width: 100%;
    background-color: #191970;
    border-left: 1em solid #6495ED;
    border-radius: 2px;
    color: #ffffff;
    font-weight: bold;
    padding: 1em .8em;
    margin: 0 0 2em;
}
.form-heading p {
    margin: 0;
}
/* 各項目共通 */
#cf7-area label {
    font-weight: bold;
}
#cf7-area input[type="text"], #cf7-area input[type="email"], #cf7-area input[type="tel"], #cf7-area textarea, #cf7-area select {
    background: #F0F8FF;
    margin-left: 10px;
    padding: 10px;
    box-sizing: border-box;
    border: 0;
}
#cf7-area input[type="text"], #cf7-area input[type="email"], #cf7-area input[type="tel"], #cf7-area textarea {
    width: 500px;
}
#cf7-area input[type="text"]:focus, #cf7-area input[type="email"]:focus, #cf7-area input[type="tel"]:focus, #cf7-area textarea:focus, #cf7-area select:focus {
    background: #FFE4E1;
    outline: 0;
}
#cf7-area input[type="checkbox"], #cf7-area input[type="radio"] {
    appearance: auto;
}
#cf7-area .wpcf7-list-item {
    display: block;
}
#cf7-area textarea {
    height: 200px;
    padding: 0.625em 0.4375em;
}
.cf7-accept-check {
    text-align: center;
    margin: 50px auto;
}
.cf7-submit {
    width: 40%;
    margin: 0 auto;
    text-align: center;
}
#cf7-area input[type="submit"] {
    width: 100%;
    background-color: #191970;
    color: #ffffff;
    border-radius: 5px;
    font-size: 1.2em;
    padding: 1em 10px;
    cursor: pointer;
}
#cf7-area input[type="submit"]:disabled {
    background: #B7B7B7;
    cursor: default;
}
.cf7-btn {
    width: 40%;
    margin: 0 auto;
    text-align: center;
}
/*　必須ラベル　*/
.cf7-req {
    font-size: .8em;
    padding: 4px 6px;
    background: #eb2a2a;
    color: #ffffff;
    margin-left: 10px;
    display: inline-block;
}
@media screen and (max-width:768px) {
    .cf7-item {
        display: block;
    }
    #cf7-area label {
        display: block;
        margin-bottom: 10px;
    }
    .cf7-q {
        width: 100%;
        margin: 0;
    }
    .cf7-a {
        width: 100%;
    }
    #cf7-area input[type="text"], #cf7-area input[type="email"], #cf7-area input[type="tel"], #cf7-area textarea {
        margin-left: 0;
        width: 100%;
    }
    .cf7-submit {
        width: 90%;
    }
}

/*map関連
************************************************************************************/
.prefecture-list{
    display: none;
}
#pref-list{
    width: 50%;
}
#pref-list p{
    padding-left: 30px;
}
img.mapImg{width:1018px; height:auto; margin:auto; display:block;}
@media screen and (max-width: 1024px){
    img.mapImg{display:none;}
}
@media screen and (max-width: 1024px){
    #pref-list{
        width: 90%;
    }
    /* ul要素のスタイル */
    .prefecture-list {
        list-style: none !important; /* リストの黒点を削除 */
        padding: 0;
        margin: 0 auto !important;
        width: 98%; /* 指示通り幅を100%に */
        display: block;
    }
    .prefecture-list li{
        margin-bottom: 2px;
        border-radius: 5px;
        list-style: none !important;
    }

    /* a要素（ボタン本体）のスタイル */
    .prefecture-list a {
        display: block; /* 要素をブロックレベルにして、領域全体をクリック可能に */
        padding: 12px 15px; /* ボタンの上下左右の余白 */
        text-align: center; /* テキストを中央揃えに */
        color: white; /* テキストの色を白に */
        text-decoration: none; /* リンクの下線を削除 */
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* ボタン間の薄い区切り線 */
        transition: filter 0.2s ease-in-out; /* ホバー時のアニメーション効果 */

    }

    /* 最後のボタンの区切り線を消す */
    .prefecture-list li:last-child a {
        border-bottom: none;
    }

    /* マウスホバー時のエフェクト */
    .prefecture-list a:hover {
        filter: brightness(90%); /* ボタンを少し暗くしてフィードバックを返す */
    }

    /* ----- 地域ごとの配色 ----- */
    .color-group-1 { background-color: #90a0d0; } /* 北海道・東北 */
    .color-group-2 { background-color: #e8837d; } /* 関東 */
    .color-group-3 { background-color: #f05e58; } /* 東京 */
    .color-group-4 { background-color: #63b9e4; } /* 中部1 */
    .color-group-5 { background-color: #f5d45c; } /* 中部2 */
    .color-group-6 { background-color: #66c1ac; } /* 関西 */
    .color-group-7 { background-color: #92cd86; } /* 中国 */
    .color-group-8 { background-color: #a0bae5; } /* 四国 */
    .color-group-9 { background-color: #e1a3c7; } /* 九州 */
    .color-group-10 { background-color: #7262a4; }/* 沖縄 */
}


/*fellowship-report
************************************************************************************/
#page_fellowship-report ul.fellowship-report-list li{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    width: 100%;
    border-top: 1px solid #ccc;
}
#page_fellowship-report ul.fellowship-report-list li:last-child{
    border-bottom: 1px solid #ccc;
}
#page_fellowship-report ul.fellowship-report-list li .image{
    width: 200px;
}
#page_fellowship-report ul.fellowship-report-list li .image img{
    width: 200px;
    height: 150px;
    object-fit: cover;
}
#page_fellowship-report ul.fellowship-report-list li .details{
    padding: 0 0 0 30px;
    width: calc(100% - 200px);
    box-sizing: border-box;
}
#page_fellowship-report ul.fellowship-report-list li .details .title{
    font-size: 120%;
    font-weight: bold;
    border-radius: 3px;
    background: #EBF1D4;
    padding: 7px;
    margin-bottom: 5px;
}
#page_fellowship-report ul.fellowship-report-list li .details .year{
    text-align: right;
    color: #969696;
    margin-bottom: 10px;
}
#page_fellowship-report ul.fellowship-report-list li .details .cmt{}

@media screen and (max-width: 768px){
    #page_fellowship-report ul.fellowship-report-list li .image{
        width: 100%;
        text-align: center;
    }
    #page_fellowship-report ul.fellowship-report-list li .image img{
        width: auto;
        height: auto;
        object-fit: fill;
        max-width: 80%;
        display: block;
        margin: auto;
    }
    #page_fellowship-report ul.fellowship-report-list li .details{
       width: 100%;
        padding: 30px 0 0 0;
    }
}