/*!
sp css
 ______________________________*/
@media screen and (max-width: 1180px) {

  .modal__content {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .modal__title {
    font-size: 1.6rem !important;
  }
  .modal_flex {
    display: block !important;
  }

  .modal__container,
  .modal_flex li {
    width: 100% !important;
  }

  .modal_flex {
    display: block;
  }

  .modal__container,
  .modal_flex li {
    width: 100%;

  }
  .modal_flex li p{
    font-size:1.4rem !important;
    text-align: center;
  }
  .modalWrapper {
    width: 100%;
    max-width: 100%;
  }

  .modalContents>iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 315;
  }

  h2.news_pagehead {
    font-size: 1.8rem !important;
  }

  h2.news_pagehead span {
    font-size: 1.2rem;
    margin: 5px 0 10px;
  }

  .main_white {
    border-radius: 10px;
    padding: 10px 20px;
  }

  .sub_in {
    display: none;
  }

  .button,
  [type="button"],
  [type="reset"],
  [type="submit"],
  button {
    font-size: 1.2rem;
  }

  .top_msg_img {
    position: inherit;
    top: inherit !important;
    right: inherit !important;
    left: inherit !important;
    text-align: center;
  }

  .top_msg_main_wrap {
    padding: 10px 10px 10px 10px !important;
    width: 100%;
    position: inherit;
  }

  .top_msg_img img {
    width: 70%;
    margin-bottom: 30px;
  }

  .top_msg_copy {
    font-size: 130%;
  }

  .top_msg_copy br {
    display: none;
  }

  .top_msg_doc_info {
    width: 100% !important;
    right: 0 !important;
    position: relative !important;
    text-align: center !important;
  }

  .top_msg_doc_name {
    font-size: 2rem !important;
  }

  .main_contents_area {
    width: 100%;
  }

  sub.sub_wrapper {
    position: block;
    top: inherit;
    left: inherit;
    width: 100%;
    background: linear-gradient(to right,
        var(--color-primary) 20%,
        transparent 20%);
  }

  .main_contents .card_prof {
    display: block;
  }

  .main_contents .card_prof>li:nth-child(1) {
    width: 100%;
    margin: 0 0 20px;
    text-align: center;
  }

  .main_contents .card_prof>li:nth-child(1) img {
    width: 60%;
  }

  .main_contents .card_prof>li:nth-child(2) {
    width: 100%;
  }

  .main_contents .radius_sec_body {
    padding: 10px;
  }

  .main_contents .radius_sec {
    border-radius: 10px;
  }

  .main_contents h4 {
    border-radius: 5px;
  }

  /*
.scroll-table
_____________________________*/

  .scroll-table {
    overflow: auto;
    white-space: nowrap;
    border: solid 1px #ddd;
    margin-bottom: 30px;
  }

  .scroll-table table {
    margin-bottom: 0;
  }

  /*
header
______________________________*/

  .sp_contact {
    display: block;
    width: 120px;
    padding: 11px 0 0;
  }

  .header_in {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }

  .header_r {
    display: flex;
    justify-content: flex-end;
    min-width: 58px;
    text-align: right;
  }

  .header h1 {
    display: block;
    width: 185px;
    padding: 10px 0 0 10px;
    text-decoration: none;
    margin-right: auto;
  }

  .header h1 a {
    display: block;
  }

  .header h1 a img {
    width: 100% !important;
    height: auto !important;
  }

  .header {
    background-color: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    min-height: 61px;
    height: 61px;
  }

  .header .container {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: auto;
    background-color: #fff;
    position: static;
    z-index: 999;
  }

  .header li a {
    display: block;
    padding: 20px 10px;
    text-decoration: none;
    overflow: hidden;
  }

  /*
  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #f4f4f4;
  }
*/
  /* menu */
  .header .menu {
    position: absolute;
    transition: 0.2s ease-out;
    max-height: 0;
    opacity: 0;
    display: block;
  }

  /* menu icon */
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    float: right;
    padding: 26px 20px;
    position: relative;
    user-select: none;
    color: var(--color-primary);
  }

  .header .menu-icon .navicon {
    background: var(--color-primary);
    display: block;
    height: 2px;
    position: relative;
    transition: background 0.2s ease-out;
    width: 18px;
  }

  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: var(--color-primary);
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    transition: all 0.2s ease-out;
    width: 100%;
  }

  .header .menu-icon .navicon:before {
    top: 5px;
  }

  .header .menu-icon .navicon:after {
    top: -5px;
  }

  /* menu btn */
  .header .menu-btn {
    display: none;
  }

  .header .menu-btn:checked~.menu {
    max-height: inherit;
    opacity: 1;
    top: 61px;
  }

  .header .menu-btn:checked~.menu-icon .navicon {
    background: transparent;
  }

  .header .menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
  }

  .header .menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
  }

  .header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    top: 0;
  }

  .header_contact {
    display: none;
  }

  /*
	header 子メニュー toggle3種 cssのみcheckbox形式
________________________________________________*/
  #toggle1,
  #toggle2,
  #toggle3 {
    display: none;
  }

  .toggle-inner {
    transition: line-height 0.3s, opacity 0.3s, max-height 0.3s;
    opacity: 0;
    line-height: 0;
    max-height: 0;
  }

  .toggle-inner a {
    transition: padding 0.3s, line-height 0.3s;
    opacity: 0;
    line-height: 0;
    padding: 0 20px;
  }

  #toggle1:checked~.toggle-inner,
  #toggle2:checked~.toggle-inner,
  #toggle3:checked~.toggle-inner {
    opacity: 1;
    line-height: 1.6;
    max-height: inherit;
  }

  #toggle1:checked~.toggle-inner a,
  #toggle2:checked~.toggle-inner a,
  #toggle3:checked~.toggle-inner a {
    opacity: 1;
    line-height: 1.6;
    padding: 10px;
  }

  .toggle_label {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    cursor: pointer;
  }

  .toggle_label::after {
    position: absolute;
    right: 10px;
    content: "＋";
  }

  #toggle1:checked~.toggle_label::after,
  #toggle2:checked~.toggle_label::after,
  #toggle3:checked~.toggle_label::after {
    content: "－";
  }

  ul.toggle-inner {
    width: 100%;
    background-color: rgba(240, 240, 240, 1);
    margin: 0;
    padding: 0 0 0 1em;
  }

  ul.menu li.has-child:hover ul.toggle-inner {
    padding-top: 0;
  }

  /* header fixed adjustment */
  main {
    padding-top: 63px !important;
  }

  html {
    scroll-padding-top: 70px;
  }

  /*
menu
________________________*/
  ul.menu li {
    width: 100%;
    overflow: hidden;
  }

  ul.menu li a,
  .toggle_label {
    text-align: center;
  }

  ul.menu li a span,
  .toggle_label span {
    display: none;
  }

  ul.menu>li {
    border-left: 1px solid #ccc;
    padding: 13px 0;
    height: 69px;
    overflow: hidden;
  }

  ul.menu>li {
    padding: 10px 0;
    height: inherit;
  }

  ul.menu>li:last-child {
    height: inherit;
  }

  /* 前への矢印 */
  .swiper-button-prev {
    left: -4px;
  }

  /* 次への矢印 */
  .swiper-button-next {
    right: -4px;
  }

  .mv .container {
    padding: 0;
  }

  /*
mv
____________________*/
  .mv {
    padding-top: 61px;
    height: 62vw;
  }

  .mv img {
    width: 80%;
  }

  .tab_flex {
    display: block;
  }

  .mod-list-tab-01-wrapper {
    width: 100%;
  }

  .top_tab h3 {
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
  }

  .contents {
    background-size: 250% 40%;
  }

  .swiper_cur .swiper-slide h4 {
    font-size: 1.2rem;
  }

  .swiper_cur .swiper-slide p {
    font-size: 1rem;
  }

  .news_tit {
    padding: 50px 0 0;
  }

  .news_tit h3 {
    font-size: 2.5rem;
  }

  .news_tit h3 span {
    font-size: 1.4rem;
    margin: 5px 0 30px;
  }

  .news_detail {
    align-items: center;
  }

  .news_detail li:nth-child(1) span {
    font-size: 1rem;
  }

  .news_detail li:nth-child(2) {
    font-size: 1rem;
  }

  .top_about_mov iframe {
    width: 100%;
    height: 53vw;
  }

  .news,
  .news_btm {
    padding: 0 0 50px;
  }

  .btn_r {
    padding: 10px 35px 10px 30px;
    background-size: 6px 10px;
    background-position: center right 15px;
    border-radius: 15px;
  }

  .top_about_mov h3 {
    font-size: 1.4rem;
  }

  .top_about_mov {
    padding: 30px 0;
  }

  .top_how_to_join>.container>p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .top_how_to_join>.container {
    background-size: 60px 62px;
    background-position: bottom right 20px;
  }

  .top_how_to_tit h3 {
    display: none;
  }

  br.sp {
    display: block;
  }

  .top_how_to_tit {
    padding: 100px 0 0;
    background-size: 640px 60px;
    background-position: center right -110vw;
  }

  .top_tab_menu {
    position: relative;
  }

  .top_tab {
    padding-top: 0;
  }

  .top_tab_menu>li:nth-child(1) {
    display: none;
  }

  .top_tab_menu>li:nth-child(2) {
    width: 100%;
  }

  .js-tab-content {
    padding: 15px 20px;
  }

  #js-tab-01,
  #js-tab-02,
  #js-tab-03 {
    display: block;
    opacity: 1;
  }

  #js-tab-02 {
    background-position: 5% 70%;
  }

  #js-tab-03 {
    background-position: 40% 70%;
  }

  .tab_blank {
    display: block;
    padding: 100px 0 0;
    background-image: url(../img/top/bg_gene.png);
    background-repeat: no-repeat;
    background-size: 640px 60px;
    background-position: center right -110vw;
    position: relative;
    right: -20px;
  }

  .js-tab-content {
    min-height: 600px;
  }

  .top_tab #js-tab-01 {
    background-size: 100%;
    background-position: right bottom;
  }

  .top_tab #js-tab-02,
  .top_tab #js-tab-03 {
    background-size: 130%;
    background-position: center top 50%;
  }

  .top_tab #js-tab-02 .doc_info,
  .top_tab #js-tab-03 .doc_info {
    position: absolute;
    bottom: 110px;
    left: 25px;
  }

  .top_tab #js-tab-02 .tab_button,
  .top_tab #js-tab-03 .tab_button,
  .top_tab #js-tab-04 .tab_button {
    right: 25px;
  }

  .top_contact_in {
    display: block;
    width: 376px;
    height: 100px;
    background-size: 50px 60px;
    background-position: top right 25px;
  }

  .top_contact h3 {
    font-size: 1.2rem;
  }

  .top_contact {
    padding: 60px 0 20px;
    background-size: 550px 40px;
    background-position: top 19px left -65vw;
  }

  .footer_link_flex {
    display: block;
    margin: 0;
    padding: 20px 0;
  }

  .footer_link_flex article {
    padding: 0 0 0 0;
  }

  .footer_link_ul>li {
    position: relative;
    width: 100%;
  }

  .footer_link_ul>li>a {
    position: relative;
    display: block;
    padding: 10px 0;
    font-size: 1.5rem;
  }

  .footer_link_ul>li>ul {
    height: 0;
    line-height: 0;
    transition: 0.3s;
    overflow: hidden;
    opacity: 0;
  }

  .footer_link_ul>li>ul.active {
    height: 100%;
    line-height: 1.8;
    transition: 0.3s;
    overflow: hidden;
    opacity: 1;
  }

  .footer_link_ul>li>a>span {
    position: absolute;
    right: 0;
    display: inline-block;
    content: "";
    width: 30px;
    height: 30px;
    z-index: 100;
    background-image: url(../img/common/ico_plus.png);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: center center;
  }

  .footer_link_ul>li>a>span.active {
    background-image: url(../img/common/ico_minus.png);
  }

  .footer_hospital h3 {
    font-size: 1.4rem;
  }

  .footer_hospital p {
    font-size: 1.2rem;
  }

  .footer_hospital {
    padding: 20px 0;
    background-image: url(../img/top/bg_gene_r_wh.png);
    background-repeat: no-repeat;
    background-size: 640px 60px;
    background-position: top 11vw right -120vw;
  }

  /*
	page_header
_________________*/
  .page_header {
    height: 100px;
    display: flex;
    align-items: center;
  }

  .page_header1 {
    background-size: cover;
    background-position: right -150px top 61px;
  }

  .page_header h2 {
    font-size: 120%;
    margin: 0;
  }

  .main_contents {
    font-size: 80%;
  }

  #breadcrumb {
    padding: 5px 0;
    margin: 10px 0;
    font-size: 80%;
  }

  .main_contents p {
    font-size: 120%;
  }

  .main_contents h2 {
    font-size: 1.8rem;
  }

  .main_contents h3,
  .main_contents h4,
  .main_contents h5 {
    font-size: 130% !important;
  }

  .main_contents h3 {
    padding: 10px 0;
    margin-bottom: 10px;
  }

  .main_contents h3::before {
    width: 3px;
    height: 22px;
    top: 9px;
    left: 8px;
  }

  .main_contents h4,
  .main_contents h5 {
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .sub_nav h3 {
    padding: 5px 10px;
    border-bottom: 3px solid #95cef6;
    font-size: 120%;
  }

  .main_contents h3 em {
    font-size: 3rem;
    left: -2px;
    bottom: -4px;
  }

  .main_contents li {
    text-align: left;
  }

  /*_______________________

.flex_box
________________________*/
  .flex_box,
  .doc_flex {
    display: block;
  }

  .doc_box .doc_box_img,
  .doc_box .doc_box_text,
  .flex_box .img_box,
  .flex_box .text_box,
  .flex_box.img200 .img_box,
  .flex_box.img250 .img_box,
  .flex_box.img350 .img_box {
    width: 100% !important;
    margin: 0 0 20px 0;
    text-align: center;
  }

  .doc_box .doc_box_img {
    margin-bottom: 0;
  }

  .doc_box {
    margin-bottom: 50px;
  }

  .doc_box img,
  .flex_box .img_box img,
  .flex_box.img200 .img_box img,
  .flex_box.img250 .img_box img,
  .flex_box.img350 .img_box img {
    width: 70%;
    margin-bottom: 30px;
  }

  .flex_box.img_float .img_box {
    float: right;
    width: 40% !important;
    margin-left: 3%;
  }

  .flex_box.img_float ::after {
    content: "";
    display: block;
    clear: both;
  }

  .flex_box.float_r .img_box,
  .flex_box.float_l .img_box {
    text-align: center;
    float: inherit;
    width: 100% !important;
    margin: 0 0 20px 0 !important;
  }

  .flex_box.float_r .img_box img,
  .flex_box.float_l .img_box img {
    width: 70%;
    margin-bottom: 30px;
  }

  .flex_box.float_r .text_box,
  .flex_box.float_l .text_box {
    margin: 0 0 20px 0;
    display: block;
    width: inherit;
  }

  .hero_img img {
    width: 80%;
    height: auto;
  }

  ul.flex_box_half,
  ul.flex_box_3cols {
    display: block;
  }

  ul.flex_box_half li,
  ul.flex_box_3cols li {
    width: 100%;
    margin-bottom: 30px;
  }

  .doc_section {
    font-size: 100% !important;
  }

  .doc_section,
  .doc_box_text_detaile {
    font-size: 120% !important;
  }

  /*
main
________________*/
  .contents {
    padding-top: 62px;

    overflow-x: hidden;
  }

  .main_wrapper {
    display: block;
  }

  .main_contents {
    width: 100%;
    order: 1;
  }

  .main_wrapper sub {
    width: 100%;
    order: 2;
  }

  .doc_img {
    text-align: center;
  }

  .doc_img>img {
    width: 40% !important;
  }

  .doc_name {
    text-align: center !important;
    font-size: 140%;
  }

  .flow04>li {
    max-width: 100%;
    margin-bottom: 0;
  }

  .flow04>li dl {
    width: 100%;
  }

  .flow04>li:not(:first-child) dl::before {
    top: -26px;
    left: calc(50% - 7px);
    transform: rotate(135deg);
  }

  .flow04>li dl dd {
    text-align: center;
  }

  .flow04.pati>li:nth-child(1) dl,
  .flow04.pati>li:nth-child(2) dl,
  .flow04.pati>li:nth-child(3) dl {
    min-height: 220px;
  }

  .flow4_btn_box {
    background-position: center top 50px;
    padding: 200px 0 0 0;
  }

  .news_list_card>article>.news_list_card_img {
    width: 100px;
    height: auto;
  }

  .news_list_card>article>.news_list_card_body {
    width: calc(100% - 120px);
  }

  /*___________________________________*/
}