@charset "utf-8";
.beige {
  color: #c6a878;
}
.blue {
  color: #001e4c;
}
.white {
  color: #fff;
}
.bg_beige {
  background-color: #c6a878;
}
.bg_lightbeige {
  background-color: #f1eee6;
}
.bg_blue {
  background-color: #faa977;
}
.bg_white {
  background-color: #f1eee6;
}
@media only screen and (max-width: 599px) {
  .pic {
    width: 100%;
  }
}
.heading1 {
  font-size: 40px;
  line-height: 180%;
  margin-bottom: 3vw;
  letter-spacing: 5px;
  color: #f99355;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .heading1 {
    font-size: 28px;
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 599px) {
  .heading1 {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
.heading2 {
  border-left: 7px solid #001e4c;
  color: #001e4c;
  font-size: 22px;
  padding-left: 8px;
  margin-bottom: 35px;
}
@media only screen and (max-width: 599px) {
  .heading2 {
    font-size: 18px;
    margin-bottom: 18px;
  }
}
.heading3 {
  color: #001e4c;
  font-size: 26px;
  padding-bottom: 15px;
  border-bottom: 1px solid #001e4c;
  margin-bottom: 35px;
}
@media only screen and (max-width: 599px) {
  .heading3 {
    font-size: 18px;
    margin-bottom: 18px;
    padding-bottom: 10px;
  }
}
.sp_on {
  display: none;
}
@media only screen and (max-width: 599px) {
  .sp_on {
    display: block;
  }
}
.sp_no {
  display: block;
}
@media only screen and (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 #001e4c;
}
.buttonBox a > .border:nth-of-type(3) {
  top: 0;
  right: 0;
  width: 0px;
  height: 0;
  border-right: 1px solid #001e4c;
}
.buttonBox a > .border:nth-of-type(4) {
  bottom: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border-top: 1px solid #001e4c;
}
.buttonBox a > .border:nth-of-type(5) {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0;
  border-left: 1px solid #001e4c;
}
.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%;
}
/* header*/
.header-left {
  width: 20%;
  max-width: 420px;
}
.header-left .subtit {
  background-color: #00173a;
  display: block;
  padding: 15px 0;
}
@media only screen and (max-width: 599px) {
  .header-left {
    width: 42%;
  }
  .header-left .subtit {
    font-size: 10px;
    display: none;
  }
}
h1 a {
  display: block;
  padding: 40px 20px 190px;
}
h1 a img {
  display: block;
  margin: 0 auto;
}

@media only screen and (max-width: 599px) {
  h1 a {
    padding: 20px;
    padding-bottom: 50px;
  }
}
.header-right {
  width: 80%;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
/*#gnav*/
#gnav {
  max-width: 950px;
  width: 100%;
  margin-top: 25px;
  margin-right: 0;
  margin-left: auto;
  padding: 20px 0;
}
#gnav ul {
  text-align: center;
}
#gnav li {
  display: inline-block;
}
#gnav li a {
  display: block;
  padding: 0 15px;
  text-align: center;
  font-size: 16px;
}
#gnav li a .min {
  color: #c6a878;
  font-size: 12px;
  text-align: center;
}
#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: #c6a878;
  -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.fixed {
  max-width: 100%;
  margin-top: 0px;
  margin-right: auto;
  margin-left: auto;
  z-index: 5;
  position: fixed;
  top: -3px;
  left: 0;
  background: #fff;
  padding: 20px 0;
}
.dropmenu li {
  position: relative;
}
.dropmenu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  padding-top: 20px;
  visibility: hidden;
  opacity: 0;
}
.dropmenu li ul li {
  overflow: hidden;
  width: 100%;
  height: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.dropmenu li 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;
}
.dropmenu li ul li a .min {
  line-height: 200% !important;
  padding-top: 3px;
}
.dropmenu li:hover li {
  overflow: visible;
  border-top: 1px solid #ddd;
  height: auto;
}
.dropmenu li:hover ul {
  background: #fff;
  z-index: 2;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 1;
  visibility: visible;
}
.dropmenu li:hover li a {
  opacity: 1;
}
@media only screen and (max-width: 599px) {
  #gnav {
    margin-top: 0;
  }
}
/*.mainimg*/
.mainimg {
  width: calc(100% - 120px);
  margin: -150px 0 0 auto;
  overflow: visible;
}
.mainimg .slide {
  position: relative;
}
.mainimg .slide .goldmark {
  position: absolute;
  top: 5vw;
  left: 5vw;
  width: 16vw;
  max-width: 245px;
}
.mainimg .slide .main-copy {
  width: 55%;
  font-size: 3vw;
  color: rgb(249, 147, 85);
  line-height: 150%;
  /* text-shadow: 2px 2px 10px #fff; */
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff,
    0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff,
    0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff,
    0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff,
    0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff,
    0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff,
    0 0 2px #fff, 0 0 2px #fff;
  position: absolute!important;
  left: 5vw;
  top: 23vw;
}
@media only screen and (max-width: 1024px) {
  .mainimg {
    margin-top: 0;
    width: calc(100% - 80px);
  }
}
@media only screen and (max-width: 599px) {
  .mainimg {
    width: 97%;
  }
}
/*.sidenav*/
.sidenav {
  position: fixed;
  top: 300px;
  right: 0;
  z-index: 3;
}
.sidenav li {
  margin-bottom: 5px;
}
.sidenav li a {
  display: block;
  padding: 40px 20px;
  background: #faa977;
  position: relative;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  height: 220px;
}
/* .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 #f1eee6 transparent;
} */
@media only screen and (max-width: 1024px) {
  .sidenav ul {
    display: none;
  }
}
.sidenav .contact a {
  padding-top: 65px;
  width: 60px;
}
.sidenav .contact a:before {
  content: "";
  display: block;
  position: absolute;
  background: url(/import/tenant_1/160.16.136.249/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%);
}
/*.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: #c6a878;
  background-size: contain;
  width: 1px;
  height: 184px;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 1024px) {
  .scrollnav {
    height: 180px;
    left: -100px;
    bottom: -46px;
  }
  .scrollnav a {
    padding-top: 90px;
  }
  .scrollnav a:after {
    height: 80px;
  }
}
@media only screen and (max-width: 599px) {
  .scrollnav {
    display: none;
  }
}
/*home-concept*/
.home-concept {
  padding: 130px 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: 16px;
  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;
  position: absolute!important;
  right: 19px;
  top: 0;
  color: #001e4c;
  z-index: 2;
}
.home-concept .left h2 .min {
  font-size: 14px;
}
.home-concept .left h2 .ja {
  line-height: 140%;
  letter-spacing: 5px;
  font-weight: normal;
  color: #faa977;
}
@media only screen and (max-width: 1024px) {
  .home-concept .left h2 {
    right: -10px;
  }
  .home-concept .left .txt {
    padding: 10px 0 0 20px;
    margin-top: 210px;
    width: calc(100% - 30px);
    margin-left: -50px;
  }
}
@media only screen and (max-width: 599px) {
  .home-concept {
    padding: 40px 0;
  }
  .home-concept .right .pic {
    width: 100%;
    margin-right: 0;
  }
  .home-concept .left h2 {
    font-size: 26px;
    top: -200px;
    background: #fff;
    padding: 10px 5px 0 10px;
  }
  .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 {
    margin-top: 0;
    padding: 20px 20px 0 5px;
    font-size: 14px;
    line-height: 240%;
    margin-left: 0;
    width: 100%;
  }
  
  
}
/*home-reason*/
.home-reason {
  padding: 60px 0;
  background-image: url(/import/tenant_1/160.16.136.249/html/images/001index/index00.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(249, 147, 85, 0.2);
}
.home-reason h2 {
  font-size: 40px;
  line-height: 180%;
  margin-bottom: 3vw;
  letter-spacing: 5px;
  color: #f99355;
}
.home-reason h2 .big {
  font-size: 90px;
}
.home-reason h2 .tu {
  margin-left: -20px;
}

.home-reason .b_btn {
  width: 80%;
  max-width: 250px;
  letter-spacing: 2px;
  margin: auto;
}
.home-reason .b_btn a {
  padding: 20px 10px 20px 36px;
  position: relative;
  display: block;
  color: #fff;
}
.home-reason .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-reason .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;
}

.point_list li {
  width: 46%;
  margin: 0 2% 6%;
}

.point_list li .tit {
  font-size: 24px;
  line-height: 150%;
  margin-top: 30px;
  margin-bottom: 5px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
@media only screen and (max-width: 599px) {
  .home-reason {
    padding: 30px 0;
  }
  
  
  .home-reason h2 .tu {
    margin-left: -10px;
  }
  .point_list li {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 13%;
  }
  .point_list li .pic {
    width: 100%;
  }
  .point_list li .tit {
    font-size: 18px;
  }
}
/*--home-commit--*/
.home-commit {
  padding: 90px 0 0;
}
.home-commit .heading1 {
  margin-bottom: 40px;
}
.home-commit .txt {
  font-size: 16px;
  margin-bottom: 60px;
}
.commit_list .box ul {
  border: solid 1px #001e4c;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 45px 12% 70px;
}
.commit_list .box .btn {
  width: 80%;
  margin: -45px auto 0;
}
.commit_list .box .btn a {
  padding: 20px 0px;
  font-size: 16px;
  display: block;
  cursor: pointer;
  position: relative;
}
.commit_list .box .btn a:after {
  content: "";
  display: block;
  position: absolute;
  background: url(/import/tenant_1/160.16.136.249/html/images/01index/img015.png) center center no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}
.commit_list .box li {
  font-size: 16px;
  padding-left: 40px;
  position: relative;
  margin-bottom: 23px;
}
.commit_list .box li:after {
  content: "";
  display: block;
  position: absolute;
  background: url(/import/tenant_1/160.16.136.249/html/images/01index/img014.png) center center no-repeat;
  background-size: contain;
  width: 26px;
  height: 17px;
  top: 2px;
  left: 0px;
}
@media only screen and (max-width: 599px) {
  .home-commit {
    padding: 40px 0 60px;
  }
  .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%;
  }
  .home-commit .inner > ul {
    width: 85%;
  }
  .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 {
  display: block;
}
.home-menu li a .icon {
  margin-bottom: 25px;
  display: block;
}
@media only screen and (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 .b_btn {
  width: 80%;
  max-width: 250px;
  letter-spacing: 2px;
}
.home-greet .b_btn a {
  padding: 20px 10px 20px 36px;
  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 only screen and (max-width: 599px) {
  .home-greet {
    padding: 40px 0 50px;
  }
  
  .home-greet .txt {
    font-size: 14px;
    margin: 0 auto;
    width: 90%;
    margin-bottom: 35px;
  }
  .home-greet .b_btn {
    margin: 0 auto;
  }
  
  
}
/*--home-blognews--*/
.home-blognews {
  padding: 60px 0;
  background-image: url(/import/tenant_1/160.16.136.249/html/images/001index/index00.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-blognews .box {
  padding: 45px 35px;
  border-top: 3px solid #f99355;
  background: #fff;
}
.home-blognews .h3_area {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.home-blognews h3 {
  padding: 0 80px;
  font-size: 28px;
  font-weight: normal;
  color: #f99355;
}
.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;
  color: #f99355;
}
/* .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(/import/tenant_1/160.16.136.249/html/images/01index/img027.png) center center no-repeat;
  background-size: contain;
} */
.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: 16px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 1024px) {
  .home-blognews {
    padding-bottom: 40px;
  }
  .home-blognews .box {
    width: 80%;
    max-width: 600px;
    margin: 0 auto 40px;
  }
}
@media only screen and (max-width: 599px) {
  .home-blognews {
    padding: 35px 0 10px;
  }
  .home-blognews h3 {
    padding: 0;
    font-size: 24px;
  }
  .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: 50px 0;
}
.home-bnr .doctor-bnr {
  display: inline-block;
}
.home-bnr .doctor-bnr a {
  display: block;
  text-align: center;
}
@media only screen and (max-width: 599px) {
  .home-bnr {
    padding: 20px 0;
  }
  .home-bnr .inner {
    width: 75%;
  }
}
/*--footer--*/
.footer-menu {
  padding: 60px 0;
  background-image: url(/import/tenant_1/160.16.136.249/html/images/001index/index00.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(249, 147, 85, 0.4);
}
.footer-menu .left {
  width: 40%;
  padding-right: 10px;
}
.footer-menu .left .logo {
  margin-bottom: 30px;
}
.footer-menu .left .logo a {
  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: 60%;
  border-left: solid 1px;
}
.footer-menu .right .tit {
  border: 1px #c6a878 solid;
  padding: 0px 0;
  display: block;
  margin-bottom: 20px;
}
.footer-menu .right ul {
  padding-left: 20px;
}
.footer-menu .right li a {
  display: block;
  padding-left: 15px;
  position: relative;
}
.footer-menu .right li:last-of-type a {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.footer-menu .clinic {
  width: 100%;
  -ms-flex-item-align: center;
  align-self: center;
}
.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: 30px;
  bottom: 50px;
}
.totop a {
  display: block;
  width: 58px;
  height: 58px;
  position: relative;
  background: #fff;
  border: 1px solid #001e4c;
}
.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.136.249/html/images/01index/img030.png) center center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 599px) {
  .footer-menu {
    padding: 50px 0;
  }
  .footer-menu .left {
    width: 85%;
    margin: 0 auto;
  }
  .footer-menu .left .logo {
    width: 60%;
    margin: 0 auto 30px;
  }
  .footer-menu .right {
    width: 95%;
  }
  .footer-menu .right ul {
    padding-left: 10px;
  }
  .footer-menu .right li a {
    padding-bottom: 0;
    font-size: 12px;
  }
  .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;
  }
}
/*--under--*/
.under-header h1 a {
  padding-bottom: 40px;
}
.under-mainimg {
  width: 100%;
  position: relative;
  background: #fff;
}
.under-mainimg img {
  opacity: 0.3;
}
.under-mainimg h2 {
  font-size: 44px;
  line-height: 150%;
  position: absolute!important;
  left: 20%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.under-mainimg h2 .min {
  left: 200%;
}
@media only screen and (max-width: 1024px) {
  .under-mainimg {
    margin-top: 0;
  }
  .under-mainimg h2 {
    left: 7%;
    font-size: 36px;
  }
}
@media only screen and (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: 16px;
  padding-left: 30px;
}
.pankuzu li:before {
  content: "";
  display: block;
  width: 7px;
  height: 10px;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/import/tenant_1/160.16.136.249/html/images/02about/img016.png) center center no-repeat;
  background-size: contain;
}
.pankuzu li:first-of-type {
  padding-left: 0;
}
.pankuzu li:first-of-type:before {
  display: none;
}
/*--about1--*/
.about1 h3 {
  font-size: 40px;
  line-height: 180%;
  margin-bottom: 3vw;
  letter-spacing: 5px;
  margin-top: 3vw;
}
.about1 h3 .big {
  font-size: 90px;
}
.about1 h3 .big .tu {
  margin-left: -20px;
}
@media only screen and (max-width: 599px) {
  .about1 h3 {
    font-size: 20px;
    letter-spacing: 3px;
  }
  .about1 h3 .big {
    font-size: 45px;
  }
  .about1 h3 .tu {
    margin-left: -10px;
  }
}
.about-link li {
  margin-bottom: 2%;
}
.about-link li a {
  display: block;
  padding: 0px 0;
  position: relative;
  font-size: 16px;
  height: 100%;
  min-height: 80px;
}
.about-link li a:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(/import/tenant_1/160.16.136.249/html/images/02about/img000.png) center center no-repeat;
  background-size: contain;
}
.about-link li a .text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.about01_list {
  margin: 150px 0;
}
.about01_list li:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
/*--cmn_list--*/
.cmn_list li {
  margin-bottom: 130px;
}
.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;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cmn_list .txt {
  font-size: 16px;
  line-height: 220%;
}
@media only screen and (max-width: 599px) {
  .cmn_list h4 {
    font-size: 20px;
    padding-left: 70px;
  }
  .cmn_list h4 .num {
    font-size: 50px;
  }
  .cmn_list li {
    margin-bottom: 50px;
  }
}
/*--about2----*/
.about2 {
  padding: 150px 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: 70px;
  margin-top: -140px;
}
.about2 .txt:after {
  content: "";
  display: block;
  position: absolute;
  width: 200vw;
  height: 100%;
  background: #001e4c;
  top: 0;
  left: -100%;
  z-index: -1;
}
/*--about3----*/
.about3 {
  padding: 0px 0 150px;
}
.about3 .heading1 {
  text-align: left;
  margin-bottom: 2vw;
}
/*--about4----*/
.about4 {
  padding: 120px 0 120px;
  position: relative;
}
.about4 .inner {
  position: relative;
  z-index: 1;
}
.about4 .heading1 {
  color: #001e4c;
}
.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.136.249/html/images/02about/img005.png) center center no-repeat;
  background-size: contain;
}
.about4 .txt {
  margin-top: 20px;
  font-size: 16px;
}
.about4 .box {
  background: #fff;
  border: 1px solid #001e4c;
  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 #001e4c 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 only screen and (max-width: 1024px) {
  .about01_list {
    margin-bottom: 100px;
  }
  .about2 {
    padding-top: 40px;
  }
  .about3 {
    padding-bottom: 100px;
  }
  .about4 {
    padding: 0px 0 100px;
  }
  .about4 .bkimg img {
    opacity: 1;
  }
}
@media only screen and (max-width: 599px) {
  .about01_list {
    margin: 50px 0;
  }
  .about2 {
    padding: 50px 0;
  }
  .about4 ul {
    width: 80%;
    margin: 40px auto;
  }
}
/*--common-bnr1--*/
.commonbnr1 {
  padding: 70px 0 50px;
}
.commonbnr1 .box {
  position: relative;
  background: #fff;
  border: 1px solid #001e4c;
  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.136.249/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 only screen and (max-width: 599px) {
  .commonbnr1 ul {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
/*--guide1--*/
.guide1 {
  padding: 150px 0 150px;
}
.guide1 .heading1 {
  text-align: left;
}
.guide1 dt {
  width: 15%;
  font-size: 18px;
}
.guide1 dd {
  width: 83%;
  font-size: 18px;
}
.guide1 ul {
  padding: 40px 0px 0px;
  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 only screen and (max-width: 1024px) {
  .guide1 {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 599px) {
  .guide1 {
    padding: 50px 0;
  }
  .guide1 dd {
    font-size: 14px;
    width: 100%;
  }
  .guide1 dt {
    font-size: 14px;
    width: 100%;
    padding-bottom: 2px;
  }
  .guide1 li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
/*--guide2--*/
.guide2 {
  padding: 65px 0;
}
.guide2 .heading1 {
  color: #fff;
  text-align: left;
  margin-bottom: 2vw;
}
.guide2 table {
  background: #fff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.guide2 th {
  padding: 20px 0;
  color: #c6a878;
}
.guide2 td {
  width: 10%;
}
.guide2 th,
.guide2 td {
  font-size: 24px;
  text-align: center;
  border-bottom: 1px solid #f99355;
}
.guide2 .comment {
  text-align: right;
  margin-top: 20px;
  display: block;
}
@media only screen and (max-width: 599px) {
  .guide2 {
    padding: 40px 0;
  }
  .guide2 th,
  .guide2 td {
    font-size: 16px;
  }
}
/*--guide3--*/
.guide3 {
  padding: 150px 0;
}
.guide3 .heading1 {
  text-align: left;
  margin-bottom: 3vw;
}
.guide3 .txt {
  margin-bottom: 40px;
  font-size: 16px;
}
.guide3 dl {
  margin-bottom: 30px;
}
.guide3 dt {
  margin-bottom: 10px;
  font-size: 16px;
}
.guide3 dd {
  font-size: 16px;
}
.guide3 .map {
  margin-bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .guide3 {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 599px) {
  .guide3 {
    padding: 50px 0;
  }
}
/*--guide4--*/
.guide4 {
  padding: 150px 0;
}
.guide4 .heading1 {
  margin-bottom: 5vw;
}
.dl_list1 li {
  width: 46%;
  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 only screen and (max-width: 1024px) {
  .guide4 {
    padding: 0px 0 100px;
  }
}
@media only screen and (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 only screen and (max-width: 599px) {
  .guide5 h3 {
    margin-bottom: 40px;
  }
}
.dl_list2 li {
  margin-bottom: 100px;
}
@media only screen and (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 only screen and (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.136.249/html/images/04feature/img008.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}
.feature1 .heading1 {
  color: #001e4c;
}
/*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 only screen and (max-width: 599px) {
  .nayamilist1 .tit {
    font-size: 16px;
  }
  .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;
  line-height: 1.3;
}
.feature3 li {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .feature3 {
    padding: 100px 0 0px;
  }
}
@media only screen and (max-width: 599px) {
  .feature3 {
    padding: 50px 0 0px;
  }
  .feature3 .heading1 {
    margin-bottom: 30px;
  }
  .feature3 .heading2 {
    font-size: 18px;
  }
}
/*feature4*/
.feature4 {
  padding: 50px 0 150px;
}
.feature4 .heading1 {
  margin-bottom: 5vw;
}
.feature4 .heading3 {
  margin-bottom: 30px;
}
.feature4 li {
  margin-bottom: 100px;
}
.feature4 .pic {
  margin-bottom: 26px;
}
@media only screen and (max-width: 1024px) {
  .feature4 {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .feature4 .heading3 {
    margin-bottom: 18px;
  }
  .feature4 li {
    margin-bottom: 50px;
  }
}
/*gishi1*/
.gishi1,
.gishi3 {
  padding: 150px 0;
}
.gishi1 .pic,
.gishi3 .pic {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .gishi1,
  .gishi3 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 599px) {
  .gishi1,
  .gishi3 {
    padding: 50px 0;
  }
}
/*gishi2*/
.gishi2 li {
  margin-bottom: 130px;
}
.gishi2 h4 {
  font-size: 28px;
  margin-bottom: 30px;
  margin-top: 0px;
  display: block;
  padding-left: 100px;
  position: relative;
  line-height: 140%;
}
.gishi2 .num {
  font-size: 65px;
  padding-right: 5px;
  position: absolute;
  left: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.gishi2 .txt {
  font-size: 16px;
  line-height: 220%;
}
@media only screen and (max-width: 1024px) {
  .gishi2 li {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 599px) {
  .gishi2 h4 {
    font-size: 20px;
    padding-left: 60px;
  }
  .gishi2 h4 .num {
    font-size: 40px;
  }
  .gishi2 .heading1 {
    margin-bottom: 30px;
    font-size: 22px;
  }
}
.commonbnr2 .w100_bnr {
  position: relative;
  width: 95%;
  display: block;
  margin: 0 auto;
  border: 1px solid #001e4c;
  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.136.249/html/images/02about/img000.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}
@media only screen and (max-width: 599px) {
  .commonbnr2 .w100_bnr .tit {
    font-size: 16px;
    padding-right: 30px;
    left: 0;
  }
  .commonbnr2 .aspect.-ratio15:before {
    padding-top: 30%;
  }
}
/*souireba1*/
.souireba1 {
  padding: 150px 0;
}
.souireba1 .pic {
  margin-bottom: 30px;
}
.souireba1 .txt {
  font-size: 16px;
}
@media only screen and (max-width: 1024px) {
  .souireba1 {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 599px) {
  .souireba1 {
    padding: 50px 0;
  }
  .souireba1 .txt {
    font-size: 14px;
  }
}
/*check_list*/
.check_list {
  padding: 50px 0;
}
.check_list h3 {
  margin-bottom: 40px;
}
.check_list ul {
  display: block;
  max-width: 400px;
  width: 98%;
  margin: 0 auto;
}
.check_list li {
  padding-left: 20px;
  position: relative;
  color: #fff;
  margin-bottom: 15px;
  font-size: 17px;
}
.check_list li:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  left: 0;
  background: #fff;
}
.gishi3 h3 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .gishi3 h3 {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .gishi3 h3 {
    margin-bottom: 30px;
  }
}
/*merit_box*/
.merit_box ul {
  margin-bottom: 100px;
}
.merit_box h4 {
  margin-bottom: 60px;
  padding: 8px 0;
}
.merit_box dt {
  border-bottom: 1px solid #c6a878;
  padding-bottom: 8px;
  margin-bottom: 15px;
  letter-spacing: 2px;
  padding-left: 4px;
}
.merit_box dd {
  padding-left: 4px;
  line-height: 230%;
}
.merit_box dl {
  margin-bottom: 70px;
}
@media only screen and (max-width: 1024px) {
  .merit_box ul {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 599px) {
  .merit_box dl {
    margin-bottom: 50px;
  }
}
.flow1 {
  padding: 130px 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.136.249/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: 16px;
  line-height: 230%;
}
.flow2 {
  padding: 150px 0 110px;
}
.flow2 li {
  margin-bottom: 50px;
}
.flow2 dl {
  display: block;
  padding: 30px;
  background: #fff;
}
.flow2 .tit {
  text-align: center;
  margin-bottom: 20px;
}
.flow2 .txt {
  line-height: 230%;
}
.flow3 {
  padding: 150px 0 100px;
}
.flow3 .heading1 {
  margin-bottom: 5vw;
}
.flow4 {
  padding: 0px 0 150px;
}
.flow4 .heading1 {
  margin-bottom: 5vw;
}
.flow4 h4 {
  border-bottom: 1px solid #001e4c;
  padding-bottom: 15px;
  margin-bottom: 40px;
  color: #001e4c;
  text-align: left;
  font-size: 30px;
}
.flow4 .pic {
  margin-bottom: 30px;
}
.flow4 .txt {
  margin-bottom: 50px;
  font-size: 16px;
}
.flow4 .sign {
  text-align: right;
  display: inline-block;
  width: 100%;
}
.price1 {
  padding-bottom: 100px;
}
.price1 .tit {
  border-bottom: 1px solid #001e4c;
  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;
}
.bite4 {
  padding-bottom: 150px;
}
.access4 .tit {
  font-size: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid #001e4c;
  margin-bottom: 18px;
}
.access4 .en_list > li {
  margin-bottom: 80px;
}
.access4 .in_list > li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 190%;
}
.faq1 ul {
  margin-top: 150px;
}
.faq1 li {
  margin-bottom: 70px;
}
.faq1 .tit {
  position: relative;
  padding-left: 15px;
  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: #c6a878;
  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.136.249/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: 100px 0 150px;
}
.contact1 .table {
  width: 98%;
  max-width: 850px;
  margin: 0 auto;
}
.contact1 dl {
  margin-bottom: 40px;
}
.contact1 dt {
  width: 30%;
  line-height: 36px;
  font-size: 16px;
  position: relative;
}
.contact1 dd {
  width: 70%;
  position: relative;
}
.contact1 dd .size1 {
  background: #ddd;
  border: solid 1px #f99355;
  width: 100%;
  line-height: 36px;
}
.contact1 dd textarea {
  background: #ddd;
  border: solid 1px #f99355;
  width: 100%;
}
.contact1 dd label {
  padding-left: 5px;
  padding-right: 30px;
  font-size: 16px;
}
.contact1 button {
  background: #f99355;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 12px 0;
  font-size: 16px;
  position: relative;
  cursor: pointer;
  margin: 0 auto;
  margin-top: 20px;
  border: 0px;
  width: 98%;
  max-width: 186px;
}
.contact1 button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 10px;
  background: url(/import/tenant_1/160.16.136.249/html/images/16contact/img001.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}
.blog1 {
  padding: 60px 0 150px;
}
.blog1 .left li {
  margin-bottom: 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;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.blog1 .right .menu_ul {
  margin-bottom: 80px;
}
.blog1 .right dt {
  position: relative;
  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(/import/tenant_1/160.16.136.249/html/images/17blog/img005.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}
.blog1 .right dd li {
  padding-left: 30px;
  margin-bottom: 17px;
  position: relative;
}
.blog1 .right dd li:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 7px;
  height: 10px;
  background: url(/import/tenant_1/160.16.136.249/html/images/17blog/img006.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}
.blog1 .right dd li a {
  display: block;
  color: #001e4c;
  font-size: 16px;
}
.pagenav {
  margin-top: 100px;
  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 15px;
}
.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 5px 12px 20px;
  font-size: 16px;
  display: block;
  cursor: pointer;
  position: relative;
  text-align: center;
  color: #fff;
  background: #f99355;
}
.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.136.249/html/images/99blog_detail/img000.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}

.contact1 .back button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
  height: 10px;
  background: url(/upload/tenant_1/55dceb1d8172bd2099b6e9111b70c352.png) center center no-repeat;
  background-size: contain;
  z-index: 2;
}
