@charset "UTF-8";
:root {
  /* fonts */
  --font-main: "Zen Maru Gothic", sans-serif;
  /* colors */
  --color-main-100: #013461;
  --color-main-200: #3c76a9;
  --color-main-300: #78b3e0;
  --color-main-400: #8bb6d7;
  --color-main-500: #000;
  --color-accent-100: #000;
  --color-accent-200: #000;
  --color-txt-100: #333333;
  --color-txt-200: #333c5e;
  --color-txt-300: #000;
  --color-txt-400: #000;
  --color-border-100: #deeaf4;
  --color-border-200: #d3d3d3;
  --color-line-100: #06c755;
  --color-base-100: #dceaf5;
  --color-base-200: #000;
  --color-base-300: #000;
  --color-base-400: #000;
  --color-base-500: #000;
  --color-white: #ffffff;
  --color-white-rgb: 255 255 255;
  --color-black: #000000;
  --color-black-rgb: 0 0 0;
  /* font-weights */
  --font-thin: 100;
  --font-exlight: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-exbold: 800;
  --font-black: 900;
}
@media (min-width: 768px) {
  :root {
    --cmn-pd-md: 120px;
    --cmn-pd-lg: 150px;
    --ttl-mb-md: 63px;
    --ttl-mb-lg: 70px;
  }
}
@media (max-width: 767px) {
  :root {
    --cmn-pd-md: 70px;
    --cmn-pd-lg: 90px;
    --ttl-mb-md: 50px;
    --ttl-mb-lg: 60px;
    --main-ttl-mb: 8px;
  }
}

/* display ------------------------------------------------- */
.block {
  display: block;
}

.inblock {
  display: inline-block;
}

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

/* flex-direction ------------------------------------------------- */
.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fd-row-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fd-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fd-col-rev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* align-items ------------------------------------------------- */
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* justify-content ------------------------------------------------- */
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* text-align ------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

html {
  font-family: var(--font-main);
}

body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  word-break: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
}

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

a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.7;
}

iframe {
  border: none;
}

.logo a,
.logo img {
  display: block;
}

@media (min-width: 768px) {
  body {
    width: 100%;
    min-width: 1280px;
    position: relative;
  }
  .inner {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
  }
  .inbox {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .pc-none {
    display: none !important;
  }
}
@media (max-width: 767px) {
  body {
    width: 100%;
    min-width: 350px;
    position: relative;
  }
  .inbox,
  .inner {
    max-width: 768px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .sp-none {
    display: none !important;
  }
  .logo .logo-item {
    display: block;
    line-height: 1;
  }
}
/*==========================================
PC
===========================================*/
/*==========================================
SP
===========================================*/
.btn {
  display: block;
  font-family: var(--font-main);
  position: relative;
  z-index: 1;
}

.btn-main-100, .btn-main-100_2, .btn-main-300, .btn-line-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.22em;
  width: 200px;
  padding: 15px 10px;
  color: var(--color-white);
  background: var(--color-main-100);
  border-radius: 100px;
}
.btn-main-100 .btn-cont, .btn-main-100_2 .btn-cont, .btn-main-300 .btn-cont, .btn-line-100 .btn-cont {
  --icon-width: 22;
  --icon-height: 14;
  --icon-gap: 12;
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-left: calc(var(--icon-width) * 1px + var(--icon-gap) * 1px);
  padding-left: 24px;
}
.btn-main-100 .btn-cont::before, .btn-main-100_2 .btn-cont::before, .btn-main-300 .btn-cont::before, .btn-line-100 .btn-cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  width: 18px;
  left: 0;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/mail-icon.png) no-repeat;
  background-size: contain;
}

.btn-main-200 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 0.22em;
  width: 300px;
  padding: 10px 20px;
  color: var(--color-white);
  background: var(--color-main-100);
  border-radius: 100px;
}
.btn-main-200::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 32/14;
  width: 24px;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-main.png) no-repeat;
  background-size: contain;
}

.btn-main-300, .btn-line-100 {
  width: 100%;
  max-width: 408px;
}

.btn-white-100, .btn-white-200 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: left;
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0.22em;
  width: 100%;
  padding: 20px 20px 28px;
  color: var(--color-main-100);
  background: var(--color-white);
}
.btn-white-100::before, .btn-white-200::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 45/19;
  width: 30px;
  right: 10px;
  top: calc(50% - 2px);
  translate: 0 -50%;
  background: url(/img/common/arw-main-lg.png) no-repeat;
  background-size: contain;
}
.btn-white-100::after, .btn-white-200::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 7px;
  left: 0;
  bottom: 0;
  background: var(--color-border-100);
}

.btn-white-200 {
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.22em;
  width: 100%;
  padding: 21px 20px 29px;
}

.btn-line-100 {
  background: var(--color-line-100);
}
.btn-line-100 .btn-cont {
  all: unset;
}
.btn-line-100 .btn-cont::before {
  content: none;
}

.btn-main-100_2 {
  padding: 15px 10px;
  background: var(--color-main-200);
}

.ttl, .top-about-ttl .ttl-main, .top-message-ttl .ttl-main, .top-links-ttl .ttl-main, .top-entry-ttl .ttl-main, .top-news-ttl .ttl-main, .greeting-ttl, .message-recruit-ttl, .job-case-ttl, .staff-message-ttl, .sub-faq-ttl, .description-ttl, .ttl-temp, .form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl, .ttl02, .features-ttl, .com-info-ttl, .apply-ttl {
  font-family: var(--font-main);
  color: var(--color-main-100);
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.34em;
  font-weight: var(--font-bold);
}

.ttl02, .features-ttl, .com-info-ttl, .apply-ttl {
  line-height: 1.5789473684;
}

.ttl-english, .top-about-ttl .ttl-sub, .top-message-ttl .ttl-sub, .top-links-ttl .ttl-sub, .top-entry-ttl .ttl-sub, .top-news-ttl .ttl-sub {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.22em;
  font-weight: var(--font-normal);
  color: var(--color-main-100);
}

.ttl-sv, .sv-ttl {
  font-family: var(--font-main);
  font-size: 20px;
  line-height: 2.2727272727;
  letter-spacing: 0.22em;
  font-weight: var(--font-bold);
  color: var(--color-main-100);
}

.ttl-temp, .form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  line-height: 1.5789473684;
}

.sub-ttl, .greeting-subttl, .staff-message-subttl, .sub-faq-term, .flow-subttl {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 3.0909090909;
  letter-spacing: 0.22em;
  font-weight: var(--font-bold);
  color: var(--color-main-200);
}

.txt, .top-about-txt, .sub-faq .empty-message {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 2.7777777778;
  letter-spacing: 0.1em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-lh-20, .top-message-txt, .greeting-txt, .features-txt, .com-info-header, .com-info-data, .job-case-txt, .staff-message-txt, .sub-faq-definition, .description-header, .description-data, .flow-txt {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1.8888888889;
  letter-spacing: 0.1em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-news-date, .top-news-item .date, .detail .date {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: var(--font-medium);
  line-height: 1;
  letter-spacing: 0.16em;
  color: var(--color-main-100);
}

.txt-news-tag, .top-news-item .tag, .detail .tag {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: var(--font-medium);
  line-height: 1;
  letter-spacing: 0.16em;
  color: var(--color-main-100);
}

.txt-news-ttl, .top-news-item-ttl, .news .top-news-item-ttl {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: var(--font-medium);
  line-height: 1;
  letter-spacing: 0.16em;
  color: var(--color-txt-100);
}

.txt-hd-nav {
  font-family: var(--font-main);
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.18em;
  color: var(--color-txt-100);
  font-weight: var(--font-medium);
}

.txt-hd-nav-sub {
  font-family: var(--font-en);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-txt-200);
  font-weight: var(--font-normal);
}

.txt-ft-nav, .footer .nav-list.nav-main, .footer .nav-list.nav-sub, .txt-ft-nav-sm {
  font-family: var(--font-main);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.18em;
  color: var(--color-white);
  font-weight: var(--font-medium);
}

.txt-ft-nav-sm {
  font-size: 14px;
  line-height: 1;
}

/*電話アイコンと番号 -------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel, .tel-lg {
  font-family: var(--font-main);
  font-size: 26px;
  font-weight: var(--font-bold);
  position: relative;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-txt-200);
}
.tel-num {
  --icon-width: 23;
  --icon-height: 23;
  display: block;
  line-height: 1;
  padding-left: calc(5px + var(--icon-width) * 1px);
  position: relative;
  z-index: 1;
}
.tel-num::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: var(--icon-width)/var(--icon-height);
  width: calc(var(--icon-width) * 1px);
  left: 0;
  top: calc(50% + 1px);
  translate: 0 -50%;
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

.tel-svg img {
  display: block;
}

.tel-lg {
  font-size: 26px;
}
/*site-map ---------------------------------------------*/
.site-map {
  --color-site-map: var(--color-txt-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.site-map-list {
  font-size: 16px;
  color: var(--color-site-map);
}
.site-map-item {
  border-bottom: 1px solid var(--color-site-map);
  font-weight: var(--font-medium, 500);
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.site-map-item a {
  display: block;
  padding: 15px 0 15px 30px;
  position: relative;
  z-index: 1;
}
.site-map-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23202931' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*404 ---------------------------------------------*/
.notfound {
  --color-notfound-txt: var(--color-txt-100);
  --color-notfound-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-notfound-txt);
}
.notfound-txt a {
  color: var(--color-notfound-link);
  text-decoration: underline;
}

/*privacy ---------------------------------------------*/
.privacy {
  --color-privacy: var(--color-txt-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.privacy .ttl02, .privacy .features-ttl, .privacy .com-info-ttl, .privacy .apply-ttl {
  font-size: 20px;
  font-family: var(--font-main);
  padding-bottom: 7px;
  margin-bottom: 12px;
  color: var(--color-privacy);
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-privacy);
}
.privacy .privacy-box {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-privacy);
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 50px;
}

/*contact ---------------------------------------------*/
#contact {
  --color-contact-main: var(--color-main-400);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-main-400);
  --color-contact-th-txt: #fff;
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
  padding: var(--cmn-pd-md, 120px) 0;
}
#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}
#contact table tr td {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  background: var(--color-contact-td-bg);
}
#contact table tr th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
  width: 30%;
  color: var(--color-contact-th-txt);
  background: var(--color-contact-th-bg);
}
#contact table .required-mark {
  color: var(--color-contact-required-mark-txt);
  font-size: 13px;
  border-radius: 0;
  background: var(--color-contact-required-mark-bg);
}
#contact label[for=agree] a {
  color: var(--color-contact-main);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-contact-main);
}
#contact .contact-btn.contact-submits-wrap button[type=button],
#contact input[type=button],
#contact input[type=submit],
#contact button[type=button] {
  color: #fff;
  background: var(--color-contact-main);
  font-size: 16px;
  border: unset;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
#contact .contact-btn.contact-submits-wrap button[type=button]:hover,
#contact input[type=button]:hover,
#contact input[type=submit]:hover,
#contact button[type=button]:hover {
  opacity: 0.7;
}
#contact .contact-btn.contact-submits-wrap button[type=button][disabled],
#contact input[type=button][disabled],
#contact input[type=submit][disabled],
#contact button[type=button][disabled] {
  color: var(--color-contact-disabled-txt);
  background: var(--color-contact-disabled-bg);
  opacity: 0.7;
}
@media (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    background: var(--color-contact-td-bg);
  }
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
    width: 100%;
    color: var(--color-contact-th-txt);
    background: var(--color-contact-th-bg);
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--color-contact-required-mark-txt);
    font-size: 3.5vw;
    border-radius: 0;
    background: var(--color-contact-required-mark-bg);
  }
  #contact input[type=button],
  #contact input[type=submit],
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
    padding: 1em;
  }
  #contact .contact-submits-wrap button[name=back] {
    color: #444;
    background: #fff;
    border: 1px solid #444;
  }
}

/*complete ---------------------------------------------*/
.complete {
  --color-complete-txt: var(--color-txt-100);
  --color-complete-link: var(--color-main-100);
  padding: var(--cmn-pd-md, 60px) 0;
}
.complete-box {
  max-width: 80%;
  margin: 0 auto;
  text-align: left;
  font-weight: var(--font-medium, 500);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-complete-txt);
}
.complete-box a {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-complete-link);
  text-decoration: underline;
}

.pagenation {
  --color-pagenation-def-txt: var(--color-txt-100);
  --color-pagenation-border: var(--color-txt-100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
  gap: 20px;
  font-size: 13px;
}
.pagenation li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  color: var(--color-pagenation-def-txt);
  line-height: 1;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
  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;
}
.pagenation a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 8.5px 0;
}
.pagenation .current::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-pagenation-border);
}

.tag-change {
  --color-tag-change-def-txt: #b3b3b3;
  --color-tag-change-def-bg: #eee;
  --color-tag-change-current-txt: var(--color-white);
  --color-tag-change-current-bg: var(--color-accent-100);
  --tag-change-border-radius: 3px;
  --tag-change-margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: var(--tag-change-margin-bottom);
}
.tag-change li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 14px;
  line-height: 1;
  letter-spacing: auto;
  border-radius: var(--tag-change-border-radius);
  color: var(--color-tag-change-def-txt);
  background: var(--color-tag-change-def-bg);
}
.tag-change li a {
  display: block;
  padding: 9px 16px;
}
.tag-change .current {
  color: var(--color-tag-change-current-txt);
  background: var(--color-tag-change-current-bg);
}
.tag-change a {
  display: block;
  width: 100%;
  text-align: center;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-main-200);
  --color-page-btn-mt: 60px;
  --color-page-btn-pt: 28px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: var(--color-page-btn-mt);
  padding-top: var(--color-page-btn-pt);
  text-align: center;
  border-top: 1px solid var(--color-page-btn-border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.page-btn .left,
.page-btn .mid,
.page-btn .right {
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--color-page-btn-txt);
  font-weight: var(--font-medium);
}
.page-btn .left {
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  grid-column: 1/2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.page-btn .left a {
  position: relative;
  z-index: 1;
  padding-left: 22px;
}
.page-btn .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: scale(-1, 1) skew(30deg) translateY(-50%);
          transform: scale(-1, 1) skew(30deg) translateY(-50%);
}
.page-btn .right {
  position: relative;
  z-index: 1;
  grid-column: 3/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.page-btn .right a {
  position: relative;
  z-index: 1;
  padding-right: 22px;
}
.page-btn .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 15px;
  height: 5px;
  border-bottom: 1px solid var(--color-page-btn-txt);
  border-right: 1px solid var(--color-page-btn-txt);
  -webkit-transform: skew(30deg) translateY(-50%);
          transform: skew(30deg) translateY(-50%);
}
.page-btn .mid {
  grid-column: 2/3;
  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;
}

.news {
  --news-img-width: 25%;
  --news-margin-right: 15px;
}
.news .news-item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 1/1;
  width: var(--news-img-width);
  margin-right: var(--news-margin-right);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news .news-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news .top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail {
  --color-news-detail: var(--color-txt-100);
  --fontsize-news-detail: 20px;
  --font-weight-news-detail: var(--font-medium);
  --news-detail-margin-bottom: 12px;
}
.detail-ttl {
  font-size: var(--fontsize-news-detail);
  font-weight: var(--font-weight-news-detail);
  color: var(--color-news-detail);
  margin-bottom: var(--news-detail-margin-bottom);
  line-height: 1.5;
}

/*common ---------------------------------------------*/
.cmn-txt-mb {
  margin-bottom: 1em;
}

.color-main-100 {
  color: var(--color-main-100);
}

/*header ---------------------------------------------*/
.header {
  width: 100%;
  overflow-x: clip;
  position: relative;
}
.header-main {
  position: absolute;
  z-index: 10;
  width: 100%;
  padding: 15px;
}
.header .logo {
  margin-top: 7px;
  width: 100%;
  max-width: 210px;
}

/*mv ---------------------------------------------*/
.mv {
  width: 100%;
  height: 630px;
  position: relative;
  z-index: 1;
  background: url(/img/top/mv-bg.png) no-repeat left top/cover;
}
.mv-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 75px;
}
.mv-img {
  width: 100%;
  height: 240px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-bottom: 30px;
}
.mv-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv-catch {
  width: 88%;
  max-width: 330px;
  translate: 1%;
}
.mv-catch.main {
  margin-bottom: 20px;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: url(/img/top/top-about-bg.png) no-repeat center center/cover;
}
.top-about-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: pre-wrap;
  word-break: keep-all;
}
.top-about-ttl .ttl-img {
  width: 44px;
  margin-bottom: 16px;
}
.top-about-ttl .ttl-main {
  margin-bottom: var(--main-ttl-mb);
}
.top-about-txtarea {
  width: 100%;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  background: rgb(var(--color-white-rgb)/0.9);
}
.top-about-txtarea::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --waku-size: 50px;
  background: url(/img/common/kakko-lt.png) no-repeat left top/var(--waku-size) var(--waku-size), url(/img/common/kakko-lb.png) no-repeat left bottom/var(--waku-size) var(--waku-size), url(/img/common/kakko-rt.png) no-repeat right top/var(--waku-size) var(--waku-size), url(/img/common/kakko-rb.png) no-repeat right bottom/var(--waku-size) var(--waku-size);
}
.top-about-subttl {
  font-family: var(--font-main);
  font-size: 22px;
  line-height: 1.619047619;
  letter-spacing: 0.22em;
  font-weight: var(--font-bold);
  color: var(--color-main-200);
  margin-bottom: 40px;
  text-align: center;
  white-space: pre-wrap;
  word-break: keep-all;
}
.top-about-subttl .lg {
  display: inline-block;
  font-size: 36px;
  line-height: 1;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.top-about-subttl .lg::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 69/27;
  width: 50px;
  left: calc(50% - 4px);
  top: 0;
  translate: -50%;
  background: url(/img/common/tyon-deco.png) no-repeat;
  background-size: contain;
}
.top-about-txt {
  text-align: center;
}
.top-about-txt .lg {
  font-size: 1.22em;
  font-weight: var(--font-bold);
}
.top-about-txt .txt-mb {
  margin-bottom: 2em;
}

/*top-message ---------------------------------------------*/
.top-message {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: url(/img/top/top-message-bg.png) no-repeat center center/cover;
}
.top-message-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-message-ttl .ttl-main {
  margin-bottom: var(--main-ttl-mb);
}
.top-message-txtarea {
  width: 100%;
}
.top-message-txt {
  margin-bottom: 50px;
}
.top-message-body {
  width: 100%;
}
.top-message-imgarea {
  width: 100%;
  position: relative;
  z-index: 1;
  container-type: inline-size;
}
.top-message-img {
  width: 100%;
  margin-bottom: 20px;
  outline-offset: -6px;
  outline: 2px solid var(--color-white);
}
.top-message-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-message-subimg {
  position: absolute;
  top: 23%;
  left: 26%;
  translate: -60% -45%;
  width: clamp(120px, 26.2%, 283px);
}

/*top-links ---------------------------------------------*/
.top-links {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: var(--color-base-100);
}
.top-links-ttl {
  margin-bottom: var(--ttl-mb-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-links-ttl .ttl-main {
  margin-bottom: var(--main-ttl-mb);
}
.top-links-list {
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  gap: 12px 16px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (min-width: 600px) {
  .top-links-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
.top-links-item {
  width: 100%;
  position: relative;
  z-index: 1;
  outline-offset: -6px;
  outline: 2px solid var(--color-white);
  overflow: hidden;
}
.top-links-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 133/101;
  width: 80px;
}
.top-links-item .top-links-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.top-links-item:nth-of-type(1) {
  grid-column: 1/3;
  grid-row: 1/2;
  min-height: 310px;
  background: var(--color-main-100);
}
.top-links-item:nth-of-type(1)::before {
  top: 0;
  left: 0;
  background: url(/img/common/01.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-of-type(1) .top-links-body {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.top-links-item:nth-of-type(1) .top-links-txtarea {
  width: 100%;
}
.top-links-item:nth-of-type(1) .top-links-img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  translate: -50%;
  width: 100%;
  max-width: 400px;
}
.top-links-item:nth-of-type(1) .top-links-subttl {
  padding: 0 20px;
  margin-bottom: 20px;
}
.top-links-item:nth-of-type(2) {
  grid-column: 1/3;
  grid-row: 2/3;
  background: url(/img/top/top-links-bg01.png) no-repeat center center/cover;
}
.top-links-item:nth-of-type(2)::before {
  right: -6px;
  top: 10px;
  background: url(/img/common/02.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-of-type(2) .top-links-subttl {
  padding: 0 20px;
  padding: 20px;
}
@media (min-width: 600px) {
  .top-links-item:nth-of-type(2) {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .top-links-item:nth-of-type(2)::before {
    left: 5px;
    top: 5px;
  }
}
.top-links-item:nth-of-type(3) {
  grid-column: 1/3;
  grid-row: 3/4;
  min-height: 310px;
  background: var(--color-main-300);
}
.top-links-item:nth-of-type(3)::before {
  left: 5px;
  top: 5px;
  background: url(/img/common/03.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-of-type(3) .top-links-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-links-item:nth-of-type(3) .top-links-img {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 400px;
}
.top-links-item:nth-of-type(3) .top-links-txtarea {
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.top-links-item:nth-of-type(3) .top-links-subttl {
  padding: 0 20px;
  padding: 20px;
  text-align: right;
}
@media (min-width: 600px) {
  .top-links-item:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.top-links-item:nth-of-type(4) {
  grid-column: 1/3;
  grid-row: 4/5;
  min-height: 180px;
  background: url(/img/top/top-links-bg02.png) no-repeat 100% center/cover;
}
.top-links-item:nth-of-type(4)::before {
  right: 5px;
  top: 9px;
  background: url(/img/common/04.png) no-repeat;
  background-size: contain;
}
@media (min-width: 600px) {
  .top-links-item:nth-of-type(4) {
    grid-column: 1/2;
    grid-row: 3/4;
    background: url(/img/top/top-links-bg02.png) no-repeat center center/cover;
  }
  .top-links-item:nth-of-type(4)::before {
    left: 5px;
    top: 5px;
  }
}
.top-links-item:nth-of-type(5) {
  grid-column: 1/3;
  grid-row: 5/6;
  min-height: 180px;
  background: url(/img/top/top-links-bg03.png) no-repeat center center/cover;
}
.top-links-item:nth-of-type(5)::before {
  left: 7px;
  top: 7px;
  background: url(/img/common/05.png) no-repeat;
  background-size: contain;
}
@media (min-width: 600px) {
  .top-links-item:nth-of-type(5) {
    grid-column: 2/3;
    grid-row: 3/4;
  }
}
.top-links-body {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-links-txtarea {
  width: 100%;
  padding: 10px 4px 4px;
}
.top-links-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.4090909091;
  letter-spacing: 0.22em;
  font-weight: var(--font-medium);
  color: var(--color-white);
}
.top-links-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-links-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*top-entry ---------------------------------------------*/
.top-entry {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/top/top-entry-bg.png) no-repeat center center/cover;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.top-entry-body {
  width: 100%;
  background: rgb(var(--color-white-rgb)/0.9);
  padding: 40px 30px 50px;
  position: relative;
  z-index: 1;
}
.top-entry-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --waku-size: 50px;
  background: url(/img/common/kakko-lt.png) no-repeat left top/var(--waku-size) var(--waku-size), url(/img/common/kakko-lb.png) no-repeat left bottom/var(--waku-size) var(--waku-size), url(/img/common/kakko-rt.png) no-repeat right top/var(--waku-size) var(--waku-size), url(/img/common/kakko-rb.png) no-repeat right bottom/var(--waku-size) var(--waku-size);
}
.top-entry-ttl {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border-200);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-entry-ttl .ttl-main {
  margin-bottom: var(--main-ttl-mb);
}
.top-entry .tel-area {
  padding-top: 20px;
  margin-bottom: 32px;
}
.top-entry .tel-lg {
  margin-bottom: 10px;
}
.top-entry .btn-main-300 {
  margin-bottom: 16px;
}

/*news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-md) 0;
  padding-top: 90px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--color-white);
}
.top-news-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-news-heading {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: var(--ttl-mb-md);
}
.top-news-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.top-news-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 240/203;
  width: 130px;
  left: 50%;
  top: 50%;
  translate: -77% -78%;
  background: url(/img/top/top-news-deco.png) no-repeat;
  background-size: contain;
}
.top-news-ttl .ttl-main {
  margin-bottom: var(--main-ttl-mb);
}
.top-news .btn-news-100 {
  display: block;
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.22em;
  color: var(--color-main-100);
  padding-right: 40px;
}
.top-news .btn-news-100::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 32/14;
  width: 28px;
  right: 0;
  top: calc(50% + 2px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-main.png) no-repeat;
  background-size: contain;
}
.top-news-list {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.top-news-item {
  width: 100%;
  position: relative;
  z-index: 1;
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  padding: 24px 0 20px;
  position: relative;
  z-index: 1;
}
.top-news-item:first-child .top-news-item-body {
  padding-top: 0;
}
.top-news-item:last-child .top-news-item-body {
  padding-bottom: 0;
}
.top-news-item:not(:last-child) {
  border-bottom: 1px solid var(--color-border-200);
}
.top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.top-news-item .meta {
  margin-bottom: 16px;
}
.top-news-item .date {
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-news-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-news-item .tag {
  display: inline-block;
}
.top-news-item .tag:not(:first-child) {
  padding-left: 10px;
}
.top-news-item .tag:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid var(--color-main-100);
}

/*footer ---------------------------------------------*/
.footer {
  padding: var(--cmn-pd-md) 0;
  padding-bottom: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/common/footer-bg.png) no-repeat center center/cover;
}
.footer-top {
  width: 100%;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--color-white);
}
.footer-logo {
  display: block;
  width: 240px;
  margin-bottom: 56px;
}
.footer-contact {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.footer .tel-area {
  height: 72px;
  padding: 0 24px;
  padding-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  background: var(--color-white);
}
.footer .tel {
  margin-bottom: 8px;
}
.footer .btn-area {
  gap: 25px;
}
.footer .line-icon {
  width: 50px;
}
.footer-sub {
  width: 100%;
  padding-top: 33px;
}
.footer-nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
  gap: 50px;
}
.footer .nav-list {
  display: grid;
  grid-template-rows: repeat(7, auto);
  grid-auto-flow: column;
  gap: 24px;
}
.footer .nav-item {
  position: relative;
  z-index: 1;
}
.footer .nav-item a {
  display: block;
}
.footer .copy {
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: var(--font-normal);
  line-height: 1;
  color: var(--color-white);
  text-align: center;
}

/*==========================================
sv
===========================================*/
.sv {
  width: 100%;
  height: 270px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/common/sv-bg.png) no-repeat center center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.sv.img-offset .sv-ttl {
  margin-top: 30px;
}
.sv-wrap {
  width: 100%;
  height: 200px;
  position: relative;
  z-index: 1;
  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;
  overflow: hidden;
}
.sv-ttl {
  width: 100%;
  text-align: center;
}
.sv-ttl .bg {
  display: inline-block;
  width: 80%;
  max-width: 500px;
  background: var(--color-white);
  position: relative;
  z-index: 1;
}
.sv-img {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sv-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==========================================
message
===========================================*/
/*greeting ---------------------------------------------*/
.greeting {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: url(/img/message/greeting-bg.png) no-repeat center center/cover;
}
.greeting-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.greeting-body {
  width: 100%;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  background: rgb(var(--color-white-rgb)/0.9);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
.greeting-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --waku-size: 50px;
  background: url(/img/common/kakko-lt.png) no-repeat left top/var(--waku-size) var(--waku-size), url(/img/common/kakko-lb.png) no-repeat left bottom/var(--waku-size) var(--waku-size), url(/img/common/kakko-rt.png) no-repeat right top/var(--waku-size) var(--waku-size), url(/img/common/kakko-rb.png) no-repeat right bottom/var(--waku-size) var(--waku-size);
}
.greeting-subttl {
  width: 100%;
  line-height: 1;
  text-align: center;
}
.greeting-txt {
  margin-bottom: 24px;
}
.greeting .img-area {
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 auto;
}
.greeting-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 250/300;
  width: 100%;
  max-width: 250px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.greeting-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*message-video ---------------------------------------------*/
.message-video {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/message/message-video-bg.png) no-repeat center center/cover;
}
.message-video video {
  display: block;
  width: 100%;
}

/*message-recruit ---------------------------------------------*/
.message-recruit {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/message/message-recruit-bg.png) no-repeat center center/cover;
  overflow: hidden;
}
.message-recruit-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.message-recruit-body {
  position: relative;
  z-index: 1;
  width: 100%;
  background: rgb(var(--color-white-rgb)/0.9);
  padding: 40px 30px 50px;
}
.message-recruit-body::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --waku-size: 50px;
  background: url(/img/common/kakko-lt.png) no-repeat left top/var(--waku-size) var(--waku-size), url(/img/common/kakko-lb.png) no-repeat left bottom/var(--waku-size) var(--waku-size), url(/img/common/kakko-rt.png) no-repeat right top/var(--waku-size) var(--waku-size), url(/img/common/kakko-rb.png) no-repeat right bottom/var(--waku-size) var(--waku-size);
}
.message-recruit-ttl {
  width: 100%;
  line-height: 1.5789473684;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border-200);
}
.message-recruit-contents {
  width: 100%;
  gap: 24px;
}
.message-recruit .tel-area {
  padding-top: 24px;
}
.message-recruit .tel-lead {
  display: inline-block;
  width: 240px;
  text-align: center;
  padding: 7px 0;
  background: var(--color-base-100);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  color: var(--color-main-100);
  margin-bottom: 12px;
}
.message-recruit .tel-lg {
  margin-bottom: 10px;
}

/*==========================================
company
===========================================*/
/*features ---------------------------------------------*/
.features {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/company/features-bg.png) no-repeat center center/cover;
  overflow: hidden;
}
.features-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.features-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 44px;
  padding: 40px 30px;
  background: rgb(var(--color-white-rgb)/0.9);
}
.features-list::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --waku-size: 50px;
  background: url(/img/common/kakko-lt.png) no-repeat left top/var(--waku-size) var(--waku-size), url(/img/common/kakko-lb.png) no-repeat left bottom/var(--waku-size) var(--waku-size), url(/img/common/kakko-rt.png) no-repeat right top/var(--waku-size) var(--waku-size), url(/img/common/kakko-rb.png) no-repeat right bottom/var(--waku-size) var(--waku-size);
}
.features-subttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  line-height: 1.7;
  letter-spacing: 0.22em;
  color: var(--color-main-200);
  margin-bottom: 21px;
}
.features-subttl .deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  white-space: pre-wrap;
  word-break: keep-all;
}
.features-subttl .deco::after {
  content: "";
  width: 40px;
  height: 3px;
  background-image: -webkit-gradient(linear, right top, left top, from(#23326b), to(#75a1d8));
  background-image: linear-gradient(270deg, #23326b, #75a1d8);
}
/*com-info ---------------------------------------------*/
.com-info {
  padding-top: var(--cmn-pd-md);
  overflow: hidden;
  background: url(/img/company/com-info-bg.png) no-repeat center center/cover;
}
.com-info-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.com-info .table-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
  background: var(--color-white);
  margin-bottom: 40px;
  padding: 30px;
}
.com-info-table {
  width: 100%;
}
.com-info-row {
  display: block;
  width: 100%;
}
.com-info-row:not(:first-child) th {
  border-top: 1px solid var(--color-border-200);
}
.com-info-row:first-child th,
.com-info-row:first-child td {
  padding-top: 0;
}
.com-info-row:last-child th,
.com-info-row:last-child td {
  padding-bottom: 0;
}
.com-info-header {
  display: block;
  width: 100%;
  font-weight: var(--font-bold);
  color: var(--color-main-200);
  padding: 15.7222222222px 0px;
  padding-bottom: 0;
  vertical-align: middle;
}
.com-info-data {
  display: block;
  width: 100%;
  padding: 15.7222222222px 0px;
  padding-top: 0;
  vertical-align: middle;
  color: var(--color-txt-100);
}
.com-info-data .tel-svg {
  display: block;
}
.com-info-data .link {
  display: inline-block;
  padding-bottom: 3px;
  padding-right: 32px;
  border-bottom: 1px solid var(--color-txt-100);
  position: relative;
  z-index: 1;
}
.com-info-data .link::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 32/14;
  width: 24px;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  background: url(/img/common/arw-main.png) no-repeat;
  background-size: contain;
}
.com-info iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: none;
}

/*==========================================
job
===========================================*/
/*job-case ---------------------------------------------*/
.job-case {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/job/job-case-bg.png) no-repeat center center/cover;
  overflow: hidden;
}
.job-case-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px;
}
.job-case-item {
  width: 100%;
  padding: 40px 30px;
  background: rgb(var(--color-white-rgb)/0.9);
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.job-case-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --waku-size: 50px;
  background: url(/img/common/kakko-lt.png) no-repeat left top/var(--waku-size) var(--waku-size), url(/img/common/kakko-rb.png) no-repeat right bottom/var(--waku-size) var(--waku-size);
}
.job-case-txtarea {
  width: 100%;
}
.job-case-ttl {
  width: 100%;
  margin-bottom: 12px;
}
.job-case-txt {
  width: 100%;
}
.job-case-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 200px;
  margin-bottom: 16px;
}
.job-case-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==========================================
staff
===========================================*/
/*staff-message ---------------------------------------------*/
.staff-message {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/staff/bg-main.png) no-repeat center center/cover;
  overflow: hidden;
}
.staff-message-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.staff-message-list {
  width: 100%;
  position: relative;
  z-index: 1;
  gap: 40px;
}
.staff-message-item {
  width: 100%;
  padding: 40px 30px;
  background: rgb(var(--color-white-rgb)/0.9);
  position: relative;
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.staff-message-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --waku-size: 50px;
  background: url(/img/common/kakko-lt.png) no-repeat left top/var(--waku-size) var(--waku-size), url(/img/common/kakko-rb.png) no-repeat right bottom/var(--waku-size) var(--waku-size);
}
.staff-message-txtarea {
  width: 100%;
}
.staff-message-subttl {
  width: 100%;
  line-height: 1.5;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-border-200);
}
.staff-message-txt {
  padding-top: 8px;
}
.staff-message-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 300/220;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.staff-message-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*==========================================
faq
===========================================*/
/*sub-faq ---------------------------------------------*/
.sub-faq {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background-color: var(--color-base-100);
}
.sub-faq-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.sub-faq-list {
  width: 100%;
  gap: 40px;
  background: rgb(var(--color-white-rgb)/0.9);
  position: relative;
  z-index: 1;
  padding: 40px 30px;
}
.sub-faq-list::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --waku-size: 50px;
  background: url(/img/common/kakko-lt.png) no-repeat left top/var(--waku-size) var(--waku-size), url(/img/common/kakko-lb.png) no-repeat left bottom/var(--waku-size) var(--waku-size), url(/img/common/kakko-rt.png) no-repeat right top/var(--waku-size) var(--waku-size), url(/img/common/kakko-rb.png) no-repeat right bottom/var(--waku-size) var(--waku-size);
}
.sub-faq-item {
  width: 100%;
}
.sub-faq-term {
  width: 100%;
  font-weight: var(--font-medium);
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}
.sub-faq-term::before {
  content: "";
  aspect-ratio: 50/50;
  width: 30px;
  background: url(/img/faq/q-icon.png) no-repeat;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 10px;
}
.sub-faq-definition {
  width: 100%;
  padding-left: 40px;
  position: relative;
  z-index: 1;
}
/*==========================================
recruit
===========================================*/
/*description ---------------------------------------------*/
.description {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: var(--color-base-100);
}
.description-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.description .table-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
  background: var(--color-white);
  padding: 30px;
}
.description-table {
  width: 100%;
}
.description-row {
  display: block;
  width: 100%;
}
.description-row:not(:first-child) th {
  border-top: 1px solid var(--color-border-200);
}
.description-row:first-child th,
.description-row:first-child td {
  padding-top: 0;
}
.description-row:last-child th,
.description-row:last-child td {
  padding-bottom: 0;
}
.description-header {
  display: block;
  width: 100%;
  font-weight: var(--font-bold);
  color: var(--color-main-200);
  padding: 15.7222222222px 0px;
  padding-bottom: 0;
  padding-right: 10px;
}
.description-data {
  color: var(--color-txt-100);
  padding: 15.7222222222px 0px;
  padding-top: 0;
}

/*apply-flow-bg ---------------------------------------------*/
.apply-flow-bg {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: url(/img/recruit/flow-bg.png) no-repeat center center/cover;
}

/*apply ---------------------------------------------*/
.apply {
  padding-bottom: var(--cmn-pd-md);
}
.apply-ttl {
  margin-bottom: var(--ttl-mb-md);
}
.apply-box {
  width: 100%;
  padding: 40px 30px;
  background: rgb(var(--color-white-rgb)/0.9);
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.apply-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --waku-size: 50px;
  background: url(/img/common/kakko-lt.png) no-repeat left top/var(--waku-size) var(--waku-size), url(/img/common/kakko-rb.png) no-repeat right bottom/var(--waku-size) var(--waku-size);
}
.apply .tel-lead {
  display: inline-block;
  width: 240px;
  text-align: center;
  padding: 7px 0;
  background: var(--color-base-100);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.22em;
  color: var(--color-main-100);
  margin-bottom: 12px;
}
.apply .tel-lg {
  margin-bottom: 10px;
}

/*flow ---------------------------------------------*/
.flow {
  overflow: hidden;
}
.flow-box {
  width: 100%;
  padding: 40px 30px;
  background: rgb(var(--color-white-rgb)/0.9);
  position: relative;
  z-index: 1;
}
.flow-box::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  --waku-size: 50px;
  background: url(/img/common/kakko-lt.png) no-repeat left top/var(--waku-size) var(--waku-size), url(/img/common/kakko-rb.png) no-repeat right bottom/var(--waku-size) var(--waku-size);
}
.flow-ttl {
  width: 100%;
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: var(--font-medium);
  line-height: 2;
  line-height: 1.5;
  letter-spacing: 0.22em;
  color: var(--color-main-200);
  margin-bottom: 34px;
}
.flow-ttl .deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  white-space: pre-wrap;
  word-break: keep-all;
}
.flow-ttl .deco::after {
  content: "";
  width: 40px;
  height: 3px;
  background-image: -webkit-gradient(linear, right top, left top, from(#23326b), to(#75a1d8));
  background-image: linear-gradient(270deg, #23326b, #75a1d8);
}
.flow-list {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 600px) {
  .flow-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.flow-item {
  aspect-ratio: 230/230;
  width: 100%;
  max-width: 160px;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 2px var(--color-main-300);
  position: relative;
  z-index: 1;
}
.flow-item:not(:last-child) {
  margin-bottom: 40px;
}
.flow-item:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 19/19;
  width: 16px;
  left: 50%;
  top: calc(100% + 13px);
  translate: -50%;
  rotate: 90deg;
}
@media (min-width: 600px) {
  .flow-item:not(:last-child) {
    margin-right: 30px;
    margin-bottom: 0;
  }
  .flow-item:not(:last-child)::before {
    all: unset;
    content: "";
    position: absolute;
    z-index: -1;
    aspect-ratio: 19/19;
    width: 16px;
    left: calc(100% + 8px);
    top: 50%;
    translate: 0 -50%;
  }
}
.flow-item:nth-of-type(1)::before {
  background: url(/img/common/arw01.png) no-repeat;
  background-size: contain;
}
.flow-item:nth-of-type(2)::before {
  background: url(/img/common/arw02.png) no-repeat;
  background-size: contain;
}
.flow-subttl {
  display: inline-block;
  text-align: center;
  font-weight: var(--font-medium);
  line-height: 1;
  position: relative;
  z-index: 1;
  padding-bottom: 6px;
  margin-bottom: 12px;
}
.flow-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 12px;
  left: 50%;
  bottom: 0;
  translate: -53%;
  background: var(--color-base-100);
}
.flow-txt {
  text-align: center;
}

/*==========================================
news
===========================================*/
.news .top-news-item-ttl {
  line-height: 1.75;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail .meta {
  margin-bottom: 40px;
}
.detail .date {
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.detail .tag {
  display: inline-block;
}
.detail .tag:not(:first-child) {
  padding-left: 10px;
}
.detail .tag:not(:last-child) {
  padding-right: 10px;
  border-right: 1px solid var(--color-main-100);
}

/*drawer ---------------------------------------------*/
.drawer #nav {
  margin-bottom: 40px;
}
.drawer-contact {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.drawer .tel-area {
  height: 72px;
  padding: 0 24px;
  padding-bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  background: var(--color-white);
}
.drawer .tel {
  margin-bottom: 8px;
}
.drawer .btn-area {
  gap: 25px;
}
.drawer .line-icon {
  width: 50px;
}

.form,
.complete,
.notfound,
.privacy,
.site-map,
.news,
.detail {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
}

.form-ttl,
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.site-map-ttl,
.news-ttl {
  margin-bottom: var(--ttl-mb-md);
}

#contact {
  --color-contact-main: var(--color-main-100);
  --color-contact-required-mark-txt: var(--color-white);
  --color-contact-required-mark-bg: var(--color-main-100);
  --color-contact-th-bg: var(--color-base-100);
  --color-contact-th-txt: var(--color-txt-100);
  --color-contact-td-bg: #fff;
  --color-contact-disabled-bg: #ccc;
  --color-contact-disabled-txt: #777;
}

.tag-change {
  --color-tag-change-current-bg: var(--color-main-100);
  --tag-change-margin-bottom: 40px;
}

.page-btn {
  --color-page-btn-txt: var(--color-txt-100);
  --color-page-btn-border: var(--color-main-200);
  --color-page-btn-mt: 40px;
  --color-page-btn-pt: 20px;
}