@media screen and (min-width: 769px), print {
  .banner {
    position: relative;
    display: -ms-grid;
    display: grid;
    grid-template-areas: 'mv';
  }
  .banner__bgr {
    grid-area: mv;
  }
  .banner__bgr img {
    width: 100%;
  }
  .banner__conts {
    grid-area: mv;
    display: -ms-grid;
    display: grid;
    place-items: center left;
    -ms-grid-rows: 1fr auto;
        grid-template-rows: 1fr auto;
    color: #fff;
    margin-top: 96px;
  }
  .banner__ttl {
    font-size: 15.533rem;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
  }
  .banner__subTTl {
    font-size: 10.3rem;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: -8px 0 30px;
    letter-spacing: 3px;
  }
  .banner__btn-row {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (50%)[2];
        grid-template-columns: repeat(2, 50%);
    gap: 20px;
    padding: 50px 0 0;
    margin-bottom: max(60px, 5vw);
  }
  .banner__btn {
    --btn-col_main: #e92651;
    --btn-col_sub: #fff;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 70px;
    padding: 12px 28px;
    background-color: var(--btn-col_sub);
    position: relative;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .banner__btn span {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.4;
    color: var(--btn-col_main);
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .banner__btn:hover {
    opacity: 1.0;
    --btn-col_main: #fff;
    --btn-col_sub: #e92651;
  }
  .banner__btn:before {
    content: '';
    position: absolute;
    right: 30px;
    width: 32px;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: var(--btn-col_main);
    -moz-border-radius: 50%;
         border-radius: 50%;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .banner__btn:after {
    content: '';
    position: absolute;
    right: 41px;
    width: 9px;
    height: 11px;
    background-color: var(--btn-col_sub);
    -webkit-mask-image: url("../images/icon_arrow.svg");
            mask-image: url("../images/icon_arrow.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .banner__btn[target="_blank"]:after {
    right: 39px;
    width: 14px;
    height: 11px;
    -webkit-mask-image: url("../images/icon_blank.svg");
            mask-image: url("../images/icon_blank.svg");
  }
  .banner p {
    font-size: 3rem;
    line-height: 1.2;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 6px;
  }
  .news {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    margin-top: -37px;
    -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
         box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    -webkit-perspective: 1px;
       -moz-perspective: 1px;
            perspective: 1px;
  }
  .news__ttl {
    width: 231px;
    padding: 0 15px;
    font-size: 3.2rem;
    line-height: 40px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #e92651;
    border-right: 1px solid #d4d4d4;
    text-align: center;
    letter-spacing: 3px;
  }
  .news__lst {
    width: -webkit-calc(100% - 231px - 72px);
    width: -moz-calc(100% - 231px - 72px);
    width: calc(100% - 231px - 72px);
  }
  .news__lst li a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    padding: 20px 0 20px 40px;
  }
  .news__lst li a:hover {
    color: #e92651;
  }
  .news__lst li time {
    width: 112px;
    padding-right: 5px;
    letter-spacing: 3px;
  }
  .news__lst li span {
    width: -webkit-calc(100% - 112px);
    width: -moz-calc(100% - 112px);
    width: calc(100% - 112px);
    letter-spacing: 2px;
  }
  .news__btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 72px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #000;
    -webkit-transform: perspective(1px) translateZ(0);
       -moz-transform: perspective(1px) translateZ(0);
            transform: perspective(1px) translateZ(0);
    -webkit-transition: background .35s ease;
    -moz-transition: background .35s ease;
    transition: background .35s ease;
  }
  .news__btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e92651;
    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
       -moz-transform-origin: 0 50%;
        -ms-transform-origin: 0 50%;
            transform-origin: 0 50%;
    -webkit-transition: -webkit-transform .5s ease-out;
    transition: -webkit-transform .5s ease-out;
    -moz-transition: transform .5s ease-out, -moz-transform .5s ease-out;
    transition: transform .5s ease-out;
    transition: transform .5s ease-out, -webkit-transform .5s ease-out, -moz-transform .5s ease-out;
    z-index: -1;
  }
  .news__btn span {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
    font-size: 1.2rem;
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2.75px;
    -webkit-transition: color .5s ease;
    -moz-transition: color .5s ease;
    transition: color .5s ease;
  }
  .news__btn span:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 11px;
    margin: 0 auto;
    background: url("../images/arr_left_wh.png") no-repeat;
    -moz-background-size: contain;
         background-size: contain;
  }
  .news__btn:hover {
    opacity: 1;
    background: #fff;
  }
  .news__btn:hover:before {
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
       -moz-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
            transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  .messages {
    margin: 80px 0 122px;
  }
  .messages__art {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 738px;
  }
  .messages__art .artDes {
    width: 664px;
    padding: 60px 70px 52px 0;
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  .messages__art .artDes__subTTl {
    font-size: 1.6rem;
    line-height: 40px;
    color: #e92651;
    border-left: 2px solid #e92651;
    padding-left: 30px;
    display: inline-block;
    letter-spacing: 2.25px;
  }
  .messages__art .artDes__ttl {
    margin: 40px 0 33px;
    font-size: 5.6rem;
    line-height: 84px;
    font-weight: 400;
    letter-spacing: 13px;
  }
  .messages__art .artDes p {
    font-size: 1.6rem;
    line-height: 36px;
    letter-spacing: 1px;
  }
  .messages__art .artThumb {
    height: 100%;
    width: -webkit-calc(50% + 38px);
    width: -moz-calc(50% + 38px);
    width: calc(50% + 38px);
    position: absolute;
    background: url("../images/messages_bgr.jpg") no-repeat;
    -moz-background-size: cover;
         background-size: cover;
    top: 0;
    right: 0;
    z-index: -1;
  }
  .messages .list__items {
    margin-top: 119px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
  }
  .messages .list__items .item {
    width: 50%;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .messages .list__items .item a {
    display: -ms-grid;
    display: grid;
    place-items: center;
  }
  .messages .list__items .item .sub_text {
    font-size: 1.4rem;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .messages .list__items .item.mt {
    margin-top: 200px;
  }
  .messages .list__items .item.mt a {
    position: relative;
  }
  .messages .list__items .item.mt a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../common/images/af_banner.png") repeat;
    z-index: 1;
  }
  .messages .list__items .item.lb {
    margin-top: -180px;
  }
  .messages .list__items .item.lb a {
    position: relative;
  }
  .messages .list__items .item.lb a .sub_text {
    font-size: 1.4rem;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .messages .list__items .item.lb a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../common/images/af_banner.png") repeat;
    z-index: 1;
  }
  .messages .list__items .item figure {
    position: relative;
  }
  .messages .list__items .item figure:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
  }
  .messages .list__items .item__ttl {
    font-size: 4rem;
    line-height: 48px;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    letter-spacing: 7px;
    z-index: 2;
  }
  .messages .list__items .item__ttl small {
    display: block;
    font-size: 2.4rem;
    font-weight: 400;
  }
  .messages .list__items .item__btn {
    z-index: 2;
    background: #fafafa;
  }
  .job {
    background-color: #f6f6f6;
    padding: 120px 0 140px;
  }
  .job__box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }
  .job__box:hover .boxBtn:after {
    -webkit-transform: translateX(5px);
       -moz-transform: translateX(5px);
        -ms-transform: translateX(5px);
            transform: translateX(5px);
  }
  .job__box .thumbLeft {
    width: 630px;
  }
  .job__box .thumbLeft img {
    width: 100%;
  }
  .job__box .desRight {
    width: -webkit-calc(100% - 630px);
    width: -moz-calc(100% - 630px);
    width: calc(100% - 630px);
    background: #e92651;
    padding: 34px 10px 30px 75px;
  }
  .job__box .desRight h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 4.499rem;
    letter-spacing: 16px;
  }
  .job__box .desRight h3 span {
    font-family: "Montserrat", sans-serif;
    font-size: 4.8rem;
    letter-spacing: 3px;
  }
  .job__box .desRight h4 {
    display: inline-block;
    margin: 18px 0 14px;
    padding: 2px 10px;
    background-color: #f9f9f1;
    font-size: 2.253rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #e92651;
    letter-spacing: 1.5px;
  }
  .job__box .boxBtn {
    display: block;
    position: relative;
    max-width: 411px;
  }
  .job__box .boxBtn:before {
    content: '';
    position: absolute;
    top: 17px;
    left: 0;
    width: 88%;
    height: 1px;
    background: #fff;
  }
  .job__box .boxBtn:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: url("../images/arr_circle.png") no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: -webkit-transform .35s ease;
    transition: -webkit-transform .35s ease;
    -moz-transition: transform .35s ease, -moz-transform .35s ease;
    transition: transform .35s ease;
    transition: transform .35s ease, -webkit-transform .35s ease, -moz-transform .35s ease;
  }
  .job__box .boxBtn span {
    position: relative;
    display: inline-block;
    color: #fff;
    background-color: #e92651;
    font-size: 1.6rem;
    line-height: 32px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    padding: 0 17px 0 2px;
    letter-spacing: 1.25px;
  }
  .job .list__items {
    margin-top: 60px;
  }
  .job .list__items .item {
    width: 33.33%;
    margin-right: 21px;
  }
  .job .list__items .item:nth-child(3n) {
    margin-right: 0;
  }
  .job .list__items .item picture {
    position: relative;
  }
  .job .list__items .item picture:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
  }
  .job .list__items .item__ttl {
    font-size: 4.8rem;
    line-height: 48px;
    font-family: "Montserrat", sans-serif;
    left: 20px;
    top: 26px;
    letter-spacing: 3px;
  }
  .job .list__items .item__ttl span {
    display: block;
    font-size: 1.6rem;
    line-height: 32px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    margin-top: 5px;
  }
  .job .list__items .item__btn {
    font-weight: 400;
  }
  .list__items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .list__items .item a {
    display: block;
    position: relative;
  }
  .list__items .item a:hover {
    opacity: 1;
  }
  .list__items .item a:hover picture img, .list__items .item a:hover figure img {
    -webkit-transform: scale(1.1);
       -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .list__items .item a:hover .item__btn {
    color: #fff;
  }
  .list__items .item a:hover .item__btn:after {
    background: url("../images/arr_left_wh.png") no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    -webkit-transform: translateX(5px);
       -moz-transform: translateX(5px);
        -ms-transform: translateX(5px);
            transform: translateX(5px);
  }
  .list__items .item a:hover .item__btn:before {
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
       -moz-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
            transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  .list__items .item picture, .list__items .item figure {
    position: relative;
    overflow: hidden;
  }
  .list__items .item picture img, .list__items .item figure img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -moz-transition: transform .3s ease, -moz-transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease, -moz-transform .3s ease;
  }
  .list__items .item__ttl {
    font-weight: 400;
    color: #fff;
    position: absolute;
  }
  .list__items .item__btn {
    position: absolute;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 55px;
    padding: 0 29px;
    background: #fff;
    font-size: 1.6rem;
    line-height: 23px;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    color: #000;
    -webkit-transform: perspective(1px) translateZ(0);
       -moz-transform: perspective(1px) translateZ(0);
            transform: perspective(1px) translateZ(0);
    -webkit-transition: color .5s;
    -moz-transition: color .5s;
    transition: color .5s;
    letter-spacing: 1.25px;
  }
  .list__items .item__btn:before, .list__items .item__btn:after {
    content: "";
    position: absolute;
    -webkit-transition: -webkit-transform .5s ease-out;
    transition: -webkit-transform .5s ease-out;
    -moz-transition: transform .5s ease-out, -moz-transform .5s ease-out;
    transition: transform .5s ease-out;
    transition: transform .5s ease-out, -webkit-transform .5s ease-out, -moz-transform .5s ease-out;
  }
  .list__items .item__btn:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e92651;
    -webkit-transform: scaleX(0);
       -moz-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
       -moz-transform-origin: 0 50%;
        -ms-transform-origin: 0 50%;
            transform-origin: 0 50%;
    z-index: -1;
  }
  .list__items .item__btn:after {
    right: 20px;
    top: 24px;
    background: url("../images/arr_left_bl.png") no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    width: 30px;
    height: 11px;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (max-width: 768px) {
  .banner {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .banner__bgr img {
    width: 100%;
  }
  .banner__conts {
    position: absolute;
    left: 0;
    bottom: 10.41667vw;
    color: #fff;
  }
  .banner__ttl {
    font-size: 18.66667vw;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
  }
  .banner__subTTl {
    font-size: 12.49479vw;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    margin: -0.91146vw 0 3.77604vw;
    letter-spacing: 0.39062vw;
  }
  .banner__btn-row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.60417vw;
    padding: 11.71875vw 0 0;
  }
  .banner__btn {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
       -moz-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    min-height: 13.02083vw;
    padding-block: 1.5625vw;
    padding-left: 4.6875vw;
    padding-right: 14.58333vw;
    background-color: #fff;
    position: relative;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .banner__btn span {
    font-size: 3.38542vw;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.4;
    color: #e92651;
  }
  .banner__btn:before {
    content: '';
    position: absolute;
    right: 5.20833vw;
    width: 6.25vw;
    height: auto;
    aspect-ratio: 1 / 1;
    background-color: #e92651;
    -moz-border-radius: 50%;
         border-radius: 50%;
  }
  .banner__btn:after {
    content: '';
    position: absolute;
    right: 7.29167vw;
    width: 1.82292vw;
    height: 2.21354vw;
    background-color: #fff;
    -webkit-mask-image: url("../images/icon_arrow.svg");
            mask-image: url("../images/icon_arrow.svg");
    -webkit-mask-size: contain;
            mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
  }
  .banner__btn[target="_blank"]:after {
    right: 6.77083vw;
    width: 3.125vw;
    height: 2.47396vw;
    -webkit-mask-image: url("../images/icon_blank.svg");
            mask-image: url("../images/icon_blank.svg");
  }
  .banner p {
    font-size: 3.90625vw;
    line-height: 1.2;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    letter-spacing: 0.78125vw;
  }
  .news {
    position: relative;
    background: #fff;
    margin: -3.90625vw 3.90625vw 0;
    padding: 4.55729vw 3.90625vw 3.77604vw;
    -moz-box-shadow: 0vw 0vw 2.60417vw 0vw rgba(0, 0, 0, 0.1);
         box-shadow: 0vw 0vw 2.60417vw 0vw rgba(0, 0, 0, 0.1);
    -webkit-perspective: 0.13021vw;
       -moz-perspective: 0.13021vw;
            perspective: 0.13021vw;
  }
  .news__ttl {
    padding-bottom: 3.90625vw;
    font-size: 5.98958vw;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #e92651;
    border-bottom: 1px solid #d4d4d4;
    letter-spacing: 0.39062vw;
  }
  .news__lst {
    margin-top: 3.25521vw;
  }
  .news__lst li a {
    display: block;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 3.64583vw;
  }
  .news__lst li time,
  .news__lst li span {
    display: block;
  }
  .news__lst li time {
    letter-spacing: 0.68359vw;
  }
  .news__lst li span {
    margin-top: -0.52083vw;
    letter-spacing: 0.39062vw;
  }
  .news__btn {
    position: absolute;
    top: 3.90625vw;
    right: 3.90625vw;
    height: 6.90104vw;
    width: 26.30208vw;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #000;
  }
  .news__btn span {
    position: relative;
    display: block;
    padding-right: 2.21354vw;
    width: 100%;
    font-size: 3.38542vw;
    line-height: 1.2;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #fff;
    text-align: center;
    letter-spacing: 0.91146vw;
  }
  .news__btn span:after {
    content: '';
    position: absolute;
    right: 3.90625vw;
    top: 50%;
    width: 3.90625vw;
    height: 1.43229vw;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url("../images/arr_left_wh.png") no-repeat;
    -moz-background-size: contain;
         background-size: contain;
  }
  .messages {
    margin: 19.53125vw 0 19.66146vw;
  }
  .messages__art {
    position: relative;
  }
  .messages__art .artDes {
    margin-top: -13.02083vw;
    padding: 3.77604vw 3.77604vw;
    background-color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  .messages__art .artDes__subTTl {
    font-size: 3.64583vw;
    line-height: 6.51042vw;
    color: #e92651;
    border-left: 0.26042vw solid #e92651;
    padding-left: 3.64583vw;
    display: inline-block;
    letter-spacing: 0.52083vw;
  }
  .messages__art .artDes__ttl {
    margin: 3.38542vw -0.52083vw 3.64583vw;
    font-size: 8.33333vw;
    line-height: 12.23958vw;
    font-weight: 400;
    letter-spacing: 2.08333vw;
  }
  .messages__art .artDes p {
    font-size: 3.64583vw;
    line-height: 6.77083vw;
    letter-spacing: 0.19531vw;
  }
  .messages__art .artThumb {
    height: 94.01042vw;
    margin: 0 -3.90625vw;
    background: url("../images/messages_bgr.jpg") no-repeat top center;
    -moz-background-size: cover;
         background-size: cover;
    z-index: -1;
  }
  .messages .list__items {
    margin-top: 14.97396vw;
  }
  .messages .list__items .item {
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .messages .list__items .item .sub_text {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-top: 3.64583vw;
    line-height: 5.72917vw;
  }
  .messages .list__items .item.mt a, .messages .list__items .item.lb a {
    position: relative;
  }
  .messages .list__items .item.mt a .sub_text, .messages .list__items .item.lb a .sub_text {
    font-size: 1.4rem;
    letter-spacing: 1px;
    margin-top: 3.64583vw;
    line-height: 5.72917vw;
  }
  .messages .list__items .item.mt a:after, .messages .list__items .item.lb a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url("../common/images/af_banner.png") repeat;
    z-index: 1;
  }
  .messages .list__items .item figure {
    position: relative;
  }
  .messages .list__items .item figure img {
    width: 100%;
    height: auto;
  }
  .messages .list__items .item figure:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
  }
  .messages .list__items .item__ttl {
    width: 90%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 6.51042vw;
    line-height: 7.79297vw;
    font-family: "Noto Sans JP", sans-serif;
    text-align: center;
    letter-spacing: 1.04167vw;
    z-index: 2;
  }
  .messages .list__items .item__btn {
    z-index: 2;
    background: #fafafa;
  }
  .job {
    background-color: #f6f6f6;
    padding: 19.53125vw 0 19.92188vw;
  }
  .job__box {
    display: block;
  }
  .job__box .thumbLeft img {
    width: 100%;
  }
  .job__box .desRight {
    background: #e92651;
    padding: 4.94792vw 0 5.33854vw 5.33854vw;
  }
  .job__box .desRight h3 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 8.85417vw;
    letter-spacing: 2.66927vw;
  }
  .job__box .desRight h3 span {
    font-family: "Montserrat", sans-serif;
    font-size: 9.375vw;
    letter-spacing: 0.52083vw;
  }
  .job__box .desRight h4 {
    display: inline-block;
    margin: 3.25521vw 0 2.60417vw -0.26042vw;
    padding: 0.78125vw 1.69271vw 0.52083vw 1.95312vw;
    background-color: #f9f9f1;
    font-size: 4.16667vw;
    line-height: 5.92448vw;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #e92651;
    letter-spacing: 0.32552vw;
  }
  .job__box .boxBtn {
    display: block;
    position: relative;
    margin-right: 4.94792vw;
  }
  .job__box .boxBtn:before {
    content: '';
    position: absolute;
    top: 3.64583vw;
    left: 0;
    width: 88%;
    height: 0.26042vw;
    background: #fff;
  }
  .job__box .boxBtn:after {
    content: '';
    position: absolute;
    top: 0.26042vw;
    right: 0;
    width: 6.38021vw;
    height: 6.38021vw;
    background: url("../images/arr_circle.png") no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
  .job__box .boxBtn span {
    position: relative;
    display: inline-block;
    color: #fff;
    background-color: #e92651;
    font-size: 3.64583vw;
    line-height: 6.36458vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    padding: 0 0.65104vw 0 0.26042vw;
    letter-spacing: 0.39062vw;
  }
  .job .list__items {
    margin-top: 7.8125vw;
  }
  .job .list__items .item picture:after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
  }
  .job .list__items .item picture img {
    width: 100%;
    height: auto;
  }
  .job .list__items .item__ttl {
    font-size: 9.11458vw;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    left: 3.38542vw;
    top: 5.33854vw;
    letter-spacing: 0.58594vw;
  }
  .job .list__items .item__ttl span {
    display: block;
    font-size: 3.64583vw;
    line-height: 4.16667vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    margin: 1.69271vw 0 0 0.39062vw;
  }
  .job .list__items .item__btn {
    padding: 0 1.82292vw 0 3.77604vw;
    height: 10.54688vw;
    font-weight: 400;
    background: #fafafa;
  }
  .list__items .item {
    position: relative;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .list__items .item:not(:last-child) {
    margin-bottom: 3.90625vw;
  }
  .list__items .item a {
    display: block;
  }
  .list__items .item figure {
    position: relative;
  }
  .list__items .item figure img {
    width: 100%;
  }
  .list__items .item__ttl {
    font-weight: 400;
    color: #fff;
    position: absolute;
  }
  .list__items .item__ttl small {
    display: block;
    font-size: 3.38542vw;
    font-weight: 400;
    margin-bottom: 3.125vw;
  }
  .list__items .item__btn {
    position: absolute;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    bottom: 0;
    right: 0;
    width: 46.09375vw;
    height: 10.28646vw;
    padding: 0 1.30208vw 0 8.46354vw;
    background: #fff;
    font-size: 3.64583vw;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
    color: #000;
    letter-spacing: 1.25px;
  }
  .list__items .item__btn:after {
    content: "";
    position: absolute;
    right: 2.86458vw;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    background: url("../images/arr_left_bl.png") no-repeat;
    -moz-background-size: contain;
         background-size: contain;
    width: 4.81771vw;
    height: 1.5625vw;
  }
}
