@charset "UTF-8";
@media screen and (max-width: 767px) {
  .onliy-pc {
    display: none;
  }
}

.onliy-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .onliy-sp {
    display: block;
  }
}

.onliy-sm {
  display: none;
}

@media screen and (max-width: 500px) {
  .onliy-sm {
    display: block;
  }
}

@media screen and (max-width: 1080px) {
  .onliy-inner {
    display: none;
  }
}

/* FontFamily */
/* font-weight */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #222;
  letter-spacing: 0;
}

/* リキッドレイアウト対応 */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  line-height: 1.6;
  background-color: #fff;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
html {
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.accordion-item {
  border-bottom: 1px solid #B7CFD4;
}

.accordion-item__title {
  position: relative;
  color: #007F8E;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .accordion-item__title {
    font-size: 1.6rem;
    padding-bottom: 16px;
  }
}

.accordion-item__title::before, .accordion-item__title::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  width: 21px;
  height: 2px;
  background: #01BDB6;
}

@media screen and (max-width: 767px) {
  .accordion-item__title::before, .accordion-item__title::after {
    right: 0;
    top: calc(50% + 5px);
  }
}

.accordion-item__title::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.accordion-item__title.is-open::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.accordion-item__title--icon-none::before, .accordion-item__title--icon-none::after {
  content: none;
}

.accordion-item__body {
  display: none;
}

/* -------------------------------------
        l-inner
-----------------------------------------*/
.l-inner {
  max-width: 1130px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .l-inner {
    max-width: 600px !important;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    font-size: 1.2rem;
  }
}

.breadcrumb__link {
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumb__link::after {
  content: "";
  display: block;
  background-color: #333;
  width: 43px;
  height: 1px;
  margin-top: -2px;
}

@media screen and (max-width: 767px) {
  .breadcrumb__link::after {
    width: 37px;
  }
}

.breadcrumb__link:hover {
  opacity: 0.6;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}

.breadcrumb__icon {
  display: inline-block;
  width: 8px;
  margin: 0 12px;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

@media screen and (max-width: 767px) {
  .breadcrumb__icon {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.current-item {
  color: #007F8E;
}

/* -------------------------------------
        btn
-----------------------------------------*/
.btn {
  display: inline-block;
  position: relative;
  background: #2DB4AF;
  color: #FFF;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
  text-transform: uppercase;
  padding: 22px 10px 24px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .btn {
    padding: 13px 10px;
    font-size: 2.2rem;
  }
}

.btn span {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .btn span {
    font-size: 1.1rem;
  }
}

.btn:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* -------------------------------------
        card-item
-----------------------------------------*/
.card-item:hover .card-item__img img {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
          transform: translate(-50%, -50%) scale(1.1);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.card-item:hover .card-item__link::after {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}

.card-item__img {
  position: relative;
  overflow: hidden;
  padding-top: 118.8%;
}

@media screen and (max-width: 880px) {
  .card-item__img {
    padding-top: 62.28%;
  }
}

.card-item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
  /* IE対策 */
  font-family: 'object-fit: cover;';
}

.card-item__btn {
  position: absolute;
  left: -20px;
  bottom: 20px;
  position: relative;
  width: 100%;
  background-color: #fff;
}

@media screen and (max-width: 880px) {
  .card-item__btn {
    width: 90%;
    left: -15px;
    bottom: 80px;
  }
}

.card-item__btn--right {
  right: -20px;
  right: 0;
}

.card-item__link {
  display: inline-block;
  position: relative;
  width: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 28px 10px 28px 30px;
}

@media screen and (max-width: 880px) {
  .card-item__link {
    padding: 18px 10px 18px 30px;
  }
}

.card-item__link::after {
  position: absolute;
  top: 45%;
  -webkit-transform: translateX(28px);
          transform: translateX(28px);
  content: '';
  display: inline-block;
  width: 23px;
  height: 18px;
  background-image: url(../images/common/icon_arrow_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  -webkit-transition: -webkit-transform .3s ease-out;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
}

/* -------------------------------------
        card
-----------------------------------------*/
.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #F9F9F9;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .card {
    padding: 10px 40px;
  }
}

@media screen and (max-width: 500px) {
  .card {
    padding: 10px 12px;
  }
}

.card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
}

@media screen and (max-width: 767px) {
  .card__icon {
    margin-bottom: 4px;
  }
}

.card__title {
  color: #007F8E;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .card__title {
    font-size: 1.4rem;
    margin-bottom: 4px;
  }
}

.card__text {
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .card__text {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

/* -------------------------------------
        cards
-----------------------------------------*/
.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -40px;
}

@media screen and (max-width: 767px) {
  .cards {
    margin-bottom: -7px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.cards--col3 > .cards__item {
  width: 22.5%;
  height: 220px;
  margin-right: 3.4259%;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .cards--col3 > .cards__item {
    width: 48.9555%;
    margin-right: 2.08%;
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 767px) {
  .cards--col3 > .cards__item:nth-of-type(2n) {
    margin-right: 0;
  }
}

.cards--col3 > .cards__item:nth-of-type(3n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .cards--col3 > .cards__item:nth-of-type(3n) {
    margin-right: 2.08%;
  }
}

.cards--col4 > .cards__item {
  width: 22.408%;
  margin-right: 3.4259%;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .cards--col4 > .cards__item {
    width: 48.9555%;
    margin-right: 2.08%;
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 767px) {
  .cards--col4 > .cards__item:nth-of-type(2n) {
    margin-right: 0;
  }
}

.cards--col4 > .cards__item:nth-of-type(4n) {
  margin-right: 0;
}

.cards--sz-l > .cards__item {
  height: 220px;
}

.cards--sz-m > .cards__item {
  height: 193px;
}

@media screen and (max-width: 767px) {
  .cards--sz-m > .cards__item {
    height: 143px;
  }
}

@media screen and (max-width: 360px) {
  .cards--sz-m > .cards__item {
    height: 163px;
  }
}

.cards--sz-s > .cards__item {
  height: 161px;
}

@media screen and (max-width: 767px) {
  .cards--sz-s > .cards__item {
    height: 120px;
  }
}

.catchcopy-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .catchcopy-title {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }
}

.catchcopy-title::after {
  content: '';
  width: 100px;
  height: 1px;
  background: #222;
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .catchcopy-title::after {
    width: 40px;
    margin-left: 20px;
  }
}

.catchcopy-title--white {
  color: #fff;
}

.catchcopy-title--white::after {
  background-color: #fff;
}

/* -------------------------------------
        footer
-----------------------------------------*/
.footer {
  padding-top: 54px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 35px;
  }
}

.footer__title {
  border-bottom: 1px solid #ddd;
  color: #333;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 28px;
}

@media screen and (max-width: 767px) {
  .footer__title {
    font-size: 1.6rem;
    padding-bottom: 24px;
  }
}

.footer__copylight {
  width: 100%;
  background-color: #EEE;
  color: #666;
  font-size: 10px;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  text-align: center;
  padding: 18px 25px;
}

@media screen and (max-width: 767px) {
  .footer__copylight {
    padding: 12px 20px;
  }
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  background: #fff;
  padding: 57px 0 15px;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    display: block;
    padding: 0 0 30px;
  }
}

.footer-nav a {
  display: inline-block;
  width: 100%;
}

.footer-nav__inner {
  width: 100%;
  height: 100%;
}

.footer-nav__list-wrap {
  width: 28.555%;
  margin-right: 6.38%;
}

@media screen and (max-width: 767px) {
  .footer-nav__list-wrap {
    width: 100%;
  }
}

.footer-nav__list-wrap:nth-of-type(3n) {
  margin-right: 0;
}

.footer-nav__list-wrap:last-child .footer-nav__list:last-child {
  margin-bottom: 0;
}

.footer-nav__list {
  margin-bottom: 43px;
}

@media screen and (max-width: 767px) {
  .footer-nav__list {
    padding: 0 10px;
    margin-bottom: 0;
  }
}

.footer-nav__list--single:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-nav__list--not-active:hover {
  opacity: 1;
}

.footer-nav__title {
  color: #444;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
  margin-bottom: 12px;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .footer-nav__title {
    position: relative;
    pointer-events: all;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
    padding: 18px 10px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav__title::before, .footer-nav__title::after {
    content: '';
    display: block;
    width: 14px;
    height: 1px;
    border-radius: 5px;
    background: #222;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .footer-nav__title::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

.footer-nav__title.is-open::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media screen and (max-width: 767px) {
  .footer-nav__title--single::before, .footer-nav__title--single::after {
    content: none;
  }
}

.footer-nav__title--not-active {
  color: rgba(153, 153, 153, .4);
  cursor: default;
}

@media screen and (max-width: 767px) {
  .footer-nav__title--not-active::before, .footer-nav__title--not-active::after {
    background-color: rgba(34, 34, 34, .4);
  }
}

.footer-nav__en-title {
  display: inline-block;
  color: #3B7396;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  margin-right: 13px;
}

@media screen and (max-width: 767px) {
  .footer-nav__en-title {
    font-size: 1.8rem;
    margin-right: 15px;
  }
}

.footer-nav__en-title--not-active {
  color: rgba(59, 115, 150, .4);
}

.footer-nav__item {
  position: relative;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
  color: #444;
}

@media screen and (max-width: 767px) {
  .footer-nav__item {
    font-size: 1.4rem;
  }
}

.footer-nav__item:not(:last-child) {
  margin-bottom: 8px;
}

.footer-nav__item:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-nav__item--not-active {
  color: rgba(68, 68, 68, .4);
}

.footer-nav__item--not-active:hover {
  opacity: 1;
}

@media screen and (min-width: 769px) {
  .footer-nav .footer-nav__items {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .footer-nav .footer-nav__items {
    display: none;
    padding: 20px 12px;
    border-bottom: 1px solid #ccc;
  }
}

/* -------------------------------------
        header
-----------------------------------------*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  z-index: 100;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .header {
    height: 50px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .header__inner {
    z-index: 1000;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-left: 30px;
  z-index: 200;
}

@media screen and (max-width: 767px) {
  .header__logo {
    width: 134px;
    margin-left: 12px;
  }
}

@media screen and (max-width: 320px) {
  .header__logo {
    width: 118px;
    margin-left: 0;
  }
}

.header__logo-link {
  display: block;
  height: 100%;
}

.header__logo-link:hover {
  opacity: 0.7;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header__btnbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  background-color: #fff;
  z-index: 1000;
}

@media screen and (max-width: 1200px) {
  .header-nav {
    display: none;
  }
}

.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 40px;
}

.header-nav__item:not(:last-child) {
  margin-right: 38px;
}

.header-nav__item--not-active {
  color: #CCC;
}

.header-nav__item .current {
  color: #007F8E;
}

.header-nav__item.current a {
  color: #007F8E;
}

.header-nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90px;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #222;
}

.header-nav__link:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-nav__link--not-active {
  color: #CCC;
  cursor: default;
  pointer-events: none;
}

.header-nav__link--not-active:hover {
  opacity: 1;
}

/*hoverしたら表示*/
.has-child:hover > .nav-child {
  visibility: visible;
  visibility: visible;
  opacity: 1;
}

.nav-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 90px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 40px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}

.nav-child__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1130px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}

.nav-child__item {
  width: 27.777%;
}

.nav-child__item:not(:last-child) {
  margin-right: 8.333%;
}

.nav-child__item:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.nav-child__img {
  margin-bottom: 12px;
}

.nav-child__title {
  color: #222;
  font-size: 16px;
  font-size: 1.6rem;
  pointer-events: none;
}

.nav-child__title::before {
  content: attr(data-sub);
  display: block;
  color: #007F8E;
  font-size: 10px;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

.header--under {
  background-color: white;
}

.header__logo-link--under {
  background-image: url(../images/common/logo_blue.svg);
  background-repeat: no-repeat;
}

.entry-btn {
  width: 140px;
}

@media screen and (max-width: 767px) {
  .entry-btn {
    width: 108px;
  }
}

.entry-btn__link {
  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: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right bottom, from(#00C294), to(#02B9D6));
  background: linear-gradient(to right bottom, #00C294, #02B9D6);
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .entry-btn__link {
    font-size: 1.4rem;
  }
}

.entry-btn__link:hover {
  background: -webkit-gradient(linear, left top, right bottom, from(#02B9D6), to(#00C294));
  background: linear-gradient(to right bottom, #02B9D6, #00C294);
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.15" /><feFuncG type="linear" slope="1.15" /><feFuncB type="linear" slope="1.15" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(115%);
          filter: brightness(115%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.hamburger-btn {
  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;
  min-width: 90px;
  background-color: #fff;
  z-index: 1000;
}

@media screen and (max-width: 767px) {
  .hamburger-btn {
    min-width: 50px;
  }
}

.hamburger-btn__inner {
  position: relative;
  width: 30px;
  height: 24px;
}

@media screen and (max-width: 767px) {
  .hamburger-btn__inner {
    width: 24px;
    height: 20px;
  }
}

.hamburger-btn__inner span {
  position: absolute;
  right: 0;
  -webkit-transition: .2s;
  transition: .2s;
  -webkit-transform: translateY(0) rotate(0);
          transform: translateY(0) rotate(0);
  display: block;
  width: 100%;
  height: 1px;
  background: #004747;
}

.hamburger-btn__inner span:nth-of-type(1) {
  width: 100%;
  top: 0;
}

.hamburger-btn__inner span:nth-of-type(2) {
  top: 50%;
  right: 0;
}

.hamburger-btn__inner span:nth-of-type(3) {
  bottom: 0;
}

.sub-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  -webkit-transition: .2s;
  transition: .2s;
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .sub-nav {
    display: none;
    opacity: 0;
    height: 100vh;
    min-height: auto;
    overflow-y: auto;
  }
}

.sub-nav__inner {
  width: 100%;
  max-width: 1130px;
  height: 100%;
  padding-top: 187px;
}

@media screen and (max-width: 767px) {
  .sub-nav__inner {
    padding-top: 98px;
  }
}

.sub-nav__list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .sub-nav__list-wrap {
    display: block;
    padding-right: 40px;
    padding-left: 40px;
  }
  .sub-nav__list-wrap:last-child {
    padding-bottom: 20px;
  }
}

.sub-nav__list {
  width: 22.5%;
  margin-bottom: 50px;
}

.sub-nav__list:not(:last-child) {
  margin-right: 3.333%;
}

@media screen and (max-width: 767px) {
  .sub-nav__list:not(:last-child) {
    margin-right: 0;
  }
}

.sub-nav__list:nth-of-type(4n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .sub-nav__list {
    width: 100%;
  }
  .sub-nav__list:not(:last-child) {
    margin-bottom: 28px;
  }
}

.sub-nav__link {
  display: block;
}

.sub-nav__link:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sub-nav__items {
  display: none;
}

@media screen and (min-width: 769px) {
  .sub-nav__items {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .sub-nav__items {
    padding: 20px 12px;
    border-bottom: 1px solid #EEE;
  }
}

.sub-nav__img {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .sub-nav__img {
    margin-bottom: 6px;
  }
}

.sub-nav__title {
  color: #333;
  font-size: 16px;
  font-size: 1.6rem;
  pointer-events: none;
}

.sub-nav__title::before {
  content: attr(data-sub);
  display: block;
  color: #007F8E;
  font-size: 10px;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .sub-nav__title::before {
    content: none;
  }
}

@media screen and (max-width: 767px) {
  .sub-nav__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    position: relative;
    pointer-events: all;
    padding: 0 2px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 320px) {
  .sub-nav__title {
    font-size: 1.4rem;
  }
}

.sub-nav__sub-title {
  display: block;
  font-size: 12px;
  font-size: 1.2rem;
}

.sub-nav__item {
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0;
  padding-left: .5em;
}

.sub-nav__item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 4px;
  height: 1px;
}

.sub-nav__item:not(:last-child) {
  margin-bottom: 10px;
}

.sub-nav__item:hover {
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header.active .hamburger-btn span:nth-of-type(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.header.active .hamburger-btn span:nth-of-type(2) {
  width: 0;
  -webkit-transition: .01s;
  transition: .01s;
}

.header.active .hamburger-btn span:nth-of-type(3) {
  width: 100%;
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

.header.active .sub-nav {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .sub-nav.visible {
    display: block;
    opacity: 1;
    -webkit-animation: fadeIn 0.2s ease-in 0s forwards;
            animation: fadeIn 0.2s ease-in 0s forwards;
  }
  @-webkit-keyframes fadeIn {
    0% {
      display: none;
      opacity: 0;
    }
    1% {
      display: block;
      opacity: 0;
    }
    100% {
      display: block;
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {
      display: none;
      opacity: 0;
    }
    1% {
      display: block;
      opacity: 0;
    }
    100% {
      display: block;
      opacity: 1;
    }
  }
}

/* -------------------------------------
       テーブル
-----------------------------------------*/
.horizontal-table {
  border-top: 1px solid #B7CFD4;
  border-bottom: 1px solid #B7CFD4;
}

.horizontal-table__inner {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.horizontal-table__row:last-child .horizontal-table__header, .horizontal-table__row:last-child .horizontal-table__text {
  border-bottom-width: 0;
}

.horizontal-table__header {
  width: 180px;
  background-color: #E5F6F9;
  border-bottom: 1px solid #B7CFD4;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  padding: 20px;
  vertical-align: text-top;
}

@media screen and (max-width: 767px) {
  .horizontal-table__header {
    display: block;
    width: 100%;
    border-bottom: none;
    font-size: 1.4rem;
    padding: 8px 20px;
  }
}

.horizontal-table__text {
  border-bottom: 1px solid #B7CFD4;
  line-height: 1.4;
  padding: 20px 80px 20px 20px;
}

@media screen and (max-width: 767px) {
  .horizontal-table__text {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    padding: 12px 20px;
  }
}

.horizontal-table__list-wrap:not(:last-child) {
  margin-bottom: 22px;
}

@media screen and (max-width: 767px) {
  .horizontal-table__list-wrap {
    font-size: 1.4rem;
  }
}

.horizontal-table__list-title {
  color: #007F8E;
  font-weight: 700;
  margin-bottom: 11px;
}

.horizontal-table__list {
  padding-left: 0.8em;
  margin-left: 0.4em;
}

.horizontal-table__item {
  text-indent: -0.8em;
}

.horizontal-table__item:not(:last-child) {
  margin-bottom: 6px;
}

.horizontal-table__item::before {
  content: '';
  display: inline-block;
  background-color: #222;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  margin: 0 8px 3px 0;
}

.intro-text {
  color: #333;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .intro-text {
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    text-align: left;
  }
}

/* -------------------------------------
        label
-----------------------------------------*/
.label {
  display: inline-block;
  position: relative;
  background-color: #F4F4F4;
  width: 100%;
  color: #333;
  font-weight: 500;
  text-align: center;
  padding: 15px 10px 25px;
}

.label::after {
  position: absolute;
  bottom: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 10px;
  height: 5px;
  background-image: url(../images/common/icon_arrow_gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.label:hover {
  background-color: #01BDB6;
  color: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.label:hover::after {
  background-image: url(../images/common/icon_arrow_white.svg);
}

/* -------------------------------------
        label
-----------------------------------------*/
.label02 {
  display: inline-block;
  position: relative;
  background-color: #fff;
  border: 1px solid #007F8E;
  width: 100%;
  color: #007F8E;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 24px 10px 32px;
}

@media screen and (max-width: 767px) {
  .label02 {
    max-width: 460px;
    font-size: 1.6rem;
    padding: 12px 10px 26px;
  }
}

.label02::after {
  position: absolute;
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 11px;
  height: 7px;
  background-image: url(../images/common/icon_arrow_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .label02::after {
    bottom: 14px;
  }
}

.label02:hover {
  background-color: #007F8E;
  color: #FFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.label02:hover::after {
  background-image: url(../images/common/icon_arrow_white.svg);
}

.labels-area {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .labels-area {
    padding: 60px 0 80px;
  }
}

.labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .labels {
    display: block;
  }
}

.labels__item {
  width: 22.5%;
  max-width: 243px;
}

.labels__item:not(:last-child) {
  margin-right: 36px;
}

@media screen and (max-width: 767px) {
  .labels__item {
    width: 100%;
    max-width: none;
    margin-right: 0;
  }
  .labels__item:not(:last-child) {
    margin-bottom: 12px;
  }
}

.media01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .media01 {
    display: block;
  }
}

.media01__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 56.945%;
  overflow: hidden;
  padding-top: 35.556%;
  margin-right: 36px;
}

@media screen and (max-width: 767px) {
  .media01__img {
    width: 100%;
    padding-top: 62.39%;
    margin: 0 0 20px 0;
  }
}

.media01__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* IE対策 */
  font-family: 'object-fit: cover;';
}

.media01__title {
  display: inline-block;
  color: #007F8E;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .media01__title {
    font-size: 1.8rem;
    letter-spacing: 0;
    margin-bottom: 20px;
  }
}

.media01__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #007F8E;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .media01__title::after {
    margin-top: 18px;
    height: 1px;
  }
}

.media01__title--line-gradation::after {
  background: -webkit-gradient(linear, right top, left top, from(#009FB8), to(#00C99A));
  background: linear-gradient(to left, #009FB8, #00C99A);
  height: 3px;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .media01__title--line-gradation::after {
    height: 1px;
    margin-top: 14px;
  }
}

.media01__title--s {
  width: 100px;
}

.media01__title--s::after {
  width: 90%;
}

@media screen and (max-width: 767px) {
  .media01__title--s::after {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .media01__title--s {
    width: 64px;
  }
}

.media01__text {
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .media01__text {
    font-size: 1.4rem;
  }
}

.media01--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.media01--reverse .media01__img {
  margin-right: 0;
  margin-left: 36px;
}

@media screen and (max-width: 767px) {
  .media01--reverse .media01__img {
    margin-left: 0;
  }
}

.media02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media screen and (max-width: 767px) {
  .media02 {
    display: block;
  }
}

.media02__img {
  width: 74.2%;
  position: absolute;
  top: -197px;
  overflow: hidden;
  padding-top: 46.2%;
}

@media screen and (max-width: 767px) {
  .media02__img {
    width: 100%;
    position: relative;
    top: 0;
    padding-top: 62.4%;
    margin-bottom: 20px;
  }
}

.media02__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* IE対策 */
  font-family: 'object-fit: cover;';
}

.media02__text-area {
  position: relative;
  margin-left: auto;
  width: 509px;
  background-color: rgba(255, 255, 255, .9);
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, .08);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, .08);
  padding: 40px;
}

@media screen and (max-width: 1080px) {
  .media02__text-area {
    top: 35%;
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .media02__text-area {
    top: 0;
    width: 100%;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
  }
}

.media02__text-area-inner {
  position: relative;
}

.media02__no {
  position: absolute;
  top: -175px;
  right: -40px;
  color: #97BFD2;
  font-family: "Roboto", sans-serif;
  font-size: 160px;
  font-size: 16rem;
  font-weight: 500;
  line-height: 1;
}

@media screen and (max-width: 1080px) {
  .media02__no {
    font-size: 14rem;
    top: -150px;
  }
}

@media screen and (max-width: 767px) {
  .media02__no {
    position: relative;
    top: 0;
    right: 0;
    font-size: 8rem;
    text-align: center;
    margin-bottom: 18px;
  }
}

.media02__no span {
  display: block;
  font-size: 20px;
  font-size: 2rem;
  text-transform: capitalize;
  letter-spacing: 0.18em;
  text-align: center;
  margin-bottom: -10px;
}

@media screen and (max-width: 767px) {
  .media02__no span {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
}

.media02__title {
  color: #007F8E;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 34px;
}

@media screen and (max-width: 1080px) {
  .media02__title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .media02__title {
    font-size: 1.8rem;
    letter-spacing: 0.12em;
  }
}

.media02__text {
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .media02__text {
    font-size: 1.4rem;
  }
}

.media02--reverse .media02__img {
  right: 0;
}

.media02--reverse .media02__text-area {
  margin-right: auto;
  margin-left: 0;
}

.media02--reverse .media02__no {
  right: auto;
  left: -40px;
}

@media screen and (max-width: 767px) {
  .media02--reverse .media02__no {
    left: 0;
  }
}

.name__item {
  display: inline-block;
  min-width: 400px;
  border-bottom: 1px solid #222;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  line-height: 1.2;
  padding-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .name__item {
    display: block;
    min-width: 200px;
    border-bottom: none;
    font-size: 2rem;
  }
}

.name__item span {
  display: inline-block;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  margin: 0 30px;
}

@media screen and (max-width: 767px) {
  .name__item span {
    display: block;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    font-size: 1.1rem;
    margin-left: 0;
    margin: 8px 0 0;
  }
}

.name__sub-item-wrap {
  padding-top: 12px;
}

@media screen and (max-width: 767px) {
  .name__sub-item-wrap {
    display: inline-block;
    border-top: 1px solid #222;
    min-width: 200px;
    padding-top: 6px;
  }
}

.name__sub-item {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .name__sub-item {
    display: inline-block;
    font-size: 1.1rem;
  }
}

.name__sub-item:not(:last-child) {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .name__sub-item:not(:last-child) {
    margin-right: 8px;
    margin-bottom: 0;
  }
}

.name__sub-item-attention {
  font-size: 10px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 12px;
}

@media screen and (max-width: 767px) {
  .name__sub-item-attention {
    margin-right: 4px;
  }
}

.name--color01 {
  color: #fff;
}

.name--color01 .name__item {
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 767px) {
  .name--color01 .name__item {
    border-bottom: none;
  }
}

@media screen and (max-width: 767px) {
  .name--color01 .name__sub-item-wrap {
    border-top: 1px solid #fff;
  }
}

.recommend {
  background-color: #EEF8F9;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .recommend {
    padding: 40px 0;
  }
}

@media screen and (max-width: 360px) {
  .recommend__inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.recommend__item-wrap {
  max-width: 707px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .recommend__item-wrap {
    max-width: 480px;
  }
}

.recommend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.recommend-item:hover .recommend-item__text::after {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.recommend-item__img {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50.212%;
          flex: 0 0 50.212%;
  overflow: hidden;
  padding-top: 38%;
}

@media screen and (max-width: 767px) {
  .recommend-item__img {
    padding-top: 37.62%;
  }
}

@media screen and (max-width: 360px) {
  .recommend-item__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 46%;
            flex: 0 0 46%;
  }
}

.recommend-item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* IE対策 */
  font-family: 'object-fit: cover;';
}

.recommend-item__text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, .08);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, .08);
  padding: 21px 17px;
}

@media screen and (max-width: 320px) {
  .recommend-item__text-area {
    padding: 20px 2px;
  }
}

.recommend-item__title {
  display: inline-block;
  border: 1px solid #007F8E;
  color: #007F8E;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 11px;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .recommend-item__title {
    font-size: 1.1rem;
    padding: 1px 10px;
    margin-bottom: 4px;
  }
}

@media screen and (max-width: 767px) and (max-width: 320px) {
  .recommend-item__title {
    font-size: 1rem;
    padding: 1px 6px;
  }
}

.recommend-item__text {
  color: #007F8E;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .recommend-item__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.recommend-item__text::after {
  content: '';
  display: block;
  width: 60px;
  height: 7px;
  background-image: url(/recruit/assets/images/common/icon_arrow_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 30px auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .recommend-item__text::after {
    margin: 4px auto 0;
  }
}

.recommend-item__text span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .recommend-item__text span {
    font-size: 1.2rem;
  }
}

.recommend--flex .recommend__outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .recommend--flex .recommend__outer {
    display: block;
  }
}

.recommend--flex .recommend__item-wrap {
  width: calc(50% - 20px);
  margin: 0;
}

@media screen and (max-width: 767px) {
  .recommend--flex .recommend__item-wrap {
    width: 100%;
    margin: 0 auto;
  }
  .recommend--flex .recommend__item-wrap:not(:last-child) {
    margin-bottom: 20px;
  }
}

.recommend--flex .recommend-item__text-area {
  padding: 25px 17px;
}

@media screen and (max-width: 767px) {
  .recommend--flex .recommend-item__text-area {
    padding: 20px 4px;
  }
}

.recommend--flex .recommend-item .recommend-item__img {
  padding-top: 34.62%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 46.2%;
          flex: 0 0 46.2%;
}

.recommend--flex .recommend-item .recommend-item__title {
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .recommend--flex .recommend-item .recommend-item__title {
    margin-bottom: 4px;
  }
}

@media screen and (max-width: 1080px) {
  .recommend--flex .recommend-item .recommend-item__text {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .recommend--flex .recommend-item .recommend-item__text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 320px) {
  .recommend--flex .recommend-item .recommend-item__text {
    font-size: 1.4rem;
  }
}

.recommend--flex .recommend-item .recommend-item__text::after {
  margin: 20px auto 0;
}

@media screen and (max-width: 767px) {
  .recommend--flex .recommend-item .recommend-item__text::after {
    margin: 12px auto 0;
  }
}

/* -------------------------------------
        section-title
-----------------------------------------*/
.section-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section-title {
  position: relative;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 14px;
}

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2rem;
    padding-bottom: 12px;
  }
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, right top, left top, from(#009FB8), to(#00C99A));
  background: linear-gradient(to left, #009FB8, #00C99A);
}

@media screen and (max-width: 767px) {
  .section-title::after {
    bottom: 0px;
    height: 2px;
  }
}

.section-title--sz-s {
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .section-title--sz-s {
    font-size: 2rem;
  }
}

.section-title02 {
  color: #007F8E;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-title02 {
    font-size: 2.4rem;
  }
}

.section-title03 {
  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;
  letter-spacing: 0.06em;
  color: #007F8E;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .section-title03 {
    font-size: 2.4rem;
  }
}

.section-title03::before, .section-title03::after {
  content: '';
  width: 32px;
  height: 1px;
  background: #007F8E;
}

@media screen and (max-width: 767px) {
  .section-title03::before, .section-title03::after {
    width: 16px;
  }
}

.section-title03::before {
  margin-right: 24px;
}

@media screen and (max-width: 767px) {
  .section-title03::before {
    margin-right: 14px;
  }
}

.section-title03::after {
  margin-left: 24px;
}

@media screen and (max-width: 767px) {
  .section-title03::after {
    margin-left: 14px;
  }
}

.section-title04 {
  color: #333;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .section-title04 {
    font-size: 2rem;
  }
}

.section-title04__no {
  display: inline-block;
  position: relative;
  color: #007F8E;
  font-size: 60px;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  padding-bottom: 10px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .section-title04__no {
    font-size: 4rem;
  }
}

.section-title04__no::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: -webkit-gradient(linear, right top, left top, from(#009FB8), to(#00C99A));
  background: linear-gradient(to left, #009FB8, #00C99A);
}

@media screen and (max-width: 767px) {
  .section-title04__no::after {
    height: 2px;
  }
}

/* -------------------------------------
        section
-----------------------------------------*/
.section {
  padding: 140px 0;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 56px 0;
  }
}

/* -------------------------------------
        under-mv
-----------------------------------------*/
.under-mv {
  position: relative;
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .under-mv {
    margin-top: 50px;
  }
}

.under-mv__title-wrap {
  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;
  background-color: #EEF8F9;
  text-align: center;
  height: 240px;
  padding: 10px 24px;
}

@media screen and (max-width: 767px) {
  .under-mv__title-wrap {
    height: 120px;
    padding: 43px 20px;
  }
}

.under-mv__title {
  color: #333;
  font-size: 46px;
  font-size: 4.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 767px) {
  .under-mv__title {
    font-size: 2.2rem;
    letter-spacing: 0;
  }
}

/* -------------------------------------
       下層共通MV
-----------------------------------------*/
.under-mv02 {
  position: relative;
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .under-mv02 {
    margin-top: 50px;
  }
}

.under-mv02__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 50vw;
  max-height: 800px;
  min-height: 600px;
  background: url(/recruit/assets/images/common/topmessage_mv.jpg) no-repeat 50% 50%;
  background-size: cover;
  z-index: 1;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .under-mv02__inner {
    max-width: 100%;
    min-height: 375px;
    margin-bottom: 8px;
  }
}

.under-mv02__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 25px;
  padding-right: 25px;
}

@media screen and (max-width: 767px) {
  .under-mv02__bottom {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.message-mv__inner {
  background-image: -webkit-gradient(linear, left top, right top, from(white), color-stop(54%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0))), url(/recruit/assets/images/common/message_mv.jpg);
  background-image: linear-gradient(to right, white, rgba(255, 255, 255, 0) 54%, rgba(255, 255, 255, 0)), url(/recruit/assets/images/common/message_mv.jpg);
  background-position: 50% 0%;
}

@media screen and (max-width: 767px) {
  .message-mv__inner {
    background-position: 70% 50%;
  }
}

@media screen and (max-width: 500px) {
  .message-mv__inner {
    background-image: -webkit-gradient(linear, left top, right top, from(white), color-stop(70%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0))), url(/recruit/assets/images/common/message_mv-sp.jpg);
    background-image: linear-gradient(to right, white, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 0)), url(/recruit/assets/images/common/message_mv-sp.jpg);
    background-position: 80% 50%;
  }
}

.project-mv__inner {
  background-image: -webkit-gradient(linear, left bottom, left top, from(black), color-stop(37%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0))), url(/recruit/assets/images/common/project_mv.jpg);
  background-image: linear-gradient(to top, black, rgba(0, 0, 0, 0) 37%, rgba(0, 0, 0, 0)), url(/recruit/assets/images/common/project_mv.jpg);
}

.people-mv__inner {
  position: relative;
  z-index: 1;
}

.people-mv__inner--01 {
  background-image: url(/recruit/assets/images/common/people_mv01.jpg);
}

@media screen and (max-width: 767px) {
  .people-mv__inner--01 {
    background-position: 60% 50%;
  }
}

.people-mv__inner--02 {
  background-image: url(/recruit/assets/images/common/people_mv02.jpg);
}

@media screen and (max-width: 767px) {
  .people-mv__inner--02 {
    background-position: 60% 50%;
  }
}

@media screen and (max-width: 360px) {
  .people-mv__inner--02 {
    background-position: 65% 50%;
  }
}

.people-mv__inner::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(/recruit/assets/images/common/people-mv_cover-pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 10;
}

@media screen and (max-width: 1360px) {
  .people-mv__inner::before {
    width: 80%;
  }
}

@media screen and (max-width: 500px) {
  .people-mv__inner::before {
    background-image: url(/recruit/assets/images/common/people_mv_cover-sp.png);
    width: 100%;
  }
}

@media screen and (max-width: 360px) {
  .people-mv__inner::before {
    left: -10%;
  }
}

.business-close {
  padding: 120px 0;
  background: url(/recruit/assets/images/common/business-close_bg.jpg) no-repeat 94% 50%;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .business-close {
    padding: 60px 0;
    background-image: url(/recruit/assets/images/common/business-close_bg-sp.jpg);
    background-position: 94% 50%;
  }
}

.business-close__inner {
  max-width: 945px;
}

.business-close__text-area {
  background-color: rgba(255, 255, 255, .9);
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, .08);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, .08);
  padding: 80px 94px;
}

@media screen and (max-width: 767px) {
  .business-close__text-area {
    padding: 40px 20px;
  }
}

.business-close__title {
  color: #007F8E;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .business-close__title {
    font-size: 1.6rem;
    line-height: 2;
    margin-bottom: 32px;
  }
}

.business-close__text {
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .business-close__text {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
  }
}

.business-intro {
  padding: 116px 0 60px;
}

@media screen and (max-width: 767px) {
  .business-intro {
    padding: 54px 0 80px;
  }
}

.business-intro__text {
  margin-bottom: 54px;
}

@media screen and (max-width: 767px) {
  .business-intro__text {
    margin-bottom: 40px;
  }
}

.business-intro__logo {
  max-width: 276px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .business-intro__logo {
    max-width: 197px;
  }
}

.business-label {
  background-color: #EEF8F9;
  padding: 80px 0;
}

@media screen and (max-width: 767px) {
  .business-label {
    padding: 40px 0;
  }
}

.business-label__inner {
  max-width: 948px;
}

.business-label__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .business-label__items {
    display: block;
  }
}

.business-label__item {
  width: calc(50% - 18px);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .business-label__item {
    width: 100%;
  }
  .business-label__item:not(:last-child) {
    margin-bottom: 16px;
  }
}

.business01 {
  padding: 160px 0;
}

@media screen and (max-width: 767px) {
  .business01 {
    padding: 80px 0;
  }
}

.business02 {
  padding: 160px 0 120px;
}

@media screen and (max-width: 767px) {
  .business02 {
    padding: 80px 0;
  }
}

.business--bg-color {
  background-color: #EEF8F9;
}

.business__head {
  max-width: 894px;
  margin: 0 auto 314px;
}

@media screen and (max-width: 767px) {
  .business__head {
    margin: 0 auto 56px;
  }
}

.business__title {
  margin-bottom: 58px;
}

@media screen and (max-width: 767px) {
  .business__title {
    margin-bottom: 40px;
  }
}

.business__lead {
  color: #333;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: center;
  margin-bottom: 54px;
}

@media screen and (max-width: 767px) {
  .business__lead {
    font-size: 2rem;
    margin-bottom: 36px;
  }
}

.business__text {
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .business__text {
    font-size: 1.4rem;
  }
}

.business__item:not(:last-child) {
  margin-bottom: 314px;
}

@media screen and (max-width: 767px) {
  .business__item:not(:last-child) {
    margin-bottom: 54px;
  }
}

.faq {
  padding: 85px 0 65px;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 36px 0 80px;
  }
}

.faq__title {
  cursor: pointer;
  margin-bottom: 97px;
}

@media screen and (max-width: 767px) {
  .faq__title {
    margin-bottom: 54px;
  }
}

.faq-item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-size: 2rem;
  padding: 28px 80px 28px 12px;
}

@media screen and (max-width: 767px) {
  .faq-item__title {
    font-size: 1.4rem;
    padding: 24px 40px 14px 3px;
  }
}

.faq-item__title span::before {
  display: block;
  content: "Q.";
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 300;
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .faq-item__title span::before {
    margin-top: 0;
    font-size: 2.4rem;
    margin-right: 10px;
  }
}

.faq-item__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 80px 18px 6px;
}

@media screen and (max-width: 767px) {
  .faq-item__contents {
    padding: 0 0 24px 3px;
  }
}

.faq-item__contents::before {
  content: "A.";
  color: #4B4B4B;
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 300;
  margin-top: -10px;
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .faq-item__contents::before {
    font-size: 2.4rem;
    margin-top: 0;
    margin-right: 10px;
  }
}

.faq-item__text {
  color: #4B4B4B;
  font-weight: 500;
}

.faq-item__text:not(:last-child) {
  margin-bottom: 26px;
}

@media screen and (max-width: 767px) {
  .faq-item__text:not(:last-child) {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 767px) {
  .faq-item__text {
    font-size: 1.4rem;
    font-weight: 400;
  }
}

.future-intro {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .future-intro {
    padding: 60px 0 80px;
  }
}

.future {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .future {
    padding: 60px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .future:nth-child(even) {
    background-color: #EEF8F9;
  }
}

.future--bg {
  position: relative;
  padding: 0 0 80px;
}

@media screen and (max-width: 767px) {
  .future--bg {
    padding: 60px 0;
  }
}

.future--bg::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72.125%;
  max-width: 1300px;
  height: 586px;
  background-color: #EEF8F9;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .future--bg::before {
    content: none;
  }
}

.future--bg-reverse::before {
  left: auto;
  right: 0;
}

.future__content {
  position: relative;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .future__content {
    margin-bottom: 30px;
  }
}

.future__img {
  width: 74.2%;
  max-width: 801px;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .future__img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
}

.future__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-46%);
          transform: translateY(-46%);
  left: 0;
  width: 512px;
  height: 242px;
  background-color: rgba(255, 255, 255, .9);
  -webkit-box-shadow: 0px 3px 20px rgba(0, 0, 0, .08);
          box-shadow: 0px 3px 20px rgba(0, 0, 0, .08);
  padding: 35px 36px;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .future__heading {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    width: 100%;
    height: auto;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0;
  }
}

.future__heading-inner {
  position: relative;
}

.future__no-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .future__no-sp {
    display: block;
    max-width: 148px;
    width: 100%;
    background-color: #2DB4AF;
    color: #FFF;
    font-family: "Roboto", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;
    padding: 2px 20px;
    margin: 0 auto 20px;
    text-transform: uppercase;
    white-space: nowrap;
  }
}

.future__no {
  position: absolute;
  top: -21px;
  left: 0;
  background-color: #2DB4AF;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 5px 24px;
}

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

.future__title {
  color: #007F8E;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .future__title {
    font-size: 1.8rem;
    letter-spacing: 0.12em;
    line-height: 1.6;
  }
}

.future__text {
  max-width: 920px;
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .future__text {
    font-size: 1.4rem;
  }
}

.future--reverse .future__img {
  margin-left: 0;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .future--reverse .future__img {
    margin-right: 0;
  }
}

.future--reverse .future__heading {
  left: auto;
  right: 0;
  width: 512px;
}

@media screen and (max-width: 767px) {
  .future--reverse .future__heading {
    right: auto;
    width: 100%;
  }
}

.message-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .message-mv__inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .message-mv__text-area {
    margin-bottom: 20px;
  }
}

.message-mv__catchcopy-wrap {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .message-mv__catchcopy-wrap {
    margin-bottom: 108px;
  }
}

.message-mv__catchcopy-title {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .message-mv__catchcopy-title {
    margin-bottom: 10px;
  }
}

.message-mv__catchcopy {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 60px;
  font-size: 6rem;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .message-mv__catchcopy {
    font-size: 2rem;
    line-height: 2;
  }
}

.message {
  padding: 100px 0 200px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .message {
    padding: 60px 0 80px;
  }
}

.message__item {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .message__item {
    padding: 80px 0;
  }
}

.message__item:first-child {
  padding-top: 0;
}

.message__item:last-child {
  padding-bottom: 0;
}

.message-item__img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .message-item__img-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 40px;
  }
}

.message-item__img {
  width: 64vw;
  margin-right: auto;
  margin-left: calc(-50vw - -50%);
}

@media all and (-ms-high-contrast: none) {
  .message-item__img {
    min-height: 0%;
  }
}

.message-item__img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .message-item__img {
    width: 100%;
    margin: 0 auto;
  }
}

.message-item__title {
  width: 42%;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 52px;
  font-size: 5.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-left: -56px;
}

@media screen and (max-width: 1080px) {
  .message-item__title {
    font-size: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .message-item__title {
    width: 74%;
    font-size: 2.4rem;
    line-height: 2;
    text-align: center;
    margin: 0 0 32px 0;
  }
}

.message-item__text {
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.message-item--reverse .message-item__img-area {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .message-item--reverse .message-item__img-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.message-item--reverse .message-item__img-area .message-item__img {
  width: calc(64vw - 56px);
  margin-left: auto;
  margin-right: calc(-50vw - -50%);
}

@media screen and (max-width: 767px) {
  .message-item--reverse .message-item__img-area .message-item__img {
    width: 100%;
    margin: 0 auto;
  }
}

.message-item--reverse .message-item__img-area .message-item__img img {
  width: 100%;
}

.message-item--reverse .message-item__img-area .message-item__title {
  margin-left: auto;
  margin-right: -300px;
}

@media screen and (max-width: 1360px) {
  .message-item--reverse .message-item__img-area .message-item__title {
    margin-right: -340px;
  }
}

@media screen and (max-width: 1080px) {
  .message-item--reverse .message-item__img-area .message-item__title {
    margin-right: -280px;
  }
}

@media screen and (max-width: 767px) {
  .message-item--reverse .message-item__img-area .message-item__title {
    margin: 0 0 32px 0;
  }
}

.message-item--bg-color {
  background-color: #EEF8F9;
}

.minutes-close {
  padding: 110px 0;
  background: -webkit-gradient(linear, left top, right top, from(black), color-stop(72%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0))), url(/recruit/assets/images/common/minutes-close_bg.jpg) no-repeat 50% 0;
  background: linear-gradient(to right, black, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0)), url(/recruit/assets/images/common/minutes-close_bg.jpg) no-repeat 50% 0;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .minutes-close {
    padding: 60px 0;
    background-position: 60% 0;
  }
}

.minutes-close__inner {
  max-width: 1330px;
}

.minutes-close__text {
  color: #fff;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 2.6;
}

@media screen and (max-width: 767px) {
  .minutes-close__text {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.minutes-close__text:not(:last-child) {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .minutes-close__text:not(:last-child) {
    margin-bottom: 46px;
  }
}

.minutes--bg-color {
  background-color: #EEF8F9;
}

.minutes__text {
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .minutes__text {
    font-size: 1.4rem;
  }
}

.minutes__item-wrap {
  max-width: 707px;
  margin: 0 auto;
}

.minutes-bottom--s {
  max-width: 894px;
  margin: 0 auto;
}

.minutes-bottom__text {
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .minutes-bottom__text {
    font-size: 1.4rem;
  }
}

.minutes-bottom__text:not(:last-child) {
  margin-bottom: 26px;
}

@media screen and (max-width: 767px) {
  .minutes-bottom__text:not(:last-child) {
    margin-bottom: 24px;
  }
}

.minutes-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.minutes-title {
  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;
  position: relative;
  height: 100px;
  color: #007F8E;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-align: center;
  padding: 0 50px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .minutes-title {
    width: 100%;
    height: 120px;
    font-size: 2rem;
    padding: 0 20px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .minutes-title--sp-s {
    width: 62%;
  }
}

.minutes-title::before, .minutes-title::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 100%;
}

.minutes-title::before {
  border-left: solid 1px #007F8E;
  border-top: solid 1px #007F8E;
  border-bottom: solid 1px #007F8E;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.minutes-title::after {
  border-right: solid 1px #007F8E;
  border-top: solid 1px #007F8E;
  border-bottom: solid 1px #007F8E;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

@media screen and (max-width: 767px) {
  .mb-text1 {
    height: 80px;
    margin-bottom: 60px;
  }
}

.minutes-item {
  position: relative;
}

.minutes-item__img {
  position: relative;
  overflow: hidden;
  padding-top: 62.72%;
}

.minutes-item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* IE対策 */
  font-family: 'object-fit: cover;';
}

.minutes-item__text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 80%;
  background-color: rgba(255, 255, 255, .9);
  text-align: right;
  padding: 24px;
}

@media screen and (max-width: 767px) {
  .minutes-item__text-area {
    max-width: 94%;
    padding: 16px;
  }
}

@media screen and (max-width: 320px) {
  .minutes-item__text-area {
    max-width: 98%;
  }
}

.minutes-item__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #007F8E;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .minutes-item__year {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}

.minutes-item__year::before {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #007F8E;
  margin-right: 20px;
}

.minutes-item__text {
  color: rgba(0, 0, 0, .8);
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .minutes-item__text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 320px) {
  .minutes-item__text {
    font-size: 1.3rem;
  }
}

.minutes-main-item {
  width: calc(50% - 18px);
}

@media screen and (max-width: 767px) {
  .minutes-main-item {
    width: 100%;
  }
}

.minutes-main-item__img {
  position: relative;
  overflow: hidden;
  padding-top: 62.65%;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .minutes-main-item__img {
    margin-bottom: 20px;
  }
}

.minutes-main-item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* IE対策 */
  font-family: 'object-fit: cover;';
}

.minutes-main-item__title {
  color: #007F8E;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.428;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .minutes-main-item__title {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}

.minutes-main-item__text {
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .minutes-main-item__text {
    font-size: 1.4rem;
  }
}

.minutes-sub-item {
  width: calc(33.3333% - 24px);
}

@media screen and (max-width: 767px) {
  .minutes-sub-item {
    width: 100%;
  }
}

.minutes-sub-item__img {
  position: relative;
  overflow: hidden;
  padding-top: 62.51%;
  margin-bottom: 12px;
}

.minutes-sub-item__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* IE対策 */
  font-family: 'object-fit: cover;';
}

.minutes-sub-item__title {
  color: #333;
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.428;
  text-align: center;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .minutes-sub-item__title {
    font-size: 1.6rem;
  }
}

.minutes-sub-item__text {
  color: #333;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .minutes-sub-item__text {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
  }
}

.minutes01 {
  padding: 114px 0 160px;
}

@media screen and (max-width: 767px) {
  .minutes01 {
    padding: 60px 0 80px;
  }
}

.minutes01__head {
  max-width: 894px;
  margin: 0 auto 80px;
}

@media screen and (max-width: 767px) {
  .minutes01__head {
    margin: 0 auto 60px;
  }
}

.minutes01__title {
  margin-bottom: 54px;
}

@media screen and (max-width: 767px) {
  .minutes01__title {
    margin-bottom: 36px;
  }
}

.minutes01__item-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .minutes01__item-items {
    display: block;
    margin-bottom: 60px;
  }
}

.minutes01__item {
  width: calc(50% - 17px);
  margin-right: 34px;
}

.minutes01__item:not(:last-child) {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .minutes01__item:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .minutes01__item {
    width: 100%;
    margin-right: 0;
  }
}

.minutes01__item:nth-child(2n) {
  margin-right: 0;
}

.minutes01__item:nth-child(2n), .minutes01__item:nth-child(4n) {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

@media screen and (max-width: 767px) {
  .minutes01__item:nth-child(2n), .minutes01__item:nth-child(4n) {
    -webkit-transform: none;
            transform: none;
  }
}

.minutes02 {
  padding: 154px 0;
}

@media screen and (max-width: 767px) {
  .minutes02 {
    padding: 80px 0;
  }
}

.minutes02__head {
  max-width: 894px;
  margin: 0 auto 120px;
}

@media screen and (max-width: 767px) {
  .minutes02__head {
    margin: 0 auto 76px;
  }
}

.minutes02__title {
  margin-bottom: 54px;
}

@media screen and (max-width: 767px) {
  .minutes02__title {
    margin-bottom: 36px;
  }
}

.minutes02__main-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 116px;
}

@media screen and (max-width: 767px) {
  .minutes02__main-items {
    display: block;
    margin-bottom: 80px;
  }
}

.minutes02__main-item:not(:last-child) {
  margin-right: 36px;
}

@media screen and (max-width: 767px) {
  .minutes02__main-item:not(:last-child) {
    margin: 0 0 32px 0;
  }
}

.minutes02__sub-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .minutes02__sub-items {
    display: block;
  }
}

.minutes02__sub-item {
  margin: 0 36px 40px 0;
}

@media screen and (max-width: 767px) {
  .minutes02__sub-item {
    margin: 0 0 36px 0;
  }
}

.minutes02__sub-item:nth-child(3n) {
  margin-right: 0;
}

.minutes02__sub-item:last-child {
  margin-right: 0;
}

.minutes03 {
  padding: 160px 0 154px;
}

@media screen and (max-width: 767px) {
  .minutes03 {
    padding: 80px 0;
  }
}

.minutes03__head {
  max-width: 894px;
  margin: 0 auto 114px;
}

@media screen and (max-width: 767px) {
  .minutes03__head {
    margin: 0 auto 80px;
  }
}

.minutes03__content {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .minutes03__content {
    margin-bottom: 76px;
  }
}

.minutes03__main-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .minutes03__main-items {
    display: block;
  }
}

.minutes03__main-items .minutes-main-item__title {
  color: #333;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .minutes03__main-items .minutes-main-item__title {
    font-size: 1.6rem;
  }
}

.minutes03__main-item:not(:last-child) {
  margin-right: 36px;
}

@media screen and (max-width: 767px) {
  .minutes03__main-item:not(:last-child) {
    margin: 0 0 40px 0;
  }
}

.minutes03__sub-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.minutes03__sub-item {
  margin: 0 36px 40px 0;
}

@media screen and (max-width: 767px) {
  .minutes03__sub-item {
    margin: 0 0 40px 0;
  }
}

.minutes03__sub-item:nth-child(3n) {
  margin-right: 0;
}

.minutes03__sub-item:last-child {
  margin-right: 0;
}

.interview01 {
  padding: 100px 0 120px;
}

@media screen and (max-width: 767px) {
  .interview01 {
    padding: 60px 0 120px;
  }
}

.interview01__title {
  margin-bottom: 40px;
}

.interview01__text {
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .interview01__text {
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
}

.interview01__media:not(:last-child) {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .interview01__media:not(:last-child) {
    margin-bottom: 60px;
  }
}

.interview02 {
  padding: 0 0 120px;
}

@media screen and (max-width: 767px) {
  .interview02 {
    padding: 0 0 80px;
  }
}

.interview02__title {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .interview02__title {
    margin-bottom: 40px;
  }
}

.interview02__text {
  color: #333;
  letter-spacing: 0.04em;
  margin-bottom: 80px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .interview02__text {
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
}

.interview02__img {
  max-width: 702px;
  margin: 0 auto;
}

.interview02__img img {
  margin: 0 auto;
}

.people-mv__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .people-mv__inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.people-mv__catchcopy-title {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .people-mv__catchcopy-title {
    margin-bottom: 16px;
  }
}

.people-mv__text-area {
  margin-left: 10%;
  z-index: 10;
}

@media screen and (max-width: 1360px) {
  .people-mv__text-area {
    margin-left: 6%;
  }
}

@media screen and (max-width: 767px) {
  .people-mv__text-area {
    margin: 20px;
  }
}

.people-mv__catchcopy-wrap {
  margin-bottom: 64px;
}

.people-mv__catchcopy {
  font-size: 32px;
  font-size: 3.2rem;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .people-mv__catchcopy {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 320px) {
  .people-mv__catchcopy {
    font-size: 1.4rem;
  }
}

.people-mv__catchcopy:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .people-mv__catchcopy:not(:last-child) {
    margin-bottom: 8px;
  }
}

.people-mv__catchcopy span {
  display: inline-block;
  background-color: #fff;
  padding: 0 10px;
}

@media screen and (max-width: 767px) {
  .people-mv__catchcopy span {
    padding: 0 6px;
  }
}

.project-member {
  padding: 126px 0 0 0;
}

@media screen and (max-width: 767px) {
  .project-member {
    padding: 74px 0 0 0;
  }
}

.project-member__inner {
  max-width: 758px;
}

.project-member__box {
  position: relative;
  background-color: #EEF8F9;
  padding: 52px 57px 40px;
}

@media screen and (max-width: 767px) {
  .project-member__box {
    padding: 35px 20px 20px;
  }
}

.project-member__media {
  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;
}

@media screen and (max-width: 767px) {
  .project-member__media {
    display: block;
    max-width: 360px;
    margin: 0 auto;
  }
}

.project-member__title {
  position: absolute;
  top: -26px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  color: #007F8E;
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .project-member__title {
    font-size: 2rem;
    top: -15px;
  }
}

.project-member__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 243px;
  margin-right: 36px;
}

@media screen and (max-width: 767px) {
  .project-member__img {
    max-width: none;
    margin: 0 auto 20px;
  }
}

.project-member__img img {
  width: 100%;
}

.project-member__text-area {
  color: #333;
}

.project-member__name-wrap {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .project-member__name-wrap {
    margin-bottom: 16px;
  }
}

.project-member__position {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  line-height: 2;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .project-member__position {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }
}

.project-member__name {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .project-member__name {
    font-size: 1.8rem;
  }
}

.project-member__kana {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 767px) {
  .project-member__kana {
    font-size: 1.1rem;
  }
}

.project-mv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.project-mv .l-inner {
  margin-top: auto;
}

.project-mv__text-area {
  color: #fff;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .project-mv__text-area {
    margin-bottom: 22px;
  }
}

.project-mv__catchcopy-title {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .project-mv__catchcopy-title {
    margin-bottom: 12px;
  }
}

.project-mv__catchcopy-wrap {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .project-mv__catchcopy-wrap {
    margin-bottom: 12px;
  }
}

.project-mv__catchcopy {
  font-size: 32px;
  font-size: 3.2rem;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .project-mv__catchcopy {
    font-size: 1.6rem;
  }
}

.project-mv__catchcopy:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .project-mv__catchcopy:not(:last-child) {
    margin-bottom: 8px;
  }
}

.project-mv__catchcopy span {
  display: inline-block;
  background-color: #fff;
  padding: 0 10px;
}

.project-mv__catchcopy span:not(:last-child) {
  margin-bottom: 8px;
}

@media screen and (max-width: 767px) {
  .project-mv__catchcopy span {
    padding: 0 6px;
  }
}

.project-mv__text {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .project-mv__text {
    font-size: 1.1rem;
  }
}

.story {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .story {
    padding: 80px 0;
  }
}

.story__label-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.story__label {
  display: inline-block;
  border: 1px solid #007F8E;
  color: #007F8E;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 30px;
}

@media screen and (max-width: 767px) {
  .story__label {
    font-size: 1.4rem;
    padding: 6px 24px;
  }
}

.story__title {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .story__title {
    margin-bottom: 40px;
  }
}

.story__img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .story__img-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.story__img-box > .story__img {
  width: calc(50% - 20px);
}

@media screen and (max-width: 767px) {
  .story__img-box > .story__img {
    width: 100%;
    min-height: 100%;
  }
}

.story__img {
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .story__img {
    margin-bottom: 20px;
  }
}

.story__img img {
  width: 100%;
}

.story__text {
  color: #333;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .story__text {
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
}

.story__media01:not(:last-child) {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .story__media01:not(:last-child) {
    margin-bottom: 60px;
  }
}

.story--bg-color {
  background-color: #EEF8F9;
}

.requirement__title {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .requirement__title {
    margin-bottom: 40px;
  }
}

.requirement__list {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .requirement__list {
    margin-bottom: 40px;
  }
}

.requirement__item:first-child .requirement-item__title {
  padding-top: 0;
}

.requirement .horizontal-table {
  border-bottom: none;
}

.requirement-item__title {
  padding: 60px 0px 12px 0;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .requirement-item__title {
    padding: 40px 0 16px 0;
  }
}

.requirement-item__title-item {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-right: 40px;
}

.requirement-item__title-item::before, .requirement-item__title-item::after {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 12px;
  width: 21px;
  height: 2px;
  background: #01BDB6;
}

@media screen and (max-width: 767px) {
  .requirement-item__title-item::before, .requirement-item__title-item::after {
    right: 0;
  }
}

.requirement-item__title-item::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.requirement-item__title-item.is-open::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.requirement-item__body {
  display: none;
}

.engineer {
  padding: 0 0 80px 0;
}

@media screen and (max-width: 767px) {
  .engineer {
    padding: 0 0 50px 0;
  }
}

.corporate {
  padding: 80px 0 160px;
}

@media screen and (max-width: 767px) {
  .corporate {
    padding: 50px 0 80px;
  }
}

.requirement__btn {
  width: 100%;
  max-width: 397px;
  margin: 0 auto;
}

/* -------------------------------------
        top-footer
-----------------------------------------*/
.top-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.top-footer__copylight {
  color: #fff;
  font-size: 10px;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  text-align: center;
  padding: 18px 25px;
}

/* -------------------------------------
        トップMVセクション
-----------------------------------------*/
.top-mv {
  position: relative;
  width: 100%;
  height: calc(100vh - 90px);
  background: url(/recruit/assets/images/common/mv_bg.jpg) no-repeat center center;
  background-size: cover;
  margin-top: 90px;
}

@media screen and (max-width: 767px) {
  .top-mv {
    margin-top: 48px;
    height: calc(100vh - 48px);
  }
}

.top-mv__catchcopy-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding-right: 25px;
  padding-left: 25px;
}

.top-mv__catchcopy-wrap span {
  display: block;
}

@media screen and (max-width: 767px) {
  .top-mv__catchcopy-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.top-mv__catchcopy {
  color: #212E5D;
  font-size: 62px;
  font-size: 6.2rem;
  font-family: "Noto Serif JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-shadow: 0px 0px 6px #FFF;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .top-mv__catchcopy {
    font-size: 7vw;
    line-height: 1.5;
  }
}

@media screen and (max-width: 500px) {
  .top-mv__catchcopy {
    font-size: 3.2rem;
    font-size: calc(-3.52632px + 9.47368vw);
  }
}

@media screen and (max-width: 320px) {
  .top-mv__catchcopy {
    font-size: 2.2rem;
  }
}

.top-mv__sub-catchcopy {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Roboto Condensed", sans-serif;
  color: #000;
}

@media screen and (max-width: 767px) {
  .top-mv__sub-catchcopy {
    font-size: 1.2rem;
  }
}

.top-mv__scrolldown {
  position: absolute;
  right: 48px;
  bottom: 140px;
  /*全体の高さ*/
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  /*高さ・位置・透過が変化して線が上から下に動く*/
}

@media screen and (max-width: 767px) {
  .top-mv__scrolldown {
    display: none;
  }
}

.top-mv__scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100px;
  background: #fff;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 80px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 80px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 80px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 80px;
    opacity: 0;
  }
}

.top-mv__scrolldown span {
  /*描画位置*/
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -40px;
  /*テキストの形状*/
  color: #eee;
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

@media all and (-ms-high-contrast: none) {
  .top-mv__scrolldown span {
    -webkit-transform: translateX(-20%);
            transform: translateX(-20%);
  }
}

.top-mv__copylight {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 17px;
  color: #fff;
  font-size: 10px;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  text-align: center;
  z-index: 10;
}

.welfare {
  padding-top: 120px;
}

@media screen and (max-width: 767px) {
  .welfare {
    padding-top: 55px;
  }
}

.welfare__main-title {
  color: #007F8E;
  font-size: 40px;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .welfare__main-title {
    font-size: 2.2rem;
  }
}

.welfare__title {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .welfare__title {
    margin-bottom: 40px;
  }
}

.holiday {
  padding: 84px 0 60px;
}

@media screen and (max-width: 767px) {
  .holiday {
    padding: 50px 0 40px;
  }
}

.insurance {
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .insurance {
    padding: 40px 0;
  }
}

.allowances {
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .allowances {
    padding: 40px 0;
  }
}

.system {
  padding: 60px 0 120px;
}

@media screen and (max-width: 767px) {
  .system {
    padding: 40px 0 80px;
  }
}

.work {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .work {
    padding: 60px 0 80px;
  }
}

.work__intro-text {
  margin-bottom: 110px;
}

@media screen and (max-width: 767px) {
  .work__intro-text {
    margin-bottom: 80px;
  }
}

.work__media:not(:last-child) {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .work__media:not(:last-child) {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 767px) {
  .sp-mb-12 {
    margin-bottom: 12px;
  }
}

.mb-24 {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .mb-24 {
    margin-bottom: 12px;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.width-100 {
  width: 100px;
}

@media screen and (max-width: 767px) {
  .width-100 {
    width: 60px;
  }
}

@media screen and (max-width: 767px) {
  .sp-l-spacing-1 {
    letter-spacing: 0.1em;
  }
}

@media screen and (max-width: 360px) {
  .sp-s-none {
    display: none;
  }
}
