@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

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

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

/* ====================================================
Color
==================================================== */
/* ====================================================
Font
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
px→vwの計算

.foo {
  width: vw(40px);
}

.bar {
  width: vw(40px, 768px);
}

.baz {
  width: vw(50%);
}
==================================================== */
/* ====================================================
// 隣接要素のmargin
==================================================== */
/* ====================================================
// formスタイルリセット
==================================================== */
/* ====================================================
// flexセット
==================================================== */
/* ====================================================
// 疑似クラス
==================================================== */
/* ====================================================
// hover時の透過度
==================================================== */
/* ====================================================
// グラデーション
==================================================== */
/* ====================================================
object-fit
.photo__image {
  &.-image1 {
    @include object-fit(cover);
  }
  
  &.-image2 {
    @include object-fit(contain, top center);
  }
}
==================================================== */
/* ====================================================
画像などを縦横比を維持したままレスポンシブ対応
*画像やGoogle Map、YouTubeの埋め込みなどを縦横比を維持したままレスポンシブ対応
.photo {
  // 画像を16:9にトリミングして縦横比を常に保つ
  @include aspect-ratio(16, 9);

  & > .image {
    @include object-fit(cover);
  }
}
==================================================== */
/* マウスオーバー時 */
/* ====================================================
Base style & container
==================================================== */
body {
  position: relative;
  color: black;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  background: url(../img/common/border.png) repeat-y center top;
  background-size: 1500px auto;
}

@media screen and (max-width: 1500px) {
  body {
    background-size: 100%;
  }
}

.inner {
  display: block;
  margin: 0 auto;
  max-width: 1500px;
}

@media screen and (max-width: 834px) {
  .inner {
    padding: 0 15px;
  }
}

@media screen and (max-width: 834px) {
  .pc {
    display: none;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none;
  }
}

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

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

/* ====================================================
header
==================================================== */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  z-index: 100;
}

@media screen and (max-width: 1024px) {
  #main-header {
    height: 60px;
  }
}

@media screen and (max-width: 834px) {
  #main-header {
    background: #fff;
  }
}

#main-header .logo {
  margin-left: 135px;
  width: 207px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

@media screen and (max-width: 1024px) {
  #main-header .logo {
    width: 150px;
    margin-left: 55px;
  }
}

@media screen and (max-width: 834px) {
  #main-header .logo {
    margin-left: 15px;
  }
}

#main-header .logo img {
  width: 207px;
  height: 60px;
}

@media screen and (max-width: 1024px) {
  #main-header .logo img {
    width: 150px;
    height: 43px;
  }
}

@media screen and (max-width: 640px) {
  #main-header .logo img {
    width: 110px;
  }
}

#main-header .logo-bk {
  display: none;
  opacity: 0;
}

@media screen and (max-width: 834px) {
  #main-header .logo-bk {
    display: block;
    opacity: 1;
  }
}

@media screen and (max-width: 834px) {
  #main-header .logo-w {
    display: none;
    opacity: 0;
  }
}

#main-header .navGlobal {
  width: calc(100% - 437px);
}

@media screen and (max-width: 1400px) {
  #main-header .navGlobal {
    width: calc(100% - 300px);
  }
}

@media screen and (max-width: 1024px) {
  #main-header .navGlobal {
    width: 100%;
    max-width: 100%;
  }
}

#main-header .navGlobalIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  width: 100%;
}

@media screen and (max-width: 1400px) {
  #main-header .navGlobalIn {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1024px) {
  #main-header .navGlobalIn {
    display: block;
    padding: 40px 15px;
    text-align: center;
  }
}

#main-header .navGlobalIn li {
  margin-right: 5%;
  color: #fff;
}

@media screen and (max-width: 1300px) {
  #main-header .navGlobalIn li {
    margin-right: 2.3%;
  }
}

@media screen and (min-width: 835px) {
  #main-header .navGlobalIn li a {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  #main-header .navGlobalIn li a:hover {
    color: #bcd400;
  }
}

@media screen and (max-width: 1024px) {
  #main-header .navGlobalIn li a {
    display: block;
    padding: 20px 0;
    color: #000;
  }
}

#main-header .btn-entry {
  font-size: 24px;
  font-size: 2.4rem;
  width: 230px;
  height: 84px;
  line-height: 78px;
  text-align: center;
  background: #bcd400;
  border-radius: 0 0 0 20px;
}

@media screen and (max-width: 1240px) {
  #main-header .btn-entry {
    width: 150px;
  }
}

@media screen and (max-width: 1024px) {
  #main-header .btn-entry {
    font-size: 20px;
    font-size: 2rem;
    margin-right: 60px;
    height: 60px;
    line-height: 55px;
  }
}

@media screen and (max-width: 640px) {
  #main-header .btn-entry {
    width: 100px;
  }
}

.mobile-icon {
  -webkit-transition: background .5s;
  -o-transition: background .5s;
  transition: background .5s;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  z-index: 12;
}

@media screen and (min-width: 1025px) {
  .mobile-icon {
    display: none;
  }
}

.mobile-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 42.5%;
  height: 1px;
  background-color: #bcd400;
  font-size: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.mobile-icon span:before, .mobile-icon span:after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #bcd400;
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 3px;
}

.mobile-icon span:before {
  top: -10px;
}

.mobile-icon span:after {
  bottom: -10px;
}

.mobile-icon.mobile-close span {
  background-color: transparent;
}

.mobile-icon.mobile-close span:before, .mobile-icon.mobile-close span:after {
  width: 100%;
  background: #bcd400;
}

.mobile-icon.mobile-close span:before {
  -webkit-transform: translateY(0) rotate(45deg);
  -ms-transform: translateY(0) rotate(45deg);
      transform: translateY(0) rotate(45deg);
  top: 2px;
}

.mobile-icon.mobile-close span:after {
  -webkit-transform: translateY(0) rotate(-45deg);
  -ms-transform: translateY(0) rotate(-45deg);
      transform: translateY(0) rotate(-45deg);
  bottom: -2px;
}

.scrolled-down #main-header .logo-bk {
  display: block;
  opacity: 1;
}

.scrolled-down #main-header .logo-w {
  display: none;
  opacity: 0;
}

.scrolled-down #main-header .navGlobal .navGlobalIn li {
  color: #000;
}

@media screen and (max-width: 1024px) {
  .js-nav {
    position: fixed;
    top: 60px;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    opacity: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }
  .js-nav.active {
    opacity: 1;
    display: block;
  }
}

/* ====================================================
footer
==================================================== */
#main-footer {
  padding: 0 90px 20px;
}

@media screen and (max-width: 1240px) {
  #main-footer {
    padding: 0 5.35vw 20px;
  }
}

#main-footer .logo-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

@media screen and (max-width: 834px) {
  #main-footer .logo-block {
    display: block;
    text-align: center;
  }
}

@media screen and (max-width: 834px) {
  #main-footer .logo {
    margin-bottom: 30px;
  }
}

#main-footer .logo img {
  width: 200px;
}

@media screen and (min-width: 835px) {
  #main-footer .address {
    text-align: right;
  }
}

#main-footer .address img {
  width: 207px;
}

#main-footer .address p {
  margin: 20px 0 0;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.8;
}

#main-footer .copyright {
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (max-width: 834px) {
  #main-footer .copyright {
    text-align: center;
  }
}

#main-footer .corporate-btn {
  text-align: right;
  font-size: 13px;
  font-size: 1.3rem;
  margin-top: 15px;
  letter-spacing: 0;
}

#main-footer .corporate-btn a {
  width: 210px;
  padding: 5px 0;
  display: inline-block;
  border: 1px solid #e6e6e6;
  text-align: center;
  border-radius: 5px;
}

@media screen and (max-width: 834px) {
  #main-footer .corporate-btn a {
    display: block;
    margin: 0 auto;
  }
}

#main-footer .corporate-btn a::after {
  content: "";
  width: 12px;
  height: 12px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  background: url(../img/common/ico-blank.png) no-repeat 0 0/100% auto;
}

.totop {
  display: inline-block;
  padding-left: 50px;
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 100px;
  height: 14px;
  color: #bcd400;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: 100;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  z-index: 10;
}

@media screen and (max-width: 1240px) {
  .totop {
    right: -2vw;
  }
}

@media screen and (max-width: 834px) {
  .totop {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    bottom: 70px;
    right: -20px;
  }
  .totop:hover {
    opacity: .7;
  }
}

.totop:before, .totop:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
}

.totop:before {
  top: 2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 6px 6px;
  border-color: transparent transparent #bcd400 transparent;
}

.totop:after {
  top: 7px;
  width: 40px;
  height: 1px;
  background: #bcd400;
}

/* ====================================================
loading
==================================================== */
/* ローディング画面 */
#loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  background-color: #bcd400;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
  right: 100%;
}

.spinner {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
          animation: sk-scaleout 1.0s infinite ease-in-out;
}

/* ローディングアニメーション */
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

/* ====================================================
MODULE
==================================================== */
/*パンくずMODULE*/
/*見出しMODULE*/
.c-ttl01 {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.2;
}

@media screen and (max-width: 834px) {
  .c-ttl01 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.c-ttl01 span {
  display: block;
}

.c-ttl01 span.bar {
  width: 34px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

@media screen and (max-width: 834px) {
  .c-ttl01 span.bar {
    width: 25px;
  }
}

.c-ttl02 {
  position: relative;
  top: -10px;
  font-size: 90px;
  font-size: 9rem;
  line-height: 1;
}

@media screen and (max-width: 834px) {
  .c-ttl02 {
    font-size: 45px;
    font-size: 4.5rem;
  }
}

.c-ttl02 span {
  display: block;
}

.c-ttl03 {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 15px;
  color: #0a1f3a;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 834px) {
  .c-ttl03 {
    margin-bottom: 30px;
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.c-ttl03:before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  content: "";
  width: 60px;
  height: 3px;
  background: #bcd400;
}

@media screen and (max-width: 834px) {
  .c-ttl03:before {
    width: 45px;
    height: 2px;
  }
}

.c-ttl04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 834px) {
  .c-ttl04 {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.c-ttl04 .quate-mark {
  display: inline-block;
  margin-top: -30px;
  font-size: 90px;
  font-size: 9rem;
  line-height: 1;
}

@media screen and (max-width: 1500px) {
  .c-ttl04 .quate-mark {
    font-size: 6vw;
    margin-top: -2vw;
  }
}

@media screen and (max-width: 834px) {
  .c-ttl04 .quate-mark {
    margin-top: -15px;
    font-size: 50px;
    font-size: 5rem;
  }
}

.c-ttl05 {
  position: relative;
  margin-bottom: 25px;
  padding: 10px 35px;
  background: #f4f4f4;
  font-size: 24px;
  font-size: 2.4rem;
  border-radius: 3px;
}

@media screen and (max-width: 834px) {
  .c-ttl05 {
    padding: 6px 25px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.c-ttl05:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 10px;
  width: 7px;
  height: calc(100% - 20px);
  border-radius: 4px;
  background: #bcd400;
}

@media screen and (max-width: 834px) {
  .c-ttl05:before {
    left: 10px;
    top: 5px;
    width: 4px;
    height: calc(100% - 12px);
  }
}

.c-ttl06 {
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 21px;
  font-size: 2.1rem;
  border-bottom: 3px solid #bcd400;
}

@media screen and (max-width: 834px) {
  .c-ttl06 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.c-ttl07 {
  margin-bottom: 30px;
}

.c-ttl07 .c-ft--min {
  color: #bcd400;
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 834px) {
  .c-ttl07 .c-ft--min {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.c-ttl07 .c-ft--rb {
  position: relative;
  display: block;
  margin-top: 20px;
  padding-left: 50px;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (max-width: 834px) {
  .c-ttl07 .c-ft--rb {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.c-ttl07 .c-ft--rb:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #000;
}

.c-ttl07.c-ft--min {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding-left: 115px;
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: .06em;
}

@media screen and (max-width: 834px) {
  .c-ttl07.c-ft--min {
    padding-left: 65px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.c-ttl07.c-ft--min:before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  display: inline-block;
  width: 100px;
  height: 1px;
  background: #ccc;
}

@media screen and (max-width: 834px) {
  .c-ttl07.c-ft--min:before {
    width: 50px;
  }
}

.c-ttl08 {
  margin-bottom: 30px;
  color: #bcd400;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: .06em;
}

@media screen and (max-width: 834px) {
  .c-ttl08 {
    font-size: 23px;
    font-size: 2.3rem;
  }
}

.c-ttl09 {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.875;
  letter-spacing: .08em;
}

@media screen and (max-width: 834px) {
  .c-ttl09 {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 640px) {
  .c-ttl09 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.c-ttl10 {
  position: relative;
  display: block;
  margin-bottom: 0;
  padding-left: 129px;
  color: #fff;
}

@media screen and (max-width: 834px) {
  .c-ttl10 {
    padding-left: 65px;
  }
}

.c-ttl10 .jp {
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: .06em;
}

@media screen and (max-width: 834px) {
  .c-ttl10 .jp {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.c-ttl10 .en {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}

.c-ttl10:before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  display: inline-block;
  width: 100px;
  height: 4px;
  background: #fff;
}

@media screen and (max-width: 834px) {
  .c-ttl10:before {
    top: 14px;
    width: 50px;
    height: 2px;
  }
}

/*テキストMODULE*/
.c-txt {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2.1333;
}

@media screen and (max-width: 834px) {
  .c-txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.c-txt02 {
  position: relative;
  padding-left: 98px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 834px) {
  .c-txt02 {
    padding-left: 60px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.c-txt02:before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 80px;
  height: 1px;
  background: #fff;
}

@media screen and (max-width: 834px) {
  .c-txt02:before {
    width: 50px;
  }
}

.c-txt03 {
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: 8px;
}

@media screen and (max-width: 1024px) {
  .c-txt03 {
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: 4px;
  }
}

@media screen and (max-width: 640px) {
  .c-txt03 {
    font-size: 30px;
    font-size: 3rem;
  }
}

.txt-deco {
  display: inline-block;
  color: rgba(10, 31, 58, 0.1);
  font-size: 200px;
  font-size: 20rem;
  line-height: .8;
}

@media screen and (max-width: 1500px) {
  .txt-deco {
    font-size: 13.33vw;
  }
}

@media screen and (max-width: 834px) {
  .txt-deco {
    font-size: 16vw;
  }
}

.c-ft--min {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.c-ft--rb {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  letter-spacing: .5px;
}

.c-fw--lt {
  font-weight: 300;
}

.c-fw--md {
  font-weight: 500;
}

.c-fw--bd {
  font-weight: 700;
}

.c-fw--bk {
  font-weight: 900;
}

.c-fc--gr {
  color: #bcd400;
}

.c-fc--lg {
  color: #c1c4ae;
}

.c-fc--nv {
  color: #0a1f3a;
}

.c-fc--lg02 {
  color: #dcec57;
}

.c-al--c {
  text-align: center;
}

.c-al--r {
  text-align: right;
}

.c-al--l {
  text-align: left;
}

.c-note {
  font-size: 12px;
  font-size: 1.2rem;
}

/*リンクMODULE*/
.c-link01 {
  position: relative;
  display: inline-block;
  padding-right: 40px;
  padding-bottom: 20px;
  color: #0a1f3a;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 2px solid #0a1f3a;
}

@media screen and (max-width: 834px) {
  .c-link01 {
    padding-bottom: 12px;
  }
}

.c-link01:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 1px;
}

.c-link01:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 1px;
}

.c-link01:before, .c-link01:after {
  right: 0;
  background: #0a1f3a;
}

.c-link01:before {
  top: 14px;
}

.c-link01:after {
  top: 11px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

/*ボタンMODULE*/
.btn-hover {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  background-color: #000000;
  color: #ffffff;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
}

.btn-hover:after {
  background: #fff;
  content: "";
  height: 200px;
  left: -90px;
  opacity: .2;
  position: absolute;
  top: -63px;
  -webkit-transform: rotate(41deg);
  -ms-transform: rotate(41deg);
      transform: rotate(41deg);
  -webkit-transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: 1;
}

.btn-hover:hover:after {
  left: 120%;
  -webkit-transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
}

.c-btn {
  display: inline-block;
  width: 100%;
}

.c-btn01 {
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  background: #0a1f3a;
  border-radius: 30px;
  padding: 15px 10px;
}

.c-btn02 {
  display: inline-block;
  color: #fff;
  font-size: 21px;
  font-size: 2.1rem;
  background: #0a1f3a;
  padding: 20px 15px;
  border-radius: 5px !important;
  cursor: pointer;
}

@media screen and (max-width: 834px) {
  .c-btn02 {
    font-size: 17px;
    font-size: 1.7rem;
    padding: 10px;
  }
}

@media screen and (min-width: 835px) {
  .c-btn02 {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .c-btn02:hover {
    opacity: .7;
  }
}

.c-btn03 {
  display: inline-block;
  color: #fff;
  font-size: 21px;
  font-size: 2.1rem;
  background: #999;
  padding: 20px 15px;
  border-radius: 5px !important;
  cursor: pointer;
}

@media screen and (max-width: 834px) {
  .c-btn03 {
    font-size: 17px;
    font-size: 1.7rem;
    padding: 10px;
  }
}

@media screen and (min-width: 835px) {
  .c-btn03 {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .c-btn03:hover {
    opacity: .7;
  }
}

.btn-more {
  max-width: 210px;
}

.link-hover {
  display: inline-block;
}

@media screen and (min-width: 835px) {
  .link-hover {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
  }
  .link-hover:hover {
    opacity: .7;
  }
}

/*リストMODULE*/
/*ボックスMODULE*/
/*グリッドMODULE*/
/*フォームMODULE*/
.slick-slide {
  outline: 0;
}

.c-bg--lg {
  background: #f9f9f9;
}

.hover-zoom {
  display: inline-block;
}

.hover-zoom .img-zoom {
  overflow: hidden;
}

.hover-zoom .img-zoom img {
  -webkit-transition: .5s all;
  -o-transition: .5s all;
  transition: .5s all;
}

@media screen and (min-width: 835px) {
  .hover-zoom:hover .img-zoom img {
    -webkit-transform: scale(1.1, 1.1);
        -ms-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
}

.fade-up {
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
      transform: translateY(50px);
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), -webkit-transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), -webkit-transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  -o-transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
  transition: opacity 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99), -webkit-transform 0.8s cubic-bezier(0.32, 0.13, 0.21, 0.99);
}

.fade-up.active {
  -webkit-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
  opacity: 1;
}

.p-page-title {
  position: relative;
  padding-left: 90px;
}

@media screen and (max-width: 1024px) {
  .p-page-title {
    padding-left: 45px;
  }
}

@media screen and (max-width: 834px) {
  .p-page-title {
    padding-top: 60px;
  }
}

.p-page-title img {
  border-radius: 0 0 0 100px;
}

@media screen and (max-width: 834px) {
  .p-page-title img {
    border-radius: 0 0 0 50px;
    width: 100%;
    height: 40vw;
  }
}

.p-page-title .c-ttl01 {
  margin: -1.5em auto 0;
  width: 71.43%;
  max-width: 1200px;
  text-align: left;
}

@media screen and (max-width: 834px) {
  .p-page-title .c-ttl01 {
    margin-top: -1.9em;
    width: 80%;
  }
}

.p-txt-block .c-txt {
  margin: 40px 0 0;
}

@media screen and (max-width: 834px) {
  .p-txt-block .c-txt {
    margin: 20px 0 0;
  }
}

.p-txt-block .c-btn01 {
  margin: 60px 0 0;
}

@media screen and (max-width: 834px) {
  .p-txt-block .c-btn01 {
    margin: 30px 0 0;
  }
}

.c-img-of {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover; object-position: center", sans-serif;
}

.c-scroll {
  padding: 50px 40px;
  height: 370px;
  overflow-y: scroll;
  border: 5px solid #eee;
}

@media screen and (max-width: 834px) {
  .c-scroll {
    padding: 35px 20px;
    height: 250px;
    border: 3px solid #eee;
  }
}

.c-img--l {
  padding-right: 90px;
}

@media screen and (max-width: 1680px) {
  .c-img--l {
    padding-right: 5.47619vw;
  }
}

.c-img--r {
  padding-left: 90px;
}

@media screen and (max-width: 1680px) {
  .c-img--r {
    padding-left: 5.47619vw;
  }
}

/* ====================================================
index
==================================================== */
.mv-wrap {
  position: relative;
  padding-left: 90px;
  padding-bottom: 20px;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  .mv-wrap {
    padding-bottom: 40px;
    padding-left: 45px;
  }
}

@media screen and (max-width: 640px) {
  .mv-wrap {
    padding-top: 60px;
  }
}

@media screen and (max-width: 640px) {
  .mv-wrap {
    padding-bottom: 5%;
  }
}

.mv-wrap .copyright {
  position: absolute;
  left: 40px;
  top: 95px;
  width: 16px;
  height: 235px;
  font-size: 12px;
  font-size: 1.2rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}

@media screen and (max-width: 1024px) {
  .mv-wrap .copyright {
    font-size: 10px;
    font-size: 1rem;
    left: 15px;
    top: 15%;
    height: 190px;
  }
}

.mv-wrap .mv img {
  width: 100%;
  border-radius: 0 0 0 100px;
}

@media screen and (max-width: 834px) {
  .mv-wrap .mv img {
    border-radius: 0 0 0 50px;
  }
}

.mv-wrap .js-slider-mv img {
  width: 100%;
  border-radius: 0 0 0 100px;
}

@media screen and (max-width: 834px) {
  .mv-wrap .js-slider-mv img {
    border-radius: 0 0 0 50px;
  }
}

.mv-wrap .js-slider-mv .slick-dots {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 40px;
  width: 2px;
  bottom: auto;
}

@media screen and (max-width: 1024px) {
  .mv-wrap .js-slider-mv .slick-dots {
    right: 20px;
  }
}

@media screen and (max-width: 834px) {
  .mv-wrap .js-slider-mv .slick-dots {
    margin-top: 20px;
  }
}

.mv-wrap .js-slider-mv .slick-dots li {
  display: block;
  margin: 10px 0;
}

.mv-wrap .js-slider-mv .slick-dots li button {
  display: inline-block;
  padding: 0;
  width: 2px;
  height: 80px;
  background: #dcdcdc;
}

@media screen and (max-width: 1680px) {
  .mv-wrap .js-slider-mv .slick-dots li button {
    height: 4.76vw;
    min-height: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .mv-wrap .js-slider-mv .slick-dots li button {
    right: 20px;
    min-height: 30px;
  }
}

.mv-wrap .js-slider-mv .slick-dots li button:before {
  display: none;
}

.mv-wrap .js-slider-mv .slick-dots li.slick-active button {
  background: #bcd400;
}

.mv-wrap .ttl-mv {
  position: absolute;
  top: 47.3%;
  left: 2.38%;
  max-width: 725px;
  width: 43.1%;
}

@media screen and (max-width: 834px) {
  .mv-wrap .ttl-mv {
    top: 50%;
    left: 35px;
    width: 68%;
  }
}

@media screen and (max-width: 640px) {
  .mv-wrap .ttl-mv {
    top: 40%;
  }
}

.mv-wrap .ttl-mv--lead {
  margin-left: 18%;
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 3px;
}

@media screen and (max-width: 1200px) {
  .mv-wrap .ttl-mv--lead {
    font-size: 2vw;
  }
}

@media screen and (max-width: 834px) {
  .mv-wrap .ttl-mv--lead {
    font-size: 18px;
    font-size: 2.4vw;
    /* 750 = design width, mobile only */
    letter-spacing: 1.5px;
  }
}

.mv-wrap .information {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 30px 10px 40px 50px;
  min-width: 400px;
  max-width: 600px;
  width: 35.71%;
  background: #fff;
  border-radius: 20px 0 0 20px;
  -webkit-box-shadow: 0px 0px 32px -5px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 32px -5px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 834px) {
  .mv-wrap .information {
    width: 45%;
    min-width: 260px;
    padding: 10px 10px 30px 20px;
  }
}

@media screen and (max-width: 640px) {
  .mv-wrap .information {
    width: 55%;
    bottom: -10%;
  }
}

.mv-wrap .information .ttl-information {
  margin-bottom: 15px;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (max-width: 834px) {
  .mv-wrap .information .ttl-information {
    margin-bottom: 5px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.mv-wrap .information--item {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 834px) {
  .mv-wrap .information--item {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.mv-wrap .information--item .date {
  margin-bottom: 6px;
}

.mv-wrap .information .slick-dots {
  position: relative;
  text-align: left;
  bottom: -10px;
}

.mv-wrap .information .slick-dots li {
  margin: 0 10px 0 0;
}

.mv-wrap .information .slick-dots li button {
  padding: 6px;
}

.mv-wrap .information .slick-dots li button:before {
  width: 10px;
  height: 10px;
  background: #dcdcdc;
}

.mv-wrap .information .slick-dots li.slick-active button:before {
  background: #bcd400;
}

.page-index .c-ttl01 {
  margin-bottom: 65px;
}

@media screen and (max-width: 834px) {
  .page-index .c-ttl01 {
    margin-bottom: 30px;
  }
}

.page-index .inner {
  position: relative;
  z-index: 1;
}

.page-index .txt-lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 834px) {
  .page-index .txt-lead {
    font-size: 17px;
    font-size: 1.7rem;
    letter-spacing: 1px;
  }
}

.page-index .txt-lead .quate-mark {
  display: inline-block;
  margin-top: -30px;
  font-size: 90px;
  font-size: 9rem;
  line-height: 1;
}

@media screen and (max-width: 1500px) {
  .page-index .txt-lead .quate-mark {
    font-size: 6vw;
    margin-top: -2vw;
  }
}

@media screen and (max-width: 834px) {
  .page-index .txt-lead .quate-mark {
    margin-top: -15px;
    font-size: 50px;
    font-size: 5rem;
  }
}

.page-index .sec-aboutus {
  padding: 55px 0 86px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus {
    padding: 50px 0 40px;
  }
}

@media screen and (max-width: 640px) {
  .page-index .sec-aboutus {
    padding-top: calc(40px + 5%);
  }
}

.page-index .sec-aboutus .txt-lead {
  position: absolute;
  left: 0;
  top: 130px;
}

@media screen and (max-width: 1024px) {
  .page-index .sec-aboutus .txt-lead {
    position: static;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}

.page-index .sec-aboutus .txt-deco {
  position: absolute;
  right: 0;
  top: 130px;
  letter-spacing: -.03em;
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .txt-deco {
    top: 14vw;
  }
}

.page-index .sec-aboutus .img-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 100px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .img-block {
    margin-bottom: 50px;
  }
}

.page-index .sec-aboutus .img-block--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  height: 600px;
  color: #fff;
  text-align: center;
  line-height: .9;
}

@media screen and (max-width: 1500px) {
  .page-index .sec-aboutus .img-block--item {
    height: 40vw;
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .img-block--item {
    height: calc(50vw -15px);
    line-height: 1.1;
  }
}

@media screen and (max-width: 640px) {
  .page-index .sec-aboutus .img-block--item {
    width: 100%;
    height: 40vw;
  }
}

@media screen and (max-width: 420px) {
  .page-index .sec-aboutus .img-block--item {
    height: 55vw;
  }
}

.page-index .sec-aboutus .img-block--item .c-ft--min {
  margin-top: 30px;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1.2;
  letter-spacing: 8px;
}

@media screen and (max-width: 1024px) {
  .page-index .sec-aboutus .img-block--item .c-ft--min {
    margin-top: 20px;
    font-size: 36px;
    font-size: 3.6rem;
    letter-spacing: 4px;
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .img-block--item .c-ft--min {
    margin-top: 20px;
    font-size: max(26px, 4.5vw);
  }
}

@media screen and (max-width: 640px) {
  .page-index .sec-aboutus .img-block--item .c-ft--min {
    letter-spacing: 2px;
  }
}

.page-index .sec-aboutus .img-block--item.item01 {
  background: url(../img/index/img-about01.png) no-repeat center center;
  background-size: cover;
  border-radius: 100px 0 0 0;
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .img-block--item.item01 {
    border-radius: 50px 0 0 0;
  }
}

.page-index .sec-aboutus .img-block--item.item02 {
  background: url(../img/index/img-about02.png) no-repeat center center;
  background-size: cover;
  border-radius: 0 0 100px 0;
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .img-block--item.item02 {
    border-radius: 0 0 50px 0;
  }
}

.page-index .sec-aboutus .img-block--txt-l {
  display: block;
  font-size: 100px;
  font-size: 10rem;
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .img-block--txt-l {
    font-size: 50px;
    font-size: 5rem;
  }
}

.page-index .sec-aboutus .img-block--txt-s {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .img-block--txt-s {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.page-index .sec-aboutus .img-block--txt-ss {
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .img-block--txt-ss {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.page-index .sec-aboutus .lead-block--txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.28;
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .lead-block--txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.page-index .sec-aboutus .lead-block .c-ft--min {
  margin: 55px 0 45px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 5px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-aboutus .lead-block .c-ft--min {
    margin: 35px 0;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.page-index .sec-business {
  position: relative;
  padding: 90px 0 130px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-business {
    padding: 60px 0;
  }
}

.page-index .sec-business:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 90px);
  height: 100%;
  background: #f9f9f9;
}

@media screen and (max-width: 1024px) {
  .page-index .sec-business:before {
    width: calc(100% - 45px);
  }
}

.page-index .sec-business .txt-deco {
  position: absolute;
  left: 0;
  top: 120px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-business .txt-deco {
    top: 10vw;
  }
}

.page-index .sec-business .business-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 89.88%;
}

.page-index .sec-business .business-block--txt {
  margin-bottom: 40px;
}

@media screen and (min-width: 835px) {
  .page-index .sec-business .business-block--txt {
    margin-bottom: 0;
    width: 43%;
  }
}

@media screen and (max-width: 1580px) {
  .page-index .sec-business .business-block--txt {
    padding-left: 25px;
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-business .business-block--txt {
    padding: 0;
  }
}

.page-index .sec-business .business-block--txt .c-txt {
  margin: 60px 0 40px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-business .business-block--txt .c-txt {
    margin: 30px 0;
  }
}

@media screen and (min-width: 835px) {
  .page-index .sec-business .business-block--img {
    width: 53.86%;
  }
}

.page-index .sec-interview {
  overflow: hidden;
  position: relative;
  padding: 85px 0 145px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview {
    padding: 60px 0;
  }
}

.page-index .sec-interview .bg-block {
  position: relative;
  padding: 86px 0 0 0;
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .bg-block {
    padding: 50px 0;
  }
}

.page-index .sec-interview .bg-block-inner {
  margin-left: 190px;
  margin-right: 90px;
  position: relative;
  z-index: 2;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  .page-index .sec-interview .bg-block-inner {
    margin-left: calc(6% + 45px);
    margin-right: 45px;
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .bg-block-inner {
    margin: 0 30px 0 75px;
  }
}

.page-index .sec-interview .bg-block:before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100% - 90px);
  height: calc(100% - 150px);
  background: #bcd400;
  z-index: -1;
}

@media screen and (max-width: 1024px) {
  .page-index .sec-interview .bg-block:before {
    width: calc(100% - 45px);
    height: calc(100% - 14vw);
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .bg-block:before {
    height: 100%;
  }
}

.page-index .sec-interview .bg-block:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/border.png) repeat-y center top;
  background-size: 1500px auto;
}

@media screen and (max-width: 1500px) {
  .page-index .sec-interview .bg-block:after {
    background-size: 100%;
  }
}

.page-index .sec-interview .btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .btn-block {
    display: block;
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .btn-block--txt {
    margin-bottom: 30px;
  }
}

.page-index .sec-interview .txt-deco {
  position: absolute;
  top: 120px;
  right: -110px;
  color: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 1024px) {
  .page-index .sec-interview .txt-deco {
    top: 13vw;
    right: -5.2vw;
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .txt-deco {
    top: -61px;
    right: -9vw;
  }
}

.page-index .sec-interview .staff-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: auto;
  margin-top: 30px;
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .page-index .sec-interview .staff-block {
    margin-top: 20px;
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .staff-block {
    margin-top: 0;
  }
}

.page-index .sec-interview .staff-block--item {
  width: 22%;
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .staff-block--item {
    width: 100%;
  }
}

.page-index .sec-interview .staff-block--item .label {
  margin: 10px 0 5px;
  font-size: 13px;
  font-size: 1.3rem;
}

.page-index .sec-interview .staff-block--item .label .c-fc--lg {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .staff-block--item .label .c-fc--lg {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.page-index .sec-interview .staff-block--item .name {
  font-size: 13px;
  font-size: 1.3rem;
}

.page-index .sec-interview .staff-block--item .name .c-ft--rb {
  margin-left: 10px;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .staff-block--item .name .c-ft--rb {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-interview .staff-block--item .c-fc--lg,
  .page-index .sec-interview .staff-block--item .c-fc--gr {
    color: #fff;
  }
}

.page-index .sec-interview .staff-block--img {
  position: relative;
}

.page-index .sec-interview .staff-block--img .img-staff {
  position: relative;
}

.page-index .sec-interview .staff-block--img .bg-staff {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 30px 0 30px 0;
}

.page-index .sec-career .ttl-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 40px;
  padding-bottom: 25px;
  max-width: 1440px;
}

@media screen and (max-width: 1024px) {
  .page-index .sec-career .ttl-block {
    padding-bottom: 3.6vw;
  }
}

.page-index .sec-career .ttl-block img {
  width: 69.444%;
}

@media screen and (max-width: 834px) {
  .page-index .sec-career .ttl-block img {
    width: 65%;
    height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover", sans-serif;
  }
}

.page-index .sec-career .ttl-block .c-ttl01 {
  width: 30.556%;
}

@media screen and (max-width: 834px) {
  .page-index .sec-career .ttl-block .c-ttl01 {
    width: 35%;
  }
}

.page-index .sec-career .ttl-block .txt-deco02 {
  position: absolute;
  right: 100px;
  bottom: 0;
  font-size: 120px;
  font-size: 12rem;
  line-height: .8;
}

@media screen and (max-width: 1024px) {
  .page-index .sec-career .ttl-block .txt-deco02 {
    right: 0;
    font-size: 11.7vw;
  }
}

.page-index .sec-career .lead-block {
  margin-bottom: 90px;
  margin-left: auto;
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .page-index .sec-career .lead-block {
    width: 70%;
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-career .lead-block {
    margin-bottom: 60px;
    width: 100%;
  }
}

.page-index .sec-career .lead-block .c-txt {
  margin: 40px 0 60px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-career .lead-block .c-txt {
    margin: 20px 0 30px;
  }
}

.page-index .sec-workplace {
  padding-bottom: 100px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-workplace {
    padding-bottom: 50px;
  }
}

.page-index .sec-workplace .img-main {
  border-radius: 100px 0 100px 0;
}

@media screen and (max-width: 834px) {
  .page-index .sec-workplace .img-main {
    border-radius: 50px 0 50px 0;
  }
}

.page-index .sec-workplace .img-main-block {
  position: relative;
  margin-bottom: 105px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-workplace .img-main-block {
    margin-bottom: 60px;
  }
}

.page-index .sec-workplace .img-main-block .c-txt {
  margin-top: 60px;
}

.page-index .sec-workplace .img-main-block .txt-deco {
  position: absolute;
  left: 0;
  top: 615px;
}

@media screen and (max-width: 1500px) {
  .page-index .sec-workplace .img-main-block .txt-deco {
    top: 41vw;
  }
}

@media screen and (max-width: 1024px) {
  .page-index .sec-workplace .img-main-block .txt-deco {
    top: 41vw;
  }
}

@media screen and (max-width: 834px) {
  .page-index .sec-workplace .img-main-block .txt-deco {
    top: 39vw;
  }
}

.page-index .sec-workplace .js-slider-workplace {
  padding-bottom: 30px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-workplace .js-slider-workplace {
    padding-bottom: 20px;
  }
}

.page-index .sec-workplace .js-slider-workplace .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  bottom: 0;
  right: 0;
  bottom: 0;
}

.page-index .sec-workplace .js-slider-workplace .slick-dots li {
  display: inline-block;
  margin: 0 0 0 13px !important;
}

@media screen and (max-width: 834px) {
  .page-index .sec-workplace .js-slider-workplace .slick-dots li {
    margin: 0 0 0 8px !important;
  }
}

.page-index .sec-workplace .js-slider-workplace .slick-dots li button {
  display: inline-block;
  padding: 0;
  width: 80px;
  height: 2px;
  background: #dcdcdc;
}

@media screen and (max-width: 834px) {
  .page-index .sec-workplace .js-slider-workplace .slick-dots li button {
    width: 60px;
  }
}

@media screen and (max-width: 640px) {
  .page-index .sec-workplace .js-slider-workplace .slick-dots li button {
    width: 40px;
  }
}

.page-index .sec-workplace .js-slider-workplace .slick-dots li button:before {
  display: none;
}

.page-index .sec-workplace .js-slider-workplace .slick-dots li.slick-active button {
  background: #bcd400;
}

.page-index .sec-workplace .link-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-index .sec-workplace .link-block--item {
  width: 33.33%;
}

@media screen and (max-width: 834px) {
  .page-index .sec-workplace .link-block--item {
    margin-bottom: 30px;
    width: 100%;
  }
}

.page-index .sec-workplace .link-block--txt {
  margin-top: 15px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
}

.page-index .sec-workplace .link-block--txt .c-ft--rb {
  display: block;
  font-size: 21px;
  font-size: 2.1rem;
}

.page-index .sec-recruit {
  padding-bottom: 110px;
}

@media screen and (max-width: 834px) {
  .page-index .sec-recruit {
    padding-bottom: 60px;
  }
}

.btn-bg {
  background: #0a1f3a;
  color: #fff;
}

.btn-bg .link-block02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1500px;
  margin: 0 auto;
  border-right: 1px solid #7c8794;
}

.btn-bg .link-block02--item {
  width: 25%;
  text-align: center;
  border-left: 1px solid #7c8794;
}

@media screen and (max-width: 834px) {
  .btn-bg .link-block02--item {
    width: 50%;
    border-bottom: 1px solid #7c8794;
  }
}

.btn-bg .link-block02--item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 15px;
  height: 330px;
  font-size: 21px;
  font-size: 2.1rem;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

@media screen and (max-width: 1500px) {
  .btn-bg .link-block02--item a {
    height: 22vw;
  }
}

@media screen and (max-width: 834px) {
  .btn-bg .link-block02--item a {
    height: 35vw;
    min-height: 180px;
  }
}

@media screen and (max-width: 640px) {
  .btn-bg .link-block02--item a {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.btn-bg .link-block02--item a .arrow {
  position: relative;
  right: 0;
  display: block;
  margin: 40px auto 0;
  width: 60px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

@media screen and (max-width: 834px) {
  .btn-bg .link-block02--item a .arrow {
    margin: 20px auto 0;
    width: 40px;
  }
}

@media screen and (min-width: 835px) {
  .btn-bg .link-block02--item a:hover .arrow {
    right: -10px;
  }
}

.btn-bg .link-block02--item .txt-s {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 640px) {
  .btn-bg .link-block02--item .txt-s {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.sec-entry {
  padding-bottom: 110px;
}

@media screen and (max-width: 834px) {
  .sec-entry {
    padding-bottom: 60px;
  }
}

.sec-entry .bnr-entry {
  position: relative;
  margin-bottom: -150px;
  width: calc(100% - 90px);
  max-width: 1590px;
  z-index: 1;
}

@media screen and (max-width: 1500px) {
  .sec-entry .bnr-entry {
    margin-bottom: -10vw;
  }
}

@media screen and (max-width: 1024px) {
  .sec-entry .bnr-entry {
    width: calc(100% - 45px);
  }
}

.sec-entry .bnr-entry a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 60px 144px 60px 90px;
  color: #fff;
  background: #bcd400;
  border-radius: 0 0 30px 0;
}

@media screen and (max-width: 1500px) {
  .sec-entry .bnr-entry a {
    padding: 60px 9.6% 60px 6%;
  }
}

@media screen and (max-width: 1024px) {
  .sec-entry .bnr-entry a {
    padding: 40px 7% 40px 45px;
  }
}

@media screen and (max-width: 834px) {
  .sec-entry .bnr-entry a {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 640px) {
  .sec-entry .bnr-entry a {
    padding: 20px 10px;
    height: 44vw;
  }
}

.sec-entry .bnr-entry a .arrow {
  position: relative;
  right: 0;
  width: 220px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

@media screen and (max-width: 1024px) {
  .sec-entry .bnr-entry a .arrow {
    width: 160px;
  }
}

@media screen and (max-width: 640px) {
  .sec-entry .bnr-entry a .arrow {
    margin-right: 10px;
    margin-left: auto;
    width: 100px;
    bottom: 5px;
  }
}

@media screen and (min-width: 835px) {
  .sec-entry .bnr-entry a:hover .arrow {
    right: -10px;
  }
}

.sec-entry .bnr-entry .ttl-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 30px;
  width: 100%;
}

@media screen and (max-width: 640px) {
  .sec-entry .bnr-entry .ttl-box {
    display: block;
    margin-bottom: 10px;
  }
}

.sec-entry .bnr-entry .ttl-box .c-txt02 {
  margin-left: 25px;
}

@media screen and (max-width: 640px) {
  .sec-entry .bnr-entry .ttl-box .c-txt02 {
    margin-top: 5px;
    margin-left: 0;
  }
}

.sec-entry .bnr-entry .ttl-box .c-txt02 {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 640px) {
  .sec-entry .bnr-entry .ttl-box .c-ttl02 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

.sec-entry .bnr-entry .txt-box {
  width: 70%;
}

@media screen and (max-width: 1024px) {
  .sec-entry .bnr-entry .txt-box {
    width: calc(100% - 200px);
  }
}

@media screen and (max-width: 640px) {
  .sec-entry .bnr-entry .txt-box {
    width: 100%;
  }
}

.sec-entry .bnr-entry .txt-box .c-ft--min {
  margin-bottom: 20px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 2px;
}

@media screen and (max-width: 834px) {
  .sec-entry .bnr-entry .txt-box .c-ft--min {
    margin-bottom: 10px;
    font-size: 26px;
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 640px) {
  .sec-entry .bnr-entry .txt-box .c-ft--min {
    font-size: 18px;
    font-size: 1.8rem;
    font-size: max(15px, 3.5vw);
  }
}

/* ====================================================
Entry
==================================================== */
.form-content input,
.form-content button,
.form-content select,
.form-content textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  width: 100%;
  border: 0;
}

.form-content input:not([type="submit"]),
.form-content select,
.form-content textarea {
  padding: 18px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: inline-block;
  background: #fff;
  font: inherit;
}

@media screen and (max-width: 834px) {
  .form-content input:not([type="submit"]),
  .form-content select,
  .form-content textarea {
    padding: 12px 15px;
  }
}

.form-content input:not([type="submit"])::-webkit-input-placeholder, .form-content select::-webkit-input-placeholder, .form-content textarea::-webkit-input-placeholder {
  color: #ccc;
}

.form-content input:not([type="submit"])::-moz-placeholder, .form-content select::-moz-placeholder, .form-content textarea::-moz-placeholder {
  color: #ccc;
}

.form-content input:not([type="submit"]):-ms-input-placeholder, .form-content select:-ms-input-placeholder, .form-content textarea:-ms-input-placeholder {
  color: #ccc;
}

.form-content input:not([type="submit"])::-ms-input-placeholder, .form-content select::-ms-input-placeholder, .form-content textarea::-ms-input-placeholder {
  color: #ccc;
}

.form-content input:not([type="submit"])::placeholder,
.form-content select::placeholder,
.form-content textarea::placeholder {
  color: #ccc;
}

.form-content textarea {
  resize: none;
  height: 200px;
}

.form-content input[type='checkbox'],
.form-content input[type='radio'] {
  display: none;
}

.form-content input[type='submit'],
.form-content input[type='button'],
.form-content label,
.form-content select {
  cursor: pointer;
}

.form-content select::-ms-expand {
  display: none;
}

.form-content .custom-radio {
  margin-top: 15px;
  margin-right: 6px;
}

@media screen and (max-width: 834px) {
  .form-content .custom-radio {
    margin-top: 10px;
  }
}

.form-content .custom-radio .radio-text {
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

.form-content .custom-radio .radio-text:before, .form-content .custom-radio .radio-text:after {
  content: '';
  position: absolute;
  border-radius: 50%;
}

.form-content .custom-radio .radio-text:before {
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
}

.form-content .custom-radio .radio-text:after {
  opacity: 0;
  left: 9px;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #004ba8;
}

.form-content .custom-radio input[type='radio']:checked + .radio-text:after {
  opacity: 1;
}

.page-entry .lead {
  margin: 0 0 70px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.22;
}

@media screen and (max-width: 834px) {
  .page-entry .lead {
    margin: 30px 0 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.page-entry .form-block {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 780px;
}

.page-entry .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px 0;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 834px) {
  .page-entry .form-row {
    padding: 10px 0;
  }
}

.page-entry .form-row__head {
  width: 185px;
}

@media screen and (max-width: 834px) {
  .page-entry .form-row__head {
    margin-bottom: 15px;
    width: 100%;
  }
}

.page-entry .form-row__head .label {
  display: inline-block;
  margin-left: 5px;
  width: 58px;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 25px;
  text-align: center;
  border-radius: 3px;
}

.page-entry .form-row__head .label.required {
  background: #c5222a;
}

.page-entry .form-row__head .label.any {
  background: #d3d3d3;
}

.page-entry .form-row__child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-entry .form-row__child .c-note {
  margin-left: 10px;
}

@media screen and (max-width: 640px) {
  .page-entry .form-row__child .c-note {
    display: block;
    margin-top: 5px;
    width: 100%;
  }
}

.page-entry .form-row__child:not(:last-child) {
  margin-bottom: 10px;
}

.page-entry .form-row__input {
  width: calc(100% - 185px);
}

@media screen and (max-width: 834px) {
  .page-entry .form-row__input {
    width: 100%;
  }
}

.page-entry .form-row .input-s {
  max-width: 260px;
}

.page-entry .form-content {
  padding: 0 0 130px;
}

@media screen and (max-width: 834px) {
  .page-entry .form-content {
    padding: 0 0 70px;
  }
}

.page-entry .form-content.form-input .form-row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.page-entry .form-content.form-input .form-row__head {
  padding-top: 18px;
}

.page-entry .form-content .btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-entry .form-content .btn-block .c-btn02 {
  max-width: 545px;
}

.page-entry .form-content .btn-block .c-btn02-sent {
  max-width: 300px;
}

.page-entry .form-content .btn-block .c-btn03 {
  max-width: 300px;
}

.page-entry .form-content .btn-block .btn {
  margin: 0 10px 15px;
}

.page-entry .form-content .err {
  margin-top: 5px;
  color: #c5222a;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 834px) {
  .page-entry .form-content .err {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.page-entry .c-scroll {
  margin: 75px auto 60px;
  max-width: 1030px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.86;
}

@media screen and (max-width: 834px) {
  .page-entry .c-scroll {
    margin: 45px auto 40px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.page-entry .c-scroll .privacy__item {
  margin-bottom: 35px;
}

/* ====================================================
COMPANY
==================================================== */
.page-company .sec-outline {
  margin: 65px auto 100px;
  padding: 0 15px;
  max-width: 1030px;
}

@media screen and (max-width: 834px) {
  .page-company .sec-outline {
    margin: 50px auto 70px;
  }
}

.page-company .outline-block {
  padding: 40px 12% 45px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.93;
  background: #fff;
  border: 5px solid #eee;
}

@media screen and (max-width: 834px) {
  .page-company .outline-block {
    padding: 40px 5% 45px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
    border: 3px solid #eee;
  }
}

@media screen and (max-width: 640px) {
  .page-company .outline-block {
    padding: 20px 5% 25px;
  }
}

.page-company .outline__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0;
}

@media screen and (max-width: 640px) {
  .page-company .outline__row {
    padding: 10px 0;
  }
}

.page-company .outline__head {
  width: 140px;
}

@media screen and (max-width: 834px) {
  .page-company .outline__head {
    width: 90px;
  }
}

.page-company .outline__cont {
  width: calc(100% - 140px);
}

@media screen and (max-width: 834px) {
  .page-company .outline__cont {
    width: calc(100% - 90px);
  }
}

.googlemaps {
  margin-bottom: 145px;
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 30.9vw;
}

@media screen and (max-width: 834px) {
  .googlemaps {
    padding-top: 280px;
    margin-bottom: 70px;
  }
}

.googlemaps iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.googlemaps iframe,
.googlemaps object,
.googlemaps embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/* ====================================================
about
==================================================== */
.sec-lead {
  margin-top: 85px;
}

.sec-lead--ttl {
  position: relative;
}

.sec-lead--txt {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}

.sec-lead--txt .c-ft--min {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 4px;
}

@media screen and (max-width: 1024px) {
  .sec-lead--txt .c-ft--min {
    font-size: max(26px, 3.125vw);
  }
}

@media screen and (max-width: 834px) {
  .sec-lead--txt .c-ft--min {
    font-size: max(20px, 4vw);
  }
}

.sec-lead--txt .c-ft--rb {
  font-size: 100px;
  font-size: 10rem;
}

@media screen and (max-width: 1024px) {
  .sec-lead--txt .c-ft--rb {
    font-size: max(70px, 9.76vw);
  }
}

@media screen and (max-width: 834px) {
  .sec-lead--txt .c-ft--rb {
    font-size: max(37px, 10vw);
  }
}

.sec-lead .lead-block {
  margin: 85px 0 100px;
}

@media screen and (max-width: 834px) {
  .sec-lead .lead-block {
    margin: 50px 15px;
  }
}

.sec-lead .lead-block__ttl {
  margin-bottom: 50px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 8px;
}

@media screen and (max-width: 834px) {
  .sec-lead .lead-block__ttl {
    margin-bottom: 25px;
    font-size: 26px;
    font-size: 2.6rem;
    letter-spacing: 4px;
  }
}

.sec-lead .lead-block__txt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.28;
}

@media screen and (max-width: 834px) {
  .sec-lead .lead-block__txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.sec-lead .en-ttl {
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  text-align: center;
  color: #FFF;
  opacity: 0.7;
  font-size: 100px;
  font-size: 10rem;
  line-height: 1;
}

@media screen and (max-width: 834px) {
  .sec-lead .en-ttl {
    font-size: 40px;
    font-size: 4rem;
    line-height: 0.9;
  }
}

.sec-lead .en-ttl small {
  display: block;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 834px) {
  .sec-lead .en-ttl small {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (min-width: 835px) {
  .sec-lead .en-ttl--cs {
    left: 20px;
    bottom: 20px;
  }
}

@media screen and (max-width: 834px) {
  .sec-lead .en-ttl--cs {
    right: 10px;
    top: 10px;
  }
}

@media screen and (min-width: 835px) {
  .sec-lead .en-ttl--es {
    top: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 834px) {
  .sec-lead .en-ttl--es {
    left: 10px;
    bottom: 10px;
  }
}

.sec-keyword {
  position: relative;
}

.sec-keyword .bg-area {
  padding: 110px 0 270px;
  background: rgba(244, 244, 244, 0.5);
}

@media screen and (max-width: 834px) {
  .sec-keyword .bg-area {
    padding: 60px 0 17.9vw;
  }
}

.sec-keyword .img-bg {
  position: absolute;
  right: 0;
  top: -70px;
}

@media screen and (max-width: 834px) {
  .sec-keyword .img-bg {
    top: -7%;
  }
}

@media screen and (max-width: 640px) {
  .sec-keyword .img-bg {
    top: -3%;
  }
}

.sec-keyword .keyword-block02 {
  margin-bottom: 150px;
  overflow: hidden;
  margin-top: -207px;
  color: #fff;
}

@media screen and (max-width: 834px) {
  .sec-keyword .keyword-block02 {
    margin-bottom: 70px;
    margin-left: 45px;
    margin-top: -16vw;
  }
}

.sec-keyword .keyword-block02 .inner {
  position: relative;
  background: #bcd400;
}

@media screen and (max-width: 834px) {
  .sec-keyword .keyword-block02 .inner {
    padding: 0;
  }
}

.sec-keyword .keyword-block02 .inner:before {
  position: absolute;
  right: -100%;
  top: 0;
  display: block;
  content: "";
  width: calc(100% + 5.53%);
  height: 100%;
  background: #bcd400;
}

.sec-keyword .keyword-block02__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-keyword .keyword-block02__list-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7.33% 0 7.33% 5.66%;
  width: 25%;
  border-right: 1px solid #d5e177;
}

@media screen and (max-width: 834px) {
  .sec-keyword .keyword-block02__list-item {
    padding: 5% 0 5% 4%;
    width: 50%;
    border-bottom: 1px solid #d5e177;
  }
}

@media screen and (max-width: 640px) {
  .sec-keyword .keyword-block02__list-item {
    padding: 14% 0 7% 7%;
    width: 100%;
  }
}

.sec-keyword .keyword-block02__list-item .icn {
  position: absolute;
  left: 0;
  top: 1.66%;
  width: 40%;
}

@media screen and (max-width: 834px) {
  .sec-keyword .keyword-block02__list-item .icn {
    top: 3%;
    width: 28%;
  }
}

.sec-keyword .keyword-block02__list-ttl {
  margin-bottom: 15px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.66;
}

@media screen and (max-width: 834px) {
  .sec-keyword .keyword-block02__list-ttl {
    font-size: 20px;
    font-size: 2rem;
    text-align: center;
  }
}

@media screen and (max-width: 640px) {
  .sec-keyword .keyword-block02__list-ttl {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.keyword-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 70px;
}

@media screen and (max-width: 834px) {
  .keyword-block {
    margin: 0 0 50px;
  }
}

.keyword-block__l {
  padding-right: .7%;
  width: 50%;
}

@media screen and (max-width: 834px) {
  .keyword-block__l {
    margin-bottom: 50px;
    width: 100%;
  }
}

.keyword-block__r {
  width: 43.33%;
}

@media screen and (max-width: 834px) {
  .keyword-block__r {
    width: 100%;
  }
}

.keyword-block .c-al--c {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.keyword-block .cross {
  width: 63px;
  margin: 0 50px;
}

@media screen and (max-width: 1200px) {
  .keyword-block .cross {
    margin: 0 20px;
    width: 36px;
  }
}

@media screen and (max-width: 834px) {
  .keyword-block .cross {
    width: 28px;
    margin: 0 15px;
  }
}

.keyword-block .en-ttl {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  text-align: center;
  font-size: 160px;
  font-size: 16rem;
  line-height: 1;
}

@media screen and (max-width: 1200px) {
  .keyword-block .en-ttl {
    font-size: 120px;
    font-size: 12rem;
  }
}

@media screen and (max-width: 834px) {
  .keyword-block .en-ttl {
    font-size: 60px;
    font-size: 6rem;
    line-height: 1.1;
  }
}

.keyword-block .en-ttl small {
  display: block;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 834px) {
  .keyword-block .en-ttl small {
    font-size: 10px;
    font-size: 1rem;
  }
}

.keyword-block .en-ttl--cs {
  color: #bcd400;
}

.keyword-block .en-ttl--es {
  color: #727171;
}

.sec-peak {
  overflow: hidden;
}

@media screen and (max-width: 1680px) {
  .sec-peak__headimg {
    width: 72.32%;
  }
}

@media screen and (max-width: 834px) {
  .sec-peak__headimg {
    width: 85%;
  }
}

.sec-peak .keyword-block {
  margin: 100px 0;
}

@media screen and (max-width: 834px) {
  .sec-peak .keyword-block {
    margin: 60px 0;
  }
}

.sec-peak__img {
  position: relative;
  margin-bottom: 95px;
  padding: 85px 0 140px 85px;
  background: rgba(244, 244, 244, 0.8);
}

@media screen and (max-width: 834px) {
  .sec-peak__img {
    margin-bottom: 95px;
    padding: 10% 0 60px 15px;
  }
}

@media screen and (max-width: 640px) {
  .sec-peak__img {
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 0;
    width: calc(100% + 30px);
  }
}

.sec-peak__img .c-ttl01 {
  margin-bottom: 30px;
}

.sec-peak__img:before {
  position: absolute;
  right: -5.53%;
  top: 0;
  display: block;
  content: "";
  width: 5.53%;
  height: 100%;
  background: rgba(244, 244, 244, 0.8);
}

/* ====================================================
VISION
==================================================== */
.page-vision .inner {
  max-width: 1230px;
  padding: 0 15px;
}

.page-vision .text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-vision .text-block .c-ttl07 {
  width: 235px;
}

@media screen and (max-width: 834px) {
  .page-vision .text-block .c-ttl07 {
    width: 100%;
  }
}

.page-vision .text-block p.c-ft--min {
  width: calc(100% -  235px);
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.22;
}

@media screen and (max-width: 834px) {
  .page-vision .text-block p.c-ft--min {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.page-vision .sec-ideal {
  padding: 320px 0 180px;
  overflow: hidden;
}

@media screen and (max-width: 1680px) {
  .page-vision .sec-ideal {
    padding: 19vw 0 10.7vw;
  }
}

@media screen and (max-width: 834px) {
  .page-vision .sec-ideal {
    padding: 100px 0;
  }
}

@media screen and (max-width: 640px) {
  .page-vision .sec-ideal {
    padding: 60px 0 70px;
  }
}

.page-vision .sec-ideal .text-block {
  margin-bottom: 20px;
}

@media screen and (max-width: 834px) {
  .page-vision .sec-ideal .text-block {
    margin-bottom: 50px;
  }
}

.page-vision .sec-ideal .deco {
  width: 32em;
  margin: 0 -15px;
  color: rgba(10, 31, 58, 0.1);
  font-size: 200px;
  font-size: 20rem;
  line-height: .8;
  letter-spacing: -.03em;
}

@media screen and (max-width: 1680px) {
  .page-vision .sec-ideal .deco {
    font-size: 12.3vw;
  }
}

@media screen and (max-width: 834px) {
  .page-vision .sec-ideal .deco {
    margin: 0 -1vw;
  }
}

.page-vision .sec-vision {
  margin-bottom: 250px;
  padding: 255px 0 200px;
  background: rgba(244, 244, 244, 0.5);
}

@media screen and (max-width: 1680px) {
  .page-vision .sec-vision {
    margin-bottom: 14.8vw;
    padding: 15.17vw 0 11.9vw;
  }
}

/* ====================================================
CAREER
==================================================== */
.txt-emphasis {
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: .08em;
  line-height: 2;
}

@media screen and (max-width: 834px) {
  .txt-emphasis {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 640px) {
  .txt-emphasis {
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.txt-emphasis .em {
  position: relative;
  display: inline-block;
  padding: 0 2px;
}

.txt-emphasis .em:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
}

@media screen and (max-width: 834px) {
  .txt-emphasis .em:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 6px;
    height: 6px;
  }
}

.txt-emphasis .em:before {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 50%;
  background: #000;
}

.txt-emphasis .small {
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 834px) {
  .txt-emphasis .small {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 640px) {
  .txt-emphasis .small {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.page-career .txt-emphasis {
  margin-top: -2em;
}

@media screen and (max-width: 640px) {
  .page-career .txt-emphasis {
    margin-top: 0;
  }
}

.page-career .lead-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 145px;
}

@media screen and (min-width: 835px) and (max-width: 1530px) {
  .page-career .lead-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 834px) {
  .page-career .lead-block {
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 835px) {
  .page-career .lead-block__img {
    padding: 0 2.66%;
    width: 50%;
  }
}

@media screen and (max-width: 834px) {
  .page-career .lead-block__img {
    padding: 30px 3%;
    width: 100%;
  }
}

.page-career .lead-block__txt {
  margin-bottom: 40px;
  width: 100%;
}

@media screen and (min-width: 835px) {
  .page-career .lead-block__txt {
    margin-bottom: 0;
    width: 50%;
  }
}

.page-career .lead-block__txt .c-ttl07 {
  margin-top: 50px;
}

.page-career .lead-block .c-ttl04 {
  margin-bottom: 30px;
  line-height: 1.9;
}

@media screen and (max-width: 834px) {
  .page-career .lead-block .c-ttl04 {
    margin-bottom: 20px;
  }
}

.page-career .sec-careerdesign {
  padding-bottom: 175px;
}

@media screen and (max-width: 834px) {
  .page-career .sec-careerdesign {
    padding-bottom: 70px;
  }
}

.page-career .sec-careerdesign .lead-block {
  padding-top: 145px;
}

@media screen and (max-width: 834px) {
  .page-career .sec-careerdesign .lead-block {
    padding-top: 60px;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 835px) {
  .page-career .sec-careerdesign .lead-block__l {
    padding-right: 5%;
  }
}

@media screen and (max-width: 834px) {
  .page-career .sec-careerdesign .lead-block__l {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 834px) {
  .page-career .sec-careerdesign .c-img--r .img-scroll {
    overflow-x: scroll;
  }
  .page-career .sec-careerdesign .c-img--r .img-scroll img {
    max-width: none;
    width: 800px;
  }
}

@media screen and (max-width: 640px) {
  .page-career .sec-careerdesign .c-img--r {
    padding-left: 0;
  }
}

@media screen and (max-width: 1680px) {
  .page-career {
    margin-top: 0;
  }
}

.page-career .skills-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 140px;
}

@media screen and (max-width: 834px) {
  .page-career .skills-list {
    margin-bottom: 70px;
  }
}

.page-career .skills-list__item {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0 15px;
  width: 25%;
  height: 346px;
  color: #fff;
}

@media screen and (max-width: 834px) {
  .page-career .skills-list__item {
    width: 50%;
    height: 50vw;
  }
}

@media screen and (max-width: 834px) {
  .page-career .skills-list__item {
    padding: 8vw 2vw;
    height: auto;
  }
}

.page-career .skills-list__item .en {
  position: absolute;
  left: -15px;
  top: 58px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 20px;
  font-size: 2rem;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  text-align: left;
}

@media screen and (max-width: 834px) {
  .page-career .skills-list__item .en {
    left: -20px;
    top: 45px;
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.page-career .skills-list__item-no {
  font-size: 34px;
  font-size: 3.4rem;
}

@media screen and (max-width: 1680px) {
  .page-career .skills-list__item-no {
    font-size: 3vw;
  }
}

@media screen and (max-width: 834px) {
  .page-career .skills-list__item-no {
    font-size: 30px;
    font-size: 3rem;
  }
}

.page-career .skills-list__item-ttl {
  margin: 10px 0 40px;
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: .08em;
}

@media screen and (max-width: 1680px) {
  .page-career .skills-list__item-ttl {
    margin: .5vw 0 2.3vw;
    font-size: 3vw;
  }
}

@media screen and (max-width: 834px) {
  .page-career .skills-list__item-ttl {
    margin: 8px 0 30px;
    font-size: 30px;
    font-size: 3rem;
    letter-spacing: .04em;
  }
}

.page-career .skills-list__item .c-ttl04 {
  line-height: 1.9;
}

@media screen and (max-width: 1680px) {
  .page-career .skills-list__item .c-ttl04 {
    font-size: 1.5vw;
  }
}

@media screen and (max-width: 834px) {
  .page-career .skills-list__item .c-ttl04 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

.page-career .skills-list__item.item01 {
  background: #807f7f;
}

.page-career .skills-list__item.item02 {
  background: #6f6f6f;
}

.page-career .skills-list__item.item03 {
  background: #5d5d5d;
}

.page-career .skills-list__item.item04 {
  background: #4d4d4d;
}

/* ====================================================
WORK PLACE
==================================================== */
.page-workspace .lead-txt {
  margin: 0 0 90px;
  font-size: 42px;
  font-size: 4.2rem;
}

@media screen and (min-width: 835px) and (max-width: 1530px) {
  .page-workspace .lead-txt {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 834px) {
  .page-workspace .lead-txt {
    margin: 0 0 45px;
    font-size: max(32px, 6vw);
  }
}

.page-workspace .lead-txt .small {
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 834px) {
  .page-workspace .lead-txt .small {
    font-size: max(18px, 3vw);
  }
}

.page-workspace .lead-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 140px;
  padding-bottom: 4.1vw;
}

@media screen and (max-width: 834px) {
  .page-workspace .lead-block {
    margin-bottom: 70px;
    padding-bottom: 0;
  }
}

.page-workspace .lead-block__img {
  width: 72.32%;
}

@media screen and (max-width: 834px) {
  .page-workspace .lead-block__img {
    width: 90%;
  }
}

.page-workspace .lead-block__img img {
  height: 39.285vw;
}

@media screen and (max-width: 834px) {
  .page-workspace .lead-block__img img {
    height: 60vw;
  }
}

.page-workspace .lead-block__txt {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  margin-left: -22.32%;
  margin-bottom: -4.1vw;
  width: 50%;
  padding: 3.5vw 2.38vw 3.5vw 5.35vw;
  color: #fff;
  background: #bcd400;
}

@media screen and (max-width: 834px) {
  .page-workspace .lead-block__txt {
    margin-top: -6vw;
    margin-bottom: 0;
    margin-left: auto;
    padding: 5vw;
    width: 80%;
  }
}

.page-workspace .lead-block__txt p {
  max-width: 700px;
}

.page-workspace .sec-officescne {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne {
    padding: 70px 0 20px;
  }
}

.page-workspace .sec-officescne:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 94.643vw;
  height: 44.46vw;
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 94.643vw;
    height: 80vw;
  }
}

.page-workspace .sec-officescne:before {
  top: 0;
  left: 0;
  background: #f9f9f9;
}

.page-workspace .sec-officescne .txt-deco {
  width: 5.6em;
  position: relative;
}

.page-workspace .sec-officescne .inner {
  position: relative;
}

.page-workspace .sec-officescne .office-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-workspace .sec-officescne .office-block .c-ttl04 {
  margin-bottom: 60px;
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne .office-block .c-ttl04 {
    margin-bottom: 30px;
  }
}

.page-workspace .sec-officescne .office-block__l {
  width: 46.66%;
}

@media screen and (min-width: 835px) and (max-width: 1530px) {
  .page-workspace .sec-officescne .office-block__l {
    padding-left: 15px;
  }
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne .office-block__l {
    width: 100%;
  }
}

.page-workspace .sec-officescne .office-block__r {
  margin-top: min(50px, 3.57vw);
  margin-right: -5.357vw;
  width: calc(50% + 5.357vw);
}

@media screen and (min-width: 835px) and (max-width: 1530px) {
  .page-workspace .sec-officescne .office-block__r {
    padding-right: 15px;
  }
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne .office-block__r {
    margin-top: 4.79vw;
    margin-right: -15px;
    margin-left: auto;
    width: 90%;
  }
}

.page-workspace .sec-officescne .office-block__r .c-txt {
  margin-right: 5.357vw;
}

.page-workspace .sec-officescne .office-ttl {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 25px;
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne .office-ttl {
    margin-top: 10px;
  }
}

.page-workspace .sec-officescne .office-ttl .c-ft--min {
  margin-right: 10px;
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: .08em;
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne .office-ttl .c-ft--min {
    width: 100%;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.page-workspace .sec-officescne .office-ttl .c-ft--rb {
  font-size: 14px;
  font-size: 1.4rem;
}

.page-workspace .sec-officescne .c-txt {
  margin-top: 10px;
}

.page-workspace .sec-officescne .office-block02 {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 6.33vw;
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne .office-block02 .office-block__item {
    margin-bottom: 40px;
  }
  .page-workspace .sec-officescne .office-block02 .office-block__item img {
    width: 100%;
    height: 40vw;
  }
}

.page-workspace .sec-officescne .office-block02 .item01 {
  margin-top: -32.33vw;
  width: 32.66%;
}

@media screen and (max-width: 1200px) {
  .page-workspace .sec-officescne .office-block02 .item01 {
    margin-top: -26vw;
  }
}

@media screen and (min-width: 835px) and (max-width: 1530px) {
  .page-workspace .sec-officescne .office-block02 .item01 .office-ttl,
  .page-workspace .sec-officescne .office-block02 .item01 .c-txt {
    padding-left: 15px;
  }
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne .office-block02 .item01 {
    margin-top: 0;
    width: 100%;
  }
}

.page-workspace .sec-officescne .office-block02 .item02 {
  width: 28%;
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne .office-block02 .item02 {
    width: 100%;
  }
}

.page-workspace .sec-officescne .office-block02 .item03 {
  margin-top: 8vw;
  width: 28%;
}

@media screen and (min-width: 835px) and (max-width: 1530px) {
  .page-workspace .sec-officescne .office-block02 .item03 .c-txt {
    padding-right: 15px;
  }
}

@media screen and (max-width: 834px) {
  .page-workspace .sec-officescne .office-block02 .item03 {
    margin-top: 0;
    width: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .page-workspace .sec-officescne .office-block02 .office-ttl .c-ft--min {
    width: 100%;
  }
}

/* ====================================================
Rewarding
==================================================== */
.page-rewarding .page-title {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  width: 80.95%;
  max-width: 1360px;
}

.page-rewarding .page-title__line {
  margin-right: 1em;
}

@media screen and (max-width: 834px) {
  .page-rewarding .page-title__line {
    margin-right: .6em;
  }
}

.page-rewarding .lead-block {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 140px 0 164px;
  overflow: hidden;
}

@media screen and (max-width: 834px) {
  .page-rewarding .lead-block {
    margin: 0 -15px;
    padding: 60px 0 85px;
  }
}

.page-rewarding .lead-block__r {
  width: 50%;
}

@media screen and (min-width: 835px) and (max-width: 1530px) {
  .page-rewarding .lead-block__r {
    padding-right: 15px;
  }
}

@media screen and (max-width: 834px) {
  .page-rewarding .lead-block__r {
    padding: 0 15px;
    width: 100%;
  }
}

.page-rewarding .lead-block__r .c-ttl04 {
  margin-bottom: 30px;
}

.page-rewarding .lead-block__l {
  padding: 0 4%;
  width: 50%;
}

@media screen and (max-width: 834px) {
  .page-rewarding .lead-block__l {
    margin-bottom: 40px;
    padding: 0 15px;
    width: 100%;
  }
}

.page-rewarding .lead-block__ttl {
  font-size: 77px;
  font-size: 7.7rem;
  line-height: 1;
  letter-spacing: .2em;
}

@media screen and (max-width: 1200px) {
  .page-rewarding .lead-block__ttl {
    font-size: 6.4vw;
  }
}

@media screen and (max-width: 834px) {
  .page-rewarding .lead-block__ttl {
    font-size: 60px;
    font-size: 6rem;
  }
}

@media screen and (max-width: 640px) {
  .page-rewarding .lead-block__ttl {
    font-size: max(43px, 9.3vw);
  }
}

.page-rewarding .lead-block__ttl .small {
  font-size: 59px;
  font-size: 5.9rem;
}

@media screen and (max-width: 1200px) {
  .page-rewarding .lead-block__ttl .small {
    font-size: 4.9vw;
  }
}

@media screen and (max-width: 834px) {
  .page-rewarding .lead-block__ttl .small {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 640px) {
  .page-rewarding .lead-block__ttl .small {
    font-size: max(36px, 6.25vw);
  }
}

.page-rewarding .lead-block__txt {
  margin-top: 50px;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 1200px) {
  .page-rewarding .lead-block__txt {
    font-size: 2.33vw;
  }
}

@media screen and (max-width: 834px) {
  .page-rewarding .lead-block__txt {
    margin-top: 2em;
    letter-spacing: .1em;
    font-size: max(16px, 3.3vw);
  }
}

.page-rewarding .lead-block .txt-deco {
  position: absolute;
  bottom: 100px;
  left: -.1em;
  width: 10em;
  color: rgba(218, 218, 218, 0.2);
  letter-spacing: -.03em;
}

@media screen and (max-width: 834px) {
  .page-rewarding .lead-block .txt-deco {
    left: -.1em;
    bottom: 50px;
    font-size: 18vw;
  }
}

.page-rewarding .sec-keyword__img {
  width: calc(100% - 5.35vw);
}

.page-rewarding .sec-keyword__img.img_r {
  margin-left: auto;
}

.page-rewarding .sec-keyword__img.img_l {
  margin-right: auto;
}

.page-rewarding .sec-keyword-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 60px 0 130px;
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-keyword-block {
    padding: 40px 0 60px;
  }
}

.page-rewarding .sec-keyword-block__l {
  width: 24.66%;
}

@media screen and (max-width: 640px) {
  .page-rewarding .sec-keyword-block__l {
    margin-bottom: 30px;
    width: 100%;
  }
}

.page-rewarding .sec-keyword-block__ttl {
  position: relative;
  padding-top: 66px;
  font-size: 48px;
  font-size: 4.8rem;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .page-rewarding .sec-keyword-block__ttl {
    padding-top: 5.5vw;
    font-size: 4vw;
  }
}

@media screen and (max-width: 640px) {
  .page-rewarding .sec-keyword-block__ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.page-rewarding .sec-keyword-block__ttl:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 90px;
  height: 105px;
}

@media screen and (max-width: 1200px) {
  .page-rewarding .sec-keyword-block__ttl {
    padding-top: 5.5vw;
  }
  .page-rewarding .sec-keyword-block__ttl:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 7.5vw;
    height: 8.75vw;
  }
}

@media screen and (max-width: 640px) {
  .page-rewarding .sec-keyword-block__ttl {
    padding-top: 36px;
  }
  .page-rewarding .sec-keyword-block__ttl:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 48px;
    height: 56px;
  }
}

.page-rewarding .sec-keyword-block__ttl:before {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/rewarding/logo-ttl.svg) no-repeat center top;
  background-size: contain;
  opacity: .2;
}

.page-rewarding .sec-keyword-block__ttl span {
  position: relative;
  display: block;
}

.page-rewarding .sec-keyword-block__ttl span.bar {
  width: 70px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  margin: 3px auto;
}

@media screen and (max-width: 1200px) {
  .page-rewarding .sec-keyword-block__ttl span.bar {
    width: 5.4vw;
  }
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-keyword-block__ttl span.bar {
    width: 33px;
  }
}

.page-rewarding .sec-keyword-block__r {
  width: 75%;
}

@media screen and (max-width: 640px) {
  .page-rewarding .sec-keyword-block__r {
    width: 100%;
  }
}

@media screen and (min-width: 835px) and (max-width: 1530px) {
  .page-rewarding .sec-keyword-block__r-txt {
    padding-right: 15px;
  }
}

.page-rewarding .sec-keyword-block__r .ttl-rb {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  color: #727171;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-keyword-block__r .ttl-rb {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.page-rewarding .sec-keyword-block__r .ttl-rb .c-fw--bd {
  margin-right: 12px;
  font-size: 40px;
  font-size: 4rem;
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-keyword-block__r .ttl-rb .c-fw--bd {
    font-size: 30px;
    font-size: 3rem;
  }
}

.page-rewarding .sec-keyword-block__leadttl {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: .1em;
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-keyword-block__leadttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.page-rewarding .sec-keyword-block .c-ttl07 {
  margin: 55px 0 50px;
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-keyword-block .c-ttl07 {
    margin: 35px 0 30px;
  }
}

.page-rewarding .sec-keyword-block .c-link01 {
  margin-top: 60px;
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-keyword-block .c-link01 {
    margin-top: 30px;
  }
}

.page-rewarding .sec-staff {
  background: url(../img/rewarding/img03-bg.png) no-repeat right bottom;
  background-size: 36.54vw auto;
}

@media screen and (max-width: 1200px) {
  .page-rewarding .sec-staff {
    background-size: 45vw auto;
  }
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-staff {
    background-size: 65vw auto;
  }
}

.page-rewarding .style-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 85px 0 0;
}

@media screen and (max-width: 834px) {
  .page-rewarding .style-list {
    margin-top: 50px;
  }
}

.page-rewarding .style-list__item {
  margin-right: 1.77%;
  margin-bottom: 2.7%;
  padding: 1.77% 3.11% 2.22%;
  width: 31.11%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 834px) {
  .page-rewarding .style-list__item {
    margin-right: 2%;
    padding: 15px 4%;
    width: 48%;
  }
}

.page-rewarding .style-list__item-ttl {
  position: relative;
  margin-left: -12%;
  margin-bottom: 20px;
  padding-left: 40px;
  font-size: 18px;
  font-size: 1.8rem;
}

.page-rewarding .style-list__item-ttl:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 29px;
  height: 4px;
}

@media screen and (max-width: 834px) {
  .page-rewarding .style-list__item-ttl {
    font-size: 16px;
    font-size: 1.6rem;
    margin-left: -10%;
  }
}

.page-rewarding .style-list__item-ttl:before {
  top: 50%;
  left: 0;
  margin-top: -2px;
  background: #bcd400;
}

.page-rewarding .sec-standard {
  position: relative;
  padding: 180px 0 125px;
  overflow: hidden;
}

.page-rewarding .sec-standard:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: calc(100% - 5.35vw);
  height: 37.8vw;
}

@media screen and (max-width: 1200px) {
  .page-rewarding .sec-standard {
    padding: 10.71vw 0 7.44vw;
  }
}

.page-rewarding .sec-standard:before {
  top: 0;
  left: 0;
  background: #f4f4f4;
}

@media screen and (max-width: 1500px) {
  .page-rewarding .sec-standard:before {
    height: 50vw;
  }
}

@media screen and (max-width: 1200px) {
  .page-rewarding .sec-standard:before {
    height: 60vw;
  }
}

@media screen and (max-width: 640px) {
  .page-rewarding .sec-standard:before {
    height: 140vw;
  }
}

.page-rewarding .sec-standard .keyword-block {
  position: relative;
}

@media screen and (max-width: 1200px) {
  .page-rewarding .sec-standard .keyword-block {
    margin-bottom: 4.166vw;
  }
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-standard .keyword-block {
    padding-right: 5.35vw;
  }
}

.page-rewarding .sec-standard__ttl {
  margin-left: 3vw;
  font-size: 40px;
  font-size: 4rem;
  line-height: 1.86;
  letter-spacing: .08em;
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-standard__ttl {
    margin-left: 0;
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-standard__ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 834px) {
  .page-rewarding .sec-standard__ttl {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.page-rewarding .standard-block {
  position: relative;
  margin-left: auto;
  margin-right: -5.35vw;
  padding: 6% 10.7vw 3.33% 5.33%;
  width: calc(75% + 5.35vw);
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1200px) {
  .page-rewarding .standard-block {
    width: calc(85% + 5.35vw);
  }
}

@media screen and (max-width: 834px) {
  .page-rewarding .standard-block {
    margin-right: -15px;
    padding: 5% calc(4% + 15px) 2.5% 4%;
    width: calc(90% + 15px);
  }
}

.page-rewarding .standard-block__ttl {
  margin: 0 0 45px;
  font-size: 28px;
  font-size: 2.8rem;
  letter-spacing: .1em;
}

@media screen and (max-width: 834px) {
  .page-rewarding .standard-block__ttl {
    margin-bottom: 30px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 640px) {
  .page-rewarding .standard-block__ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.page-rewarding .standard-block__ttl:before {
  margin-top: 0;
}

.page-rewarding .list-standard {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page-rewarding .list-standard__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
  width: 48.83%;
}

@media screen and (max-width: 834px) {
  .page-rewarding .list-standard__item {
    margin-bottom: 15px;
    width: 100%;
  }
}

.page-rewarding .list-standard__item .cir {
  width: 172px;
  height: 172px;
  color: #fff;
  text-align: center;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 172px;
  background: #bcd400;
  border-radius: 50%;
}

@media screen and (max-width: 834px) {
  .page-rewarding .list-standard__item .cir {
    width: 120px;
    height: 120px;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 120px;
  }
}

.page-rewarding .list-standard__item .c-ft--min {
  width: calc(100% - 192px);
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

@media screen and (max-width: 834px) {
  .page-rewarding .list-standard__item .c-ft--min {
    width: calc(100% - 135px);
  }
}

/* ====================================================
Business
==================================================== */
.page-business .lead-block {
  padding: 100px 0;
}

@media screen and (max-width: 834px) {
  .page-business .lead-block {
    padding: 50px 0;
  }
}

.page-business .lead-block .label {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
}

.page-business .lead-block .label__item {
  margin: 0 10px;
  width: 186px;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 38px;
  border-radius: 20px;
}

@media screen and (max-width: 640px) {
  .page-business .lead-block .label__item {
    margin: 0 5px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.page-business .lead-block .label__item.item01 {
  background: #bcd400;
}

.page-business .lead-block .label__item.item02 {
  background: #727171;
}

.page-business .lead-block__ttl {
  margin: 30px 0 60px;
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: .12em;
}

@media screen and (max-width: 834px) {
  .page-business .lead-block__ttl {
    margin: 20px 0 40px;
    font-size: 26px;
    font-size: 2.6rem;
    letter-spacing: .08em;
  }
}

.page-business .lead-block__txt {
  margin-bottom: 70px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2.2857;
}

@media screen and (max-width: 834px) {
  .page-business .lead-block img {
    width: 100%;
    max-width: 650px;
  }
}

.page-business .bg-wrap {
  position: relative;
  margin-bottom: -5.95vw;
  padding: 8.63vw 0 17.857vw;
  background-color: rgba(244, 244, 244, 0.5);
  overflow: hidden;
}

.page-business .bg-wrap:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 5.35vw;
  height: 100%;
}

@media screen and (max-width: 834px) {
  .page-business .bg-wrap {
    margin-bottom: -3vw;
    padding: 4.5vw 0 8vw;
  }
}

.page-business .bg-wrap:before {
  top: 0;
  right: 0;
  background: #fff;
}

.page-business .txt-deco {
  position: absolute;
  bottom: 17.857vw;
  left: -.1em;
  width: 10em;
  color: rgba(10, 31, 58, 0.1);
  letter-spacing: -.03em;
  line-height: .8;
}

@media screen and (max-width: 834px) {
  .page-business .txt-deco {
    bottom: 10vw;
    left: -.1em;
    font-size: 18vw;
  }
}

.page-business .keyword-block {
  margin: 0;
}

@media screen and (max-width: 1680px) {
  .page-business .keyword-block__l {
    padding-left: 5.35vw;
  }
}

@media screen and (max-width: 834px) {
  .page-business .keyword-block__l {
    padding-left: 0;
  }
}

.page-business .keyword-block__l-ttl {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 834px) {
  .page-business .keyword-block__l-ttl {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 640px) {
  .page-business .keyword-block__l-ttl {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.page-business .keyword-block__l .c-ttl03 {
  margin-bottom: 70px;
}

@media screen and (max-width: 834px) {
  .page-business .keyword-block__l .c-ttl03 {
    margin-bottom: 35px;
  }
}

.page-business .business-block {
  position: relative;
  padding: 4.76vw 0 16.7vw;
  width: 94.633%;
  margin-left: auto;
}

.page-business .business-block .inner {
  margin-left: 0;
}

@media screen and (max-width: 834px) {
  .page-business .business-block .inner {
    padding-left: 0;
  }
}

.page-business .business-block__cont {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #fff;
}

.page-business .business-block__cont .c-ttl10 {
  padding-right: 4%;
  width: 47%;
}

@media screen and (max-width: 834px) {
  .page-business .business-block__cont .c-ttl10 {
    padding-right: 0;
    margin-bottom: 25px;
    width: 100%;
  }
}

.page-business .business-block__txt {
  width: 45%;
  max-width: 650px;
}

@media screen and (max-width: 834px) {
  .page-business .business-block__txt {
    padding-left: 15px;
    width: 100%;
  }
}

.page-business .business-block__ttl {
  margin-bottom: 40px;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (max-width: 834px) {
  .page-business .business-block__ttl {
    margin-bottom: 25px;
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.page-business .business-block__img {
  position: absolute;
  bottom: -16.36vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 83.92vw;
}

@media screen and (max-width: 834px) {
  .page-business .business-block__img {
    bottom: -30vw;
  }
}

.page-business .business-block__img img {
  border-radius: 100px 0 100px 0;
}

@media screen and (max-width: 834px) {
  .page-business .business-block__img img {
    height: 40vw;
    border-radius: 50px 0 50px 0;
  }
}

.page-business .business-block.block01 {
  margin-bottom: calc(16.36vw + 95px);
  background: #bcd400 url(../img/common/border.png) repeat-y left -5.367vw top;
  background-size: 105.7%;
}

@media screen and (max-width: 834px) {
  .page-business .business-block.block01 {
    margin-bottom: calc(30vw + 50px);
  }
}

.page-business .business-block.block01 .c-ttl10 .en {
  color: #dbed4e;
}

.page-business .business-block.block02 {
  margin-bottom: calc(16.36vw + 30px);
  background: #999 url(../img/common/border.png) repeat-y left -5.367vw top;
  background-size: 105.7%;
}

@media screen and (max-width: 834px) {
  .page-business .business-block.block02 {
    margin-bottom: calc(30vw + 15px);
  }
}

.page-business .business-block.block02:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
}

.page-business .business-block.block02:before {
  left: 0;
  bottom: 0;
  background: url(../img/business/bg-block02.png) no-repeat left bottom;
  background-size: contain;
}

.page-business .business-block.block02 .c-ttl10 .en {
  color: #d9d9d9;
}

.page-business .note {
  margin: 0 auto 120px;
  width: 83.92vw;
  color: #c1c4ae;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 834px) {
  .page-business .note {
    margin-right: 15px;
    margin-bottom: 60px;
  }
}

.page-business .sec-number {
  position: relative;
  margin-left: 5.35vw;
  margin-bottom: 100px;
  background: rgba(244, 244, 244, 0.8);
  padding: 110px 7.14vw 120px;
}

@media screen and (max-width: 640px) {
  .page-business .sec-number {
    margin-bottom: 60px;
    margin-left: 0;
    padding: 50px 0 60px;
  }
}

.page-business .sec-number__ttl {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: .08em;
}

@media screen and (max-width: 640px) {
  .page-business .sec-number__ttl {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

.page-business .sec-number .number-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 60px auto 0;
  max-width: 1350px;
}

@media screen and (max-width: 640px) {
  .page-business .sec-number .number-list {
    margin: 40px auto 0;
  }
}

.page-business .sec-number .number-list__item {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: min(80px, 4.76vw) 0 min(40px, 2.38vw);
  width: 33.33%;
  background: #fff;
}

@media screen and (max-width: 834px) {
  .page-business .sec-number .number-list__item {
    width: 50%;
  }
}

@media screen and (max-width: 640px) {
  .page-business .sec-number .number-list__item {
    padding: 40px 0 20px;
  }
}

.page-business .sec-number .number-list__item:nth-child(odd) {
  background: #ececed;
}

@media screen and (max-width: 834px) {
  .page-business .sec-number .number-list__item:nth-child(5n-2) {
    background: #fff;
  }
  .page-business .sec-number .number-list__item:nth-child(3n-2) {
    background: #ececed;
  }
}

.page-business .sec-number .number-list__item > div {
  width: 100%;
}

.page-business .sec-number .number-list__item img {
  max-width: 112px;
  min-width: 80px;
  width: 24.88%;
}

.page-business .sec-number .number-list__item-head {
  display: inline-block;
  margin-top: 11%;
  padding-bottom: 10px;
  width: max(170px, 37%);
  font-size: 21px;
  font-size: 2.1rem;
  border-bottom: 5px solid #bcd400;
}

@media screen and (max-width: 640px) {
  .page-business .sec-number .number-list__item-head {
    width: auto;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.page-business .sec-number .number-list__item-num {
  margin: 4.44% 0;
  line-height: 1;
}

.page-business .sec-number .number-list__item-num .num {
  font-size: 80px;
  font-size: 8rem;
  letter-spacing: -.05em;
}

@media screen and (max-width: 1024px) {
  .page-business .sec-number .number-list__item-num .num {
    font-size: max(60px, 7.8125vw);
  }
}

@media screen and (max-width: 640px) {
  .page-business .sec-number .number-list__item-num .num {
    font-size: max(56px, 7vw);
    letter-spacing: -.02em;
  }
}

.page-business .sec-number .number-list__item-num .unit {
  margin-left: 5px;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 640px) {
  .page-business .sec-number .number-list__item-num .unit {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.page-business .sec-number .number-list__item-data {
  color: #666;
  font-size: 14px;
  font-size: 1.4rem;
}

/* ====================================================
PRODUCE
==================================================== */
.interview-sub-nav {
  position: relative;
  margin-top: -180px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px max(60px, 3.57vw) 50px;
  width: 50%;
  min-width: 760px;
  border-radius: 20px 0 0 20px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 1024px) {
  .interview-sub-nav {
    width: calc(100% - 5.35vw);
    min-width: 1px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 834px) {
  .interview-sub-nav {
    padding: 10px 25px 30px;
  }
}

.interview-sub-nav .nav-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.interview-sub-nav .nav-list__item {
  margin-top: 20px;
  width: 46.52%;
}

@media screen and (max-width: 640px) {
  .interview-sub-nav .nav-list__item {
    width: 100%;
  }
}

.interview-sub-nav .nav-list__item a {
  position: relative;
  display: block;
  padding-bottom: 15px;
  color: #0a1f3a;
  border-bottom: 2px solid #0a1f3a;
}

.interview-sub-nav .nav-list__item a:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 25px;
  height: 1px;
}

.interview-sub-nav .nav-list__item a:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 1px;
}

.interview-sub-nav .nav-list__item a:before, .interview-sub-nav .nav-list__item a:after {
  right: 0;
  background: #0a1f3a;
}

.interview-sub-nav .nav-list__item a:before {
  top: 50%;
}

.interview-sub-nav .nav-list__item a:after {
  top: 46%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

@media screen and (max-width: 640px) {
  .interview-sub-nav .nav-list__item a:after {
    top: 45%;
  }
}

.interview-sub-nav .nav-list__item .jp {
  display: block;
  margin-bottom: 3px;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (max-width: 1200px) {
  .interview-sub-nav .nav-list__item .jp {
    font-size: 2.05vw;
  }
}

@media screen and (max-width: 834px) {
  .interview-sub-nav .nav-list__item .jp {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.interview-sub-nav .nav-list__item .en {
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 834px) {
  .interview-sub-nav .nav-list__item .en {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.interview-sub-nav .nav-list__item.active a {
  border-bottom-color: #bcd400;
}

.produce-ttl-headblock {
  margin: 50px 0 80px 5.35%;
  padding-top: 115px;
  background: url(../img/interview/ttl-en.png) no-repeat left 129px top;
  background-size: 319px auto;
}

@media screen and (max-width: 834px) {
  .produce-ttl-headblock {
    margin: 30px 0 40px;
    padding-top: 65px;
    background-position: left 65px top;
    background-size: 200px;
  }
}

.produce-ttl-headblock .c-ttl10 {
  color: #0a1f3a;
}

.produce-ttl-headblock .c-ttl10:before {
  background: #0a1f3a;
}

.sec-staff {
  position: relative;
  margin-bottom: 130px;
  padding-bottom: 125px;
}

@media screen and (max-width: 1200px) {
  .sec-staff {
    padding-bottom: 10.41vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-staff {
    margin-bottom: 70px;
  }
}

.sec-staff .img-baton {
  position: absolute;
  bottom: 0;
  right: 5.35vw;
  max-width: 399px;
}

@media screen and (max-width: 1200px) {
  .sec-staff .img-baton {
    width: 33.25vw;
    min-width: 180px;
  }
}

.sec-staff .ttl-block {
  margin-bottom: 120px;
}

@media screen and (max-width: 834px) {
  .sec-staff .ttl-block {
    margin-bottom: 60px;
  }
}

.sec-staff .ttl-block .no {
  font-style: italic;
  font-size: 40px;
  font-size: 4rem;
}

@media screen and (max-width: 834px) {
  .sec-staff .ttl-block .no {
    font-size: 30px;
    font-size: 3rem;
  }
}

.sec-staff .ttl-block .no .small {
  font-size: 26px;
  font-size: 2.6rem;
}

@media screen and (max-width: 834px) {
  .sec-staff .ttl-block .no .small {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-staff .ttl-block .ttl-layer {
  position: relative;
  margin: 10px 0;
  padding: 20px 0;
  overflow: hidden;
}

@media screen and (max-width: 834px) {
  .sec-staff .ttl-block .ttl-layer {
    margin: 0;
  }
}

.sec-staff .ttl-block .ttl-layer .ttl {
  font-size: 42px;
  font-size: 4.2rem;
  letter-spacing: .2em;
  line-height: 1.42;
}

@media screen and (max-width: 1024px) {
  .sec-staff .ttl-block .ttl-layer .ttl {
    font-size: max(36px, 4.1vw);
  }
}

@media screen and (max-width: 834px) {
  .sec-staff .ttl-block .ttl-layer .ttl {
    font-size: max(28px, 5vw);
  }
}

.sec-staff .ttl-block .ttl-layer .deco {
  position: absolute;
  top: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0 auto;
  color: rgba(218, 218, 218, 0.2);
  font-size: 150px;
  font-size: 15rem;
  line-height: .9;
  width: 10em;
  letter-spacing: -.01em;
}

@media screen and (max-width: 1024px) {
  .sec-staff .ttl-block .ttl-layer .deco {
    font-size: max(100px, 14.64vw);
  }
}

@media screen and (max-width: 834px) {
  .sec-staff .ttl-block .ttl-layer .deco {
    font-size: max(76px, 7.19vw);
  }
}

.sec-staff .ttl-block .cap {
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: .1em;
}

@media screen and (max-width: 834px) {
  .sec-staff .ttl-block .cap {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.sec-staff .message-block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: end;
  -webkit-box-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: 150px;
}

@media screen and (min-width: 835px) and (max-width: 1530px) {
  .sec-staff .message-block {
    padding-right: 15px;
  }
}

@media screen and (max-width: 1500px) {
  .sec-staff .message-block {
    margin-left: 11.11%;
  }
}

@media screen and (max-width: 1024px) {
  .sec-staff .message-block {
    margin-left: 5%;
  }
}

@media screen and (max-width: 834px) {
  .sec-staff .message-block {
    margin-left: 0;
  }
}

@media screen and (min-width: 835px) {
  .sec-staff .message-block__img {
    width: 44.44%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 834px) {
  .sec-staff .message-block__img {
    width: 100%;
    text-align: center;
  }
  .sec-staff .message-block__img img {
    width: 80%;
    max-width: 500px;
  }
}

@media screen and (min-width: 835px) {
  .sec-staff .message-block__txt {
    width: 55.55%;
    -ms-flex-item-align: center;
        align-self: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (max-width: 834px) {
  .sec-staff .message-block__txt {
    margin-bottom: 40px;
    width: 100%;
  }
}

.sec-staff .message-block__txt-head {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -ms-flex-align: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

@media screen and (max-width: 1200px) {
  .sec-staff .message-block__txt-head {
    margin-bottom: 5.83vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-staff .message-block__txt-head {
    margin-bottom: 3.5vw;
  }
}

.sec-staff .message-block__txt-head .spec {
  width: 220px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 834px) {
  .sec-staff .message-block__txt-head .spec {
    width: 185px;
  }
}

.sec-staff .message-block__txt-head .spec .yr {
  margin-bottom: 20px;
}

@media screen and (max-width: 834px) {
  .sec-staff .message-block__txt-head .spec .yr {
    margin-bottom: 10px;
  }
}

.sec-staff .message-block__txt-head .spec .strong {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 834px) {
  .sec-staff .message-block__txt-head .spec .strong {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-staff .message-block__txt-head .sign {
  width: calc(100% - 220px);
  max-width: 276px;
}

@media screen and (max-width: 834px) {
  .sec-staff .message-block__txt-head .sign {
    width: calc(100% - 185px);
    max-width: 200px;
  }
}

.sec-staff .closs-talk-block {
  padding: 125px 5.35% 90px;
  width: calc(100% - 5.35%);
  background: rgba(244, 244, 244, 0.8);
}

@media screen and (max-width: 1200px) {
  .sec-staff .closs-talk-block {
    padding: 10.41vw 4% 7.5vw;
  }
}

@media screen and (max-width: 834px) {
  .sec-staff .closs-talk-block {
    padding: 50px 4% 5vw;
  }
}

@media screen and (max-width: 640px) {
  .sec-staff .closs-talk-block {
    padding-left: 0;
    padding-right: 0;
  }
}

.sec-staff .closs-talk-block .inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sec-staff .closs-talk-block .inner .c-ttl03 {
  width: 150px;
}

@media screen and (max-width: 834px) {
  .sec-staff .closs-talk-block .inner .c-ttl03 {
    margin-bottom: 30px;
    width: 100%;
  }
}

.sec-staff .closs-talk-block .talk-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-align: start;
  -webkit-box-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 60.7vw;
  max-width: 1025px;
}

@media screen and (max-width: 834px) {
  .sec-staff .closs-talk-block .talk-list {
    width: 100%;
  }
}

.sec-staff .closs-talk-block .talk-list__item {
  margin-bottom: 70px;
  width: 44.87%;
}

@media screen and (max-width: 1024px) {
  .sec-staff .closs-talk-block .talk-list__item {
    width: 47%;
  }
}

@media screen and (max-width: 834px) {
  .sec-staff .closs-talk-block .talk-list__item {
    margin-bottom: 40px;
    width: 100%;
  }
}

.sec-staff .closs-talk-block .talk-list__head {
  margin-bottom: 15px;
  font-size: 21px;
  font-size: 2.1rem;
  letter-spacing: .2em;
}

@media screen and (max-width: 834px) {
  .sec-staff .closs-talk-block .talk-list__head {
    font-size: 17px;
    font-size: 1.7rem;
    left: .1em;
  }
}

.page-produce .sec-staff .message-block__txt-head .spec {
  width: 270px;
}

@media screen and (max-width: 834px) {
  .page-produce .sec-staff .message-block__txt-head .spec {
    width: 200px;
  }
}

.page-produce .sec-staff .message-block__txt-head .sign {
  width: calc(100% - 270px);
}

@media screen and (max-width: 834px) {
  .page-produce .sec-staff .message-block__txt-head .sign {
    width: calc(100% - 180px);
    margin-left: -20px;
  }
}

.inner-page {
  width: 90%;
  display: block;
  margin: 0 auto;
  max-width: 1200px;
}

.requirements-ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 28px;
  font-size: 2.8rem;
  padding: 53px 0 32px;
}

@media screen and (max-width: 834px) {
  .requirements-ttl {
    padding: 20px 0;
    font-size: 20px;
    font-size: 2rem;
  }
}

.box-tag__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 5px 0;
}

.box-tag__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  background: #032156;
  border: 1px solid #032156;
  border-radius: 5px;
  color: #ffffff;
  width: 93px;
  height: 30px;
  margin-right: 10px;
}

@media screen and (max-width: 640px) {
  .box-tag__tag {
    width: 75px;
  }
}

.box-tag__tag.rv {
  background: #ffffff;
  color: #032156;
}

.box-tag__ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 21px;
  font-size: 2.1rem;
}

@media screen and (max-width: 834px) {
  .box-tag__ttl {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 4px;
  }
}

.box-tag__tm {
  width: calc(100% - 103px);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 15px;
  font-size: 1.5rem;
  padding-top: 3px;
}

@media screen and (max-width: 834px) {
  .box-tag__tm {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.box-tag__map {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  color: #032156;
  margin-left: 31px;
  border-bottom: 1px solid #032156;
  padding-bottom: 4px;
  top: -5px;
}

@media screen and (max-width: 834px) {
  .box-tag__map {
    margin-left: 17px;
    top: 3px;
  }
}

.box-tag__map:hover {
  opacity: 0.7;
}

.box-tag__map:before {
  content: "";
  position: absolute;
  background: url("../img/outline/icon-location.png") center no-repeat;
  background-size: contain;
  width: 12px;
  height: 15px;
  top: 5px;
  left: -18px;
}

.requirements-note {
  border-bottom: 3px solid #bcd400;
  font-size: 10px;
  font-size: 1rem;
  text-align: right;
  line-height: 1.5;
  padding-bottom: 16px;
  margin: -31px 0 43px;
}

@media screen and (max-width: 1024px) {
  .requirements-note {
    text-align: left;
    margin: 5px 0 20px;
    padding-bottom: 10px;
  }
}

.requirements-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 77px;
}

@media screen and (max-width: 834px) {
  .requirements-wrap {
    margin-bottom: 30px;
  }
}

.requirements-wrap__img {
  width: 50%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 834px) {
  .requirements-wrap__img {
    width: 100%;
  }
}

.requirements-wrap__img:before {
  content: "";
  display: block;
  background: #CBCBCB;
  padding-bottom: calc(400 / 600 * 100%);
}

.requirements-wrap__img .thumbnail {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.requirements-wrap__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover";
}

.requirements-wrap__ct {
  width: 47.5%;
  padding-top: 15px;
}

@media screen and (max-width: 1200px) {
  .requirements-wrap__ct {
    padding-top: 0;
  }
}

@media screen and (max-width: 834px) {
  .requirements-wrap__ct {
    padding-top: 10px;
    width: 100%;
  }
}

.requirements-wrap__ct p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
}

.list-requirements {
  max-width: 1017px;
  margin: 0 auto 36px;
  padding: 0 10px;
}

.list-requirements.last {
  margin: 0 auto -10px;
}

@media screen and (max-width: 834px) {
  .list-requirements.last {
    margin: 0 auto;
  }
}

.list-requirements__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #dddddd;
  padding: 21px 0;
}

.list-requirements__ttl {
  width: 31.8%;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 18px;
  font-size: 1.8rem;
  padding-left: 18px;
  line-height: 1.75;
}

@media screen and (max-width: 640px) {
  .list-requirements__ttl {
    font-size: 16px;
    font-size: 1.6rem;
    width: 100%;
  }
}

.list-requirements__ttl:before {
  content: "";
  position: absolute;
  background: #bcd400;
  width: 6px;
  height: 25px;
  border-radius: 3px;
  top: 5px;
  left: 0;
}

@media screen and (max-width: 834px) {
  .list-requirements__ttl:before {
    top: 1px;
  }
}

.list-requirements__txt {
  width: 68.2%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  margin-top: 2px;
}

@media screen and (max-width: 640px) {
  .list-requirements__txt {
    width: 100%;
    margin-top: 5px;
  }
}

.outline-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #f7f7f7;
  border-radius: 10px;
  max-width: 997px;
  margin: 0 auto;
  padding: 33px 37px;
}

@media screen and (max-width: 834px) {
  .outline-tag {
    padding: 10px;
    margin: 0 10px;
  }
}

.outline-tag .tag-btn {
  border: 1px solid #d4d4d4;
  background: #ffffff;
  border-radius: 3px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 5px 14px 6px;
  margin: 0 4px 10px 0;
}

@media screen and (max-width: 834px) {
  .outline-tag .tag-btn {
    padding: 5px 10px 6px;
    margin: 0 4px 4px 0;
  }
}

.outline-tag .tag-btn:hover {
  opacity: 0.7;
}

.sec-outline {
  padding-top: 35px;
  padding-bottom: 150px;
  background: url("../img/outline/border@2x.png") repeat-y center/100%;
}

@media screen and (max-width: 834px) {
  .sec-outline {
    padding: 40px 0 120px;
  }
}

.link-block {
  max-width: 750px;
  width: 100%;
  margin: 0 auto 60px;
}

@media screen and (max-width: 834px) {
  .link-block {
    margin-bottom: 30px;
  }
}

.link-block .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -25px;
}

@media screen and (max-width: 834px) {
  .link-block .list {
    margin: 0 -5px;
  }
}

.link-block .list .item {
  width: 50%;
  padding: 0 25px;
}

@media screen and (max-width: 834px) {
  .link-block .list .item {
    padding: 0 5px;
  }
}

.link-block .list .item a {
  background: #fff;
  border: 2px solid #bcd400;
  border-radius: 10px;
  padding: 25px 0 54px;
  display: block;
  position: relative;
}

@media screen and (max-width: 834px) {
  .link-block .list .item a {
    padding: 10px 10px 40px;
  }
}

.link-block .list .item a:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../img/outline/ico-down.png") no-repeat center/cover;
  position: absolute;
  bottom: 16px;
  left: calc(50% - 12px);
}

@media screen and (max-width: 834px) {
  .link-block .list .item a:after {
    width: 20px;
    height: 20px;
    bottom: 8px;
    left: calc(50% - 10px);
  }
}

.link-block .list .item a span {
  display: block;
  text-align: center;
}

.link-block .list .item a span.jp {
  font-size: 21px;
  font-size: 2.1rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 2px;
}

@media screen and (max-width: 834px) {
  .link-block .list .item a span.jp {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 364px) {
  .link-block .list .item a span.jp {
    min-height: 34px;
  }
}

.link-block .list .item a span.txt {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 834px) {
  .link-block .list .item a span.txt {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}

.link-block .list .item a small {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  color: #bcd400;
  display: block;
  margin-bottom: 11px;
}

@media screen and (max-width: 834px) {
  .link-block .list .item a small {
    margin-bottom: 6px;
  }
}

.link-block .list .item:hover a {
  background: #bcd400;
  color: #fff;
}

.link-block .list .item:hover a small {
  color: #fff;
}

.link-block .list .item:hover a:after {
  background: url("../img/outline/ico-down-white.png") no-repeat center/cover;
}

.outline-block {
  -webkit-box-shadow: 3px 0 24px rgba(0, 0, 0, 0.08);
          box-shadow: 3px 0 24px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 54px;
  padding-bottom: 96px;
  background: #fff;
}

@media screen and (max-width: 834px) {
  .outline-block {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

.outline-block:last-of-type {
  margin-bottom: 0;
}

.outline-block .txt-intro {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.18;
  margin-bottom: 53px;
}

@media screen and (max-width: 834px) {
  .outline-block .txt-intro {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 0 15px;
  }
}

.outline-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 600;
  color: #fff;
  background: #032156;
  text-align: center;
  padding: 23px 15px;
  margin-bottom: 30px;
  letter-spacing: 3px;
}

@media screen and (max-width: 834px) {
  .outline-ttl {
    font-size: 20px;
    font-size: 2rem;
    padding: 15px;
    letter-spacing: 1.5px;
  }
}

.list-item {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
}

.list-item .item {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 40px 40px 33px;
  margin-bottom: 30px;
}

@media screen and (max-width: 834px) {
  .list-item .item {
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
  }
}

.list-item .item:last-of-type {
  margin-bottom: 0;
}

.list-item .item .heading-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 3px solid #bcd400;
}

@media screen and (max-width: 834px) {
  .list-item .item .heading-box {
    padding-bottom: 10px;
  }
}

.list-item .item .heading-box span {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.list-item .item .heading-box span.label {
  max-width: 92px;
  width: 100%;
  height: 30px;
  font-size: 15px;
  font-size: 1.5rem;
  color: #fff;
  background: #032156;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}

@media screen and (max-width: 834px) {
  .list-item .item .heading-box span.label {
    max-width: 80px;
    height: 25px;
    font-size: 12px;
    font-size: 1.2rem;
    padding-bottom: 3px;
  }
}

.list-item .item .heading-box span.txt {
  font-size: 21px;
  font-size: 2.1rem;
  margin-left: 13px;
}

@media screen and (max-width: 834px) {
  .list-item .item .heading-box span.txt {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.list-item .item .txt-basic {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

@media screen and (max-width: 834px) {
  .list-item .item .txt-basic {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.list-item .item .list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 834px) {
  .list-item .item .list-btn {
    margin-bottom: -10px;
  }
}

.list-item .item .list-btn li {
  margin-right: 25px;
}

@media screen and (max-width: 834px) {
  .list-item .item .list-btn li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

.list-item .item .list-btn li:last-of-type {
  margin-right: 0;
}

.list-item .item .list-btn li a {
  font-family: "Noto Serif JP", serif;
  min-width: 290px;
  height: 65px;
  font-size: 15px;
  font-size: 1.5rem;
  padding: 0 20px;
  border-radius: 50px;
  position: relative;
  -webkit-box-shadow: 3px 0 5px rgba(0, 0, 0, 0.08);
          box-shadow: 3px 0 5px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
}

@media screen and (max-width: 834px) {
  .list-item .item .list-btn li a {
    min-width: 130px;
    height: 40px;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0 35px 0 15px;
  }
}

.list-item .item .list-btn li a:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/outline/ico-right.png") no-repeat center/cover;
  position: absolute;
  top: calc(50% - 12px);
  right: 20px;
}

@media screen and (max-width: 834px) {
  .list-item .item .list-btn li a:after {
    width: 15px;
    height: 15px;
    top: calc(50% - 7.5px);
    right: 10px;
  }
}

.list-item .item .list-btn li:hover a {
  background: #ecf2be;
}

.txt-center {
  text-align: center;
}

/*# sourceMappingURL=maps/styles.css.map */
