@charset "utf-8";
/* 
:root {
    --c-01: #f3a5ab;
    --c-02: #ff747e;
    --c-03: linear-gradient(310deg, #fbd9d9,#fff8f8,#dcb1b1);
    --c-04: linear-gradient(310deg, #dcb1b1,#e2959a,#ffe0e3);
    --c-05: #c6a878;
    --c-06: #001e4c;
    --c-07: #f1eee6;
    --c-08: #ff7882;
    --c-09: linear-gradient(310deg, #dcb1b1,#fff8f8,#dcb1b1);
    --c-10: rgba(142,8,53,30%);
    --c-11: #f98a93;
    --c-12: #ffbabf;
    --c-13: #ffdadd;
    --c-14: #f87e88;
    --c-15: #ffcece;
} */

:root {
    --c-00: #736357;
    --c-01: #a68b62;
    --c-02: #7b5022;
    --c-03: linear-gradient(310deg, #e3dccd,#fffdf8,#cfbe9b);
    --c-04: linear-gradient(310deg, #a68b62, #a58771, #c9b4a4);
    --c-05: #c6a878;
    --c-06: #001e4c;
    --c-07: #f1eee6;
    --c-08: #ff7882;
    --c-09: linear-gradient(310deg, #e3dccd,#fffdf8,#cfbe9b);
    --c-10: rgba(142,83,8,30%);
    --c-11: #6d3d20;
    --c-12: #ab8243;
    --c-13: #c5ad8f;
    --c-14: #735a35;
    --c-15: #c7baa0;
}

html {
    background: #efe8d9;
} 

.overlay #main {
  -webkit-filter: blur(4px);
          filter: blur(4px);
}

.overlay:after {
  z-index: 4;
}

@media (max-width: 599px) {
  .inner {
    width: 92%;  
  }
}

.beige {
  color: var(--c-05);
}

.blue {
  color: var(--c-06);
}

.white {
  color: #fff;
}

.pink {
  color: var(--c-00);
}

.bg_beige {
  background-color: var(--c-05);
}

.bg_lightbeige {
  background-color: var(--c-07);
}

.bg_blue {
  background-color: var(--c-06);
}

.bg_white {
  background-color: var(--c-07);
}

.bg_pink {
  background-color: var(--c-01);
}

.bg_gray_c_pink {
    background-color: #eee;
    font-size: 14px;
    color: var(--c-08);
}

.bg_gray_c_pink {
    background-color: initial;
    font-size: 14px;
    color: #000;
} 

/*余白*/
.area {
  padding: 80px 0;
}

.area_top {
  padding: 80px 0 0;
}

.link_btn_area {
  padding: 40px 0 20px;
}

@media (max-width: 1024px) {
  .area {
    padding: 60px 0;
  }
  
  .area_top {
    padding: 60px 0 0;
  }

  .link_btn_area {
    padding: 20px 0 10px;
  }
}

/*背景に画像*/
.back_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*画像上にピンクのフィルター*/
.img_filter_p {
  position: relative;
}

.img_filter_p:after {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--c-10);
  position: absolute;
  top: 0;
  left: 0;
}

/*PC・スマホ時非表示*/
.sp_only {
  display: none; 
}

@media (max-width: 599px) {
  .pc_only {
    display: none; 
  } 
  
  .sp_only {
     display: block; 
  }
}

/*PC・スマホ時に改行*/
.br_pc {
  display: block;
}

@media (max-width: 1024px) {
  .br_pc {
    display: inline;  
  }
  
  .br_tb {
    display: block;
  }
}

@media (max-width: 599px) {
  .br_sp {
    display: block;
  }
  
  .br_tb {
    display: inline;
  }
}


@media (max-width: 599px) {
  .pic {
    width: 100%;
  }
}

/*ピンク背景にグラデーション*/
/*薄いピンクバージョン*/
.back_gradation_pink01 {
    background: var(--c-09);
    background-size: 300% 300%;
    -webkit-animation: backgradation 8s ease infinite;
            animation: backgradation 8s ease infinite;
}

/*濃いピンクバージョン*/
.back_gradation_pink02 {
  width: 100%;
  background: var(--c-04);
    background-size: 300% 300%;
    -webkit-animation: backgradation 8s ease infinite;
            animation: backgradation 8s ease infinite;
}

@-webkit-keyframes backgradation{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes backgradation{
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/*エフェクト（js+css使用）*/
.fead-up.mv {
  opacity: 1;
  -webkit-transition: opacity 1s transform 2s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: opacity 1s transform 2s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.fead-left.mv {
  opacity: 1;
  -webkit-transition: opacity 1s transform 2s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: opacity 1s transform 2s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.fead-right.mv {
  opacity: 1;
  -webkit-transition: opacity 1s transform 2s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: opacity 1s transform 2s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/*追加分*/
.fadetext span {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.fadetext span.appeartext {
  opacity: 1;
}

/* テキストを1文字ずつ出現させるためのCSS */
.fadetext span{opacity: 0; -webkit-transform: translateY(50px); transform: translateY(50px);}
.fadetext.appeartext span{ -webkit-animation:text_anime_on 1s ease-out forwards; animation:text_anime_on 1s ease-out forwards; }
@-webkit-keyframes text_anime_on {
  0% {
    opacity:0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity:1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes text_anime_on {
  0% {
    opacity:0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity:1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*タイトル*/
.heading1 {
  font-size: 40px;
  line-height: 180%;
  margin-bottom: 3vw;
  letter-spacing: 5px;
color: var(--c-00);
  text-align: center;
}

.heading1.heading1_f {
  color: #fff;
}

@media (max-width: 1024px) {
  .heading1 {
    font-size: 30px;
    letter-spacing: 2px;
  }
}

@media (max-width: 599px) {
  .heading1 {
    font-size: 24px;
    letter-spacing: 2px;
  }
}

.heading2 {
  border-left: 7px solid var(--c-01);
  color: var(--c-01);
  font-size: 22px;
  padding-left: 8px;
  margin-bottom: 35px;
}

@media (max-width: 599px) {
  .heading2 {
    font-size: 18px;
    margin-bottom: 18px;
  }
}

.heading3 {
  color: var(--c-01);
  font-size: 26px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--c-01);
  margin-bottom: 35px;
}

@media (max-width: 599px) {
  .heading3 {
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 10px;
  }
}

.sp_on {
  display: none;
}

@media (max-width: 599px) {
  .sp_on {
    display: block;
  }
}

.sp_no {
  display: block;
}

@media (max-width: 599px) {
  .sp_no {
    display: none;
  }
}

.txt {
  line-height: 200%;
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
/**
アスペクト比固定
*/
/*基本アスペクト
（下に続く比率クラスと合わせて使用）*/
.aspect {
  position: relative;
  display: block;
  overflow: hidden;
}
.aspect:before {
  display: block;
  content: '';
}
.aspect img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*IE対策*/
  font-family: 'object-fit cover object-position 50% 50%';
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
/*比率15％*/
.aspect.-ratio15:before {
  padding-top: 15%;
}
/*比率20％*/
.aspect.-ratio20:before {
  padding-top: 20%;
}
/*比率30％*/
.aspect.-ratio30:before {
  padding-top: 30%;
}
/*比率35％*/
.aspect.-ratio35:before {
  padding-top: 35%;
}
/*比率40％*/
.aspect.-ratio40:before {
  padding-top: 40%;
}
/*比率45％*/
.aspect.-ratio45:before {
  padding-top: 45%;
}
/*比率50％*/
.aspect.-ratio50:before {
  padding-top: 50%;
}
/*比率55％*/
.aspect.-ratio55:before {
  padding-top: 55%;
}
/*比率65％*/
.aspect.-ratio65:before {
  padding-top: 65%;
}
/*比率70％*/
.aspect.-ratio70:before {
  padding-top: 70%;
}
/*比率75％*/
.aspect.-ratio75:before {
  padding-top: 75%;
}
/*比率80％*/
.aspect.-ratio80:before {
  padding-top: 80%;
}
/*比率100％*/
.aspect.-ratio100:before {
  padding-top: 100%;
}
/*比率120％*/
.aspect.-ratio120:before {
  padding-top: 120%;
}
.buttonBox {
  position: relative;
}
.buttonBox .border {
  position: absolute;
  background: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.buttonBox a >.border:nth-of-type(2) {
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--c-06);
}
.buttonBox a >.border:nth-of-type(3) {
  top: 0;
  right: 0;
  width: 0px;
  height: 0;
  border-right: 1px solid var(--c-06);
}
.buttonBox a >.border:nth-of-type(4) {
  bottom: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border-top: 1px solid var(--c-06);
}
.buttonBox a >.border:nth-of-type(5) {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
  border-left: 1px solid var(--c-06);
}
.buttonBox a:hover {
  opacity: 1;
}
.buttonBox a:hover >.border:nth-of-type(2) {
  width: 100%;
}
.buttonBox a:hover >.border:nth-of-type(3) {
  height: 100%;
}
.buttonBox a:hover >.border:nth-of-type(4) {
  width: 100%;
}
.buttonBox a:hover >.border:nth-of-type(5) {
  height: 100%;
}
.buttonBox1 {
  position: relative;
  overflow: hidden;
}

/* .buttonBox1:before {
  content: "";
  display: block;
  width: 300px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  position: absolute;
  top: 0px;
  left: -300px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
} */

.buttonBox1 a:hover {
  opacity: 1;
  color: #fff;
}

.buttonBox1:hover:before {
  margin-left: 300%;
}

/*共通要素*/
h1 {
  padding-left: 20px;
  font-size: 12px;
  color: #a0a0a0;
  overflow-y: scroll;
  -ms-overflow-style: none;    /* IE, Edge 対応 */
  scrollbar-width: none;       /* Firefox 対応 */
}

h1::-webkit-scrollbar {  /* Chrome, Safari 対応 */
  display:none;
}

@media (max-width: 1024px) {
  h1 {
    width: 100%;
    background: rgba(255,255,255,0.9);
  }
}

@media (max-width: 599px) {
  h1 {
    font-size: 10px;
    line-height: 1.6;
    padding: 2px 5px; 
  }  
}

/*ボタン*/
.defo_btn01 {
  display: inline-block;
}

.defo_btn01.ori {
display: block;
    width: 100%;
    max-width: 350px;
    margin: 30px auto;
}

.defo_btn01 a {
  max-width: 80%;
  width: 300px;
  padding: 20px 0px;
  display: block;
  color: #fff;
  position: relative;
  letter-spacing: 4px;
  border: 1px solid;
}

.defo_btn01.ori a{
   max-width: 100%;
  width: 100%;
}

.defo_btn01 a:hover {
  color: var(--c-01);
}

.defo_btn01 a:before {
  content: "";
  width: 100%;
  height: 0;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.defo_btn01 a:hover:before {
  height: 100%;
}

.defo_btn01 a:hover span {
  color: var(--c-01);
  display: block;
  position: relative;
  z-index: 3;
}

.defo_btn01 a span:before {
  width: 10px;
  height: 3px;
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 22px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.defo_btn01 span:after {
  width: 22px;
  height: 1px;
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 599px) {
  .defo_btn01 a {
    margin-right: auto;
    margin-left: auto;
    padding: 10px 30px 10px 40px;
  }
}

/*テーブル（一般歯科）*/
.table_content table {
  width: 100%;
}

.table_content table th, .table_content table td {
  padding: 10px 15px;
  line-height: 2.4;
  vertical-align: middle;
  text-align: center;
  border: 2px solid #e4e4e4;
  background: #f5f5f5;
}

.table_content table .img_box {
  width: 100px;
  height: 100px;
  margin: auto;
  margin-bottom: 10px;
}

.table_content table .img_box .img {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px;
}

.table_content table .img_box .img img {
    width: auto;
    max-width: 100%;
    height: initial !important;
    max-height: 100%;
}

.table_content table .text_box {
  font-size: 20px;
}

.table_content table td {
  font-size: 15px;
}

.table_content table tr {
  font-size: 20px;
}

.table_content table tr:first-of-type th:nth-of-type(1) {
  color: #fff;
  background: var(--c-12);
}

.table_content table tr:first-of-type th:nth-of-type(2) {
  color: #fff;
  background: var(--c-13);
}

.table_content table tr:first-of-type th:nth-of-type(3) {
  color: #fff;
  background: var(--c-14);
}

@media (max-width: 1024px) {
  .sp_scroll {
    overflow: auto;
    white-space: nowrap;
  }
  
  .table_content .sp_scroll {
    overflow: auto;
    white-space: nowrap;
  }

  .table_content .sp_scroll::-webkit-scrollbar {　　/*tableにスクロールバーを追加*/
    height: 5px;
  }

  .table_content .sp_scroll::-webkit-scrollbar-track {　　/*tableにスクロールバーを追加*/
    background: #F1F1F1;
  }

  .table_content .sp_scroll::-webkit-scrollbar-thumb {　　/*tableにスクロールバーを追加*/
    background: #BCBCBC;
  }
  
  .table_content table th, .table_content table td {
    min-width: 440px;
    white-space: normal;
  }
  
  .table_content table tr th:nth-of-type(1) {
    min-width: inherit;
  }
  
  .table_content .sp_scroll:before {
    content: '右にスクロール可能→';
    display: inline-block;
    font-size: 12px;
    text-align: left;
    line-height: 1.2;
    color: #ffffff;
    padding: 10px 5px;
    background-color: var(--c-11);
  }
}

/* header*/
.header-left {
  width: 20%;
  max-width: 420px;
  display: none;
}

#header.fixed .header-left {
  background: none;
}

.header-left .subtit {
  background-color: #00173a;
  display: block;
  padding: 15px 0;
}

@media (max-width: 1024px) {
  .header-left {
    width: 100%;
    max-width: 100%;
    background: none;
    display: block;
  }
}

@media (max-width: 599px) {
  .header-left .subtit {
    font-size: 10px;
    display: none;
  }
}

h1 a {
  display: block;
  padding: 40px 20px;
}

.lower_page h1 a {
  padding: 40px 20px;
}

h1 a img {
  display: block;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  h1 a {
    max-width: 240px;
    width: 80%;
    padding: 15px 10px;
  }
  
  .lower_page h1 a {
    padding: 15px 10px;
  }
}

@media (max-width: 599px) {
  h1 a {
    max-width: 180px;
    padding: 10px 10px;
  }
  
  .header-right {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

/*.mainimg_logo*/
.mainimg_logo a {
  max-width: 350px;
  display: block;
  padding: 0 20px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .mainimg_logo {
    padding: 10px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    background: rgb(243 165 171/70%);
  }
  
  .mainimg_logo a {
    max-width: 300px;
  }
}


@media (max-width: 599px) {
  .mainimg_logo {
    background: rgb(243 165 171/70%);
  }
  
  .mainimg_logo a {
    max-width: 220px;
  }
}

/*#gnav*/
#gnav {
  width: 60%;
  margin-right: 0;
  margin-left: auto;
}

#gnav ul {
  text-align: center;
  padding: 40px 0;
}

#gnav ul.accordion-inner {
  padding-right: 28px;
}

#gnav ul .gnav_logo {
  display: none !important;  
}

#gnav ul .gnav_logo.mainimg_logo {
  display: inline-block !important;
}

#header.fixed ul .gnav_logo {
  display: inline-block !important;
}

#header.fixed .mainimg_logo {
  display: none !important;
}

#header.fixed #gnav {
  width: 100%;
}

#header.fixed #gnav .accordion-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#header.fixed #gnav .header-left {
  display: block;
}

#gnav ul .gnav_logo a {
  max-width: 350px;
}

#gnav li {
  display: inline-block !important;
}

#gnav li a {
  display: block;
  padding: 0 20px;
  text-align: center;
  font-size: 16px;
}

#gnav li a .min {
  color: var(--c-01);
  font-size: 12px;
  text-align: center;
  display: block;
}

#gnav li a .ja {
  position: relative;
  display: inline-block;
}

#gnav li a .ja:after {
  content: "";
  bottom: -1px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--c-01);
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

#gnav li a:hover {
  opacity: 1;
}

#gnav li:hover > a > .ja:after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

#gnav li.hun_nav {
  display: none !important;
}

#header.fixed {
  max-width: 100%;
  width: 100%;
  background: rgba(255,255,255,0.8);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
}

#header.fixed #gnav .accordion-body {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;  
}

#gnav .dropmenu {
  padding: 0 20px;
  text-align: center;
  font-size: 14px;
  position: relative;
}

#gnav .dropmenu .min {
  color: var(--c-01);
  font-size: 12px;
  text-align: center;
  display: block;
}

#gnav .dropmenu ul {
  padding-top: 10px;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
}

#gnav .dropmenu ul li {
  overflow: hidden;
  width: 100%;
  height: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

#gnav .dropmenu ul li a {
  font-size: 12px !important;
  padding: 10px !important;
  line-height: 140% !important;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
}

#gnav .dropmenu ul li a .min {
  line-height: 200% !important;
  padding-top: 3px;
}

#gnav .dropmenu:hover ul {
  min-width: 130%;
  margin-left: -15%;
  padding: 20px 0 0 !important;
  background: #fff;
  visibility: visible;
}

#gnav .dropmenu:hover li {
  height: 40px;
  overflow: visible;
  border-top: 1px solid #ddd;
}

#gnav .dropmenu:hover li a {
  opacity: 1;
}

@media (max-width: 1024px) {
  #gnav {
    padding: 0;
  }
  
  #gnav .accordion-inner {
    height: 80vh;
    padding-bottom: 100px;
    display: block;
    overflow: auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  #gnav .accordion-body {
    max-width: 370px;
  }
  
  #gnav ul .gnav_logo {
    text-align: center;
    display: block !important;
  }
  
  #gnav ul .gnav_logo.mainimg_logo {
    display: none !important;
  }
  
  #gnav li.hun_nav {
    display: inline-block !important;
  }
  
  #gnav li a {
    display: inline-block;
    padding: 10px 20px;
  }
  
  #gnav li a .min {
    display: none;
  }
  
  #gnav li a .ja:after {
    display: none;
  }
  
  #gnav .dropmenu {
    text-align: left;
  }
  
  #gnav .dropmenu:hover li {
    height: auto;
    overflow: inherit;
    border-top: none;
  }
  
  #gnav .dropmenu ul {
    padding: 0;
    position: static;
    visibility: visible;
  }
  
  #gnav .dropmenu ul li {
    height: auto;
    overflow: inherit;
  }
  
  #gnav .dropmenu ul li a {
    padding: 10px 0 !important;
    font-size: 14px !important;
  }
  
  #gnav .dropmenu:hover ul {
    min-width: inherit;
    background: inherit;
    max-width: inherit;
    margin-left: 0;
    padding: 0 !important;
  }
  
  #gnav .dropmenu .sp_none_title,
  #gnav .dropmenu .min {
    display: none;
  }
}

@media (max-width: 599px) {
  #gnav {
    margin-top: 0;
  }
  
  #gnav .accordion-body {
    max-width: 100%;
    width: 100%;
  }
}

/* メインビジュアル */
.mainimg {
    overflow: hidden;
}

.mainimg:before {
  content: "";
  width: 20%;
  height: 150px;
background: var(--c-01);
  position: absolute;
  top: 0;
  right: 100%;
}

.mainimg img {
    width: 100%;
}

.mainimg .uk-slidenav-position {
    overflow: hidden;
    position: relative;
}

.mainimg .uk-slidenav-position:after {
    content: "";
    display: block;
    padding-top: 50%;
}

.mainimg .uk-slideshow {
    width: 100%;
    height: 100% !important;
    position: absolute;
    top: 0;
}

.mainimg .uk-slideshow li {
    height: 100% !important;
}

.mainimg .uk-slideshow .uk-flex {
    height: 100%;
}

.mainimg .uk-slideshow img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;

/*IE対策*/
    font-family: "object-fit: cover; object-position: 50% 50%;";
}

@media (max-width: 599px) {
  .mainimg .uk-slidenav-position:after {
    padding-top: 95vh;
  }
}


/*.mainimg*/
.mainimg {
  width: calc(100% - 120px);
  margin-left: auto;
  margin-right: 0;
  overflow: visible;
}
.mainimg .slide {
  position: relative;
}
.mainimg .slide .goldmark {
  position: absolute;
  top: 5vw;
  left: 5vw;
  width: 16vw;
  max-width: 245px;
}
.mainimg .slide .main-copy {
  height: 95%;
  padding: 30px 0;
  font-size: 2vw;
  letter-spacing: 10px;
color: var(--c-00);
  line-height: 200%;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
  position: absolute;
  top: 50%;
  right: 15%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-shadow: 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white;
}

@media (max-width: 1024px) {
  .mainimg {
    margin-top: 0px;
    width: 100%;
  }
  
  .mainimg .slide .main-copy {
    height: 80%;
    font-size: 23px;
    right: 5%;
    padding: 10px 0;
  }
}

@media (max-width: 599px) {
  .mainimg .slide .main-copy {
    font-size: 26px;
  }
}

/*.sidenav*/
.sidenav {
  position: fixed;
  bottom: 20%;
  right: 0;
  z-index: 3;
}

.sidenav li {
  margin-bottom: 5px;
}

.sidenav li a {
  display: block;
  padding: 40px 25px;
  background: var(--c-01);
  position: relative;
  color: #fff;
  font-size: 16px;
  text-align: center;
  letter-spacing: 2px;
  border: 1px solid var(--c-01);
  width: 76px;
}

.sidenav li a:hover {
  background: #fff;
  color: var(--c-01);
}

.sidenav li a .contact_text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
}

/* .sidenav li a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent var(--c-07) transparent;
} */

@media (max-width: 1024px) {
  .sidenav ul {
    display: none;
  }
}

.sidenav .contact a {
  padding-top: 65px;
}
/* 
.sidenav .contact a:before {
  content: "";
  display: block;
  position: absolute;
  background: url(/import/tenant_1/160.16.115.28/html/images/01index/img003.png) center center no-repeat;
  background-size: contain;
  width: 22px;
  height: 15px;
  top: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
} */

@media (max-width: 599px) {
  .sidenav {
    width: 100%;
    bottom: 0;
    right: 0;
  }
  
  .sidenav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
  
  .sidenav li {
    width: 50%;
    margin-bottom: 0;
  }
  
  .sidenav li a {
    text-align: center;
    padding: 20px 10px;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    width: auto;
  }
  .sidenav li a .contact_text {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }

  
  .sidenav .contact a {
    padding-top: 20px;
  }
  
  .sidenav li:nth-of-type(1) a {
    border-right: 1px solid #fff;
  }
}

/*.scrollnav*/
.scrollnav {
  position: absolute;
  left: -80px;
  display: block;
  width: 30px;
  height: 320px;
  top: auto;
  bottom: 28px;
}
.scrollnav a {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: relative;
  padding-top: 226px;
}
.scrollnav a:after {
  content: "";
  display: block;
  position: absolute;
  background: var(--c-01);
  background-size: contain;
  width: 1px;
  height: 184px;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .scrollnav {
    height: 180px;
    left: -100px;
    bottom: -46px;
  }
  .scrollnav a {
    padding-top: 90px;
  }
  .scrollnav a:after {
    height: 80px;
  }
}
@media (max-width: 599px) {
  .scrollnav {
    display: none;
  }
}
/*home-concept*/
.home-concept {
  padding: 80px 0 80px;
  position: relative;
}

.home-concept .right .pic {
  width: 150%;
  margin-right: -50%;
}

.home-concept .left {
  position: relative;
  z-index: 1;
}

.home-concept .left .txt {
  width: calc(100% - 80px);
  background-color: #fff;
  padding: 40px;
  font-size: 14px;
  line-height: 270%;
  margin-top: 250px;
}

.home-concept .left h2 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 50%;
  font-size: 40px;
color: var(--c-00);
  position: absolute !important;
  right: -50px;
  top: 0;
  z-index: 1;
}

.yamashina,
h2 .min{
      color: #a58771;
}

.home-concept .left h2 .min {
  font-size: 14px;
}

.home-concept .left h2 .ja {
  line-height: 140%;
  letter-spacing: 5px;
}

@media (max-width: 1024px) {
  .home-concept .left h2 {
    font-size: 35px;
    line-height: 100%;
    right: -10px;
    top: -400px;
  }
  
  .home-concept .left .txt {
    width: calc(100% - 100px);
    margin-top: 20px;
    padding: 0px 40px;
  }
  
  .home-concept .right .pic:before {
    content: "";
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, color-stop(20%, #fff), color-stop(30%, #fff), color-stop(45%, rgba(255 255 255/80%)), color-stop(70%, rgba(255 255 255/0%)) );
    background: linear-gradient(to left, #fff 20%, #fff 30%, rgba(255 255 255/80%) 45%, rgba(255 255 255/0%) 70% );
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
@media (max-width: 599px) {
  .home-concept {
    padding: 60px 0;
  }
  
  .home-concept .right {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .home-concept .right .pic {
    width: 100%;
    margin-right: 0;
  }
  
  .home-concept .left h2 {
    font-size: 22px;
    position: static !important;
    background: rgba(255,255,255,0.5);
    padding: 10px 5px 0 10px;
    -webkit-writing-mode: inherit;
        -ms-writing-mode: inherit;
            writing-mode: inherit;
  }
  
  .home-concept .left h2 .min {
    line-height: 190%;
  }
  
  .home-concept .left h2 .ja {
    line-height: 130%;
    display: block;
    padding-top: 5px;
  }
  
  .home-concept .left .txt {
    width: 100%;
    font-size: 14px;
    line-height: 240%;
    margin-top: 0;
    background: rgba(255,255,255,0.5);
    padding: 10px 10px;
  }
}

/*home-reason*/
.home-reason {
  padding: 80px 0 80px;
}

.home-reason h2 {
  font-size: 40px;
  line-height: 180%;
  margin-bottom: 3vw;
  letter-spacing: 5px;
}

.home-reason h2 .big {
  font-size: 90px;
  color: var(--c-05);
}

.home-reason h2 .tu {
  color: var(--c-05);
} 

.point_list li {
  margin-bottom: 0%;
}

/* .point_list li .pic {
  border-bottom: 3px var(--c-05) solid;
} */

.point_list li .tit {
  padding: 30px 0;
  font-size: 24px;
  line-height: 150%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media (max-width: 1024px) {
  .home-reason h2 {
    font-size: 30px;
  }

  .home-reason h2 .big {
    font-size: 60px;
    color: var(--c-05);
  }

  .point_list li {
    width: 100%;
  }
  
  .point_list li+li {
    margin-top: 80px;
  }
}

@media (max-width: 599px) {
  .home-reason {
    padding: 50px 0 60px;
  }
  
  .home-reason h2 {
    font-size: 20px;
    letter-spacing: 3px;
  }
  
  .home-reason h2 .big {
    font-size: 45px;
  }
  
  .point_list li {
    margin: 0 auto;
  }
  
  .point_list li+li {
    margin-top: 40px;
  }
  
  .point_list li .pic {
    width: 100%;
  }
  
  .point_list li .tit {
    padding: 20px 0;
    font-size: 18px;
  }
}

/*--home-commit--*/
.home-commit {
  padding: 80px 0 20px;
}

.home-commit .heading1 {
  margin-bottom: 40px;
}

.home-commit .txt {
  font-size: 14px;
  margin-bottom: 60px;
}

.commit_list .box ul {
  border: solid 1px var(--c-06);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 20px 60px;
}

.commit_list .box .btn {
  width: 80%;
  margin: -30px auto 0;
}

.commit_list .box .btn a {
  padding: 15px 0px;
  font-size: 14px;
  display: block;
  cursor: pointer;
  position: relative;
}

.commit_list .box .btn a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid var(--c-01);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.commit_list .box .btn a:after {
  content: "\f138";
  font-family: fontAwesome;
  display: block;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}

.commit_list .box .btn a:hover {
  color: var(--c-01);
}

.commit_list .box .btn a:hover:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.commit_list .box li {
  position: relative;
}

.commit_list .box li .text_box {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

/* .commit_list .box li:after {
  content: "";
  display: block;
  position: absolute;
  background: url(/import/tenant_1/160.16.115.28/html/images/01index/img014.png) center center no-repeat;
  background-size: contain;
  width: 26px;
  height: 17px;
  top: 2px;
  left: 0px;
} */

@media (max-width: 1024px) {
  .home-commit {
    margin-bottom: 40px;
  }
}

@media (max-width: 599px) {
  .home-commit {
    padding: 60px 0 20px;
    margin-bottom: 0;
  }
  
  .home-commit .heading1 {
    margin-bottom: 20px;
    line-height: 150%;
  }
  
  .home-commit .txt {
    font-size: 14px;
    text-align: left;
    margin: 0 auto;
    width: 90%;
    margin-bottom: 30px;
    line-height: 230%;
  }
  
  .commit_list .box ul {
    padding: 30px 10% 50px;
  }
  
  .commit_list .box .btn a {
    padding: 12px 0;
    font-size: 14px;
  }
  
  .commit_list .box .btn {
    margin-top: -38px;
  }
  
  .commit_list .box {
    margin-bottom: 30px;
  }
}

/*--home-menu--*/
.home-menu {
  padding: 86px 0 56px;
}
.home-menu li {
  margin-bottom: 30px;
}
.home-menu li a {
  padding: 35px 0;
  text-align: center;
  display: block;
  background: #fff;
  height: 100%;
}
.home-menu li a .icon {
  margin-bottom: 25px;
  display: block;
}
@media (max-width: 599px) {
  .home-menu {
    padding: 50px 0 20px;
  }
  .home-menu li a {
    padding: 24px 0;
  }
}
/*--home-greet--*/
.home-greet {
  padding: 90px 0 80px;
}
.home-greet h3 {
  margin-top: 20px;
  font-size: 34px;
  line-height: 180%;
  margin-bottom: 30px;
}
.home-greet .txt {
  line-height: 220%;
  margin-bottom: 35px;
}

.home-greet .txt .name_box {
  width: 40%;
  margin-left: 60px;
  float: right;
}

.home-greet .b_btn {
  width: 80%;
  max-width: 250px;
  letter-spacing: 2px;
}
.home-greet .b_btn a {
  padding: 20px 0;
  position: relative;
  display: block;
  color: #fff;
}
.home-greet .b_btn a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 22px;
  height: 1px;
  background: #fff;
}
.home-greet .b_btn a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 22px;
  width: 10px;
  height: 3px;
  background: #fff;
}
.home-greet .right .tit {
  padding-top: 15px;
}
.home-greet .right .tit .min {
  padding-left: 15px;
}

@media (max-width: 599px) {
  .home-greet {
    padding: 50px 0 60px;
  }
  
  .home-greet h3 {
    font-size: 18px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  
  .home-greet .txt {
    font-size: 14px;
    margin: 0 auto;
    margin-bottom: 35px;
  }
  
  .home-greet .txt .name_box {
    width: 100%;
  }
  
  .home-greet .b_btn {
    margin: 0 auto;
  }
  
  .home-greet .right {
    margin-bottom: 10px;
  }
  
  .home-greet .flexb {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/*home-recruit*/
.home-recruit {
  padding: 80px 0;
}

/*--home-blognews--*/
.home-blognews {
  padding: 80px 0;
  background-color: #eee;
  background-image: url(/upload/tenant_1/1aa6dd68153dd8fcfc90816423fe2edd.png);
  background-size: cover;
}

.home-blognews .box {
  padding: 45px 35px;
  border-top: 3px var(--c-01) solid;
  background: #fff;
}

.home-blognews .h3_area {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.home-blognews h3 {
  padding: 0 80px;
  font-size: 28px;
}

.home-blognews .blog_btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}

.home-blognews .blog_btn a {
  display: block;
  padding-left: 20px;
  position: relative;
  text-decoration: underline;
}

.home-blognews .blog_btn a:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/upload/tenant_1/a21ec5192ae0a9a814873e07b42bf489.png) center center no-repeat;
  background-size: contain;
filter: brightness(0.5); 
}

.home-blognews li {
  padding-bottom: 20px;
  padding-top: 25px;
  border-bottom: 1px #ddd solid;
  margin-bottom: 0px;
}

.home-blognews li:last-of-type {
  border-bottom: 0px;
}

.home-blognews li .day {
  letter-spacing: 2px;
  width: 25%;
}

.home-blognews li .tit {
  width: 70%;
}

.home-blognews li .tit a {
  font-size: 14px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .home-blognews {
    padding-bottom: 40px;
  }
  
  .home-blognews h3 {
    padding: 0 100px 0 0;
    font-size: 22px;
  }
  
  .home-blognews .box {
    width: 46%;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 25px 15px;
  }
  
  .home-blognews li {
    padding: 10px 0 5px; 
  }
  
  .home-blognews li .day {
    width: 100%;
  }
  
  .home-blognews li .tit {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .home-blognews {
    padding: 60px 0 20px;
  }
  
  .home-blognews h3 {
    padding: 0;
    font-size: 24px;
  }
  
  .home-blognews .box {
    width: 100%;
  }
  
  .home-blognews .blog_btn {
    position: relative;
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    margin-top: 0px;
    text-align: center;
    right: auto;
    display: inline-block;
  }
  
  .home-blognews .h3_area {
    text-align: right;
    margin-bottom: 10px;
  }
  
  .home-blognews .box {
    width: 90%;
    padding: 30px 20px 15px;
  }
  
  .home-blognews li {
    padding-bottom: 12px;
    padding-top: 18px;
  }
  
  .home-blognews li .day {
    width: 100%;
  }
  
  .home-blognews li .tit {
    width: 100%;
  }
  
  .home-blognews li .tit a {
    font-size: 14px;
  }
}

/*--home-bnr--*/
.home-bnr {
  padding: 80px 0;
}
.home-bnr .doctor-bnr {
  display: inline-block;
}
.home-bnr .doctor-bnr a {
  display: block;
  text-align: center;
}
.home-bnr .doctor-bnr a .text_box {
  background: var(--c-01);
  padding: 10px;
  font-size: 20px;
  color: #fff;
}

.home-bnr .doctor-bnr a .text_box:after {
  content: "\f138";
  font-family: fontAwesome;
  display: inline-block;
  margin-left: 15px;
  margin-right: -15px;
}

@media (max-width: 599px) {
  .home-bnr {
    padding: 20px 0;
  }
  .home-bnr .inner {
    width: 75%;
  }
}

/*home-contact*/
.home-contact {
  padding: 80px 0;
}

.lower_page .home-contact {
  padding: 0 0 80px;
}

.home-contact .contact-cont {
  background: #f5f5f5;
  border: 1px solid #e4e4e4;
  padding: 30px;
}

.home-contact .contact-cont .contact-box {
  text-align: center;
}

.home-contact .contact-cont .contact-box .text-box {
  font-size: 20px;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
}

.home-contact .contact-cont .contact-box .tel {
  padding-left: 40px;
  font-size: 30px;
  display: inline-block;
  position: relative;
}

.home-contact .contact-cont .contact-box .tel:before {
  width: 25px;
  height: 25px;
  content: "\f095";
  font-family: fontAwesome;
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.home-contact .defo_btn01 a {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 599px) {
  .lower_page .home-contact {
    padding: 0 0 60px;
  }
}

/*--footer--*/
.footer-menu {
  padding: 70px 0 75px;
}

.footer-menu .left {
  width: 35%;
}

.footer-menu .left .logo {
  margin-bottom: 30px;
}

.footer-menu .left .logo a {
  max-width: 260px;
  width: 80%;
  display: block;
}

.footer-menu .left .tel a {
  color: #fff;
}

.footer-menu .left .address {
  line-height: 180%;
}

.footer-menu .left .time {
  margin-top: 40px;
}

.footer-menu .right {
  width: 55%;
  border-left: 1px #fff solid;
}

.footer-menu .right .tit {
  border: 1px var(--c-05) solid;
  padding: 0px 0;
  display: block;
  margin-bottom: 20px;
}

.footer-menu .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
}

.footer-menu .right li a {
  padding-bottom: 15px;
  padding-left: 15px;
  display: block;
  color: #fff;
  position: relative;
}

.footer-menu .right li a:before {
  display: inline-block;
  content: "\f054";
  font-family: fontAwesome;
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.footer-menu .right li:last-of-type a {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

/* .footer-menu .clinic {
  width: 33%;
} */

.footer-menu .menu {
  width: 62%;
}

.footer-menu .menu .left_ul {
  width: 60%;
}

.footer-menu .menu .right_ul {
  width: 35%;
}

.copy {
  padding: 30px 0;
  letter-spacing: 1px;
  font-size: 12px;
}

.footer-map:after {
  padding-top: 25%;
}

.totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 4;
}

.totop a {
  display: block;
  width: 55px;
  height: 55px;
  position: relative;
  background: #fff;
  border: 1px solid var(--c-06);
}

.totop a:after {
  content: "";
  display: block;
  width: 7px;
  height: 37px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(/import/tenant_1/160.16.115.28/html/images/01index/img030.png) center center no-repeat;
  background-size: contain;
}

@media (max-width: 1024px) {
  .footer-menu .left {
    width: 40%;
  }
}

@media (max-width: 599px) {
  footer {
    margin-bottom: 120px;
  }
  
  .footer-menu {
    padding: 50px 0;
  }
  
  .footer-menu .left {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  
  .footer-menu .left .logo a {
    max-width: 350px;
  }
  
  .footer-menu .right {
    width: 95%;
    border: none;
  }
  
  .footer-menu .right li a {
    padding-bottom: 12px;
    font-size: 13px;
  }
  
  .footer-menu .clinic {
    width: 100%;
  }
  
  .footer-menu .menu {
    width: 100%;
  }
  
  .footer-menu .menu .left_ul {
    width: 58%;
  }
  
  .footer-menu .menu .right_ul {
    width: 40%;
  }
  
  .footer-map:after {
    padding-top: 50%;
  }
  
  .copy {
    padding: 15px 0;
    font-size: 12px;
  }
  
  .totop {
    right: 5px;
    bottom: 70px;
  }
}

/*--under--*/
.under-header h1 a {
  padding-bottom: 40px;
}

.under-mainimg {
  width: 100%;
  position: relative;
  background: #fff;
}

.under-mainimg img {
  opacity: 0.4;
}

.under-mainimg h2 {
  font-size: 38px;
  text-align: center;
  letter-spacing: 4px;
  line-height: 120%;
  text-shadow: 0.2px 0.2px 0px #ffffff, -0.2px -0.2px 0px #f5f5f5;
  position: absolute !important;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.under-mainimg h2 .min {
  left: 200%;
}

@media (max-width: 1024px) {
  .under-mainimg h2 {
    font-size: 26px;
    top: 60%;
  }
}

@media (max-width: 599px) {
  .under-mainimg {
    margin-left: 0;
    margin-top: 0;
  }
  .under-mainimg .pic {
    width: 100%;
  }
  .under-mainimg .header-right {
    display: none;
  }
  .under-mainimg h2 {
    font-size: 24px;
    line-height: 120%;
  }
  .under-mainimg h2 .min {
    font-size: 14px;
  }
  .under-header h1 a {
    padding-bottom: 30px;
  }
}
/*---pankuzu--*/
.pankuzu .inner {
  padding: 40px 0;
}

.pankuzu li {
  position: relative;
  display: inline-block !important;
  font-size: 14px;
  padding-left: 30px;
}

.pankuzu li:before {
  content: "\f054";
  color: var(--c-01);
  font-family: fontAwesome;
  display: block;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pankuzu li:first-of-type {
  padding-left: 0;
}

.pankuzu li:first-of-type:before {
  display: none;
}

@media (max-width: 1024px) {
  .pankuzu .inner {
    padding: 10px 0;
  }
}

@media (max-width: 599px) {
  .pankuzu li {
    font-size: 14px;
  }
  
  .pankuzu li:before {
    font-size: 12px;
  }
}

/*--about1--*/
.about1 h3 {
  font-size: 40px;
  line-height: 180%;
  margin-bottom: 3vw;
  letter-spacing: 5px;
}

.about1 h3 .big {
  font-size: 90px;
}

.about1 h3 .big .tu {
  margin-left: -20px;
}

@media (max-width: 1024px) {
  .about1 h3 {
    font-size: 30px;    
  }
  
  .about1 h3 .big {
    font-size: 60px;
  }
}

@media (max-width: 599px) {
  .about1 h3 {
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 15vw;
  }
  .about1 h3 .big {
    font-size: 45px;
  }
}
.about-link li {
  margin-bottom: 2%;
}

.about-link li a {
  display: block;
  padding: 0px 0;
  position: relative;
  font-size: 14px;
  height: 100%;
  min-height: 80px;
}

.about-link li a:hover {
    color: var(--c-01);
}

.about-link li a:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid var(--c-01);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.about-link li a:hover:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.about-link li a:after {
  content: "\f138";
  font-family: fontAwesome;
  display: block;
  position: absolute;
  top: 50%;
  right: 10%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.about-link li a .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

@media (max-width: 1024px) {
  .about-link li a {
    min-height: 50px;
  }
}

.about01_list li:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*career*/
.career_content .care{
      border-top: 2px solid var(--c-15);
    border-left: 2px solid var(--c-15);
}

.career_content .career_box {
  width: 100%;
  height: 100%;
  border-bottom: 2px solid var(--c-15);
  border-right: 2px solid var(--c-15);
  padding: 30px 40px;
  background: #fff;
}

.career_content .career_box .title-box {
  font-size: 22px;
  color: var(--c-01);
  text-align: center;
  margin-bottom: 20px;
}

.career_content .career_box .text_box li {
  letter-spacing: 1.4px;
}

.career_content .career_box .text_box li+li {
  margin-top: 10px;  
}

@media (max-width: 1024px) {
  .career_content .career_box {
    padding: 20px;
  }
  
  .career_content .career_box .title-box {
    margin-bottom: 10px;
  }
}


/*--cmn_list--*/
.cmn_list li+li {
  margin-top: 80px;
}

.cmn_list h4 {
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 0px;
  display: block;
  padding-left: 100px;
  position: relative;
  line-height: 140%;
}
.cmn_list .num {
  font-size: 65px;
  padding-right: 5px;
  position: absolute !important;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cmn_list .txt {
  font-size: 14px;
  line-height: 220%;
}
@media (max-width: 599px) {
  .cmn_list h4 {
    font-size: 20px;
    padding-left: 0;
  }
  .cmn_list h4 .num {
    font-size: 120px;
    z-index: -1;
    color: #eaeaea;
  }
}
/*--about2----*/
.about2 {
  padding-bottom: 0;
}
.about2 .pic {
  margin-bottom: 45px;
}
.about2 .name {
  text-align: right;
  margin-bottom: 40px;
}
.about2 .name .min {
  padding-left: 20px;
}
.about2 .txt {
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
  margin-top: -140px;
}
.about2 .txt:after {
  content: "";
  display: block;
  position: absolute;
  width: 200vw;
  height: 100%;
  background: var(--c-09);
  background-size: 200% 200%;
  -webkit-animation: backgradation 10s ease infinite;
          animation: backgradation 10s ease infinite;
  top: 0;
  left: -100%;
  z-index: -1;
}
/*--about3----*/
.about3 {
  padding: 80px 0 80px;
}

.about3 .heading1 {
  text-align: left;
  margin-bottom: 2vw;
}

/*--about4----*/
.about4 {
  padding: 80px 0 80px;
  position: relative;
}

.about4 .inner {
  position: relative;
  z-index: 1;
}
.about4 .heading1 {
  color: var(--c-01);
}
.about4 .num {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  padding-bottom: 20px;
}
.about4 .num:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 30px;
  height: 30px;
  background: url(/import/tenant_1/160.16.115.28/html/images/02about/img005.png) center center no-repeat;
  background-size: contain;
}
.about4 .txt {
  margin-top: 20px;
  font-size: 14px;
}
.about4 .box {
  background: #fff;
  border: 1px solid var(--c-06);
  padding: 24px 10px 32px;
  position: relative;
}
.about4 .box:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent var(--c-06) transparent;
}
.about4 .box:nth-of-type(even) {
  margin-top: 2%;
  margin-bottom: 4%;
}
.about4 .bkimg {
  height: 100%;
}
.about4 .bkimg img {
  opacity: 0.3;
  z-index: -1;
  height: 100%;
  font-family: 'object-fit cover object-position 50% 50%';
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

@media (max-width: 1024px) {
  .about2 {
    padding-top: 40px;
  }
  
  .about4 {
    padding: 80px 0 80px;
  }
  
  .about4 .bkimg img {
    opacity: 1;
  }
}

@media (max-width: 599px) {
  .about2 {
    padding: 60px 0;
  }
  
  .about3 {
    padding: 60px 0;  
  }
  
  .about4 ul {
    width: 80%;
    margin: 40px auto;
  }
}

/*--common-bnr1--*/
.commonbnr1 {
  padding: 70px 0 50px;
}
.commonbnr1 .box {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-06);
  margin-bottom: 20px;
}
.commonbnr1 .box a {
  display: block;
}
.commonbnr1 .box:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
  width: 24px;
  height: 24px;
  background: url(/import/tenant_1/160.16.115.28/html/images/02about/img000.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}
.commonbnr1 .box img {
  opacity: 0.3;
}
.commonbnr1 .tit {
  display: block;
  padding: 20px 24px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 599px) {
  .commonbnr1 ul {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

/*--guide1--*/
.guide1 {
  padding: 70px 0 80px;
}

.guide1 .heading1 {
  text-align: left;
}

.guide1 dt {
  width: 15%;
  font-size: 18px;
}

.guide1 dd {
  width: 83%;
  font-size: 18px;
}

.guide1 ul {
  max-width: 830px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.guide1 li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 27px;
  margin-bottom: 27px;
}

@media (max-width: 1024px) {
  .guide1 {
    padding: 100px 0;
  }
}

@media (max-width: 599px) {
  .guide1 {
    padding: 60px 0;
  }
  
  .guide1 dd {
    font-size: 14px;
    width: 100%;
  }
  
  .guide1 dt {
    font-size: 14px;
    width: 100%;
    padding-bottom: 8px;
  }
  
  .guide1 li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

/*--guide2--*/
.guide2 {
  padding: 70px 0 80px;
}
.guide2 .heading1 {
  color: #fff;
  text-align: left;
  margin-bottom: 2vw;
}
.guide2 table {
  background: #fff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #868686;
}
.guide2 th {
  padding: 20px 0;
  color: var(--c-05);
}
.guide2 td {
  width: 10%;
}
.guide2 th,
.guide2 td {
  font-size: 24px;
  text-align: center;
  border-bottom: 1px solid #868686;
}
.guide2 .comment {
  text-align: right;
  margin-top: 20px;
  display: block;
}
@media (max-width: 599px) {
  .guide2 {
    padding: 60px 0;
  }
  .guide2 th,
  .guide2 td {
    font-size: 14px;
  }
}
/*--guide3--*/
.guide3 {
  padding: 70px 0 80px;
}
.guide3 .heading1 {
  text-align: left;
  margin-bottom: 3vw;
}
.guide3 .txt {
  margin-bottom: 40px;
  font-size: 14px;
}
.guide3 dl {
  margin-bottom: 30px;
}
.guide3 dt {
  margin-bottom: 10px;
  font-size: 14px;
}
.guide3 dd {
  font-size: 14px;
}
.guide3 .map {
  margin-bottom: 70px;
}
@media (max-width: 1024px) {
  .guide3 {
    padding: 100px 0;
  }
}
@media (max-width: 599px) {
  .guide3 {
    padding: 50px 0;
  }
  
  .guide3 .map {
    margin-bottom: 10px;
  }
  
  .guide3 .txt {
    margin-bottom: 0;
  }
}
/*--guide4--*/
.guide4 .heading1 {
  margin-bottom: 5vw;
}
.dl_list1 li {
  width: 31%;
  margin-bottom: 8%;
}
.dl_list1 .pic {
  margin-bottom: 25px;
}
.dl_list1 .tit {
  font-size: 20px;
  margin-bottom: 20px;
}
.dl_list1 .txt {
  font-size: 14px;
}
@media (max-width: 1024px) {
  .guide4 {
    padding: 0px 0 100px;
  }
  
  .dl_list1 li {
    width: 48%;
  }
}

@media (max-width: 599px) {
  .guide4 .pic {
    width: 100%;
  }
  
  .dl_list1 .tit {
    font-size: 18px;
  }
  
  .dl_list1 li {
    width: 100%;
  }
  
  .dl_list1 .pic {
    width: 100%;
  }
  
}
.guide5 h3 {
  margin-bottom: 100px;
}

.guide5 li:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 599px) {
  .guide5 h3 {
    margin-bottom: 40px;
  }
}
.dl_list2 li {
  margin-bottom: 100px;
}
@media (max-width: 599px) {
  .dl_list2 .pic {
    margin-bottom: 20px;
    width: 100%;
  }
  .dl_list2 li {
    margin-bottom: 50px;
  }
}
/*guide6*/
.guide6 {
  padding: 60px 0;
}
.guide6 .heading1 {
  margin-bottom: 80px;
}
.guide6 .h1_undertxt {
  margin-bottom: 80px;
}
@media (max-width: 599px) {
  .guide6 {
    padding: 30px 0 50px;
  }
  .guide6 .heading1 {
    margin-bottom: 40px;
  }
  .guide6 .h1_undertxt {
    margin-bottom: 40px;
  }
}
/*feature1*/
.feature1 {
  padding: 70px 0;
  background: #f7f6f3;
  position: relative;
}
.feature1:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -69px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 210px;
  height: 70px;
  background: url(/import/tenant_1/160.16.115.28/html/images/04feature/img008.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}
.feature1 .heading1 {
  color: var(--c-06);
}
/*feature2*/
.feature2 {
  padding: 100px 0 80px;
}
.feature2 .heading1 {
  color: #fff;
  border-bottom: 1px #fff solid;
}
.feature2 .nayamilist1 {
  margin-bottom: 70px;
  padding-top: 20px;
}
.nayamilist1 .tit {
  color: #fff;
  font-size: 20px;
  padding-left: 35px;
  padding-bottom: 12px;
  position: relative;
}
.nayamilist1 .tit:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
}
.nayamilist1 .txt {
  font-size: 14px;
  color: #fff;
  padding-left: 35px;
}
.nayamilist1 li {
  margin-bottom: 45px;
}
@media (max-width: 599px) {
  .nayamilist1 .tit {
    font-size: 14px;
  }
  .nayamilist1 .tit:after {
    width: 16px;
    height: 16px;
  }
}
/*feature3*/
.feature3 {
  padding: 150px 0 100px;
}
.feature3 .heading1 {
  margin-bottom: 4vw;
}
.feature3 .heading2 {
  font-size: 24px;
  margin-bottom: 30px;
}
.feature3 li {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .feature3 {
    padding: 100px 0 0px;
  }
}
@media (max-width: 599px) {
  .feature3 {
    padding: 50px 0 0px;
  }
  .feature3 .heading1 {
    margin-bottom: 30px;
  }
  .feature3 .heading2 {
    font-size: 18px;
  }
}
/*feature4*/
.feature4 {
  padding: 80px 0 80px;
}

.feature4 .heading1 {
  margin-bottom: 5vw;
}

.feature4 .heading1+.txt {
  margin-top: -50px;
  margin-bottom: 30px;
  font-size: 14px;
  text-align: center;
}

.feature4 .heading3 {
  margin-bottom: 30px;
}

.feature4 li+li {
  margin-top: 80px;
}

.feature4 .pic {
  margin-bottom: 26px;
}

@media (max-width: 1024px) {
  .feature4 .heading1+.txt {
    margin-top: -20px;
  }
}

@media (max-width: 599px) {
  .feature4 {
    padding: 60px 0;
  }
  
  .feature4 .heading1+.txt {
    margin-top: 0;
  }
  
  .feature4 .heading3 {
    margin-bottom: 18px;
  }
}

/*gishi1*/
.gishi1,
.gishi3 {
  padding: 80px 0;
}

.gishi1 .pic,
.gishi3 .pic {
  margin-bottom: 30px;
}

@media (max-width: 1024px) {

}

@media (max-width: 599px) {
  .gishi1,
  .gishi3 {
    padding: 60px 0;
  }
}

/*gishi2 gishi_timing*/
.gishi2.gishi_timing li+li {
  margin-top: 60px;
}

.gishi2.gishi_timing h4 {
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 0px;
  display: block;
  padding-left: 100px;
  position: relative;
  line-height: 140%;
}

.gishi2.gishi_timing .num {
  font-size: 65px;
  padding-right: 5px;
  position: absolute !important;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.gishi2.gishi_timing .txt {
  font-size: 14px;
  line-height: 200%;
}




/*gishi2*/
.gishi2.gishi_flow li {
  width: 22%;
  background: #fff;
  border: 1px solid #d2d2d2;
}

.gishi2.gishi_flow li:nth-of-type(n + 5) {
  margin-top: 4%;
}

.gishi2.gishi_flow .text_box {
  padding: 10px 20px;
}

.gishi2.gishi_flow h4 {
  font-size: 22px;
  text-align: center;
  line-height: 140%;
  margin-top: 0;
  margin-bottom: 10px;
  display: block;
  position: relative;
}

.gishi2.gishi_flow .num {
  font-size: 55px;
  padding-right: 5px;
  position: absolute !important;
  top: -5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gishi2.gishi_flow .txt {
  font-size: 14px;
  line-height: 220%;
}

.gishi2.gishi_flow li {
  background: #f9eeee;
}

@media (max-width: 1024px) {
  .gishi2.gishi_flow li {
    width: 48%;
  }
  
  .gishi2.gishi_flow li:nth-of-type(n + 3) {
    margin-top: 4%;
  }
}

@media (max-width: 599px) {
  .gishi2.gishi_flow li {
    width: 100%;
  }
  
  .gishi2.gishi_flow li:nth-of-type(n + 2) {
    margin-top: 10%;
  }
  
  .gishi2.gishi_flow h4 {
    font-size: 20px;
  }
  
  .gishi2.gishi_flow h4 .num {
    font-size: 40px;
  }
  
  .gishi2.gishi_flow .heading1 {
    margin-bottom: 30px;
    font-size: 22px;
  }
  
  .gishi2.gishi_flow .num {
    font-size: 40px;
  }
}

.commonbnr2 .w100_bnr {
  position: relative;
  width: 95%;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--c-06);
  margin-bottom: 20px;
}
.commonbnr2 .w100_bnr .tit {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 160%;
  display: inline-block;
  width: auto;
}
.commonbnr2 .w100_bnr a {
  display: block;
  position: relative;
}
.commonbnr2 .w100_bnr a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
  width: 24px;
  height: 24px;
  background: url(/import/tenant_1/160.16.115.28/html/images/02about/img000.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}
@media (max-width: 599px) {
  .commonbnr2 .w100_bnr .tit {
    font-size: 14px;
    padding-right: 30px;
    left: 0;
  }
  .commonbnr2 .aspect.-ratio15:before {
    padding-top: 30%;
  }
}
/*souireba1*/
.souireba1 {
  padding: 80px 0;
}

.souireba1 .pic {
  margin-bottom: 30px;
}

.souireba1 .pic .ofcon img {
    object-fit: contain;
}

.souireba1 .txt {
  font-size: 14px;
}

@media (max-width: 1024px) {
}

@media (max-width: 599px) {
  .souireba1 {
    padding: 60px 0;
  }
  .souireba1 .txt {
    font-size: 14px;
  }
  .souireba1 .pic .ofcon img {
    object-fit: cover;
  }
}
/*check_list*/
.check_list {
  padding: 80px 0;
  position: relative;
}

.check_list h3 {
  margin-bottom: 20px;
}

.check_list ul {
  max-width: 550px;
  width: 98%;
  display: block;
  margin: 0 auto;
  padding: 30px;
  background: rgb(255 255 255 / 60%);
  border-radius: 20px;
}

.check_list li {
  padding-left: 20px;
  position: relative;
  color: #3a3a3a;
  font-size: 17px;
}

.check_list li+li {
  margin-top: 15px;
}

.check_list li:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  left: 0;
  background: var(--c-11);
}

/*gishi3*/
.gishi3 .heading1 {
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .gishi3 h3 {
    margin-bottom: 50px;
  }
}

@media (max-width: 599px) {
  .check_list {
    padding: 60px 0;
  }
  
  .gishi3 h3 {
    margin-bottom: 30px;
  }
}

/*merit_box*/
.merit_box h4 {
  margin-bottom: 60px;
  padding: 8px 0;
}

.merit_box h4+.txt {
  margin-top: -30px;
  margin-bottom: 30px;
  font-size: 14px;
  text-align: left;
}

.merit_box dt {
  border-bottom: 1px solid var(--c-05);
  padding-bottom: 8px;
  margin-bottom: 15px;
  letter-spacing: 2px;
  padding-left: 4px;
}

.merit_box dd {
  padding-left: 4px;
  line-height: 230%;
}

@media (max-width: 1024px) {
  .merit_box ul {
    margin-bottom: 50px;
  }
}

@media (max-width: 599px) {
  .merit_box dl {
    margin-bottom: 50px;
  }
}

.flow1 {
  padding: 80px 0;
  background: #f7f6f3;
}

.flow1 position relative:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -69px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 210px;
  height: 70px;
  background: url(/import/tenant_1/160.16.115.28/html/images/04feature/img008.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}

.flow1 .heading1 {
  margin-bottom: 50px;
}

.flow1 h4 {
  margin-bottom: 35px;
}

.flow1 .txt {
  margin-bottom: 45px;
  font-size: 14px;
  line-height: 230%;
}

.flow2 {
  padding: 80px 0 80px;
}

.flow2 li+li {
  margin-top: 50px;
}

.flow2 dl {
  display: block;
  padding: 30px;
  background: #fff;
}

.flow2 .tit {
  text-align: center;
  margin-bottom: 20px;
}

.flow2 .txt {
  line-height: 230%;
}

.flow3 {
  padding: 80px 0 80px;
}

.flow3 .heading1 {
  margin-bottom: 5vw;
}

.flow4 {
  padding: 80px 0 80px;
}

.flow4 .heading1 {
  margin-bottom: 5vw;
}

.flow4 h4 {
  border-bottom: 1px solid var(--c-06);
  padding-bottom: 15px;
  margin-bottom: 40px;
  color: var(--c-06);
  text-align: left;
  font-size: 30px;
}

.flow4 .pic {
  margin-bottom: 30px;
}

.flow4 .txt {
  margin-bottom: 50px;
  font-size: 14px;
}

.flow4 .sign {
  text-align: right;
  display: inline-block;
  width: 100%;
}

@media (max-width: 599px) {
  .flow1 {
    padding: 60px 0;
  }
  
  .flow2 {
    padding: 60px 0;
  }
  
  .flow3 {
    padding: 60px 0;
  }
  
  .flow4 {
    padding: 60px 0;
  }
}

.price1 {
  padding-bottom: 100px;
}

.price1 .tit {
  border-bottom: 1px solid var(--c-06);
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-size: 20px;
}

.price1 .komidashi {
  margin-bottom: 30px;
  line-height: 180%;
}

.price1>div>ul {
  padding-top: 30px;
}

.price1>div>ul>li {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.price1>div>ul>li:nth-of-type(even):after {
  content: "";
  display: block;
  width: 200vw;
  position: absolute;
  top: 0;
  left: -100%;
  height: 100%;
  background: #f7f6f3;
  z-index: -1;
}

.star_rank {
  margin-bottom: 30px;
}

.star_rank dt {
  padding: 3px 15px;
  text-align: center;
  margin-right: 10px;
}

.star_rank dl {
  margin-bottom: 5px;
}

.care1 .dl_list2 li h4 {
  padding-left: 0;
  border-left: 0px;
}

.care1 .dl_list2 li:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.care2.feature4 .heading3 {
  border-bottom: 0px;
}

.gishi3.bite3 dt {
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 0px;
  display: block;
  padding-left: 100px;
  position: relative;
  line-height: 140%;
}

.gishi3.bite3 .num {
  font-size: 65px;
  padding-right: 5px;
  position: absolute;
  left: 5px;
  top: 50%;
  padding-bottom: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.gishi3.bite3 ul {
  margin-bottom: 0;
}

.access4 .tit {
  font-size: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-06);
  margin-bottom: 18px;
}

.access4 .en_list >li {
  margin-bottom: 80px;
}

.access4 .in_list >li {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 190%;
}

.faq1 li+li {
  margin-top: 60px;
}

.faq1 .tit {
  position: relative;
  padding-left: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  font-size: 18px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

.faq1 .tit:before {
  content: "Q";
  color: var(--c-05);
  padding-right: 15px;
  font-size: 24px;
}

.faq1 .tit:after {
  content: "";
  display: block;
  width: 12px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/import/tenant_1/160.16.115.28/html/images/15faq/img001.png);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.faq1 .tit.active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 35%;
}

.faq1 .txt {
  padding: 20px 40px 50px;
  border-top: 1px solid #ddd;
  display: none;
}

.contact1 {
  padding: 80px 0 80px;
}

.contact1 .table {
  width: 98%;
  max-width: 850px;
  margin: 0 auto;
}

.contact1 dl {
  margin-bottom: 40px;
}

.contact1 dt {
  width: 30%;
  line-height: 36px;
  font-size: 14px;
  position: relative;
}

.contact1 dt .mandatory {
  color: #e46a61;
  font-size: 10px;
  padding-left: 10px;
  line-height: 1px;
}

.contact1 dd {
  width: 70%;
  position: relative;
}
.contact1 dd .size1 {
  background: #f5f5f5;
  border: solid 1px #e4e4e4;
  width: 100%;
  line-height: 36px;
}

.contact1 dd.radio-box .size1 {
  width: auto;
}

.contact1 dd textarea {
  background: #f5f5f5;
  border: solid 1px #e4e4e4;
  width: 100%;
}

.contact1 dd label {
  padding-left: 5px;
  padding-right: 30px;
  font-size: 14px;
}

.contact1 button {
  background: var(--c-01);
  text-align: center;
  color: #fff;
  position: relative;
  padding: 12px 20px;
  font-size: 14px;
  position: relative;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 20px;
  border: 0px;
  width: 98%;
  max-width: 186px;
}

.contact1 button:after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-color: var(--c-01);
  -webkit-text-stroke-width: 0.5px;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}

.contact1 .left-arrow button:after {
  content: "\f053";
  right: auto;
  left: 10px;
}

.contact1 .more button a {
  background: none;
  padding: 0;
}

/*blog*/
.blog1 {
  padding: 80px 0 80px;
}

.blog1 .left li+li {
  margin-top: 60px;
}

.blog1 .left a {
  display: block;
}

.blog1 .left .pic {
  width: 25%;
}

.blog1 .left .txtarea {
  width: 72%;
}

.blog1 .left .day {
  margin-bottom: 10px;
}

.blog1 .left .cate {
  padding: 1px 15px;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 14px;
  margin-left: 10px;
}

.blog1 .left .tit {
  padding: 10px 0 5px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
  font-size: 18px;
}

.blog1 .left .tit a {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog1 .right .menu_ul {
  margin-bottom: 80px;
}

.blog1 .right dt {
  position: relative;
  padding-left: 30px;
  font-size: 24px;
  margin-bottom: 24px;
}

.blog1 .right dt:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url(/upload/tenant_1/a21ec5192ae0a9a814873e07b42bf489.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
filter: brightness(0.5);
}

.blog1 .right dd li {
  padding-left: 30px;
  margin-bottom: 17px;
  position: relative;
}

.blog1 .right dd li:after {
  content: "\f054";
  font-family: fontAwesome;
  display: block;
  position: absolute;
  color: var(--c-01);
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.blog1 .right dd li a {
  display: block;
  color: #000;
  font-size: 14px;
}

.pagenav {
  margin-top: 80px;
  text-align: center;
}

.pagenav ul {
  text-align: center;
}

.pagenav li {
  display: inline-block !important;
  margin: 5px 1px !important;
  vertical-align: middle;
}

.pagenav li a {
  display: block;
  font-size: 18px;
  padding: 0 13px 5px;
}

.pagenav li a i {
  color: var(--c-01);
}

.pagenav li.now a {
  border-bottom: 2px solid var(--c-01);
}

.blog_detail1 .left .heading {
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.blog_detail1 .left .day_cate {
  margin-bottom: 50px;
}

.blog_detail1 .txt_area {
  padding-bottom: 50px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 50px;
}

.blog_detail1 .kiziwrap {
  margin-bottom: 200px;
}

.blog_detail1 .recowrap .heading {
  font-size: 36px;
  margin-bottom: 50px;
  border: 0px;
}

.blog_detail1 .recowrap .day_cate {
  margin-bottom: 0px;
}

.back {
  width: 80%;
  max-width: 180px;
}

.back a {
  padding: 12px 0px;
  font-size: 14px;
  display: block;
  cursor: pointer;
  position: relative;
  text-align: center;
  color: #fff;
  background: var(--c-01);
  overflow: hidden;
}

.back a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid var(--c-01);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.back a:hover {
  color: var(--c-01);
}

.back a:hover:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.back a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 10px;
  background: url(/import/tenant_1/160.16.115.28/html/images/99blog_detail/img000.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}

@media (max-width: 599px) {
  .blog1 .left .pic {
    width: 90%;
  }
  
  .blog1 .left .txtarea {
    width: 90%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .blog1 .left .tit {
    padding: 0 0 5px;
  }
}

/*採用情報*/
.recruitment .recruitment_box+.recruitment_box {
  margin-top: 60px;
}

.recruitment .recruitment_box div+div {
  margin-top: 30px;
}

.recruitment .recruitment_box .sub_text {
  font-size: 13px;
  color: #969696;
  display: block;
  padding-left: 100px;
}

.recruitment .application {
  background: whitesmoke;
  padding: 50px;
}

.recruitment .recruitment_box.application div+div {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #e4e4e4;
}

.recruitment .application dt {
  font-weight: bold;
}

@media (max-width: 599px) {
  .recruitment .recruitment_box .sub_text {
    padding-left: 0;
  }
  
  .recruitment .application {
    padding: 30px 20px;
  }
}

/*見たまま編集*/
[data-element-id] .sp_only {
  display: block;
}

/*スマホ用メインビジュアル*/
[data-element-id] .mainimg .slide_inn.sp_only {
  width: 300px;
  margin-top: 30px;
  margin-bottom: 30px;
}

[data-element-id] .mainimg .slide_inn.sp_only:before {
  content: 'スマホ用スライダー画像';
  display: block;
  font-size: 10px;
  text-align: center;
  line-height: 2.2;
  color: white;
  padding: 2px 5px;
  background-color: #5967c5;
}

[data-element-id] .mainimg .slide_inn.sp_only .uk-slidenav-position:after {
  padding-top: 120%;
}

[data-element-id] h1 {
  margin-top: 10px;
  margin-bottom: 45px;
}

[data-element-id] #gnav .accordion-inner  {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

[data-element-id] #gnav li {
  margin: 1%;
}

[data-element-id] #gnav li.hun_nav {
  display: inline-block !important;
  overflow: inherit;
}

[data-element-id] #gnav li.hun_nav a {
  border: 1px solid #5967c5;
}

[data-element-id] #gnav li.hun_nav:after {
  content: 'ハンバーガーメニュー';
  display: block;
  font-size: 10px;
  text-align: center;
  line-height: 2.2;
  color: white;
  padding: 2px 5px;
  background-color: #5967c5;
}

[data-element-id] #gnav {
  max-width: 100%;
}

[data-element-id] #gnav li a {
  background: #fff;
}

[data-element-id] #gnav ul .gnav_logo {
  max-width: 250px;
  display: inline-block !important;
}

[data-element-id] #gnav ul .gnav_logo.mainimg_logo a {
  background: none;
}

[data-element-id] .mainimg .slide .main-copy {
  position: absolute !important;
  right: auto;
  left: 10%;
}

[data-element-id] #gnav .dropmenu ul,
[data-element-id] #gnav .dropmenu:hover li {
  visibility: visible;
  padding: 0;
}

[data-element-id] #gnav .dropmenu ul {
  width: 150px;
    position: relative;
    top: 0;
}

[data-element-id] #gnav .dropmenu:hover ul {
  background: none;
  margin: 0;
  min-width: auto;
    margin-left: 0;
    padding: 0px 0 0 !important;
}

[data-element-id] #gnav .dropmenu ul li {
  display: block;
  border: 1px solid #5967c5;
  overflow: inherit;
}

[data-element-id] #gnav .dropmenu ul li:after {
  content: 'ドロップダウンメニュー';
  display: block;
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
  color: white;
  padding: 2px 5px;
  background-color: #5967c5;
}

[data-element-id] .sidenav {
  position: static;
}

[data-element-id] .sidenav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-element-id] .sidenav li {
  margin: 0 1%;
}

[data-element-id] .sidenav li:after {
  content: 'サイド固定ナビ';
  display: block;
  font-size: 10px;
  text-align: center;
  line-height: 1.2;
  color: white;
  padding: 2px 5px;
  background-color: #5967c5;
}

[data-element-id] .sidenav li a {
  padding-top: 40px;
  -webkit-writing-mode: inherit;
      -ms-writing-mode: inherit;
          writing-mode: inherit;
}

@media (max-width: 599px) {
.dsf-w{
    width: 100% !important;
}
}


.attempt01 h4{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.attempt_d {
    margin-bottom: 22px ;
}


.inst img {
  width: 30px;
  margin-top: 15px;
}

/* 0317 追記 */
.r{
  display: block !important;
}

.mbi-0{
  margin-bottom: 0px !important;
}

/* 2022.10.25 */

.youdoga02 iframe{
  margin: auto;
  height: 420px;
  width: 750px !important;
}

/*2023/07/13*/
.int-bnr {
  width: 40%;
  margin-top: 20px;
}
.int-bnr a img {
  width: 100%;
}
.int-bnr.bnr02 {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1024px) {
  .int-bnr {
    width: 50%;
  }
}

@media (max-width: 599px) {
  .int-bnr {
    width: 100%;
  }
}

.line-bnr {
  position: fixed;
  bottom: 20px;
  right: 100px;
  z-index: 10;
}
.line-bnr a {
  display: block;
  width: 250px;
}
.line-bnr a img {
  width: 100%;
}

@media (max-width: 1024px) {
  .line-bnr {
    right: initial;
    left: 20px;
  }
}

@media (max-width: 599px) {
  .line-bnr {
    bottom: 70px;
    right: 70px;
    left: initial;
  }
  .line-bnr a {
    width: 150px;
  }
}

/* 09/22 */

.move-news{
  width: 80%;
    padding: 50px;
    background-color: #eee;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
background: #fff; 
    background-size: 300% 300%;
    -webkit-animation: backgradation 8s ease infinite;
    animation: backgradation 8s ease infinite;
}

.move-news h3{
  font-size: 26px;
    text-align: center;
    margin-bottom: 20px;
color: var(--c-00); 
}

.move-news div {
    color: #71595b;
    line-height: 2em;
    letter-spacing: 0.05em;
}

.move-news .lh-15{
  line-height: 1.5em;
}

@media only (max-width: 599px){
  .move-news{
    width: 100%;
    margin-bottom: 50px;
    padding: 30px;
  }
  
  .move-news h3{
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }
}

.gc-box{
  width:80%;
  margin:30px auto;
  height:600px;
}

.gc-box>iframe{
  width:100%!important;
  height:100%!important;
}

@media(max-width:599px){
  .gc-box{
  width:100%;
  height:380px;
}
}
.mb30 {
  margin-bottom: 30px;
}

/* staff */

.staff-box .item01{
 background: #e4e4e4;
  box-shadow: 2px 2px 5px 0px #cdcdcd;
  height: 100%;
}

.staff-box .t-box{
    padding: 15px;
    padding-top: 30px;
    position: relative;
}

.staff-box .t-box .cat{
      display: inline-block;
    background: var(--c-01);
    padding: 0.1em 0.5em;
    position: absolute;
    top: -10px;
    color: #fff;
    letter-spacing: 3px;
}

.staff-box .t-box .date{
  color: var(--c-05);
  margin-bottom: 10px;
}

.staff-box .t-box .name{
      font-size: 24px;
}

.staff-box .t-box .name .en{
      margin-left: 10px;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--c-01);
}

.staff-box .t-box .text{
  margin-top: 15px;
}

.rec-staff .t-box{
  display: flex;
  align-items: center;
  color: #999;
  position: relative;
  margin-bottom: 3rem;
  letter-spacing: 0.25rem;
  line-height: 2.5;
}

.rec-staff .t-box .num{
  font-size: 50px;
  font-weight: bold;
  margin-right: 10px;
  line-height: 1;
}

.rec-staff .ttl{
  color: var(--c-02);
  font-size: 16px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.2em;
}

.rec-staff .ttl:after{
  content: 'Q';
  width: 43px;
  height: 43px;
  position: absolute;
  top: 0;
  left: 0;
}

.rec-staff .text{
  font-size: 16px;
  position: relative;
  padding-left: 1.2em;
}

.rec-staff .text:after{
  content: 'A';
  width: 43px;
  height: 43px;
  position: absolute;
  top: 0;
  left: 0;
}

.text-b-line2:before {
  content: '';
  display: inline-block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--c-05);
}

.border-dot-b li {
  border-bottom: dotted 2px #ccc;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

@media(max-width:1024px){
  .staff-box .t-box .name .en{
    margin-left: 0px;
    display: block;
  }
}

@media(max-width:599px){
  .staff-box .t-box .name {
    font-size: 22px;
}
.rec-staff .t-box{
  margin-bottom: 10px;
}
}


.yahoo a {
  color: var(--c-01);
}
.fwb {
  font-weight: bold;
}
.co-p {
  color: var(--c-01);
}
.insert-link {
  width: 750px;
  margin: 50px auto 0;
}
.insert-link > div {
  display: inline-block;
  position: relative;
  width: 100%;
  padding: 2%;
  background: #fff;
  border: 3px solid var(--c-01);
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}

.insert-link > div .in {
  text-align: center;
  padding: 3%;
  border: 1px solid var(--c-01);
  border-radius: 10px;
}
.insert-link > div .in > p {
  text-align: center;
}
.insert-link > div .in .box {
  margin-top: 10px;
}

.insert-link > div .in .box a {
  text-align: center;
}

/* .insert-link a:before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(99% - 6px);
  height: calc(95% - 6px);
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid var(--c-01);
  border-radius: 10px;
}

マウスオーバーした際のデザイン
.insert-link a:hover:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
} */

/* ドクターズファイル上のバナー */
.insert-link02{
  position: relative;
  width: 700px;
  margin: 0 auto;
  text-align: center;
  border-top: 3px solid #f3a5ab;
  border-bottom: 3px solid #f3a5ab;
  padding: 30px 0;
}

.insert-link02 .img-wrap{
  max-width: 50px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.insert-link02 .img-wrap02{
  max-width: 50px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

.insert-link02 a:hover .img-wrap,
.insert-link02 a:hover .img-wrap02{
  transform: scale(1.25);
  transition: 0.5s ease-in-out;
}

.insert-link02 .content-wrap{
  position: relative;
  z-index: 2;
}

.insert-link02 .box {
  margin-top: 10px;
  position: relative;
  z-index: 3;
}

.insert-link02 .box a {
  text-align: center;
}

@media (max-width: 1024px){
  .insert-link {
    width: 100%;
  }
  .insert-link > div .in {
    padding: 1%;
  }
  .insert-link a {
    font-size: 14px;
    line-height: 1.3;
  }
}
@media (max-width: 599px){
  .insert-link {
    width: 100%;
  }
  .insert-link > div .in > p {
    font-size: 12px;
  }
  .insert-link a {
    font-size: 12px;
    padding: 3%;
  }
  .insert-link .fs28 {
    font-size: 18px;
  }
  .insert-link a:before {
    top: 4.5px;
    left: 4.5px;
  }
  
  .insert-link02{
    width: 300px;
  }
}

/* ここから追加 */

.case .ttl{
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--c-02);
}

.case .line-u li+li{
  margin-top: 60px;
}

.topics dl {
    margin: 15px 0 0;
    display: flex;
    flex-wrap: wrap;
}

.topics dt {
    width: 130px;
    font-weight: bold;
}

.topics dd {
    width: calc(100% - 130px);
}

@media (max-width: 599px) {
.topics dt,
.topics dd{
  width: 100%;
}
.topics dt{
  margin-bottom: 5px;
}
}

.lis li{
  padding-left: 15px;
  position: relative;
  color: #3a3a3a;
  font-size: 17px;
}
.lis li:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  border-radius: 50%;
  top: 10px;
  left: 0;
  background: var(--c-11);
}

.inb .heading3{
      color: var(--c-01);
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--c-01);
    margin-bottom: 15px;
    line-height: 1.5;
}

.table_content.pla table tr:first-of-type th:nth-of-type(1){
  width: 20%;
    min-width: 300px;
}
.table_content.pla table tr:first-of-type th:nth-of-type(2){
  width: 60%;
   min-width: 400px;
}
.table_content.pla table tr:first-of-type th:nth-of-type(3){
  width: 20%;
  min-width: 200px;
}

.table_content.pla.new table tr:first-of-type th:nth-of-type(1){
  width: 70%;
}

.table_content.pla.new table tr:first-of-type th:nth-of-type(2){
  width: 30%;
   min-width: auto;
}

.c-pp{
  color: var(--c-02);
}

.table_content.pla table td{
  text-align: left;
}

.table_content.pla.new table td{
  text-align: center;
}

.table_content.pla table th, 
.table_content.pla table td {
        min-width: auto;
}

.table_content.pla.new .sp_scroll:before,
 .table_ori .sp_scroll:before{
  content:none;
}
@media (max-width: 1024px){
   .table_ori .sp_scroll:before{
  content:'右にスクロール可能→';
          display: inline-block;
        font-size: 12px;
        text-align: left;
        line-height: 1.2;
        color: #ffffff;
        padding: 10px 5px;
        background-color: var(--c-11);
}
}
@media (max-width: 599px) {
  .table_content.pla.new .sp_scroll:before{
  content:'右にスクロール可能→';
}
.table_content.pla table th, 
.table_content.pla table td {
    min-width: 300px;
}
}

/* テーブルのスタイル */
table.md {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

table.md th, table.md td {
    padding: 10px;
    border: 1px solid #dddddd;
    vertical-align: top;
    background-color: #f9f9f9;
}

table.md th {
    font-weight: bold;
    text-align: center;
        background: var(--c-14);
    color: #fff;
}


@media (max-width: 1024px) {
    table.md {
        font-size: 16px;
    }

    table.md th, table.md td {
        padding: 8px;
    }
}

@media (max-width: 599px) {
    table.md {
        font-size: 14px;
    }

    table.md th, table.md td {
        padding: 6px;
    }
}

.ori-area .heading3{
  line-height: 1.6;
      display: inline-block;
    font-size: 22px;
}

.d-none-tb,
.d-none-sp{
  display: block;
}
.d-b-tb,
.d-b-sp{
  display: none;
}
@media (max-width: 1024px) {
  .d-b-tb{
    display: block;
  }
  .d-none-tb{
    display: none;
  }
}
@media (max-width: 599px) {
.d-none-sp{
  display: none;
}
.d-b-sp{
  display: block;
}
.ori-area .heading3{
    font-size: 18px;
}
}

 .ms-area {
width: 100%;
border-collapse: collapse;
}
.ms-area th, .ms-area td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
    background: #fff;
}
.ms-area td.top{
  width: 10%;
text-align: center;
    background-color: #f2f2f2;
}
.ms-area th {
background-color: #f2f2f2;
text-align: center;
font-weight: bold;
}
.note {
font-size: 12px;
text-align: right;
margin-top: 10px;
}
@media (max-width: 599px) {
.d-c-area{
  display: contents;
}

.d-c-area .o3{
  order: -3;
}

.d-c-area .o2{
  order: -2;
}

.d-c-area .o1{
  order: -1;
}
}

[data-element-id] .up-d-none {
    display: block;
    border: solid 4px black;
    position: relative;
}
[data-element-id] .up-d-none:after {
    content: "モバイル用";
    display: block;
    padding: 5px;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    text-align: center;
    background: black;
}

/**2024/06/27よくある質問追加**/

.faq1 .link_btn_area {
  margin-bottom: 30px;
}
.faq1 .link_btn_area li+li {
  margin-top: 0;
}
.about-faq {
  margin-bottom: 50px;
}
.about-faq .defo_btn01 {
  margin-top: 30px;
  width: 100%;
}
.about-faq .defo_btn01 a {
  margin: auto;
}
.pl-area .table_content.pla table tr:first-of-type th:nth-of-type(3){
  width: 40%;
  min-width: 200px;
}

.pl-area .table_content.pla.new table tr:first-of-type th:nth-of-type(1){
  width: 40%;
}

.pl-area .table_content.pla.new table tr:first-of-type th:nth-of-type(2){
  width: 20%;
  min-width: auto;
}

.yokuaru01{
  width: 100%;
}

.q01{
  font-size: 18px;
  margin-bottom: 10px;
}

.a01{
  font-size: 14px;
}

.q01:before {
    content: "Q";
    color: var(--c-05);
    padding-right: 15px;
    font-size: 24px;
}

.a01:before {
    content: "A";
    color: #9b9892;
    padding-right: 12px;
    font-size: 22px;
}

.side-tel{
  display: none;
}

@media (max-width: 1024px) {
  .yokuaru01{
  width: 100% !important;
  max-width: none !important;
}
}


@media (max-width: 599px) {
.q01 {
    font-size: 16px;
}

.side-tel{
  display: block;
}

.sidenav li {
        width: 40%;
}

.side-tel{
  width: 20% !important;
}

.side-border{
  border-left: 1px solid #fff;
  
}
}

.bnr-box.pc_only {
  display: flex;
}
.bnr-box.pc_only .int-bnr {
  width: 45%;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 599px){
  .bnr-box.pc_only {
    display: none;
  }
}


/* 20250410 */

.link-bnr {
    background-image: url('/upload/tenant_1/240307縺輔￥繧峨″繧吶ヵ繧｡繝溘Μ繝ｼ豁ｯ遘第ｧ・0022 (1).webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(255, 255, 255, 0.5);
    background-blend-mode: lighten;
    width: 80%;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
}

.link-bnr .inner-content {
    background: #ffffffc9;
    display: block;
    padding: 40px 20px;
    border-radius: 10px;
}

.link-bnr .bnr-head {
    font-family: "Noto Serif JP", serif;
    font-size: 34px;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 10px;
    position: relative;
    color: #a68b62;
}

.link-bnr .bnr-head::before {
    content: "";
    position: absolute;
    background: -moz-linear-gradient(216deg, rgba(254, 226, 205, 1) 0%, rgba(203, 236, 255, 1) 100%);
    background: -webkit-linear-gradient(216deg, rgba(254, 226, 205, 1) 0%, rgba(203, 236, 255, 1) 100%);
    background: linear-gradient(90deg, #dcd09a, #daaf58);
    width: 80%;
    transform: translateX(-50%);
    right: 50%;
    left: 50%;
    height: 1px;
    opacity: .3;
    bottom: -10px;
    z-index: 3;
}

.link-bnr .bnr-txt{
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
}


.link-bnr .link-txt{
 text-align: center;
 display: block;
}

.link-bnr .link-txt a{
    text-align: center;
    margin-top: 20px;
    color: #0077dd;
    font-size: 16px;
}


@media screen and (min-width:600px) and (max-width:1024px) {
   .link-bnr {
     width: 80%;
}
}

.pc-br{
  display: block;
}

.sp-br{
  display: none;
}

@media screen and (max-width:599px) {
 .link-bnr {
    width: 100%;
    padding: 10px;
}

.link-bnr .inner-content {
    padding: 15px;
}

.link-bnr .bnr-head {
    font-size: 24px;
    padding-bottom: 5px;
    padding-top: 5px;  
}

.link-bnr .bnr-txt {
    font-size: 14px;
    margin-bottom: 10px;
}

.link-bnr .link-txt a{
  font-size: 14px;
}


.pc-br{
  display: none;
}

.sp-br{
  display: block;
}
}

/*フッターバナー*/
.bnr-txt {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}
.add-bnr img {
  padding: 2% 2% 0;
  background: #fff;
  border: 1px solid #004d83;
}

@media screen and (max-width:599px) {
  .bnr-txt {
    font-size: 18px;
  }
}
