/* CSS Document */

@media only screen and (max-width: 768px) {
  .blurFixSP {
    image-rendering: optimizeSpeed;
    /* STOP SMOOTHING, GIVE ME SPEED  */
    image-rendering: -moz-crisp-edges;
    /* Firefox                        */
    image-rendering: -o-crisp-edges;
    /* Opera                          */
    image-rendering: -webkit-optimize-contrast;
    /* Chrome (and eventually Safari) */
    image-rendering: -o-pixelated;
    image-rendering: pixelated;
    /* Chrome */
    image-rendering: optimize-contrast;
    /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;
    /* IE8+                           */
  }
}

/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Menu Toogle
********************************/
.menu_toggle {
  position: fixed;
  top: 0;
  right: 0;
  width: 700px;
  height: 100vh;
  padding: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.8s;
  -o-transition: 0.8s;
  transition: 0.8s;
  pointer-events: none;
  z-index: 2;
  background: #fff;
  -webkit-transform: translateX(120%);
  -ms-transform: translateX(120%);
  transform: translateX(120%);
}

.menu_toggle.active {
  pointer-events: auto;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.menu_toggle ul li {
  position: relative;
  overflow: hidden;
}

.menu_toggle p {
  margin-bottom: 0;
}

.menu_toggle a {
  text-decoration: none;
}

.menu_toggle a:hover,
.menu_toggle p:hover {
  opacity: 1;
  color: #6eaa1d;
}

.menu_toggle .inside {
  display: block;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  /* Lets it scroll lazy */
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.menu_toggle .inside>ul {
  padding: 60px 0;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.menu_toggle .inside>ul>li {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu_toggle .inside ul li {
  position: relative;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
  font-size: 14px;
}

.menu_toggle .inside ul li.title a {
  border-bottom: 1px solid #0d417e;
  margin-bottom: 18px;
  padding-bottom: 9px;
  padding-left: 0;
  font-size: 20px;
  font-weight: 600;
  color: #0d417e;
  letter-spacing: 3.5px;
  line-height: 1;
  pointer-events: none;
  display: inline-block;
  text-transform: uppercase;
}

.menu_toggle .inside ul li.title::before {
  display: none;
}

.menu_toggle .inside ul li.home {
  font-weight: 400;
}

.menu_toggle .inside ul li:not(.title) {
  padding-left: 15px;
}

.menu_toggle .inside ul li:not(.title)::before {
  content: "";
  background-color: #d9b063;
  border-radius: 100%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 7px;
  left: 0px;
}

.menu_toggle .inside ul a {
  color: inherit;
  text-decoration: none;
}

.menu_toggle .inside ul a:hover {
  opacity: 1;
  text-decoration: underline;
}

.menu_toggle .inside .tog_box1 {
  margin-bottom: 30px;
}

@media only screen and (min-width: 769px) {
  header.active .menu_toggle {
    top: 96px;
    height: calc(100vh - 96px);
  }
}

@media only screen and (min-width: 769px) and (max-width: 1170px) {
  header.active .menu_toggle {
    top: 70px;
    height: calc(100vh - 70px);
  }
}

#nav-icon {
  position: relative;
  margin: 0 auto 0px;
  cursor: pointer;
  -webkit-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

#nav-icon span {
  background-color: #fff;
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 10px;
}

#nav-icon span:nth-child(4) {
  top: 20px;
  width: 72%;
  right: 0;
  left: auto;
}

#nav-icon.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2),
#nav-icon.open span:nth-child(3) {
  width: 76%;
  left: 5px;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

#menu_btn {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.15em;
}

.hamburger-btn {
  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;
  z-index: 10;
  cursor: pointer;
}

.hamburger-btn .button-toggle {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: inherit;
}

@media screen and (min-width: 769px) {
  .navi {
    position: fixed;
    width: 96px;
    top: 0;
    right: 0;
    z-index: 10;
  }

  .hamburger-btn {
    width: 100%;
    height: 96px;
    padding-top: 5px;
    background: #0d417e;
    -webkit-transition: all 0.9s;
    -o-transition: all 0.9s;
    transition: all 0.9s;
  }

  .hamburger-btn:hover #nav-icon span {
    width: 100%;
  }

  .hamburger-btn:hover #nav-icon.open span:nth-child(1),
  .hamburger-btn:hover #nav-icon.open span:nth-child(4) {
    width: 0;
  }

  .hamburger-btn:hover #nav-icon.open span:nth-child(2),
  .hamburger-btn:hover #nav-icon.open span:nth-child(3) {
    width: 100%;
    left: 0;
  }

  #nav-icon {
    width: 43px;
    height: 24px;
  }

  .menu_toggle .inside {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .menu_toggle .inside .tog_box1,
  .menu_toggle .inside .tog_box2 {
    width: 49%;
  }
}

@media screen and (min-height: 610px) and (min-width: 769px) and (max-width: 1700px) {
  .menu_toggle {
    padding: 20px 80px;
  }

  .menu_toggle .inside ul li {
    margin-bottom: 5px;
    line-height: 22px;
  }

  .menu_toggle .inside ul li:not(.title)::before {
    top: 7px;
  }

  .menu_toggle .inside ul li a {
    font-size: 14px;
  }

  .menu_toggle .inside ul li.sm {
    margin-bottom: 5px;
  }

  .menu_toggle .inside ul li.mn_mb1 {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1280px) {

  .menu_toggle .inside>ul>li>a,
  .menu_toggle .inside>ul>li>p.title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1170px) {
  .hamburger-btn {
    height: 70px;
  }

  .menu_toggle {
    width: 500px;
    padding: 20px 40px;
  }

  .navi {
    width: 70px;
  }

  #nav-icon {
    width: 34px;
  }

  #menu_btn {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .menu_toggle .inside>ul>li .subInner li {
    width: 100%;
  }

  .menu_toggle {
    padding: 0px 20px;
    max-width: 100%;
    height: auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    top: 60px;
    width: 100%;
    bottom: 0;
    margin-top: 0px;
  }

  .menu_toggle .inside {
    position: relative;
    display: block;
    padding: 10px 0px;
  }

  .menu_toggle .inside>ul {
    padding: 0px 0 70px;
    height: auto;
  }

  .menu_toggle .inside>ul>li {
    margin-bottom: 10px;
  }

  .menu_toggle .inside>ul>li>a,
  .menu_toggle .inside>ul>li>p.title {
    font-size: 21px;
  }

  .menu_toggle .inside>ul .subInner li {
    min-width: 190px;
    margin-bottom: 5px;
    margin-bottom: 8px;
  }

  .menu_toggle .inside>ul .subInner li:not(.ttl)::before {
    top: 8px;
  }

  .active .inside>ul>li a,
  .active .inside>ul>li p {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }

  #nav-icon {
    width: 30px;
    height: 18px;
    margin: auto;
  }

  #nav-icon span:nth-child(2),
  #nav-icon span:nth-child(3) {
    top: 8px;
  }

  #nav-icon span:nth-child(4) {
    top: 15px;
  }

  #menu_btn {
    font-size: 10px;
  }

  .hamburger-btn {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 11;
    padding-top: 4px;
  }
}

/* END Menu
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
General
********************************/
@media only screen and (max-width: 768px) {
  body {
    font-size: 87.5%;
  }

  figure {
    text-align: center;
  }

  img {
    max-width: 100%;
  }

  .TabContainer .TabPager li {
    width: 33%;
  }

  .totop {
    bottom: 120px;
    right: 5px;
  }

  .totop .icon {
    width: 40px;
    height: 40px;
  }

  .fblock {
    display: block;
  }

  .fblock.true {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .under .topic_path {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .txt_l,
  .txt_r {
    float: none;
    width: auto;
  }

  .image_l,
  .image_r {
    float: none;
    width: auto;
    margin: 0 0 20px;
    text-align: center;
    max-width: none;
  }

  .btn-group .btn.style01,
  .btn-group .btn.style02 {
    max-width: 250px;
  }

  .btn-group .btn.style01 a,
  .btn-group .btn.style02 a {
    padding: 7px 35px;
    font-size: 15px;
  }

  .btn-group .btn.style01 a.md,
  .btn-group .btn.style02 a.md {
    font-size: 13px;
  }

  p {
    margin-bottom: 13px;
    line-height: 1.8;
  }

  a .tel_click:hover {
    opacity: 1;
    color: inherit;
  }

  .slick-prev {
    left: 0px;
  }

  .slick-next {
    right: 0px;
  }

  .slick-arrow {
    z-index: 1;
    top: 15vw;
  }
}

/* END General
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Header & Footer
********************************/
@media only screen and (max-width: 768px) {
  .wrapper {
    min-width: inherit;
  }

  .inner,
  .inner_sm {
    max-width: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  header {
    height: 60px;
  }

  header.active {
    background: #0d417e;
  }

  header.active .logo img {
    height: auto;
  }

  .header_top {
    height: 60px;
    width: 100%;
    padding: 9px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }

  .header_top::before {
    display: none;
  }

  .header_top.active {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  .header_top p {
    margin-bottom: 0;
  }

  .header_top .logo {
    max-width: 54px;
    width: auto;
    margin-left: 10px;
    position: static;
    left: 0;
    top: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding-top: 0;
  }

  .header_top .inner {
    height: auto;
    display: block;
  }

  footer {
    padding: 25px 0 51px;
  }

  footer .footer_content {
    position: relative;
    z-index: 0;
  }

  footer .footer_content::before {
    position: absolute;
    content: '';
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
  }

  footer .ft_inner {
    width: 100%;
    margin: 0 auto;
    max-width: 310px;
  }

  footer .ft_logo {
    max-width: 120px;
  }

  footer .ft_cm_tel .cm_box1 {
    margin-right: 0;
    width: 65%;
  }

  footer .ft_cm_tel .cm_web {
    width: 33%;
    padding: 6px 12px;
  }

  footer .ft_cm_tel .cm_web .ic {
    font-size: 11px;
    background-size: 13px auto;
    background-position: left top 5px;
    padding: 5px 0 5px 19px;
  }

  footer .ft_cm_tel .ft_tel a {
    background-size: 18px auto;
    background-position: left top 3px;
    padding-left: 22px;
    font-size: 21px;
  }

  footer .ft_cm_tel .note {
    padding-left: 3px;
    font-size: 11px;
  }

  footer .ft_info {
    width: auto;
    margin: 0 auto;
  }

  footer .ft_link {
    width: auto;
  }

  footer .copyright p {
    word-break: break-word;
    font-size: 10px;
  }

  .fix_modal {
    width: 190px;
    left: 10px;
    bottom: 60px;
  }

  .fix_modal::before {
    width: 88px;
  }

  .fix_modal::after {
    bottom: 16px;
    width: 34px;
  }

  .fix_modal .close {
    width: 60px;
    height: 60px;
  }

  .fix_modal .close::before,
  .fix_modal .close::after {
    width: 16px;
    bottom: 18px;
    left: 11px;
  }

  .fix_modal .fix_box {
    padding: 32px 10px 38px;
  }

  .fix_modal .ttl {
    font-size: 15px;
  }

  .fix_modal .txt {
    font-size: 10px;
  }

  .fixed_banner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 55px;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }

  .fixed_banner.active {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
  }

  .fixed_banner::before {
    display: none;
  }

  .fixed_banner p::before {
    margin-bottom: 5px;
  }

  .fixed_banner .tel,
  .fixed_banner .web {
    height: auto;
    border: none;
  }

  .fixed_banner .tel p,
  .fixed_banner .web p,
  .fixed_banner .tool p {
    padding: 0px 0px;
    font-size: 11px;
    line-height: 1.2;
  }

  .fixed_banner .tel p::before,
  .fixed_banner .web p::before {
    height: 20px;
    background-size: auto 20px;
  }

  .fixed_banner .tel {
    width: 33.33%;
    border-right: 1px solid #b1d8ff;
  }

  .fixed_banner .tel p span {
    -webkit-writing-mode: lr-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: lr-tb;
  }

  .fixed_banner .web {
    width: 33.33%;
    border-right: 1px solid #b1d8ff;
  }

  .fixed_banner .tool {
    width: 33.33%;
  }

  .fixed_banner .tool p {
    font-size: 10px;
  }

  .fixed_banner .tool p::before {
    background-size: auto 18px;
    height: 18px;
  }
}

/* End Header & Footer
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Index
********************************/
@media only screen and (max-width: 768px) {
  .home_page .key {
    height: 161.5vw;
    max-height: none;
    z-index: 1;
  }

  .home_page .key .key_text {
    max-width: none;
    max-height: none;
    width: auto;
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .home_page .key .key_text .item {
    padding: 0;
    height: 161.5vw;
    /*-webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;*/
    display: block;
    max-width: 100%;
    margin: 0;
  }

  .home_page .key .key_text .key_b_h2 {
    display: block;
    width: 100vw;
    bottom: 86px;
    text-align: center;
    left: 0;
    top: auto;
    right: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding: 0 1%;

  }

  .home_page .key h2,
  .home_page .key p {
    -webkit-writing-mode: lr-tb;
    -ms-writing-mode: lr-tb;
    white-space: normal;
    writing-mode: lr-tb;
  }

  .home_page .key h2 {
    font-size: 5.5vw;
    padding-left: 0;
    padding-bottom: 2vw;
    letter-spacing: 0;
    font-weight: 600;
  }

  .home_page .key p {
    font-size: 3.5vw;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }

  .home_page .key #myvideo {
    /* 
    old code
    width: 286vw;
    height: 161.5vw;
     left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); 
    old code
    */

    /* fix size video background */
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    /* fix size video background */
  }

  .home_page .key .idx_scroll {
    bottom: 25px;
  }
}


@media only screen and (max-width: 640px) {
  .home_page .key h2 {
    font-size: 5vw;
  }
}


@media only screen and (max-width: 768px) {
  .idx_ttl {
    font-size: 26px;
  }

  .idx_ttl .en {
    margin-top: 5px;
  }

  .ttl_style2 .en {
    padding: 0 32px 0 34px;
    font-size: 28px;
  }

  .ttl_style2 .en::before,
  .ttl_style2 .en::after {
    width: 26px;
  }

  .ttl_style3 {
    background-size: 30px auto;
    padding-top: 36px;
    margin-bottom: 25px;
    font-size: 26px;
  }

  .ttl_style3 .jp::before {
    width: calc(50% - 78px);
  }

  .ttl_style3 .jp::after {
    width: calc(50% - 74px);
  }

  .ttl_style4 {
    font-size: 26px;
  }

  .gr_btn {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .cm_btn a {
    padding: 14px 10px 14px;
  }
}

@media only screen and (max-width: 520px) {
  .cm_btn::after {
    right: 10px;
    width: 19px;
  }
}

@media only screen and (max-width: 768px) {
  .idx_gallery {
    height: 180px;
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 768px) {
  .idx1_blog {
    background: #0d417e;
  }

  .idx1_blog .idx01_bg {
    position: static;
    top: 0;
  }

  .idx1_blog .idx01_bg:after {
    display: none;
  }

  .idx1_blog .idx01_inner {
    padding: 25px 10px;
  }

  .idx1_blog .box_post {
    padding: 0;
    height: auto;
    display: block;
  }

  .idx1_blog .box_post .ttl {
    width: auto;
    text-align: center;
    padding-top: 0;
    margin-bottom: 15px;
  }

  .idx1_blog .list_post {
    width: 100%;
    padding-left: 0;
  }

  .idx1_blog .list_post:before {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  .idx1_blog .list_post a {
    font-size: 14px;
  }

  .idx1_blog .list_post .date {
    width: 85px;
  }

  .idx1_blog .list_post .txt {
    width: calc(100% - 85px);
  }

  .idx_ttl {
    font-size: 22px;
  }

  .idx_ttl.cl02 .sub {
    font-size: 70%;
  }
}

@media only screen and (max-width: 768px) {

  .idx1 {
    width: 100%;
    padding: 45px 10px;
  }

  .idx1 .thumb {
    margin: 0 auto;
  }

  .idx1 .list dl dt,
  .idx1 .list dl dd {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }

  .idx1 .list dl dt {
    padding-bottom: 0;
  }

  .idx1 .list dl dd {
    padding-top: 5px;
  }

  .idx1::before {
    width: 102px;
  }

  .idx1 .cm_btn {
    margin-top: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .idx2_eng {
    font-size: 5.1vw;
  }

  .idx2_detil_top {
    padding: 45px 0;
  }

  .idx2_detil_top::before,
  .idx2_detil_top::after {
    content: none;
  }

  .idx2_title {
    position: relative;
  }

  .idx2_title .ttl_style1 {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .idx2_boximg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 3vw;
    margin-left: -10px;
    margin-right: -10px;
  }

  .idx2_boximg .img1,
  .idx2_boximg .img2 {
    width: 35%;
  }

  .idx2_boximg .img1 img,
  .idx2_boximg .img2 img {
    image-rendering: -webkit-optimize-contrast;
  }

  .idx2_box {
    width: 100%;
  }

  .idx2_box .txt {
    letter-spacing: 0;
  }

  .idx2_box .gr_btn .cm_btn {
    width: 100%;
    margin: 10px;
  }


  .idx2_title .ttl_style1 {
    font-size: 26px;
  }

  .idx2_title .ttl_style1 .small {
    font-size: 14px;
  }

  .idx2_detil_bottom {
    padding: 65px 0 45px;
  }

  .idx2 .idx_bnr_corona {
    padding: 34px 20px 34px;
  }

  .idx2 .idx_bnr_corona::before {
    width: 105px;
  }

  .idx2 .idx_bnr_corona::after {
    right: 16px;
    width: 24px;
  }

  .idx2 .idx_bnr_corona .ttl {
    font-size: 18px;
  }

  .idx2 .idx_bnr_corona .en {
    font-size: 12px;
  }
}

@media only screen and (max-width: 520px) {
  .idx2_box .gr_btn .btn_full {
    max-width: 270px;
  }
}

@media only screen and (max-width: 768px) {
  .idx3_head {
    padding: 60px 0 30px;
  }

  .idx3_head::before,
  .idx3_head::after {
    width: 200px;
    height: 74px;
  }

  .idx3_detil {
    padding: 45px 0 45px;
  }

  .idx3_box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }

  .idx3_box.img-r .box_text {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .idx3_box.item1 h4 .ttl {
    width: 100%;
  }

  .idx3_box.item1 .box_text .txt {
    max-width: none;
  }

  .idx3_box h4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
    margin-bottom: 20px;
  }

  .idx3_box h4 .ttl_point {
    width: 100%;
  }

  .idx3_box h4 .ttl {
    padding-top: 10px;
    width: 100%;
    font-size: 20px;
  }

  .idx3_box h4 .number {
    font-size: 60px;
  }

  .idx3_box .box_img {
    width: 100%;
  }

  .idx3_box .box_text {
    margin: -58px auto 0;
    width: 96%;
    padding: 40px 28px 40px;
    min-height: auto;
  }

  .idx3_box .box_text .txt {
    letter-spacing: 0;
    max-width: none;
  }

  .idx3 .cm_btn {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .idx4 {
    padding: 45px 0;
  }

  .idx4::before {
    bottom: 45px;
  }

  .idx4 .box_right {
    width: 100%;
  }

  .idx4_detil {
    padding-right: 0;
    padding-bottom: 40px;
  }

  .idx4_detil .text_eng {
    font-size: 40px;
    width: 100%;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-writing-mode: lr-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: lr-tb;
    text-align: center;
  }

  .idx4 .i4_img {
    max-width: 320px;
    width: 100%;
    margin: 0 auto 30px;
    position: relative;
    left: auto;
    bottom: auto;
  }

  .idx4 .list .trea_txt {
    font-size: 18px;
  }

  .idx4 .list {
    margin-left: -5px;
    margin-right: -5px;
  }

  .idx4 .list li {
    width: calc((100%/3) - 10px);
    min-height: auto;
    margin: 5px;
  }

  .idx4 .list li:nth-child(5n + 1) {
    margin-left: 5px;
  }

  .idx4 .list li:nth-child(5n) {
    margin-right: 5px;
  }

}

@media only screen and (max-width: 520px) {

  .idx4 .list .item11 .trea_txt {
    font-size: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .idx4_detil .text_eng {
    font-size: 8vw;
  }

  .idx4 .list li {
    width: calc((100%/2) - 10px);
  }

  .idx4 .list li {
    padding: 30px 0 50px;
  }

  .idx4 .list .trea_txt {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .idx5 {
    padding: 45px 0 25px;
  }

  .idx5_trouble {
    margin: 40px auto 0;
  }

  .idx5_trouble .trouble_item {
    margin-left: -1%;
    margin-right: -1%;
  }

  .idx5_trouble .trouble_item>li {
    width: calc(100%/2 - 2%);
    margin: 30px 1%;
    padding: 85px 15px 30px;
    max-width: 360px;
  }

  .idx5_trouble .icon {
    width: 100px;
    height: 100px;
  }

  .idx5_trouble .icon img {
    max-width: 100%;
    max-height: none;
  }

  .idx5_trouble .idx5_ttl {
    letter-spacing: 0;
    font-size: 22px;
  }
}

@media only screen and (max-width: 480px) {
  .idx5_trouble .trouble_item>li {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .idx6 {
    padding: 45px 0 45px;
  }

  .idx6_eng {
    font-size: 5.1vw;
  }

  .idx6_content {
    width: 100%;
    margin: auto;
    padding: 40px 26px;
    max-width: 585px;
  }

  .idx_map {
    margin-top: 45px;
  }

  .idx_map iframe {
    height: 280px;
  }
}

@media only screen and (max-width: 480px) {

  .idx6 .schedule th,
  .idx6 .schedule td {
    font-size: 3.2vw;
  }

  .idx6 .schedule th:nth-of-type(1) {
    width: 31.7%;
  }

  .idx6 .info dt {
    width: 60px;
  }

  .idx6 .info dd {
    width: calc(100% - 60px);
  }

  .idx6 .gr_btn .cm_btn {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .idx6 .gr_btn .cm_btn:nth-child(1) {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 768px) {
  .index_banner {
    margin-bottom: 35px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .index_banner .idx_brn {
    width: calc(50% - 14px);
    margin: 7px;
  }
}

@media only screen and (max-width: 768px) {
  .ft_common {
    padding-top: 45px;
    padding-bottom: 54vw;
  }

  .ft_common::before,
  .ft_common::after {
    bottom: 0;
  }

  .ft_common::before {
    width: 48%;
    height: 47vw;
    left: 0;
  }

  .ft_common::after {
    width: 48%;
    height: 47vw;
    right: 0;
  }

  .ft_contact_eng {
    font-size: 10vw;
  }

  .ft_contact {
    width: 100%;
    max-width: 676px;
    padding: 8vw 24px 8vw;
  }

  .ft_contact::after {
    background-size: 50vw auto;
  }

  .ft_contact>div {
    width: 76%;
  }

  .ft_cm_txt {
    margin-bottom: 2vw;
  }

  .ft_cm_txt .txt_1 {
    font-size: 3vw;
  }

  .ft_cm_txt .txt_2 {
    font-size: 4.5vw;
  }

  .ft_cm_txt .txt_3 {
    font-size: 2.5vw;
  }

  .ft_cm_tel .cm_box1 {
    margin-right: 0;
    width: 65%;
  }

  .ft_cm_tel .cm_web {
    width: 33%;
  }

  .ft_cm_tel .ft_tel a {
    font-size: 4.5vw;
  }

  .ft_cm_tel .ft_tel a {
    padding-left: 5vw;
    background-size: 3.5vw auto;
    background-position: left top 1vw;
  }

  .ft_cm_tel .note {
    font-size: 2vw;
  }

  .ft_cm_tel .cm_web {
    padding: 1vw 2vw 1vw;
  }

  .ft_cm_tel .cm_web .ic {
    padding: 1vw 0 0.8vw 4.5vw;
    font-size: 2.5vw;
    background-position: top 1vw left;
    background-size: 3vw auto;
  }
}

@media only screen and (max-width: 768px) {
  .ft_contact>div {
    width: 100%;
  }

  .ft_cm_txt .txt_1 {
    font-size: 4vw;
  }

  .ft_cm_txt .txt_2 {
    font-size: 5.5vw;
  }

  .ft_cm_txt .txt_3 {
    font-size: 3.5vw;
  }

  .ft_cm_tel .ft_tel a {
    font-size: 5.5vw;
  }

  .ft_cm_tel .ft_tel a {
    padding-left: 5vw;
    background-size: 4.5vw auto;
    background-position: left top 1vw;
  }

  .ft_cm_tel .note {
    font-size: 2.5vw;
  }

  .ft_cm_tel .cm_web {
    padding: 1vw 1.5vw 1vw;
  }

  .ft_cm_tel .cm_web .ic {
    padding: 1vw 0 0.8vw 5.5vw;
    font-size: 3.2vw;
    background-position: top 1vw left;
    background-size: 4vw auto;
  }
}

/* END Index
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
/********************************
Under
********************************/
@media only screen and (max-width: 768px) {
  .under #mainContent {
    padding-bottom: 50px;
  }

  .under .key {
    padding-top: 60px;
    height: 280px;
  }

  .under .key .key_text {
    padding: 0;
  }

  .under .key h2 {
    font-size: 28px;
    letter-spacing: 0.05em;
  }

  h1.blogh1 {
    background-image: url(https://kobe118.com/wp-content/themes/grits_theme/images/ud_icon_h3.png);
    background-position-x: center;
    background-position-y: top;
    background-size: 60px;
    background-repeat-x: no-repeat;
    background-repeat-y: no-repeat;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: initial;
    position: relative;
    margin-bottom: 40px;
    padding-top: 73px;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-align: center;
    margin-top: 100px;
    letter-spacing: 0.2em;
  }

  .under h3 {
    background-size: 40px auto;
    padding-top: 50px;
    margin-bottom: 25px;
    font-size: 16px;
  }

  .under h3 .en {
    padding: 0 27px 0 29px;
    font-size: 24px;
  }

  .under h3 .en::before,
  .under h3 .en::after {
    width: 20px;
  }

  .under h4 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .under h5 {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .under h5.ttl_h5 .ic {
    padding-left: 2px;
    width: 34px;
    height: 34px;

  }

  .under h5 .ttl {
    padding-top: 6px;
    width: calc(100% - 46px);
  }

  .under h6 {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .under section:first-child h3 {
    margin-top: 35px;
  }

  .under section {
    padding-top: 1px;
  }

  .under section h3 {
    margin-top: 60px;
  }

  .under .secH4 {
    padding-top: 40px;
  }

  .under .secH5 {
    padding-top: 30px;
  }

  .under .imgBox.rowImg .image_l,
  .under .imgBox.rowImg .image_r {
    float: none;
    width: auto;
    margin: 0 0 20px;
    text-align: center;
    max-width: none;
  }

  .under .imgBox.rowImg .image_l:nth-child(n),
  .under .imgBox.rowImg .image_r:nth-child(n) {
    max-width: none;
  }

  .under .imgBox.rowImg .txt_l,
  .under .imgBox.rowImg .txt_r {
    float: none;
    width: auto;
  }

  .under .imgBox.rowImg.large .image_l,
  .under .imgBox.rowImg.large .image_r {
    max-width: none;
  }

  .under .imgBox.rowImg.large .txt_l,
  .under .imgBox.rowImg.large .txt_r {
    width: auto;
  }

  .under .imgBox.colImg .item:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .under .imgBox.colImg figure {
    margin-bottom: 15px;
  }

  .under .imgBox.colImg .text {
    font-size: 14px;
  }

  .under .imgBox.colImg2 .item,
  .under .imgBox.colImg3 .item {
    width: 100%;
  }

  .under .imgBox.colImg2 img,
  .under .imgBox.colImg3 img {
    max-height: 100%;
  }

  .under .acf_block h3 {
    margin-bottom: 0;
  }

  .under .acf_block .text_h3 {
    margin: 25px 0 0;
  }

  .under .acf_block .text_h4 {
    margin: 20px 0 0;
  }

  .under .acf_block .text_h5 {
    margin: 15px 0 0;
  }

  .under table.rollTable {
    width: 1000px;
  }

  .under table.sp_clinic th,
  .under table.sp_clinic td {
    font-size: 13px;
  }

  .under table.sp_clinic th {
    width: 34%;
  }

  .under table.resTable {
    display: block;
  }

  .under table.resTable tbody,
  .under table.resTable tr,
  .under table.resTable th,
  .under table.resTable td {
    display: block;
  }

  .under table.resTable td:not(:last-child) {
    border-bottom: 0;
  }

  .under table.resTable.tbl_style01.colHead tr th {
    border-bottom: none;
  }

  .under table.resTable.tbl_style01.colHead tr:not(:first-child) th {
    border-top: none;
  }

  .under table.resTable.tbl_style02.colHead th {
    border-bottom: none;
  }

  .under table.resTable.tbl_style02.colHead tr:not(:last-child) td {
    border-bottom: none;
  }

  .under .tbl_note {
    display: block;
  }

  .under ul.list01 li {
    font-size: 14px;
    line-height: 1.8;
  }

  .under ul.list01 li::before {
    top: 8px;
  }

  .under ul.list01 li:nth-child(odd) {
    padding-right: 0;
  }

  .under ul.list01.mcol-2 li {
    width: 100%;
    padding-bottom: 9px;
  }

  .under .doctor_content.box_right .doctor_right {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .under .doctor_box {
    width: 100%;
    max-width: 560px;
    margin: 0 auto 30px;
  }

  .under .doctor_box .doctor_name {
    bottom: 3vw;
    right: 3vw;
    font-size: 4vw;
    padding: 3vw 3vw 3vw;
  }

  .under .doctor_box .doctor_name .small {
    font-size: 3vw;
  }

  .under .doctor_right {
    width: 100%;
  }

  .under .ud_map {
    height: 280px;
  }

  .under .box_step {
    margin-top: 60px;
  }

  .under .list_step:not(:last-child) {
    margin-bottom: 60px;
  }

  .under .list_step:not(:last-child)::before {
    bottom: -18px;
    border-left: 26px transparent solid;
    border-top: 18px #e0e5eb solid;
    border-right: 26px transparent solid;
  }

  .under .list_step dt {
    padding-left: 96px;
    font-size: 16px;
  }

  .under .list_step dt .point {
    width: 58px;
    font-size: 14px;
  }

  .under .list_step dt .number {
    font-size: 160%;
  }

  .under .contact-form-style01 .contact-table dt {
    border-bottom: none;
  }

  .contact-form-style01 .contact-table dd {
    padding: 15px 15px;
  }

  .contact-form-style01 .contact-table .ct_cal {}

  .contact-form-style01 .contact-table .ct_tbl th,
  .contact-form-style01 .contact-table .ct_tbl td {
    font-size: 0.8em;
    padding: 0.225rem;
  }

  .under .contact_yoyaku,
  .under .contact_yoyaku dt,
  .under .contact_yoyaku dd {
    display: block;
    text-align: left;
  }

  .under .contact_yoyaku dt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    margin-bottom: 15px;
  }

  .under .box_step1 {
    margin-top: 45px;
  }

  .under .box_step1:not(:last-child)::before {
    bottom: -31px;
    border-width: 15px 20px 15px;
  }

  .under .ttl_step1 {
    font-size: 18px;
  }

  .under .s_t_ttl {
    padding: 8px;
  }

  .under .step1_number {
    width: 44px;
  }

  .under .txt_step {
    padding: 20px;
  }
}

@media only screen and (max-width: 425px) {
  .under .contact_yoyaku dd {
    font-size: 11px;

  }
}

@media only screen and (max-width: 360px) {
  .xdsoft_datetimepicker {
    left: 6px !important;
  }
}

@media only screen and (max-width: 768px) {

  /*----------interview----------*/
  .page-interview h4 .number {
    font-size: 16px;
  }

  .page-interview .sec-content:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .page-interview .key {
    background-position: right 12% center;
  }

  .page-interview .interview_box01 {
    padding: 0 0 50px;
  }

  .page-interview .sec-interview {
    padding: 50px 0;
  }

  .page-interview .sec-interview.sec-last {
    padding-bottom: 0;
  }

  .page-interview .interview_box:not(:last-of-type) {
    margin-bottom: 40px;
  }

  .page-interview .interview_box.sec-right .col_infor {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .page-interview .interview_box.sec-right .col_img {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .page-interview .interview_box .col_infor {
    width: 100%;
    max-width: none;
    margin-bottom: 30px;
  }

  .page-interview .interview_box .col_infor .ttl {
    width: 90px;
    font-size: 18px;
  }

  .page-interview .interview_box .col_img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 0;
  }

  .page-interview .interview_box .col_img figure::before {
    border-width: 30px 30px 0 0;
  }

  .page-interview .interview_box .col_img figure::after {
    border-width: 0 0 30px 30px;
  }

  .page-interview .interview_bg {
    height: 200px;
  }

  .page-interview .inter_ttl_bnr {
    font-size: 19px;
    letter-spacing: 0.1em;
  }

  .page-interview .interview_bg03 {
    background-position: left 18% center;
  }
}

@media only screen and (max-width: 375px) {
  .under .imgBox.colImg .text {
    font-size: 13px;
  }

  .under .imgBox.colImg2 .item,
  .under .imgBox.colImg3 .item {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .under .clinic_tbl01 th {
    width: auto;
    text-align: left;
  }

  .under .teeth_box .secH4 {
    width: 100%;
  }
}

@media only screen and (max-width: 425px) {

  .under .access_box_img01 .block:nth-child(even) .big,
  .under .access_box_img02 .block:nth-child(even) .big {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .under .access_box_img01 .block .big,
  .under .access_box_img01 .block .small,
  .under .access_box_img02 .block .big,
  .under .access_box_img02 .block .small {
    width: 100%;
  }
}

/*sp*/
@media only screen and (max-width:768px) {
  footer .copyright p {
    padding: 0;
    margin: 0;
  }

  footer .copyright {
    padding: 15px 10px;
    margin-top: 7px;
  }

  footer .copyright .textwidget p {
    word-break: break-word;
    font-size: 10px;
  }

  footer .copyright p.copy_img {
    max-width: 160px;
  }
}

@media only screen and (max-width: 480px) {
  .flex_b {
    display: block;
  }

  footer .copyright p.copy_img {
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    margin-right: auto;
    margin-left: auto;
    display: table;
  }

  footer .copyright p.copy_img:after {
    width: 90%;
    height: 1px;
    top: auto;
    left: 0;
  }
}

/* END Under
********************************/
/*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/