@charset "UTF-8";

/* 共通 */
/* p {
  font-feature-settings: "palt";
} */

body.no-scroll {
  overflow: hidden;
}

.fw_bold {
  font-weight: bold;
}

.font_s {
  font-size: 1.4rem;
}

.u_line {
  text-decoration: underline;
}

.txt_left {
  text-align: left;
}

.txt_right {
  text-align: right;
}

.box_1 {
  padding: 30px;
}

.box_2 {
  padding: 20px;
}

.bg_blue {
  background-color: #def1f7;
}

.bg_blue .wrap_in {
  background-color: #fff;
  border-radius: 4px;
}

.wrap_in .box_2 {
  border: 1px solid #31a2c7;
  border-radius: 4px;
}

.p-attention {
  color: #e56a46;
}

/* aボタンのリンクを無効 */
.btn_no_event {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

/* アコーディオンを無効 */
.accordion_none {
  pointer-events: none;
}

.accordion a.accordion_none.open_ct:after {
  display: none;
}

/* メインヴィジュアル
* -------------------------------------------- */
/*-- 入院 --*/
#nyuin_main {
  background: url("../img/nyuin_guide/img_ttl_nyuin.jpg") no-repeat center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #nyuin_main {
    background: url("../img/nyuin_guide/img_ttl_nyuin@2x.jpg") no-repeat center;
    background-size: cover;
  }
}

/*-- 病棟案内 --*/
#facility_main {
  background: url("../img/facility/img_ttl_facility.jpg") no-repeat center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #facility_main {
    background: url("../img/facility/img_ttl_facility@2x.jpg") no-repeat center;
    background-size: cover;
  }
}

/*-- アクセス・メインビジュアル --*/
#acc_main {
  background: url("../img/acc/img_ttl_acc.jpg") no-repeat center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #acc_main {
    background: url("../img/acc/img_ttl_acc@2x.jpg") no-repeat center;
    background-size: cover;
  }
}

/*-- コンタクト・メインビジュアル --*/
#contact_main {
  background: url("../img/contact/img_ttl_contact.jpg") no-repeat center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #contact_main {
    background: url("../img/contact/img_ttl_contact@2x.jpg") no-repeat center;
    background-size: cover;
  }
}

/*-- 診療科・部門・メインビジュアル --*/
#department_main {
  background: url("../img/department/img_ttl_department.jpg") no-repeat center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #department_main {
    background: url("../img/department/img_ttl_department@2x.jpg") no-repeat center;
    background-size: cover;
  }
}

/*-- 外来・メインビジュアル --*/
#gairai_main {
  background: url("../img/gairai/img_ttl_gairai.jpg") no-repeat center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #gairai_main {
    background: url("../img/gairai/img_ttl_gairai@2x.jpg") no-repeat center;
    background-size: cover;
  }
}


/*-- 入院 --*/
#nyuin_guide_menkai table tr {
  display: flex;
  flex-direction: column;
}

#nyuin_guide_menkai table tr:first-child {
  margin-bottom: 10px;
}

#nyuin_guide_menkai table tr th {
  text-align: left;
  font-size: 1.8rem;
  padding-right: 30px;
}

#nyuin_guide_menkai table tr td {
  font-size: 1.8rem;
}

/*-- 入院生活 --*/
.nyuin_life_detail,
.nyuin_life_detail2 {
  background-color: #def1f7;
}

.nyuin_life_ul {
  -js-display: flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nyuin_life_list {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 4px;
  padding: 20px 30px;
  width: 100%;
  margin-bottom: 20px;
}

.nyuin_life_img {
  text-align: center;
}

.nyuin_life_detail2 .nyuin_life_list:last-child {
  width: 100%;
}

#nyuin_life_precautions .two_col_02.flex .l_ct {
  width: 100%;
}

/*-- accordion --*/

.accordion a.open_ct {
  display: block;
  cursor: pointer;
  position: relative;
  background-size: 40px 40px;
}

.accordion a.open_ct:after {
  content: "";
  width: 26px;
  height: 26px;
  background: url("../img/faq/plus_ico.png") no-repeat 0 0;
  background-size: contain;
  position: absolute;
  right: 2%;
  top: 50%;
  margin-top: -13px;
  transition: all 300ms;
}

.accordion a.open_ct span {
  display: block;
  line-height: 1.6;
  font-size: 1.8rem;
  color: #31a2c7;
  font-weight: bold;
  padding: 20px 24px 15px 20px;
}

.accordion .accordion_list a.open:after {
  background: url("../img/faq/minus_ico.png") no-repeat 0 0;
  background-size: contain;
  transition: all 300ms;
  -ms-transition: all 300ms;
  -webkit-transition: all 300ms;
}

.accordion .accordion_list {
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border: 1px solid #31a2c7;
  border-radius: 4px;
}

.accordion .st-content {
  display: none;
}

.accordion .st-content .st_ct_in {
  background-size: 40px 40px;
  line-height: 1.8;
  padding: 0 26px 30px;

}

.accordion .st-content .st_ct_in .st_ct_txt {
  padding-top: 20px;
  border-top: 1px dotted #808080;
}

.accordion .attention {
  background-color: #fef7f6;
  border: 1px solid #e56a46;
}

.accordion .attention a.open_ct span {
  color: #e56a46;
}

.accordion .attention a.open_ct:after {
  background: url("../img/nyuin_guide/plus_ico2.png") no-repeat 0 0;
  background-size: contain;
}

.accordion .attention.accordion_list a.open:after {
  background: url("../img/nyuin_guide/minus_ico2.png") no-repeat 0 0;
  background-size: contain;
}

.accordion .accordion_list i img {
  vertical-align: bottom;
}

.attention_txt {
  color: #e56a46;
  font-weight: bold;
}

.num_list li {
  position: relative;
  padding-left: 1.1em;
  line-height: 1.8;

}

.num_list li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: #e56a46;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}

/*-- リストナンバー --*/
.num_list {
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
}

.num_list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 40px;
}

.num_list li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #31a2c7;
  color: white;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
}

.num_list.num_attention li::before {
  background-color: #e56a46;
}

/*-- 入院トップのボタン --*/
.nyuin_btn_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 24px auto 20px;
}

/* ボタン白 */
.btn_w {
  width: 100%;
  max-width: 342px;
  height: 70px;
  box-sizing: border-box;
  border: solid 1px #31a2c7;
  border-radius: 4px;
  margin-top: 10px;
}

.btn_w a {
  height: 100%;
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding-left: 0px;
}

.btn_w a:hover {
  background-color: #31a2c7;
}

.btn_w a::before,
.btn_w a::after {
  content: "";
  width: 8px;
  height: 2px;
  display: inline-block;
  border-radius: 2px;
  background: #31a2c7;
  position: absolute;
  right: 10px;
}

.btn_w a::before {
  top: calc(50% - 4px);
  transform: rotate(45deg);
}

.btn_w a::after {
  bottom: calc(50% - 3px);
  transform: rotate(-45deg);
}

.btn_w a:hover::before,
.btn_w a:hover::after {
  background: #fff;
}

.btn_w a span {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-size: 2rem;
  font-weight: bold;
  color: #31a2c7;
  position: relative;
}

.btn_w:hover a span {
  color: #fff;
}

/* ボタン青 */
.btn_w.btn_w_re {
  background-color: #31a2c7;
}

.btn_w.btn_w_re a:hover {
  background-color: #fff;
  border-radius: 3px;
}

.btn_w.btn_w_re a::before,
.btn_w.btn_w_re a::after {
  display: none;
}

.btn_w.btn_w_re a span {
  color: #fff;
}

.btn_w.btn_w_re:hover a span {
  color: #31a2c7;
}



.tb_02 {
  /* max-width: 645px; */
  width: 100%;
  margin: 20px 0;
  box-sizing: border-box;
  border: 1px solid #808080;
}

.tb_02 tr {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 4%;
  background: #eef8fb;
}

.tb_02 tr:not(:first-child) {
  border-top: 1px solid #808080;
  padding: 12px;
  background: #fff;
}

.tb_02 th {
  width: 100%;

  text-align: center;
}

.tb_02 tr td {
  width: 100%;
  padding: 0 20px;
  text-align: center;
}

.sp_bold {
  font-weight: bold;
}

/* リハビリテーション科 */

.riha_img_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.riha_img_wrap img+img {
  margin-top: 10px;
}

#rihabiri_ideal .l_ct.text p {
  font-size: 2.3rem;
  font-weight: bold;
  position: relative;
  line-height: 2.1;
  display: inline;
  border-bottom: 1px solid #31a2c7;
  padding-bottom: 5px;
}

#rihabiri h4.s_ttl span {
  margin-left: -15px;
  color: #31a2c7;
}


/* 訪問診療・訪問介護 */
.houmon_btn_wrap .btn_w {
  width: 228px;
  height: 42px;
  margin: 20px 0 30px;
}

.houmon_btn_wrap .btn_w a span {
  font-size: 1.5rem;
}

#houmon_vaccine .accordion .st-content .st_ct_in {
  padding: 0 15px 20px;
}

.tb_03 {
  width: 100%;
  margin: 20px 0;
  box-sizing: border-box;
  border: 1px solid #808080;
  box-sizing: border-box;
}

.tb_03 tr {
  padding: 12px;
}

.tb_03 thead {
  background: #eef8fb;
}

.tb_03 thead th {
  width: 100%;
  text-align: center;
  padding: 5px;
  border-bottom: 1px solid #808080;
  box-sizing: border-box;
}

.tb_03 thead th:first-child {
  display: none;
}

.tb_03 tbody {
  border-top: 1px solid #808080;
  background: #fff;
}

.tb_03 tbody th {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tb_03 tbody th p {
  padding: 10px 20px 0;
  font-weight: bold;
}

.tb_03 tbody td {
  width: 100%;
  text-align: center;
}

.tb_03 tbody td p {
  padding: 0 20px 10px;
}

.tb_03 tr {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.tb_03 tr:not(:first-child) {
  border-top: 1px solid #808080;
  padding: 0;
}

/*-- 地域連携室 --*/
#renkei_main {
  background: url("../img/renkei/img_ttl_renkei.jpg") no-repeat center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #renkei_main {
    background: url("../img/renkei/img_ttl_renkei@2x.jpg") no-repeat center;
    background-size: cover;
  }
}

.renkei_contact_num a {
  font-size: 2.2rem;
  font-weight: bold;
}

.renkei_contact_num img {
  vertical-align: text-bottom;
}

.renkei_contact_wrap {
  display: flex;
  flex-direction: column;
}

.renkei_contact_wrap .renkei_contact_num:first-child {
  margin-bottom: 5px;
}

.contact_fax {
  pointer-events: none;
}

#renkei_introduce {
  padding-top: 50px;
}

#renkei_introduce .accordion a.open_ct span {
  color: #212121;
}

.accordion.num_accordion a.open_ct span {
  padding: 15px 28px 15px 60px;
}

.accordion.num_accordion .num_list .accordion_list {
  padding: 0;
}

.accordion.num_accordion .num_list .accordion_list:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #31a2c7;
  color: white;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  top: 14px;
  left: 20px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}

/* #renkei_introduce .maru_list li {
  position: relative;
  padding: 0;
  padding-left: 1.1em;
  line-height: 1.8;
}

#renkei_introduce .maru_list li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: #31a2c7;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
} */
.maru {
  position: relative;
  padding: 0;
  padding-left: 1.1em;
  line-height: 1.8;
}

.maru::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: #31a2c7;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}

/* ページ内リンクの位置調整*/
#renkei_soudan {
  /*margin-top: -30px;
  padding-top: 80px;*/
}

/* 沿革 */
.enkaku_table {
  margin-top: -10px;
}

.enkaku_dt {
  width: 100%;
  padding-top: 10px;
}

.enkaku_dd {
  width: 100%;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 10px;
}

.enkaku_dd_l {
  width: 50px;
  margin-right: 25px;
  text-align: right;
}

.enkaku_dd_r {
  width: calc(100% - 75px);
}

.enkaku_dd_inner {
  display: flex;
}

/* ボタン */
.enkaku_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.enkaku_btn {
  width: 100%;
  max-width: 180px;
  height: 60px;
  box-sizing: border-box;
  border: solid 1px #31a2c7;
  background-color: #31a2c7;
  border-radius: 0;
  margin-top: 10px;
  border-radius: 5px;
}

.enkaku_btn a {
  height: 100%;
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding-left: 0px;
  border-radius: 5px;
  color: #fff;
}

.enkaku_btn a:hover {
  background-color: #fff;
}

.enkaku_btn a::before,
.enkaku_btn a::after {
  content: "";
  width: 8px;
  height: 2px;
  display: inline-block;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  right: 10px;
}

.enkaku_btn a::before {
  top: calc(50% - 4px);
  transform: rotate(45deg);
}

.enkaku_btn a::after {
  bottom: calc(50% - 3px);
  transform: rotate(-45deg);
}

.enkaku_btn a:hover::before,
.enkaku_btn a:hover::after {
  background: #31a2c7;
}

.enkaku_btn a span {
  font-family: dnp-shuei-mgothic-std, sans-serif;
  /*font-size: 2rem;*/
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  position: relative;
}

.enkaku_btn:hover a span {
  color: #31a2c7;
}

/*-- 医療機関の皆様へ --*/
#iryokikan_main {
  background: url("../img/iryokikan/img_ttl_iryokikan.jpg") no-repeat center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #iryokikan_main {
    background: url("../img/iryokikan/img_ttl_iryokikan@2x.jpg") no-repeat center;
    background-size: cover;
  }
}

#iryokikan_flow .accordion.num_accordion a.open_ct span {
  color: #212121;
}

#iryokikan_flow .accordion {
  margin-top: 10px;
}

.iryokikan_contact_num a {
  font-size: 2.2rem;
  font-weight: bold;
}

.iryokikan_contact_num img {
  vertical-align: text-bottom;
}

ul.maru_list li {
  position: relative;
  padding: 0;
  padding-left: 1.1em;
  line-height: 1.8;
}

ul.maru_list li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background-color: #31a2c7;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 0;
}

#iryokikan_flow2 .num_list li {
  padding: 20px 20px 20px 60px;
  background-color: #eef8fb;
  margin-top: 10px;
}

#iryokikan_flow2 .num_list li::before {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  font-size: 18px;
  top: 15px;
  left: 24px;
}

/*-- サイトマップ --*/
#sitemap_main {
  background: url("../img/sitemap/img_ttl_sitemap.jpg") no-repeat center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) {
  #sitemap_main {
    background: url("../img/sitemap/img_ttl_sitemap@2x.jpg") no-repeat center;
    background-size: cover;
  }
}

.sitemap_wrap_in.wrap_in {
  max-width: 990px;
}

.sitemap_content {
  background-color: #f8f4f1;
  padding: 20px 25px;
  margin-top: 10px;
}

.sitemap_content h4 a {
  font-size: 2rem;
  font-weight: bold;
}

.sitemap_content h4::before {
  content: url(../img/common/page_link_arrow.svg);
  display: inline-block;
  transform: scale(0.6);
  margin-right: 5px;
}

.sitemap_content>ul {
  margin-left: 2rem;
}

.sitemap_ul {
  margin-top: 5px;
}

.sitemap_ul_under li::before {
  content: "-";
}

/* 健康診断 */
.tb_04 {
  max-width: 700px;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid #808080;
}

.tb_04 tr {
  display: flex;
  flex-direction: column;
}

.tb_04 th {
  background: #eef8fb;
  font-weight: bold;
  border-bottom: 1px solid #808080;
  border-top: 1px solid #808080;
  padding: 5px 4%;
  text-align: center;
}

.tb_04 tr:first-of-type th {
  border-top: none;
}

.tb_04 td {
  display: flex;
}

.tb_04 td ul {
  width: 35%;
  padding: 22px 4%;
}

.tb_04 td ul:last-child {
  width: 65%;
  border-left: 1px solid #808080;
  text-align: right;
}

.kenshin_dock_wrap p {
  text-align: right;
  max-width: 700px;
  width: 100%;
}

.kenshin_dock_wrap .tb_01 {
  max-width: 700px;
  width: 100%;
  margin: 20px 0 0;
}

.kenshin_dock_wrap .tb_01 th {
  text-align: center;
}

.kenshin_dock_wrap .tb_01 td {
  text-align: right;
}

#kenshin_contact .fw_bold {
  font-size: 2rem;
  font-weight: bold;
}

#kenshin_contact .kenshin_time {
  display: inline-block;
  border-bottom: 1px solid #31a2c7;
}

/* 外科 */
.geka_btn_wrap .btn_w {
  width: 228px;
  height: 42px;
  margin: 20px 0 30px;
}

.geka_btn_wrap .btn_w a span {
  font-size: 1.5rem;
}

.geka_table tr td {
  display: flex;
  justify-content: space-between;
}

.geka_table tr td:not(:last-child) {
  border-bottom: 1px solid #808080;
}

#geka_makidume .two_col_03 p {
  display: flex;
  align-items: center;
  justify-content: center;
}

#geka_makidume .fw_bold {
  font-size: 1.8rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #31a2c7;
}

#geka_makidume .two_col_03 .l_ct {
  margin-bottom: 30px;
}

.accordion .st-content .st_ct_in .st_ct_txt.border_none {
  padding-top: 0;
  border-top: none;
}

#geka_seikei .accordion_list .m_adjust {
  margin-top: 20px;
}

.geka_table.tb_01 {
  margin: 20px 0 10px;
}

.geka_table.tb_01 td {
  padding: 13px 4%;
}

.geka_table_wrap>p {
  text-align: right;
  margin-right: 0px;
}


/* 放射線科・検査科 */

p.bold_underline {
  display: inline;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 2.1;
  padding-bottom: 5px;
  border-bottom: 1px solid #31a2c7;
}

/* 看護 */
#kango_system .tb_02 {
  box-sizing: border-box;
}

#kango_system .tb_02 tr {
  background-color: #fff;
}

#kango_system .tb_02 thead tr {
  background-color: #def1f7;
}

#kango_system .tb_02 tbody th {
  background-color: #fff;
}

#kango_system .tb_02 tbody th .sp_only {
  display: inline-block !important;
}

#kango_system .tb_02 td:not(:first-child) {
  text-align: left;
}

#kango_system .tb_02 .maru_list {
  margin-top: 15px;
}

/* アクセス */
#acc_ttl.lower_ttl i {
  width: 36px;
  line-height: 1;
}

.acc_map {
  height: 380px;
}

.acc_btn_wrap .btn_w {
  width: 228px;
  height: 42px;
}

.acc_btn_wrap .btn_w a span {
  font-size: 1.5rem;
}

#acc_acc .ct_ttl {
  margin-bottom: 0;
}

#acc_acc .two_col_03 .r_ct.image>p {
  text-align: center;
}

#acc_acc .bg_blue {
  margin-top: 40px;
}

#acc_acc .bg_blue.content {
  padding: 30px 0 50px;
}

#acc_acc .bg_blue .wrap_in {
  background-color: inherit;
}

.ct_three_col:not(:first-child) {
  margin-top: 40px;
}

.ct_ttl2 {
  display: flex;
  align-items: center;
}

.acc_content h4 {
  font-size: 1.8rem;
}

#acc_parking p {
  text-align: center;
}

#acc_parking p.sp_left {
  text-align: left;
}

#acc_bus .box_1 {
  padding: 20px;
  text-align: left;
  border: 1px solid #31a2c7;
  border-radius: 4px;
  background-color: #fff;
  margin-top: 50px;
}

/* アクセスのアコーディオンの中の表 */
.st_ct_in .tb_05 {
  background-color: #fff;
}

.tb_05 {
  width: 100%;
  margin-top: 10px;
  padding: 0;
  box-sizing: border-box;
  font-size: 1.8rem;
  text-align: center;
  border-top: 1px solid #808080;
  border-left: 1px solid #808080;
}

.tb_05 thead {
  background: #fff;
  font-weight: bold;
}

.tb_05 thead tr th {
  padding: 0 2%;
  border-bottom: 1px solid #808080;
}

.tb_05 thead tr th {
  border-right: 1px solid #808080;
}

.tb_05 tbody tr th,
.tb_05 tbody tr td {
  display: table-cell;
  padding: 5px 2%;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
}

.tb_05 tbody th {
  width: 16%;
}

.tb_05 tbody tr.attention {
  background-color: #fef7f6;
  color: #e56a46;
}

/*-- アクセス　accordion --*/

.acc_accordion a.open_ct {
  display: block;
  cursor: pointer;
  position: relative;
  background-size: 40px 40px;
}

.acc_accordion a.open_ct:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/acc/ico_plus_w.png") no-repeat 0 0;
  background-size: contain;
  position: absolute;
  right: 2%;
  top: 50%;
  margin-top: -13px;
  transition: all 300ms;
}

.acc_accordion a.open_ct span {
  display: block;
  line-height: 1.6;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 10px;
}

.acc_accordion .accordion_list a.open:after {
  background: url("../img/acc/ico_minus_w.png") no-repeat 0 0;
  background-size: contain;
  margin-top: 0;
  transition: all 300ms;
  -ms-transition: all 300ms;
  -webkit-transition: all 300ms;
}

.acc_accordion .accordion_list {
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border: none;
  border-radius: 4px;
  margin-top: 20px;
}

.acc_accordion .st-content {
  display: none;
}

.acc_accordion .st-content .st_ct_in {
  background-size: 40px 40px;
  line-height: 1.8;
  padding: 0;
}

.acc_accordion .accordion_list.acc_bus_blue .open_ct {
  border: 1px solid #31a2c7;
  background-color: #31a2c7;
  border-radius: 4px;
}

.acc_accordion .accordion_list.acc_bus_green .open_ct {
  border: 1px solid #37b5b0;
  background-color: #37b5b0;
  border-radius: 4px;
}

.acc_accordion .accordion_list.acc_bus_orange .open_ct {
  border: 1px solid #f09b3c;
  background-color: #f09b3c;
  border-radius: 4px;
}

h5.bus_stop {
  display: block;
  line-height: 1.6;
  font-size: 1.8rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 10px;
}

h5.bus_stop.bus_green {
  border: 1px solid #37b5b0;
  background-color: #37b5b0;
  border-radius: 4px;
  /* margin-right: 5%; */
}

h5.bus_stop.bus_orange {
  border: 1px solid #f09b3c;
  background-color: #f09b3c;
  border-radius: 4px;
}

/* #acc_bus .two_col_03 .l_ct {
  margin-right: 100px;
} */

/* 診療科・部門 */
#department_ttl.lower_ttl i {
  width: 30px;
}

.department_bg_blue {
  padding: 45px 0 60px;
}

.department_list_wrap {
  background-color: #def1f7;
}

.department_bg_blue .deparment_list {
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-top: 15px;
  background-color: #fff;
}

#department_kamoku .deparment_list:hover,
#department_bumon .deparment_list:hover,
.department_bg_blue .deparment_list:hover {
  opacity: .7;
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
}



.department_item {
  display: flex;
}

.department_item dt {
  width: 160px;
}

.department_item dt img {
  vertical-align: bottom;
}

.department_item dd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding: 10px 20px 10px 15px;
}

.department_item dd h4 {
  font-size: 2rem;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
}

.department_item dd::after {
  content: '';
  display: block;
  background: url(../img/common/page_link_arrow.svg) no-repeat center;
  background-size: contain;
  width: 7px;
  height: 12px;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -6px;
}

.department_item_sec {
  border-top: 1px dotted #808080;
  padding: 15px 0px 40px 20px;
}

.department_item_sec ul {
  display: flex;
  flex-wrap: wrap;
}

.department_item_sec li {
  margin-right: 25px;
}

.department_item_sec li a {
  text-decoration: underline;
}

/* 外来 */
#gairai_tantoui .ct_ttl {
  margin-bottom: 10px;
}

/* 外来担当表・変更 */
.gairai_table_wrap {
  overflow: auto;
  width: 100%;
  height: 550px;
  /*↑ここを100％にするとスクロールバーがなくなり全体表示できます*/
  /*↑ここで高さを変えるとそれに応じてスクロールバーの長さが変わります*/
  text-align: center;
  margin: 0 auto;
  box-sizing: border-box;
}

.gairai_table {
  margin: 0;
  border-spacing: 0;
  width: 800px;
  table-layout: fixed;
}

.gairai_table td {
  white-space: nowrap;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
  background: #FFF;
  padding: 10px;
  /* width: calc(100% / 6); */
}

.gairai_table th {
  white-space: nowrap;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
  background: #eef8fb;
  position: sticky;
  top: 0;
  left: 0;
  width: calc(100% / 7);
}

.gairai_table th.bb_none,
.gairai_table td.bb_none {
  border-bottom: none;
}

.gairai_table tr:first-child th {
  border-top: 1px solid #808080;
  z-index: 2;
}

.gairai_table tr th.th_header {
  padding: 0;
  border-left: 1px solid #808080;
  z-index: 3;
}

.gairai_table th.th_head1 {
  font-weight: bold;
  width: 110px;
  border-right: 0;
  border-left: 1px solid #808080;
  background: #eef8fb;
  padding: 0;
  top: -150px;
}

.gairai_table th.th_head2 {
  padding: 0;
  z-index: 0;
  width: 64px;
  position: sticky;
  top: -50px;
  left: 56px;
  background-color: #f8f8f8;
  border-left: 1px solid #808080;
}

.gairai_table .td_blank {
  border-right: none;
  background-color: #fff;
  height: 10px;
  position: relative;
  z-index: 1;
  padding: 0;
}

.td_blank.b-top {
  border-top: 1px solid #808080;
}

.td_dep {
  margin: 0;
  line-height: 1;
  font-size: 1.4rem;
}

.font_s {
  font-size: 1.2rem;
}

.font_pain {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1;
}

.gairai_table a {
  text-decoration: underline;
}

.gairai_table th.th_head1.riha {
  font-size: 1.4rem;
}


.gairai_first_inner h5 {
  font-weight: bold;
  border-bottom: 1px solid #31a2c7;
  padding-bottom: 5px;
}

.scroll-hint-icon {
  top: 25%;
}

/*------- 外来ポップアップ --------*/

.js-modal-open {
  color: #333;
}

.modal2-content {
  margin: 0 auto;
}

.modal2 {
  display: none;
  height: 100%;
  /* position: fixed; */
  inset: 0;
  z-index: 4;
  box-sizing: border-box;
}

.modal2__bg {
  background-color: rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.3);
  position: fixed;
  inset: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
}

.modal2_wrap {
  max-width: 450px;
  min-width: 230px;
  max-height: 100vh;
  width: fit-content;
  height: fit-content;
  margin: auto;
  padding: 0 4%;
  position: fixed;
  inset: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 11;
}

.modal2_box {
  max-width: 450px;
  min-width: 220px;
  /*max-height: 70vh;*/
  max-height: 80vh;
  width: fit-content;
  height: fit-content;
  margin: auto;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #fff;
  /*padding: 30px;*/
  padding: 25px 30px 25px 30px;
  border-radius: 10px;
}

.js-modal-close.close-btn2 {
  display: block;
  position: absolute;
  top: -18px;
  right: 0;
  width: 24px;
  height: 24px;
  background-color: #000;
  padding: 10px;
  border-radius: 50%;
  z-index: 1000;
}

.js-modal-close.close-btn2::before,
.js-modal-close.close-btn2::after {
  content: '';
  display: block;
  width: 33px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.js-modal-close.close-btn2::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.js-modal-close.close-btn2::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal2_ct_image {
  display: flex;
}

.modal2_ct_text {
  font-size: 1.4rem;
  width: 100%;
}

.modal2_ct_image h4,
.modal2_ct_text h4 {
  color: #31a2c7;
  font-weight: bold;
}

.modal2_ct_text h4 {
  /*margin-top: 15px;*/
  margin-top: 10px;
}

.modal_name_wrap {
  width: 60%;
}

.modal_image {
  width: 40%;
  padding-right: 15px;
}

.modal_name {
  font-size: 2.6rem;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 1px solid #808080;
}

.dot_list li {
  margin-left: 1.6rem;
  list-style: disc;
}



/* コンタクトフォーム */
table.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

table.formTable td,
table.formTable th {
  border: 0;
  margin-top: 8px;
  background-color: #fff;
  display: block;
}

table.formTable th {
  font-weight: bold;
  background: #f8f4f1;
  text-align: left;
  padding: 10px 20px 10px;
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-top: 30px;
}

table.formTable th span {
  font-weight: bold;
}

table.formTable td {
  display: flex;
  align-items: center;
  width: 100%;
}

form input[type="text"],
form input[type="tel"],
form input[type="email"],
form textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid #989898;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1.6rem;
  width: 100%;
  padding: 10px 20px 10px;
  display: block;
}

form textarea {
  height: 150px;
  resize: vertical;
}

form input[type="text"]:focus,
form input[type="tel"]:focus,
form input[type="email"]:focus,
form textarea:focus {
  border: 2px solid #31a2c7;
  border-radius: 0;
  box-shadow: none;
  outline: none;
}

form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  max-width: 450px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 0;
  border: 1px solid #989898;
  cursor: pointer;
  background-color: #fff;
  background-image: url(../img/contact/ico_select.png);
  background-position: right 0px center;
  background-repeat: no-repeat;
  background-size: 25px auto;
  font-size: 1.6rem;
  color: #212121;
}

form select::-ms-expand {
  display: none;
}

form select:focus {
  border: 2px solid #31a2c7;
  box-shadow: none;
  outline: none;
}

form input[type="text"].input-yuubin {
  width: 100px;
}

form input[type="text"].input-age {
  width: 50px;
}

form input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 60px;
  margin-top: 30px;
  border: solid 1px #31a2c7;
  background-color: #31a2c7;
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  font-size: 1.6rem;
  border-radius: 5px;
}

form input[type="submit"]:hover {
  background-color: #fff;
  color: #31a2c7;
}

::placeholder {
  color: #989898;
}

/* 必須ボタン */
.required {
  position: relative;
}

.required::after {
  content: "*";
  position: absolute;
  display: inline-block;
  color: #e56a46;
  top: -15%;
  left: calc(100% + 6px);
  font-size: 2.5rem;
}

.required_color {
  color: #e56a46;
}

.kome {
  position: relative;
  padding: 0;
  padding-left: 1.1em;
  line-height: 1.8;
}

.kome::before {
  content: '※';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* お問い合わせ完了 */
.thanks_btn_wrap {
  margin-top: 80px;
}

.btn_thanks {
  width: 100%;
  max-width: 342px;
  height: 70px;
  box-sizing: border-box;
  border: solid 1px #31a2c7;
  background-color: #fff;
  color: #31a2c7;
  border-radius: 4px;
  text-align: center;
  margin: 0 auto;
}

.btn_thanks a {
  height: 100%;
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  color: #31a2c7;
  border-radius: 3px;
  font-weight: bold;
  font-size: 1.8rem;
}

.btn_thanks a:hover {
  background-color: #31a2c7;
  color: #fff;
}

/* ----------------------------------------------------------------------- 

 pc表示

----------------------------------------------------------------------- */
@media print,
screen and (min-width : 600px) {

  /* 電話番号リンクをスマホのみ有効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }

  .sp_bold {
    font-weight: normal;
  }

  .box_1 {
    padding: 40px;
  }

  .box_2 {
    padding: 30px;
  }

  #nyuin_guide_jyunbi {
    margin-top: 170px;
  }

  #nyuin_guide_menkai table tr {
    display: flex;
    flex-direction: row;
  }

  #nyuin_guide_menkai table tr:first-child {
    margin-bottom: 0;
  }

  /*-- 入院生活 --*/

  .nyuin_life_list {
    padding: 30px 40px;
    width: 530px;
    margin-bottom: 20px;
  }

  .nyuin_life_detail2 .nyuin_life_list:last-child {
    width: 100%;
  }

  #nyuin_life_precautions .two_col_02.flex .l_ct {
    width: 540px;
  }

  /*-- 入院トップのボタン --*/
  .nyuin_btn_wrap {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

  .btn_left {
    margin-right: 40px;
  }

  .tb_02 {
    max-width: 645px;
  }

  .tb_02 tr {
    display: flex;
    flex-direction: row;
    padding: 0;

  }

  .tb_02 tr:not(:first-child) {
    border-top: 1px solid #808080;
    padding: 0;

  }

  .tb_02 th {
    width: 50%;
    background: #eef8fb;
    padding: 5px 4%;
    text-align: center;
  }

  .tb_02 tr th:first-of-type {
    border-right: 1px solid #808080;
  }

  .tb_02 tr td:first-of-type {
    border-right: 1px solid #808080;
  }

  .tb_02 tr td {
    width: 50%;
    padding: 12px 4% 10px;
    text-align: left;
  }

  /* リハビリテーション科 */
  .riha_img_wrap {
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 10;
  }

  .riha_img_wrap img {
    margin-right: 10px;
  }

  .riha_img_wrap img+img {
    margin-top: 0;
  }

  #rihabiri_ideal .l_ct.text {
    margin-top: 42px;
  }

  #rihabiri_ideal .l_ct.text p {
    line-height: 2;
  }

  /* 訪問診療・ */
  .houmon_btn_wrap .btn_w {
    margin: 0;
    margin-right: auto;
    margin: 50px 0 0;
  }

  #houmon_vaccine {
    /*margin-top: 166px;*/
	  margin-top: 60px;
  }

  #houmon_vaccine .accordion .st-content .st_ct_in {
    padding: 0 30px 30px;
  }

  .tb_03 thead tr,
  .tb_03 tbody tr {
    display: flex;
    flex-direction: row;
    padding: 0;
  }

  .tb_03 thead th,
  .tb_03 tbody td {
    width: 447px;
    padding: 5px 0 0;

  }

  .tb_03 thead th:first-child {
    display: block;
    width: 150px;
  }

  .tb_03 thead th:not(:first-child) {
    border-left: 1px solid #808080;
  }

  .tb_03 tbody th {
    width: 150px;
  }

  .tb_03 tbody th p {
    padding: 13px 10px;
    font-weight: normal;
  }

  .tb_03 tbody td {
    border-left: 1px solid #808080;
    text-align: left;
  }

  .tb_03 tbody td p {
    padding: 13px 20px;
  }



  /* 地域連携室 */
  #renkei_contact .box_1 {
    padding: 30px 40px;
  }

  .renkei_contact_wrap {
    display: flex;
    flex-direction: row;
  }

  .renkei_contact_wrap .renkei_contact_num:first-child {
    margin-bottom: 0;
    margin-right: 50px;
  }

  #renkei_introduce {
    margin-top: 70px;
    padding-top: 80px;
  }

  .accordion.num_accordion a.open_ct span {
    padding: 15px 26px 15px 60px;
  }

  .accordion.num_accordion .num_list .accordion_list:before {
    top: 14px;
    left: 24px;
  }

  /* 病棟 */
  #facility_care .txt_left {
    margin-left: 50px;
    margin-top: 50px;
  }

  /* 沿革 */
  .enkaku_table {
    display: flex;
    flex-wrap: wrap;
  }

  .enkaku_dt {
    width: 7%;
    padding-left: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #cdcdcd;
  }

  .enkaku_dd {
    width: 91%;
    padding-top: 10px;
  }

  /* サイトマップ */
  .sitemap_inner {
    display: flex;
    justify-content: space-between;
  }

  .sitemap_inner_l,
  .sitemap_inner_r {
    width: 48%;
  }


  /* 健康診断 */
  .tb_04 tr {
    display: flex;
    flex-direction: row;
  }

  .tb_04 tr th {
    padding: 5px;
    width: 36%;
    border-right: 1px solid #808080;
    border-top: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tb_04 td {
    width: 64%;
    border-bottom: 1px solid #808080;
  }

  .tb_04 td ul {
    padding: 15px 4%;
  }

  .tb_04 tr:last-of-type th,
  .tb_04 tr:last-of-type td {
    border-bottom: none;
  }

  .kenshin_dock_wrap .tb_01 th {
    width: 36%;
  }

  /* 外科 */
  .two_col_03 {
    display: flex;
    justify-content: center;
  }

  .two_col_03 .l_ct,
  .two_col_03 .r_ct {
    flex: 50%;
  }

  #geka_seikei .accordion_list .m_adjust {
    margin-top: 60px;
  }

  .geka_table.tb_01 th {
    width: 19%;
  }

  .geka_table_wrap>p {
    margin-right: 30px;
  }

  #geka_makidume .two_col_03 .l_ct {
    margin-right: 8%;
    margin-bottom: 0;
  }

  /* 放射線科・検査科 */
  #kensa_housyasen p.bold_underline {
    font-size: 2.3rem;
    line-height: 2.1;
  }

  /* 看護 */
  #kango_ideal {
    margin-top: 120px;
  }

  #kango_ideal .ct_ttl {
    margin-bottom: 100px;
  }

  #kango_system .tb_02 {
    max-width: 100%;
  }

  #kango_system .tb_02 tr th:first-of-type {
    border-right: 0;
  }

  #kango_system .tb_02 tbody tr:first-of-type {
    border-top: 1px solid #808080;
  }

  #kango_system .tb_02 thead th:first-child,
  #kango_system .tb_02 tbody th {
    width: 27%;
    border-right: 1px solid #808080;
  }

  #kango_system .tb_02 thead th:not(:first-child),
  #kango_system .tb_02 tbody td {
    width: 73%;
  }

  #kango_system .tb_02 tr td:first-of-type {
    border-right: 0;
    border-left: 1px solid #808080;
  }

  #kango_system .tb_02 .maru_list {
    margin-top: 0;
  }

  #kango_system .tb_02 thead tr th,
  #kango_system .tb_02 tbody th,
  #kango_system .tb_02 tbody tr td {
    padding: 12px 3% 10px;
  }

  /* アクセス */

  #acc_acc .two_col_03 {
    padding: 0 60px;
  }

  #acc_acc .two_col_03 .l_ct {
    width: 55%;

  }

  /* #acc_acc .two_col_03 .l_ct iframe {
    text-align: right;
    margin: 0 auto;
   } */
  #acc_acc .two_col_03 .r_ct {
    width: 45%;
    margin-left: 50px;
  }

  .acc_map {
    width: 500px;
    height: 450px;
  }

  .three_col {
    display: grid;
    column-gap: 55px;
    grid-template-columns: repeat(3, 1fr);
  }

  #acc_acc .three_col {
    grid-template-columns: 280px 355px 350px;
  }

  #acc_acc .maru_list li span {
    font-size: 1.4rem;
  }

  .ct_three_col:not(:first-child) {
    margin-top: 0;
  }

  #acc_parking p.sp_left {
    text-align: center;
  }

  #acc_parking .two_col_03 {
    padding: 0 110px;
  }

  #acc_bus .two_col_03 .r_ct {
    text-align: right;
  }

  #acc_bus .box_1 {
    padding: 20px 0;
    text-align: center;
    border: 1px solid #31a2c7;
    border-radius: 4px;
    background-color: #fff;
    margin-top: 40px;
  }

  #acc_bus .three_col {
    column-gap: 30px;
  }

  #acc_bus .three_col .st-content .st_ct_in {
    padding: 0;
  }

  .acc_accordion .st-content {
    display: block !important;
  }

  .acc_accordion a.open_ct {
    pointer-events: none;
  }

  .acc_accordion a.open_ct:after {
    display: none;
  }

  #acc_bus .two_col_03 .l_ct {
    margin-right: 100px;
  }

  #acc_bus .two_col_03 .l_ct,
  #acc_bus .two_col_03 .r_ct {
    width: 50%;
  }

  /* 診療科・部門 */
  .department_bg_blue {
    padding: 40px 0 50px;
  }

  .department_list_wrap {
    display: grid;
    column-gap: 30px;
    row-gap: 0px;
    grid-template-columns: repeat(3, 1fr);
  }

  .department_item {
    display: block;
  }

  .department_list {
    width: 346px;
  }

  .department_item dt {
    width: 100%;
  }

  .department_item dd {
    justify-content: center;
    width: inherit;
    padding: 0 16px;
    height: 70px;
  }

  .department_item dd h4 {
    font-size: 2.0rem;
  }

  /*------- 外来　PC  --------*/
  #gairai_time td.time {
    padding: 0 7% 0 6%;
  }

  #gairai_time .time_table th.timetable_ttl {
    width: 25%;
    text-align: center;
    padding-right: 3%;
  }

  .gairai_first_inner.two_col_03 .l_ct {
    margin-right: 80px;
  }

  /* 外来担当医表 */
  .gairai_table {
    margin: 0;
    border-spacing: 0;
    width: 1100px;
    table-layout: fixed;
  }

  .td_dep {
    line-height: 1.6;
  }

  .gairai_table th.th_head2 {
    left: 78.92px;
  }

  .gairai_table_wrap {
    height: auto;
  }

  .gairai_table th.th_head1.riha {
    font-size: 1.6rem;
  }

  /* コンタクトフォーム */
  table.formTable {
    margin-top: 30px;
  }

  table.formTable tr {
    display: flex;
  }

  table.formTable th {
    width: 200px;
    margin-right: 5px;
    margin-top: 8px;
    font-weight: bold;
  }

  form select {
    width: 450px;
  }

  form input[type="text"].input-yuubin {
    width: 160px;
  }

  /* 外来モーダル */
  .modal2_wrap {
    max-width: 500px;
    min-width: 230px;
    max-height: 100vh;
    width: fit-content;
    width: 100%;
    height: fit-content;
    padding: 0;
  }

  .modal2_box {
    width: 450px;
    height: auto;
    margin: auto;
  }

  .js-modal-close.close-btn2 {
    right: -18px;
  }

  .modal2_box.flex {
    display: flex;
  }

  .modal2_ct_image {
    /*width: 40%;
    margin-right: 15px;*/
	width: 45%;
    margin-right: 25px;
  }

  /* .modal2_ct_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  } */
  /* .modal2 {
    display: none;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    width: 100%;
    z-index: 4;
  }

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

  .modal2_box {
    width: 520px;
    height: 500px;
    background-color: #fff;
    padding: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: scroll;
  }

  .js-modal-close.close-btn2 {
    top: -15px;
    right: -15px;
  }

  .modal2_box.flex {
    display: flex;
  }
  
  .modal2_ct_image {
    width: 40%;
    margin-right: 15px;
  }
  .modal2_ct_image p {
    text-align: left;
  }
  .modal2_ct_text {
    font-size: 1.4rem;
    width: 100%;
  }
  
  .modal2_ct_text.flex {
    width: calc(100% - 40% - 30px);
  } */

}