@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;700&family=Noto+Serif+JP:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 500;
  font-style: normal;
  font-family: inherit;
}

img {
  vertical-align: top;
  max-width: 100%;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

a:hover img {
  opacity: 0.8;
}

.externalLinkIcon::after {
  content: url(../images/linkico.png);
  margin-left: 5px;
  margin-right: 3px;
  padding-right: 0;
  top: 2px;
  position: relative;
}

.externalLinkIcon:hover::after {
  content: url(../images/linkico_hover.png);
  margin-left: 5px;
  margin-right: 3px;
  padding-right: 0;
  top: 2px;
  position: relative;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-flex;
  vertical-align: -5px;
  margin-right: 5px;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
}

.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.66);
}

body {
  font-family: YakuHanJP, 'Noto Sans JP', "Yu Gothic", 游ゴシック, YuGothic, 游ゴシック体, sans-serif;
  font-size: 16px;
  color: #451700;
}

@media screen and (min-width:980px) {
  body {
    padding: 120px 0 0;
  }

  .br-pc {
    display: none;
  }

  /* ------------------------------------------------------------
    ヘッダー部分
------------------------------------------------------------ */
  header {
    background: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 11;
  }

  header .inner {
    height: 120px;
    padding: 0 60px;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }

  header .logo {
    line-height: 1.0;
  }

  header .logo a {
    display: inline-block;
    width: 238px;
    height: 30px;
  }

  header .logo a img {
    width: 100%;
    height: 100%;
  }

  header .menu {
    display: none;
  }

  header .openbtn {
    display: none;
  }

  header #gnav {
    height: 60px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -webkit-calc(30% - 60px);
    left: calc(30% - 60px);
    margin: auto;
  }

  header #gnav ul {
    display: -webkit-flex;
    display: flex;
  }

  header #gnav ul li:not(:last-of-type) {
    margin-right: 30px;
  }

  header #gnav ul li a {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 15px;
    line-height: 60px;
    display: inline-block;
    font-weight: bold;
    color: #451700;
    letter-spacing: 0.1em;
    position: relative;
  }

  header #gnav ul li a:hover:after {
    content: "";
    width: 100%;
    height: 3px;
    display: block;
    background: #9eb091;
    position: absolute;
    bottom: -10px;
  }

  header .sns {
    height: 15px;
    position: absolute;
    top: 0;
    right: 60px;
    bottom: 0;
    margin: auto;
  }

  header .sns ul {
    display: -webkit-flex;
    display: flex;
  }

  header .sns ul li:not(:last-of-type) {
    margin-right: 10px;
  }

  header .sns ul li a {
    width: 15px;
    height: 15px;
    display: block;
  }

  /* ------------------------------------------------------------
    フッター部分
------------------------------------------------------------ */
  .bottomOrder {
    background: url(../images/img_bottom_order.jpg);
    background-repeat: no-repeat;
    background-position: 50% 65%;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    position: relative;
    padding: 120px 0;
    text-align: center;
    z-index: 0;
  }

  .bottomOrder:before {
    content: "";
    background: rgba(15, 60, 60, 0.77);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .bottomOrder h2 {
    font-family: 'Noto Serif JP', sans-serif;
    color: #fff;
    font-size: 34px;
    font-weight: bold;
    margin: 0 0 40px;
  }

  .bottomOrder ul li {
    display: inline-block;
    width: 35vw;
  }

  .bottomOrder ul li a {
    font-family: 'Noto Serif JP', sans-serif;
    width: auto;
    line-height: 100px;
    display: block;
    border: #fff solid 2px;
    font-size: 24px;
    letter-spacing: 0.1em;
    font-weight: bold;
    color: #fff;
    transition: all 0.5s ease;
  }

  .bottomOrder ul li a:after {
    background: url(../images/arw_white.png) no-repeat center;
    content: "";
    background-size: 24px auto;
    -webkit-background-size: 24px auto;
    -moz-background-size: 24px auto;
    width: 24px;
    height: 100px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .bottomOrder ul li a:hover {
    color: #9eb091;
    background: #fff;
  }

  .bottomOrder ul li a:hover:after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 24px auto;
    -webkit-background-size: 24px auto;
    -moz-background-size: 24px auto;
  }

  footer {
    padding: 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    border-top: #ddd solid 1px;
  }



  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #333;
    opacity: 0.6;
    /*border-radius: 50%;*/
  }

  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }

  #page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: -5px;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }

  footer address {
    width: 30%;
  }

  footer address .externalLinkIcon::after {
    display: none;
  }

  footer address figure {
    margin: 0 0 20px;
    width: 278px;
    height: 35px;
  }

  footer address figure img {
    width: 100%;
    height: 100%;
  }

  footer address dl dt {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 18px;
    font-weight: bold;
  }

  footer address dl dd {
    margin: 20px 0 0;
  }

  footer address dl dd a {
    font-family: 'Noto Serif JP', sans-serif;
    color: #451700;
    text-decoration: underline;
  }

  footer address dl dd a:hover {
    text-decoration: underline;
    color: #9eb091;
  }

  footer address dl .telno {
    font-family: 'Noto Serif JP', sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #451700;
    /*letter-spacing: 0.1rem;*/
  }

  footer address dl .telno:before {
    background: url(../images/icon_tel.png) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    top: 3px;
    position: relative;
    margin: 0 10px 0 0;
  }

  /* ------------------------------------------------------------
    下部バナー部分
------------------------------------------------------------ */
  footer .bnrArea {
    width: 30%;
    padding: 60px 0;
  }

  footer .bnrArea ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }

  footer .bnrArea ul li {
    width: 320px;
    height: 100px;
    border: #ddd solid 1px;
  }

  footer .bnrArea ul li:not(:last-of-type) {
    margin-right: 20px;
  }

  footer .bnrArea ul li img {
    width: 100%;
    height: 100%;
  }

  footer .bnrArea a:hover img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
  }

  footer nav {
    width: 25%;
    margin-left: 15%;
  }

  footer nav ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  footer nav ul:not(.sns) li {
    width: 50%;
    margin: 0 0 30px;
    position: relative;
  }

  footer nav ul:not(.sns) li a {
    font-family: 'Noto Serif JP', sans-serif;
    color: #451700;
    font-weight: bold;
    margin-left: 10px;
    font-size: 0.9rem;
  }

  footer nav ul:not(.sns) li a:hover {
    color: #9eb091;
  }

  footer nav ul:not(.sns) li a:before {
    background: #451700;
    content: "";
    width: 5px;
    height: 1px;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }

  footer nav .sns {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    margin: 20px 0 0;
  }

  footer nav .sns li:not(:last-of-type) {
    margin-right: 10px;
  }

  footer nav .sns li a {
    width: 20px;
    height: 20px;
    display: block;
  }

  footer .copyright {
    position: absolute;
    line-height: 20px;
    right: 150px;
    bottom: 60px;
  }

  article {
    /*margin: 0 0 90px;*/
    line-height: 1.8;
  }

  /* ------------------------------------------------------------
    トップページ部分
------------------------------------------------------------ */
  .topImage {
    margin: 0 0 60px;
    padding: 0 0 130px;
    position: relative;
  }

  .topImage:before {
    background: #f4f2ee;
    content: "";
    width: 100%;
    height: 320px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    border-radius: 0 50% 0 0;
  }

  /*.topImage:after{
  content: "";
    width: 0;
    height: 0;
    border-left: 115px solid transparent;
    border-top: 120px solid #f4f2ee;
    border-right: 115px solid transparent;
    position: absolute;
    right: 0;
    bottom: -120px;
    left: 0;
    margin: auto;
  z-index: -1;
}*/
  .topImage figure {
    width: 80%;
    /*height: 575px;*/
    height: 75vh;
    margin-left: -webkit-calc(20% - 60px);
    margin-left: calc(20% - 60px);
    overflow: hidden;
    position: relative;
  }

  .topImage figure img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .topImage .catchphrase {
    position: absolute;
    bottom: 190px;
    left: 60px;
    text-shadow: 1px 1px 0 #fff;
    z-index: 1;
  }

  .topImage .catchphrase h2 {
    font-family: 'Noto Serif JP', sans-serif;
    display: inline;
    font-size: 3.4rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin: 20px 0;
    padding: 5px;
    background: linear-gradient(transparent 0%, #fff 0%);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    border-radius: 0 20px 0 0;
  }

  .topImage .catchphrase small {
    font-size: 30px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.1em;
  }

  .ttlTop {
    line-height: 1.0;
    letter-spacing: 0.1em;
    margin: 0 0 45px;
  }

  .ttlTop h2 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 60px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .ttlTop small {
    font-family: 'Noto Serif JP', sans-serif;
    color: #9eb091;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #9eb091 solid 3px;
    padding: 0 0 10px;
  }

  .btnMore {
    margin: 30px 0 0;
    width: 270px;
    height: 60px;
  }

  .btnMore a {
    font-family: 'Noto Serif JP', sans-serif;
    color: #9eb091;
    width: auto;
    line-height: 60px;
    border: #9eb091 solid 1px;
    border-radius: 0 30px 0 30px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.5s ease;
  }

  .btnMore a:after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 60px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .btnMore a:hover {
    background: #9eb091;
    color: #fff;
  }

  .btnMore a:hover:after {
    background: url(../images/arw_white.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
  }

  .btnarrow {
    font-family: 'Noto Serif JP', sans-serif;
    position: relative;
    display: inline-block;
    margin-top: 20px;
    padding: 0 20px 0 0;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    outline: none;
  }

  .btnarrow::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
    transition: all .3s;
  }

  .btnarrow::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 15px;
    height: 2px;
    background: #333;
    transform: rotate(35deg);
    transition: all .3s;
  }

  .btnarrow:hover::before {
    left: 20%;
  }

  .btnarrow:hover::after {
    right: -20%;
  }

  .messageTop {
    margin: 120px 0;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    z-index: 0;
  }

  .messageTop::before {
    background: #f4f2ee;
    content: "";
    width: 100%;
    height: 45vh;
    position: absolute;
    top: -120px;
    left: 0;
    z-index: -1;
  }

  .messageTop__txtarea {
    width: 50%;
    padding: 0 120px;
    box-sizing: border-box;
    line-height: 2.25;
  }

  .messageTop__txtarea__txt+.messageTop__txtarea__txt {
    margin-top: 20px;
  }

  .messageTop__image {
    width: 50%;
    position: relative;
  }

  .messageTop .p-name {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px;
    bottom: 0;
    right: 0;
  }

  .serviceTop {
    margin: 120px 0;
    /* 0 0 90px; */
    margin: 0 0 0 60px;
    padding: 0 120px 120px 60px;
    position: relative;
  }

  .serviceTop::before {
    background: #f4f2ee;
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 100px 0 0 0;
  }

  .serviceTop__txt {
    width: 50%;
  }

  .serviceTop__list {
    margin: 60px 0 0;
    counter-reset: number 0;
  }

  .serviceTop__list__item {
    display: -webkit-flex;
    display: flex;
  }

  .serviceTop__list__item:nth-of-type(n+2) {
    margin-top: 120px;
  }

  .serviceTop__list__item figure {
    width: 60%;
  }

  .serviceTop__list__item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .serviceTop__list__item:nth-of-type(2n+1) figure {
    -webkit-order: 3;
    order: 3;
  }

  .serviceTop__list__item__txtarea {
    width: 40%;
    box-sizing: border-box;
  }

  .serviceTop__list__item:nth-of-type(2n+1) .serviceTop__list__item__txtarea {
    padding: 60px 60px 60px 0;
  }

  .serviceTop__list__item:nth-of-type(2n) .serviceTop__list__item__txtarea {
    padding: 60px 0 60px 60px;
  }

  .serviceTop__list__item__txtarea__heading {
    font-family: 'Noto Serif JP', sans-serif;
    margin: 0 0 30px;
    font-size: 36px;
    line-height: 1.0;
    letter-spacing: 0.05em;
    font-weight: bold;
    color: #9eb091;
  }

  .serviceTop__list__item__txtarea__heading::before {
    counter-increment: number 1;
    content: '0'counter(number);
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 72px;
    font-weight: bold;
    margin: 0 16px 0 0;
    color: #a02020;
    top: 3px;
    position: relative;
  }

  /*.serviceTop__list__item__txtarea .btnMore02 {
  position: unset;
  margin: 30px 0 0 auto;
}*/
  .serviceTop__list__item__txtarea .btnMore02 {
    margin: 30px 0 0 0;
    width: 270px;
    height: 60px;
    position: unset;
    /*bottom: 60px;*/
    /* -30px */
  }

  .serviceTop__list__item__txtarea .btnMore02 a {
    background: #9eb091;
    color: #fff;
    width: auto;
    line-height: 60px;
    border: #9eb091 solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.5s ease;
    border-radius: 30px;
  }

  .serviceTop__list__item__txtarea .btnMore02 a:after {
    background: url(../images/arw_white.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 60px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .serviceTop__list__item__txtarea .btnMore02 a:hover {
    background: #fff;
    color: #9eb091;
  }

  .serviceTop__list__item__txtarea .btnMore02 a:hover:after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
  }

  .contents {
    margin: 120px 0;
  }

  .contents ul {
    margin: 0;
    display: -webkit-flex;
    display: flex;
  }

  .contents__list__item {
    width: 50%;
    overflow: hidden;
    position: relative;
  }

  .contents__list__item::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    transition: all 0.5s ease-out;
    z-index: -1;
  }

  .contents__list__item:nth-of-type(1)::after {
    background: url(../images/top/img_company.jpg);
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
  }

  .contents__list__item:nth-of-type(2)::after {
    background: url(../images/top/img_recruit.jpg);
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
  }

  .contents__list__item:hover::after {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }

  .contents__list__item a {
    background: rgba(0, 0, 0, 0.33);
    height: 100%;
    padding: 120px;
    display: block;
    color: #fff;
    text-align: center;
    box-sizing: border-box;
    text-shadow: 0 0 5px #000;
  }

  .contents__list__item .ttlTop small {
    color: #c5d0be;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #c5d0be solid 3px;
    padding: 0 0 10px;
    /*text-shadow: 0 0 5px #fff;*/
  }

  .newsTop {
    margin: 0 0 120px;
    padding: 0 120px 120px;
    position: relative;
  }

  .newsTop::before {
    background: #f4f2ee;
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 60px;
    bottom: 0;
    z-index: -1;
    border-radius: 0 100px 0 0;
  }

  .newsTop__list {
    margin: 0 120px 60px;
    border-bottom: #ddd solid 1px;
  }

  .newsTop__list__item {
    border-top: #ddd solid 1px;
  }

  .newsTop__list__item a {
    background: #fff;
    padding: 30px 62px 30px 30px;
    display: block;
    color: #451700;
    transition: all 0.5s ease;
    position: relative;
  }

  .newsTop__list__item a:after {
    background: url(../images/arw_gray.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 30px;
  }

  .newsTop__list__item a:hover {
    color: #9eb091;
  }

  .newsTop__list__item a:hover::after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
  }

  .newsTop__list__item__date {
    width: 100px;
    display: inline-block;
  }

  .newsTop .btnMore {
    margin: 0 120px 0 auto;
  }

  /* ------------------------------------------------------------
    共通クラス部分
------------------------------------------------------------ */
  .ttlSub {
    height: 410px;
    line-height: 1.0;
    letter-spacing: 0.1em;
    margin: 0 0 45px;
    position: relative;
  }

  .ttlSub:before {
    content: "";
    width: 100%;
    position: absolute;
    top: 90px;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .ttlSub .inner {
    background: #fff;
    margin: 0 60px;
    padding: 60px;
    display: inline-block;
    border-radius: 0 0 60px 0;
  }

  .ttlSub strong {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 60px;
    font-weight: bold;
    margin: 0 0 15px;
    display: block;
  }

  .ttlSub h1 {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    padding: 0 0 10px;
  }

  .u-fade-type-up {
    transform: translateY(50px);
    opacity: 0;
  }

  .u-fade-type-up.is-active {
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
  }

  .is-active .u-fade-type-up {
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
  }

  .is-active .u-fade-type-up:nth-child(2) {
    transition-delay: .4s;
  }

  .is-active .u-fade-type-up:nth-child(3) {
    transition-delay: .8s;
  }

  .is-active .u-fade-type-up:nth-child(4) {
    transition-delay: 1.2s;
  }

  .is-active .u-fade-type-up:nth-child(5) {
    transition-delay: 1.6s;
  }

  .is-active .u-fade-type-up:nth-child(6) {
    transition-delay: 2s;
  }

  /* ------------------------------------------------------------
    新着情報ページ部分
------------------------------------------------------------ */
  .news .ttlSub:before {
    background: url(../images/news/ttl_news.jpg) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .news .ttlSub h1 {
    color: #9eb091;
    border-bottom: #9eb091 solid 3px;
  }

  .news .ttlEntries {
    max-width: 1024px;
    margin: 0 auto 45px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
  }

  .news .ttlEntries h2 {
    font-size: 32px;
    margin: 60px 0 15px;
    line-height: 1.8;
  }

  .news .ttlEntries .time {
    font-family: 'Noto Serif JP', sans-serif;
    color: #9eb091;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #9eb091 solid 3px;
    padding: 0 0 10px;
  }

  .news .entries {
    max-width: 1024px;
    margin: 0 auto;
    padding: 60px 0;
    border-top: #ddd solid 1px;
    border-bottom: #ddd solid 1px;
    line-height: 2.0;
  }

  .news .entries strong {
    font-weight: bold;
  }

  .news .entries img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
    width
    /***/
    : auto;
    margin: 15px 0;
  }

  .news .entries iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    border: none;
  }

  .news .entries a {
    color: #3da5bc;
  }

  .news .entries a:hover {
    color: #9eb091;
  }

  .news .entries h3 {
    font-family: 'Noto Serif JP', sans-serif;
    padding: 0 0.5em;
    color: #9eb091;
    background: transparent;
    border-left: solid 5px #a02020;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.5rem;
  }

  .news .entries ul {
    list-style: none;
    margin: 20px auto;
    background: #f5f5f5;
    padding: 1em 0.5em 1em 2em;
  }

  .news .entries ul ul {
    padding-left: 1em;
  }

  /*.news .entries ul li {
    padding-left: 1.5em;
    text-indent: -1.5em;
  }

  .news .entries ul li:before {
    content: "・";
    color: #9eb091;
    padding-right: .5em;
  }*/

  .news .entries ul li {
    padding: 0 0 0 20px;
    position: relative;
    list-style: none;
  }

  .news .entries ul li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #a02020;
    position: absolute;
    top: 13px;
    left: 0;
  }

  .news .entries ol {
    counter-reset: item;
    list-style-type: none;
    background: #f5f5f5;
    margin: 20px auto;
    padding: 1em 0.5em 1em 2em;
  }

  .news .entries ol ol {
    padding-left: 1em;
  }

  .news .entries ol li {
    text-indent: -1.5em;
    padding-left: 1.5em;
  }

  .news .entries ol li:before {
    counter-increment: item;
    content: counter(item)'.';
    padding-right: .5em;
    color: #9eb091;
    font-weight: bold;
  }

  .news__list {
    margin: 60px auto 0;
    padding: 60px 0;
    position: relative;
  }

  .news__list::before {
    background: #f4f2ee;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 60px;
    bottom: -100px;
    z-index: -1;
    border-radius: 0 100px 0 0;
  }

  .news__list__item {
    border-top: #ddd solid 1px;
    margin: 0 240px;
  }

  .news__list__item:last-of-type {
    border-bottom: #ddd solid 1px;
  }

  .news__list__item a {
    background: #fff;
    padding: 30px 62px 30px 30px;
    display: block;
    color: #451700;
    transition: all 0.5s ease;
    position: relative;
  }

  .news__list__item a:after {
    background: url(../images/arw_gray.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 20px;
    display: inline-block;
    position: absolute;
    right: 30px;
  }

  .news__list__item a:hover {
    color: #9eb091;
  }

  .news__list__item a:hover::after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
  }

  .news__list__item__date {
    width: 100px;
    display: inline-block;
  }

  .pager {
    margin: 0 240px 180px;
  }

  .pager ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    text-align: center;
  }

  .pager ul li {
    margin: 0 1px;
  }

  .pager ul li span,
  .pager ul li a {
    display: block;
    padding: 5px 15px;
  }

  .pager ul li a {
    background: #eee;
    color: #451700;
  }

  .pager ul li a:hover,
  .pager ul .active {
    background: #9eb091;
    color: #fff;
  }

  .news .btnBack {
    width: 270px;
    height: 60px;
    margin: 60px auto 150px;
  }

  .news .btnBack a {
    font-family: 'Noto Serif JP', sans-serif;
    background: #fff;
    color: #9eb091;
    width: auto;
    line-height: 58px;
    border: #9eb091 solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.5s ease;
    border-radius: 0 30px 0 30px;
  }

  .news .btnBack a:after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 58px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .news .btnBack a:hover {
    color: #fff;
    background: #9eb091;
  }

  .news .btnBack a:hover:after {
    background: url(../images/arw_white.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
  }

  /* ------------------------------------------------------------
    サービスページ部分
------------------------------------------------------------ */
  .service .ttlSub:before {
    background: url(../images/service/ttl_service.jpg);
    background-repeat: no-repeat;
    background-position: 50% 85%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .service .ttlSub h1 {
    color: #9eb091;
    border-bottom: #9eb091 solid 3px;
  }

  .service .ttlSub+p {
    max-width: 1024px;
    margin: 80px auto 60px;
    line-height: 2.25;
  }

  .service nav ul {
    margin: 0 0 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .service nav ul li a {
    font-family: 'Noto Serif JP', sans-serif;
    color: #9eb091;
    line-height: 58px;
    padding: 0 60px;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.5s ease;
  }

  .service nav ul li a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    font-size: 17px;
    color: #a02020;
    margin: 0 0 0 10px;
    display: inline-block;
  }

  /*.service nav ul li a:after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 58px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }*/

  .service nav ul li a:hover {
    color: #fff;
    background: #9eb091;
  }

  .service nav ul li a:hover::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    font-size: 17px;
    color: #fff;
    margin: 0 0 0 10px;
    display: inline-block;
  }

  /*.service nav ul li a:hover:after {
    background: url(../images/arw_white.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
  }*/

  .service .type {
    padding: 80px 0;
    counter-reset: number 0;
  }

  /*.service .type:nth-of-type(2n){
  background: #f4f2ee;
}*/
  .service .type:nth-of-type(2n) {
    margin: 120px 0;
    /* 0 0 90px; */
    margin: 0 0 0 60px;
    padding: 0 120px 120px 60px;
    position: relative;
  }

  .service .type:nth-of-type(2n)::before {
    background: #f4f2ee;
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 100px 0 0 0;
  }

  .service .type hgroup {
    font-family: 'Noto Serif JP', sans-serif;
    text-align: center;
    margin: 0 0 45px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .service .type hgroup h2 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0 0 15px;
  }

  .service .type hgroup small {
    color: #9eb091;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #9eb091 solid 3px;
    padding: 0 0 10px;
  }

  .service .type ul li {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }

  .service .type ul li:nth-of-type(1) figure {
    width: 50%;
  }

  .service .type ul li:nth-of-type(2) figure {
    width: 30%;
    margin: 60px 0;
  }

  /*.service .type ul li:nth-of-type(3n) figure {
    width: 40%;
    margin: 60px 0 60px 10%;
  }*/

  .service .type ul li .txtarea {
    width: 50%;
    padding: 60px;
    margin: 0 10% 0 0;
    box-sizing: border-box;
    line-height: 2.0;
  }

  .service .type ul li:nth-of-type(2n) .txtarea {
    -webkit-order: -1;
    order: -1;
    margin: 0 0 0 10%;
    line-height: 2.0;
  }

  .service .type ul li .txtarea .list__txtarea__heading {
    font-family: 'Noto Serif JP', sans-serif;
    margin: 0 0 20px;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #9eb091;
  }

  /*.service .type ul li .txtarea .list__txtarea__heading::before {
    counter-increment: number 1;
    content: '0'counter(number);
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 52px;
    font-weight: bold;
    margin: 0 10px 0 0;
    color: #a02020;
    top: 3px;
    position: relative;
  }*/

  /* ------------------------------------------------------------
    会社概要ページ部分
------------------------------------------------------------ */
  .company .ttlSub:before {
    background: url(../images/about/ttl_about.jpg);
    background-repeat: no-repeat;
    background-position: 50% 60%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .company .ttlSub h1 {
    color: #9eb091;
    border-bottom: #9eb091 solid 3px;
  }

  .company .ttlSub+p {
    max-width: 1024px;
    margin: 80px auto 60px;
    line-height: 2.25;
  }

  .company nav ul {
    margin: 0 0 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .company nav ul li:not(:last-of-type) {
    margin-right: 30px;
  }

  .company nav ul li a {
    font-family: 'Noto Serif JP', sans-serif;
    color: #9eb091;
    line-height: 58px;
    padding: 0 60px;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.5s ease;
  }

  .company nav ul li a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    font-size: 17px;
    color: #a02020;
    margin: 0 0 0 10px;
    display: inline-block;
  }

  .company nav ul li a:hover {
    color: #fff;
    background: #9eb091;
  }

  .company nav ul li a:hover::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    font-size: 17px;
    color: #fff;
    margin: 0 0 0 10px;
    display: inline-block;
  }

  .company .profile {
    font-family: 'Noto Serif JP', sans-serif;
    text-align: center;
    margin: 0 0 45px;
    padding: 30px 0 0;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .company .profile h2 {
    font-size: 48px;
    font-weight: bold;
    margin: 60px 0 15px;
  }

  .company .profile small {
    color: #9eb091;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #9eb091 solid 3px;
    padding: 0 0 10px;
  }

  .company .table {
    max-width: 1024px;
    margin: 0 auto 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: #ddd solid 1px;
    line-height: 2.0;
  }

  .company .table>dt {
    width: 30%;
    padding: 30px 0;
    border-top: #ddd solid 1px;
    text-indent: 60px;
    font-weight: bold;
  }

  .company .table>dd {
    width: 70%;
    padding: 30px 0;
    border-top: #ddd solid 1px;
  }

  .company .table>dd dt:not(:first-of-type) {
    margin: 30px 0 0;
  }

  /*.company .access{
  background: #f4f2ee;
  padding: 60px 0 330px;
  padding: 60px 0 150px;
}*/
  .company .access {
    margin: 120px 0 60px 60px;
    padding: 0 120px 60px 60px;
    position: relative;
  }

  .company .access::before {
    background: #f4f2ee;
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 100px 0 0 0;
  }

  .company .access hgroup {
    font-family: 'Noto Serif JP', sans-serif;
    text-align: center;
    margin: 0 0 45px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .company .access hgroup h2 {
    font-size: 48px;
    font-weight: bold;
    margin: 60px 0 15px;
  }

  .company .access hgroup small {
    color: #9eb091;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #9eb091 solid 3px;
    padding: 0 0 10px;
  }

  .company .access .map {
    text-align: right;
  }

  .company .access .map #map {
    background: #eee;
    max-width: 1024px;
    height: 540px;
    margin: 0 auto;
  }

  .company .access .map dl {
    background: #9eb091;
    margin: -60px 60px 0 0;
    padding: 40px;
    display: inline-block;
    color: #fff;
    text-align: left;
    position: relative;
    z-index: 1;
    border-radius: 0 30px 0 0;
  }

  .company .access .map dl dt {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 18px;
    font-weight: bold;
  }

  .company .access .map dl dd {
    margin: 10px 0 0;
  }

  .company .history {
    padding: 60px 0 60px;
  }

  .company .history hgroup {
    font-family: 'Noto Serif JP', sans-serif;
    text-align: center;
    margin: 0 0 45px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .company .history hgroup h2 {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .company .history hgroup small {
    color: #9eb091;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #9eb091 solid 3px;
    padding: 0 0 10px;
  }

  .company .history .history__list {
    max-width: 964px;
    margin: 0 auto;
    padding: 5px 60px 30px;
    position: relative;
  }

  .company .history .history__list::before {
    content: "";
    width: 2px;
    height: 90%;
    background: repeating-linear-gradient(to bottom,
      #999,
      #999 2px,
      transparent 2px,
      transparent 4px);
    position: absolute;
    top: 40px;
    bottom: 30px;
    left: 39px;
  }

  .company .history .history__list dt {
    margin: 0 0 10px;
    color: #a02020;
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 0.05em;
    font-weight: bold;
    position: relative;
  }

  .company .history .history__list dt:nth-of-type(n+2) {
    margin-top: 20px;
  }

  .company .history .history__list dt::before {
    content: "";
    background: #a02020;
    width: 10px;
    height: 10px;
    margin: auto;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    bottom: 0;
    left: -25px;
  }

  .company .history .history__list dd {
    padding-bottom: 10px;
    border-bottom: #ddd solid 1px;
  }

  .company .history .history__list dd+dd {
    margin-top: 10px;
  }

  /* ------------------------------------------------------------
    採用情報部分
------------------------------------------------------------ */
  .recruit .ttlSub:before {
    background: url(../images/recruit/ttl_recruit.jpg);
    background-repeat: no-repeat;
    background-position: 50% 40%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .recruit .ttlSub h1 {
    color: #9eb091;
    border-bottom: #9eb091 solid 3px;
  }

  .recruit .ttlSub+p {
    max-width: 1024px;
    margin: 80px auto 60px;
    line-height: 2.25;
  }

  .recruit nav ul {
    margin: 0 0 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .recruit nav ul li:not(:last-of-type) {
    margin-right: 30px;
  }

  .recruit nav ul li a {
    font-family: 'Noto Serif JP', sans-serif;
    color: #9eb091;
    line-height: 58px;
    padding: 0 60px;
    display: block;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: all 0.5s ease;
  }

  .recruit nav ul li a::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    font-size: 17px;
    color: #a02020;
    margin: 0 0 0 10px;
    display: inline-block;
  }

  /*.recruit nav ul li a:after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 58px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }*/

  .recruit nav ul li a:hover {
    color: #fff;
    background: #9eb091;
  }

  .recruit nav ul li a:hover::after {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    content: '\f107';
    font-size: 17px;
    color: #fff;
    margin: 0 0 0 10px;
    display: inline-block;
  }

  /*.recruit nav ul li a:hover:after {
    background: url(../images/arw_white.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
  }*/

  .recruit .recruit__job {
    font-family: 'Noto Serif JP', sans-serif;
    text-align: center;
    padding: 80px 0 45px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .recruit__job .recruit__label {
    display: block;
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .recruit__job .recruit__heading {
    color: #9eb091;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #9eb091 solid 3px;
    padding: 0 0 10px;
  }

  .recruit .job {
    position: relative;
  }

  .recruit .job h2 {
    font-family: 'Noto Serif JP', sans-serif;
    padding: 0 60px 10px 0;
    font-size: 36px;
    line-height: 1.0;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: #9eb091 solid 2px;
    position: absolute;
    top: 60px;
    right: 60%;
  }

  .recruit .job figure {
    width: 60%;
    overflow: hidden;
    margin: 0 0 60px 40%;
  }

  /*.recruit .description{
  background: #f4f2ee;
  padding: 50px 0;
  position: relative;
  line-height: 2.0;
}*/
  .recruit .description {
    margin: 0 auto;
    padding: 50px 0;
    line-height: 2.0;
    position: relative;
  }

  .recruit .description::before {
    background: #f4f2ee;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 60px;
    bottom: 0;
    z-index: -1;
    border-radius: 0 0 100px 0;
  }

  .recruit .description h3 {
    font-family: 'Noto Serif JP', sans-serif;
    background: #9eb091;
    color: #fff;
    padding: 0 60px;
    display: inline-block;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 50px;
    position: absolute;
    top: -25px;
    left: 10vw;
  }

  .recruit .description h4 {
    max-width: 1024px;
    margin: 10px auto 0;
    font-size: 16px;
    font-weight: bold;
  }

  .recruit .description .list {
    max-width: 1024px;
    margin: 0 auto;
  }

  .recruit .description .list li {
    padding: 0 0 0 20px;
    position: relative;
    list-style: none;
  }

  .recruit .description .list li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #a02020;
    position: absolute;
    top: 13px;
    left: 0;
  }

  .recruit .description .skill__list {
    max-width: 1024px;
    margin: 0 auto;
  }

  .recruit .description .skill__list li {
    padding: 0 0 0 20px;
    position: relative;
    list-style: none;
    font-size: 14px;
  }

  .recruit .description .skill__list li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #495057;
    position: absolute;
    top: 11px;
    left: 0;
  }

  .recruit .description p {
    max-width: 1024px;
    margin: 0 auto;
    font-size: 14px;
  }

  .recruit .guideline {
    padding: 50px 0 0;
    position: relative;
  }

  .recruit .guideline h3 {
    background: #9eb091;
    color: #fff;
    padding: 0 60px;
    display: inline-block;
    font-size: 18px;
    letter-spacing: 0.05em;
    line-height: 50px;
    position: absolute;
    top: -25px;
    left: 10vw;
  }

  .recruit .table {
    max-width: 1024px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: #ddd solid 1px;
    line-height: 2.0;
  }

  .recruit .table>dt {
    width: 30%;
    padding: 30px 0;
    border-top: #ddd solid 1px;
    text-indent: 30px;
  }

  .recruit .table>dd {
    width: 70%;
    padding: 30px 0;
    border-top: #ddd solid 1px;
  }

  .recruit .btnForm {
    width: 270px;
    height: 60px;
    margin: 60px auto 150px;
  }

  .recruit .btnForm a {
    font-family: 'Noto Serif JP', sans-serif;
    background: #fff;
    color: #9eb091;
    width: auto;
    line-height: 58px;
    border: #9eb091 solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.5s ease;
  }

  .recruit .btnForm a:after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 58px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .recruit .btnForm a:hover {
    color: #fff;
    background: #9eb091;
  }

  .recruit .btnForm a:hover:after {
    background: url(../images/arw_white.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
  }

  .recruit__report {
    margin: 0 0 60px;
    padding: 60px 120px 120px;
    position: relative;
  }

  .recruit__report::before {
    background: #f4f2ee;
    content: "";
    position: absolute;
    top: 90px;
    left: 60px;
    right: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 100px 0 0 0;
  }

  .recruit__report hgroup {
    font-family: 'Noto Serif JP', sans-serif;
    text-align: center;
    margin: 0 0 45px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .recruit__report__label {
    display: block;
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .recruit__report__heading {
    color: #9eb091;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #9eb091 solid 3px;
    padding: 0 0 10px;
  }

  .recruit__report__list li {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 auto;
  }

  .recruit__report__list li+li {
    margin-top: 60px;
  }

  .recruit__report__list__image {
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    overflow: hidden;
  }

  .recruit__report__list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .recruit__report__list__col {
    width: -webkit-calc(100% - 30vw);
    width: calc(100% - 30vw);
    padding: 60px;
    box-sizing: border-box;
  }

  .recruit__report__list li:nth-of-type(2n) .recruit__report__list__col {
    -webkit-order: -1;
    order: -1;
  }

  .recruit__report__list__label {
    display: inline-block;
    margin: 0 10px 0 0;
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 40px;
    font-weight: bold;
    color: #a02020;
    top: 3px;
    position: relative;
  }

  .recruit__report__list__name {
    font-family: 'Noto Serif JP', sans-serif;
    display: inline-block;
    margin: 0 0 30px;
    font-size: 24px;
  }

  .recruit__report__list__col p {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    position: relative;
  }

  .recruit__report__list__col p::after {
    content: "";
    background: #fff;
    width: 31px;
    height: 31px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
  }

  .recruit__report__list li:nth-of-type(2n+1) .recruit__report__list__col p::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    left: -30px;
  }

  .recruit__report__list li:nth-of-type(2n) .recruit__report__list__col p::after {
    right: -30px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  }

  /* ------------------------------------------------------------
    特定商取引法に基づく表記ページ部分
------------------------------------------------------------ */
  .law .ttlSub:before {
    background: url(../images/law/ttl_law.jpg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .law .ttlSub h1 {
    color: #9eb091;
    border-bottom: #9eb091 solid 3px;
  }

  .law .ttlSub+p {
    max-width: 1024px;
    margin: 80px auto 60px;
    line-height: 2.25;
  }

  .law .table {
    max-width: 1024px;
    margin: 0 auto 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: #ddd solid 1px;
    line-height: 2.0;
  }

  .law .table>dt {
    width: 30%;
    padding: 30px 0;
    border-top: #ddd solid 1px;
    text-indent: 60px;
    font-weight: bold;
  }

  .law .table>dd {
    width: 70%;
    padding: 30px 0;
    border-top: #ddd solid 1px;
  }

  .law .table>dd a {
    color: #3da5bc;
  }

  .law .table .telno a {
    color: #451700;
  }

  .law .table>dd a:hover {
    color: #9eb091;
  }

  .law .table>dd dt:not(:first-of-type) {
    margin: 30px 0 0;
  }

  /* ------------------------------------------------------------
    プライバシーポリシー部分
------------------------------------------------------------ */
  .privacy .ttlSub:before {
    background: url(../images/privacy/ttl_privacy.jpg);
    background-repeat: no-repeat;
    background-position: 50% 90%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .privacy .ttlSub h1 {
    color: #9eb091;
    border-bottom: #9eb091 solid 3px;
  }

  .privacy .ttlSub+p {
    max-width: 1024px;
    margin: 80px auto 60px;
    line-height: 2.25;
  }

  .privacy .privacy__list {
    max-width: 1020px;
    margin: 0 auto;
    counter-reset: listnum;
    list-style: none;
  }

  .privacy .privacy__list dt {
    font-family: 'Noto Serif JP', sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 1rem;
  }

  .privacy .privacy__list dt::before {
    counter-increment: listnum;
    content: counter(listnum) ".";
    padding-right: 5px;
    font-weight: bold;
  }

  .privacy .privacy__list dd a {
    text-decoration: none;
    color: #3da5bc;
  }

  .privacy .privacy__list dd a:hover {
    text-decoration: none;
    color: #9eb091;
  }

  .privacy .privacy__list dd+dt {
    margin-top: 3rem;
  }

  .privacy .privacy__list dd ul {
    background: #f3f3f3;
    margin-top: 2rem;
    padding: 30px;
  }

  .privacy .privacy__list dd ul li+li {
    margin-top: 0.5rem;
  }

  .privacy .privacy__list dd ul li::before {
    content: "・";
    padding: 0 10px 0 0;
  }

  .privacy address {
    margin: 80px 0 0;
    font-style: normal;
  }

  .privacy address hgroup {
    font-family: 'Noto Serif JP', sans-serif;
    text-align: center;
    margin: 0 0 45px;
    line-height: 1.0;
    letter-spacing: 0.1em;
  }

  .privacy address hgroup h2 {
    font-size: 48px;
    font-weight: bold;
    margin: 60px 0 15px;
  }

  .privacy address hgroup small {
    color: #9eb091;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    border-bottom: #9eb091 solid 3px;
    padding: 0 0 10px;
  }

  .privacy address .table {
    max-width: 1024px;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: #ddd solid 1px;
    line-height: 2.0;
  }

  .privacy address .table>dt {
    width: 30%;
    padding: 30px 0;
    border-top: #ddd solid 1px;
    text-indent: 30px;
  }

  .privacy address .table>dd {
    width: 70%;
    padding: 30px 0;
    border-top: #ddd solid 1px;
  }

  .privacy address .table>dd a {
    text-decoration: none;
    color: #3da5bc;
  }

  .privacy address .table>dd a:hover {
    text-decoration: none;
    color: #9eb091;
  }

  .privacy .privacy__date {
    max-width: 1020px;
    margin: 40px auto 80px;
  }

  /* ------------------------------------------------------------
    お問い合わせ部分
------------------------------------------------------------ */
  .contact .ttlSub:before {
    background: url(../images/contact/ttl_contact.jpg);
    background-repeat: no-repeat;
    background-position: 50% 60%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .contact .ttlSub h1 {
    color: #9eb091;
    border-bottom: #9eb091 solid 3px;
  }

  .contact .ttlSub+p {
    max-width: 1024px;
    margin: 80px auto 60px;
    line-height: 2.25;
  }

  .contact .btnBack {
    width: 270px;
    height: 60px;
    margin: 60px auto 150px;
  }

  .contact .btnBack a {
    background: #fff;
    color: #9eb091;
    width: auto;
    line-height: 58px;
    border: #9eb091 solid 1px;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.5s ease;
  }

  .contact .btnBack a:after {
    background: url(../images/arw.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
    content: "";
    width: 17px;
    height: 58px;
    display: inline-block;
    margin: 0 0 0 15px;
    vertical-align: top;
  }

  .contact .btnBack a:hover {
    color: #fff;
    background: #9eb091;
  }

  .contact .btnBack a:hover:after {
    background: url(../images/arw_white.png) no-repeat center;
    background-size: 17px auto;
    -webkit-background-size: 17px auto;
    -moz-background-size: 17px auto;
  }

  .contact .telArea {
    font-family: 'Noto Serif JP', sans-serif;
    max-width: 1028px;
    padding: 30px;
    margin: 0 auto 80px;
    border: #f4f2ee solid 5px;
    box-sizing: border-box;
    position: relative;
    border-radius: 0 60px 0 0;
  }

  .contact .telArea dt {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 15px;
  }

  .contact .telArea:after {
    background: #9eb091;
    content: "";
    width: 3px;
    height: auto;
    display: block;
    position: absolute;
    top: 30px;
    right: 0;
    bottom: 30px;
    left: 0;
    margin: auto;
  }

  .contact .telArea dd.telno {
    font-size: 60px;
    height: 60px;
    line-height: 60px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -webkit-calc(50% + 30px);
    left: calc(50% + 30px);
    margin: auto;
  }

  .contact .telArea dd.telno span {
    font-weight: bold;
  }

  form dl {
    max-width: 1028px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    border-bottom: #ddd solid 1px;
  }

  form dl dt {
    width: 30%;
    padding: 30px 0;
    font-weight: bold;
    box-sizing: border-box;
    border-top: #ddd solid 1px;
  }

  form dl dt.must:after {
    background: #ea5455;
    content: "必須";
    margin: 0 0 0 10px;
    display: inline-block;
    padding: 0 15px;
    color: #fff;
    font-size: 12px;
  }

  form dl dd {
    width: 70%;
    padding: 30px 0;
    box-sizing: border-box;
    border-top: #ddd solid 1px;
  }

  form dl dd .caution {
    color: #f00;
    font-weight: bold;
    margin: 0 0 10px;
  }

  form dl dd ul li {
    display: inline-block;
    margin: 0 10px 0 0;
  }

  form dl dd input[type="text"] {
    width: 100%;
    height: 40px;
    border: #ddd solid 1px;
    font-size: 14px;
    padding: 0 0 0 10px;
    box-sizing: border-box;
  }

  form dl dd input[type="tel"] {
    width: 100%;
    height: 40px;
    border: #ddd solid 1px;
    font-size: 14px;
    padding: 0 0 0 10px;
    box-sizing: border-box;
  }

  form dl dd select,
  form dl dd input[type="date"] {
    height: 40px;
    border: #ddd solid 1px;
    font-size: 14px;
    padding: 0 0 0 10px;
    box-sizing: border-box;
  }

  form dl dd input[type="date"] {
    margin: 0 10px 0 0;
  }

  form dl dd textarea {
    width: 100%;
    height: 250px;
    border: #ddd solid 1px;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px;
    box-sizing: border-box;
  }

  form dd input::placeholder,
  form dd textarea::placeholder {
    color: #bbb;
  }

  form ul.btnSubmit {
    margin: 60px 0 0;
    padding: 0 0 100px;
    text-align: center;
  }

  form ul.btnSubmit li {
    display: inline-block;
    width: 400px;
    height: 80px;
    margin: 0 10px;
  }

  form ul.btnSubmit li input[type="submit"] {
    font-family: 'Noto Serif JP', sans-serif;
    width: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    line-height: 78px;
    display: inline-block;
    border: #9eb091 solid 1px;
    letter-spacing: 0.1em;
    transition: all 0.5s ease;
  }

  form ul.btnSubmit li .submit {
    background: #9eb091;
    color: #fff;
  }

  form ul.btnSubmit li .send {
    background: #9eb091;
    color: #fff;
  }

  form ul.btnSubmit li .back {
    background: #fff;
    color: #9eb091;
  }

  form ul.btnSubmit li input[type="submit"]:hover {
    /*background: #fff;
  color: #9eb091;
  border: #9eb091 solid 1px;*/
    opacity: 0.7;
  }

  /* ------------------------------------------------------------
    よくある質問部分
------------------------------------------------------------ */
  .faq .ttlSub:before {
    background: url(../images/faq/ttl_faq.jpg);
    background-repeat: no-repeat;
    background-position: 50% 40%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .faq .ttlSub h1 {
    color: #9eb091;
    border-bottom: #9eb091 solid 3px;
  }

  .faq .ttlSub+p {
    max-width: 1024px;
    margin: 80px auto 60px;
    line-height: 2.25;
    font-weight: bold;
  }

  .faq__list {
    max-width: 1024px;
    margin: 0 auto 150px;
  }

  .faq__list li+li {
    margin-top: 30px;
    padding-top: 30px;
    border-top: #ddd solid 1px;
  }

  .faq__list__heading {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin: 0 0 15px;
    color: #9eb091;
  }

  .faq__list__heading::before {
    background: #9eb091;
    content: "Q";
    width: 60px;
    height: 60px;
    margin: 0 20px 0 0;
    display: inline-block;
    border-radius: 50%;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    line-height: 60px;
    text-align: center;
  }

  .faq__list__heading span {
    width: -webkit-calc(100% - 60px - 20px);
    width: calc(100% - 60px - 20px);
    font-size: 24px;
    font-weight: bold;
  }

  .faq__list__ans {
    display: -webkit-flex;
    display: flex;
  }

  .faq__list__ans::before {
    background: #a02020;
    content: "A";
    width: 60px;
    height: 60px;
    margin: 0 20px 0 0;
    display: inline-block;
    border-radius: 50%;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    font-size: 40px;
    line-height: 60px;
    font-weight: bold;
    text-align: center;
  }

  .faq__list__ans span {
    width: -webkit-calc(100% - 60px - 20px);
    width: calc(100% - 60px - 20px);
  }

  .loopSlider {
    height: 400px;
    margin: 60px 0 120px;
    overflow: hidden;
    position: relative;
  }

  .loopSlider .loopslider__wrap {
    height: 400px;
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-flex;
    display: flex;
  }

  .loopSlider .loopslider__wrap .loopslider__wrap__slides {
    display: -webkit-flex;
    display: flex;
  }

  .loopSlider .loopslider__wrap .loopslider__wrap__slides li {
    height: 400px;
    width: 600px;
  }

  .loopSlider .loopslider__wrap .loopslider__wrap__slides li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}