@charset "UTF-8";
/* ***************************************************
 SP
*************************************************** */
@media screen and (max-width:1099px) {
  /* ***************************************************
   企業情報
  *************************************************** */
  #company-content {
    color: #666666;
    /* --------- トップページ --------- */
    /* --------- 下層共通ナビ --------- */
  }
  #company-content .page-inner {
    width: 960px;
    max-width: calc(100% - 8vw);
    margin: 0 auto;
  }
  #company-content .section-title {
    margin-bottom: 32px;
    padding: 0.5em 1em;
    font-size: 16px;
    font-weight: 700;
    color: #666666;
    background-color: #EEEEEE;
  }
  #company-content .intro {
    margin-bottom: 60px;
    line-height: 2em;
    text-align: center;
  }
  #company-content .menu-wrapper {
    width: 1160px;
    max-width: calc(100% - 8vw);
    margin: 64px auto 100px;
  }
  #company-content .menu-wrapper ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px 10px;
  }
  #company-content .menu-wrapper ul li a {
    display: block;
    border-radius: 24px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  #company-content .menu-wrapper ul li a:hover .img::after {
    opacity: 0;
  }
  #company-content .menu-wrapper ul li a:hover .img .en {
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  }
  #company-content .menu-wrapper ul li a .img {
    position: relative;
    z-index: 1;
  }
  #company-content .menu-wrapper ul li a .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #company-content .menu-wrapper ul li a .img img {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #company-content .menu-wrapper ul li a .img .en {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0.03em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #company-content .menu-wrapper ul li a span {
    display: block;
    padding: 22px;
    font-weight: 700;
    text-align: center;
  }
  #company-content .nav-wrapper {
    width: 1160px;
    max-width: 100%;
    margin: 0 auto 64px;
    padding: 0 4vw;
  }
  #company-content .nav-wrapper .nav-company {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 12px;
    margin: 0 auto;
  }
  #company-content .nav-wrapper .nav-company li a {
    display: block;
    padding: 12px 0px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #CCCCCC;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #company-content .nav-wrapper .nav-company li a.current {
    background-color: #FFFF00;
    border-bottom: none;
  }
  #company-content .nav-wrapper .nav-company li a:hover:not(.current) {
    border-bottom: 1px solid #696969;
  }
  /* ***************************************************
   会社概要
  *************************************************** */
  .group-logo {
    margin: 0 auto 40px;
  }
  .company-outline {
    margin: 0 auto 60px;
  }
  .company-outline dl {
    font-size: 15px;
    border-top: 1px solid #CCCCCC;
  }
  .company-outline dl div {
    padding: 1em 0;
    border-bottom: 1px solid #CCCCCC;
  }
  .company-outline dl div dt {
    margin-bottom: 1em;
    font-weight: 700;
  }
  .company-outline dl div dd {
    line-height: 1.75em;
  }
  .company-outline dl div dd ul {
    list-style: none;
  }
  .company-outline dl div dd a {
    text-decoration: underline;
  }
  .company-outline dl div dd .link-map {
    font-size: 14px;
    text-decoration: none;
    margin-left: 1em;
    padding: 0.25em 0.5em;
    background-color: #FFFF00;
  }
  .company-outline dl div dd .link-map::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 0.5em;
    background-image: url(../images/common/ico-blank.svg);
  }
  .company-access .iframe-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    padding-top: 56.25%;
  }
  .company-access .iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
  .company-access .access-info p {
    line-height: 2em;
  }
  /* ***************************************************
   グループ会社
  *************************************************** */
  .company-group:not(:last-child) {
    margin-bottom: 60px;
  }
  .company-group .section-title {
    margin-bottom: 32px;
  }
  .company-group .group-list .item {
    padding: 24px 0;
    border-bottom: 1px solid #EEEEEE;
  }
  .company-group .group-list .item .logo {
    width: 220px;
    margin: 0 auto 24px;
  }
  .company-group .group-list .item .logo a {
    display: grid;
    place-items: center;
    height: 100px;
    padding: 0 20px;
    border: 2px solid #EEEEEE;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
  }
  .company-group .group-list .item .logo a:hover {
    opacity: 0.8;
  }
  .company-group .group-list .item .info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    line-height: 1.75em;
  }
  .company-group .group-list .item .info hgroup {
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
  }
  .company-group .group-list .item .info hgroup h3 {
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 18px;
  }
  .company-group .group-list .item .info hgroup a {
    text-decoration: none;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 10px;
    padding: 0.25em 0.5em;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    background-color: #FFFF00;
  }
  .company-group .group-list .item .info hgroup a::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 0.5em;
    background-image: url(../images/common/ico-blank.svg);
  }
  .company-group .group-list .item .info dl {
    font-size: 13px;
  }
  .company-group .group-list .item .info dl div dt {
    display: inline;
  }
  .company-group .group-list .item .info dl div dd {
    display: inline-block;
  }
  /* ***************************************************
   沿革
  *************************************************** */
  .company-history {
    font-size: 16px;
    border-top: 1px solid #CCCCCC;
  }
  .company-history div {
    padding: 24px 0;
    border-bottom: 1px solid #CCCCCC;
  }
  .company-history div dt {
    margin-bottom: 0.5em;
    font-family: "Wix Madefor Text", "Noto Sans JP", sans-serif;
    font-weight: 700;
    line-height: 2em;
  }
  .company-history div dd {
    line-height: 2em;
  }
  /* ***************************************************
   32の制度
  *************************************************** */
  .benefits-banner {
    margin-bottom: 32px;
  }
  .benefits-banner a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 10px;
  }
  .benefits-inner {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
  }
  .benefits-inner .benefits {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
  }
  .benefits-inner .benefits .left,
  .benefits-inner .benefits .right {
    padding: 24px;
  }
  .benefits-inner .benefits .left {
    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;
    text-align: center;
    background-color: #FFFF00;
  }
  .benefits-inner .benefits .left h2 {
    margin-bottom: 8px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 700;
  }
  .benefits-inner .benefits .left small {
    font-size: 13px;
    font-weight: 600;
  }
  .benefits-inner .benefits .right {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    line-height: 1.75em;
    background-color: #F5F5F5;
  }
  .benefits-inner .benefits .right li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    background-color: #999999;
    border-radius: 50%;
  }
  .benefits-inner .benefits .right li a {
    font-size: 15px;
    text-decoration: underline;
    cursor: pointer;
  }
  .benefits-inner .benefits .right li a:hover {
    opacity: 0.8;
  }
  #lightbox {
    position: relative;
    width: 640px;
    max-width: 100%;
    padding: 10px;
    color: #666666;
    border: none;
    background: transparent;
  }
  #lightbox::-ms-backdrop {
    background: rgba(0, 0, 0, 0.6);
  }
  #lightbox::backdrop {
    background: rgba(0, 0, 0, 0.6);
  }
  #lightbox .item {
    display: none;
  }
  #lightbox form {
    position: absolute;
    top: 0;
    right: 0;
  }
  #lightbox form button {
    border: none;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
  }
  #lightbox .carousel-inner {
    padding: 60px;
    background-color: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  #lightbox .carousel-inner .item .title {
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 600;
  }
  #lightbox .carousel-inner .item .title span {
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, #ffffff), color-stop(50%, #ffff00), to(#ffff00));
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #ffff00 50%, #ffff00 100%);
  }
  #lightbox .carousel-inner .item p {
    line-height: 2em;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .prev,
  #lightbox .carousel-inner .item .modal-carousel-nav .next {
    position: relative;
    margin-top: 48px;
    width: 45%;
    cursor: pointer;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .prev:hover,
  #lightbox .carousel-inner .item .modal-carousel-nav .next:hover {
    opacity: 0.8;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .prev.none::before, #lightbox .carousel-inner .item .modal-carousel-nav .prev.none::after,
  #lightbox .carousel-inner .item .modal-carousel-nav .next.none::before,
  #lightbox .carousel-inner .item .modal-carousel-nav .next.none::after {
    display: none;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .prev::before {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    left: -30px;
    width: 12px;
    height: 12px;
    background-image: url(../images/common/ico-arrow-prev.svg);
    background-repeat: no-repeat;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .next {
    text-align: right;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .next::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: -35px;
    width: 12px;
    height: 12px;
    background-image: url(../images/common/ico-arrow-next.svg);
    background-repeat: no-repeat;
  }
  /* ***************************************************
   32の制度 利用者の声
  *************************************************** */
  .voice-content .voice-heading {
    position: relative;
    width: 980px;
    height: 385px;
    margin: 0 auto 40px;
    max-width: 100%;
    background-image: url(../images/company/bg-voice.png);
    background-repeat: no-repeat;
  }
  .voice-content .voice-heading hgroup {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    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;
    width: 240px;
    height: 240px;
    background-color: #fff;
    background-image: url(../images/company/bg-voice-ttl.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
  }
  .voice-content .voice-heading h2 {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 600;
  }
  .voice-content .voice-heading b {
    display: block;
    margin: 12px auto;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.125em;
  }
  .voice-content .voice-heading small {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
  }
  .voice-content .voice-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33% - 32px), 1fr));
    gap: 36px 32px;
  }
  .voice-content .voice-wrapper .voice {
    position: relative;
    padding: 20px;
    border: 2px solid #DDDDDD;
  }
  .voice-content .voice-wrapper .voice::after {
    content: "";
    position: absolute;
    bottom: -11px;
    right: 36px;
    width: 17px;
    height: 17px;
    background-color: #fff;
    border-bottom: 2px solid #ddd;
    border-right: 2px solid #ddd;
    -webkit-transform: rotate(45deg) skew(22.5deg, 22.5deg);
            transform: rotate(45deg) skew(22.5deg, 22.5deg);
  }
  .voice-content .voice-wrapper .voice .title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
  }
  .voice-content .voice-wrapper .voice p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }
  /* ***************************************************
   受賞歴
  *************************************************** */
  .awards-wrapper ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 12px;
  }
  .awards-wrapper ul li {
    font-size: 13px;
  }
  .awards-wrapper ul li .img {
    display: grid;
    place-items: center;
    width: 100%;
    height: 120px;
    margin-bottom: 12px;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
  }
  .awards-wrapper ul li .img img {
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .awards-wrapper ul li .name {
    margin: 0 auto 4px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-weight: 600;
    color: #000;
    text-align: center;
  }
  .awards-wrapper ul li .result {
    display: block;
    color: #999999;
    text-align: center;
  }
  /* ***************************************************
   メッセージ
  *************************************************** */
  .message-title {
    margin: 96px auto 40px;
    text-align: center;
  }
  .message-content {
    line-height: 2em;
  }
  .message-content p {
    margin-bottom: 2em;
  }
  .message-sign {
    margin-top: 60px;
    text-align: right;
    line-height: 2em;
  }
  .message-sign img {
    width: 220px;
  }
}
/* ***************************************************
 PC
*************************************************** */
@media all and (min-width:1100px) {
  /* ***************************************************
   企業情報
  *************************************************** */
  #company-content {
    padding-top: 96px;
    color: #666666;
    /* --------- トップページ --------- */
    /* --------- 下層共通ナビ --------- */
  }
  #company-content .page-inner {
    width: 960px;
    max-width: calc(100% - 48px);
    margin: 0 auto;
  }
  #company-content .section-title {
    margin-bottom: 32px;
    padding: 0.5em 1em;
    font-size: 16px;
    font-weight: 700;
    color: #666666;
    background-color: #EEEEEE;
  }
  #company-content .intro {
    margin-bottom: 60px;
    line-height: 2em;
    text-align: center;
  }
  #company-content .menu-wrapper {
    width: 1160px;
    max-width: calc(100% - 48px);
    margin: 64px auto 240px;
  }
  #company-content .menu-wrapper ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33% - 60px), 1fr));
    gap: 64px 60px;
  }
  #company-content .menu-wrapper ul li a {
    display: block;
    border-radius: 24px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
  }
  #company-content .menu-wrapper ul li a:hover .img::after {
    opacity: 0;
  }
  #company-content .menu-wrapper ul li a:hover .img .en {
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
  }
  #company-content .menu-wrapper ul li a .img {
    position: relative;
    z-index: 1;
  }
  #company-content .menu-wrapper ul li a .img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #company-content .menu-wrapper ul li a .img img {
    width: 100%;
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  #company-content .menu-wrapper ul li a .img .en {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 100%;
    letter-spacing: 0.03em;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #company-content .menu-wrapper ul li a span {
    display: block;
    padding: 22px;
    font-weight: 700;
    text-align: center;
  }
  #company-content .nav-wrapper {
    width: 1160px;
    max-width: calc(100% - 48px);
    margin: 0 auto 64px;
  }
  #company-content .nav-wrapper .nav-company {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(25% - 34px), 1fr));
    gap: 16px 34px;
    margin: 0 auto;
  }
  #company-content .nav-wrapper .nav-company li a {
    display: block;
    padding: 12px 0px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #CCCCCC;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  #company-content .nav-wrapper .nav-company li a.current {
    background-color: #FFFF00;
    border-bottom: none;
  }
  #company-content .nav-wrapper .nav-company li a:hover:not(.current) {
    border-bottom: 1px solid #696969;
  }
  /* ***************************************************
   会社概要
  *************************************************** */
  .group-logo {
    margin: 0 auto 60px;
  }
  .company-outline {
    margin: 0 auto 60px;
  }
  .company-outline dl {
    font-size: 15px;
    border-top: 1px solid #CCCCCC;
  }
  .company-outline dl div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1em 0;
    border-bottom: 1px solid #CCCCCC;
  }
  .company-outline dl div dt {
    width: 248px;
    font-weight: 700;
  }
  .company-outline dl div dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    line-height: 1.75em;
  }
  .company-outline dl div dd ul {
    list-style: none;
  }
  .company-outline dl div dd a {
    text-decoration: underline;
  }
  .company-outline dl div dd .link-map {
    font-size: 14px;
    text-decoration: none;
    margin-left: 1em;
    padding: 0.25em 0.5em;
    background-color: #FFFF00;
  }
  .company-outline dl div dd .link-map::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 0.5em;
    background-image: url(../images/common/ico-blank.svg);
  }
  .company-access .iframe-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    padding-top: 56.25%;
  }
  .company-access .iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }
  .company-access .access-info p {
    line-height: 2em;
  }
  /* ***************************************************
   グループ会社
  *************************************************** */
  .company-group:not(:last-child) {
    margin-bottom: 60px;
  }
  .company-group .section-title {
    margin-bottom: 32px;
  }
  .company-group .group-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #EEEEEE;
  }
  .company-group .group-list .item .logo {
    width: 220px;
    margin-right: 24px;
  }
  .company-group .group-list .item .logo a {
    display: grid;
    place-items: center;
    height: 100px;
    padding: 0 20px;
    border: 2px solid #EEEEEE;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
  }
  .company-group .group-list .item .logo a:hover {
    opacity: 0.8;
  }
  .company-group .group-list .item .info {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    line-height: 1.75em;
  }
  .company-group .group-list .item .info hgroup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
  }
  .company-group .group-list .item .info hgroup h3 {
    font-size: 15px;
    margin-right: 10px;
    line-height: 18px;
    padding-right: 10px;
    border-right: 1px solid #666666;
  }
  .company-group .group-list .item .info hgroup a {
    text-decoration: none;
    margin-left: 20px;
    padding: 0.25em 0.5em;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1em;
    background-color: #FFFF00;
  }
  .company-group .group-list .item .info hgroup a::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 0.5em;
    background-image: url(../images/common/ico-blank.svg);
  }
  .company-group .group-list .item .info dl {
    font-size: 13px;
  }
  .company-group .group-list .item .info dl div dt {
    display: inline;
  }
  .company-group .group-list .item .info dl div dd {
    display: inline-block;
  }
  /* ***************************************************
   沿革
  *************************************************** */
  .company-history {
    font-size: 16px;
    border-top: 1px solid #CCCCCC;
  }
  .company-history div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 24px 0;
    border-bottom: 1px solid #CCCCCC;
  }
  .company-history div dt {
    width: 220px;
    font-family: "Wix Madefor Text", "Noto Sans JP", sans-serif;
    font-weight: 500;
    line-height: 2em;
  }
  .company-history div dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    line-height: 2em;
  }
  /* ***************************************************
   32の制度
  *************************************************** */
  .benefits-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
  }
  .benefits-inner {
    width: 900px;
    max-width: 100%;
    margin: 0 auto;
  }
  .benefits-inner .benefits {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
  }
  .benefits-inner .benefits .left,
  .benefits-inner .benefits .right {
    padding: 24px;
  }
  .benefits-inner .benefits .left {
    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;
    width: 50%;
    text-align: center;
    background-color: #FFFF00;
  }
  .benefits-inner .benefits .left h2 {
    margin-bottom: 8px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 30px;
    font-weight: 700;
  }
  .benefits-inner .benefits .left small {
    font-size: 13px;
    font-weight: 600;
  }
  .benefits-inner .benefits .right {
    list-style: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    line-height: 1.75em;
    background-color: #F5F5F5;
  }
  .benefits-inner .benefits .right li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-right: 8px;
    background-color: #999999;
    border-radius: 50%;
  }
  .benefits-inner .benefits .right li a {
    font-size: 15px;
    text-decoration: underline;
    cursor: pointer;
  }
  .benefits-inner .benefits .right li a:hover {
    opacity: 0.8;
  }
  #lightbox {
    position: relative;
    width: 640px;
    max-width: 100%;
    padding: 10px;
    color: #666666;
    border: none;
    background: transparent;
  }
  #lightbox::-ms-backdrop {
    background: rgba(0, 0, 0, 0.6);
  }
  #lightbox::backdrop {
    background: rgba(0, 0, 0, 0.6);
  }
  #lightbox .item {
    display: none;
  }
  #lightbox form {
    position: absolute;
    top: 0;
    right: 0;
  }
  #lightbox form button {
    border: none;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
  }
  #lightbox .carousel-inner {
    padding: 60px;
    background-color: #fff;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  #lightbox .carousel-inner .item .title {
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: 600;
  }
  #lightbox .carousel-inner .item .title span {
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), color-stop(50%, #ffffff), color-stop(50%, #ffff00), to(#ffff00));
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #ffff00 50%, #ffff00 100%);
  }
  #lightbox .carousel-inner .item p {
    line-height: 2em;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .prev,
  #lightbox .carousel-inner .item .modal-carousel-nav .next {
    position: relative;
    margin-top: 48px;
    width: 45%;
    cursor: pointer;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .prev:hover,
  #lightbox .carousel-inner .item .modal-carousel-nav .next:hover {
    opacity: 0.8;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .prev.none::before, #lightbox .carousel-inner .item .modal-carousel-nav .prev.none::after,
  #lightbox .carousel-inner .item .modal-carousel-nav .next.none::before,
  #lightbox .carousel-inner .item .modal-carousel-nav .next.none::after {
    display: none;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .prev::before {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    left: -30px;
    width: 12px;
    height: 12px;
    background-image: url(../images/common/ico-arrow-prev.svg);
    background-repeat: no-repeat;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .next {
    text-align: right;
  }
  #lightbox .carousel-inner .item .modal-carousel-nav .next::after {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: -35px;
    width: 12px;
    height: 12px;
    background-image: url(../images/common/ico-arrow-next.svg);
    background-repeat: no-repeat;
  }
  /* ***************************************************
   32の制度 利用者の声
  *************************************************** */
  .voice-content .voice-heading {
    position: relative;
    width: 980px;
    height: 385px;
    margin: 0 auto 40px;
    max-width: 100%;
    background-image: url(../images/company/bg-voice.png);
    background-repeat: no-repeat;
  }
  .voice-content .voice-heading hgroup {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    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;
    width: 240px;
    height: 240px;
    background-color: #fff;
    background-image: url(../images/company/bg-voice-ttl.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
  }
  .voice-content .voice-heading h2 {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 24px;
    font-weight: 600;
  }
  .voice-content .voice-heading b {
    display: block;
    margin: 12px auto;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.125em;
  }
  .voice-content .voice-heading small {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
  }
  .voice-content .voice-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33% - 32px), 1fr));
    gap: 36px 32px;
  }
  .voice-content .voice-wrapper .voice {
    position: relative;
    padding: 20px;
    border: 2px solid #DDDDDD;
  }
  .voice-content .voice-wrapper .voice::after {
    content: "";
    position: absolute;
    bottom: -11px;
    right: 36px;
    width: 17px;
    height: 17px;
    background-color: #fff;
    border-bottom: 2px solid #ddd;
    border-right: 2px solid #ddd;
    -webkit-transform: rotate(45deg) skew(22.5deg, 22.5deg);
            transform: rotate(45deg) skew(22.5deg, 22.5deg);
  }
  .voice-content .voice-wrapper .voice .title {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
  }
  .voice-content .voice-wrapper .voice p {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }
  /* ***************************************************
   受賞歴
  *************************************************** */
  .awards-wrapper ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc(33% - 60px), 1fr));
    gap: 32px;
  }
  .awards-wrapper ul li {
    font-size: 13px;
  }
  .awards-wrapper ul li .img {
    display: grid;
    place-items: center;
    width: 100%;
    height: 120px;
    margin-bottom: 12px;
    border: 1px solid #EEEEEE;
    border-radius: 4px;
  }
  .awards-wrapper ul li .img img {
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .awards-wrapper ul li .name {
    margin: 0 auto 4px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-weight: 600;
    color: #000;
    text-align: center;
  }
  .awards-wrapper ul li .result {
    display: block;
    color: #999999;
    text-align: center;
  }
  /* ***************************************************
   メッセージ
  *************************************************** */
  .message-title {
    margin: 128px auto 40px;
    text-align: center;
  }
  .message-content {
    text-align: center;
    line-height: 2em;
  }
  .message-content p {
    margin-bottom: 2em;
  }
  .message-sign {
    margin-top: 60px;
    text-align: right;
    line-height: 2em;
  }
  .message-sign img {
    width: 220px;
  }
}