@charset "utf-8";
#mv {
  width: 1200px;
  margin: 0 auto;
  padding: 50px;  
	background: url("../images/common/contents_mv.jpg") 0 85% no-repeat;
  background-size: cover;
  border-radius: 10px;
}
#mv h2 {
/*  font-size: clamp(2.8rem, 3vw + 0.3rem, 4.5rem);*/
  font-size: 3.6rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
  color: #000;
}
#mv p {
  font-size: 2.6rem;
  letter-spacing: 0.2em;
  color: var(--base-color);
}
#breadcrumbs {
  width: 1200px;
  margin: 15px auto 0;
}
#breadcrumbs ul {
  display: flex;
}
#breadcrumbs ul > li {
  margin-right: 12px;
  padding-left: 20px;
  font-size: 1.3rem;
  position: relative;
}
#breadcrumbs ul > li::before {
  content: "＞";
  font-size: 1rem;
  font-weight: 700;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#breadcrumbs ul > li:nth-child(1) {
  padding-left: 0;
}
#breadcrumbs ul > li:nth-child(1)::before {
  display: none;
}
#breadcrumbs ul > li a {
  color: #000;
}
#contents {
  width: 1200px;
  margin: 0 auto;
  padding: 50px 0 100px;
}
@media screen and (max-width:768px) {
  #mv {
    width: 100%;
    padding: 30px 20px;
    border-radius: 0;
  }
  #mv h2 {
  /*  font-size: clamp(2.8rem, 3vw + 0.3rem, 4.5rem);*/
    font-size: 2.5rem;
  }
  #mv p {
    font-size: 1.8rem;
  }
  #breadcrumbs {
    width: auto;
    padding: 0 20px;
  }
  #breadcrumbs > li {
    font-size: 1.2rem;
  }
  #contents {
    width: auto;
    padding: 30px 20px;
  }
}

/***** ページリンク *****/
#page_link {
  margin-bottom: 50px;
  display: flex;
}
#page_link li {
  width: 23.5%;
  margin-right: 2%;
}
#page_link li:last-child {
  margin-right: 0;
}
#page_link > li a {  
  padding: 15px 20px;
	font-weight: 700;
  font-family: var(--ttl-font);
	text-decoration: none;
  letter-spacing: 0.1em;
	color: var(--base-color);
	transition: all 0.4s;
	border-radius: 10px;
  background: var(--sub-color1);
  border: var(--base-color) 2px solid;
  display: block;
  position: relative;
}
#page_link > li a:hover {
	color: var(--base-color);
	background-color: #fff;
}
#page_link > li.focus a {
  color: var(--sub-color1);
  background: var(--base-color);
}
#page_link > li.focus a::before {
	background: #fff;
}
#page_link > li.focus a::after {
	border-top: 1px solid var(--base-color);
	border-right: 1px solid var(--base-color);
}
#page_link > li a::before {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--base-color);
}
#page_link > li a::after {
	width: 4px;
	height: 4px;
	right: 21px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#page_link > li.focus a:hover {
  color: var(--base-color);
  background: #fff;
}
#page_link > li.focus a:hover::before {
	background: var(--base-color);
}
#page_link > li.focus a:hover::after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}
@media screen and (max-width:768px) {
  #page_link {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  #page_link li {
    width: 49%;
    margin-bottom: 2%;
    margin-right: 2%;
  }
  #page_link li:nth-child(2n) {
    margin-right: 0;
  }
  #page_link > li a {
    padding: 10px;
    font-size: 1.6rem;
  }
  #page_link > li a::before {
    width: 20px;
    height: 20px;
  }
  #page_link > li a::after {
    width: 4px;
    height: 4px;
    right: 19px;
  }
}

/***** under *****/
#under {
  margin: 100px 0 200px 100px;
}
@media screen and (max-width:768px) {
  #under {
    margin: 50px 0 100px;
    text-align: center;
  }
}

/***** 見出し *****/
#contents .ttl:first-child {
  margin-top: 0;
}
#page_link + .ttl {
  margin-top: 0;
}
.ttl {
  margin: 70px 0 35px;
  font-size: 2.8rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
  color: var(--base-color);
  position: relative;
}
.ttl::after {
  content: "";
  width: 200px;
  height: 9px;
  margin-left: 20px;
  background: url("../images/common/wave.svg") 0 30% no-repeat;
  display: inline-block;
}
.sub_ttl {
  margin: 30px 0 20px;
  font-size: 2.3rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  color: var(--base-color);
}
.caption {
  margin: 25px 0 15px;
  padding-left: 12px;
  font-size: 2.1rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  border-left: var(--base-color) 4px solid;
}
@media screen and (max-width:768px) {
  .ttl {
    margin: 30px 0 20px;
    font-size: 2.1rem;
    letter-spacing: 0;
  }
  .ttl::after {
    content: "";
    width: 50px;
    height: 9px;
    margin-left: 10px;
    background: url("../images/common/wave.svg") 0 30% no-repeat;
    display: inline-block;
  }
  .sub_ttl {
    margin: 20px 0 15px;
    font-size: 1.9rem;
    font-weight: 700;
  }
}

/***** box *****/
.box {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 10px;
}
.box_gl_bg {
  background: var(--sub-color1);
}
.tel {
  margin-top: 10px;
}
.tel p {  
  padding-left: 47px;
  font-size: 3.2rem;
  font-weight: 500;
  background: url("../images/common/footer_tel_icon.svg") 0 50% no-repeat;
  background-size: 35px;
}
@media screen and (max-width:768px) {
  .box {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
  }
  .tel {
    padding: 15px;
    background: var(--sub-color1);
    border-radius: 10px;
  }
  .tel p {
    padding-left: 0;
    font-size: 2.6rem;
    font-weight: 500;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tel p::before {
    content: "";
    width: 35px;
    height: 35px;
    margin-right: 15px;
    display: block;
    background: url("../images/common/footer_tel_icon.svg") 0 0 no-repeat;
    background-size: 35px;
  }
}

/***** figure *****/
.figure {
  margin-top: 20px;
  margin-bottom: 20px;
}
.figure img {
  width: 100%;
}
.figure figcaption {
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
}
.figure figcaption:first-child {
  margin-top: 0;
}
.figure figcaption:last-child {
  margin-bottom: 0;
}
.fig_mid {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.flex_box {
  display: flex;
  justify-content: space-between;
}
.flex_box > div {
  flex: 1;
}
.flex_box > figure {
  width: 40%;
  margin-left: 5%;
  order: 2;
  border-radius: 10px;
}
.flex_box > figure img {
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width:768px) {
  .fig_mid {
    width: 100%;
  }  
  .flex_box {
    display: block;
  }
  .flex_box > figure {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .flex_box > figure img {
    width: 100%;
    border-radius: 10px;
  }
}

/***** table *****/
@media screen and (max-width:768px) {
}

/***** センターについて *****/
#introduction_box {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
}
#introduction_box > div {
  flex: 1;
}
#introduction_box > div > h3 {
  margin-bottom: 50px;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  line-height: 2;
  letter-spacing: 0.1em;
}
#introduction_box > div > p {
  margin-top: 30px;
  font-size: 1.8rem;
  line-height: 1.8;
}
#introduction_box > figure {
  width: 450px;
  height: 480px;
  margin-left: 80px;
  border-radius: 10px;
  background: url("../images/contents/about/introduction_img.jpg") 50% 0 no-repeat;
  background-size: cover;
}
#role_card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#role_card > div {
  width: 31%;
  margin-bottom: 3.5%;
  padding: 40px;
  text-align: center;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
#role_card > div > p {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--ttl-font);
}
@media screen and (max-width:768px) {
  #introduction_box {
    display: block;
  }
  #introduction_box > div {
    flex: 1;
  }
  #introduction_box > div > h3 {
    margin-bottom: 30px;
    font-size: 2.1rem;
    line-height: 1.8;
    letter-spacing: 0;
  }
  #introduction_box > div > p {
    margin-top: 20px;
    font-size: 1.6rem;
  }
  #introduction_box > figure {
    width: 100%;
    height: 300px;
    margin-left: 0;
    margin-top: 20px;
  }
  #role_card {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #role_card > div {
    width: 48%;
    margin-bottom: 4%;
    padding: 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
  }
  #role_card > div > figure {
    width: 70%;
    margin: 0 auto;
  }
  #role_card > div > figure > img {
    width: 100%;
  }
  #role_card > div > p {
    margin-top: 10px;
    font-size: 1.6rem;
  }
  #role_card > div > p br {
    display: none;
  }
}

/***** 相談できる内容 *****/
#content_card {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#content_card > div {
  width: 48%;
  margin-bottom: 4%;
  padding: 40px;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
#content_card > div > h4 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--ttl-font);
}
@media screen and (max-width:768px) {
  #content_card {
    display: block;
  }
  #content_card > div {
    width: 100%;
    margin-bottom: 4%;
    padding: 20px;
  }
  #content_card > div > h4 {
    margin-bottom: 10px;
    font-size: 2rem;
  }
}

/***** 相談の流れ *****/
#flow_card > div {
  padding: 50px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: var(--box-shadow);
}
#flow_card > div > dl {
  width: 230px;
  margin-right: 50px;
  border-right: var(--base-color) 1px solid;
}
#flow_card > div > dl dt {
  font-size: 2.5rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
  color: var(--base-color);
}
#flow_card > div > dl dd {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  letter-spacing: 0.1em;
}
#flow_card > div > div {
  flex: 1;
}
#flow_card > div > div > p {
  font-size: 1.8rem;
}
.flow_arrow {
  margin: 20px auto;
  text-align: center;
}
.flow_btn {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
.flow_btn.flow_btn_start {
  align-items: flex-start;
}
.flow_btn > li {
  width: 35%;
  margin-right: 20px;
}
.flow_btn > li a,
.flow_btn > li > span {
  padding: 10px;
  font-size: 1.8rem;
}
.flow_btn > li a::before {
	width: 24px;
	height: 24px;
}
.flow_btn > li a::after {
	width: 4px;
	height: 4px;
	right: 21px;
}
@media screen and (max-width:768px){
  #flow_card > div {
    padding: 20px;
    display: block;
  }
  #flow_card > div > dl {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    border-right: none;
  }
  #flow_card > div > dl dt {
    font-size: 2rem;
  }
  #flow_card > div > dl dd {
    font-size: 2rem;
  }
  #flow_card > div > div > p {
    font-size: 1.6rem;
  }
  .flow_arrow {
    margin: 15px auto;
  }
  .flow_btn {
    margin-top: 15px;
    display: block;
  }
  .flow_btn > li {
    width: 100%;
    margin-right: 0;
    margin-top: 10px;
  }
  .flow_btn > li a,
  .flow_btn > li > span {
    padding: 10px;
    font-size: 1.6rem;
  }
  .flow_btn > li a::before {
    width: 24px;
    height: 24px;
  }
  .flow_btn > li a::after {
    width: 4px;
    height: 4px;
    right: 21px;
  }  
}

/***** イベント *****/
.event_tb {
  width: 100%;
  margin-top: 15px;
}
.event_tb th {
  width: 25%;
  padding: 20px;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-align: left;
  border: #ddd 1px solid;
  background: var(--sub-color1);
}
.event_tb td {
  padding: 20px;
  border: #ddd 1px solid;
}
.event_thum_card {
  display: flex;
  flex-wrap: wrap;
}
.event_thum_card > div {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 2%;
  padding: 30px;  
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.event_thum_card > div:nth-child(2n) {
  margin-right: 0;
}
.event_thum_card > div > h4 {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  color: var(--base-color);
}
.event_thum_card > div > dl {
  margin-top: 10px;
  display: flex;
}
.event_thum_card > div > dl dt {
  width: 4em;
  margin-right: 15px;
  padding: 3px 0;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-align: center;
  line-height: 1.5;
  color: #fff;
  background: var(--base-color);
  border-radius: 5px;
}
.event_thum_card > div > dl dd {
  font-size: 1.6rem;
}
.event_thum_btn {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
.event_thum_btn a {
  padding: 3px 10px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-decoration: none;
  color: #fff;
  display: inline-block;
  background: var(--base-color);
  border-radius: 5px;
  transition: 0.5s;
  border: var(--base-color) 2px solid;
}
.event_thum_btn a:hover {
  color: var(--base-color);
  background: #fff;
}
@media screen and (max-width:768px){
  .event_tb th {
    width: 25%;
    padding: 5px;
  }
  .event_tb td {
    padding: 5px;
  }
  .event_thum_card {
    display: block;
  }
  .event_thum_card > div {
    width: 100%;
    margin-right: 0%;
    padding: 15px;  
  }
  .event_thum_card > div > h4 {
    font-size: 1.8rem;
  }
  .event_thum_card > div > dl {
    margin-top: 10px;
    align-items: flex-start;
  }
  .event_thum_card > div > dl dt {
    margin-right: 10px;
  }
  .event_thum_btn > div > dl dd {
    font-size: 1.6rem;
  }
  .event_thum_btn {
    margin-top: 15px;
    display: flex;
    justify-content: flex-start;
  }
  .event_thum_btn a {
    width: 100%;
    text-align: center;
    display: block;
  }
}

/***** 情報 *****/
.information_link {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: #ddd 1px solid;
}
.information_link dt {
  font-weight: 700;
}
.information_link dd {
  margin-left: 30px;
}
.information_link dd a {
  padding: 3px 10px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-decoration: none;
  color: #fff;
  display: inline-block;
  background: var(--base-color);
  border-radius: 5px;
  transition: 0.5s;
  border: var(--base-color) 2px solid;
}
.information_link dd a:hover {
  color: var(--base-color);
  background: #fff;
}
@media screen and (max-width:768px){
  .information_link {
    display: block;
  }
  .information_link dd {
    margin-left: 0;
    margin-top: 10px;
  }
}

/***** faq *****/
.faq_box {
  margin-bottom: 30px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}
.faq_box dl {
  display: flex;
  align-items: center;
}
.faq_box dl dt {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  font-weight: 700;
  color: #fff;;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq_box dl dd {
  flex: 1;
}
.faq_box dl:nth-child(1) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: #333 1px dotted;
}
.faq_box dl:nth-child(1) dt {
  background: var(--base-color);
}
.faq_box dl:nth-child(1) dd {
  font-family: var(--ttl-font);
  font-weight: 700;
}
.faq_box dl:nth-child(2) dt {
  background: var(--sub-color2);
}
@media screen and (max-width:768px){
  .faq_box {
    margin-bottom: 25px;
    padding: 20px;
  }
  .faq_box dl {
    align-items: flex-start;
  }
  .faq_box dl dt {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  .faq_box dl dd {
    padding-top: 5px;
  }
  .faq_box dl:nth-child(1) {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

/***** アクセス *****/
#access_box {
  display: flex;
  justify-content: space-between;
}
#access_box > div:nth-child(1) {
  width: 50%;
  margin-right: 50px;
}
#access_box > div:nth-child(1) iframe {
  width: 100%;
}
#access_box > div:nth-child(2) {
  flex: 1;
}
#access_box > div:nth-child(2) .sub_ttl {
  margin-top: 0;
}
.access_dl1 {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
div .access_dl1:last-child {
  margin-bottom: 0;
}
.access_dl1 dt {
  width: 7em;
  margin-right: 15px;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  text-align: center;
  line-height: 1;
  color: #fff;
  background: var(--base-color);
  border-radius: 5px;
}
.train_box {
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  border-bottom: #333 1px dotted;
}
.train_box > p {
  width: 20%;
  margin-right: 50px;
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--ttl-font);  
}
.train_box > div {
  flex: 1;
}
.train_box > div > ul li {
  margin-bottom: 10px;
}
.train_box > div > ul li:last-child {
  margin-bottom: 0;
}
.bus_box {
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  border-bottom: #333 1px dotted;
}
.bus_box > ul {
  width: 40%;
  margin-right: 50px;  
}
.bus_box > ul li {
  padding-left: 20px;
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--ttl-font);
  position: relative;
}
.bus_box > ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  vertical-align: middle;
  background: var(--base-color);
  border-radius: 100px;
  position: absolute;
  top: 0.7em;
  left: 0;
/*  transform: translateY(-50%);*/
}
@media screen and (max-width:768px){
  #access_box {
    display: block;
  }
  #access_box > div:nth-child(1) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  #access_box > div:nth-child(1) iframe {
    height: 70vw;
  }
  .train_box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: block;
  }
  .train_box > p {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: 700;
  }
  .train_box > div > ul li {
    margin-bottom: 0;
  }
  .bus_box {
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: block;
  }
  .bus_box > ul {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .bus_box > ul li {
    font-size: 1.8rem;
  }
  .bus_box > ul li::before {
    top: 0.8em;
  }
}

/***** form *****/
.form_box {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: #eee 3px solid;  
}
#confirmArea .form_flex {
  margin-bottom: 0!important;
}
#confirmArea .form_flex > div:nth-of-type(1) {
  padding-top: 0!important;
}
.form_flex > div:nth-child(1) {
  font-weight: 700;
  color: var(--base-color);
}
.form_flex > div:nth-child(1) p,
.form_flex > div:nth-child(1) span {
  font-weight: 400;
  color: #333;
}
.form_flex {
  margin-bottom: 15px;
  display: flex;
}
.form-parts .form_flex:last-child,
.form-parts.form_flex {
  margin-bottom: 0;
}
.form_flex > div:nth-of-type(1) {
  width: 27%;
  margin-right: 5%;
  padding-top: 10px;
}
.form_flex > div:nth-of-type(2) {
  flex: 1;
}
.form_flex > div:nth-of-type(2) > div {
  margin-bottom: 15px;
}
.form_flex > div:nth-of-type(2) > div:last-child {
  margin-bottom: 0;
}
.form_flex > div > .form-parts > div {
  margin-bottom: 10px;
  font-weight: 700;
}
input[type="text"],
input[type="email"],
textarea {
  padding: 10px;
  font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: 0.3s;
}
/* フォーカス時 */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--base-color)!important;
  box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
}
select {
  padding: 10px;
  border-radius: 6px;
  font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
  border: #ddd 1px solid;
}
option {
  font-size: 1.8rem;
	font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  border: #ddd 1px solid;
}
textarea {
  width: calc(100% - 20px);
  height: 200px;
}
.datepicker {
  padding-right: 35px;
  background: url("../images/form/calendar_icon.svg") no-repeat right 10px center;
  background-size: 16px;
  cursor: pointer;
}
.input_s {
  width: 40%;
}
.input_full {
  width: calc(100% - 20px);
}
.form_list {
  display: flex;
  flex-wrap: wrap;
}
.form_list li {
  margin-right: 15px;
  font-weight: 400;
}
.line_bottom {
  padding-bottom: 10px;
  border-bottom: #333 1px dotted;
}
.submit {
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 0;
  font-size: 1.8rem;
	font-weight: 700;
  font-family: var(--ttl-font);
	text-decoration: none;
  letter-spacing: 0.1em;
	color: #fff;
	transition: all 0.4s;
	border-radius: 10px;
  background: var(--base-color);
  border: var(--base-color) 2px solid;
  display: block;
  position: relative;
  cursor: pointer;
}
/*
#confirmArea .submit {
  width: 45%;
  margin: 0;
  display: inline-block;
}
#confirmArea .submit:nth-of-type(1) {
  margin-right: 10%;
}
*/
.parts-error-message,
.error-message {
  font-weight: 700;
  color: #cc0000;
}
#submit_btn_box {
  display: flex;
  justify-content: center;
}
#confirmArea .submit {
  margin: 0 5%;
}
@media screen and (max-width:768px){
  .form_box {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: #eee 2px solid;  
  }
  .form_flex {
    margin-bottom: 15px;
    display: block;
  }
  .form_flex > div:nth-of-type(1) {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    padding-top: 0;
  }
  .submit {
    width: 48%;
    padding: 10px 0;
  }
  .datepicker {
    width: calc(100% - 20px);
  }
  #submit_btn_box {
  display: flex;
  justify-content: space-between;
  }
  #confirmArea .submit {
    width: 47%;
    margin: 0;
  }
}

/***** カレンダー *****/
/*カレンダー全体*/
.flatpickr-calendar {
  background: var(--sub-color1)!important;
  color: #fff!important;
  border-radius: 10px!important;
  border: none!important;
  box-shadow: var(--box-shadow)!important;
}
/*日付セル*/
.flatpickr-day {
  font-size: 1.8rem!important;
  font-weight: 500!important;
  font-family: var(--ttl-font)!important;
  border-radius: 5px!important;
  border: none!important;
}
.flatpickr-day:hover {
  background: var(--base-color)!important;
  color: #fff!important;
  border: none!important;
}
/*選択された日*/
.flatpickr-day.selected {
  background: var(--sub-color4)!important;
  color: #fff!important;
  border: none!important;
}
/*今日の日*/
.flatpickr-day.today {
  border: 1px solid #4a90e2!important;
}
/*土日カラー変更*/
/* 日曜 */
/*
.flatpickr-day:nth-child(7n+1) {
  color: #ff6b6b!important;
}
*/
/* 土曜 */
/*
.flatpickr-day:nth-child(7n) {
  color: #4a90e2!important;
}
*/
/*無効日（選択不可）*/
.flatpickr-day.disabled {
  color: #999!important;
  background: #eee!important;
  cursor: not-allowed!important;
}
/*ヘッダー（月・年）*/
.flatpickr-months {
  font-weight: 700!important;
  font-family: var(--ttl-font)!important;
  background: var(--base-color)!important;
  color: white!important;
}
.flatpickr-current-month {
  font-size: 2rem!important;
  font-weight: 700!important;
  width: 75%;
  left: 12.5%;
  padding: 0!important;
  line-height: 1;
  height: 34px;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-weight: 700!important;
  color: white!important;  
}
.flatpickr-current-month {
  font-weight: 700!important;
  font-family: var(--ttl-font)!important;
}
.flatpickr-current-month .numInputWrapper span.arrowUp::after {
  border-bottom-color: rgba(255,255,255,0.9)!important;
}
.flatpickr-current-month .numInputWrapper span.arrowDown::after {
  border-top-color: rgba(255,255,255,0.9)!important;
}
.flatpickr-current-month input.cur-year {
  padding: 0!important;
  margin: 0!important;
  font-weight: 700!important;
  color: #fff!important;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  padding: 7px 10px!important;
}
.flatpickr-months .flatpickr-next-month {
  cursor: pointer;
  color: rgba(255,255,255,0.9)!important;
  fill: rgba(255,255,255,0.9)!important;
}
.flatpickr-months .flatpickr-prev-month {
  cursor: pointer;
  color: rgba(255,255,255,0.9)!important;
  fill: rgba(255,255,255,0.9)!important;
}
.flatpickr-months .flatpickr-prev-month:hover svg, .flatpickr-months .flatpickr-next-month:hover svg {
  fill: #f6ff00!important;
}
.flatpickr-calendar.arrowTop::before {
  display: none!important;
}
.flatpickr-calendar::before, .flatpickr-calendar::after {
  display: none!important;
}
/*
.flatpickr-calendar.arrowTop::before {
  border-bottom-color: var(--base-color)!important;
}
.flatpickr-calendar::before, .flatpickr-calendar::after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-bottom-color: var(--base-color)!important;
    border-left-width: medium;
  content: '';
  height: 0;
  width: 0;
  left: 22px;
}*/


/***** news *****/
#news_list li:first-child {
  border-top: #ddd 1px solid;  
}
#news_list li {
}
#news_list li > a,
#news_list li > span {
  padding: 25px 15px;
  text-decoration: none;
  color: #000;
  border-bottom: #ddd 1px solid;
  display: flex;
  transition: 0.5s;
  position: relative;
}
#news_list li > a:hover {
  background: var(--sub-color1);
}
#news_list li > a::before,
#news_list li > a::after,
#news_list li > span::before,
#news_list li > span::after {
	content: "";
  position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	vertical-align: middle;  
}
#news_list li > a::before,
#news_list li > span::before {
	width: 28px;
	height: 28px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background: var(--sub-color1);
}
#news_list li > a::after,
#news_list li > span::after {
	width: 5px;
	height: 5px;
	right: 27px;
	border-top: 1px solid var(--base-color);
	border-right: 1px solid var(--base-color);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#news_list li dl {
  font-size: 1.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}
#news_list li dl > dt {
  width: 11.5em;
  display: flex;
  justify-content: space-between;
}
#news_list li dl > dt > span {
/*  margin-left: 25px;*/
  padding: 5px 15px;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  color: #fff;
  background: var(--base-color);
  border-radius: 5px;
}
#news_list li dl > dd {
  margin-left: 30px;
  flex: 1;
}
.pager {
  margin-top: 40px;
}
.pager > ul {
  display: flex;
  justify-content: center;
}
.pager > ul > li {
  margin: 0 20px;
}
.pager > ul > li a {
  padding: 8px 25px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: var(--base-color);
  border-radius: 100px;
  border: var(--base-color) 2px solid;
  transition: .5s;
}
.pager > ul > li a:hover {
  color: var(--base-color);
  background: #fff;  
}
#meta {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
#meta li:last-child {
  margin-left: 20px;
  padding: 3px 15px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: var(--base-color);
  border-radius: 5px;
}
.detali_img {
  margin-top: 30px;
}
.detali_img img {
  width: 100%;
}
@media screen and (max-width:768px){
  #news_list li > a,
  #news_list li > span {
    padding: 20px 35px 20px 0;
    text-decoration: none;
    color: #000;
    border-bottom: #ddd 1px solid;
    display: flex;
    transition: 0.5s;
    position: relative;
  }
  #news_list li > a::before,
  #news_list li > a::after,
  #news_list li > span::before,
  #news_list li > span::after {
    right: 0;
  }
  #news_list li > a::after,
  #news_list li > span::after {
    right: 12px;
  }
  #news_list li > a > dl,
  #news_list li > span > dl {
    font-size: 1.6rem;
    display: block;
  }
  #news_list li dl > dt {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }
  #news_list li dl > dt > span {
    margin-left: 15px;
    padding: 3px 10px;
    font-size: 1.2rem;
  }
  #news_list li dl dd {
    margin-left: 0;
    margin-top: 10px;
  }
  #meta {
    margin-botttm: 20px;
  }
}

/***** 臨床薬理センター追加調整：下層ページレイアウト *****/
/* 濃い紺色背景を薄いブルーに変更 */
.box_gl_bg {
  background: #eaf6ff;
  border: #c9e8ff 1px solid;
}
.box_gl_bg p,
.box_gl_bg li,
.box_gl_bg dd {
  color: #000;
}

/* 6ユニット一覧：画像を小さくして3列表示 */
#unit_index_card {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 0;
}
#unit_index_card > div {
  width: 31.5%;
  margin-bottom: 0;
  padding: 24px;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
#unit_index_card > div > h4 {
  margin-bottom: 12px;
  font-size: 1.9rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  color: var(--base-color);
  line-height: 1.45;
}
#unit_index_card .figure {
  margin: 0 0 16px;
}
#unit_index_card .figure img {
  width: 100%;
  height: 135px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
#unit_index_card > div > p:not(.btn) {
  font-size: 1.6rem;
  line-height: 1.7;
}
#unit_index_card .btn {
  margin-top: auto;
  padding-top: 14px;
}

/* 各ユニットページ：画像を「ユニットのミッション」の右に配置 */
.unit_mission_layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 35px;
}
.unit_mission_text {
  flex: 1;
}
.unit_mission_img {
  width: 40%;
  min-width: 420px;
  margin: 0;
  order: 2;
}
.unit_mission_img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

@media screen and (max-width:768px) {
  #unit_index_card {
    display: block;
    margin-top: 20px;
  }
  #unit_index_card > div {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
  }
  #unit_index_card .figure img {
    height: auto;
  }
  .unit_mission_layout {
    display: block;
    margin-bottom: 25px;
  }
  .unit_mission_img {
    width: 100%;
    min-width: 0;
    margin-top: 20px;
  }
  .unit_mission_img img {
    height: auto;
  }
}


/***** 臨床薬理センター追加調整 v3：関連ユニットボタン *****/
.related_unit_btns {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}
.related_unit_btns li {
  margin: 0;
  list-style: none;
}
.related_unit_btns a {
  min-width: 230px;
  padding: 13px 42px 13px 18px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  line-height: 1.45;
  color: #003f78;
  text-decoration: none;
  background: #eef8ff;
  border: #bfe3ff 1px solid;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: .25s;
}
.related_unit_btns a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--base-color);
  border-right: 2px solid var(--base-color);
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: .25s;
}
.related_unit_btns a:hover {
  color: #fff;
  background: var(--base-color);
  border-color: var(--base-color);
  text-decoration: none;
}
.related_unit_btns a:hover::after {
  border-color: #fff;
  right: 16px;
}
@media screen and (max-width:768px) {
  .related_unit_btns {
    display: block;
  }
  .related_unit_btns li {
    margin-bottom: 10px;
  }
  .related_unit_btns a {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
}


/***** 臨床薬理センター追加調整 v4：ユニット画像の注記・ギャラリー準備中 *****/
.unit_mission_img,
#unit_index_card .figure {
  position: relative;
  overflow: hidden;
}
.unit_mission_img::after,
#unit_index_card .figure::after {
  content: "※イメージ";
  padding: 3px 8px;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #333;
  background: rgba(255,255,255,0.86);
  border-radius: 3px 0 0 0;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.preparing_message {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f4fbff;
  border: #d5ecfb 1px solid;
  border-radius: 10px;
}
.preparing_message p {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  color: var(--base-color);
}


/***** 臨床薬理センター追加調整 v5：臨床試験ユニット 開設ロードマップ *****/
.roadmap_box {
  margin: 24px 0 48px;
  padding: 28px;
  background: #f5fbff;
  border: 1px solid #d7edf9;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,63,120,0.06);
}
.roadmap_months {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-bottom: 18px;
  border: 1px solid #bfdff0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.roadmap_months span {
  padding: 10px 6px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  color: #003f78;
  border-right: 1px solid #d7edf9;
}
.roadmap_months span:last-child {
  border-right: 0;
}
.roadmap_steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: stretch;
}
.roadmap_step {
  padding: 18px 18px 16px;
  background: #fff;
  border: 1px solid #cfe8f6;
  border-radius: 10px;
  position: relative;
}
.roadmap_step h4 {
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  color: #003f78;
}
.roadmap_step p {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 0;
}
.roadmap_step .roadmap_note {
  margin-top: 8px;
  font-size: 1.35rem;
  color: #41647f;
}
.roadmap_step::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #1f78d1;
  border-radius: 50%;
  position: absolute;
  top: -25px;
  left: 18px;
}
.roadmap_step.step_prepare { grid-column: 1 / span 3; }
.roadmap_step.step_open { grid-column: 4 / span 1; }
.roadmap_step.step_trial { grid-column: 5 / span 1; }
.roadmap_step.step_full { grid-column: 6 / span 1; }
@media screen and (max-width:768px) {
  .roadmap_box {
    padding: 20px;
  }
  .roadmap_months {
    display: none;
  }
  .roadmap_steps {
    display: block;
  }
  .roadmap_step {
    margin-bottom: 14px;
  }
  .roadmap_step::before {
    display: none;
  }
}


/***** 臨床薬理センター PPT指示反映 20260717 再修正 *****/
.process_flow {
  margin: 24px 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.process_flow > div {
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  position: relative;
}
.process_flow > div:not(:last-child)::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--base-color);
  border-right: 3px solid var(--base-color);
  transform: rotate(45deg);
  position: absolute;
  right: -25px;
  top: 50%;
  margin-top: -7px;
}
.process_flow h4,
.ppi_nodes > div {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--ttl-font);
  color: var(--base-color);
}
.process_flow p {
  margin-top: 10px;
}
.ppi_diagram {
  margin: 24px 0 48px;
  padding: 28px;
  background: #f4fbff;
  border: #d5ecfb 1px solid;
  border-radius: 12px;
}
.ppi_nodes {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 24px;
}
.ppi_nodes > div {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #bfe3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,63,120,0.06);
}
.ppi_text {
  max-width: 920px;
  margin: 0 auto;
}
.ppi_text p + p {
  margin-top: 12px;
}
@media screen and (max-width:768px) {
  .process_flow {
    display: block;
  }
  .process_flow > div {
    margin-bottom: 16px;
  }
  .process_flow > div:not(:last-child)::after {
    display: none;
  }
  .ppi_nodes {
    display: block;
  }
  .ppi_nodes > div {
    width: 100%;
    height: auto;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 12px;
  }
}


/***** 20260719 パンくず区切り調整 *****/
#breadcrumbs ul > li {
  padding-left: 0 !important;
}
#breadcrumbs ul > li::before {
  content: none !important;
  display: none !important;
}


/***** 20260721 PDF赤字指示反映 *****/
.process_flow h4 br {
  display: block;
}
.ppi_diagram_v2 {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: center;
  padding: 38px 42px;
}
.ppi_cycle {
  width: 270px;
  height: 220px;
  margin: 0 auto;
  position: relative;
}
.ppi_cycle::before {
  content: "";
  width: 190px;
  height: 118px;
  position: absolute;
  left: 40px;
  top: 56px;
  border-top: 3px solid #111;
  border-bottom: 3px solid #111;
  border-radius: 50%;
}
.ppi_label {
  position: absolute;
  z-index: 2;
  font-size: 1.9rem;
  font-weight: 700;
  color: #111;
  white-space: nowrap;
}
.ppi_label_top {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.ppi_label_left {
  left: 22px;
  bottom: 24px;
}
.ppi_label_right {
  right: 20px;
  bottom: 24px;
}
.ppi_icon {
  width: 84px;
  height: 54px;
  position: absolute;
  left: 50%;
  top: 96px;
  transform: translateX(-50%);
  display: block;
}
.ppi_icon span {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  background: #111;
  border-radius: 50%;
}
.ppi_icon span:nth-child(1) { left: 4px; top: 10px; }
.ppi_icon span:nth-child(2) { left: 30px; top: 0; }
.ppi_icon span:nth-child(3) { right: 4px; top: 10px; }
.ppi_icon::after {
  content: "";
  width: 84px;
  height: 24px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #111;
  border-radius: 50% 50% 8px 8px;
}
.ppi_text_list {
  max-width: none;
  margin: 0;
  padding-left: 1.2em;
}
.ppi_text_list li {
  margin: 0 0 14px;
  line-height: 1.9;
}
.achievement_action_layout {
  margin: 24px 0 60px;
  padding: 42px 54px;
  background: #fff;
  border: 1px solid #e0eef4;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,63,120,0.04);
}
.achievement_action_item {
  margin-bottom: 36px;
}
.achievement_action_item:last-child {
  margin-bottom: 0;
}
.achievement_action_item h3 {
  margin-bottom: 18px;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--base-color);
}
.achievement_action_item .list {
  margin-top: 0;
}
@media screen and (max-width:768px) {
  .ppi_diagram_v2 {
    display: block;
    padding: 24px 20px;
  }
  .ppi_cycle {
    width: 260px;
    margin-bottom: 24px;
  }
  .achievement_action_layout {
    padding: 24px 20px;
  }
  .achievement_action_item h3 {
    font-size: 2.2rem;
  }
}

/***** 20260721 追加修正：地域社会連携ユニット図・実績枠削除 *****/
.ppi_diagram_v2 .ppi_icon {
  width: 96px;
  height: 58px;
  top: 92px;
}
.ppi_diagram_v2 .ppi_icon span {
  width: 28px;
  height: 44px;
  top: 0;
  background: transparent !important;
  border-radius: 0;
}
.ppi_diagram_v2 .ppi_icon span:nth-child(1) { left: 2px; top: 12px; }
.ppi_diagram_v2 .ppi_icon span:nth-child(2) { left: 34px; top: 0; }
.ppi_diagram_v2 .ppi_icon span:nth-child(3) { right: 2px; top: 12px; }
.ppi_diagram_v2 .ppi_icon span::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: var(--base-color);
  border-radius: 50%;
}
.ppi_diagram_v2 .ppi_icon span::after {
  content: "";
  width: 26px;
  height: 22px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: var(--base-color);
  border-radius: 14px 14px 5px 5px;
}
.ppi_diagram_v2 .ppi_icon::after {
  content: none !important;
  display: none !important;
}
.ppi_diagram_v2 .ppi_cycle::before {
  border-color: var(--base-color);
}
.ppi_diagram_v2 .ppi_label {
  color: var(--base-color);
}
.achievement_action_layout {
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}


/***** 20260721 地域社会連携ユニット図 差し替え *****/
.ppi_diagram_v2 .ppi_cycle_image {
  width: 260px;
  height: auto;
}
.ppi_diagram_v2 .ppi_cycle_image::before {
  content: none !important;
  display: none !important;
}
.ppi_cycle_svg {
  display: block;
  width: 100%;
  height: auto;
}


/***** 20260721 支給SVG使用：意見交換会の図 *****/
.ppi_diagram_v2 .ppi_cycle_image {
  width: 403px;
  height: auto;
}
.ppi_diagram_v2 .ppi_cycle_image::before {
  content: none !important;
  display: none !important;
}
.ppi_cycle_svg {
  display: block;
  width: 100%;
  height: auto;
}


/***** 20260721 新規ページ・ご挨拶本文調整 *****/
.greeting_text p + p {
  margin-top: 1.6em;
}
.access_block {
  margin: 24px 0 54px;
}
.access_figure img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid #e3eef4;
}
.access_info_box {
  margin: 22px 0 28px;
  padding-left: 14px;
  border-left: 4px solid var(--base-color);
}
.access_info_box h3,
.access_subttl,
.sitemap_list h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--base-color);
}
.access_info_box p {
  margin-top: 8px;
}
.table_wrap {
  overflow-x: auto;
}
.access_table {
  width: 100%;
  border-collapse: collapse;
}
.access_table th,
.access_table td {
  padding: 16px 18px;
  border: 1px solid #d9edf5;
  vertical-align: top;
  line-height: 1.8;
}
.access_table th {
  width: 26%;
  background: #dff6fb;
  font-weight: 700;
  color: #111;
}
.contact_table th {
  width: 18%;
}
.access_route_note {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.access_route_note span {
  position: relative;
  padding: 12px 28px;
  background: #dff6fb;
  border: 1px solid #8fd4ec;
  border-radius: 999px;
  font-weight: 700;
  color: var(--base-color);
}
.access_route_note span:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--base-color);
  font-size: 2.4rem;
}
.sitemap_list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 52px;
}
.sitemap_list h3 {
  margin-bottom: 12px;
}
.sitemap_list ul li {
  margin-bottom: 10px;
  padding-left: 1em;
  text-indent: -1em;
}
.sitemap_list ul li::before {
  content: "・";
  color: var(--base-color);
}
.sitemap_list a {
  color: #111;
  text-decoration: none;
}
.sitemap_list a:hover {
  text-decoration: underline;
}
@media screen and (max-width:768px) {
  .sitemap_list {
    grid-template-columns: 1fr;
  }
  .access_table th,
  .access_table td {
    padding: 12px;
  }
  .access_route_note {
    display: block;
  }
  .access_route_note span {
    display: block;
    width: fit-content;
    margin-bottom: 16px;
  }
  .access_route_note span:not(:last-child)::after {
    right: auto;
    left: 50%;
    top: auto;
    bottom: -22px;
    transform: translateX(-50%) rotate(90deg);
  }
}


/***** 20260722 アクセスページ レイアウト調整 *****/
.access_block_hospital,
.access_block_inside {
  display: flex;
  align-items: flex-start;
  gap: 34px;
}
.access_figure_hospital {
  width: 56%;
}
.access_figure_inside {
  width: calc(100% - 360px);
}
.access_side {
  flex: 1;
}
.access_contact_side {
  width: 326px;
}
.access_contact_side .access_subttl {
  margin-bottom: 14px;
}
.access_contact_side .contact_table th {
  width: 42%;
}
.access_contact_side .contact_table td {
  width: 58%;
}
.access_route_note_top {
  margin: 12px 0 22px;
}
@media screen and (max-width:768px) {
  .access_block_hospital,
  .access_block_inside {
    display: block;
  }
  .access_figure_hospital,
  .access_figure_inside,
  .access_contact_side {
    width: 100%;
  }
  .access_contact_side {
    margin-top: 24px;
  }
}


/***** 20260724 PPT修正反映 *****/
.greeting_signature {
  margin-top: 2em;
  text-align: right;
  font-weight: 700;
}
.access_figure_hospital img {
  border: 1px solid #e3eef4;
}
