@charset "UTF-8";
/* リキッドレイアウト対応 */
html {
  font-family: "Noto Sans JP", sans-serif;
  color: #121212;
  line-height: 1.7;
  font-weight: 500;
}

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

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

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3114754098vw;
  }
}
@media (min-width: 1220px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  a[href^="tel:"] {
    pointer-events: unset;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

button {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  button:hover {
    opacity: 1;
  }
}

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

/* Remove default type */
ul,
ol {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

/* Remove default margin padding */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

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

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

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

textarea {
  resize: vertical;
}

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

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

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

button {
  padding: 0;
}

/* l-content */
.l-content {
  width: 1020px;
  width: 63.75rem;
  max-width: 100%;
  margin: 0 auto;
}

.l-inner {
  width: 100%;
  max-width: 1270px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* breadcrumb */
.breadcrumb {
  padding: 16px 0;
  padding: 1rem 0;
}

.breadcrumb__item {
  display: inline;
}
.breadcrumb__item + .breadcrumb__item {
  margin-left: 22px;
  margin-left: 1.375rem;
  position: relative;
}
.breadcrumb__item + .breadcrumb__item::before {
  position: absolute;
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 10px;
  height: 0.625rem;
  top: 9px;
  top: 0.5625rem;
  left: -15px;
  left: -0.9375rem;
  background: url(../img/common/breadcrumb-icon.png) no-repeat center/contain;
}
.breadcrumb__item a, .breadcrumb__item span {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .breadcrumb__item a, .breadcrumb__item span {
    display: inline;
  }
}

/* btn */
.btn {
  display: block;
  width: 313px;
  width: 19.5625rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: #107EBE;
  padding: 26px 51px;
  padding: 1.625rem 3.1875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
  }
}
.btn::after {
  position: absolute;
  content: "";
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 19px;
  right: 1.1875rem;
  background: url(../img/common/arrow-icon03.png) no-repeat center/contain;
}

/* cv */
.cv {
  color: #fff;
  background: #107EBE;
  padding: 110px 0;
  padding: 6.875rem 0;
}
@media screen and (max-width: 767px) {
  .cv {
    padding: 3.75rem 0;
  }
}

.cv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .cv__inner {
    display: block;
  }
}

.cv__subtitle {
  font-family: "Commissioner", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cv__subtitle {
    font-size: 1.125rem;
  }
}

.cv__title {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .cv__title {
    font-size: 1.75rem;
  }
}

.cv__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .cv__text {
    font-size: 0.9375rem;
  }
}

.cv__btn {
  background: #4AAFAE;
  margin-left: 143px;
  margin-left: 8.9375rem;
}
@media screen and (max-width: 767px) {
  .cv__btn {
    margin: 2.5rem auto 0;
  }
}

/* drawer */
.drawer {
  position: fixed;
  z-index: 20;
  top: 60px;
  top: 3.75rem;
  left: 0;
  text-align: center;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100%;
  padding-top: 40px;
  padding-top: 2.5rem;
}
.drawer.active {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

.drawer__item + .drawer__item {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
.drawer__item > a, .drawer__item > span {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
}

.drawer__subitems {
  margin-top: 5px;
  margin-top: 0.3125rem;
}

.drawer__subitem + .drawer__subitem {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.drawer__subitem a {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #666;
  padding-left: 0.6em;
  white-space: nowrap;
  position: relative;
}
.drawer__subitem a::before {
  position: absolute;
  content: "-";
  left: 0;
  top: 0;
}

.drawer__btn {
  display: block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  background: #4AAFAE;
  padding: 20px 0;
  padding: 1.25rem 0;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

/* fnav */
.fnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 48px;
  gap: 0 3rem;
}
@media screen and (max-width: 767px) {
  .fnav__items {
    display: block;
  }
}

.fnav__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .fnav__item + .fnav__item {
    margin-top: 0.625rem;
  }
}
.fnav__item > a {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
}

.fnav__subitems {
  position: absolute;
  top: 40px;
  top: 2.5rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .fnav__subitems {
    position: static;
    margin-top: 0.3125rem;
  }
}

.fnav__subitem + .fnav__subitem {
  margin-top: 5px;
  margin-top: 0.3125rem;
}
.fnav__subitem a {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #666;
  padding-left: 0.6em;
  white-space: nowrap;
  position: relative;
}
.fnav__subitem a::before {
  position: absolute;
  content: "-";
  left: 0;
  top: 0;
}

/* footer */
.footer {
  background: #F3F5F7;
  padding: 100px 0 90px;
  padding: 6.25rem 0 5.625rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 3.75rem 0 1.875rem;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    display: block;
  }
}

.footer__title {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: url(../img/common/logo.png) no-repeat center left/42px;
  background: url(../img/common/logo.png) no-repeat center left/2.625rem;
  padding: 10px 0 10px 49px;
  padding: 0.625rem 0 0.625rem 3.0625rem;
}
@media screen and (max-width: 767px) {
  .footer__title {
    font-size: 1.25rem;
    background-size: 2rem;
    padding-left: 2.5rem;
  }
}

.footer__text {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .footer__text {
    font-size: 0.9375rem;
    margin-top: 1.25rem;
  }
}
.footer__text + .footer__text {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.footer__nav {
  margin-left: 230px;
  margin-left: 14.375rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    margin-left: 0;
    margin-top: 2.5rem;
  }
}

.footer__copyright {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 85px;
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .footer__copyright {
    font-size: 1rem;
    margin-top: 3.75rem;
  }
}

/* form */
.form__items {
  padding-right: 24px;
  padding-right: 1.5rem;
}
@media screen and (max-width: 767px) {
  .form__items {
    padding-right: 0;
  }
}

.form__item + .form__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .form__item + .form__item {
    margin-top: 1.875rem;
  }
}

.form__item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form__item-label label {
  display: inline-block;
  color: #242424;
}
.form__item-label span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  margin-right: 6px;
  margin-right: 0.375rem;
  padding: 1px 8px;
  padding: 0.0625rem 0.5rem;
}
.form__item-label span.required {
  background: #107EBE;
}
.form__item-label span.optional {
  background: #666;
}

.form__item-input {
  margin-top: 6px;
  margin-top: 0.375rem;
}
.form__item-input.short {
  width: 310px;
  width: 19.375rem;
}
@media screen and (max-width: 767px) {
  .form__item-input.short {
    width: 100%;
  }
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email], .form__item-input select, .form__item-input textarea {
  width: 100%;
  font-weight: 400;
  background: #F7F7F7;
  border: 1px solid #107EBE;
  border: 0.0625rem solid #107EBE;
  padding: 20px 12px;
  padding: 1.25rem 0.75rem;
}
.form__item-input input[type=text]::-webkit-input-placeholder, .form__item-input input[type=tel]::-webkit-input-placeholder, .form__item-input input[type=email]::-webkit-input-placeholder, .form__item-input select::-webkit-input-placeholder, .form__item-input textarea::-webkit-input-placeholder {
  color: #ccc;
}
.form__item-input input[type=text]::-moz-placeholder, .form__item-input input[type=tel]::-moz-placeholder, .form__item-input input[type=email]::-moz-placeholder, .form__item-input select::-moz-placeholder, .form__item-input textarea::-moz-placeholder {
  color: #ccc;
}
.form__item-input input[type=text]::-ms-input-placeholder, .form__item-input input[type=tel]::-ms-input-placeholder, .form__item-input input[type=email]::-ms-input-placeholder, .form__item-input select::-ms-input-placeholder, .form__item-input textarea::-ms-input-placeholder {
  color: #ccc;
}
.form__item-input input[type=text]::placeholder, .form__item-input input[type=tel]::placeholder, .form__item-input input[type=email]::placeholder, .form__item-input select::placeholder, .form__item-input textarea::placeholder {
  color: #ccc;
}
.form__item-input input[type=text], .form__item-input input[type=tel], .form__item-input input[type=email] {
  height: 63px;
  height: 3.9375rem;
}
.form__item-input textarea {
  resize: none;
  height: 210px;
  height: 13.125rem;
}
.form__item-input select {
  color: #121212;
}

.form__select {
  position: relative;
}
.form__select::after {
  position: absolute;
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 9px;
  height: 0.5625rem;
  top: 32px;
  top: 2rem;
  right: 14px;
  right: 0.875rem;
  background: url(../img/common/select-icon.png) no-repeat center/contain;
}

.form__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  gap: 0 0.5rem;
}
.form__tel input[type=text] {
  width: 130px;
  width: 8.125rem;
}
@media screen and (max-width: 767px) {
  .form__tel input[type=text] {
    width: 5.625rem;
  }
}

.form__btn {
  text-align: center;
  display: block;
  width: 310px;
  width: 19.375rem;
  max-width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #107EBE;
  border: 1px solid #107EBE;
  border: 0.0625rem solid #107EBE;
  background: url(../img/common/arrow-icon01.png) no-repeat center right 19px/30px;
  background: url(../img/common/arrow-icon01.png) no-repeat center right 1.1875rem/1.875rem;
  padding: 26px 0;
  padding: 1.625rem 0;
  margin: 70px auto 0;
  margin: 4.375rem auto 0;
  -webkit-transition: color 0.3s, border 0.3s;
  transition: color 0.3s, border 0.3s;
}
@media screen and (max-width: 767px) {
  .form__btn {
    margin-top: 2.5rem;
    padding: 1.25rem 0;
  }
}

.wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: -3em;
  color: red;
}

.email-confirm-error {
  font-weight: 400;
}

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

.gnav__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  gap: 0 32px;
  gap: 0 2rem;
}

.gnav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  position: relative;
}
.gnav__item a, .gnav__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
}
.gnav__item span {
  background: url(../img/common/dropdown-icon.png) no-repeat center right/10px;
  background: url(../img/common/dropdown-icon.png) no-repeat center right/0.625rem;
  padding-right: 15px;
  padding-right: 0.9375rem;
}

.gnav__subitems {
  display: none;
  position: absolute;
  left: 0;
  min-width: 100%;
  top: 88px;
  top: 5.5rem;
  font-size: 15px;
  font-size: 0.9375rem;
  background: rgba(255, 255, 255, .95);
  white-space: nowrap;
}

.gnav__subitem a {
  display: block;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
}

/* hamburger */
.hamburger {
  position: absolute;
  z-index: 30;
  right: 20px;
  right: 1.25rem;
  top: 20px;
  top: 1.25rem;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  cursor: pointer;
}
.hamburger.active .hamburger__border {
  top: 8px;
  top: 0.5rem;
}
.hamburger.active .hamburger__border:nth-child(1) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hamburger.active .hamburger__border:nth-child(2), .hamburger.active .hamburger__border:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger__border {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  height: 0.125rem;
  left: 0;
  background: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger__border:nth-child(1) {
  top: 0;
}
.hamburger__border:nth-child(2) {
  top: 10px;
  top: 0.625rem;
}
.hamburger__border:nth-child(3) {
  top: 20px;
  top: 1.25rem;
}

/* header */
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 2px 10px 0 rgba(18, 18, 18, .1019607843);
          box-shadow: 0 2px 10px 0 rgba(18, 18, 18, .1019607843);
  height: 88px;
  height: 5.5rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.75rem;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: inherit;
  padding-left: 108px;
  padding-left: 6.75rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-left: 1.25rem;
  }
}

.header__title a {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: url(../img/common/logo.png) no-repeat center left/42px;
  background: url(../img/common/logo.png) no-repeat center left/2.625rem;
  padding: 10px 0 10px 49px;
  padding: 0.625rem 0 0.625rem 3.0625rem;
}
@media screen and (max-width: 767px) {
  .header__title a {
    font-size: 1.25rem;
    background-size: 2rem;
    padding-left: 2.5rem;
  }
}

.header__nav {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 182px;
  width: 11.375rem;
  max-width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #fff;
  background: #4AAFAE;
  margin-left: 48px;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .header__btn {
    display: none;
  }
}

/* link */
.link {
  display: inline-block;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #107EBE;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-underline-offset: 7px;
  text-underline-offset: 0.4375rem;
  background: url(../img/common/arrow-icon02.png) no-repeat center right/33px;
  background: url(../img/common/arrow-icon02.png) no-repeat center right/2.0625rem;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 767px) {
  .link {
    font-size: 1.125rem;
    background-size: 1.75rem;
    padding-right: 2.1875rem;
  }
}

/* list */
.list {
  border-bottom: 1px solid #ddd;
  border-bottom: 0.0625rem solid #ddd;
}

.list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #ddd;
  border-top: 0.0625rem solid #ddd;
  padding: 24px 0;
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .list__item {
    padding: 1.25rem 0;
  }
}

.list__item-title {
  width: 28%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  padding-left: 30px;
  padding-left: 1.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .list__item-title {
    width: 40%;
    font-size: 1rem;
    padding-left: 1.25rem;
  }
}
.list__item-title::before {
  position: absolute;
  content: "";
  height: 1px;
  height: 0.0625rem;
  width: 20px;
  width: 1.25rem;
  background: #107EBE;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .list__item-title::before {
    width: 0.75rem;
  }
}

.list__item-text {
  width: 72%;
}
@media screen and (max-width: 767px) {
  .list__item-text {
    width: 60%;
    font-size: 0.9375rem;
  }
}

/* main */
.main {
  overflow: hidden;
}

/* mv */
.mv {
  background: url(../img/common/mv-bg.png) no-repeat center/cover;
  margin-top: 88px;
  margin-top: 5.5rem;
  padding: 128px 0;
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 3.75rem;
    padding: 5rem 0;
  }
}

.mv__title {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 58px;
  font-size: 3.625rem;
  letter-spacing: 0.15em;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  padding-right: 200px;
  padding-right: 12.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 2rem;
    padding: 0.3125rem 6.25rem 0.3125rem 0;
  }
}
.mv__title::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  right: 0;
  top: 0;
  background: #107EBE;
  z-index: -1;
}

/* news */
.news__item + .news__item {
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .news__item + .news__item {
    margin-top: 1.5625rem;
  }
}

.news__item-inner {
  display: block;
  border-bottom: 1px solid #666;
  border-bottom: 0.0625rem solid #666;
  padding: 0 66px 32px 0;
  padding: 0 4.125rem 2rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news__item-inner {
    padding: 0 2.1875rem 1.5625rem 0;
  }
}
.news__item-inner::after {
  position: absolute;
  content: "";
  width: 33px;
  width: 2.0625rem;
  height: 33px;
  height: 2.0625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: url(../img/common/arrow-icon01.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .news__item-inner::after {
    width: 1.5625rem;
    height: 1.5625rem;
  }
}

.news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news__item-category span {
  display: inline-block;
  color: #107EBE;
  border: 1px solid #107EBE;
  border: 0.0625rem solid #107EBE;
  padding: 1px 16px;
  padding: 0.0625rem 1rem;
}
@media screen and (max-width: 767px) {
  .news__item-category span {
    font-size: 0.9375rem;
  }
}

.news__item-date {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #666;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .news__item-date {
    margin-left: 0.9375rem;
  }
}

.news__item-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .news__item-title {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

/* subtitle */
.subtitle {
  text-align: center;
  font-family: "Commissioner", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  color: #107EBE;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .subtitle {
    font-size: 1.125rem;
  }
}

/* title */
.title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .title {
    font-size: 1.75rem;
  }
}

/* company */
.company {
  padding: 100px 0 120px;
  padding: 6.25rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .company {
    padding: 3.75rem 0 5rem;
  }
}
.company .l-inner {
  max-width: 1070px;
  max-width: 66.875rem;
}

.company__list {
  margin-top: 85px;
  margin-top: 5.3125rem;
}
@media screen and (max-width: 767px) {
  .company__list {
    margin-top: 2.5rem;
  }
}

/* contact */
.contact {
  padding: 45px 0 120px;
  padding: 2.8125rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 2.5rem 0 5rem;
    padding-bottom: 5rem;
  }
}
.contact .l-content {
  width: 690px;
  width: 43.125rem;
}

/* thanks */
.thanks {
  text-align: center;
  padding: 100px 0 120px;
  padding: 6.25rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .thanks {
    padding: 3.75rem 0 5rem;
  }
}

.thanks__text {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .thanks__text {
    font-size: 1rem;
  }
}

.thanks__link {
  margin-top: 40px;
  margin-top: 2.5rem;
}

/* news-archive */
.news-archive {
  padding: 50px 0 120px;
  padding: 3.125rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .news-archive {
    padding: 3.75rem 0 5rem;
  }
}

.news-archive__link-wrapper {
  text-align: center;
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .news-archive__link-wrapper {
    margin-top: 2.5rem;
  }
}

.news-archive__link {
  background: url(../img/common/arrow-icon05.png) no-repeat center right/33px;
  background: url(../img/common/arrow-icon05.png) no-repeat center right/2.0625rem;
}
@media screen and (max-width: 767px) {
  .news-archive__link {
    background-size: 1.75rem;
  }
}

/* news-single */
.news-single {
  padding: 180px 0 120px;
  padding: 11.25rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .news-single {
    padding: 7.5rem 0 5rem;
  }
}

.news-single__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-single__category span {
  display: inline-block;
  color: #107EBE;
  border: 1px solid #107EBE;
  border: 0.0625rem solid #107EBE;
  padding: 1px 16px;
  padding: 0.0625rem 1rem;
}
@media screen and (max-width: 767px) {
  .news-single__category span {
    font-size: 0.9375rem;
  }
}

.news-single__date {
  display: inline-block;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #666;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-left: 24px;
  margin-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__date {
    margin-left: 0.9375rem;
  }
}

.news-single__title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #666;
  border-bottom: 0.0625rem solid #666;
  margin-top: 35px;
  margin-top: 2.1875rem;
  padding-bottom: 35px;
  padding-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .news-single__title {
    font-size: 1.25rem;
    margin-top: 1.5625rem;
    padding-bottom: 1.25rem;
  }
}

.news-single__post {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .news-single__post {
    margin-top: 2.5rem;
  }
}
.news-single__post h2, .news-single__post h3, .news-single__post h4, .news-single__post h5, .news-single__post h6 {
  font-weight: 700;
  margin: 0 0 20px;
  margin: 0 0 1.25rem;
}
.news-single__post h2 {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h2 {
    font-size: 1.25rem;
  }
}
.news-single__post h3 {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h3 {
    font-size: 1.125rem;
  }
}
.news-single__post h4, .news-single__post h5, .news-single__post h6 {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .news-single__post h4, .news-single__post h5, .news-single__post h6 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .news-single__post p {
    font-size: 0.9375rem;
  }
}
.news-single__post p:not(:last-child) {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
.news-single__post ul:not(:last-child), .news-single__post ol:not(:last-child) {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
.news-single__post li {
  padding-left: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-single__post li {
    font-size: 0.9375rem;
  }
}
.news-single__post li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}
.news-single__post figure:not(:last-child) {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.news-single__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #F3F5F7;
  padding: 63px 55px;
  padding: 3.9375rem 3.4375rem;
  margin-top: 120px;
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .news-single__footer {
    text-align: center;
    display: block;
    font-size: 0.9375rem;
    padding: 1.25rem 1.25rem;
    margin-top: 3.75rem;
  }
}
.news-single__footer a {
  display: inline-block;
  line-height: 2.1;
  text-decoration: underline;
}

.news-single__prev-wrapper {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .news-single__prev-wrapper {
    width: 100%;
  }
}

.news-single__prev {
  background: url(../img/common/arrow-icon04.png) no-repeat center left/33px;
  background: url(../img/common/arrow-icon04.png) no-repeat center left/2.0625rem;
  padding-left: 42px;
  padding-left: 2.625rem;
}
@media screen and (max-width: 767px) {
  .news-single__prev {
    background-size: 1.6875rem;
    padding-left: 2.1875rem;
  }
}

.news-single__next-wrapper {
  text-align: right;
  width: 33%;
}
@media screen and (max-width: 767px) {
  .news-single__next-wrapper {
    text-align: center;
    width: 100%;
  }
}

.news-single__next {
  background: url(../img/common/arrow-icon01.png) no-repeat center right/33px;
  background: url(../img/common/arrow-icon01.png) no-repeat center right/2.0625rem;
  padding-right: 42px;
  padding-right: 2.625rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .news-single__next {
    background-size: 1.6875rem;
    padding-right: 2.1875rem;
  }
}

.news-single__back {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .news-single__back {
    margin: 0.625rem;
  }
}

/* notfound */
.notfound {
  padding: 200px 0;
  padding: 12.5rem 0;
}

/* job */
.job {
  padding: 45px 0 120px;
  padding: 2.8125rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .job {
    padding: 2.5rem 0 3.75rem;
  }
}

.job__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
  gap: 0 1.875rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .job__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
    margin-top: 2.5rem;
  }
}

.job__item {
  text-align: center;
  background: #F1F8FF;
  border-radius: 0.625rem;
  padding: 30px 33px 58px;
  padding: 1.875rem 2.0625rem 3.625rem;
}
@media screen and (max-width: 767px) {
  .job__item {
    padding: 1.875rem 1.5625rem 2.5rem;
  }
}

.job__item-title {
  font-size: 40px;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .job__item-title {
    font-size: 1.75rem;
  }
}

.job__item-img {
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.job__item-link {
  background: url(../img/common/arrow-icon02.png) no-repeat center right/33px;
  background: url(../img/common/arrow-icon02.png) no-repeat center right/2.0625rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .job__item-link {
    background-size: 1.75rem;
  }
}

/* recruit */
.recruit {
  margin-top: 88px;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .recruit {
    margin-top: 3.75rem;
  }
}

.recruit-mv {
  background: url(../img/recruit/recruit-mv-bg.jpg) no-repeat center/cover;
  padding: 120px 0 95px;
  padding: 7.5rem 0 5.9375rem;
}
@media screen and (max-width: 767px) {
  .recruit-mv {
    padding: 2.5rem 0 2.5rem;
  }
  .recruit-mv .l-inner {
    padding: 0 0.625rem;
  }
}

.recruit-mv__title {
  font-family: "Noto Serif JP", serif;
  font-size: 58px;
  font-size: 3.625rem;
  font-weight: 600;
  color: #107EBE;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .recruit-mv__title {
    font-size: 1.75rem;
  }
}

.recruit-mv__subtitle {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 40px;
  font-size: 2.5rem;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .recruit-mv__subtitle {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }
}

.recruit-mv__text {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .recruit-mv__text {
    font-size: 1rem;
  }
}

.recruit-mv__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .recruit-mv__btn {
    margin-top: 1.25rem;
  }
}

/* welfare */
.welfare {
  padding: 75px 0 120px;
  padding: 4.6875rem 0 7.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .welfare {
    padding: 3.75rem 0 5rem;
  }
}
.welfare::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 292px;
  height: 18.25rem;
  top: 0;
  left: 0;
  background: #F1F8FF;
  z-index: -1;
}

.welfare__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 24px;
  gap: 0 1.5rem;
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .welfare__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
    margin-top: 2.5rem;
  }
}

.welfare__item {
  position: relative;
}

.welfare__item-img img {
  border-radius: 0.625rem;
}

.welfare__item-text {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  background: rgba(16, 126, 190, .9);
  border-radius: 0 0 0.625rem 0.625rem;
  padding: 12px 0 17px;
  padding: 0.75rem 0 1.0625rem;
}
@media screen and (max-width: 767px) {
  .welfare__item-text {
    font-size: 1.125rem;
  }
}

/* business */
.business .service-anchor__item:first-child a {
  background: url(../img/business/business-img02.jpg) no-repeat center/cover;
}
.business .service-anchor__item:nth-child(2) a {
  background: url(../img/business/business-img03.jpg) no-repeat center/cover;
}
.business .service-anchor__item:nth-child(3) a {
  background: url(../img/business/business-img04.jpg) no-repeat center/cover;
}
.business .service__unit:first-child .service__subtitle {
  background: url(../img/business/business-icon01.png) no-repeat center left 35px/46px;
  background: url(../img/business/business-icon01.png) no-repeat center left 2.1875rem/2.875rem;
}
@media screen and (max-width: 767px) {
  .business .service__unit:first-child .service__subtitle {
    background: url(../img/business/business-icon01.png) no-repeat center left 1.25rem/1.875rem;
  }
}
.business .service__unit:nth-child(2) .service__subtitle {
  background: url(../img/business/business-icon02.png) no-repeat center left 35px/46px;
  background: url(../img/business/business-icon02.png) no-repeat center left 2.1875rem/2.875rem;
}
@media screen and (max-width: 767px) {
  .business .service__unit:nth-child(2) .service__subtitle {
    background: url(../img/business/business-icon02.png) no-repeat center left 1.25rem/1.875rem;
  }
}
.business .service__unit:nth-child(3) .service__subtitle {
  background: url(../img/business/business-icon03.png) no-repeat center left 35px/46px;
  background: url(../img/business/business-icon03.png) no-repeat center left 2.1875rem/2.875rem;
}
@media screen and (max-width: 767px) {
  .business .service__unit:nth-child(3) .service__subtitle {
    background: url(../img/business/business-icon03.png) no-repeat center left 1.25rem/1.875rem;
  }
}

/* personal */
.personal .service-anchor__item:first-child a {
  background: url(../img/personal/personal-img02.jpg) no-repeat center/cover;
}
.personal .service-anchor__item:nth-child(2) a {
  background: url(../img/personal/personal-img03.jpg) no-repeat center/cover;
}
.personal .service-anchor__item:nth-child(3) a {
  background: url(../img/personal/personal-img04.jpg) no-repeat center/cover;
}
.personal .service__unit:first-child .service__subtitle {
  background: url(../img/personal/personal-icon01.png) no-repeat center left 35px/46px;
  background: url(../img/personal/personal-icon01.png) no-repeat center left 2.1875rem/2.875rem;
}
@media screen and (max-width: 767px) {
  .personal .service__unit:first-child .service__subtitle {
    background: url(../img/personal/personal-icon01.png) no-repeat center left 1.25rem/1.875rem;
  }
}
.personal .service__unit:nth-child(2) .service__subtitle {
  background: url(../img/personal/personal-icon02.png) no-repeat center left 35px/46px;
  background: url(../img/personal/personal-icon02.png) no-repeat center left 2.1875rem/2.875rem;
}
@media screen and (max-width: 767px) {
  .personal .service__unit:nth-child(2) .service__subtitle {
    background: url(../img/personal/personal-icon02.png) no-repeat center left 1.25rem/1.875rem;
  }
}
.personal .service__unit:nth-child(3) .service__subtitle {
  background: url(../img/personal/personal-icon03.png) no-repeat center left 35px/46px;
  background: url(../img/personal/personal-icon03.png) no-repeat center left 2.1875rem/2.875rem;
}
@media screen and (max-width: 767px) {
  .personal .service__unit:nth-child(3) .service__subtitle {
    background: url(../img/personal/personal-icon03.png) no-repeat center left 1.25rem/1.875rem;
  }
}

/* service */
.service {
  margin-top: 88px;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .service {
    margin-top: 3.75rem;
  }
}

.service-mv {
  background: url(../img/common/service-mv-bg.png) no-repeat center/cover;
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .service-mv {
    margin-bottom: 0;
  }
}

.service-mv__inner {
  padding: 70px 0 145px;
  padding: 4.375rem 0 9.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-mv__inner {
    padding: 3.75rem 0 2.5rem;
  }
}

.service-mv__title {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 58px;
  font-size: 3.625rem;
  letter-spacing: 0.15em;
  line-height: 1.5;
  font-weight: 600;
  color: #fff;
  padding-right: 200px;
  padding-right: 12.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service-mv__title {
    font-size: 2rem;
    padding: 0.3125rem 3.125rem 0.3125rem 0;
  }
}
.service-mv__title::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  right: 0;
  top: 0;
  background: #107EBE;
  z-index: -1;
}

.service-mv__texts {
  width: 534px;
  width: 33.375rem;
  max-width: 100%;
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .service-mv__texts {
    margin-top: 1.875rem;
  }
}

.service-mv__subtitle {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  color: #107EBE;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .service-mv__subtitle {
    font-size: 1.375rem;
  }
}

.service-mv__text {
  font-size: 20px;
  font-size: 1.25rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .service-mv__text {
    font-size: 1rem;
  }
}

.service-mv__img {
  position: absolute;
  right: -60px;
  right: -3.75rem;
  bottom: -40px;
  bottom: -2.5rem;
  width: 64%;
}
@media screen and (max-width: 767px) {
  .service-mv__img {
    position: static;
    width: 100%;
    margin: 1.875rem calc(50% - 50vw) 0 auto;
  }
}

.service-anchor {
  padding: 40px 0 75px;
  padding: 2.5rem 0 4.6875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-anchor {
    padding-bottom: 3.75rem;
  }
}
.service-anchor::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 165px;
  height: 10.3125rem;
  bottom: 0;
  left: 0;
  background: #F3F5F7;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .service-anchor::after {
    height: auto;
    top: 6.25rem;
  }
}

.service-anchor__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
  gap: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .service-anchor__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem 0;
  }
}

.service-anchor__item a {
  text-align: center;
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  border-radius: 0.625rem;
  padding: 30px 0 65px;
  padding: 1.875rem 0 4.0625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service-anchor__item a {
    font-size: 1.125rem;
    padding-bottom: 3.125rem;
  }
}
.service-anchor__item a::after {
  position: absolute;
  content: "";
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 30px;
  bottom: 1.875rem;
  background: url(../img/common/anchor-icon.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .service-anchor__item a::after {
    width: 1.25rem;
    height: 1.25rem;
    bottom: 1.5625rem;
  }
}

.service__content {
  padding: 70px 0 120px;
  padding: 4.375rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .service__content {
    padding: 3.75rem 0 5rem;
  }
}

.service__unit + .service__unit {
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .service__unit + .service__unit {
    margin-top: 3.125rem;
  }
}

.service__subtitle {
  width: 420px;
  width: 26.25rem;
  max-width: 100%;
  font-size: 40px;
  font-size: 2.5rem;
  color: #107EBE;
  background: #fff;
  border: 2px solid #A3BDCC;
  border: 0.125rem solid #A3BDCC;
  padding: 6px 0 6px 100px;
  padding: 0.375rem 0 0.375rem 6.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__subtitle {
    width: 16.25rem;
    font-size: 1.5rem;
    padding-left: 3.75rem;
  }
}
.service__subtitle::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  height: 0.25rem;
  left: 0;
  bottom: -4px;
  bottom: -0.25rem;
  background: #fff;
}

.service__body {
  border: 2px solid #A3BDCC;
  border: 0.125rem solid #A3BDCC;
  padding: 30px 40px 65px;
  padding: 1.875rem 2.5rem 4.0625rem;
}
@media screen and (max-width: 767px) {
  .service__body {
    padding: 1.25rem 1.25rem 2.5rem;
  }
}

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

.service__imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 25px;
  gap: 0 1.5625rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .service__imgs {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem 0;
    margin-top: 1.25rem;
  }
}

/* top-business */
.top-business {
  padding-top: 70px;
  padding-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .top-business {
    padding-top: 3.75rem;
  }
}

.top-business__text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .top-business__text {
    font-size: 1.125rem;
  }
}

.top-business__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 40px;
  gap: 0 2.5rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .top-business__items {
    display: block;
    margin-top: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .top-business__item + .top-business__item {
    margin-top: 0.625rem;
  }
}
.top-business__item a {
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  background: #107EBE;
  padding: 7px 16px;
  padding: 0.4375rem 1rem;
}
@media screen and (max-width: 767px) {
  .top-business__item a {
    text-align: center;
    display: block;
    font-size: 1.125rem;
  }
}

.top-business__img {
  margin: 3.75rem calc(50% - 50vw) 0;
}
@media screen and (max-width: 767px) {
  .top-business__img {
    margin-top: 2.5rem;
  }
}

.top-business__link-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

/* top-message */
.top-message {
  text-align: center;
  background: url(../img/top/top-message-bg.png) no-repeat center bottom/cover;
  padding: 85px 0 400px;
  padding: 5.3125rem 0 25rem;
}
@media screen and (max-width: 767px) {
  .top-message {
    padding: 3.75rem 0 18.75rem;
  }
}

.top-message__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .top-message__title {
    font-size: 1.5rem;
  }
}
.top-message__title span {
  color: #107EBE;
}

.top-message__text {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-message__text {
    font-size: 0.9375rem;
  }
}

/* top-mv */
.top-mv {
  background: url(../img/top/top-mv-bg.jpg) no-repeat center/cover;
  margin-top: 88px;
  margin-top: 5.5rem;
  padding: 210px 0;
  padding: 13.125rem 0;
}
@media screen and (max-width: 767px) {
  .top-mv {
    background-position: center left;
    margin-top: 3.75rem;
    padding: 3.75rem 0;
  }
}

.top-mv__title span {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-size: 58px;
  font-size: 3.625rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #fff;
  background: #107EBE;
  padding: 3px 0 10px 20px;
  padding: 0.1875rem 0 0.625rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title span {
    font-size: 2rem;
    padding: 0.1875rem 0 0.1875rem 0.625rem;
  }
}
.top-mv__title span:not(:first-child) {
  margin-top: 20px;
  margin-top: 1.25rem;
  margin-left: 60px;
  margin-left: 3.75rem;
}
@media screen and (max-width: 767px) {
  .top-mv__title span:not(:first-child) {
    margin-left: 0;
    margin-top: 0.3125rem;
  }
}

.top-mv__text {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.8;
  margin-left: 60px;
  margin-left: 3.75rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    font-size: 1rem;
    margin-left: 0;
  }
}

/* top-news */
.top-news {
  padding: 95px 0 120px;
  padding: 5.9375rem 0 7.5rem;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding: 3.75rem 0 5rem;
  }
}
.top-news .l-content {
  width: 730px;
  width: 45.625rem;
}

.top-news__content {
  margin-top: 45px;
  margin-top: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .top-news__content {
    margin-top: 2.5rem;
  }
}

.top-news__item + .top-news__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .top-news__item + .top-news__item {
    margin-top: 1.5625rem;
  }
}

.top-news__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .top-news__item-inner {
    display: block;
  }
}

.top-news__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}

.top-news__item-date {
  display: inline-block;
  min-width: 108px;
  min-width: 6.75rem;
  font-size: 15px;
  font-size: 0.9375rem;
  color: #666;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.top-news__item-category span {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #107EBE;
  border: 1px solid #107EBE;
  border: 0.0625rem solid #107EBE;
  padding: 2px 15px;
  padding: 0.125rem 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-news__item-category span {
    font-size: 0.9375rem;
  }
}

.top-news__item-title {
  font-weight: 700;
  margin-left: 16px;
  margin-left: 1rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-news__item-title {
    margin-left: 0;
    margin-top: 0.625rem;
  }
}

.top-news__link-wrapper {
  text-align: center;
  margin-top: 70px;
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .top-news__link-wrapper {
    margin-top: 2.5rem;
  }
}

/* top-recruit */
.top-recruit {
  padding: 120px 0 140px;
  padding: 7.5rem 0 8.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-recruit {
    padding: 5rem 0;
  }
}
.top-recruit::before {
  position: absolute;
  content: "";
  width: 100vw;
  right: 30%;
  top: 100px;
  top: 6.25rem;
  bottom: 0;
  background: #F3F5F7;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-recruit::before {
    top: 7.5rem;
  }
}

.top-recruit__text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-recruit__text {
    font-size: 1.125rem;
    margin-top: 2.5rem;
  }
}

.top-recruit__img {
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  margin-top: 2.5rem;
}

.top-recruit__link-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}

/* top-service */
.top-service {
  padding: 70px 0 95px;
  padding: 4.375rem 0 5.9375rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding: 3.75rem 0 5rem;
  }
}
.top-service::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 320px;
  height: 20rem;
  background: #DFEDFF;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top-service::after {
    top: 15.625rem;
    height: unset;
  }
}

.top-service__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
  gap: 0 1.5rem;
  margin-top: 50px;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .top-service__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem 0;
    margin-top: 2.5rem;
  }
}

.top-service__item-text {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: url(../img/common/arrow-icon01.png) no-repeat center right/36px;
  background: url(../img/common/arrow-icon01.png) no-repeat center right/2.25rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .top-service__item-text {
    font-size: 1.25rem;
    background-size: 1.875rem;
    margin-top: 0.625rem;
  }
}
/*# sourceMappingURL=style.css.map */
