/* CSS Document */
@media (min-width: 641px) and (max-width: 1024px) {
  body,
  .nav_wrap.fixed,
  .mainvisual_wrap,
  #mainvisual,
  header,
  footer {
    min-width: 1300px;
  }

  .tgl_menu_list ul li.nav_mega_menu .mega_menu_wrap {
    width: 1300px;
  }
}

@media (max-width: 1024px) {
  .nav_wrap {
    min-width: 1300px;
  }
}

@media screen and (max-width: 640px) {
  body {
    font-size: 14px;
  }
  body,
  .nav_wrap.fixed,
  #mainvisual .inner,
  header,
  footer {
    min-width: 100%;
  }

  /* ナビ展開時スクロール禁止処理 */
  body.nav-open {
    overflow: hidden !important;
  }

  /*============================================================================

  header

============================================================================*/
  header {
    display: none;
  }

  /*============================================================================

  nav

============================================================================*/
  .nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
  }
  .nav_wrap .header_logo {
    width: calc(100% - 56px);
  }
  .nav_wrap .header_logo a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 0;
  }
  .nav_wrap .header_logo img {
    width: 100%;
    height: 45px;
  }

  /* ハンバーガーボタン */
  .btn_tgl_menu {
    position: relative;
    right: 0;
    color: #fff;
    width: 55px;
    background: #333;
    border: none;
    padding: 0;
    margin: 0;
    text-align: center;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .btn_tgl_menu i {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    margin: auto;
    font-style: normal;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }
  .btn_tgl_menu span {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 35px;
    height: 2px;
    background: #fff;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 1;
  }
  .btn_tgl_menu span:nth-of-type(1) {
    top: 10px;
  }
  .btn_tgl_menu span:nth-of-type(2) {
    top: 20px;
  }
  .btn_tgl_menu span:nth-of-type(3) {
    top: 30px;
  }

  /* MENUボタン押下時 */
  .btn_tgl_menu.active {
    right: 16.25rem;
  }
  .btn_tgl_menu.active span:nth-of-type(1) {
    top: 20px;
    transform: rotate(225deg);
  }
  .btn_tgl_menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .btn_tgl_menu.active span:nth-of-type(3) {
    top: 20px;
    transform: rotate(-225deg);
  }

  /* ドロップダウンメニュー */
  .tgl_menu_list {
    position: fixed;
    top: 0;
    right: 0;
    right: -16.25rem;
    z-index: 2;
    overflow: hidden;
    width: 16.25rem;
    height: 100%;
    transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    background: #333;
    padding: 15px;
  }
  .tgl_menu_list ul {
    flex-flow: column wrap;
    width: auto;
  }
  .tgl_menu_list ul li {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
  }
  .tgl_menu_list ul li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .tgl_menu_list ul li::after {
    display: none;
  }
  .tgl_menu_list ul li a,
  .tgl_menu_list ul li p {
    display: block;
    text-align: left;
    padding: 15px 10px;
    width: auto;
    color: #fff;
    font-weight: normal;
  }
  .tgl_menu_list ul li a span,
  .tgl_menu_list ul li p span {
    display: none;
  }
  .tgl_menu_list ul li a:hover {
    color: #fff;
  }
  .tgl_menu_list .sp a {
    background: #666;
    border-radius: 5px;
  }
  .tgl_menu_list .sp li {
    margin-top: 8px;
    border: none;
  }
  .tgl_menu_list ul:nth-of-type(2) li:first-child {
    border-top: none;
  }

  body.nav-open .tgl_menu_list {
    overflow-y: scroll;
    overscroll-behavior-y: none;
    right: 0;
  }
  .nav_wrap.fixed .tgl_menu_list ul {
    gap: 0;
  }

  /* ------- スライドメニュー シングル------- */
  .tgl_menu_list ul li.nav_single_menu div {
    position: static;
    opacity: 1;
    visibility: visible;
    width: 100%;
    padding-bottom: 10px;
    box-shadow: none;
  }
  .tgl_menu_list ul li.nav_single_menu div a {
    margin-left: 15px;
    background: none;
    padding: 3px;
    line-height: 2;
    text-indent: -1.2em;
    padding-left: 1.2em;
    border-bottom: none;
  }
  .tgl_menu_list ul li.nav_single_menu div a::before {
    position: static;
    display: inline;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }
  .tgl_menu_list ul li.nav_single_menu div a i.nav_arrow {
    display: none;
  }
  .tgl_menu_list ul li.nav_single_menu div a:hover {
    color: #fff;
    background: none;
  }

  /* ナビ展開時の後ろの背景 */
  .nav_overlay {
    display: none;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  body.nav-open .nav_overlay {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  /* ヘッダー固定ボタンエリア */
  .btn_area {
    width: 100%;
  }
  .btn_area ul {
    display: flex;
    background: #fff;
    padding: 5px 2.5px;
  }
  .btn_area li.btn {
    width: 100%;
    border-radius: 5px;
    margin: 0 2.5px;
  }
  .btn_area li.btn a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 10px 2%;
  }
  .btn_area li.btn a i {
    width: 15px;
    margin-right: 3px;
  }
  .btn_area li.btn_tel {
    background: #666;
  }
  .btn_area li.btn_yoyaku {
    background: #666;
  }
  .btn_area li.btn_monshin {
    background: #666;
  }
  .btn_area li.btn_access {
    background: #666;
  }

  /* 準備中用のクラス */
  .btn_area li.btn.coming {
    background: #aaa !important;
  }
  .btn_area li.btn.coming a {
    pointer-events: none;
    padding: 2px 2% 18px;
  }
  .btn_area li.btn.coming a::before {
    content: "（準備中）";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    font-size: 90%;
  }

  /*============================================================================

#mainvisual

============================================================================*/
  #mainvisual {
    background-position: center;
    background-attachment: scroll;
    height: 150px;
    margin-top: 110px;
  }
  #mainvisual:not(.home_mv)::before {
    width: calc(100% - 90px);
  }
  #mainvisual .inner {
    width: auto;
    height: inherit;
  }
  /* 下層ページヘッドライン */
  .mainvisual_headline {
    padding-top: 0;
    padding-left: 10px;
  }
  .mainvisual_headline p.headline {
    font-size: 23px;
  }
  .mainvisual_headline p {
    font-size: 15px;
  }

  /*============================================================================

#contents

============================================================================*/
  .box1 {
    width: auto;
    margin: 0 0 80px;
  }
  .box2 {
    width: auto;
    margin: 0 0 80px;
  }
  #container {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  #contents {
    width: auto;
    padding: 0 5% 70px;
  }
  #contents_left {
    width: auto;
    float: none;
    margin-right: 0;
  }
  #contents_right {
    width: auto;
    padding: 0 6%;
    float: none;
  }

  /*============================================================================

footer

============================================================================*/
  footer {
    padding: 40px 0;
  }
  footer .inner {
    display: block;
    width: 88%;
  }
  .footer_logo img {
    width: 180px;
    height: auto;
  }
  .footer_info {
    width: 100%;
    padding: 30px 0 22px;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  .footer_info_add {
    font-size: 14px;
    line-height: 1.8;
  }
  .footer_sche {
    padding: 30px 0;
    border-left: none;
  }
  .footer_sche .schedule {
    width: 100%;
  }
  .copy {
    margin-top: 0;
  }

  /*============================================================================

$top

============================================================================*/

  .tap_banner_items {
    flex-direction: column;
    align-items: center;
  }
  .top_banner_item {
    text-align: center;
  }
  .top_news {
    display: block;
    width: 90%;
    margin: 0 auto 30px;
    padding: 16px 5% 24px;
  }
  .top_news_tit {
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.5;
  }
  .top_news_frame {
    display: block;
    width: 100%;
    padding: 15px 15px;
    line-height: 1.5;
  }
  .top_news_list li a {
    width: 100%;
  }
  .top_news_btn {
    margin: 23px auto 0;
  }
  .top_info {
    display: block;
    width: 90%;
    margin: 0 auto 60px;
    padding: 30px 5%;
  }
  .top_info_item:first-of-type,
  .top_info_item:last-of-type {
    width: 100%;
  }
  .top_info_item:first-of-type {
    margin-bottom: 25px;
  }
  .top_info_add {
    font-size: 14px;
    letter-spacing: 0;
  }
  .top_info_item.map iframe {
    height: 320px;
  }
  .top_feature01 {
    width: 100%;
    padding: 35px 0 50px;
    overflow: hidden;
  }
  .top_feature01 .top_tit {
    margin-bottom: 264px;
  }
  .top_feature01 h3 {
    position: absolute;
    top: 110px;
    width: 310px;
    height: 310px;
    padding: 70px 0 0;
  }
  .top_feature01 h3::after {
    width: 86%;
    height: 86%;
  }
  .top_feature01 h3 em {
    margin-bottom: 18px;
  }
  .top_feature01 h3 em img {
    width: 160px;
  }
  .top_feature01 h3 span {
    font-size: 17px;
  }
  .top_feature01_list {
    flex-wrap: wrap;
    gap: 10px 0;
    width: 90%;
  }
  .top_feature01_list li {
    position: relative;
    width: 43vw;
    max-width: 250px;
    height: 43vw;
    max-height: 250px;
  }
  .top_feature01_list li:first-of-type {
    margin: 0 0;
  }
  .top_feature01_list li:last-of-type {
    margin: 0 auto;
  }
  .top_feature01_list li a {
    padding-top: 24%;
  }
  .top_feature01_list li a p {
    min-height: initial;
    font-size: min(3.6vw, 20px);
  }
  .top_feature01_list li a .top_feature01_btn {
    width: 90px;
    height: 24px;
    line-height: 24px;
    margin: 10px auto 0;
    padding-right: 8px;
    font-size: 12px;
    background-size: auto 2px;
  }
  .top_feature02 {
    padding: 60px 0;
  }
  .top_feature02_text {
    width: 90%;
    padding: 0 0;
  }
  .top_feature02_text h2 {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 15px;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 19px;
  }
  .top_feature02_text h2::before {
    top: -62px;
    left: -8px;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: 154px;
  }
  .top_feature02_text p {
    font-size: 15px;
    letter-spacing: 0.05em;
  }
  .top_feature02_img {
    width: 100%;
    margin: 30px auto 0;
    text-align: right;
  }
  .top_feature02_img img:nth-of-type(1) {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 55%;
    height: auto;
    margin-right: -10%;
    margin-left: auto;
  }
  .top_feature02_img img:nth-of-type(2) {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: 55%;
    height: auto;
    margin: -25% auto 0 -10%;
  }
  .top_feature02_img img:nth-of-type(3) {
    display: block;
    width: 70%;
    height: auto;
    margin: 6% auto 0;
  }
  .top_feature03 {
    padding: 60px 0;
  }
  .top_feature03 .inner {
    width: 90%;
  }
  .top_feature03 .inner P {
    font-size: 15px;
    line-height: 2.3;
  }
  .top_feature03 .inner h2 {
    margin-bottom: 16px;
    padding: 0 4px 10px;
    font-size: 23px;
  }
  .top_feature03 .inner h2::after {
    display: block;
    margin-left: 0;
    margin-top: 4px;
    font-size: 13px;
  }
  .top_feature03_btn a {
    margin: 14px 0 0 auto;
  }
  .doctor_flex {
    flex-direction: column-reverse;
  }
  .top_doctor {
    padding: 40px 0 90px;
  }
  .doctor_flex {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .doctor_flex .doctor_text {
    width: 100%;
  }
  .top_doctor .top_tit {
    margin-bottom: 30px;
  }
  .top_doctor .doctor_text h3 {
    margin-bottom: 14px;
    font-size: 19px;
  }
  .top_doctor_link {
    margin-top: 20px;
  }
  .top_doctor .top_doctor_img {
    width: 80%;
    height: auto;
    margin: 30px auto 0;
    padding-top: 0;
  }
  .top_doctor_img::before {
    right: -12%;
    top: 12%;
  }
  .top_access {
    width: 90%;
  }
  .top_access .top_tit {
    margin-bottom: 35px;
  }
  .top_access .gmap {
    height: 340px;
  }
  .top_access_info {
    display: block;
    margin-top: 18px;
  }
  .top_access_info_overviwe .add {
    font-size: 15px;
    line-height: 1.4;
  }
  .top_access_info_detail p {
    margin-top: 12px;
    line-height: 1.4;
  }

  /*============================================================================

　$breadcrumbs ぱんくず

============================================================================*/
  .breadcrumbs {
    width: 100%;
    margin: 0 0 24px;
  }
  .breadcrumbs li {
    display: inline-block;
    font-size: 13px;
  }

  /*============================================================================

$共通

============================================================================*/
  .box {
    width: auto;
    padding: 0 6% 8%;
  }
  .text {
    float: none;
    width: auto;
    padding: 0;
    border: none;
  }

  /*============================================================================

$見出し

============================================================================*/
  h1 {
    font-size: 12px;
    width: auto;
    padding: 7px 5%;
    text-align: center;
    position: static;
    margin-top: 0 !important;
  }
  .top_tit {
    font-size: 15px;
  }
  .top_tit::before {
    margin-bottom: 10px;
    font-size: 36px;
  }
  .tit01 {
    margin-bottom: 30px;
  }
  .tit01::before {
    margin-bottom: 10px;
    font-size: 35px;
    letter-spacing: 0.07em;
  }
  .tit02 {
    margin-bottom: 20px;
    padding: 1px 0 0px 14px;
    font-size: 20px;
    letter-spacing: 0.075em;
  }
  .nowrap {
    white-space: normal;
  }

  /* テーブル */
  .tb01 {
    white-space: inherit;
  }
  .tb01 th {
    width: 30%;
    font-size: 13px;
    letter-spacing: 0;
  }
  .tb01 td {
    font-size: 14px;
    text-align: center;
  }
  .tb01 td.op {
    padding-top: 5px;
  }
  .tb01 td.op::before {
    width: 14px;
    height: 14px;
  }
  .tb01 td.cl::before {
    width: 14px;
  }
  .tb01 td.sh01,
  .tb01 td.sh02 {
    font-size: 14px;
    padding-top: 3px;
  }
  .tb03,
  .tb03 th {
    white-space: inherit;
    font-size: 15px;
  }
  .tb03 td,
  .tb03 th {
    padding: 10px 2%;
    line-height: 1.5;
    letter-spacing: 0;
  }
  .tb03.w075par {
    width: 100%;
  }
  /* 縦積みにした時 */
  .tb03.ver th,
  .tb03.ver td {
    display: block;
    width: 100%;
  }
  .tb03.ver td {
    border-top: none;
  }
  .tb03.ver th:not(:first-child) {
    border-top: none;
  }

  /* 横スクロール */
  .scroll_tb {
    overflow-x: scroll;
  }
  .scroll_tb table {
    width: 816px;
  }
  .scroll_tb table th {
    position: sticky;
    left: 0;
  }
  .scroll_tb table th::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid #00408f;
  }
  .tb04,
  .tb04 th {
    white-space: normal;
  }
  .tb04 th {
    font-size: 13px;
  }
  .tb04 td,
  .tb04 th {
    padding: 2%;
  }

  /* リスト */
  .list06 {
    padding: 25px 6% 15px;
  }
  .list08 {
    padding: 25px 6% 15px;
  }
  .list08_w100 {
    padding: 25px 6% 15px;
  }

  /* アンカーリンク */
  .ank02 {
    width: 100%;
  }
  .ank02 li {
    width: 100%;
  }
  .ank03 {
    width: 100%;
  }
  .ank03 li {
    width: 100%;
  }
  .ank04 {
    width: 100%;
  }
  .ank04 li {
    width: 100%;
  }

  /* 画像右寄せ */
  .img_fr {
    float: none;
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }
  .img_fr img {
    margin-bottom: 15px;
  }

  /*============================================================================

$doctor

============================================================================*/
  /* ごあいさつ */
  .doctor_greet .doctor_flex {
    width: 100%;
    margin-bottom: 40px;
  }
  .doctor_greet .doctor_text h3 {
    margin-bottom: 14px;
    font-size: 19px;
  }
  .doctor_greet .doctor_text p.doctor_name {
    margin-top: 15px;
    line-height: 1;
  }
  .doctor_greet .top_doctor_img {
    width: 80%;
    height: auto;
    margin: 30px auto 0;
  }

  /* 経歴、資格 */
  .doctor_carr_sec1 {
    float: none;
    width: 100%;
    margin-bottom: 20px;
    padding: 25px 6% 25px;
  }

  /*============================================================================

$clinic

============================================================================*/
  .clinic_sec1 {
    max-width: 100%;
  }

  /* 医院概要 */
  .clinic_sec1 dt {
    width: 100%;
    margin-bottom: 5px;
  }
  .clinic_sec1 dd {
    width: 100%;
  }
  .clinic_sec1 dd a:hover {
    color: inherit;
  }
  .clinic_sec1 .schedule {
    width: 100%;
    margin: auto;
  }
  .clinic_sec1 .schedule .tb01 {
    width: 100%;
  }
  [class^="clinic_slide_wrap"]:not(.clinic_slide_wrap_flex) {
    max-width: 100%;
  }

  /* 院内スライド横 */
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-slider {
    display: block !important;
  }
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-list {
    width: 100%;
  }
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots {
    margin-top: 20px;
    width: 100%;
    justify-content: flex-start;
  }
  .clinic_slide_wrap2 .clinic_slide_wrap_flex .slick-dots li {
    width: 15%;
    margin-bottom: 10px;
  }

  /*============================================================================

$facilities

============================================================================*/
  .facilities_equip dl {
    width: 100%;
    margin-left: 0;
    padding: 6% 10% 10%;
  }
  .facilities_equip_img {
    width: 100%;
    margin-bottom: 8%;
    margin-left: 0;
  }
  .facilities_equip2 dl,
  .facilities_equip2 dl:nth-child(3n) {
    width: 90%;
    margin: 0 5% 30px;
  }
  .facilities_equip2 dl:nth-child(even) {
    margin-right: 5%;
  }
  .facilities_equip3 dl {
    width: 90%;
    margin: 0 5% 30px;
  }
  .facilities_equip3 dl:nth-child(even) {
    margin-right: 5%;
  }
  .facilities_equip3 dl,
  .facilities_equip3 dl:nth-child(3n) {
    width: 90%;
    margin: 0 5% 30px;
  }

  /*==================================================================

  $introduce

==================================================================*/
  .intro_contact {
    display: block;
  }
  .text p.intro_tel {
    margin-bottom: 15px;
  }
  .partner_list li {
    width: 100%;
  }

  /*============================================================================

$access

============================================================================*/
  .access_guide {
    margin-bottom: 20px;
    font-size: 17px;
    letter-spacing: 0;
  }
  .access_wrap [class^="access"] {
    margin-bottom: 40px;
    width: 100%;
  }
  .access_wrap [class^="access"]:last-child {
    margin-bottom: 0;
  }
  .access_map dd iframe {
    height: 320px;
  }
  .access_list {
    padding: 30px 15px 0;
  }
  .access_list dl {
    width: 100%;
    margin-bottom: 30px;
  }

  /*============================================================================

$first

============================================================================*/

  /*============================================================================

$medical

============================================================================*/

  /*============================================================================

$contact

============================================================================*/

  .tb03.contact > tbody > tr > th,
  .tb03.contact > tbody > tr > td {
    display: block;
    width: 100%;
  }

  .tb03.contact .reg-mail {
    white-space: nowrap;
  }

  .tb03.contact .reg-mail th {
    font-size: 90%;
    padding: 6px;
  }

  .tb03.contact .reg-mail {
    white-space: normal;
  }

  .tb03.contact .reg-mail .table_flex {
    gap: 0px;
  }

  .submit_btn input[type="submit"] {
    margin-right: 0;
  }

  /*==================================================================

.layout

==================================================================*/
  .layout_tit {
    font-size: 18px;
  }
  .layout_tit em {
    font-size: 24px;
  }

  /* 1つ並びのレイアウト。画像は無し、左にタイトル、右に文章 */
  .layout01 .layout01_box {
    display: block;
  }
  .layout01 .layout01_title {
    width: 100%;
    padding: 2% 1%;
  }
  .layout01 .layout01_text {
    width: 100%;
  }
  .layout01 .layout01_text img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  /* 2つ並びのレイアウト。最初(dt)にタイトル、画像がその下(dd)、画像の下に文章 */
  .layout02 {
    display: block;
  }

  .layout02 .layout02_box {
    width: 100%;
  }

  .layout02 .layout02_box img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  /* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章 */
  .layout03 {
    margin: 0 0 15px;
  }

  .layout03 .layout03_box {
    display: block;
  }

  .layout03 .layout03_title {
    width: 100%;
  }

  .layout03 .layout03_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
    padding: 0;
  }

  .layout03 .layout03_text {
    width: 100%;
    padding: 15px 3% 1%;
  }

  /* 1つ並びのレイアウト。画像が左、右にタイトル、タイトル下に文章、タイトルと文章のエリア(dd)は背景色が別の色 */
  .layout04 .layout04_box {
    display: block;
  }

  .layout04 .layout04_title {
    width: 100%;
    padding: 2%;
  }

  .layout04 .layout04_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .layout04 .layout04_text {
    width: 100%;
  }

  /* 1つ並びで3列に区切られたレイアウト。画像が左、画像の下にタイトル、右に文章 */
  .layout05 .layout05_box {
    display: block;
  }

  .layout05 .layout05_title {
    width: 100%;
    text-align: center;
    display: block;
  }

  .layout05 .layout05_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .layout05 .layout05_text1:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }

  .layout05 .layout05_text1:nth-child(3) {
    width: 100%;
    border-left: none;
  }

  /* 1つ並びで3列に区切られたレイアウト。左がタイトル、真ん中と右に文章 */
  .layout06 {
    margin: 0 0 15px;
  }

  .layout06 .layout06_box {
    display: block;
  }

  .layout06 .layout06_title {
    width: 100%;
    padding: 3%;
    display: block;
    text-align: center;
  }

  .layout06 .layout06_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  /* 数字 */
  .layout06 .layout06_text1:nth-child(2) {
    width: 100%;
    margin-top: 10px;
  }

  .layout06 .layout06_text1:nth-child(3) {
    width: 100%;
    border-left: none;
  }

  /* 3つ並びのレイアウト。 */
  .layout07 {
    display: block;
  }

  .layout07 .layout07_box {
    display: block;
    width: 100%;
  }

  /* layout09 */
  .layout09 .layout09_box {
    display: block;
  }

  .layout09 .layout09_title {
    width: 100%;
    text-align: center;
    display: block;
  }

  .layout09 .layout09_title img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  .layout09 .layout09_text1 {
    width: 100%;
    margin-top: 10px;
  }

  /* layout10 */
  .layout10 .flow_box {
    justify-content: space-between;
    padding: 6% 4%;
  }
  .layout10 .flow_box::before {
    display: none;
  }
  .layout10 .flow_box .number {
    width: 42px;
    height: 42px;
    margin-right: 0;
    font-size: 20px;
  }
  .layout10 .flow_box .layout10_box {
    width: 82%;
  }
  .layout10 .flow_box .layout10_text .title {
    font-size: 14px;
    line-height: 1.4;
  }
  .layout10 .flow_box .layout10_text .title span {
    display: block;
    padding-bottom: 8px;
    font-weight: bold;
  }
  .layout10 .flow_box .layout10_text .title span::after {
    display: none;
  }
  .course_ablation::before {
    display: none;
  }

  /* layout11 */
  [class^="layout11_text"] dl dt,
  [class^="layout11_text"] dl dd {
    margin-left: 0;
    width: 100%;
  }
  [class^="layout11_text"] dl dt {
    margin-bottom: 0;
  }
  [class^="layout11_text"] dl dd {
    margin-bottom: 10px;
  }
  .layout11_image02 {
    flex-wrap: wrap;
  }
  .layout11_image02 span {
    width: 100%;
  }
  .layout11_image02 span:last-child {
    margin-top: 40px;
  }
  .layout11_image02 span:last-child::before {
    top: -32px;
    bottom: auto;
    left: 0;
    right: 0;
    justify-content: center;
    content: "\f078";
  }

  /*============================================================================

$news

============================================================================*/
  .news_list li a {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  /*============================================================================

$mpcloud_schedule

============================================================================*/
  #mpcloud_schedule {
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 0;
  }
  .time_close {
    right: 20px;
    font-size: 17px;
  }
  .schedule_time {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .schedule_time dt {
    width: 35%;
    margin-bottom: 5px;
  }
  .schedule_time dd {
    width: 65%;
    margin-bottom: 5px;
  }
  .schedule_time dd i {
    margin: 0 3px 0 15px;
    vertical-align: text-bottom;
  }

  /*common*/
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pc_inline {
    display: none !important;
  }
  .sp_inline {
    display: inline !important;
  }
  .pc_table {
    display: table !important;
  }
  .sp_table {
    display: table !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .sp_mb00 {
    margin-bottom: 0 !important;
  }
  .sp_mr00 {
    margin-right: 0 !important;
  }
  .sp_ml00 {
    margin-left: 0 !important;
  }
  .sp_mt00 {
    margin-top: 0 !important;
  }
  .sp_pb00 {
    padding-bottom: 0 !important;
  }
  .sp_pr00 {
    padding-right: 0 !important;
  }
  .sp_pl00 {
    padding-left: 0 !important;
  }
  .sp_pt00 {
    padding-top: 0 !important;
  }
  .sp_center {
    text-align: center;
  }
}

@media screen and (max-width: 320px) {
  .sp_inline_iP {
    display: inline !important;
  }
}
