@charset "UTF-8";
/* ===============================================
# reset
=============================================== */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

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

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

figure {
  margin: 0px;
}

input[type=radio],
input[type=checkbox] {
  opacity: 0;
  position: absolute;
}

input[type=checkbox]:focus + span::before {
  outline: 1px solid #9e9b9b;
  background-color: #F2F3F5;
}

input[type=radio]:focus + span {
  background-color: #f0f0f0; /* focus時の背景色 */
  border-radius: 4px;
}
input[type=radio]:focus + span::before {
  background-color: #e0e0e0; /* focus時のチェックボックス背景色 */
  border-color: #505050; /* focus時のボーダー色 */
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-wrap: break-word;
  padding-top: 100px;
}
@media (max-width: 767px) {
  body {
    padding-top: 64px;
    font-size: 14px;
  }
}
body.preload .wow {
  opacity: 0 !important;
}

[id] {
  scroll-margin-top: 100px;
}
@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 64px;
  }
}

/* ===============================================
# 共通パーツ
=============================================== */
section {
  padding-top: 96px;
  padding-bottom: 96px;
  position: sticky;
  z-index: 10;
}
@media (max-width: 767px) {
  section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.btn {
  background: linear-gradient(170deg, #1C2688, #009077);
  padding: 12px 24px;
  border-radius: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  color: #fff;
  letter-spacing: 1px;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .hidden-pc {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1247px) {
  .hidden-tab {
    display: none;
  }
}

@media (max-width: 767px) {
  .hidden-sp {
    display: none;
  }
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 1247px) {
  .inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.broadway {
  font-family: "Broadway", "Limelight", sans-serif;
}

.canvas {
  width: 1440px;
  margin: 0 auto;
  max-width: 100%;
}

.head {
  text-align: center;
  background: linear-gradient(170deg, #1C2688, #009077);
  font-size: clamp(20px, 6vw, 32px);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
@media (max-width: 767px) {
  .head {
    font-size: clamp(20px, 6vw, 24px);
  }
}

.head__sub {
  text-align: center;
  font-size: 16px;
  color: #B3B3B3;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .head__sub {
    font-size: 14px;
  }
}

table, td, th {
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

table {
  table-layout: auto;
}

.container {
  margin-top: 64px;
}
@media (max-width: 767px) {
  .container {
    margin-top: 40px;
  }
}

/* ===============================================
# building-list (SCSS)
=============================================== */
.building-list {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .building-list {
    margin-top: 16px;
  }
}
.building-list__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 24px;
}
.building-list__title {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), to(#cbaf4d)) 100%;
  background: linear-gradient(to bottom, transparent 60%, #cbaf4d) 100%;
  padding-left: 56px;
  line-height: 40px;
  font-size: 22px;
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  .building-list__title {
    font-size: 18px;
    padding-left: 48px;
  }
}
.building-list__title::before {
  content: "";
  background: url(https://www.jasmec.co.jp/img/icon/contact_t.png) center center/contain;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .building-list__title::before {
    width: 22px;
    height: 22px;
  }
}
.building-list__card {
  width: calc(25% - 18px);
  margin: 20px 0;
  border: 2px solid #1C2688;
  padding: 16px;
}
.building-list__card.premium {
  border-color: #006060;
}
.building-list__card.sirius {
  border-color: #B63C53;
}
@media (min-width: 1200px) {
  .building-list__card:not(:nth-child(4n+1)) {
    margin-left: 24px;
  }
}
@media (max-width: 1247px) {
  .building-list__card {
    width: calc(33.3% - 10.6666666667px);
  }
  .building-list__card:not(:nth-child(3n+1)) {
    margin-left: 16px;
  }
}
@media (max-width: 767px) {
  .building-list__card {
    width: calc(50% - 4px);
    margin-top: 8px;
    padding: 16px 4px;
  }
  .building-list__card:nth-child(2n) {
    margin-left: 8px;
  }
}

.building-card__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .building-card__title {
    font-size: 16px;
  }
}
.building-card__title .border {
  padding: 6px 4px;
  border-bottom: 2px solid #1C2688;
}
@media (max-width: 767px) {
  .building-card__title .border {
    padding: 2px 3px;
  }
}
.building-card__title .border.sirius {
  border-color: #B63C53;
}
.building-card__title .border.premium {
  border-color: #006060;
}
.building-card__tel {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
@media (max-width: 767px) {
  .building-card__tel {
    font-size: 16px;
  }
}
.building-card__tel a {
  display: block;
  position: relative;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .building-card__tel a {
    padding-left: 24px;
  }
}
.building-card__tel a:visited {
  color: #333;
}
.building-card__tel a::before {
  content: "";
  background: url(https://www.jasmec.co.jp/img/icon/guide-tel-icon.png) center center/cover;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .building-card__tel a::before {
    width: 18px;
    height: 18px;
  }
}
.building-card__minutes {
  font-size: 16px;
  font-weight: bold;
  padding-left: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .building-card__minutes {
    font-size: 14px;
    padding-left: 24px;
  }
}
.building-card__minutes::before {
  content: "";
  background: url(https://www.jasmec.co.jp/img/icon/guide-map-icon.png) center center/cover;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .building-card__minutes::before {
    width: 18px;
    height: 18px;
  }
}
.building-card__address {
  font-size: 14px;
  padding-left: 30px;
}
@media (max-width: 767px) {
  .building-card__address {
    display: none;
    font-size: 12px;
    padding-left: 24px;
  }
}
.building-card__btn a {
  display: inline-block;
  font-size: 14px;
  margin: 8px 16px 2px 28px;
  padding: 4px 48px 8px 16px;
  border-radius: 50px;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  font-weight: bold;
  position: relative;
}
@media (max-width: 767px) {
  .building-card__btn a {
    margin: 4px auto;
    padding: 2px 38px 4px 12px;
  }
}
.building-card__btn a::before, .building-card__btn a::after {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.building-card__btn a::before {
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(calc(-50% - 2px)) rotate(40deg);
          transform: translateY(calc(-50% - 2px)) rotate(40deg);
  width: 8px;
  height: 2px;
}
@media (max-width: 767px) {
  .building-card__btn a::before {
    right: 6px;
  }
}
.building-card__btn a::after {
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 2px;
}
@media (max-width: 767px) {
  .building-card__btn a::after {
    width: 16px;
    right: 8px;
  }
}
.building-card__btn a:hover::before, .building-card__btn a:hover::after {
  right: 5px;
}
.building-card__detail-link {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.building-card__detail-link a {
  margin: 0;
  background-color: #B63C53;
}
.building-card__map-link {
  margin-top: 16px;
}
.building-card__map-link a {
  background-color: #B63C53;
}
.building-card__kousha-link a {
  background-color: #1C2688;
}
.building-card__kousha-link.premium a {
  background-color: #006060;
}

/* ===============================================
# header
=============================================== */
.header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 50;
  height: 100px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .header {
    height: 64px;
  }
}
.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;
  height: 100%;
}
.header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80%;
}
@media (max-width: 767px) {
  .header__info {
    width: calc(100% - 64px);
  }
}
.header__company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 24px;
}
.header__logoMark {
  width: 40px;
}
@media (max-width: 767px) {
  .header__logoMark {
    width: 32px;
  }
}
.header__companyWrap {
  width: calc(100% - 40px);
  margin-left: 16px;
}
.header__companyName {
  font-size: 18px;
}
@media (max-width: 767px) {
  .header__companyName {
    font-size: 14px;
  }
}
.header__groupName {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .header__groupName {
    font-size: 18px;
  }
}
.header__entry {
  width: calc(20% - 64px);
  height: 100%;
}
@media (max-width: 1247px) {
  .header__entry {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .header__entry {
    display: none;
  }
}
.header__entry a {
  height: 100%;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#1C2688), to(#006060));
  background: linear-gradient(to bottom, #1C2688, #006060);
}

.g_nav {
  width: 65%;
  max-width: 600px;
}
@media (max-width: 1247px) {
  .g_nav {
    display: none;
  }
}
.g_nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-right: 16px;
}

.hamburger {
  display: block;
  height: 100%;
  position: relative;
  width: 64px;
  border: none;
  background-color: transparent;
}
.hamburger.-active .hamburger__line {
  background-color: transparent;
}
.hamburger.-active .hamburger__line::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger.-active .hamburger__line::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.-active .hamburger__text::before {
  content: "閉じる";
}
.hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 24px;
  background-color: #1C2688;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.hamburger__line::before, .hamburger__line::after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #1C2688;
  -webkit-transition: inherit;
  transition: inherit;
}
.hamburger__line::before {
  top: -8px;
}
.hamburger__line::after {
  top: 8px;
}

.header__nav-area {
  position: fixed;
  top: 100px;
  z-index: 40;
  max-height: calc(100vh - 100px);
  height: auto;
  width: 100%;
  visibility: hidden;
  background-color: rgba(242, 243, 245, 0.95);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}
@media (max-width: 767px) {
  .header__nav-area {
    top: 64px;
  }
}
.header__nav-area.-active {
  right: 0;
  top: 100px;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 767px) {
  .header__nav-area.-active {
    top: 64px;
  }
}

.global-navigation {
  padding: 40px 25px 80px;
}
.global-navigation__list > li {
  padding: 24px;
}
.global-navigation__list > li + li {
  margin-top: 16px;
}
.global-navigation__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
  font-size: 16px;
  padding-left: 24px;
}
.global-navigation__entry {
  text-align: center;
  margin: 24px auto;
}
@media (min-width: 1200px) {
  .global-navigation__entry {
    display: none;
  }
}
@media (max-width: 1247px) {
  .global-navigation__entry {
    display: none;
  }
}
@media (max-width: 767px) {
  .global-navigation__entry {
    display: block;
  }
}
.global-navigation__entry a {
  width: 300px;
  height: 60px;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(#1C2688), to(#006060));
  background: linear-gradient(to bottom, #1C2688, #006060);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ===============================================
# footer
=============================================== */
.footer {
  position: sticky;
  z-index: 10;
}
.footer__entry {
  background: url("https://www.jasmec.co.jp/company2/img/footer.jpg") no-repeat center center/cover;
  height: 360px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.footer__entry__text {
  font-weight: bold;
  color: #fff;
  text-align: center;
  font-size: clamp(18px, 6vw, 24px);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footer__entry__text {
    font-size: 18px;
    line-height: 40px;
    font-weight: normal;
  }
}
.footer__entry__link {
  background: #fff;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  position: relative;
}
.footer__entry__link::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background: linear-gradient(170deg, #1C2688, #009077);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.footer__entry__link__wrap {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.footer__entry__btn {
  background: linear-gradient(170deg, #1C2688, #009077);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  font-size: 24px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  min-width: 320px;
  height: 100px;
  gap: 4px;
}
@media (max-width: 767px) {
  .footer__entry__btn {
    font-size: 18px;
    height: 64px;
    width: 240px;
  }
}
.footer__entry__btn__text {
  letter-spacing: 4px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .footer__entry__btn__text {
    font-size: 18px;
  }
}
.footer__entry__btn__sub {
  font-size: 16px;
}
@media (max-width: 767px) {
  .footer__entry__btn__sub {
    font-size: 12px;
  }
}
.footer__container {
  background-color: #F5F6F9;
  padding: 40px 0px;
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer__nav {
  width: 25%;
  padding: 8px 16px;
  font-weight: bold;
}
.footer__nav:not(:last-of-type) {
  border-right: 1px solid #9e9b9b;
}
@media (max-width: 767px) {
  .footer__nav {
    font-size: 12px;
    border: none;
    width: 50%;
  }
  .footer__nav:not(:last-of-type) {
    border-right: none;
  }
}
.footer__nav__wrap {
  width: calc(100% - 240px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__nav__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
}
.footer__nav__link {
  font-weight: normal;
  font-size: 14px;
}
.footer__nav__link.head {
  font-size: 16px;
  text-align: left;
  font-weight: bold;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .footer__nav__link.head {
    font-size: 14px;
  }
}
.footer__nav__link.head a {
  color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__nav__link.head a:hover {
  color: #575757;
}
.footer__info {
  width: 240px;
  padding: 16px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .footer__info {
    width: 100%;
    text-align: center;
  }
}
.footer__company {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .footer__company {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px;
    gap: 0px;
  }
}
.footer__company__wrap {
  text-align: left;
}
.footer__company__name {
  font-weight: bold;
  font-size: 18px;
}
@media (max-width: 767px) {
  .footer__company__name {
    font-size: 16px;
  }
}
.footer__logo {
  margin-top: 16px;
}
.footer__logo img {
  width: 180px;
}
@media (max-width: 767px) {
  .footer__logo img {
    width: 100px;
  }
}
.footer__copyright {
  text-align: center;
  margin-top: 40px;
}

.bg1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F5F6F9;
  clip-path: polygon(100% 70%, 0% 100%, 100% 100%);
  z-index: 1;
}

.line1 {
  position: fixed;
  top: 80%;
  left: -5%;
  width: 110%;
  height: 0;
  border-top: 1px solid #f5f1f1;
  -webkit-transform: rotate(6deg);
          transform: rotate(6deg);
  z-index: 0;
}
@media (max-width: 767px) {
  .line1 {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}

/* ===============================================
# mv
=============================================== */
.mv {
  background-image: url("../img/MV.jpg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  height: 650px;
}
@media (max-width: 767px) {
  .mv {
    height: calc(50vh - 64px);
    background-position: right;
  }
}
.mv__catch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -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;
}
.mv__catchJ {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}
@media (max-width: 767px) {
  .mv__catchJ {
    font-size: 24px;
  }
}
.mv__catchE {
  font-size: 24px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  margin-left: 20px;
}
@media (max-width: 767px) {
  .mv__catchE {
    font-size: 16px;
    margin-left: 0px;
  }
}

/* ===============================================
# news
=============================================== */
.news__list {
  padding: 32px;
  border-top: 1px solid #9e9b9b;
  border-bottom: 1px solid #9e9b9b;
}
@media (max-width: 767px) {
  .news__list {
    padding: 24px;
  }
}
.news__item:not(:first-child) {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .news__item:not(:first-child) {
    margin-top: 8px;
  }
}
.news__item__link {
  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;
  padding: 8px 0px;
}
@media (max-width: 767px) {
  .news__item__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.news__item__date {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 200px;
}
@media (max-width: 767px) {
  .news__item__date {
    width: 100%;
  }
}
.news__item__category {
  border-radius: 4px;
  font-size: 12px;
  margin-left: 16px;
  padding: 0px 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.news__item__category.pr {
  border: 1px solid #009077;
  color: #009077;
}
.news__item__body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-size: 16px;
  margin-left: 32px;
  width: calc(100% - 200px - 32px);
}
@media (max-width: 767px) {
  .news__item__body {
    margin-top: 8px;
    margin-left: 0px;
    text-align: left;
    width: 100%;
  }
}

/* ===============================================
# philosophy
=============================================== */
.philosophy {
  background-color: #F5F6F9;
}
.philosophy__contents {
  margin-top: 32px;
  padding-bottom: 64px;
}
.philosophy__block:not(:first-child) {
  margin-top: 48px;
}
@media (max-width: 767px) {
  .philosophy__block:not(:first-child) {
    margin-top: 32px;
  }
}
.philosophy__block__head {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .philosophy__block__head {
    font-size: 20px;
  }
}
.philosophy__block__headSub {
  font-size: 16px;
  color: #B3B3B3;
}
@media (max-width: 767px) {
  .philosophy__block__headSub {
    font-size: 14px;
  }
}
.philosophy__block__text {
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .philosophy__block__text {
    font-size: 14px;
  }
}
.philosophy__footer {
  height: 440px;
  background: url("../img/philosophy.jpg") no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
  align-items: center;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  text-align: center;
}
@media (max-width: 767px) {
  .philosophy__footer {
    height: 400px;
  }
}
.philosophy__footer__text {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .philosophy__footer__text {
    font-size: 20px;
  }
}
.philosophy__footer__textSub {
  font-size: 20px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .philosophy__footer__textSub {
    font-size: 16px;
  }
}
.philosophy__link {
  margin-top: 64px;
  text-align: center;
}
.philosophy__link a {
  font-weight: bold;
  padding-right: 64px;
  position: relative;
  letter-spacing: 1px;
}
.philosophy__link a::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  bottom: 8px;
  left: 24px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
.philosophy__link a::after {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: left;
          transform-origin: left;
  width: 32px;
  height: 8px;
  background-color: #fff;
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: "";
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.philosophy__link a:hover::after {
  -webkit-transform: translateY(-50%) scaleX(1.4);
          transform: translateY(-50%) scaleX(1.4);
}

/* ===============================================
# guide
=============================================== */
.guide__top {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .guide__top {
    font-size: 16px;
  }
}
.guide__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 64px;
}
@media (max-width: 767px) {
  .guide__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
}
.guide__img {
  width: 45%;
  text-align: center;
}
@media (max-width: 1247px) {
  .guide__img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .guide__img {
    width: 100%;
  }
}
.guide__links {
  width: 45%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (max-width: 1247px) {
  .guide__links {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .guide__links {
    width: 100%;
    margin-top: 40px;
  }
}
.guide__link {
  width: 240px;
}
@media (max-width: 1247px) {
  .guide__link {
    max-width: 240px;
  }
}
.guide__link a {
  width: 100%;
}

/* ===============================================
# interview
=============================================== */
.interview {
  background-color: #F5F6F9;
}
.interview__top {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .interview__top {
    font-size: 16px;
  }
}
.interview__cards {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767px) {
  .interview__cards {
    -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;
  }
}
.interview__card {
  width: calc(50% - 12px);
  max-width: 500px;
  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;
  background-color: #fff;
}
@media (max-width: 767px) {
  .interview__card {
    width: auto;
  }
  .interview__card:not(:first-child) {
    margin-top: 32px;
  }
}
.interview__card__text {
  margin-top: 24px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .interview__card__text {
    font-size: 16px;
  }
}
.interview__card__link {
  margin-top: 24px;
  padding-bottom: 40px;
}
.interview__card__link a {
  width: 300px;
}