@charset "UTF-8";
/*--------------------------------------------------
	common
--------------------------------------------------*/
/*-------------------------------
	setting
-------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Yu Gothic Medium", "Yu Gothic", "游ゴシック Medium", YuGothic, "游ゴシック体", YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  overflow-x: hidden;
  line-height: 1.8;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.preload * {
  transition: none !important;
}

.lg-no {
  display: none;
}


@media screen and (max-width: 736px) {
  .lg-no {
    display: block;
  }

  .sm-no {
    display: none;
  }
}
.bold {
  font-weight: bold;
}

.font-mn {
  font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "Noto Serif JP", serif;
}

/*改行位置調整用*/
span.nl {
  display: inline-block;
}

.short{
  letter-spacing: -0.03em;
}

.inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 40px;
}

@media screen and (max-width: 736px) {
  .inner {
    width: 100%;
    max-width: 100%;
    padding: 0 5.4%;
  }
}
.inner02 {
  width: 100%;
  max-width: 696px;
  padding: 0 40px;
}

@media screen and (max-width: 736px) {
  .inner02 {
    max-width: 100%;
    padding: 0 5.4%;
  }
}
img {
  width: 100%;
}

/*-------------------------------
	parts
-------------------------------*/
.btn {
  display: block;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  width: 150px;
  padding: 15px 18px 14px;
  position: relative;
  transition: all cubic-bezier(0.79, 0.14, 0.33, 0.88) 0.4s;
}

.btn::before {
  content: "";
  height: 7px;
  width: 20px;
  background: url(../images/btn_arrow01.svg) center;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  bottom: 4px;
  right: 18px;
  margin: auto;
}

.btn:hover {
  background: #b2af41;
}

@media screen and (max-width: 736px) {
  .btn {
    font-size: 1.4rem;
    width: 100%;
    text-align: center;
    padding: 1.5em 16px 1.5em;
  }

  .btn::before {
    height: 10px;
    width: 28.5px;
    background: url(../images/btn_arrow01_sm.svg) center;
    background-size: auto 100%;
  }

  .btn:hover {
    background: #000;
  }
}
/*-------------------------------
	animation
-------------------------------*/
.scroll-anm {
  display: block;
}

.scroll-fade-up {
  opacity: 0;
  transform: translateY(60%);
  transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.29, 1), opacity 0.5s linear;
}

.scroll-active.scroll-fade-up {
  opacity: 1;
  transform: translateY(0);
}

.on.scroll-fade-up {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.scroll-headline span {
  display: block;
}

.scroll-headline span:first-child span {
  transform: translateY(160%);
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.29, 1);
}

.scroll-headline span:nth-child(2) span {
  transform: translateY(160%);
  transition: transform 0.7s cubic-bezier(0.22, 0.61, 0.29, 1) 0.08s;
}

.scroll-headline > span {
  overflow: hidden;
}

.scroll-active.scroll-headline span span {
  transform: translateY(0);
}

@media screen and (max-width: 736px) {
  .split-am {
    opacity: 0;
  }
  .split-am > span {
    display: inline-block;
    overflow: hidden;
  }
  .split-am > span span {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.29, 1);
  }
  .split-am.scroll-active {
    opacity: 1;
  }
  .split-am.scroll-active > span span {
    transform: translateY(0);
  }
}
/*--------------------------------------------------
	header
--------------------------------------------------*/
.header-wrap {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  z-index: 99;
}
.header-wrap header {
  max-width: calc(1040px + (100% - 1040px) / 2);
  width: 100%;
  height: 100px;
  position: relative;
  background: rgba(0, 64, 37, 0.8);
  transition: all cubic-bezier(0.71, 0.15, 0.26, 0.78) 0.2s;
}
.header-wrap header.min {
  height: 70px;
}
@media screen and (max-width: 736px) {
  .header-wrap header {
    width: 100%;
    height: 50px;
  }
  .header-wrap header.min {
    height: 50px;
  }
}
.header-wrap .inner {
  position: absolute;
  padding-right: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 736px) {
  .header-wrap .inner {
    padding: 0;
  }
}
.header-wrap header h1 {
  width: 122px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}
.header-wrap header h1 img {
  display: block;
}
@media screen and (max-width: 736px) {
  .header-wrap header h1 {
    width: 83px;
    margin-left: 5.4%;
  }
}
.header-wrap nav:not(.sp) {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
}
.header-wrap nav:not(.sp) ul {
  font-size: 0;
  text-align: right;
  padding: 0 160px 0 18px;
}
.header-wrap nav:not(.sp) li {
  display: inline-block;
  padding: 0 18px;
}
.header-wrap nav:not(.sp) li a {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  display: block;
  transition: all cubic-bezier(0.71, 0.15, 0.26, 0.78) 0.25s;
  position: relative;
}
.header-wrap nav:not(.sp) li a:hover {
  color: #b2af41;
}
.header-wrap nav:not(.sp) li a.current {
  color: #b2af41;
}
.header-wrap nav:not(.sp) li a::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #b2af41;
  position: absolute;
  bottom: -6px;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left;
  transition: all cubic-bezier(0.79, 0.14, 0.26, 0.84) 0.3s;
}
.header-wrap nav:not(.sp) li a:hover::before {
  transform: scale(1);
}
.header-wrap nav:not(.sp) li a.current::before {
  transform: scale(1);
}
.header-wrap nav:not(.sp) li a span {
  display: block;
  padding-bottom: 2px;
}
@media screen and (max-width: 736px) {
  .header-wrap nav:not(.sm) {
    display: none;
  }
}
.header-wrap nav:not(.sp) a.header-btn {
  width: 142px;
  font-size: 1.2rem;
  color: #fff;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all cubic-bezier(0.79, 0.14, 0.32, 0.84) 0.4s;
}
.header-wrap nav:not(.sp) a.header-btn p {
  margin: 0 auto;
}
.header-wrap nav:not(.sp) a.header-btn img {
  width: 22px;
  height: 13px;
  display: block;
  margin: 0 auto 6px auto;
}
.header-wrap nav:not(.sp) a.header-btn:hover {
  background: #b2af41;
}
.header-wrap .header-menuBtn {
  display: none;
}
.header-wrap .navArea {
  display: none;
}
@media screen and (max-width: 736px) {
  .header-wrap header .header-menuBtn {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto 5.4% auto 0;
    z-index: 10;
  }
  .header-wrap header .header-menuBtn button {
    color: #fff;
    font-size: 1.3rem;
    padding-right: 34px;
  }
  .header-wrap header .header-menuBtn::before {
    content: "";
    width: 25px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(-3.5px);
    transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.29, 1) 0.1s;
  }
  .header-wrap header .header-menuBtn::after {
    content: "";
    width: 25px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: translateY(3.5px);
    transition: transform 0.25s cubic-bezier(0.22, 0.61, 0.29, 1) 0.1s;
  }
}
.header-wrap .header-menuBtn.active::before {
  transform: translateY(0);
}
.header-wrap .header-menuBtn.active::after {
  transform: translateY(0);
}

.sm-navArea {
  display: none;
}

@media screen and (max-width: 736px) {
  .sm-navArea {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #2a542a;
    box-sizing: border-box;
    padding-bottom: 80px;
    position: fixed;
    top: 0;
    overflow-y: scroll;
    z-index: 90;
    -webkit-overflow-scrolling: touch;
    display: none;
  }
  .sm-navArea nav.sp {
    margin-top: 0px;
    padding-top: 50px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
    position: static;
    right: 0;
  }
  .sm-navArea nav.sp ul.nav-sp-menu {
    padding: 0;
    padding: 0 5.4%;
    width: 59%;
  }
  .sm-navArea nav.sp ul.nav-sp-menu > li {
    display: block;
    width: 100%;
    padding: 14px 0 20px 24px;
    border-bottom: solid 1px #265c45;
    background: url(../images/sm_menu_line_wh.svg) no-repeat left top;
    background-size: 19px 50px;
  }
  .sm-navArea nav.sp ul.nav-sp-menu > li a {
    color: #fff;
    font-size: 1.9rem;
    text-align: left;
    position: relative;
  }
  .sm-navArea nav.sp ul.nav-sp-menu > li a span {
    display: block;
    font-size: 1.4rem;
    opacity: 0.25;
    padding-bottom: 0;
    line-height: 1;
    margin-bottom: 4px;
  }
  .sm-navArea nav.sp ul.nav-sp-menu > li dt > a {
    line-height: 1.26;
  }
  .sm-navArea nav.sp ul.nav-sp-menu > li dd {
    margin-top: 8px;
    padding-left: 20px;
  }
  .sm-navArea nav.sp ul.nav-sp-menu > li dd a {
    font-size: 1.4rem;
    display: block;
  }
  .sm-navArea nav.sp ul.nav-sp-menu > li dd a + a {
    margin-top: 5px;
  }
  .sm-navArea nav.sp a.header-btn {
    color: #fff;
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 41%;
  }
  .sm-navArea nav.sp a.header-btn p {
    width: 100%;
    font-size: 1.9rem;
    text-align: center;
  }
  .sm-navArea nav.sp a.header-btn img {
    width: 30px;
    height: 17.5px;
    display: block;
    margin: 0 auto 8px auto;
  }
  .sm-navArea .nav-sp-privacy {
    padding: 1.2em 0 2em 5.4%;
  }
  .sm-navArea .nav-sp-privacy a {
    color: #fff;
    font-size: 1.4rem;
  }

  .sm-navArea {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .sm-navArea::-webkit-scrollbar {
    display: none;
  }
}
/*--------------------------------------------------
	footer
--------------------------------------------------*/
.footer-contact {
  background: #2a542a;
}
.footer-contact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0;
}
@media screen and (max-width: 736px) {
  .footer-contact .inner {
    display: block;
    padding-right: 5.4%;
    padding: 0;
  }
}
.footer-contact .footer-txt {
  padding: 80px 40px 70px 0;
  flex: 1;
}
@media screen and (max-width: 1040px) {
  .footer-contact .footer-txt {
    padding-right: 20px;
  }
}
@media screen and (max-width: 736px) {
  .footer-contact .footer-txt {
    padding: 40px 5.4%;
  }
}
.footer-contact .footer-ttl {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}
.footer-contact h4 {
  line-height: 1;
  margin: 0;
}
.footer-contact .footer-text {
  font-size: 1.4rem;
  margin-left: 30px;
}
@media screen and (max-width: 736px) {
  .footer-contact .footer-ttl {
    display: block;
    margin-bottom: 34px;
  }
  .footer-contact .footer-ttl h4 {
    margin-bottom: 2px;
  }
  .footer-contact .footer-ttl .footer-text {
    font-size: 1.6rem;
    margin-left: 0;
  }
}
.footer-contact .footer-info {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-contact .footer-info .footer-name {
  font-size: 2rem;
  margin-bottom: 13px;
}
.footer-contact .footer-info .footer-add {
  font-size: 1.4rem;
}
.footer-contact .footer-info .footer-tel {
  font-size: 2rem;
  font-weight: 300;
}
.footer-contact .footer-info .footer-tel span {
  white-space: nowrap;
}
.footer-contact .footer-info .footer-info-bx + .footer-info-bx {
  margin-left: 120px;
}
@media screen and (max-width: 1040px) {
  .footer-contact .footer-info .footer-name {
    font-size: 1.8rem;
  }
  .footer-contact .footer-info .footer-add {
    font-size: 1.3rem;
  }
  .footer-contact .footer-info .footer-tel {
    font-size: 1.8rem;
  }
  .footer-contact .footer-info .footer-info-bx + .footer-info-bx {
    margin-left: 30px;
  }
}
@media screen and (max-width: 736px) {
  .footer-contact .footer-info {
    display: block;
  }
  .footer-contact .footer-info .footer-name {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
  .footer-contact .footer-info .footer-add {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .footer-contact .footer-info .footer-tel {
    font-size: 2.4rem;
  }
  .footer-contact .footer-info .footer-info-bx + .footer-info-bx {
    margin-left: 0;
  }
}
.footer-contact .footer-mail {
  padding: 80px 0;
  width: 333px;
  background: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-contact .footer-mail .btn {
  border: solid 1px #fff;
  font-size: 1.4rem;
  margin: 0 auto;
}
.footer-contact .footer-mail .btn img {
  width: 24px;
  margin-right: 7px;
  vertical-align: middle;
}
.footer-contact .footer-mail .btn:hover {
  border-color: #b2af41;
}
@media screen and (max-width: 736px) {
  .footer-contact .footer-mail {
    width: 100%;
    padding: 40px 5.4%;
  }
  .footer-contact .footer-mail .btn {
    font-size: 2rem;
    margin: 0 auto;
    padding: 1em 16px;
  }
  .footer-contact .footer-mail .btn img {
    width: 24px;
    margin-right: 7px;
    vertical-align: middle;
  }
  .footer-contact .footer-mail .btn:hover {
    border-color: #fff;
  }
}

.footer-copy {
  padding: 32px 0;
}
.footer-copy .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.footer-copy .inner .footer-copy-link {
  color: #000;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}
.footer-copy .inner .footer-copy-link img {
  width: 20px;
  height: 7px;
  vertical-align: middle;
  margin-left: 20px;
}
.footer-copy .inner .footer-copy-link:hover {
  opacity: 0.6;
}
.footer-copy .inner p {
  text-align: right;
  font-size: 1.2rem;
}

@media screen and (max-width: 736px) {
  .footer-copy {
    padding: 28px 0;
  }
  .footer-copy .inner {
    display: block;
  }
  .footer-copy .inner p {
    text-align: left;
    font-size: 1.3rem;
  }
}
/*--------------------------------------------------
	top
--------------------------------------------------*/
.kv {
  width: 100%;
  height: 600px;
  position: relative;
}
.kv .kv-videoWrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.kv .kv-videoWrap .kv-gd {
  width: 100%;
  height: 100%;
  background-color: #000;
  background: linear-gradient(to right, #6e6d3c, #6e6d3c calc(50% - 520px), rgba(110, 109, 60, 0) calc(50% + 520px), rgba(110, 109, 60, 0));
  mix-blend-mode: multiply;
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.kv video {
  margin: auto;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
}
@media screen and (max-width: 736px) {
  .kv .kv-videoWrap {
    height: 83%;
  }
  .kv .kv-videoWrap::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #6e6d3c, rgba(110, 109, 60, 0));
    opacity: 0.6;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
  }
  .kv video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
  }
}
.kv .kv-ttl {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.kv h2 {
  font-size: 3rem;
  color: #fff;
  padding-top: 344px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}
.kv h2::after {
  content: "";
  width: 73px;
  height: 198px;
  background: url(../images/kv_line_wh.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 100px;
  left: 166px;
}
.kv .kv-text {
  width: calc(696px + (100% - 1040px) / 2);
  min-width: 696px;
  background: #2a542a;
  padding: 40px;
  margin-bottom: -76px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 4;
}
.kv .kv-text ul {
  float: right;
  position: relative;
}
.kv .kv-text li {
  position: absolute;
  top: 0;
  color: #fff;
  font-size: 1.6rem;
  transition: all ease 0.8s;
  opacity: 0;
}
.kv .kv-text li.on {
  opacity: 1;
}

@media screen and (max-width: 736px) {
  .kv {
    height: 100vh;
  }
  .kv h2 {
    font-size: 3rem;
    color: #fff;
    padding-top: calc(50px + 99px + 20px);
  }
  .kv h2::after {
    content: "";
    width: 37.5px;
    height: 99px;
    background: url(../images/kv_line_wh_sm.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 50px;
    left: -3px;
  }
  .kv .kv-text {
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
    padding: 5.8% 5.4%;
  }
  .kv .kv-text ul {
    float: none;
  }
  .kv .kv-text li {
    width: auto;
    top: 0;
    left: 0;
  }
}
.top h4 {
  font-size: 3rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.top h4 span {
  font-weight: 500;
}

.top h5 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  font-weight: 500;
}


@media screen and (max-width: 736px) {
  .top h4 {
    line-height: 1.7;
    margin-bottom: 10px;
  }
	.top h5 {
    line-height: 1.7;
    margin-bottom: 10px;
  }
}
.top .text {
  font-size: 1.4rem;
}

@media screen and (max-width: 736px) {
  .top .text {
    font-size: 1.6rem;
  }
}
.top .outline {
  padding: 76px 0 80px;
}
.top .outline .outline-list li {
  padding-bottom: 80px;
}
.top .outline .outline-list li .inner02 {
  padding: 0;
  max-width: calc(696px - 40px);
  width: 100%;
}
@media screen and (max-width: 736px) {
  .top .outline .outline-list li {
    padding-bottom: 50px;
  }
}
.top .outline .outline-list .ttl-en {
  font-size: 1.8rem;
  color: #b2af41;
  padding: 80px 0 0 23px;
  margin-bottom: 32px;
  line-height: 1;
  display: inline-block;
  position: relative;
}
.top .outline .outline-list .ttl-en span{
  transition-delay: .1s;
}
@media screen and (max-width: 736px) {
  .top .outline .outline-list .ttl-en {
    padding: 46px 0 0 18px;
    margin-bottom: 20px;
  }
}
.top .outline .outline-list .ttl-en::before {
  content: "";
  width: 36px;
  height: 98px;
  background: url(../images/line_gl.svg) no-repeat left center;
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 736px) {
  .top .outline .outline-list .ttl-en::before {
    width: 24px;
    height: 64px;
    background: url(../images/line_gl_sm.svg) no-repeat left center;
    background-size: auto 100%;
  }
}
.top .outline .outline-list h4 {
  margin-bottom: 18px;
}
@media screen and (max-width: 736px) {
  .top .outline .outline-list h4 {
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .top .outline .outline-list h4 span span {
    font-weight: 500;
  }
}
.top .outline .outline-list .text {
  letter-spacing: -0.01em;
}
.top .outline .outline-list li:nth-child(even) {
  background: #f6f6f6;
}
.top .outline .outline-list li:nth-child(even) .inner02 {
  float: right;
  text-align: right;
}
.top .outline .outline-list li:nth-child(even) .ttl-en::before {
  right: 0;
}

@media screen and (max-width: 736px) {
  .top .outline {
    padding: 0;
  }
}
.top section {
  position: relative;
}
.top section .sec-ttlBx {
  width: calc(696px + (100% - 1040px) / 2);
  min-width: 696px;
  background: #2a542a;
  position: absolute;
  top: -80px;
  z-index: 2;
}
.top section .sec-ttlBx h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  width: 100%;
  max-width: 696px;
  padding: 71px calc(40px + 20px) 14px;
  float: right;
  background: url(../images/line_wh.svg) no-repeat top left 40px;
  background-size: 35px 95px;
}
.top section .sec-ttlBx h3 span.en {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 736px) {
  .top section .sec-ttlBx {
    width: 100%;
    min-width: 0;
    position: static;
    top: 0;
  }
  .top section .sec-ttlBx h3 {
    max-width: 100%;
    padding: 46px calc(5.4% + 17px) 1px;
    float: none;
    background: url(../images/line_wh_sm.svg) no-repeat top left 5.4%;
    background-size: 24px 64px;
  }
  .top section .sec-ttlBx h3 span {
    margin-bottom: 6px;
    line-height: 1.4;
  }
}

.top section.split {
  background: #eeeeee;
  position: relative;
}
.top section.split::before {
  content: "";
  width: 50%;
  height: 100%;
  background: #f6f6f6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.top section.split .inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 736px) {
  .top section.split .inner {
    padding: 0;
  }
}
.top section.split .top-split-li {
  padding: 152px 0 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top section.split .top-split-li > li {
  width: 50%;
}
.top section.split .top-split-li > li:nth-child(odd) {
  padding-right: 4.8%;
}
.top section.split .top-split-li > li:nth-child(even) {
  padding-left: 4.8%;
}
.top section.split .top-split-li .img-wrap {
  display: block;
  width: 100%;
  position: relative;
}
.top section.split .top-split-li .img-wrap .img {
  transition: all cubic-bezier(0.79, 0.14, 0.33, 0.88) 0.4s;
}
.top section.split .top-split-li .img-wrap .btn {
  position: absolute;
  right: 0;
  bottom: -25px;
}
@media screen and (max-width: 736px) {
  .top section.split .top-split-li .img-wrap .btn {
    position: relative;
    bottom: 0px;
  }
}
.top section.split .top-split-li .img-wrap:hover .img {
  opacity: 0.8;
}
.top section.split .top-split-li .img-wrap:hover .btn {
  background: #b2af41;
}
@media screen and (max-width: 736px) {
  .top section.split .top-split-li .img-wrap:hover .img {
    opacity: 1;
  }
  .top section.split .top-split-li .img-wrap:hover .btn {
    background: #000;
  }
}
.top section.split .top-split-li .top-split-job {
  margin-top: 55px;
  padding-left: 1em;
}
.top section.split .top-split-li .top-split-job dt.top-split-job-ttl {
  font-size: 1.8rem;
  color: #b2af41;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
}
.top section.split .top-split-li .top-split-job dt.top-split-job-ttl::before {
  content: "";
  width: 2px;
  height: 1em;
  background: #b2af41;
  position: absolute;
  left: -1em;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top section.split .top-split-li .top-split-job dd li {
  font-size: 1.6rem;
  background: url(../images/list_marker.svg) no-repeat left top 10px;
  background-size: 5px 5px;
  padding-left: 0.8em;
  margin-bottom: 8px;
}
.top section.split .top-split-li .top-split-job dd li dd{
  margin-left: 24px;
}
@media screen and (max-width: 736px) {
  .top section.split .top-split-li {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
  }
  .top section.split .top-split-li > li {
    width: 100%;
    padding: 40px 5.4% 46px;
  }
  .top section.split .top-split-li > li:nth-child(odd) {
    background: #f6f6f6;
  }
  .top section.split .top-split-li > li:nth-child(even) {
    background: #eeeeee;
  }
  .top section.split .top-split-li .top-split-job {
    margin-top: 30px;
    padding-left: 0;
  }
  .top section.split .top-split-li .top-split-job dt.top-split-job-ttl {
    margin-left: 5.4%;
  }
  .top section.split .top-split-li .top-split-job dd li {
    font-size: 1.6rem;
    background: url(../images/list_marker.svg) no-repeat left top 10px;
    background-size: 7px 7px;
  }
}

@media screen and (max-width: 736px) {
  .top section.split {
    background: none;
    padding-bottom: 0;
  }
  .top section.split::before {
    width: 0;
    height: 0;
  }
}
.top .aboutUs {
  padding: 140px 0 170px;
}
.top .aboutUs .inner02 {
  padding: 0;
  max-width: calc(696px - 40px);
  width: 100%;
}
.top .aboutUs .text {
  margin-bottom: 40px;
}
.top .aboutUs .btn {
  float: right;
}

@media screen and (max-width: 736px) {
  .top .aboutUs {
    padding: 0 0 46px;
  }
  .top .aboutUs .sec-ttlBx {
    margin-bottom: 40px;
  }
}
.top .whocallout {
  background: #eeeeee;
  position: relative;
  padding-bottom: 20px;
}
.top .whocallout::before {
  content: "";
  width: 50%;
  height: 100%;
  background: #f6f6f6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.top .whocallout .inner {
  position: relative;
  z-index: 2;
}
/*--------------------------------------------------
  lower
--------------------------------------------------*/
.lower #wrap{
  margin-top: 100px;
}
@media screen and (max-width: 736px) {
  .lower #wrap{
    margin-top: 50px;
  }
}
.lower .inner .inner02 .ttl-en {
  font-size: 1.8rem;
  color: #b2af41;
  padding: 80px 0 0 23px;
  margin-bottom: 8px;
  line-height: 1;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 736px) {
  .inner02 {
    padding: 0;
  }
}
@media screen and (max-width: 736px) {
  .lower .inner .inner02 .ttl-en {
    padding: 46px 0 0 18px;
    margin-bottom: 0px;
  }
}
.lower .inner .inner02 .ttl-en::before {
  content: "";
  width: 36px;
  height: 98px;
  background: url(../images/line_gl.svg) no-repeat left center;
  background-size: auto 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 736px) {
  .lower .inner .inner02 .ttl-en::before {
    width: 24px;
    height: 64px;
    background: url(../images/line_gl_sm.svg) no-repeat left center;
    background-size: auto 100%;
  }
}
.lower .inner .inner02 h4 {
  margin-bottom: 18px;
  margin-left: 20px;
}
.lower h4 {
  font-size: 3rem;
  margin-bottom: 18px;
  font-weight: 500;
}
.lower h4 span {
  font-weight: 500;
}
@media screen and (max-width: 736px) {
  .lower h4 {
    font-size: 28px;
    line-height: 1.7;
    margin-bottom: 10px;
  }
}
.lower .content-int{
  position: relative;
  padding: 80px 0 60px;
  margin-top: 130px;
}
@media screen and (max-width: 736px) {
  .lower .content-int {
    padding: 0 0 32px;
    margin-top: 0;
  }
}
.lower .content-int .sec-ttlBx {
  width: calc(696px + (100% - 1040px) / 2);
  min-width: 696px;
  background: #2a542a;
  position: absolute;
  top: -60px;
  z-index: 2;
}
.lower .content-int .sec-ttlBx h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #fff;
  width: 100%;
  max-width: 696px;
  padding: 50px 75px 32px;
  float: right;
  background-size: 35px 95px;
}
.lower .content-int .sec-ttlBx h3 span.en {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 736px) {
  .lower .content-int .sec-ttlBx {
    width: 100%;
    min-width: 0;
    position: static;
    top: 0;
  }
  .lower .content-int .sec-ttlBx h3 {
    max-width: 100%;
    padding: 30px 5.4% 16px;
    float: none;
    background-size: 24px 64px;
  }
  .lower .content-int .sec-ttlBx h3 span {
    line-height: 1.6;
  }
}
.lower .content-int .content-int-inner {
  padding: 0;
  max-width: calc(696px - 40px);
  width: 100%;
}
.lower .content-int .content-int-inner p{
  font-size: 1.4rem;
}

@media screen and (max-width: 736px) {
  .lower .content-int .sec-ttlBx {
    margin-bottom: 40px;
  }
}
.lower .content {
  background-color: #f6f6f6;
}
.lower .content p.font-mn{
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media screen and (max-width: 736px) {
  .lower .content p.font-mn{
    margin-bottom: 8px;
  }
}
.lower .content-inner{
  display: block;
  max-width: 1040px;
  padding: 60px 4% 160px;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  .lower .content-inner{
    width: 100%;
    padding: 40px 5% 60px;
  }
}

/*--------------------------------------------------
  about us
--------------------------------------------------*/
.about .content-int{
  padding: 100px 0 60px;
  margin-top: 110px;
}
@media screen and (max-width: 736px){
  .about .content-int{
    margin-top: 0;
    padding-top: 0;
  }
}
@media screen and (max-width: 736px){
  .about .inner p.text{
    font-size: 16px;
  }
}
.about .content-inner .content-inner02{
  max-width: 696px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  .about .content-inner .content-inner02{
    width: 100%;
  }
}
.about .content li{
  padding: 16px 24px;
}
@media screen and (max-width: 736px){
  .about .content li{
    padding: 8px;
  }
}
.about .content li:nth-of-type(odd){
  background-color: #fff;
}
.about .content dl{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about .content dl dt{
  font-weight: bold;
  margin-right: 96px;
}
@media screen and (max-width: 736px) {
  .about .content dl{
    display: inherit;
  }
}
.about .content li:last-of-type dl dt{
  margin-right: 55px;
}
@media screen and (max-width: 736px) {
  .about .content li:last-of-type dl dt{
    margin-right: 0px;
  }
}
/*--------------------------------------------------
  callout
--------------------------------------------------*/
#callout-company{
  display: block;
  padding-top: 130px;
  margin-top: -50px;
}
#callout-medical{
  display: block;
  padding-top: 130px;
  margin-top: -50px;
}
@media screen and (max-width: 736px){
  #callout-company{
    padding-top:50px;
    margin-top: -50px;
  }
  #callout-medical{
    padding-top:49px;
    margin-top: -49px;
  }
}
@media screen and (max-width: 736px){
  .callout .inner .inner02 h4{
    line-height: 1.2;
  }
}
.callout .content-int{
  padding: 0;
  margin-top: 0;
}
@media screen and (max-width: 736px){
  .callout .content-int{
    padding-top: 0px;
    margin-top: 0;
  }
}
.callout .content-inner{
  padding: 60px 10% 160px;
  width: 90%;
}
@media screen and (max-width: 736px){
  .callout .content-inner{
    width: 100%;
  }
}
.callout #callout-company .content-inner{
  margin-bottom: -130px;
}
.callout_c #callout-company .content-inner{
  margin-bottom: 0px;
}
@media screen and (max-width: 736px){
  .callout invited-company .content-inner{
    margin-bottom: 0;
  }
  .callout .content-inner{
    padding: 40px 5%;
    line-height: 2;
  }
  .callout #callout-company .content-inner{
    margin-bottom: 0;
  }
}
.callout .content-int02{
  margin-top: 0;
}
.callout #scouting-company .content-inner {
  margin-bottom: -140px;
}
@media screen and (max-width: 736px){
  .callout #scouting-company .content-inner {
    margin-bottom: 0px;
  }
}
.callout .content-int .sec-ttlBx{
  margin-bottom: 0;
}
.callout .content-inner .content-inner02{
  max-width: 656px;
  margin: 0 auto;
}
/*--------------------------------------------------
  scouting
--------------------------------------------------*/
#scouting-company{
  display: block;
  padding-top:70px;
  margin-top: -30px;
}
#scouting-medical{
  display: block;
  padding-top:69px;
}
.scouting_m #scouting-medical{
  display: block;
  padding-top:70px;
  margin-top: -30px;
}
@media screen and (max-width: 736px){
  #scouting-company{
    padding-top:50px;
    margin-top: -50px;
  }
  #scouting-medical{
    padding-top:49px;
    margin-top: -49px;
  }
  .scouting_m #scouting-medical{
    padding-top:49px;
    margin-top: -49px;
  }
  
}
.scouting .content-int{
  padding-top: 60px;
  margin-top: 0;
}
@media screen and (max-width: 736px){
  .scouting .content-int{
    padding-top: 0px;
    margin-top: 0;
  }
}
.scouting .content-int .sec-ttlBx{
  margin-bottom: 0;
  top:0;
}
.scouting .content-int .inner{
  padding: 60px;
}
@media screen and (max-width: 736px){
  .scouting .content-int .inner{
    padding: 16px 5.4% 0;
  }
  .scouting .content-int-inner .text{
    margin-bottom: 40px;
  }
}
.scouting .content-int02{
  margin-top: 0;
  min-width: 644px;
}
.scouting #scouting-company .content-inner {
  margin-bottom: -140px;
}
.scouting_c #scouting-company .content-inner {
  margin-bottom: 0px;
}
@media screen and (max-width: 736px){
  .scouting #scouting-company .content-inner {
    margin-bottom: 0px;
  }
}
.scouting .content-inner .content-inner02{
  max-width: 656px;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  .scouting .content-inner{
    padding: 40px 5% 60px
  }
  .scouting .content-inner .content-inner02{
    width: 100%;
  }
  .scouting .content-int02{
    min-width: auto;
  }
}
.scouting .content-inner .content-photo{
  margin-bottom: 32px;
}
.scouting .content-inner li{
  background: url(../images/list_marker.svg) no-repeat left top 10px;
  background-size: 7px 7px;
  padding-left: 1em;
  margin-bottom: 8px;
}
.scouting .content-inner li dd{
  margin-left: 24px;
}
/*--------------------------------------------------
  policy
--------------------------------------------------*/
.policy .content-int .sec-ttlBx{
  top: -80px;
}
.policy .content-inner .content-inner02{
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  .policy .content-inner .content-inner02{
    width: 100%;
  }
  .policy .content p.font-mn{
    font-size: 26px;
  }
}
.policy .content li{
  padding: 16px 0;
}
@media screen and (max-width: 736px) {
  .policy .content li{
    padding: 16px 0 0;
  }
}
.policy .content dl{

}
.policy .content dl dt{
  font-weight: bold;
}
.policy .content dl dd{
  margin-left: 1.6em;
}

.policy .content .date{
  text-align: right;
  margin-top: 16px;
}