@media screen and (max-width:979px) {
  html {
    font-size: 14px;
    line-height: 1.8;
  }

  input[type="button"],
  input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
  }

  .br-sp {
    display: none;
  }

  /* ------------------------------------------------------------
    ヘッダー部分
------------------------------------------------------------ */
  header {
    width: 100%;
    height: 60px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
  }

  header .logo {
    padding: 0 0 0 5vw;
    width: 156px;
    height: 25px;
  }

  header .logo img {
    width: 100%;
    height: 100%;
  }

  header .openbtn {
    position: fixed;
    width: 45px;
    height: 45px;
    background: #619fbb;
    cursor: pointer;
    top: 13px;
    right: 15px;
    border-radius: 50%;
    z-index: 9999;
  }

  header .openbtn.active {
    background: #e26fa4;
  }

  header .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 13px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 40%;
  }

  header .openbtn span:nth-of-type(1) {
    top: 16px;
  }

  header .openbtn span:nth-of-type(2) {
    top: 22px;
  }

  header .openbtn span:nth-of-type(3) {
    top: 28px;
  }

  header .openbtn.active span:nth-of-type(1) {
    top: 16px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 40%;
  }

  header .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  header .openbtn.active span:nth-of-type(3) {
    top: 28px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 40%;
  }

  header #gnav.panelactive {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
  }

  header .circle-bg {
    position: fixed;
    z-index: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #619fbb;
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all .6s;
  }

  header .circle-bg.circleactive {
    transform: scale(50);
  }

  header #gnav-list {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  header #gnav.panelactive #gnav-list {
    display: block;
  }

  header #gnav ul {
    opacity: 0;
    position: absolute;
    padding: 0 5vw;
    z-index: 999;
    top: 70px;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  header #gnav.panelactive ul {
    opacity: 1;
  }

  header #gnav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  header #gnav li:not(.header__sns__item):not(.contact) {
    width: 100%;
    text-align: left;
    list-style: none;
    border-bottom: 1px solid #96bfd2;
  }

  header #gnav li:not(.header__sns__item) a {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 15px 0;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }

  header #gnav li.contact {
    margin: 30px auto;
    width: 100%;
  }

  header #gnav li.contact a {
    margin: 0 auto;
    width: 300px;
    display: block;
    background: #fff;
    text-align: center;
    position: relative;
    padding: 25px 0;
    color: #619fbb;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 60px;
    border: 2px solid #619fbb;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }

  header #gnav li.contact a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(/images/common/arrow-color.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .header__sns__item {}

  .header__sns__item a {
    display: block;
    width: 20px;
    height: 20px;
    padding: 10px;
    background: #96bfd2;
    border-radius: 50%;
    margin-right: 10px;
  }

  /* ------------------------------------------------------------
    フッター部分
------------------------------------------------------------ */
  .contactArea {
    background: #619fbb;
    margin: 0 5vw;
    padding: 60px 5vw;
    position: relative;
    z-index: 0;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    overflow: hidden;
  }

  .contactArea .heading {
    text-align: center;
  }

  .contactArea .heading::before {
    content: attr(data-en);
    display: block;
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
  }

  .contactArea .heading:after {
    background: #fff;
  }

  .contactArea .contact-lead {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    font-weight: bold;
  }

  .contactArea .btnMore {
    margin: 30px auto;
    width: 300px;
  }

  .contactArea .btnMore a {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    color: #619fbb;
    background: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 45px;
    border: #fff solid 2px;
  }

  .contactArea .btnMore a:hover {
    background: #619fbb;
    color: #fff;
    border: #fff solid 2px;
  }

  .contactArea .contact-list {
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .contactArea .contact-list .contact-list-item {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-weight: bold;
    text-align: center;
  }

  .contactArea .tel a {
    font-size: 2.6rem;
    color: #fff;
    line-height: 45px;
    font-weight: bold;
    letter-spacing: 0.25rem;
  }

  .contactArea .tel:before {
    background: url(../images/common/icon_tel.png) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    content: "";
    width: 40px;
    height: 40px;
    display: inline-block;
    vertical-align: top;
    margin: 0 15px 0 0;
  }

  .contactArea .time {
    margin: 15px 0 0;
    font-size: 1.2rem;
  }

  /* ------------------------------------------------------------
    フッター部分
------------------------------------------------------------ */
  footer {
    padding: 40px 0 0;
    position: relative;
  }

  footer .info-wrap {
    margin: 0 5vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }

  footer .info-wrap .information {
    width: 100%;
  }

  footer .info-wrap .information figure {
    margin: 20px 0;
    width: 200px;
  }

  footer .info-wrap .information figure img {
    width: 100%;
  }

  footer .info-wrap .information dl {
    width: 100%;
  }

  footer .info-wrap .information dl dt {
    margin: 20px 0 10px;
    font-size: 1.4rem;
    font-weight: bold;
  }

  footer .info-wrap .information dl dd .sns {
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-top: 30px;
  }

  footer .info-wrap .information dl dd .sns li {
    width: 20px;
    height: 20px;
    padding: 10px;
    background: #619fbb;
    border-radius: 50%;
  }

  footer .info-wrap .information dl dd .sns li:not(:last-of-type) {
    margin-right: 10px;
  }

  footer .info-wrap .information dl dd:not(:last-of-type) {
    margin: 0 0 5px;
  }

  footer .footer-nav {
    margin: 30px 0 80px;
    width: 100%;
  }

  footer .info-wrap nav ul {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  footer .info-wrap nav ul li {
    width: 50%;
  }

  footer .info-wrap nav ul li a {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    display: block;
    font-weight: bold;
    padding: 8px 0;
  }

  footer .btn_topto a {
    position: absolute;
    bottom: 70px;
    right: 15px;
    width: 50px;
    height: 50px;
    padding: 10px;
    background: #619fbb;
    border-radius: 50%;
    transition: ease .2s;
  }

  footer .btn_topto a img {
    width: 20px;
    height: 20px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
  }

  footer .btn_topto a:hover {
    bottom: 80px;
    transition: all .3s;
  }

  footer small {
    background: #619fbb;
    display: block;
    margin: 25px 0 0;
    padding: 0 5vw;
    font-size: 1rem;
    color: #fff;
    line-height: 50px;
  }

  /* ------------------------------------------------------------
    パンくず部分
------------------------------------------------------------ */
  .pankuzu {
    margin: 10px 5vw 0;
  }

  .pankuzu__list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: scroll;
  }

  .pankuzu__list li {
    font-size: 0.9rem;
    line-height: 2.0;
  }

  .pankuzu__list li:first-of-type::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f015';
    margin-right: 0.5rem;
  }

  .pankuzu__list li+li {
    margin-left: 1rem;
  }

  .pankuzu__list li:not(:last-of-type)::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f0da';
    margin-left: 1rem;
  }

  /* ------------------------------------------------------------
    共有クラス部分
------------------------------------------------------------ */
  .pagetitle {
    width: 100%;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
  }

  .pagetitle:before {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .pagetitle hgroup {
    max-width: 90vw;
    width: 100%;
    text-align: left;
    line-height: 1.0;
    color: #fff;
    text-shadow: 0 0 5px #000;
    position: relative;
    margin: 0 auto;
  }

  .pagetitle hgroup h1 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 3.6rem;
    font-weight: bold;
    margin: 0 0 20px;
    letter-spacing: 0.05em;
    line-height: 1.1;
  }

  .pagetitle hgroup small {
    display: block;
    font-size: 2rem;
    letter-spacing: 0.05em;
  }

  .heading {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    margin: 0 0 30px;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: left;
    position: relative;
  }

  .heading::before {
    content: attr(data-en);
    display: block;
    color: #619fbb;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  .recruitTop .heading::before {
    color: #fff;
  }

  .btnMore {
    width: 280px;
    margin: 40px 0 0;
  }

  .btnMore a {
    display: block;
    text-align: center;
    position: relative;
    padding: 20px 0;
    color: #619fbb;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 60px;
    border: 2px solid #619fbb;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }

  .btnMore a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(/images/common/arrow-color.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .btnMore a:hover {
    background: #619fbb;
    color: #fff;
  }

  .btnMore a:hover:after {
    background-image: url(/images/common/arrow.svg);
    right: 20px;
    transition: all .3s;
  }

  .btnList {
    margin: 20px 5vw 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .btnList li {
    width: 40vw;
  }

  .btnList li.prev,
  .btnList li.next {
    width: 20vw
  }

  .btnList li:not(:first-of-type) {
    margin-left: 20px;
  }

  .btnList li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 20px;
    color: #619fbb;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 60px;
    border: 2px solid #619fbb;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }

  .btnList .prev a,
  .btnList .next a {
    display: flex;
    justify-content: center;
    padding: 20px 0;
  }

  .btnList li:not(.prev):not(.next) a:after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(/images/common/arrow-return-color.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .btnList li a:hover {
    background: #619fbb;
    color: #fff;
  }

  .pager ul {
    margin: 0 0 80px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .pager ul li:not(:last-of-type) {
    margin-right: 20px;
  }

  .pager ul li span,
  .pager ul li a {
    display: block;
    padding: 0 10px;
    line-height: 35px;
  }

  .pager ul li a {
    width: 35px;
    height: 35px;
    text-align: center;
    background: #eee;
    color: #3a3a3a;
    border-radius: 50%;
    overflow: hidden;
  }

  .pager ul li a:hover,
  .pager ul .active {
    width: 35px;
    height: 35px;
    text-align: center;
    background: #619fbb;
    color: #fff;
    border-radius: 50%;
    overflow: hidden;
  }

  .table {
    margin: 0 0 40px;
    border-bottom: #ddd solid 1px;
  }

  .table>dt {
    padding: 20px 0 10px;
    border-top: #ddd solid 1px;
    color: #757575;
    font-weight: bold;
  }

  .table>dd {
    padding: 0 0 20px;
  }

  .table>dd dt:not(:first-of-type) {
    margin: 20px 0 0;
  }

  .table>dd a:not(.tel a):not(.notel) {
    text-decoration: none;
    color: #33a0b8;
  }

  .table>dd a:hover {
    text-decoration: none;
    color: #619fbb;
  }

  .table>dd .notel {
    color: #3a3a3a;
    pointer-events: none;
    text-decoration: none;
  }

  .table>dd a[href$=".pdf"]:after {
    content: " ";
    display: inline-block;
    width: 24px;
    height: 24px;
    padding-right: 10px;
    background: url(../images/common/pdfico.png) no-repeat center;
  }

  .table>dd .businesslist {
    list-style: none;
    text-align: justify;
  }

  .table>dd .businesslist li {
    padding: 0 0 0 20px;
    list-style: none;
    position: relative;
  }

  .table>dd .businesslist li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999;
    position: absolute;
    top: 10px;
    left: 0;
  }

  .table>dd .businesslist li+li {
    margin-top: .5rem;
  }

  .table>dd .timelist {
    margin: 0 0;
  }

  .table>dd .timelist li {
    position: relative;
    list-style: none;
  }

  .table>dd .timelist li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
  }

  .table>dd .timelist li+li {
    margin-top: .5rem;
  }

  .table>dd .welfarelist {
    margin: 0 0;
  }

  .table>dd .welfarelist li {
    padding: 0 0 0 20px;
    position: relative;
    list-style: none !important;
  }

  .table>dd .welfarelist li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f005";
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 0;
    color: #494949;
  }

  .table>dd .welfarelist li+li {
    margin-top: .5rem;
  }

  .table>dd .welfare2list {
    margin: 0 0;
  }

  .table>dd .welfare2list li {
    padding: 0 0 0 20px;
    position: relative;
    list-style: none !important;
  }

  .table>dd .welfare2list li:before {
    font-family: "Font Awesome 5 Free";
    content: "\f005";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #494949;
  }

  .table>dd .welfare2list li+li {
    margin-top: .5rem;
  }

  /* ------------------------------------------------------------
    トップページ部分
------------------------------------------------------------ */
  .mainimage {
    display: none;
    background: url(../images/mainimage.jpg) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: relative;
    display: table;
    z-index: 0;
  }

  .mainimage hgroup {
    display: table-cell;
    vertical-align: middle;
    line-height: 1.4;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 5px #000;
  }

  .mainimage hgroup h2 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 3rem;
    letter-spacing: 0.1em;
    font-weight: bold;
    text-align: left;
    margin: 0 5vw;
  }

  .mainimage .swiper-slide {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
  }

  .mainimage .swiper-slide:after {
    content: "";
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
  }

  .mainimage .swiper-slide li {
    background: #fff;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: -0%;
  }

  .mainimage .swiper-slide li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mainimage .swiper-slide li.active {
    z-index: 9;
  }

  .mainimage .swiper-slide li.last-active {
    z-index: 8;
  }

  .aboutTop {
    padding: 60px 5vw;
    position: relative;
  }

  .aboutTop .aboutTop-wrap {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .aboutTop .aboutTop-wrap .aboutTop-txtarea {
    width: 100%;
    box-sizing: border-box;
    padding-bottom: 30px;
  }

  .aboutTop .aboutTop-wrap .aboutTop-txtarea p {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 2.0;
    text-align: left;
  }

  .aboutTop .aboutTop-wrap .aboutTop-image {
    width: 100%;
    min-height: 320px;
    display: flex;
    justify-content: center;
    position: relative;
  }

  .aboutTop .aboutTop-wrap .aboutTop-image .aboutTop-image-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
  }

  .aboutTop .aboutTop-wrap .aboutTop-image .aboutTop-image-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    z-index: 0;
  }

  .serviceTop {
    background: #edf3f7;
    padding: 60px 5vw;
    border-radius: 60px;
    overflow: hidden;
  }

  .serviceTop .servicelist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-top: #ddd solid 1px;
  }

  .serviceTop .servicelist li {
    width: 100%;
  }

  .serviceTop .servicelist li a {
    display: block;
    position: relative;
    color: #3a3a3a;
    border-bottom: #ddd solid 1px;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }

  .serviceTop .servicelist li:last-of-type a {
    border-bottom: none;
  }

  .serviceTop .servicelist li a .serviceTop-wrap {
    width: 100%;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .serviceTop .servicelist li a .serviceTop-wrap .serviseTop-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
  }

  .serviceTop .servicelist li a .serviceTop-wrap .serviceTop-wrap-txterea {
    margin: 15px 0;
    width: 76%;
  }

  .serviceTop .servicelist li a .serviceTop-wrap .btn-arrow {
    margin: 15px 0;
    background: #619fbb;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    text-align: center;
    position: relative;
    transition: ease .2s;
  }

  .serviceTop .servicelist li a .serviceTop-wrap .btn-arrow img {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: auto;
  }

  .serviceTop .servicelist li a:hover .serviceTop-wrap .btn-arrow img {
    left: 70%;
    transform: translateX(-70%);
    transition: all .3s;
  }

  .serviceTop .servicelist li a h3 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: left;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
  }

  .serviceTop .servicelist li a h3::before {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    content: attr(data-en);
    display: block;
    color: #619fbb;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  .serviceTop .servicelist li a p {}

  .facilityTop {
    padding: 60px 5vw;
  }


  .facilityTop .facilitylist {
    margin: 0 0 20px;
    padding: 0 0 20px;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    width: 100%;
    overflow-x: scroll;
    display: flex;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }

  .facilitylist .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0)
  }

  .facilityTop .facilitylist li {
    background: #fff;
    scroll-snap-align: start;
    height: 100%;
    width: 65vw;
    flex: none;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .facilityTop .facilitylist li a {
    color: #3a3a3a;
  }

  .facilityTop .facilitylist li a figure {
    height: 65vw;
    margin: 0 0 5vw;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .facilityTop .facilitylist li a figure:after {
    background: rgba(0, 0, 0, 0.22);
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  .facilityTop .facilitylist li a figure div {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
  }

  .facilityTop .facilitylist li a .tag {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    display: inline-block;
    background: #e26fa4;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0 10px;
    color: #fff;
    text-align: left;
    border-radius: 6px;
  }

  .facilityTop .facilitylist li a h3 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    margin: 10px 0 0;
    font-size: 1.4rem;
    text-align: left;
    font-weight: bold;
  }

  .recruitTop {
    background: url(../images/top/bg_recruit.jpg);
    background-repeat: no-repeat;
    background-position: 40% 50%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    padding: 80px 5vw;
    position: relative;
    z-index: 0;
    color: #fff;
    border-radius: 60px;
    overflow: hidden;
  }

  .recruitTop:before {
    content: "";
    background: rgba(97, 159, 187, 0.44);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
  }

  .recruitTop .heading {
    margin: 0 0 20px;
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-weight: bold;
    font-size: 2.6rem;
    line-height: 1.5;
    text-shadow: 0 0 5px #000;
    letter-spacing: 0.1em;
    text-align: left;
    position: relative;
  }

  .recruitTop .heading::before {
    content: attr(data-en);
    display: block;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
  }

  .recruitTop-wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .recruitTop .recruitTop-wrap p {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2.0;
    font-weight: bold;
    text-align: left;
    margin: 0;
    text-shadow: 0 0 5px #000;
  }

  .recruitTop .recruitTop-wrap .btnMore a {
    border: 2px solid #fff;
    color: #fff;
  }

  .recruitTop .recruitTop-wrap .btnMore a:after {
    background-image: url(/images/common/arrow.svg);
  }

  .recruitTop .recruitTop-wrap .btnMore a:hover {
    background: #fff;
    color: #619fbb;
  }

  .recruitTop .recruitTop-wrap .btnMore a:hover:after {
    background-image: url(/images/common/arrow-color.svg);
  }

  .newsTop {
    padding: 60px 5vw;
    position: relative;
    z-index: 0;
  }

  .newslist {
    margin: 0 auto;
    border-top: #ddd solid 1px;
  }

  .newslist li a {
    padding: 30px 30px 30px 0;
    display: block;
    color: #3a3a3a;
    border-bottom: #ddd solid 1px;
    position: relative;
  }

  .newslist li a:after {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-top: #ddd solid 2px;
    border-right: #ddd solid 2px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .newslist li a dl {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .newslist li a dl dt {
    width: 25%;
    margin-right: 1%;
    line-height: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    color: #999;
  }

  .newslist li a dl dd {
    font-size: 1.4rem;
    font-weight: bold;
  }

  .newslist li a dl dd.label {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    width: 25%;
    margin: 0 48% 15px 0;
    color: #3a3a3a;
    font-size: 0.8em;
    text-align: center;
    line-height: 25px;
    border-radius: 25px;
  }

  /* ------------------------------------------------------------
    新着情報部分
------------------------------------------------------------ */
  .news .pagetitle {
    background: url(../images/news/ttl_news.jpg) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .news .newslist {
    margin: 60px 5vw;
  }

  .news .entries {
    margin: 60px 5vw;
  }

  .news .entries .heading {
    line-height: 1.5;
  }

  .news .entries .btnMore {
    margin: 40px auto 80px;
  }

  .news .entries .btnMore a:after {
    width: 25px;
    height: 25px;
    background-image: url(/images/common/arrow-return-color.svg);
  }

  .news .entries .deta {
    margin: 0 auto 30px;
    text-align: right;
    font-weight: bold;
    font-size: 1.2rem;
    color: #757575;
  }

  .news .entries .commentArea {
    line-height: 1.8;
  }

  .news .entries .commentArea h1,
  .news .entries .commentArea h2,
  .news .entries .commentArea h3 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    position: relative;
    padding-bottom: 7px;
    width: 100%;
    color: #619fbb;
    font-size: 2.0rem;
    font-weight: bold;
    border-bottom: 5px solid #c7c7c7;
    margin-bottom: 1rem;
  }

  .news .entries .commentArea h1::after,
  .news .entries .commentArea h2::after,
  .news .entries .commentArea h3::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 70px;
    height: 5px;
    background: #619fbb;
  }

  .news .entries .commentArea h4 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    border-bottom: solid 3px #3a3a3a;
    width: 100%;
    color: #3a3a3a;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 1rem;
  }

  .news .entries .commentArea h5 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    padding: 0.1em 0;
    color: #619fbb;
    background: transparent;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.6rem;
  }

  .news .entries .commentArea p+p {
    margin-top: 1rem;
  }

  .news .entries .commentArea p+h1,
  .news .entries .commentArea p+h2,
  .news .entries .commentArea p+h3,
  .news .entries .commentArea p+h4,
  .news .entries .commentArea p+h5,
  .news .entries .commentArea p+h6 {
    margin-top: 1.5rem;
  }

  .news .entries .commentArea p a {
    color: #33a0b8;
  }

  .news .entries .commentArea p a:hover {
    text-decoration: none;
    color: #619fbb;
  }

  .news .entries .commentArea strong {
    font-weight: bold;
  }

  .news .entries .commentArea img {
    max-width: 100%;
    height: auto !important;
  }

  .news .entries .commentArea iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: 100%;
    border: none;
  }

  .news .entries .commentArea ul {
    list-style: none;
    margin: 20px auto;
    background: #edf3f7;
    border-radius: 5px;
    padding: 1em 1em 1em 2em;
    text-align: justify;
  }

  .news .entries .commentArea ul li {
    padding: 0 0 0 20px;
    list-style: none;
    position: relative;
  }

  .news .entries .commentArea ul li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #619fbb;
    position: absolute;
    top: 10px;
    left: 0;
  }

  .news .entries .commentArea ul li+li {
    margin-top: .5rem;
  }

  .news .entries .commentArea ol {
    counter-reset: item;
    list-style-type: none;
    background: #edf3f7;
    border-radius: 5px;
    margin: 20px auto;
    padding: 1em 1em 1em 2em;
    text-align: justify;
  }

  .news .entries .commentArea ol li {
    text-indent: -1.5em;
    padding-left: 1.5em;
  }

  .news .entries .commentArea ol li:before {
    counter-increment: item;
    content: counter(item)'.';
    padding-right: .5em;
    color: #619fbb;
    font-weight: bold;
  }

  .news .entries .commentArea ol li+li {
    margin-top: .5rem;
  }

  .news .entries .commentArea .type1 {
    margin-bottom: 10px;
    border-collapse: collapse;
    margin-top: 1.5rem;
    border-bottom: #ddd solid 1px;
    width: 100%;
  }

  .news .entries .commentArea .type1 tr,
  .news .entries .commentArea .type1 th,
  .news .entries .commentArea .type1 td {
    display: block;
    border: none;
  }

  .news .entries .commentArea .type1 td {
    padding: 1vw 0 5vw;
  }

  .news .entries .commentArea .type1 th {
    color: #757575;
    font-weight: bold;
    text-align: left;
    border-top: #ddd solid 1px;
    padding: 5vw 0 1vw;
  }

  .news .entries .commentArea .type1 th a,
  .news .entries .commentArea .type1 td a {
    text-decoration: none;
    color: #33a0b8;
  }

  .news .entries .commentArea .type1 th a:hover,
  .news .entries .commentArea .type1 td a:hover {
    text-decoration: none;
    color: #619fbb;
  }

  /* ------------------------------------------------------------
    事業内容部分
------------------------------------------------------------ */
  .service .pagetitle {
    background: url(../images/service/ttl_service.jpg) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .service .type {
    padding: 60px 5vw;
  }

  .service .type:nth-of-type(2n) {
    background: #edf3f7;
    border-radius: 60px;
    overflow: hidden;
    position: relative;
  }

  .service .type p {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 2.0;
  }

  .service .servicelist {
    margin: 30px auto 0;
  }

  .service .servicelist li {}

  .service .servicelist li:not(:last-of-type) {
    margin-bottom: 30px;
  }

  .service .servicelist li figure {
    margin: 0 0 15px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  }

  .service .servicelist li figure img {
    max-width: 100%;
    border: #ddd solid 1px;
  }

  .service .servicelist li .commentArea dt {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 2.0rem;
    font-weight: bold;
    color: #619fbb;
    margin: 0 0 15px;
    position: relative;
  }

  /* ------------------------------------------------------------
    施設紹介部分
------------------------------------------------------------ */
  .facility .pagetitle {
    background: url(../images/facility/ttl_facility.jpg) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .facility .facilitylist {
    width: 75vw;
    margin: 60px auto 40px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .facility .facilitylist li {
    background: #fff;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .facility .facilitylist li a {
    color: #3a3a3a;
  }

  .facility .facilitylist li a figure {
    height: 75vw;
    margin: 0 0 5vw;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .facility .facilitylist li a figure div {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
  }

  .facility .facilitylist li a .tag {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    display: inline-block;
    background: #e26fa4;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0 10px;
    color: #fff;
    text-align: left;
    border-radius: 6px;
  }

  .facility .facilitylist li a h3 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    margin: 10px 0 0;
    font-size: 1.4rem;
    text-align: left;
    font-weight: bold;
  }

  .facility .facilitylist li:not(:first-of-type) {
    margin-top: 30px;
  }

  .facility .entries {
    padding: 40px 0;
    position: relative;
  }

  .facility .entries .heading {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    padding: 0 5vw 20px;
    font-size: 2.6rem;
    line-height: 1.5;
    letter-spacing: 0.1rem;
    text-align: left;
    position: relative;
  }

  .facility .entries .imageslider {
    background: #edf3f7;
    margin: 0 auto 40px;
    padding: 60px 0 40px;
    border-radius: 60px;
    overflow: hidden;
    position: relative;
  }

  .facility .entries .imageslider .tag {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    background: #e26fa4;
    width: 20vw;
    display: inline-block;
    line-height: 30px;
    font-size: 1.0rem;
    font-weight: bold;
    text-align: center;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
    border-radius: 0 0 40px 40px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
  }

  .facility .entries .imageslider .slideframe {
    width: 90vw;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
  }

  .facility .entries .imageslider .slideframe .slide {
    display: -webkit-flex;
    display: flex;
  }

  .facility .entries .imageslider .slideframe .slide li {
    width: 90vw;
    text-align: center;
  }

  .facility .entries .imageslider .slideframe .slide li img {
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
  }

  .facility .entries .imageslider .slideframe nav {
    width: 85vw;
    height: 20px;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .facility .entries .imageslider .slideframe nav ul {
    display: -webkit-flex;
    display: flex;
  }

  .facility .entries .imageslider .slideframe nav ul li {
    width: 20px;
  }

  .facility .entries .imageslider .slideframe nav ul li a {
    width: 20px;
    height: 20px;
    display: block;
    position: relative;
  }

  .facility .entries .imageslider .slideframe nav ul li.prev a:before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-bottom: #619fbb solid 2px;
    border-left: #619fbb solid 2px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .facility .entries .imageslider .slideframe nav ul li.next a:before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-top: #619fbb solid 2px;
    border-right: #619fbb solid 2px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .facility .entries .imageslider .slideframe nav ul li.next {
    margin-left: auto;
  }

  .facility .entries .imageslider nav ol {
    margin: 0 5vw;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }

  .facility .entries .imageslider nav ol li {
    width: 19%;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  }

  .facility .entries .imageslider nav ol li:not(:first-of-type) {
    margin-left: 1%;
  }

  .facility .entries .imageslider nav ol li img {
    max-width: 100%;
    overflow: hidden;
    border-radius: 5px;
  }

  .facility .entries .commentArea {
    line-height: 1.8;
    margin: 0 5vw;
  }

  .facility .entries .commentArea h1,
  .facility .entries .commentArea h2,
  .facility .entries .commentArea h3 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    position: relative;
    padding-bottom: 7px;
    width: 100%;
    color: #619fbb;
    font-size: 2.0rem;
    font-weight: bold;
    border-bottom: 5px solid #c7c7c7;
    margin-bottom: 1rem;
  }

  .facility .entries .commentArea h1::after,
  .facility .entries .commentArea h2::after,
  .facility .entries .commentArea h3::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 70px;
    height: 5px;
    background: #619fbb;
  }

  .facility .entries .commentArea h4 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    border-bottom: solid 3px #3a3a3a;
    width: 100%;
    color: #3a3a3a;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 0 1rem;
  }

  .facility .entries .commentArea h5 {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    padding: 0.1em 0;
    color: #619fbb;
    background: transparent;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-weight: bold;
    font-size: 1.6rem;
  }

  .facility .entries .commentArea p+p {
    margin-top: 1rem;
  }

  .facility .entries .commentArea p+h1,
  .facility .entries .commentArea p+h2,
  .facility .entries .commentArea p+h3,
  .facility .entries .commentArea p+h4,
  .facility .entries .commentArea p+h5,
  .facility .entries .commentArea p+h6 {
    margin-top: 1.5rem;
  }

  .facility .entries .commentArea p a {
    color: #33a0b8;
  }

  .facility .entries .commentArea p a:hover {
    text-decoration: none;
    color: #619fbb;
  }

  .facility .entries .commentArea strong {
    font-weight: bold;
  }

  .facility .entries .commentArea img {
    max-width: 100%;
    height: auto !important;
    overflow: hidden;
    border-radius: 20px;
  }

  .facility .entries .commentArea iframe {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: 100%;
    border: none;
    overflow: hidden;
    border-radius: 20px;
  }

  .facility .entries .commentArea ul {
    list-style: none;
    margin: 20px auto;
    background: #edf3f7;
    border-radius: 5px;
    padding: 1em 1em 1em 2em;
    text-align: justify;
  }

  .facility .entries .commentArea ul li {
    padding: 0 0 0 20px;
    list-style: none;
    position: relative;
  }

  .facility .entries .commentArea ul li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #619fbb;
    position: absolute;
    top: 10px;
    left: 0;
  }

  .facility .entries .commentArea ul li+li {
    margin-top: .5rem;
  }

  .facility .entries .commentArea ol {
    counter-reset: item;
    list-style-type: none;
    background: #edf3f7;
    border-radius: 5px;
    margin: 20px auto;
    padding: 1em 1em 1em 2em;
    text-align: justify;
  }

  .facility .entries .commentArea ol li {
    text-indent: -1.5em;
    padding-left: 1.5em;
  }

  .facility .entries .commentArea ol li:before {
    counter-increment: item;
    content: counter(item)'.';
    padding-right: .5em;
    color: #619fbb;
    font-weight: bold;
  }

  .facility .entries .commentArea ol li+li {
    margin-top: .5rem;
  }

  .facility .entries .commentArea .pointbox {
    position: relative;
    margin: 2em 0 3em;
    padding: 1.5em 1em 1em;
    border: solid 3px #EC1119;
    border-radius: 8px;
  }

  .facility .entries .commentArea .pointbox .box-title {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    position: absolute;
    display: inline-block;
    top: -16px;
    left: 10px;
    padding: 0 9px;
    line-height: 1.5;
    font-size: 1.4rem;
    background: #FFF;
    color: #EC1119;
    font-weight: bold;
  }

  .facility .entries .commentArea .pointbox p {
    margin: 0;
    padding: 0;
  }

  .facility .entries .commentArea figure:not(:nth-of-type(2n)) {
    margin-bottom: 20px;
  }

  .facility .entries .commentArea figure figcaption {
    text-align: center;
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
  }

  .facility .entries .commentArea .type1 {
    margin-bottom: 15px;
    border-collapse: collapse;
    margin-top: 1.5rem;
    border-bottom: #ddd solid 1px;
    width: 100%;
  }

  .facility .entries .commentArea .type1 tr,
  .facility .entries .commentArea .type1 th,
  .facility .entries .commentArea .type1 td {
    display: block;
    border: none;
  }

  .facility .entries .commentArea .type1 td {
    padding: 1vw 0 5vw;
  }

  .facility .entries .commentArea .type1 th {
    color: #757575;
    font-weight: bold;
    text-align: left;
    border-top: #ddd solid 1px;
    padding: 5vw 0 1vw;
  }

  .facility .entries .commentArea .type1 th a,
  .facility .entries .commentArea .type1 td a {
    text-decoration: none;
    color: #33a0b8;
  }

  .facility .entries .commentArea .type1 th a:hover,
  .facility .entries .commentArea .type1 td a:hover {
    text-decoration: none;
    color: #619fbb;
  }

  .facility .entries .commentArea .js-scrollable {
    overflow-x: auto;
  }

  .facility .entries .commentArea .js-scrollable::-webkit-scrollbar {
    background: #ccc;
    height: 5px;
  }

  .facility .entries .commentArea .js-scrollable::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 5px;
  }

  .facility .entries .commentArea .js-scrollable::-webkit-scrollbar-track-piece {
    background: #efefef;
  }

  .facility .entries .commentArea .type2 {
    border-collapse: collapse;
    margin-top: 1.5rem;
    width: 100%;
    width: 120vw;
    margin-bottom: 15px;
  }

  .facility .entries .commentArea .type2 th,
  .facility .entries .commentArea .type2 td {
    width: 23%;
    border-bottom: #ddd solid 1px;
    border-top: #ddd solid 1px;
    text-align: center;
    padding: 5vw 10px;
  }

  .facility .entries .commentArea .type2 th {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    background: #f5f5f5;
    white-space: nowrap;
    position: sticky;
    top: 0;
  }

  .facility .entries .commentArea .type2 th:nth-of-type(1) {
    width: 30%;
  }

  .facility .entries .commentArea .type2 th a,
  .facility .entries .commentArea .type2 td a {
    text-decoration: none;
    color: #33a0b8;
  }

  .facility .entries .commentArea .type2 th a:hover,
  .facility .entries .commentArea .type2 td a:hover {
    text-decoration: none;
    color: #619fbb;
  }

  .facility .entries .commentArea .type2 tfoot td {
    font-weight: bold;
  }

  /* --- FAQ  ----- */
  .accordion {
    /*margin: 3em auto;
    max-width: 60vw;*/
    max-width: 100%;
    border-bottom: dotted 2px #ddd;
  }

  .toggle {
    display: none;
  }

  .option {
    position: relative;
    /*margin-bottom: 1em;*/
  }

  .title,
  .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
  }

  .title {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    border-top: dotted 2px #ddd;
    padding: 15px 40px 15px 65px;
    /*display: block;*/
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    display: grid;
    place-items: center start;
  }

  .title::after,
  .title::before {
    content: "";
    position: absolute;
    right: 1.25em;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 0.75em;
    background-color: #999;
    transition: all 0.3s;
  }

  .title::after {
    transform: rotate(90deg);
  }

  .content {
    max-height: 0;
    overflow: hidden;
  }

  .content p {
    background: #edf3f7;
    margin: 0;
    padding: 15px 40px 15px 65px;
    font-size: 1em;
    line-height: 1.8;
  }

  .title span {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', serif;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e26fa4;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50%;
    top: 50%;
    left: 15px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
  }

  .content p:before {
    font-family: 'Zen Kaku Gothic New', 'Noto Sans JP', serif;
    content: "A";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #666;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border-radius: 50%;
    top: 20px;
    left: 15px;
    width: 40px;
    height: 40px;
  }

  .toggle:checked+.title+.content {
    max-height: 500px;
    transition: all 1.5s;
  }

  .toggle:checked+.title::before {
    transform: rotate(90deg) !important;
  }

  .ins-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .column {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .responsive-table {
    flex-direction: column;
    padding-top: 15px;
  }

  .table-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
  }

  .item {
    padding: 10px;
    background-color: #edf3f7;
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box;
  }

  .facility .entries .commentArea .telArea {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    margin: 20px auto 40px;
    border: #619fbb solid 5px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 20px;
  }

  .facility .entries .commentArea .telArea dt {
    background: #edf3f7;
    padding: 5vw;
    font-size: 1.4rem;
    font-weight: bold;
    box-sizing: border-box;
  }

  .facility .entries .commentArea .telArea dt small {
    font-size: 1rem;
    margin: 1rem 0 0;
    display: block;
  }

  .facility .entries .commentArea .telArea dd {
    padding: 5vw;
    box-sizing: border-box;
  }

  .facility .entries .commentArea .telArea dd a {
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
  }

  /* ------------------------------------------------------------
    法人案内部分
------------------------------------------------------------ */
  .about .pagetitle {
    background: url(../images/about/ttl_about.jpg) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .about .message {
    padding: 60px 5vw;
  }

  .about .message .inner figure {
    margin: 0 0 30px;
    overflow: hidden;
    border-radius: 20px;
  }

  .about .message .inner .commentArea {}

  .about .message .inner .commentArea p+p {
    margin-top: 1rem;
  }

  .about .message .inner .commentArea .name {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 20px 0 0;
    text-align: right;
  }

  .about .philosophy {
    padding: 60px 5vw;
    background: #edf3f7;
    border-radius: 60px;
    overflow: hidden;
  }

  .about .philosophy .philosophy__words {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: #619fbb;
    text-align: center;
    letter-spacing: 2px;
  }

  .about .information {
    padding: 60px 5vw;
    position: relative;
  }

  .about .information .information-wrap {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }

  .about .information .information-wrap .information-table {
    margin: 0 0 40px;
    border-bottom: #ddd solid 1px;
  }

  .about .information .information-wrap .information-table>dt {
    padding: 20px 0 10px;
    border-top: #ddd solid 1px;
    color: #757575;
    font-weight: bold;
  }

  .about .information .information-wrap .information-table>dd {
    padding: 0 0 20px;
  }

  .about .information .information-wrap .information-table>dd dt:not(:first-of-type) {
    margin: 20px 0 0;
  }

  .about .information .information-wrap .information-table>dd a:not(.tel a):not(.notel) {
    text-decoration: none;
    color: #33a0b8;
  }

  .about .information .information-wrap .information-table>dd a:hover {
    text-decoration: none;
    color: #619fbb;
  }

  .about .information .information-wrap .information-table>dd .notel {
    color: #3a3a3a;
    pointer-events: none;
    text-decoration: none;
  }

  .about .information .information-wrap .profile-image {
    width: 100%;
  }

  .about .information .information-wrap .profile-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
  }

  .about .access {
    background: #edf3f7;
    padding: 60px 5vw;
    position: relative;
    border-radius: 60px;
    overflow: hidden;
  }

  .about .access .access-wrap {}

  .about .access .access-wrap .map {
    margin: 0 0 30px;
    width: 100%;
  }

  .about .access .access-wrap .map iframe {
    width: 100%;
    aspect-ratio: 3 / 2;
    border-radius: 20px;
    overflow: hidden;
  }

  .about .access .access-info {
    margin: 0 auto;
    line-height: 1.0;
  }

  .about .access .access-info dt {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 1.6rem;
    font-weight: bold;
    color: #619fbb;
    margin: 0 0 20px;
  }

  .about .access .access-info dd {
    line-height: 1.75;
  }

  .about .access .access-info dd+dd {
    margin-top: 7px;
  }

  .about .history {
    padding: 60px 5vw;
  }

  .history__list {
    width: 100%;
    margin: 0 auto 60px;
    display: -webkit-flex;
    display: flex;
  }

  .history__list__item {
    width: 32%;
  }

  .history__list__item:nth-of-type(n+2) {
    margin-left: auto;
  }

  .history__list__item__image {
    max-width: 100%;
    border: #ddd solid 1px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 10px;
  }

  .history__list__item__image img {
    width: 100%;
  }

  .history__list__item__heading {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 30px 0 10px;
    color: #e26fa4;
  }

  .about .history .history-table {
    width: 100%;
    margin: 0 auto;
    list-style: none;
    position: relative;
    box-sizing: border-box;
  }

  .about .history .history-table li {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;

  }

  .about .history .history-table .area {
    padding: 10px 0 10px 15px;
    display: block;
    width: 100%;
  }

  .about .history .history-table li .time {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    display: inline-flex;
    justify-content: right;
    align-items: center;
    align-self: stretch;
    flex-basis: 5em;
    max-width: 5em;
    margin-right: 2em;
    font-weight: bold;
    font-size: 1.4rem;
    color: #757575;
    position: relative;
    box-sizing: border-box;
  }

  .about .history .history-table li .time::after {
    content: "";
    background: #f0f0f0;
    width: 10px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1.3em;
  }

  .about .history .history-table li:first-of-type .time::after {
    top: 155px;
  }

  .about .history .history-table .sch_box {
    position: relative;
    min-height: 1em;
    padding: 1em 0 1em;
  }

  .about .history .history-table .sch_box::before {
    content: "";
    background: #619fbb;
    width: 30px;
    height: 30px;
    margin: auto;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    bottom: 0;
    left: -3.5em;
  }

  .about .history .history-table .sch_box::after {
    content: "";
    background: #fff;
    width: 10px;
    height: 10px;
    margin: auto;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    bottom: 0;
    left: -2.8em;
    z-index: 1;
  }

  .about .history .history-table .sch_title {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: #f39839;
  }

  .about .history .history-table .sch_tx {
    font-size: 1.4rem;
    font-weight: bold;
  }

  .about .history .history-table .sch_image {
    margin-top: 20px;
    width: 100%;
    height: auto;
  }

  .about .history .history-table .sch_image img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
  }

  .about .disclosure {
    background: #edf3f7;
    padding: 60px 5vw;
    margin-bottom: 60px;
    position: relative;
    border-radius: 60px;
    overflow: hidden;
  }

  .about .disclosure .dls_tx {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 2.0;
  }

  .linkbtn {
    width: 280px;
    margin: 40px auto 0;
  }

  .linkbtn a {
    display: block;
    text-align: center;
    position: relative;
    padding: 20px 0;
    background: #fff;
    color: #619fbb;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 60px;
    border: 2px solid #619fbb;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    transition: all .3s ease-out;
  }

  .linkbtn a::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /*width: 70px;
    height: 70px;
    background: #00b0ec;
    border-radius: 50%;*/
  }

  .linkbtn a::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url(/images/common/external-link.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .human__type {
    background: #edf3f7;
    padding: 40px 5vw;
    position: relative;
  }

  .human__type__image {
    height: 210px;
    margin: 0 0 15px;
  }

  .human__type__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .heading__middle {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0 auto 15px;
    color: #619fbb;
  }

  .human__type .heading__middle:not(:first-of-type) {
    margin-top: 40px;
  }

  .human__list {
    max-width: 1020px;
    margin: 0 auto;
    counter-reset: number 0;
  }

  .human__list__item:not(:last-of-type) {
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: #ccc solid 1px;
    position: relative;
  }

  .human__list__item:not(:last-of-type)::after {
    content: '';
    background: #fff;
    width: 12px;
    height: 12px;
    border-bottom: solid 1px #ccc;
    border-right: solid 1px #ccc;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    margin: auto;
  }

  .human__type:nth-of-type(2n) .human__list__item:not(:last-of-type)::after {
    background: #f5f5f5;
  }

  .human__list__item__heading {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
    padding: 0 0 0 70px;
    position: relative;
  }

  .human__list__item>p:not(:first-of-type),
  .human__list__item__point {
    margin: 1rem 0 0;
  }

  .human__list__item .name {
    margin: 30px 0 0;
    text-align: right;
  }

  .human__list__item__point span {
    font-weight: bold;
    background: linear-gradient(transparent 65%, #fff799 50%);
  }

  /* ------------------------------------------------------------
    採用情報部分
------------------------------------------------------------ */
  .recruit .pagetitle {
    background: url(../images/recruit/ttl_recruit.jpg) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .recruit .recruit-message {
    padding: 60px 5vw;
  }

  .recruit .recruit-message .recruit-message-wrap {
    width: 100%;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .recruit .recruit-message .recruit-message-wrap figure {
    width: 100%;
    margin-bottom: 20px;
  }

  .recruit .recruit-message .recruit-message-wrap figure img {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 20px;
  }

  .recruit .recruit-message .recruit-message-wrap .commentArea {
    width: 100%;
    box-sizing: border-box;
  }

  .recruit .recruit-message .recruit-message-wrap .commentArea P {
    font-weight: bold;
  }

  .recruit .recruit-message .recruit-message-wrap .commentArea P+P {
    margin-top: 1rem;
  }

  .recruit .recruit-message .recruit-message-wrap .commentArea .recruit-message-title {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    color: #e26fa4;
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-decoration-color: #e5c046;
    text-decoration-style: wavy;
    text-decoration-line: underline;
    text-decoration-thickness: 5px;
  }

  .recruit .requirementslist {
    margin: 60px 5vw;
  }

  .recruit .requirementslist .occupation-title {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    position: relative;
    padding-bottom: 24px;
    width: 100%;
    color: #e26fa4;
    font-size: 2.0rem;
    font-weight: bold;
    border-bottom: 5px solid #c7c7c7;
  }

  .recruit .requirementslist .occupation-title::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 70px;
    height: 5px;
    background: #e26fa4;
  }

  .recruit .requirementslist .btnMore {
    margin: 40px auto;
  }

  .recruit .culture {
    padding: 60px 5vw;
    background: #edf3f7;
    border-radius: 60px;
    overflow: hidden;
  }

  .recruit .culture .culture-list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 10px auto;
  }

  .recruit .culture .culture-list li {
    width: 100%;
  }

  .recruit .culture .culture-list li:nth-of-type(n+2) {
    margin-top: 20px;
  }

  .recruit .culture .culture-list .culture-image {
    width: 60vw;
    height: auto;
    margin: 0 auto 10px;
  }

  .recruit .culture .culture-list .culture-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
  }

  .recruit .culture .culture-list .culture-heading {
    margin: 20px auto 10px;
    color: #619fbb;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.25rem;
    text-align: center;
  }

  .recruit .culture .culture-list p {
    margin: 0 auto;
    padding: 0 0 10px;
    font-size: 1.0rem;
    font-weight: bold;
    line-height: 1.8;
    text-align: left;
  }

  /* ------------------------------------------------------------
    よくあるご質問部分
------------------------------------------------------------ */
  .faq .pagetitle {
    background: url(../images/faq/ttl_faq.jpg) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .faq .faqlist {
    padding: 40px 0;
  }

  .faq .faqlist .heading {
    padding: 0 5vw;
  }

  .faq .faqlist p {
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0 5vw;
    line-height: 2.0;
  }

  .faq__list {
    margin: 40px 0;
    padding: 40px 5vw;
    background: #edf3f7;
    border-radius: 60px;
    overflow: hidden;
  }

  .faq__list li+li {
    margin-top: 20px;
    padding-top: 20px;
    border-top: #ddd solid 1px;
  }

  .faq__list__heading {
    display: -webkit-flex;
    display: flex;
    margin: 0 0 10px;
    color: #2c3b65;
  }

  .faq__list__heading::before {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    background: #619fbb;
    content: "Q";
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
    display: inline-block;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
  }

  .faq__list__heading span {
    width: -webkit-calc(100% - 40px - 10px);
    width: calc(100% - 40px - 10px);
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #619fbb;
  }

  .faq__list__ans {
    display: -webkit-flex;
    display: flex;
  }

  .faq__list__ans::before {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    background: #3a3a3a;
    content: "A";
    width: 40px;
    height: 40px;
    margin: 0 10px 0 0;
    display: inline-block;
    border-radius: 50%;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 40px;
    text-align: center;
  }

  .faq__list__ans span {
    width: -webkit-calc(100% - 40px - 10px);
    width: calc(100% - 40px - 10px);
  }

  /* ------------------------------------------------------------
    プライバシーポリシー部分
------------------------------------------------------------ */
  .privacy .pagetitle {
    background: url(../images/privacy/ttl_privacy.jpg) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .privacy section {
    padding: 40px 5vw;
  }

  .privacy section p {
    line-height: 1.8;
    margin: 0 auto 20px;
  }

  .privacy__list {
    margin: 0 auto;
    counter-reset: listnum;
    list-style: none;
  }

  .privacy__list dt {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 0.5rem;
  }

  .privacy__list dt::before {
    counter-increment: listnum;
    content: counter(listnum) ".";
    padding-right: 5px;
    font-weight: bold;
  }

  .privacy__list dd a {
    text-decoration: none;
    color: #3da5bc;
  }

  .privacy__list dd a:hover {
    text-decoration: none;
    color: #008CCE;
  }

  .privacy__list dd+dt {
    margin-top: 1.5rem;
  }

  .privacy__list dd ul {
    list-style: none;
    margin: 20px auto 0;
    background: #edf3f7;
    border-radius: 5px;
    padding: 20px;
    text-align: justify;
  }

  .privacy__list ul li {
    padding: 0 0 0 20px;
    list-style: none;
    position: relative;
  }

  .privacy__list ul li:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #999;
    position: absolute;
    top: 10px;
    left: 0;
  }

  .privacy__list ul li+li {
    margin-top: .5rem;
  }

  .privacy address {
    margin: 40px 0 0;
    font-style: normal;
  }

  .privacy__date {
    margin: 20px auto 0;
  }

  /* ------------------------------------------------------------
    お問い合わせ部分
------------------------------------------------------------ */
  .contact .pagetitle {
    background: url(../images/contact/ttl_contact.jpg) center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
  }

  .contact .mailform {
    padding: 40px 5vw;
  }

  .contact .mailform p:not(.contactAgree p) {
    line-height: 1.8;
    margin: 0 auto 40px;
  }

  .contact .mailform .btnMore {
    margin: 40px auto;
  }

  .contact .mailform .telArea {
    font-family: 'Zen Maru Gothic', 'Noto Sans JP', serif;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    border: #ddd solid 1px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 20px;
  }

  .contact .mailform .telArea dt {
    background: #fff;
    padding: 5vw 5vw 0;
    font-size: 1.0rem;
    font-weight: bold;
    box-sizing: border-box;
  }

  .contact .mailform .telArea dd {
    width: 100%;
    padding: 5vw;
    box-sizing: border-box;
    text-align: center;
  }

  .contact .mailform .telArea dd a {
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 0.1rem;
  }

  .contact .mailform .telArea dd small {
    font-size: 1rem;
    margin: 1rem 0 0;
    display: block;
  }

  .contact .mailform .progressbar {
    position: relative;
    margin: 0 auto 30px;
    padding: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .contact .mailform .progressbar li {
    position: relative;
    list-style-type: none;
    text-align: center;
    text-transform: uppercase;
    width: calc(100% / 3);
    color: #999;
    font-weight: bold;
    counter-increment: steps;
  }

  .contact .mailform .progressbar li:before {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 5px;
    content: '';
    line-height: 40px;
    font-size: 1rem;
    text-align: center;
    border-radius: 50%;
    background: #f5f5f5;
    content: counter(steps);
  }

  .contact .mailform .progressbar li:after {
    position: absolute;
    z-index: -1;
    top: 19px;
    left: -50%;
    width: 100%;
    height: 4px;
    content: '';
    background: #f5f5f5;
  }

  .contact .mailform .progressbar li:first-child:after {
    content: none;
  }

  .contact .mailform .progressbar li.active,
  .contact .progressbar li.complete {
    color: #619fbb;
  }

  .contact .mailform .progressbar li.active:before,
  .contact .mailform .progressbar li.complete:before {
    background: #619fbb;
    color: #fff;
  }

  .contact .mailform .progressbar li.active:after,
  .contact .mailform .progressbar li.complete:after {
    background: #619fbb;
  }

  .contact .table2 {
    margin: 0 auto;
    border-top: #ddd solid 1px;
    padding-top: 20px;
  }

  .contact .table2>dt {
    padding: 2vh 0 1vh;
    color: #757575;
    font-size: 1.2rem;
    font-weight: bold;
    box-sizing: border-box;
  }

  .contact .table2>dd {
    padding: 1vh 0 2vh;
    box-sizing: border-box;
  }

  .contact .table2>dd dt:not(:first-of-type) {
    margin: 30px 0 0;
  }

  .contact .mailform form dl dt.must:after {
    background: #fff;
    content: "必須";
    margin: 0 0 0 10px;
    display: inline-block;
    padding: 0 10px;
    font-size: 0.8rem;
    color: #ea4c4c;
    border: #ea4c4c solid 1px;
    border-radius: 15px;
  }

  .contact .mailform form dd input:focus {
    outline: 2px solid #619fbb;
  }

  .contact .mailform form dd input::placeholder {
    color: #bbb;
  }

  .contact .mailform form dd input[type=checkbox] {
    display: none;
  }

  .contact .mailform form dd label {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    padding: 5px 30px;
    position: relative;
    width: 100%;
  }

  .contact .mailform form dd label::before {
    background: #fff;
    border: 2px solid #ccc;
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
    margin-top: -12px;
    border-radius: 5px;
  }

  .contact .mailform form dd label::after {
    border-right: 3px solid #619fbb;
    border-bottom: 3px solid #619fbb;
    content: '';
    display: block;
    height: 9px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
  }

  .contact .mailform form dd input[type=checkbox]:checked+label::after {
    opacity: 1;
  }

  .contact .mailform form dd input[type="text"] {
    width: 100%;
    padding: 5vw;
    font-size: 16px;
    border: none;
    box-sizing: border-box;
    border-radius: 7px;
    background: #f5f5f5;
  }

  .contact .mailform form dd input[type="email"] {
    width: 100%;
    padding: 5vw;
    font-size: 16px;
    border: none;
    box-sizing: border-box;
    border-radius: 7px;
    background: #f5f5f5;
  }

  .contact .mailform form dd input[type="tel"] {
    width: 100%;
    padding: 5vw;
    font-size: 16px;
    border: none;
    box-sizing: border-box;
    border-radius: 7px;
    background: #f5f5f5;
  }

  .contact .mailform form dd ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 0;
  }

  .contact .mailform form dd ul li {
    min-width: 50%;
  }

  .contact .mailform form dd textarea {
    width: 100%;
    height: 20rem;
    padding: 5vw;
    font-size: 16px;
    border: none;
    box-sizing: border-box;
    border-radius: 7px;
    background: #f5f5f5;
  }

  .contact .mailform form dd textarea:focus {
    outline: 2px solid #619fbb;
  }

  .contact .mailform form dd textarea::placeholder {
    color: #bbb;
  }

  .contactAgree {
    text-align: center;
    padding: 30px;
    margin: 20px auto 40px;
    max-width: 100%;
    border: 1px solid #ddd;
    border-radius: 20px;
  }

  .contactAgree p {
    color: #757575;
    font-weight: bold;
    margin-bottom: 30px;
  }

  .contactAgree a {
    color: #3da5bc;
    font-weight: bold;
    text-decoration: none;
  }

  .contactAgree a:hover {
    color: #619fbb;
    text-decoration: underline;
  }

  .contactAgree input[type=checkbox] {
    display: none;
  }

  .contactAgree input[type=checkbox]+label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
  }

  .contactAgree input[type=checkbox]+label::before {
    background: #fff;
    border: 2px solid #ccc;
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 0;
    margin-top: -12px;
    border-radius: 5px;
  }

  .contactAgree input[type=checkbox]:checked+label::after {
    border-right: 3px solid #619fbb;
    border-bottom: 3px solid #619fbb;
    content: '';
    display: block;
    height: 9px;
    left: 8px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
    opacity: 1;
  }

  .btnSubmit {
    width: 280px;
    margin: 30px auto 0;
    display: flex;
    flex-flow: column-reverse;
    justify-content: space-between;
  }

  .btnSubmit li:not(:last-of-type) {
    margin-top: 20px;
  }

  .btnSubmit li input[type="submit"] {
    width: 280px;
    cursor: pointer;
    padding: 30px 0;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.0;
    border-radius: 60px;
  }

  .btnSubmit li .submit {
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;

    color: #fff;
    background: #e26fa4;
    border: #e26fa4 solid 2px;
    font-weight: bold;
    cursor: pointer;
  }

  .btnSubmit li .submit[disabled] {
    background: #ccc;
    color: #fff;
    border: #ccc solid 2px;
    cursor: not-allowed;
  }

  .btnSubmit li .send {
    background: #e26fa4;
    color: #fff;
    font-weight: bold;
    border: #e26fa4 solid 2px;
  }

  .btnSubmit li .back {
    background: #9D9D9D;
    color: #fff;
    font-weight: bold;
    border: #9D9D9D solid 2px;
  }

}