@charset "UTF-8";

/*============================
	index 共通
============================*/
/* btn ▼*/
html.active {
  overflow-y: hidden;
}

.section__ttl {
  font-size: 2.4rem;
  letter-spacing: 0.025em;
  text-align: center;
  white-space: nowrap;
}

.link__btn a {
  display: block;
  width: 330px;
  line-height: 70px;
  border-radius: 35px;
  background: url(../img/cmn/btn_arw.png) no-repeat center right 10%/10%, #ffb018;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  margin: 0 auto;
  transition: 0.5s;
}

.link__btn a:hover {
  opacity: 0.8;
  background-position: center right 8%;
}

@media screen and (max-width: 1040px) {
  .section__ttl {
    font-size: 2rem;
  }

  .link__btn a {
    display: block;
    width: 280px;
    line-height: 60px;
    border-radius: 30px;
    background: url(../img/cmn/btn_arw.png) no-repeat center right 10%/10%, #ffb018;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .section__ttl {
    font-size: 1.6rem;
  }

  .link__btn a {
    display: block;
    width: 240px;
    line-height: 45px;
    letter-spacing: 0.1em;
    border-radius: 22px;
    background: url(../img/cmn/btn_arw.png) no-repeat center right 10%/10%, #ffb018;
    font-size: 1.4rem;
  }
}

/*============================
	kv
============================*/
.kv {
  padding: 0 5%;
  z-index: 9;
  max-width: 1920px;
  margin: 0 auto;
}

/* .kv__img img {
    object-fit: cover;
    width: 100%;
    height: calc(100vh - 110px);
} */

.kv__copy {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 99;
  top: 50%;
  left: 25%;
  width: 33%;
  max-width: 644px;
}

.kv__scroll {
  bottom: 60px;
  left: 80%;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  z-index: 99;
  color: #fff;
  position: absolute;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

.kv__scroll::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 60px;
  background: #fff;
  left: 0;
  top: 0;
  animation: scrollAnime 2s 0s infinite;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

@keyframes scrollAnime {
  0% {
    height: 40px;
  }

  50% {
    height: 60px;
  }

  100% {
    height: 40px;
  }
}

/* .mv__scroll::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0px 0 15px 10px;
    border-color: transparent transparent transparent #ffffff;
    left: 45%;
    bottom: 0;
} */

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  left: -25%;
  bottom: 2%;
  z-index: 99;
}

.slick-dots li {
  width: 30px;
}

.slick-dots li button:before {
  content: "●";
  width: 7px;
  height: 7px;
  font-size: 10px;
  color: #ccc;
  opacity: 0.8;
}

.slick-dots li.slick-active button:before {
  color: #ffb018;
}

/* スライド slick fade*/
/* 
.slide-animation img {
    animation: fadezoom 8s 0s forwards;
} */

@keyframes fadezoom {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 1040px) {
  .kv {
    margin-top: 62px;
  }

  .kv__copy {
    top: 50%;
    left: 25%;
    width: 33%;
  }

  .kv__img img {
    object-fit: cover;
    height: auto;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .kv {
    margin-top: 52px;
    padding: 0 3%;
  }

  .kv__img.pc {
    display: none;
  }

  .kv__img.sp {
    display: block;
  }

  .kv__img img {
    object-fit: cover;
    width: 100%;
    height: auto;
    object-position: center center;
  }

  .kv__copy {
    top: 50%;
    left: 30%;
    width: 40%;
  }

  .slick-dots {
    bottom: -5%;
    left: -25%;
  }

  .slick-dots li {
    width: 15px;
  }

  .kv__scroll {
    bottom: -40px;
    left: 50%;
    font-size: 1.2rem;
  }

  .kv__scroll::before {
    width: 1px;
    height: 30px;
    left: 50%;
    bottom: 20px;
    animation: scrollAnime 2s 0s infinite;
  }

  @keyframes scrollAnime {
    0% {
      height: 20px;
    }

    50% {
      height: 40px;
    }

    100% {
      height: 20px;
    }
  }
}

/*============================
	greeting
============================*/
.greeting {
  padding: 320px 0 100px;
  background: url(../img/top/bg_greeting.jpg) no-repeat center center/cover;
  margin-top: -120px;
}

.greeting .section__ttl {
  margin-bottom: 70px;
}

.greeting .section__ttl img {
  display: block;
  max-width: 658px;
  margin: 0 auto 20px;
}

.greeting__txt {
  font-size: 2rem;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 2;
  margin-bottom: 80px;
}

@media screen and (max-width: 1040px) {
  .greeting {
    padding: 180px 0 80px;
    background: url(../img/top/bg_greeting.jpg) no-repeat center center/cover;
    margin-top: -120px;
  }

  .greeting .section__ttl {
    margin-bottom: 40px;
  }

  .greeting .section__ttl img {
    display: block;
    max-width: 658px;
    width: 39%;
    margin: 0 auto 20px;
  }

  .greeting__txt {
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .greeting {
    padding: 120px 0 20px;
    background: url(../img/top/bg_greeting.jpg) no-repeat center center/cover;
    margin-top: -80px;
  }

  .greeting .section__ttl {
    margin-bottom: 30px;
  }

  .greeting .section__ttl img {
    width: 200px;
    margin: 0 auto 10px;
  }

  .greeting__txt {
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-align: left;
  }
}

/*============================
	recruit
============================*/
.recruit {
  padding: 100px 0 200px;
}

.recruit .inner {
  padding: 0 10%;
}

.recruit__bg {
  height: 1133px;
  position: relative;
}

.recruit__bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -1%;
  width: 102%;
  background: url(../img/top/bg_recruit.png) no-repeat center top/cover;
  z-index: -1;
}

.recruit .section__ttl {
  left: 3%;
  top: 170px;
}

.recruit .section__ttl img {
  width: 78px;
  margin-bottom: 20px;
  display: inline-block;
}

.recruit__img {
  max-width: 341px;
  width: 28%;
  top: -40px;
  right: 0;
}

.recruit__arw--top {
  max-width: 300px;
  min-width: 260px;
  width: 16%;
  top: -240px;
  left: 0;
}

.recruit__copy {
  padding-top: 180px;
  font-size: 4rem;
  letter-spacing: 0.2em;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: #90d600;
  font-weight: bold;
  text-shadow: -1px -1px 0 #fff, -1px 0 0 #fff, -1px 1px 0 #fff, 0 -1px 0 #fff, 0 1px 0 #fff, 1px -1px 0 #fff, 1px 0 0 #fff, 1px 1px 0 #fff;
}

.recruit__txt {
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 2;
  text-align: center;
  margin-bottom: 50px;
}

.recruit__flex {
  margin-bottom: 50px;
}

.recruit__item {
  width: 31%;
  background: #fff;
  padding: 50px 3% 40px;
  border-radius: 25px;
  position: relative;
}

.recruit__ttl--en {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  line-height: 1;
  top: -12px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  white-space: nowrap;
}

.recruit__h4 {
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 100px;
}

.recruit__item--txt {
  text-align: center;
  letter-spacing: 0.2em;
  margin: 0 auto;
}

.recruit__ico {
  top: 100px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
}

.recruit__dog {
  width: 15%;
  left: 10%;
  bottom: -90px;
  max-width: 287px;
}

.recruit__arw--btm {
  max-width: 375px;
  min-width: 325px;
  width: 20%;
  right: 5%;
  bottom: -100px;
}

@media screen and (max-width: 1040px) {
  .recruit {
    padding: 40px 0 120px;
  }

  .recruit .inner {
    padding: 0 0 0 10%;
  }

  .recruit__bg {
    height: auto;
    position: relative;
    padding: 180px 0 120px;
  }

  .recruit__bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -3%;
    width: 106%;
    background: url(../img/top/bg_recruit.png) no-repeat center top/cover;
    z-index: -1;
  }

  .recruit .section__ttl {
    left: 0;
    top: 170px;
  }

  .recruit .section__ttl img {
    width: 50px;
    margin-bottom: 20px;
    display: inline-block;
  }

  .recruit__img {
    width: 28%;
    top: -100px;
    right: 0;
  }

  .recruit__arw--top {
    min-width: 120px;
    width: 16%;
    top: -100px;
    left: 0;
  }

  .recruit__copy {
    padding-top: 0;
    font-size: 2.6rem;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
  }

  .recruit__txt {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
  }

  .recruit__flex {
    margin-bottom: 50px;
  }

  .recruit__item {
    width: 32%;
    background: #fff;
    padding: 40px 2% 30px;
    border-radius: 25px;
    position: relative;
  }

  .recruit__ttl--en {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    line-height: 1;
    top: -6px;
    left: 50%;
  }

  .recruit__h4 {
    font-size: 1.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 100px;
  }

  .recruit__item--txt {
    font-size: 1.4rem;
  }

  .recruit__ico {
    width: 25%;
    top: 80px;
    left: 50%;
  }

  .item01 .recruit__ico {
    width: 15%;
  }

  .recruit__dog {
    width: 20%;
    left: 5%;
    bottom: -60px;
    max-width: 287px;
  }

  .recruit__arw--btm {
    max-width: 375px;
    min-width: 120px;
    width: 20%;
    right: 5%;
    bottom: -60px;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .recruit {
    padding: 20px 0 60px;
  }

  .recruit .inner {
    padding: 0 0 0 40px;
  }

  .recruit__bg {
    height: auto;
    position: relative;
    padding: 130px 0 100px;
  }

  .recruit__bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -5%;
    width: 110%;
    background: url(../img/top/bg_recruit.png) no-repeat center top/cover;
    z-index: -1;
  }

  .recruit .section__ttl {
    left: -2%;
    top: 140px;
  }

  .recruit .section__ttl img {
    width: 30px;
    margin-bottom: 10px;
    display: inline-block;
  }

  .recruit__img {
    width: 28%;
    top: 0;
    right: 0;
  }

  .recruit__arw--top {
    min-width: 80px;
    width: 16%;
    top: 0;
    left: 0;
  }

  .recruit__copy {
    padding-top: 0;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .recruit__txt {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-align: left;
  }

  .recruit__flex {
    margin-bottom: 30px;
  }

  .recruit__item {
    width: 100%;
    padding: 30px 2% 20px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .recruit__ttl--en {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    line-height: 1;
    top: -6px;
    left: 50%;
  }

  .recruit__h4 {
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    margin-bottom: 100px;
  }

  .recruit__item--txt {
    font-size: 1.2rem;
  }

  .recruit__ico {
    width: 20%;
    top: 60px;
    left: 50%;
  }

  .item01 .recruit__ico {
    width: 13%;
    top: 70px;
  }

  .recruit__dog {
    width: 25%;
    left: 3%;
    bottom: -10px;
  }

  .recruit__arw--btm {
    min-width: 80px;
    width: 20%;
    right: 3%;
    bottom: 20px;
  }
}

/*============================
	staff
============================*/
.staff {
  padding: 0 0 130px;
}

.staff .inner {
  padding: 0 10%;
}

.staff .section__ttl {
  top: 0;
  right: 3%;
}

.staff .section__ttl img {
  display: inline-block;
  width: 78px;
  margin-bottom: 20px;
}

.staff__flex--top {
  margin-bottom: 60px;
}

.staff__top--left {
  width: 52%;
}

.staff__top--right {
  width: 48%;
  padding: 0 0 0 3%;
}

.staff__copy {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  letter-spacing: 0.2em;
}

.staff__txt {
  letter-spacing: 0.2em;
  margin-bottom: 50px;
}

.staff .link__btn a {
  margin: 0 auto 0 0;
}

.staff__link {
  width: 48%;
  position: relative;
}

.staff__link a {
  display: block;
  width: 100%;
  height: 300px;
  border-radius: 25px;
  background: #88d60d;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  padding: 50px 0 0;
}

.link__entry a {
  background: #ffda47;
}

.staff__link--ico {
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 1040px) {
  .staff {
    padding: 0 0 80px;
  }

  .staff .inner {
    padding: 0 10% 0 0;
  }

  .staff .section__ttl {
    top: 0;
    right: 3%;
  }

  .staff .section__ttl img {
    width: 50px;
    margin-bottom: 20px;
  }

  .staff__flex--top {
    margin-bottom: 40px;
  }

  .staff__top--left {
    width: 50%;
  }

  .staff__top--right {
    width: 50%;
    padding: 0 0 0 3%;
  }

  .staff__copy {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
  }

  .staff__txt {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .staff .link__btn a {
    margin: 0 auto 0 0;
  }

  .staff__link {
    width: 48%;
    position: relative;
  }

  .staff__link a {
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 20px;
    font-size: 2.4rem;
    padding: 20px 0 0;
  }

  .staff__link--ico {
    width: 25%;
    top: 60%;
    left: 50%;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .staff {
    padding: 0 0 60px;
  }

  .staff .inner {
    padding: 0 40px 0 0;
  }

  .staff .section__ttl {
    top: 0;
    right: 3%;
  }

  .staff .section__ttl img {
    width: 30px;
    margin-bottom: 10px;
  }

  .staff__flex--top {
    margin-bottom: 30px;
  }

  .staff__top--left {
    width: 100%;
    margin-bottom: 20px;
  }

  .staff__top--right {
    width: 100%;
    padding: 0;
  }

  .staff__copy {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .staff__txt {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .staff .link__btn a {
    margin: 0 auto 0 0;
  }
  .staff__flex--btm {
    display: flex;
  }
  .staff__link {
    width: 48%;
  }

  .staff__link a {
    display: block;
    width: 100%;
    height: 120px;
    border-radius: 10px;
    font-size: 1.8rem;
    padding: 10px 0 0;
  }

  .staff__link--ico {
    width: 25%;
    top: 60%;
    left: 50%;
  }
}

/*============================
	info
============================*/
.info {
  padding: 110px 0;
  background: #fff6dc;
}

.info .section__ttl {
  margin-bottom: 60px;
}

.info .section__ttl img {
  max-width: 350px;
  margin-right: 20px;
}

.info__dl {
  max-width: 930px;
  margin: 0 auto 60px;
}

.info__dt {
  font-weight: bold;
  letter-spacing: 0.04;
  float: left;
  clear: both;
  position: relative;
}

.info__dd {
  font-weight: bold;
  letter-spacing: 0.075em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0 30px 120px;
}

@media screen and (max-width: 1040px) {
  .info {
    padding: 80px 0;
  }

  .info .section__ttl {
    margin-bottom: 40px;
  }

  .info .section__ttl img {
    width: 40%;
    max-width: 500px;
    margin-right: 20px;
  }

  .info__dl {
    margin: 0 auto 40px;
  }

  .info__dt {
    font-size: 1.4rem;
    float: left;
    clear: both;
  }

  .info__dd {
    font-size: 1.4rem;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 20px 120px;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .info {
    padding: 60px 0;
  }

  .info .section__ttl {
    margin-bottom: 30px;
  }

  .info .section__ttl img {
    width: 130px;
    margin-right: 10px;
  }

  .info__dl {
    margin: 0 auto 30px;
  }

  .info__dt {
    font-size: 1.2rem;
    float: none;
  }

  .info__dd {
    font-size: 1.21rem;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 16px 0;
  }
}

/*============================
	company
============================*/
.company {
  background: url(../img/top/bg_company.jpg) no-repeat center center/cover;
}

.company__ttl01 {
  max-width: 554px;
  margin: 0 0 150px auto;
}

.company__copy {
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 0.18em;
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
}

.company__btn a {
  display: block;
  width: 200px;
  line-height: 60px;
  border: solid 1px #fff;
  color: #fff;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.18em;
  border-radius: 30px;
  margin: 0 auto 110px;
  transition: 0.5s;
}

.company__btn a:hover {
  opacity: 0.8;
  background: #fff;
  color: #ffb018;
}

.company__ttl02 {
  max-width: 832px;
}

@media screen and (max-width: 1040px) {
  .company__ttl01 {
    width: 40%;
    margin: 0 0 80px auto;
  }

  .company__copy {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }

  .company__btn a {
    display: block;
    width: 180px;
    line-height: 50px;
    border-radius: 25px;
    margin: 0 auto 80px;
    font-size: 1.4rem;
  }

  .company__ttl02 {
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  .company__ttl01 {
    width: 50%;
    margin: 0 0 60px auto;
  }

  .company__copy {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .company__btn a {
    display: block;
    width: 160px;
    line-height: 45px;
    border-radius: 22px;
    margin: 0 auto 60px;
    font-size: 1.2rem;
  }

  .company__ttl02 {
    width: 70%;
  }
}

/*============================
	footer
============================*/

footer {
  padding: 50px 0 40px;
}

.ft__nav {
  max-width: 1030px;
  margin: 0 auto 50px;
}

.ft-nav__li {
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  padding: 0 2%;
  font-weight: 500;
  border-right: solid 1px #111;
}

.ft-nav__li:first-child {
  padding: 0 2% 0 0;
}

.ft-nav__li:last-child {
  padding: 0 0 0 2%;
  border: none;
}

.ft-nav__li a {
  width: 100%;
}

.ft__copyright {
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-align: center;
}

@media screen and (max-width: 1040px) {
  footer {
    padding: 40px 0 30px;
  }

  .ft__nav {
    max-width: 95%;
    margin: 0 auto 50px;
    flex-wrap: wrap;
  }

  .ft-nav__li {
    font-size: 1.2rem;
    padding: 0 2%;
    margin-bottom: 20px;
  }

  .ft-nav__li:first-child {
    padding: 0 2% 0 0;
  }

  .ft-nav__li:last-child {
    padding: 0 0 0 2%;
    border: none;
  }

  .ft-nav__li a {
    width: 100%;
  }

  .ft__copyright {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  footer {
    padding: 30px 0 20px;
  }

  .ft__nav {
    max-width: 100%;
    margin: 0 auto 30px 0;
  }

  .ft-nav__li {
    font-size: 1.2rem;
    padding: 0;
    margin-bottom: 12px;
    text-align: left;
    border: none;
  }

  .ft-nav__li:first-child {
    padding: 0;
  }

  .ft-nav__li:last-child {
    padding: 0;
    border: none;
  }

  .ft__copyright {
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-align: left;
  }
}

/*============================
	page top /side btn
============================*/
#page-top a {
  position: fixed;
  white-space: nowrap;
  text-align: center;
  width: 30px;
  display: block;
  margin: 0 auto;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}

#page-top {
  opacity: 0;
  transition: 0.5s;
}

#page-top.active {
  opacity: 1;
}

.side__btnwrap {
  position: fixed;
  width: 60px;
  right: 0;
  top: 20%;
}

.side__btn {
  background: #fff;
}

@media screen and (max-width: 1040px) {
  #page-top a {
    width: 25px;
  }
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 767px) {
  #page-top a {
    width: 20px;
    right: 10px;
    bottom: 10px;
  }
}

/*----------------------------
   strong  class="accent"
------------------------------*/
.accent {
  font-weight: bold;
  color: #ffb033;
}

/*----------------------------
   bread_crumb_list
------------------------------*/
.bread_crumb_list {
  font-size: 14px;
  color: #888;
  margin-bottom: 85px;
}
.bread_crumb {
  text-align: left;
  margin: 0 auto;
  padding-top: 15px;
  display: flex;
  justify-content: flex-start;
  max-width: 1200px;
}
.bread_crumb li {
  display: inline;
}
.bread_crumb li:after {
  content: ">";
  padding-left: 10px;
}
.bread_crumb li:last-child:after {
  content: "";
}
.bread_crumb li a {
  text-decoration: underline;
}
.bread_crumb li a:hover {
  text-decoration: none;
}
.bread_crumb li.current {
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .bread_crumb_list {
    margin-bottom: 30px;
    font-size: 13px;
  }
  .bread_crumb {
    padding-top: 5px;
  }
}

/*----------------------------
   sub_visual 
-----------------------------*/
#sub_visual {
  background: #ffb018;
  position: relative;
  width: 100%;
  margin: -60px auto 0;
  padding-top: 90px;
  padding-bottom: 90px;
  margin-top: 110px;
}
#sub_visual h2 {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  margin: 0;
  text-align: center;
}
#sub_visual h2 span {
  display: block;
  font-size: 60px;
  margin-bottom: 10px;
  letter-spacing: 8px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
#sub_visual h2 strong {
  letter-spacing: 7px;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 1040px) {
  #sub_visual {
    padding-top: 90px;
    padding-bottom: 90px;
    margin-top: 63px;
  }
}

@media screen and (max-width: 767px) {
  #sub_visual h2 {
    font-size: 20px;
    line-height: 0.8;
  }
  #sub_visual h2 span {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
  }
  #sub_visual h2 strong {
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 500;
  }
  #sub_visual {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 53px;
  }
}

/*----------------------------
   sub_contents 
-----------------------------*/
#sub_contents {
  padding-bottom: 120px;
  margin: 0 3%;
  border-bottom: solid 1px #dcdcdc;
}
#sub_contents section {
  max-width: 1200px;
  margin: 0 auto;
  background: none;
}
#sub_contents p {
  font-size: 17px;
  color: rgb(0, 0, 0);
}
#sub_contents input,
select,
button {
  border: 0;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  -ms-appearance: auto;
}
#sub_contents .sp {
  display: none;
}
#sub_contents .pc {
  display: block;
}
#sub_contents .mb10 {
  margin-bottom: 10px;
}
#sub_contents .mb30 {
  margin-bottom: 30px;
}
#sub_contents .mb30-02 {
  margin-bottom: 30px;
}
#sub_contents .mb50 {
  margin-bottom: 50px;
}
#sub_contents .mb80 {
  margin-bottom: 80px;
}
#sub_contents .mb100 {
  margin-bottom: 100px;
}
#sub_contents .flex-btw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#sub_contents .row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
#sub_contents .ulbox {
  font-size: 15px;
  margin: 0px 0px 10px 0px;
}
#sub_contents .ulbox li {
  padding: 5px 0px;
  list-style-type: disc;
  overflow: visible;
  list-style-position: inside;
  margin-left: 1.4em;
  text-indent: -1.4em;
}
#sub_contents .pc_vw {
  display: contents;
}
#sub_contents .sub__ttl02 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 30px;
}
#sub_contents .sub__ttl02 span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #8b8b8b;
}
#sub_contents .ttl01 span {
  font-size: 40px;
  font-weight: bold;
  color: #ffb018;
  font-family: "Montserrat", sans-serif;
  text-align: center;
}
#sub_contents .ttl01 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  line-height: 1.3;
}
#sub_contents .flex__photo {
  width: 40%;
}
#sub_contents .flex__txt {
  width: 55%;
}
#sub_contents table.tbl_company {
  width: 100%;
  border-spacing: 0px;
  border-collapse: collapse;
}
#sub_contents table.tbl_company th {
  border: 1px solid #dfdfdf;
  width: 30%;
  padding: 20px 20px 20px 20px;
  background: #ffb018;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}
#sub_contents table.tbl_company td {
  border: 1px solid #ccc;
  padding: 20px 36px 20px 35px;
  line-height: 1.5;
}
#sub_contents table.tbl_company td a {
  text-decoration: underline;
  color: #ffb018;
}
#sub_contents table.tbl_company td a.tel {
  color: inherit;
}
#sub_contents table.tbl_company td .td-sub {
  font-size: 14px;
  line-height: 1.4;
}
#sub_contents .ttl02 {
  position: relative;
  color: #333;
  font-size: 30px;
  margin-left: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  z-index: 1;
}
#sub_contents .ttl02::before {
  content: "";
  position: absolute;
  background: #a8ff9d;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%; /* border: dashed 1px white; */
  left: -15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
#sub_contents .ttl02-2 {
  position: relative;
  color: #333;
  font-size: 30px;
  margin-left: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  z-index: 1;
}
#sub_contents .ttl02-2::before {
  content: "";
  position: absolute;
  background: #a8ff9d;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%; /* border: dashed 1px white; */
  left: -15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}
#sub_contents .topic {
  font-size: 19px;
  text-align: center;
}
#sub_contents .topic-ttl {
  font-size: 3rem;
  text-align: center;
  color: #ffb033;
}
#sub_contents .flex-nml {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  #sub_contents p {
    font-size: 14px;
    color: rgb(0, 0, 0);
    line-height: 1.5;
  }
  #sub_contents .pc_vw {
    display: none;
  }
  #sub_contents .sp {
    display: block;
  }
  #sub_contents .pc {
    display: none;
  }
  #sub_contents {
    padding-bottom: 50px;
    margin: 0 3%;
  }
  #sub_contents .mb30 {
    margin-bottom: 20px;
  }
  #sub_contents .mb30-02 {
    margin-bottom: 25px;
  }
  #sub_contents .mb50 {
    margin-bottom: 30px;
  }
  #sub_contents .mb80 {
    margin-bottom: 40px;
  }
  #sub_contents .mb100 {
    margin-bottom: 50px;
  }
  #sub_contents .ulbox li {
    line-height: 1.5;
  }
  #sub_contents .sub__ttl02 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  #sub_contents .sub__ttl02 span {
    font-size: 1.3rem;
    font-weight: bold;
    color: #8b8b8b;
  }
  #sub_contents .ttl01 span {
    font-size: 25px;
    font-weight: bold;
    color: #ffb018;
    font-family: "Montserrat", sans-serif;
    text-align: center;
  }
  #sub_contents .ttl01 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    line-height: 1.3;
  }
  #sub_contents .flex__photo {
    width: 100%;
    margin-bottom: 15px;
  }
  #sub_contents .flex__txt {
    width: 100%;
  }
  #sub_contents .ttl02 {
    position: relative;
    font-size: 20px;
    margin-left: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    z-index: 1;
  }
  #sub_contents .ttl02::before {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 50%;
    left: -8px;
  }
  #sub_contents .ttl02-2 {
    position: relative;
    font-size: 20px;
    margin-left: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    z-index: 1;
  }
  #sub_contents .ttl02-2::before {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: 25%;
    left: -8px;
  }
  #sub_contents .topic-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  #sub_contents .topic {
    font-size: 16px;
    text-align: left;
  }
}

/* page_navi
------------------------------*/
#sub_contents .wp-pagenavi {
  clear: both;
  text-align: center;
  margin: 0 auto;
}
#sub_contents .wp-pagenavi a,
.wp-pagenavi span {
  border-radius: 11px;
  line-height: 1.3;
  display: inline-block;
  color: #fff;
  background-color: #ffb018;
  border: 1px solid #ffb018;
  padding: 10px 12px;
  margin: 0 2px 5px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
}
#sub_contents .wp-pagenavi span.pages {
  display: none;
}
#sub_contents .wp-pagenavi a:hover {
  color: #fff;
  background-color: #ffb018;
}
#sub_contents .wp-pagenavi span.current {
  color: #fff;
  background-color: #ffb018;
  font-weight: bold;
  line-height: 1.3;
  border-radius: 11px;
}
@media screen and (max-width: 767px) {
  #sub_contents .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 1.3rem;
  }
}

/* privacy
----------------------------------- */
#sub_contents .p_ttl {
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  width: 100%;
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0px;
  letter-spacing: 0.05em;
}
#sub_contents .p_ttl:before {
  top: inherit;
  background: none;
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100px;
  height: 3px;
  left: 0%;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  background-color: #ffb018;
}
#sub_contents hr {
  border: 0.5px solid #ddd;
  margin: 70px auto 40px;
  border-bottom: none;
}

@media screen and (max-width: 767px) {
  #sub_contents .p_ttl {
    font-size: 19px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0px;
    letter-spacing: 0.05em;
  }
  #sub_contents .p_ttl:before {
    bottom: -6px;
    width: 70px;
    height: 3px;
    left: 0%;
  }
  #sub_contents hr {
    border: 0.5px solid #ddd;
    margin: 35px auto 20px;
  }
}

/* blog
----------------------------------- */
#sub_contents .info__dl {
  max-width: 1200px;
}
#sub_contents .n_img {
  max-width: 1000px;
  margin: 0 auto 30px;
}
#sub_contents .n_img img {
  max-width: 100%;
  width: auto;
}

@media screen and (max-width: 767px) {
  #sub_contents .info__dd {
    font-size: 14px;
  }
  #sub_contents .n_img {
    margin: 0 auto 15px;
  }
}
/*============================
    pagenation
============================*/
#sub_contents .pagenation .current span {
  display: inline-block;
  color: inherit;
  background-color: #ffb018;
  border: 1px solid #ffb018;
  color: #fff;
  font-weight: bold;
  padding: 0 10px;
  margin: 0 2px 5px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  transition: 0.4s;
}

#sub_contents .pagenation {
  text-align: center;
}

#sub_contents .pagenation li {
  display: inline;
}

#sub_contents .pagenation li a {
  display: inline-block;
  color: inherit;
  border: 1px solid #ffb018;
  color: #ffb018;
  padding: 0 10px;
  margin: 0 2px 5px;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  transition: 0.4s;
}

#sub_contents .pagenation li a:hover,
.pagenation li a:active {
  border: 1px solid;
  background: #ffb018;
  color: #fff;
  z-index: 10;
  font-weight: bold;
}
/* site map
----------------------------------- */
#sub_contents .btn-list-site {
  margin: 0 auto;
}
#sub_contents .btn-list-site .btn-cmn01 {
  width: 250px;
}
#sub_contents .btn-list-site article {
  width: 33%;
  margin-bottom: 30px;
}
#sub_contents .link__btn a {
  font-size: 17px;
}

@media screen and (max-width: 1089px) {
  #sub_contents .btn-list-site article {
    width: 45%;
    margin-bottom: 30px;
  }
  #sub_contents .btn-list-site .btn-cmn01 {
    width: 290px;
  }
}
@media screen and (max-width: 767px) {
  #sub_contents .btn-list-site article {
    width: 100%;
    margin-bottom: 30px;
  }
  #sub_contents .btn-list-site .btn-cmn01 {
    width: 350px;
  }
  #sub_contents .link__btn a {
    font-size: 15px;
    width: 280px;
  }
}

/* require 募集要項 .msg-box
----------------------------------- */
#sub_contents .msg-box .flex__photo {
  width: 30%;
}
#sub_contents .msg-box .flex__photo img {
  border-radius: 50%;
}
#sub_contents .msg-box .flex__txt {
  width: 63%;
}
#sub_contents .topic_msg {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
#sub_contents .msg-box {
  max-width: 1000px;
  margin: 0 auto;
  align-items: end;
}
#sub_contents .p_msg {
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
#sub_contents .p_msg02 {
  line-height: 1.3;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #686868;
  text-align: right;
}
#sub_contents .p_access {
  font-size: 15px;
  line-height: 1.3;
}
#sub_contents .access_map {
  margin-bottom: 10px;
}
#sub_contents .access_map iframe {
  max-width: 100%;
}
#sub_contents .map-box .flex__img {
  width: 31%;
}
#sub_contents .map-box .flex__map {
  width: 65%;
}
#sub_contents .welfare-sub {
  text-decoration: underline;
  text-decoration-thickness: from-font;
}
#sub_contents .welfare-sub:hover {
  opacity: 0.5;
}
#sub_contents .btn-list-site02 {
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #sub_contents .msg-box .flex__photo {
    width: 65%;
    margin: 0 auto 30px;
  }
  #sub_contents .msg-box .flex__txt {
    width: 100%;
  }
  #sub_contents .topic_msg {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  #sub_contents table.tbl_company th {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    display: block;
  }
  #sub_contents table.tbl_company td {
    padding: 10px;
    line-height: 1.5;
    display: block;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: none;
    border-bottom: none;
  }
  #sub_contents table.tbl_company tbody {
    border-bottom: 1px solid #ccc;
  }
  #sub_contents .p_access {
    font-size: 14px;
    line-height: 1.1;
  }
  #sub_contents .map-box .flex__img {
    width: 100%;
    margin-bottom: 20px;
  }
  #sub_contents .map-box .flex__map {
    width: 100%;
  }
  #sub_contents .btn-list-site02 article {
    width: 100%;
    margin-bottom: 20px;
  }
  #sub_contents #r_01,
  #r_02 {
    padding-top: 60px;
    margin-top: -60px;
  }
}

/*--------------モーダルウィンドウ----------------*/
.modal_wrap input {
  display: none;
}

.modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.modal_content {
  position: relative;
  align-self: center;
  width: 60%;
  max-width: 80%;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  background: #fff;
  line-height: 1.4em;
  transition: 0.5s;
  max-height: 90%;
  overflow-y: auto;
}

.close_button {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
}

.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.open_button {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 30px;
  margin: auto;
  padding: 8px 16px;
  color: #444;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  cursor: pointer;
}
.modal_ttl {
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 35px;
  width: 100%;
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0px;
  letter-spacing: 0.05em;
}
.modal_ttl:before {
  top: inherit;
  background: none;
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100px;
  height: 3px;
  left: 0%;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  background-color: #0066ff;
}
.ulbox_safty {
  font-size: 1.5rem;
  margin: 0px 0px 10px 0px;
  padding-left: 20px;
}
.ulbox_safty li {
  padding: 5px 0px;
  list-style-type: disc;
  overflow: visible;
  list-style-position: outside;
  margin: 0;
  width: 100%;
  font-size: 1.5rem;
}
.modal_02 {
  font-weight: bold;
  font-size: 17px !important;
  padding-left: 20px;
}
.modal_02::before {
  margin-right: 10px;
  font-size: 11px;
  color: #606266;
  text-indent: -1px;
  content: "■";
  margin-left: -2rem;
}

@media screen and (max-width: 767px) {
  .modal_content {
    position: relative;
    align-self: center;
    width: 80%;
    max-width: 80%;
  }
}

/* recruit 採用詳細 
----------------------------------- */
#sub_contents .recruit_box {
  display: block;
  padding: 18px 15px 0px;
  position: relative;
  margin-bottom: 20px;
  background-color: #f7f7f2;
}
#sub_contents .recruit_box .box-ttl {
  margin: 15px auto;
  text-align: left;
  line-height: 1;
  font-size: 23px;
  font-weight: 600;
  text-align: left;
  position: absolute;
  top: -26px;
  color: #87dbbe;
}
#sub_contents .topic_r {
  text-align: center;
  font-size: 26px;
}
#sub_contents .accent_r {
  font-weight: bold;
  color: #ffb033;
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  #sub_contents .accent_r {
    font-weight: bold;
    font-size: 15px;
  }
}

/* facility
----------------------------------- */
#sub_contents .flow_ttl {
  line-height: 1.3;
  font-size: 1.8rem;
  color: #ffb018;
  margin-bottom: 15px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1.3px;
  padding-top: 5px;
  background: #fff;
}
#sub_contents .flow_time {
  letter-spacing: 0.2em;
  width: 28%;
  padding: 15px 0;
  z-index: 1;
  font-size: 2.5rem;
  color: #ffb018;
  margin-right: 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  display: inline-block;
  background: #fff;
}
#sub_contents .flow_time span {
  font-size: 1.8rem;
}
#sub_contents .flow_time::after {
  position: absolute;
  content: "";
  background: #ffb018;
  width: 2px;
  height: 290px;
  left: 46px;
  bottom: -290px;
  z-index: -1;
  background-size: contain;
}
#sub_contents .flow_time.last::after {
  display: none;
}
#sub_contents .flow_ttl02 {
  font-size: 3rem;
  font-weight: bold;
}
#sub_contents .flow_p {
  padding: 20px 30px;
  border: solid 1px #ffb018;
  position: relative;
  background: #fff;
  z-index: 1;
  border-radius: 10px;
}
#sub_contents .flow_p::afte {
  position: absolute;
  content: "";
  background: #ffb018;
  width: 2px;
  height: 170px;
  left: 70px;
  bottom: -170px;
  z-index: -1;
  background-size: contain;
}
#sub_contents .flow_p.last::after {
  display: none;
}
#sub_contents .recruit_txt {
  font-size: 2rem;
  text-align: center;
  margin: 0 auto 100px;
  font-weight: 500;
}
#sub_contents .recruit_list {
  margin: 0 auto 80px;
}
#sub_contents .recruit_list article {
  width: 30%;
  display: block;
  padding: 15px;
  background: #fff6dc;
  position: relative;
  border-radius: 25px;
}
#sub_contents .recruit_list .nb__atc--ttl {
  margin: 15px auto;
  text-align: left;
  line-height: 1;
  font-size: 4rem;
  font-weight: 600;
  text-align: left;
  position: absolute;
  top: -39px;
  color: #000077;
}
#sub_contents .recruit_list .nb__txt {
  font-size: 25px;
  line-height: 1.8;
  text-align: center;
  margin: 0 auto;
  color: #ffb018;
}
#sub_contents .recruit_list .nb__img {
  margin-bottom: 15px;
}
#sub_contents .recruit_list .nb__img img {
  border-radius: 25px;
}
#sub_contents .topic03 {
  font-size: 2.6rem;
  position: relative;
  text-align: center;
  z-index: 1;
}
#sub_contents .topic03::before {
  position: absolute;
  content: "";
  background: url(../img/cmn/hukidashi_01.png);
  left: 5%; /* bottom: -170px; */
  z-index: -1; /* background-size: contain; */
  width: 50px;
  height: 59px;
}
#sub_contents .topic03::after {
  position: absolute;
  content: "";
  background: url(../img/cmn/hukidashi_02.png); /* bottom: -170px; */
  z-index: -1; /* background-size: contain; */
  width: 61px;
  height: 59px;
  right: 5%;
}
#sub_contents .ff02 {
  display: flex;
  align-items: center;
}
#sub_contents .flow_list {
  align-items: center;
}
#sub_contents .ff03 {
  width: 55%;
  display: flex;
  flex-flow: column;
}
#sub_contents .flow_list .flex__txt {
  width: 100%;
}
#sub_contents .flow_list .ff-txt {
  width: 90%;
}
#sub_contents .flow_list .flex__photo {
  z-index: 2;
}
#sub_contents .flow_list .flex__photo img {
  border-radius: 25px;
}
#sub_contents .facility-flex .flex__photo img {
  border-radius: 25px;
}
#sub_contents .flow_time02 span {
  font-size: 1.8rem;
}
#sub_contents .flow_time02 {
  letter-spacing: 0.2em;
  width: 28%;
  padding: 5px 0 20px;
  z-index: 1;
  font-size: 2.5rem;
  color: #ffb018;
  margin-right: 0;
  font-family: "Montserrat", sans-serif;
  position: relative;
  display: inline-block;
  background: #fff;
}
#sub_contents .flow_time02::after {
  position: absolute;
  content: "";
  background: #ffb018;
  width: 2px;
  height: 20px;
  left: 46px;
  bottom: -5px;
  z-index: -1;
  background-size: contain;
}
#sub_contents .flow_time02.last::after {
  display: none;
}

/*タブ切り替え全体のスタイル*/
#sub_contents .tabs {
  margin-top: 50px;
  background-color: #fff;
  margin: 0 auto;
}
/*タブのスタイル*/
#sub_contents .tab_item {
  border-radius: 35px;
  margin-right: 10%;
  display: block;
  width: 45%;
  max-width: 100%;
  line-height: 55px;
  color: #ffb018;
  border: solid 1px #ffb018;
  position: relative;
  white-space: nowrap;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
  transition: 0.5s;
  background-color: #fff;
  float: left;
}
#sub_contents .tab_item2 {
  border-radius: 35px;
  margin-right: 0;
  display: block;
  width: 45%;
  max-width: 100%;
  line-height: 55px;
  color: #ffb018;
  border: solid 1px #ffb018;
  position: relative;
  white-space: nowrap;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0;
  transition: 0.5s;
  background-color: #fff;
  float: left;
}
#sub_contents .tab_item:hover {
  opacity: 0.75;
}
#sub_contents .tab_item2:hover {
  opacity: 0.75;
}
/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}
/*タブ切り替えの中身のスタイル*/
#sub_contents .tab_content {
  display: none;
  padding: 60px 0 0;
  clear: both;
  overflow: hidden;
}
/*選択されているタブのコンテンツのみを表示*/
#sub_contents #all:checked ~ #all_content,
#sub_contents #programming:checked ~ #programming_content,
#sub_contents #design:checked ~ #design_content {
  display: block;
}
/*選択されているタブのスタイルを変える*/
#sub_contents .tabs input:checked + .tab_item {
  background-color: #ffb018;
  color: #fff;
}
#sub_contents .tabs input:checked + .tab_item2 {
  background-color: #ffb018;
  color: #fff;
}
#sub_contents .flow_list .flex__txt {
  z-index: 1;
}

@media screen and (max-width: 767px) {
  #sub_contents .tab_item {
    border-radius: 35px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
    line-height: 55px;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0;
  }
  #sub_contents .tab_item2 {
    border-radius: 35px;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    line-height: 55px;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0;
  }
  #sub_contents .ff03 {
    width: 100%;
    display: flex;
    flex-flow: column;
  }
  #sub_contents .flow_time {
    font-size: 2rem;
    letter-spacing: 0.2em;
  }
  #sub_contents .flow_list .flex__photo {
    padding: 10px 0;
    background: #fff;
    margin-bottom: 0;
  }
  #sub_contents .flow_list {
    flex-direction: column-reverse;
  }
  #sub_contents .flow_ttl {
    font-size: 15px;
  }
  #sub_contents .flow_p {
    padding: 10px 20px;
  }
  #sub_contents .flow_list .flex__txt {
    margin-bottom: 10px;
  }
  #sub_contents .flow_time.last::after {
    display: block;
  }
  #sub_contents .recruit_list article {
    margin-bottom: 30px;
    width: 100%;
    display: block;
    padding: 15px;
    background: #fff6dc;
    position: relative;
    border-radius: 25px;
  }
  #sub_contents .recruit_list article:last-child {
    margin-bottom: 0;
  }
  #sub_contents .recruit_list .nb__txt {
    font-size: 18px;
    line-height: 1;
  }
  #sub_contents .recruit_list {
    margin: 0 auto 50px;
  }
  #sub_contents .topic03 {
    font-size: 1.5rem;
  }
  #sub_contents .topic03::before {
    left: 10px;
    width: 50px;
    height: 48px;
  }
  #sub_contents .topic03::after {
    width: 61px;
    height: 51px;
    right: 16px;
    top: 2px;
  }
  #sub_contents .flow_time02 {
    font-size: 2rem;
    letter-spacing: 0.2em;
  }
  #sub_contents .flow_time small {
    font-size: 1.4rem;
  }
  #sub_contents .flow_time::after {
    position: absolute;
    content: "";
    background: #ffb018;
    width: 2px;
    height: 240px;
    left: 46px;
    bottom: -230px;
    z-index: -1;
    background-size: contain;
  }
}

/* staff
----------------------------------- */
#sub_contents .staff_img {
  margin-bottom: 15px;
}
#sub_contents .n_staff {
  text-align: center;
  font-size: 20px;
}
#sub_contents .staff-detail .flex__txt .title {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 700;
  align-items: center;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
#sub_contents .staff-detail .flex__txt .title .en {
  background: #ffb018;
  color: #fff;
  font-size: 24px;
  padding: 7px 29px 8px 13px;
  font-weight: bold;
  width: 4%;
  line-height: 100%;
  position: relative;
  left: 0px;
  top: 0px;
  border-radius: 50%;
  margin-right: 10px;
}
#sub_contents .staff-detail .flex__txt dl + dl {
  margin-top: 3.15rem;
}
#sub_contents .staff-detail .flex__photo {
  width: 30%;
}
#sub_contents .staff-detail .flex__photo img {
  border-radius: 50%;
}
#sub_contents .staff-detail {
  padding: 50px 100px;
  background: #fffbf0;
  border-radius: 25px;
}

@media screen and (max-width: 767px) {
  #sub_contents .n_staff {
    font-size: 18px;
  }
  #sub_contents .staff-detail .flex__photo {
    width: 65%;
    margin: 0 auto 30px;
  }
  #sub_contents .staff-detail {
    padding: 20px 15px;
    background: #fffbf0;
    border-radius: 25px;
  }
  #sub_contents .staff-detail .flex__txt .title .en {
    font-size: 15px;
    padding: 6px 9px 6px 11px;
    width: 4%;
    line-height: 100%;
    left: 0px;
    top: 0px;
    margin-right: 10px;
  }
  #sub_contents .staff-detail .flex__txt .title .text {
    font-size: 19px;
  }
  #sub_contents .staff-detail .flex__txt .title {
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }
}

/*----------------------------
   contact
-----------------------------*/
#sub_contents.contact {
  background: #fff;
}
#sub_contents.contact .sp_br {
  display: none;
}
#sub_contents.contact .txtbox {
  text-align: center;
  margin-top: 50px;
  font-size: 20px;
  line-height: 1.8;
}
#sub_contents.contact .clrred {
  color: #cc0000;
}
#sub_contents.contact .txtbox p.text_c {
  padding-top: 30px;
  text-align: center;
  font-size: 20px;
  margin: 50px 0;
  background: #1a1a1a;
  color: #fff;
}
#sub_contents.contact .check_menu h3.tittle {
  font-size: 20px;
}
#sub_contents.contact .check_menu h3.tittle span {
  background: linear-gradient(transparent 70%, #ffff00 70%);
}
#sub_contents.contact .check_menu ul.check_box {
  margin: 20px 18em;
}
#sub_contents.contact .check_menu ul.check_box li {
  margin: 5px 0 5px 20px;
  list-style: none;
  padding: 0 0 0 30px;
  background: url(../img/contact/check01.png) no-repeat top 6px right 100%;
  text-align: start;
  font-size: 16px;
}
#sub_contents.contact .sec-contact__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 10em 0 10em;
}
#sub_contents.contact .sec-contact__dl > div {
  width: 390px;
  margin: 0 20px;
}
#sub_contents.contact .sec-contact__dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 72px;
  font-size: 26px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
#sub_contents.contact .sec-contact__dl dt:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 15px 0 15px;
  position: absolute;
  left: 50%;
  bottom: -2px;
  z-index: -2;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}
#sub_contents.contact .sec-contact__dl dt:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 14px 0 14px;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: -1;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
}
#sub_contents.contact .sec-contact__dl dt small {
  font-size: 24px;
}
#sub_contents.contact .sec-contact__line dt {
  background: #fff;
  border: 2px solid #00b900;
  color: #00b900;
}
#sub_contents.contact .sec-contact__line dt:before {
  border-color: #00b900 transparent transparent transparent;
}
#sub_contents.contact .sec-contact__line dt:after {
  border-color: #fff transparent transparent transparent;
}
#sub_contents.contact .sec-contact__line .line-btns {
  margin-top: 40px;
}
#sub_contents.contact .sec-contact__line .line-btns p {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0em;
}
#sub_contents.contact .sec-contact__line .cmn-btn a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 440px;
  height: 72px;
  max-width: 100%;
  background: #00b900;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  border-radius: 2rem;
  -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
#sub_contents.contact .sec-contact__line .cmn-btn a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 16px;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  right: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#sub_contents.contact .sec-contact__line dd {
  line-height: 1.5;
  font-size: 16px;
}
#sub_contents.contact .sec-contact__tel dt {
  background: #9f0004;
  color: #fff;
  border: 2px solid #9f0004;
}
#sub_contents.contact .sec-contact__tel dt:before {
  border-color: #9f0004 transparent transparent transparent;
}
#sub_contents.contact .sec-contact__tel dt:after {
  border-color: #9f0004 transparent transparent transparent;
}
#sub_contents.contact .sec-contact__tel .tel {
  font-size: 30px;
  letter-spacing: 0.04em;
}
#sub_contents.contact .sec-contact__tel .tel span {
  font-size: 20px;
  letter-spacing: 0.04em;
}
#sub_contents.contact .sec-contact__tel p.hours {
  margin: 10px;
  font-size: 18px;
}
#sub_contents.contact .sec-contact__tel dd {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}
#sub_contents.contact .mail-wrap {
  margin-top: 64px;
}
#sub_contents.contact .mail-wrap p {
  text-align: center;
}
#sub_contents.contact .mail-wrap .mail__ttl {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}
#sub_contents.contact .mail-wrap .mail__ttl span {
  display: inline-block;
  padding-left: 3.5rem;
  background: url(../img/icon_mail.png) no-repeat left center;
  background-size: 2rem;
}
#sub_contents.contact .defTable01 {
  margin: 3rem 0;
  border-collapse: collapse;
  width: 100%;
}
#sub_contents.contact .defTable01 tr {
  border-top: 1px dotted #dcdcdc;
  text-align: center;
}
#sub_contents.contact .defTable01 th {
  width: 26%;
  text-align: left;
}
#sub_contents.contact .defTable01 th,
#sub_contents.contact .defTable01 td {
  padding: 1em;
  text-align: start;
  vertical-align: middle;
}
#sub_contents.contact .defTable01 input,
select,
textarea {
  width: 100%;
  border: none;
  background: #eee;
  padding: 9px 20px;
  font-family: inherit;
  border-radius: 4px;
}
#sub_contents.contact .defTable01 input[type="num"] {
  width: 100%;
}
#sub_contents.contact .defTable01 input[name="address3"] {
  margin-top: 8px;
}
#sub_contents.contact .defTable01 textarea {
  min-height: 200px;
  max-height: 290px;
}
#sub_contents.contact .defTable01 td.cen input {
  padding: 10px;
  color: #000;
  font-size: 16px;
  width: 250px;
  background: #fff;
  cursor: pointer;
  border: 2px solid #ccc;
  display: block;
  margin: 0 auto 10px;
}
#sub_contents.contact input[type="radio"] + label,
input[type="checkbox"] + label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  cursor: pointer;
}
#sub_contents.contact input[type="radio"] {
  margin: 0;
  width: 3%;
}
#sub_contents.contact input[type="radio"] + label,
input[type="checkbox"] + label {
  padding: 0 0 0 24px;
  color: inherit;
}
#sub_contents.contact input[type="radio"] + label::before,
input[type="checkbox"] + label::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
}
#sub_contents.contact input[type="radio"] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}
#sub_contents.contact input[type="checkbox"] + label::before {
  border: 2px solid #ccc;
}
#sub_contents.contact input[type="radio"]:checked + label::after,
input[type="checkbox"]:checked + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
}
#sub_contents.contact input[type="radio"]:checked + label::after {
  margin-top: -4px;
  background: #b91515;
  border-radius: 8px;
  left: 5px;
  width: 8px;
  height: 8px;
}
#sub_contents.contact input[type="checkbox"]:checked + label:after {
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #b91515;
  border-bottom: 3px solid #b91515;
  transform: rotate(-45deg);
  left: 3px;
}
#sub_contents.contact input[type="hidden"][disabled],
#sub_contents.contact input[type="submit"][disabled] {
  opacity: 0.7;
  pointer-events: none;
}
#sub_contents.contact input[type="checkbox"] {
  width: 3%;
  appearance: auto;
}
#sub_contents .privacyBox {
  padding: 0px 20px 30px;
  width: calc(100% - 0px);
  height: 300px;
  overflow-y: scroll;
  margin-bottom: 20px;
  background: #fff;
  font-size: 90%;
  border: 1px solid #ddd;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#sub_contents .privacyBox p {
  font-size: 15px;
  line-height: 1.8;
}
#sub_contents .privacyBox .sub_ttl {
  margin: 20px 0px 15px 0px;
  font-size: 140%;
  padding: 2px 0px 2px 8px;
  border-left: 5px solid #198ce7;
  line-height: 120%;
  font-weight: bold;
}
#sub_contents.contact input[type="radio"] + label,
input[type="checkbox"] + label {
  padding: 0 0 0 24px;
  color: inherit;
}
#sub_contents.contact input[type="checkbox"]:checked + label::after {
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #b91515;
  border-bottom: 3px solid #b91515;
  transform: rotate(-45deg);
  left: 3px;
}
#sub_contents.contact .CheckboxInput {
  padding: 12px 8px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#sub_contents.contact .CheckboxInput-Input {
  margin: 0;
  width: 0;
  opacity: 0;
}
#sub_contents.contact .CheckboxInput:hover > .CheckboxInput-DummyInput {
  background: #f6f6f6;
}
#sub_contents.contact .CheckboxInput-Input:focus + .CheckboxInput-DummyInput {
  background: rgb(195, 195, 195);
}
#sub_contents.contact .CheckboxInput-Input:checked + .CheckboxInput-DummyInput {
  background: #555555;
}
#sub_contents.contact .CheckboxInput-Input:checked + .CheckboxInput-DummyInput::before {
  content: "";
  display: block;
  position: absolute;
  top: 30%;
  left: 62%;
  width: 35%;
  height: 2px;
  transform: translate(-5px, 6px) rotateZ(-135deg);
  transform-origin: 1px 1px;
  background: #ffffff;
}
#sub_contents.contact .CheckboxInput-Input:checked + .CheckboxInput-DummyInput::after {
  content: "";
  display: block;
  position: absolute;
  top: 31%;
  left: 63%;
  width: 70%;
  height: 2px;
  transform: translate(-5px, 6px) rotateZ(-45deg);
  transform-origin: 1px 1px;
  background: #ffffff;
}
#sub_contents.contact .CheckboxInput-DummyInput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #ddd;
}
#sub_contents.contact .CheckboxInput-LabelText {
  margin-left: 12px;
  display: block;
  font-size: 14px;
}
#sub_contents p.con_cen {
  border: 1px dashed #ffb018;
  text-align: center;
  padding: 30px 50px 30px;
  font-size: 16px;
  line-height: 180%;
  margin: 50px 0px 60px;
}
#sub_contents p.con_cen a {
  display: inline-block;
  margin: 15px 0px;
}
#sub_contents p.con_cen a.cc-tel {
  margin: 0;
  padding: 0;
  font-size: 38px;
  font-weight: normal;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}
#sub_contents p.con_cen a.cc-tel small {
  font-size: 20px;
}
#sub_contents p.con_cen span {
  font-size: 16px;
  color: #868686;
  display: block;
}
#sub_contents p.con_cen strong {
  font-size: 17px;
  color: #cc0000;
}
#sub_contents .agrBox a {
  font-weight: bold;
  color: #ffb018;
}
#sub_contents.contact .defTable01 td.cen input:hover {
  background: #000;
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 1;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out; /* transition: 0.3s ease-in-out; */
  color: #fff;
}

@media screen and (max-width: 767px) {
  #sub_contents.contact .sp_br {
    display: block;
  }
  #sub_contents p.con_cen a.cc-tel {
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-weight: normal;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
  }
  #sub_contents p.con_cen a.cc-tel small {
    font-size: 20px;
  }
  #sub_contents p.con_cen {
    text-align: center;
    padding: 25px 10px 25px;
    font-size: 14px;
    line-height: 180%;
    margin: 50px 0px 60px;
  }
  #sub_contents.contact .defTable01 th,
  #sub_contents.contact .defTable01 td {
    width: 100%;
    display: block;
  }
  #sub_contents.contact table.defTable01 th {
    padding: 10px 0 6px 0;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    text-align: left;
    font-size: 14px;
  }
  #sub_contents.contact .defTable01 td {
    padding: 8px 0;
    font-size: 15px;
  }
}

/* entrance page
-------------------------*/
.topmainbox-wrap {
  position: relative;
}
.topmainbox {
  width: calc(100% - 0px);
  margin: 0 auto 0 auto;
  /*
      height: calc(100vh - 0px);*/
}

#entrance-header {
  position: fixed;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0);
}

#entrance-header .hd__tel {
  margin-right: 40px;
}

.siteTitle {
  margin: 0 auto;
  text-align: left;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.center_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.topmainbox-wrap #main li {
  height: calc(100vh - 0px);
  max-height: 1000px;
}

.topmainbox-wrap #main li.main_l {
  background: url(../img/entrance/left.jpg) no-repeat left top;
  background-size: cover;
  width: 50%;
}
.topmainbox-wrap #main li.main_R {
  background: url(../img/entrance/right.jpg) no-repeat center top;
  background-size: cover;
  width: 50%;
}
.topmainbox-wrap .topmain-txt dt {
  position: absolute;
  top: 60%;
  left: 25%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 5;
  width: 50%;
}
.topmainbox-wrap .topmain-txt dt h2 {
  text-align: left;
  font-size: 3vw;
  line-height: 3rem;
  font-weight: lighter;
  font-weight: 400;
  text-align: center;
}
.topmainbox-wrap .topmain-txt dt h2 span {
  line-height: 4vw;
  padding: 0 10px;
  font-weight: bold;
  color: #7ebf02;
}

span.stroke {
  text-shadow: -1px -1px 0 #fff, -1px 0 0 #fff, -1px 1px 0 #fff, 0 -1px 0 #fff, 0 1px 0 #fff, 1px -1px 0 #fff, 1px 0 0 #fff, 1px 1px 0 #fff;
}

.topmainbox-wrap .topmain-txt dd {
  position: absolute;
  top: 60%;
  left: 75%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 5000;
  width: 50%;
}
.topmainbox-wrap .topmain-txt dd h2 {
  text-align: left;
  font-size: 3vw;
  line-height: 3rem;
  font-weight: lighter;
  font-weight: 400;
  text-align: center;
}
.topmainbox-wrap .topmain-txt dd h2 span {
  line-height: 4vw;
  padding: 0 10px;
  font-weight: bold;
  color: #ffb73b;
}

.entrance-ft {
  padding: 0em 0;
  margin-top: 0em;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.copyright {
  color: #fff;
}
.copyright address {
  font-style: normal;
  letter-spacing: 0.1em;
  font-size: 12px;
}
.copyright address a {
  color: #fff;
}

.btn01 {
  width: 95%;
  max-width: 200px;
  height: 60px;
  margin: 0 auto;
  margin-top: 2rem;
  border: 2px solid #fff;
  background: #7ebf02;
  background-repeat: no-repeat;
  background-position: 90% 50%;
  transition: 0.4s;
  border-radius: 35px;
}

.btn01 a {
  display: block;
  line-height: 57px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.btn-recruit {
  background: #ffb73b;
}

/* entrance blog
-------------------------*/

.news_box {
  position: absolute;
  background: rgb(255, 255, 255, 0.8);
  padding: 30px;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 60%;
  z-index: 999;
}
.news_box h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  letter-spacing: 0.1rem;
  margin-bottom: 6px;
  text-align: left;
}
.news_box h2 span {
  padding-left: 20px;
  font-size: 16px;
  vertical-align: middle;
  font-family: "Zen Maru Gothic", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "MS Ｐ明朝", "MS PMincho", serif;
}
.news_box-txt {
  width: 85%;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_box-list .date02 {
  width: 10%;
  line-height: 1.8;
}

/* entrance logo
-------------------------*/
.logo_img {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 20%;
  z-index: 999;
}

@media screen and (max-width: 1040px) {
  #entrance-header {
    box-shadow: none;
  }

  #entrance-header .hd__tel {
    margin-right: 0;
  }
}

@media screen and (max-width: 760px) {
  #entrance-header .pc {
    display: none;
  }

  .topmainbox-wrap #main li.main_l {
    width: 100%;
    height: 400px;
  }

  .topmainbox-wrap #main li.main_R {
    width: 100%;
    height: 400px;
    margin-bottom: 117px;
  }

  .siteTitle {
    margin-top: 20px;
  }

  .topmainbox-wrap .topmain-txt dt,
  .topmainbox-wrap .topmain-txt dd {
    width: 100%;
    left: 50%;
  }

  .topmainbox-wrap .topmain-txt dt {
    top: 35%;
  }

  .topmainbox-wrap .topmain-txt dd {
    top: 85%;
  }

  .btn01 {
    margin-top: 1rem;
  }

  .topmainbox-wrap .topmain-txt dt h2 span,
  .topmainbox-wrap .topmain-txt dd h2 span {
    font-size: 18px;
    line-height: normal;
  }

  .pc-nav {
    margin-top: -20px;
  }

  .news_box {
    width: 100%;
    padding: 10px;
    bottom: 85px;
    margin: 0 auto;
    display: block;
    border-bottom: solid 1px #ddd;
  }

  .news_box h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .news_box h2 span {
    font-size: 15px;
    padding-left: 0;
  }
  .news_box-list .date02 {
    width: 100%;
    text-align: left;
  }
  .logo_img {
    top: 41%;
    width: 62%;
    left: 50%;
  }
}
