@charset "UTF-8";
@media (max-width: 767px) {
  .spHdn {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .pcHdn {
    display: none !important;
  }
}
.aspect-ratio-1x1 {
  --aspect-ratio-sp: 1 / 1;
  --aspect-ratio-pc: 1 / 1;
}
.aspect-ratio-2x1 {
  --aspect-ratio-sp: 2 / 1;
  --aspect-ratio-pc: 2 / 1;
}
.aspect-ratio-3x2 {
  --aspect-ratio-sp: 3 / 2;
  --aspect-ratio-pc: 3 / 2;
}
.aspect-ratio-4x3 {
  --aspect-ratio-sp: 4 / 3;
  --aspect-ratio-pc: 4 / 3;
}
.aspect-ratio-16x9 {
  --aspect-ratio-sp: 16 / 9;
  --aspect-ratio-pc: 16 / 9;
}
.aspect-ratio img {
  aspect-ratio: var(--aspect-ratio-sp);
}

/*****************************************************************
コーポレートサイト ベースレイアウト設定ファイル（common.css）
    - Version: 1.0.0 (2017/09/04)
    - Create:  (2017/09/04)
    - Release: (yyyy/mm/dd)
*****************************************************************/
/*==========================================
/
/ 1■body
/ 2■common
/ 3■header
/ 4■breadcrumbs
/ 5■title
/ 6■footer
/ 7■slider(top)
/ 8■contents
/ 9■news
/ 10■faq
/ 11■free
/
==========================================*/
/******************************************************************
  1■body
*****************************************************************/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  color: #333;
  font-weight: 500;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

.main {
  padding-top: 0;
}

body:not(#index) .main {
  padding-top: 104px;
}

/******************************************************************
  2■common
*****************************************************************/
a {
  color: #352216;
  text-decoration: underline;
  transition: opacity 0.25s linear;
}
a:link {
  color: #352216;
  text-decoration: underline;
}
@media (any-hover: hover) {
  a:hover {
    color: #352216;
    text-decoration: none;
  }
}
a:focus {
  color: #352216;
  outline: none;
  outline-offset: 0;
}
a.link-arrow {
  display: inline-block;
  padding-left: 16px;
  position: relative;
}
a.link-arrow::before, a.link-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
a.link-arrow::before {
  left: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #352216;
  border-right: 1px solid #352216;
  transform: rotate(45deg);
}
a.blank::after {
  content: url("../img/common/icon-blank.png");
  margin-left: 6px;
}

@media (any-hover: hover) {
  section a:hover {
    opacity: 0.8;
  }
}
a[href^="tel:"] {
  cursor: default;
  text-decoration: none !important;
}
@media (any-hover: hover) {
  a[href^="tel:"]:hover {
    opacity: 1;
  }
}

.btn-01,
.btn-02 {
  display: table;
  min-width: 268px;
  margin: 32px auto;
}
.btn-01 a,
.btn-02 a {
  display: table-cell;
  border-radius: 1.1em;
  text-align: center;
  vertical-align: middle;
  background-color: #012A9C;
  padding: 0.6em;
  font-size: 2.4rem;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .btn-01 a,
  .btn-02 a {
    font-size: 2rem;
  }
}

/******************************************************************
  3■header
*****************************************************************/
header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 104px;
  border-top: 4px solid #012A9C;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.9);
  transition: height 0.1s ease;
}
header .header-logo {
  display: flex;
  align-items: center;
  height: 100px;
  margin: 0;
  font-size: 1.2rem;
  transition: height 0.2s ease;
}
@media (min-width: 992px) {
  header .header-logo img {
    width: 100%;
  }
}
header .row {
  position: relative;
}
header .nav {
  display: flex;
  justify-content: center;
}
header .nav li {
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.875;
}
@media (min-width: 992px) {
  header .nav li {
    padding: 0 30px;
  }
}
header .nav li a {
  display: flex;
  align-items: center;
  height: 100px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
header .nav li a span {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
header .nav li a span.focus {
  border-bottom-color: #012A9C;
  color: #012A9C;
}
@media (max-width: 767px) {
  header .nav li a span.focus {
    color: #FFF;
  }
}
@media (any-hover: hover) {
  header .nav li a:hover {
    color: #012A9C;
  }
  header .nav li a:hover span {
    border-bottom-color: #012A9C;
  }
}
header .nav li.contact-btn {
  width: auto;
  text-align: right;
}
header .nav li.contact-btn .contact-btn-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
  padding: 24px 18px;
  border-radius: 4px;
  background-color: #012A9C;
  color: #fff;
  transition: opacity 0.2s ease;
}
header .nav li.contact-btn a {
  padding-bottom: 6px;
}
@media (any-hover: hover) {
  header .nav li.contact-btn a:hover {
    border-bottom: none;
  }
  header .nav li.contact-btn a:hover .contact-btn-bg {
    opacity: 0.8;
  }
}
header .nav .drawer-menu,
header .nav .drawer-menu span {
  display: none;
}
@media (min-width: 992px) {
  header.mini-header {
    height: 56px;
    transition: all 0.2s ease;
  }
  header.mini-header .header-logo {
    height: 52px;
  }
  header.mini-header .header-logo img {
    width: 56%;
    transition: width 0.2s ease;
  }
  header.mini-header nav li a {
    height: 52px;
    padding: 15px 0 7px;
    transition: all 0.2s ease;
  }
  header.mini-header nav li.contact-btn a {
    height: 52px;
    padding: 7px 0;
    transition: all 0.2s ease;
  }
}

@media print {
  header {
    position: absolute;
  }
}
@media (max-width: 991px) {
  .main {
    padding-top: 54px;
  }
  header {
    height: 54px;
    transition: all 0.2s ease;
  }
  header .container {
    width: 100%;
    padding: 0;
  }
  .sm-header {
    width: 100%;
    padding: 0 24px;
    background-color: #fff;
  }
  header .header-logo {
    height: 50px;
  }
  .header-logo img {
    width: auto;
    height: 40px;
  }
  ul.nav {
    display: none;
    padding: 0 28px;
  }
  .drawer-menu {
    display: block;
    position: absolute;
    top: 16px;
    right: 24px;
    width: 24px;
    height: 17px;
    cursor: pointer;
  }
  .drawer-menu span {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    box-sizing: border-box;
    background-color: #012A9C;
    transition: all 0.4s;
  }
  .drawer-menu span:nth-of-type(1) {
    top: 0;
  }
  .drawer-menu span:nth-of-type(2) {
    top: 8px;
  }
  .drawer-menu span:nth-of-type(3) {
    bottom: 0;
  }
  header.open {
    height: 100%;
    background-color: #012A9C;
    transition: all 0.2s ease;
  }
  header.open .drawer-menu span:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  header.open .drawer-menu span:nth-of-type(2) {
    opacity: 0;
  }
  header.open .drawer-menu span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  header.open ul.nav {
    display: block;
  }
  header.open ul.nav li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  header.open ul.nav li a {
    position: relative;
    height: auto;
    padding: 16px 0;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
  }
  header.open ul.nav li a span {
    padding: 0;
  }
  header.open ul.nav li a::before {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-top: -4px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    content: "";
  }
  header.open ul.nav .contact-btn a {
    display: flex;
    justify-content: flex-start;
    margin: 0;
  }
  header.open ul.nav .contact-btn a .contact-btn-bg {
    justify-content: flex-start;
    width: 144px;
    height: auto;
    padding: 0;
    border-radius: unset;
    background-color: unset;
  }
}
/******************************************************************
  4■breadcrumbs
*****************************************************************/
.breadcrumbs {
  padding: 4px 0;
  background-color: #f1f1f1;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}
.breadcrumbs li {
  display: inline-block;
  position: relative;
  margin-right: 16px;
  padding-right: 16px;
  font-size: 1.4rem;
  color: #999;
}
.breadcrumbs li::before {
  content: "";
  position: absolute;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  top: 50%;
  right: 0;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
}
.breadcrumbs li:last-child::before {
  content: none;
}
@media (max-width: 767px) {
  .breadcrumbs {
    margin-bottom: 32px;
  }
  .breadcrumbs .container {
    overflow-x: scroll;
  }
  .breadcrumbs .container ul {
    overflow: hidden;
    display: table;
    width: initial;
    width: auto;
  }
  .breadcrumbs .container ul li {
    display: table-cell;
    white-space: nowrap;
    padding-left: 16px;
  }
  .breadcrumbs .container ul li:first-child {
    padding-left: 0;
  }
}

/******************************************************************
  5■title
*****************************************************************/
.main-img {
  height: 700px;
  position: relative;
}
@media (max-width: 767px) {
  .main-img {
    height: 432px;
  }
}
.main-img .kv-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.img-text {
  color: #012A9C;
  width: 100%;
  text-align: center;
  font-size: 4vw;
}
@media (max-width: 767px) {
  .img-text {
    font-size: 8vw;
  }
}
.img-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.img-text.dark-color {
  color: #333;
  text-shadow: 0px 0px 3px #fff;
}
.img-text.bright-color {
  color: #fff;
  text-shadow: 0px 0px 3px #333;
}

.title-box {
  height: 344px;
  position: relative;
  overflow: hidden;
  background-color: #9f9894;
}
@media (max-width: 767px) {
  .title-box {
    height: 200px;
  }
}

.title-bg {
  opacity: 0.7;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.title-text {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 0;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.title-text-upper {
  font-size: 4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .title-text-upper {
    font-size: 3rem;
  }
}
.title-text-lower {
  font-size: 2.4rem;
  padding-top: 24px;
}
@media (max-width: 767px) {
  .title-text-lower {
    font-size: 2rem;
  }
}

.contents-ttl {
  position: relative;
  font-weight: bold;
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.25;
  padding-bottom: 16px;
  margin-bottom: 48px;
  color: #333;
}
@media (max-width: 767px) {
  .contents-ttl {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
.contents-ttl::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  background-color: #012A9C;
  width: 104px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.contents-ttl-sub {
  font-size: 2.4rem;
  color: #012A9C;
  line-height: 1.25;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .contents-ttl-sub {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .contents-ttl.ttl-left {
    text-align: left;
  }
  .contents-ttl.ttl-left::after {
    left: 0;
    transform: translateX(0);
  }
}
/******************************************************************
  6■footer
*****************************************************************/
footer section {
  background-color: #012A9C;
  margin: 0;
  color: #FFF;
}
footer section a {
  color: #FFF;
  font-weight: bold;
}
footer section a:link, footer section a:visited {
  text-decoration: none;
  color: #FFF;
}
@media (any-hover: hover) {
  footer section a:hover {
    color: #fff;
    opacity: 1;
  }
}

.footer-nav-title {
  border-bottom: 1px solid #FFF;
  font-size: 1.6rem;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .footer-nav-title {
    font-size: 1.5rem;
    padding: 16px 32px 16px 0;
    margin-bottom: 0;
    position: relative;
  }
  .footer-nav-title a::after {
    content: "";
    position: absolute;
    inset: 0;
  }
  .footer-nav-title a:has(+ .trigger)::after {
    inset: 0 64px 0 0;
  }
  .footer-nav-title .trigger {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: 18px;
    top: 18px;
    cursor: pointer;
  }
  .footer-nav-title .trigger span::after {
    content: "";
    position: absolute;
    inset: -18px -18px -20px;
  }
  .footer-nav-title .trigger::before, .footer-nav-title .trigger::after {
    content: "";
    position: absolute;
    display: block;
    background-color: #fff;
    width: 15px;
    height: 1px;
    top: 7px;
    right: 0;
  }
  .footer-nav-title .trigger::after {
    transition: all 0.4s;
    width: 1px;
    height: 15px;
    top: 0;
    right: 7px;
  }
  .footer-nav-title .trigger.op::after {
    transform: rotate(-90deg);
  }
}

.footer-sub-menu li {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .footer-sub-menu li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .footer-sub-menu {
    display: none;
    padding-top: 8px;
    padding-left: 16px;
    padding-bottom: 8px;
    font-size: 1.3rem;
    margin-bottom: 0;
  }
  .footer-sub-menu li a {
    position: relative;
  }
  .footer-sub-menu li a::after {
    content: "";
    position: absolute;
    inset: -4px -16px;
  }
}

@media (max-width: 767px) {
  footer dl {
    border-bottom: 1px solid #FFF;
  }
  footer dl .footer-nav-title {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  dd.footer-sub-menu {
    display: block !important;
  }
}
.copyright {
  text-align: center;
  margin: 64px 0 0;
}

footer .ga-pdf {
  padding: 16px 0 0 0;
}

.footer-logo {
  width: 280px;
}
@media (max-width: 767px) {
  .footer-logo {
    width: 200px;
  }
}
.footer-logo {
  margin: 0 auto 16px;
  text-align: center;
}
.footer-logo img {
  width: 100%;
}

.pagetop {
  position: fixed;
  right: 20px;
  bottom: 60px;
  z-index: 100;
  display: none;
}
.pagetop a {
  display: block;
  position: relative;
  right: 0;
  border: 1px solid #fff;
  background: #FA9F0C;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.pagetop a::before {
  content: "";
  position: absolute;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 16px;
  left: 50%;
  margin-left: -8px;
  width: 16px;
  height: 16px;
  transform: rotate(315deg);
}

.sns-box {
  display: flex;
  align-items: center;
  font-size: 0;
}
.sns-box li {
  width: 40px;
  display: block;
  margin-right: 26px;
  height: 40px;
}
.sns-box li a {
  display: block;
}
.sns-box li img {
  width: 100%;
}
.sns-box .x-logo {
  width: 34px;
  height: auto;
}
@media (max-width: 767px) {
  .sns-box {
    justify-content: center;
    margin-top: 40px;
    text-align: center;
  }
  .sns-box li {
    margin: 0 13px;
  }
}

/******************************************************************
  7■slider(top)
*****************************************************************/
.mainimg {
  position: relative;
}
.mainimg .no-link {
  cursor: default;
}
.mainimg img {
  width: 100%;
}
.mainimg iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}

/******************************************************************
  8■contents
*****************************************************************/
section {
  padding: 80px 0 80px;
}
@media (max-width: 767px) {
  section {
    padding: 40px 0 40px;
  }
}
section p {
  line-height: 1.75;
  letter-spacing: 0.075em;
}
section.section-colored {
  background-color: #FFFAEB;
  margin-bottom: 0;
}
section.section-image, section.section-image-dark {
  background-position: center center;
  background-size: cover;
  position: relative;
}
section.section-image::before, section.section-image-dark::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: #FFFAEB;
  opacity: 0.8;
  z-index: 1;
}
section.section-image .container, section.section-image-dark .container {
  position: relative;
  z-index: 10;
}
section.recruit {
  color: #fff;
}
section.recruit::before {
  background-color: #333;
}
section.recruit .contents-ttl {
  color: #fff;
}
section.recruit .contents-ttl::after {
  background-color: #fff;
}
section.recruit .contents-ttl-sub {
  color: #fff;
}
section.recruit .lead {
  text-align: center;
}
@media (max-width: 767px) {
  section.recruit .lead {
    text-align: left;
  }
}
section.contact {
  background-color: #333;
  position: relative;
  color: #fff;
}
section.contact::before {
  position: absolute;
  top: 0;
  left: 0;
  content: " ";
  width: 100%;
  height: 100%;
  background-color: #012A9C;
  opacity: 0.4;
  z-index: 0;
}
section.contact .contents-ttl {
  color: #fff;
}
section.contact .contents-ttl::after {
  background-color: #fff;
}
section.contact .tel-number {
  font-size: 2.8rem;
  font-weight: normal;
  vertical-align: middle;
}
section.contact .contact-info {
  margin: 8px auto;
}
section.contact a, section.recruit a {
  color: #fff;
}
section.contact a:link, section.contact a:visited, section.recruit a:link, section.recruit a:visited {
  text-decoration: underline;
  color: #fff;
}
@media (any-hover: hover) {
  section.contact a:hover, section.recruit a:hover {
    text-decoration: none;
  }
}
section.contact .btn-02 a, section.recruit .btn-02 a {
  position: relative;
  letter-spacing: 1px;
  border-radius: 0;
  padding-left: 4px;
  background-color: transparent;
  border: 2px solid #fff;
  font-weight: normal;
  color: #fff;
}
section.contact .btn-02 a:link, section.contact .btn-02 a:visited, section.recruit .btn-02 a:link, section.recruit .btn-02 a:visited {
  text-decoration: none;
}
@media (any-hover: hover) {
  section.contact .btn-02 a:hover, section.recruit .btn-02 a:hover {
    background-color: #fff;
    color: #012A9C;
    opacity: 1;
  }
  section.contact .btn-02 a:hover::before, section.recruit .btn-02 a:hover::before {
    border-color: #012A9C;
  }
}
section.contact .btn-02 a::before, section.contact .btn-02 a::after, section.recruit .btn-02 a::before, section.recruit .btn-02 a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
section.contact .btn-02 a::before, section.recruit .btn-02 a::before {
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.row.flx .flx-box {
  background-clip: content-box;
}
.row.flx .flx-box .flx-box-inner {
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .row.flx {
    display: flex;
  }
}
.m-b-sm {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .m-b-sm {
    margin-bottom: 8px;
  }
}

.m-b-md {
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .m-b-md {
    margin-bottom: 16px;
  }
}

.m-b-lg {
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .m-b-lg {
    margin-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .sm-right-space {
    padding-right: 3%;
  }
  .sm-left-space {
    padding-left: 3%;
  }
}
.font-size-xs {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .font-size-xs {
    font-size: 1rem;
  }
}

.font-size-sm {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .font-size-sm {
    font-size: 1rem;
  }
}

.font-size-md {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .font-size-md {
    font-size: 1.2rem;
  }
}

.font-size-lg {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  .font-size-lg {
    font-size: 1.6rem;
  }
}

.font-size-xl {
  font-size: 5rem;
}
@media (max-width: 767px) {
  .font-size-xl {
    font-size: 3rem;
  }
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.lead {
  line-height: 2;
}

.article {
  line-height: 2;
}

.valign-m {
  vertical-align: middle;
}

.emphasis {
  font-weight: bold;
}
.emphasis-colored {
  color: #012A9C;
}
.emphasis-boldcolored {
  font-weight: bold;
  color: #012A9C;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.h-line {
  border-left: 4px solid #012A9C;
  padding-left: 8px;
}

.label {
  color: #fff;
  background-color: #012A9C;
  padding: 4px 8px;
}

.blockquote {
  position: relative;
  margin: 0 0 16px;
  padding: 0;
  z-index: 1;
}
.blockquote p {
  position: relative;
  z-index: 3;
  padding: 16px;
  font-size: 2.4rem;
  color: #012A9C;
}
.blockquote::before, .blockquote::after {
  content: "“";
  font-size: 60px;
  line-height: 0.8em;
  font-family: "Times New Roman", "ＭＳ Ｐゴシック", sans-serif;
  color: #012A9C;
  position: absolute;
  z-index: 2;
  opacity: 0.5;
}
.blockquote::before {
  left: 0;
  top: 0;
}
.blockquote::after {
  content: "”";
  line-height: 0em;
  right: 0;
  bottom: 0;
}

.colored-box {
  background-color: #FFFAEB;
  border: 1px solid #012A9C;
  padding: 16px;
}

.bg-gray {
  background-color: #ccc;
}

.bg-white {
  background-color: #fff;
}

.bg-colored {
  background-color: #FFFAEB;
}

.no-wrap {
  white-space: nowrap;
}

.inline-block {
  display: inline-block;
}

/* リスト関連 */
.dot-list li {
  position: relative;
  padding-left: 15px;
  margin: 16px 0;
}
.dot-list li::after {
  color: #333;
  content: "・";
  left: 0;
  position: absolute;
  top: 0;
}
.dot-list.lh-sm li {
  margin: 8px 0;
}

.check-list li {
  margin: 16px 0 16px 24px;
  position: relative;
  padding-left: 4px;
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .check-list li {
    margin: 8px 0 8px 24px;
    font-size: 1.8rem;
    font-weight: normal;
  }
}
.check-list li::after {
  opacity: 0.8;
  display: block;
  content: "";
  position: absolute;
  top: 0.2em;
  left: -1.4em;
  width: 16px;
  height: 10px;
  border-left: 4px solid #012A9C;
  border-bottom: 4px solid #012A9C;
  transform: rotate(-45deg);
}
.check-list.lh-sm li {
  margin: 8px 0 8px 24px;
}

/* 画像関連 */
.img-fluid {
  width: 100%;
  height: auto;
}

.img-radius {
  border-radius: 4px;
}

.img-radius-round {
  border-radius: 50%;
}

.img-cadre {
  border: 1px solid #ccc;
  padding: 8px;
}

.img-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 4px;
  opacity: 1;
}
.img-link figure {
  top: 0;
  left: 0;
  background-color: #333;
}
.img-link figure img {
  width: 100%;
  opacity: 0.4;
  transition: transform 0.2s ease;
}
@media (any-hover: hover) {
  .img-link:hover figure img {
    transform: scale(1.08);
  }
}
.img-link .img-link-text {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #fff;
}
.img-link .img-link-text-ttl {
  font-size: 2.8rem;
}
.img-link .box-arrow::before, .img-link .box-arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-right: 0;
  content: "";
  vertical-align: middle;
  opacity: 1;
}
.img-link .box-arrow::before {
  right: 24px;
  width: 16px;
  height: 16px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

.fukidashi-top {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 8px;
  margin: 16px 0 0;
  border: 1px solid #999;
}
.fukidashi-top::before, .fukidashi-top::after {
  border: 10px solid transparent;
  border-bottom-color: #fff;
  border-top-width: 0;
  position: absolute;
  top: -9px;
  content: " ";
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  z-index: 1;
}
.fukidashi-top::after {
  border-bottom-color: #999;
  top: -10px;
  z-index: 0;
}

/* テーブル関連 */
@media (min-width: 768px) {
  .table-list dl {
    display: table;
    width: 100%;
  }
  .table-list dt,
  .table-list dd {
    display: table-cell;
    vertical-align: middle;
    border-right: 1px solid #bbb;
    border-top: 1px solid #bbb;
    padding: 24px;
  }
  .table-list dt {
    width: 25%;
    text-align: center;
    position: relative;
  }
  .table-list dd {
    display: table-cell;
    width: auto;
    border-right: none;
  }
  .table-list dl:first-child dt,
  .table-list dl:first-child dd {
    border-top: none;
  }
  .table-list.no-v-line dt,
  .table-list.no-v-line dd {
    border-right: none;
  }
  .table-list.time-line dt {
    color: #012A9C;
  }
  .table-list.time-line dt,
  .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 8px;
    width: 8px;
    background-color: #012A9C;
    position: absolute;
    right: -5px;
    top: 32px;
    border-radius: 4px;
  }
  .table-list.time-line dd p {
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .table-list dt,
  .table-list dd {
    padding: 8px;
  }
  .table-list dt {
    background-color: #FFFAEB;
  }
  .table-list dd {
    padding-bottom: 16px;
  }
  .table-list dl:first-child dt,
  .table-list dl:first-child dd {
    border-top: none;
  }
  .table-list.time-line dt {
    color: #012A9C;
    background-color: transparent;
    position: relative;
    font-weight: bold;
  }
  .table-list.time-line dt,
  .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
    border-left: 1px solid #bbb;
    padding-left: 16px;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 7px;
    width: 7px;
    background-color: #012A9C;
    position: absolute;
    left: -4px;
    top: 13px;
    border-radius: 4px;
  }
  .table-list.time-line dd {
    padding-top: 0;
  }
  .table-list.time-line dd p {
    margin: 8px 0 0 8px;
  }
}
/* タイムスケジュール
------------------------------*/
@media (min-width: 992px) {
  .list-schedule-wrap {
    padding: 0 48px;
  }
}
@media (max-width: 767px) {
  .list-schedule-wrap {
    padding: 0 10px;
  }
}

.list-schedule {
  --timeWidth: 3em;
  --timePadding: 1em;
  --circleWitdh: 1em;
  --circleborder: 4px;
  --lineWitdh: 2px;
  position: relative;
}
@media (min-width: 768px) {
  .list-schedule {
    --timePadding: 1.5em;
    font-size: 1.6rem;
  }
}
.list-schedule::before {
  content: "";
  display: block;
  width: var(--lineWitdh);
  height: calc(100% - (var(--circleWitdh) + var(--circleborder)) / 2 + 1px);
  background: #012A9C;
  position: absolute;
  left: 0;
  top: 0.5em;
}
@media (min-width: 768px) {
  .list-schedule::before {
    left: calc(var(--timeWidth) + var(--timePadding));
  }
}
.list-schedule dt {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5em;
  position: relative;
  letter-spacing: 1px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .list-schedule dt {
    margin-left: calc(var(--circleWitdh) + var(--circleborder) + 0.5em);
  }
}
.list-schedule dt::before {
  content: "";
  display: block;
  width: calc(var(--circleWitdh) + var(--circleborder));
  height: calc(var(--circleWitdh) + var(--circleborder));
  background: #FFFFFF;
  position: absolute;
  left: calc(-1px - (var(--circleWitdh) + var(--circleborder) + 1em));
  top: 1px;
  border-radius: 100%;
  border: var(--circleborder) solid #222;
}
@media (min-width: 768px) {
  .list-schedule dt::before {
    left: calc(var(--timeWidth) + var(--timePadding) + var(--lineWitdh) - (var(--circleWitdh) + var(--circleborder)) / 2 - 1px);
  }
}
@media (min-width: 768px) {
  .list-schedule dt::after {
    position: absolute;
    top: calc(0.5em + var(--circleborder) / 2);
    left: calc(var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder));
    display: inline-block;
    content: "";
    width: 37px;
    height: 1px;
    border-top: 2px dashed #3c3f3f;
  }
}
.list-schedule dt .workstyle-time {
  min-width: var(--timeWidth);
  text-align: right;
}
.list-schedule dt .workstyle-tit {
  width: calc(100% - (var(--timeWidth) + var(--timePadding)));
  font-weight: bold;
}
@media (min-width: 768px) {
  .list-schedule dt .workstyle-tit {
    width: calc(100% - (var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder) + 47px));
  }
}
.list-schedule dd {
  padding-bottom: 2em;
}
@media (max-width: 767px) {
  .list-schedule dd {
    margin-left: calc(var(--circleWitdh) + var(--circleborder) + 0.5em);
  }
}
@media (min-width: 768px) {
  .list-schedule dd {
    margin-left: calc(var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder) + 47px);
    width: calc(100% - (var(--timeWidth) + var(--timePadding) + var(--circleWitdh) + var(--circleborder) + 47px));
  }
}
.list-schedule dd p {
  font-size: 1.6rem;
}

/* その他 */
a.map-link {
  display: inline-block;
  margin-top: 14px;
  padding: 11.5px 37px;
  background-color: #012A9C;
  vertical-align: middle;
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
}
a.map-link::after {
  content: url(../img/common/icon-blank-white.png);
  margin-left: 10px;
}

.g-map {
  border: 0;
  width: 100%;
  height: 320px;
}

.map-responsive {
  position: relative;
  width: 100%;
}
.map-responsive::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
@media (max-width: 767px) {
  .map-responsive::before {
    padding-top: 100%;
  }
}
.map #map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}

.sliding-box {
  overflow: hidden;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .sliding-box {
    padding: 80px 0;
  }
}
.sliding-box .sliding {
  height: 300px;
  animation: slide 80s linear infinite;
  -webkit-animation: slide 80s linear infinite;
  -moz-animation: slide 80s linear infinite;
  background-repeat: repeat-x;
  background-size: cover;
}
@media (max-width: 767px) {
  .sliding-box .sliding {
    height: 200px;
  }
}
.sliding-box .sliding.n-01 {
  background-image: url(../img/top/sliding-ph-001.jpg);
}

@keyframes slide {
  0% {
    background-position: 0px 0;
  }
  100% {
    background-position: 2952px 0;
  }
}
.anchor {
  margin-top: -136px;
  padding-top: 136px;
}
@media (max-width: 991px) {
  .anchor {
    margin-top: -134px;
    padding-top: 134px;
  }
}
@media (max-width: 767px) {
  .anchor {
    margin-top: -94px;
    padding-top: 94px;
  }
}

.guide-link {
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .guide-link {
    padding: 40px 0 48px;
  }
}
.guide-link .link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 0;
}
.guide-link .link-list > li {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid #bbb;
}
.guide-link .link-list > li:last-child {
  border-right: 1px solid #bbb;
}
@media (max-width: 767px) {
  .guide-link .link-list > li:nth-child(even):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
.guide-link .link-list > li a {
  position: relative;
  width: 100%;
  padding: 17px 26px 17px 17px;
  text-align: center;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
}
.guide-link .link-list > li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
}
@media (min-width: 768px) {
  .guide-link .link-list > li a::before {
    right: 20px;
  }
}
@media (min-width: 768px) {
  .guide-link .link-list.col-02 > li {
    width: 33.3333333333%;
  }
}
@media (min-width: 992px) {
  .guide-link .link-list.col-02 > li {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .guide-link .link-list.col-03 > li {
    width: 33.3333333333%;
  }
  .guide-link .link-list.col-03 > li:nth-child(3n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
@media (min-width: 992px) {
  .guide-link .link-list.col-03 > li {
    width: 25%;
  }
  .guide-link .link-list.col-03:has(> li:nth-child(5)) > li {
    width: calc(25% + 1px);
  }
}
@media (min-width: 768px) {
  .guide-link .link-list.col-04 > li {
    width: 25%;
  }
  .guide-link .link-list.col-04 > li:nth-child(4n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .guide-link .link-list.col-05 > li {
    width: 33.3333333333%;
  }
  .guide-link .link-list.col-05 > li:nth-child(3n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}
@media (min-width: 768px) and (min-width: 992px) {
  .guide-link .link-list.col-05 > li {
    width: 20%;
  }
  .guide-link .link-list.col-05 > li:nth-child(5n):not(:last-child) {
    border-right: 1px solid #bbb;
  }
}

/******************************************************************
  9■news
*****************************************************************/
.news-list {
  background: url("../img/top/bg-line-r.png") bottom right no-repeat;
  background-size: clamp(37.5rem, -20.2777777778rem + 75.2314814815vw, 70rem) auto;
}
.news-list .contents-ttl:after {
  background-color: #0071C1;
}
.news-list .contents-ttl .ttl-jp {
  color: #333;
}
.news-list ul {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .news-list ul {
    margin-bottom: 48px;
  }
}
.news-list ul li {
  border-bottom: 1px solid #bbb;
}
.news-list ul li a {
  display: table;
  text-decoration: none !important;
  width: 100%;
  padding: 8px 0;
}
@media (min-width: 768px) {
  .news-list ul li a {
    font-size: 1.4rem;
    height: 96px;
  }
}
@media (any-hover: hover) {
  .news-list ul li a:hover {
    background-color: #FFFAEB;
  }
}
.news-list ul li a .news-date,
.news-list ul li a .news-category,
.news-list ul li a .news-title {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .news-list ul li a .news-date,
  .news-list ul li a .news-category,
  .news-list ul li a .news-title {
    display: inline-block;
    margin: 4px 0;
  }
}
@media (min-width: 768px) {
  .news-list ul li a .news-date {
    width: 136px;
  }
  .news-list ul li a .news-category {
    width: 168px;
    padding-right: 24px;
  }
  .news-list ul li a .news-category .category-frame {
    width: 100%;
    text-align: center;
  }
}
.news-list ul li a .news-date {
  color: #012A9C;
  text-align: center;
}
@media (max-width: 767px) {
  .news-list ul li a .news-date {
    text-align: left;
    margin-right: 24px;
  }
}
.news-list ul li a .news-category {
  margin: 4px 0;
}
.news-list ul li a .news-category .category-frame {
  padding: 2px 8px;
  background-color: #E0F1FF;
  display: inline-block;
}
@media (max-width: 767px) {
  .news-list ul li a .news-title {
    display: block;
  }
}
.news-list ul li a .news-text {
  width: 100%;
  color: #333;
}
@media (min-width: 768px) {
  .news-list ul li a .news-text {
    position: relative;
    display: inline-block;
    padding-right: 56px;
  }
  .news-list ul li a .news-text::before, .news-list ul li a .news-text::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 24px;
    margin: auto;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    opacity: 1;
  }
  .news-list ul li a .news-text::before {
    right: 24px;
    width: 12px;
    height: 12px;
    border-top: 1px solid #352216;
    border-right: 1px solid #352216;
    transform: rotate(45deg);
  }
}
@media (max-width: 767px) {
  .news-list ul li a {
    position: relative;
    display: inline-block;
    padding-right: 24px;
  }
  .news-list ul li a::before, .news-list ul li a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
    margin-right: 0;
    content: "";
    vertical-align: middle;
    opacity: 1;
  }
  .news-list ul li a::before {
    right: 8px;
    width: 8px;
    height: 8px;
    border-top: 1px solid #352216;
    border-right: 1px solid #352216;
    transform: rotate(45deg);
  }
}
.news-list .local-navigation .local-navigation-item a {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  height: 62px;
  margin: 0 auto;
  padding: 12px 0;
  transition: ease 0.2s;
  border: 2px solid #012A9C;
  border-radius: 100px;
  background-color: #FFF;
  color: #012A9C;
  font-size: 1.6rem;
  letter-spacing: 0em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 768px) {
  .news-list .local-navigation .local-navigation-item a {
    height: 74px;
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}
.news-list .local-navigation .local-navigation-item a span {
  position: relative;
  z-index: 3;
  display: inline-block;
  color: #012A9C;
}
.news-list .local-navigation .local-navigation-item a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #FA9F0C;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.news-list .local-navigation .local-navigation-item a:after {
  content: "";
  border-radius: 50%;
  width: 38px;
  height: 38px;
  aspect-ratio: 1/1;
  background: url("../img/common/icon-arrow-w.png") center/cover no-repeat;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
}
@media (min-width: 768px) {
  .news-list .local-navigation .local-navigation-item a:after {
    width: 50px;
    height: 50px;
  }
}
@media (any-hover: hover) {
  .news-list .local-navigation .local-navigation-item a:hover {
    opacity: 1;
  }
  .news-list .local-navigation .local-navigation-item a:hover span {
    color: #FFF;
  }
  .news-list .local-navigation .local-navigation-item a:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .news-list .local-navigation .local-navigation-item a:hover:after {
    background: url("../img/common/icon-arrow-o.png") center/cover no-repeat;
    z-index: 10;
  }
}
.table-news-list .news-box {
  width: 100%;
  border-top: 1px solid #bbb;
}
.table-news-list .news-box a {
  display: block;
  padding: 24px 16px;
  text-decoration: none;
}
@media (max-width: 767px) {
  .table-news-list .news-box a {
    padding: 16px 0;
  }
}
.table-news-list .news-box a h3 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 16px;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .table-news-list .news-box a h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
.table-news-list .news-box:first-child {
  border-top: none;
}

.news-info {
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .news-info {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }
}
.news-info .news-date {
  margin-right: 16px;
}
.news-info .category-frame {
  padding: 2px 8px;
  background-color: #E0F1FF;
  display: inline-block;
  text-align: center;
  min-width: 8em;
}

.news-img {
  max-width: 500px;
}

/******************************************************************
10■faq
*****************************************************************/
.faq-container {
  position: relative;
  width: 100%;
  cursor: pointer;
}

.faq-q {
  display: block;
  position: relative;
  margin: 0;
  padding: 20px 60px;
  background: #f1f1f1;
  cursor: pointer;
}
@media (max-width: 767px) {
  .faq-q {
    padding: 15px 35px 10px;
  }
}
.faq-q:not(:first-child) {
  margin-top: 20px;
}
.faq-q:before {
  content: "Q";
  top: 18px;
}
@media (max-width: 767px) {
  .faq-q:before {
    top: 15px;
  }
}
.faq-q:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(135deg);
}
@media (max-width: 767px) {
  .faq-q:after {
    right: 10px;
  }
}
.faq-q.open {
  background-color: #012A9C;
  color: white;
}
.faq-q.open::after {
  transform: rotate(-45deg);
  top: 45%;
  border-color: #fff;
}
.faq-q.open i {
  color: #333;
}
.faq-q.active {
  background-color: #012A9C;
  color: white;
}
@media (any-hover: hover) {
  .faq-q:hover i::before, .faq-q:hover i:active {
    color: #333;
  }
  .faq-q:hover {
    background-color: #012A9C;
    color: white;
  }
  .faq-q:hover::after {
    border-color: #fff;
  }
}

.faq-a {
  display: none;
  padding: 30px 20px 30px 60px;
  position: relative;
  background-color: #f1f1f1;
}
@media (max-width: 767px) {
  .faq-a {
    padding: 20px 10px 20px 35px;
  }
}
.faq-a:before {
  content: "A";
  top: 28px;
}
@media (max-width: 767px) {
  .faq-a:before {
    top: 20px;
  }
}

.faq-q:before,
.faq-a:before {
  position: absolute;
  left: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 767px) {
  .faq-q:before,
  .faq-a:before {
    left: 10px;
    font-size: 1.8rem;
  }
}

/******************************************************************
  11■free(その他、独自のスタイルは以下に記述してください)
*****************************************************************/
.contents-ttl {
  margin-bottom: 32px;
  padding-bottom: 12px;
}
@media (min-width: 768px) {
  .contents-ttl {
    margin-bottom: 56px;
    padding-bottom: 16px;
  }
}
.contents-ttl::after {
  width: 50px;
  height: 4px;
  border-radius: 3px;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .contents-ttl::after {
    width: 80px;
    height: 6px;
    border-radius: 10px;
  }
}
.contents-ttl .ttl-en, .contents-ttl .ttl-jp {
  display: block;
}
.contents-ttl .ttl-en {
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .contents-ttl .ttl-en {
    margin-bottom: 16px;
  }
}
.contents-ttl .ttl-en img {
  width: auto;
  height: 14px;
}
@media (min-width: 768px) {
  .contents-ttl .ttl-en img {
    height: 22px;
  }
}
.contents-ttl .ttl-jp {
  color: #fff;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .contents-ttl .ttl-jp {
    font-size: 5.6rem;
  }
}

.local-navigation li a {
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 450px;
  height: 62px;
  margin: 0 auto;
  padding: 12px 0;
  transition: ease 0.2s;
  border: 2px solid #012A9C;
  border-radius: 100px;
  background-color: #FFF;
  color: #012A9C;
  font-size: 1.6rem;
  letter-spacing: 0em;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  text-decoration: none;
}
@media (min-width: 768px) {
  .local-navigation li a {
    height: 74px;
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}
.local-navigation li a span {
  position: relative;
  z-index: 3;
  display: inline-block;
  color: #012A9C;
}
.local-navigation li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #FA9F0C;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.local-navigation li a:after {
  content: "";
  border-radius: 50%;
  width: 38px;
  height: 38px;
  aspect-ratio: 1/1;
  background: url("../img/common/icon-arrow-w.png") center/cover no-repeat;
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  margin: auto;
}
@media (min-width: 768px) {
  .local-navigation li a:after {
    width: 50px;
    height: 50px;
  }
}
@media (any-hover: hover) {
  .local-navigation li a:hover {
    opacity: 1;
  }
  .local-navigation li a:hover span {
    color: #FFF;
  }
  .local-navigation li a:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  .local-navigation li a:hover:after {
    background: url("../img/common/icon-arrow-o.png") center/cover no-repeat;
    z-index: 10;
  }
}
.index-strength {
  background: url("../img/top/bg-strength-sp.jpg") center/cover no-repeat;
}
@media (min-width: 768px) {
  .index-strength {
    background: url("../img/top/bg-strength-pc.jpg") center/cover no-repeat;
  }
}
.index-strength .lead {
  margin-bottom: 32px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .index-strength .lead {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.index-strength .image {
  margin-bottom: 32px;
}
.index-strength .image img {
  aspect-ratio: 375/347;
}
@media (min-width: 768px) {
  .index-strength .image img {
    aspect-ratio: 588/167;
  }
}
.index-strength .text {
  margin-bottom: 32px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
@media (min-width: 768px) {
  .index-strength .text {
    margin-bottom: 48px;
  }
}

.index-business {
  background: url("../img/top/bg-line-r.png") bottom right no-repeat;
  background-size: clamp(37.5rem, -20.2777777778rem + 75.2314814815vw, 70rem) auto;
}
.index-business .wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media (min-width: 768px) {
  .index-business .wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
  }
}
.index-business .content .contents-ttl {
  text-align: center;
}
@media (min-width: 768px) {
  .index-business .content .contents-ttl {
    text-align: left;
  }
}
.index-business .content .contents-ttl:after {
  background-color: #0071C1;
}
@media (min-width: 768px) {
  .index-business .content .contents-ttl:after {
    left: 0;
    transform: translateX(0);
  }
}
.index-business .content .contents-ttl .ttl-jp {
  color: #333;
}
.index-business .content .lead {
  margin-bottom: 32px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: bold;
}
@media (min-width: 768px) {
  .index-business .content .lead {
    font-size: 2.2rem;
    line-height: 1.75;
    letter-spacing: 0.075em;
  }
}
.index-business .content .text {
  margin-bottom: 32px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
@media (min-width: 768px) {
  .index-business .content .text {
    margin-bottom: 48px;
  }
}
.index-business .image-outer {
  position: relative;
}
.index-business .image {
  margin-right: -15px;
}
@media (min-width: 768px) {
  .index-business .image {
    margin-right: calc(100% - 50vw + 28px);
  }
}
.index-business .image img {
  width: 100%;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .index-business .image img {
    border-top-left-radius: 60px;
    border-bottom-left-radius: 60px;
  }
}
@media (min-width: 768px) {
  .index-business .local-navigation li a {
    margin-left: 0;
  }
}

.index-company {
  background: url("../img/top/bg-line-l.png") bottom left no-repeat;
  background-size: clamp(37.5rem, -20.2777777778rem + 75.2314814815vw, 70rem) auto;
  background-color: #EBF8FF;
}
.index-company .wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media (min-width: 768px) {
  .index-company .wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
  }
}
.index-company .content .contents-ttl {
  text-align: center;
}
@media (min-width: 768px) {
  .index-company .content .contents-ttl {
    text-align: left;
  }
}
.index-company .content .contents-ttl:after {
  background-color: #0071C1;
}
@media (min-width: 768px) {
  .index-company .content .contents-ttl:after {
    left: 0;
    transform: translateX(0);
  }
}
.index-company .content .contents-ttl .ttl-jp {
  color: #333;
}
.index-company .content .lead {
  margin-bottom: 32px;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: bold;
}
@media (min-width: 768px) {
  .index-company .content .lead {
    font-size: 2.4rem;
    line-height: 1.75;
    letter-spacing: 0.075em;
  }
}
.index-company .content .text {
  margin-bottom: 32px;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
@media (min-width: 768px) {
  .index-company .content .text {
    margin-bottom: 48px;
  }
}
.index-company .image-outer {
  position: relative;
}
@media (max-width: 767px) {
  .index-company .image-outer {
    order: 2;
  }
}
.index-company .image {
  margin-left: -15px;
}
@media (min-width: 768px) {
  .index-company .image {
    margin-left: calc(100% - 50vw + 28px);
  }
}
.index-company .image img {
  width: 100%;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .index-company .image img {
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
  }
}
@media (min-width: 768px) {
  .index-company .local-navigation li a {
    margin-left: 0;
  }
}

.index-recruit {
  background: url("../img/top/bg-recruit-001.jpg") center/cover no-repeat;
}
.index-recruit .wrapper {
  padding: 40px 15px;
  background-color: #FFF;
  opacity: 0.95;
}
@media (min-width: 768px) {
  .index-recruit .wrapper {
    padding: 80px;
  }
}
.index-recruit .contents-ttl:after {
  background-color: #0071C1;
}
.index-recruit .contents-ttl .ttl-jp {
  color: #333;
}
.index-recruit .lead {
  margin-bottom: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.075em;
  text-align: center;
}
@media (min-width: 768px) {
  .index-recruit .lead {
    font-size: 2.4rem;
    line-height: 1.75;
  }
}
.index-recruit .image {
  margin-bottom: 32px;
}
.index-recruit .image img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 49/20;
}
@media (min-width: 768px) {
  .index-recruit .image img {
    border-radius: 30px;
  }
}
.index-recruit .text {
  margin-bottom: 32px;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
@media (min-width: 768px) {
  .index-recruit .text {
    margin-bottom: 48px;
    text-align: center;
  }
}
.index-recruit .secondary .text {
  margin-bottom: 32px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
@media (min-width: 768px) {
  .index-recruit .secondary .text {
    margin-bottom: 48px;
    font-size: 2rem;
    text-align: center;
  }
}
.index-recruit .secondary .local-navigation {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 768px) {
  .index-recruit .secondary .local-navigation {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) {
  .index-recruit .secondary .local-navigation {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1200px) {
  .index-recruit .secondary .local-navigation {
    grid-template-columns: repeat(2, 1fr);
  }
}
.index-recruit .secondary .local-navigation li a {
  font-weight: normal;
}
@media (max-width: 767px) {
  .index-recruit .secondary .local-navigation li a {
    font-size: 1.5rem;
  }
}

.index-contact {
  background: url("../img/top/bg-contact-001.jpg") center/cover no-repeat;
}
.index-contact .lead {
  margin-bottom: 32px;
  color: #FFF;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.075em;
  text-align: center;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.index-contact .tel-number a {
  color: #FFF;
  font-size: 2.8rem;
  line-height: 1.0714285714;
  letter-spacing: 0.05em;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.index-contact .contact-info {
  color: #FFF;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  letter-spacing: 0.05em;
  text-align: center;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .index-contact .contact-info {
    display: flex;
    align-items: normal;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.075em;
  }
}
@media (max-width: 767px) {
  .index-contact .contact-info .valign-m {
    vertical-align: super;
  }
}

#strength .contents-ttl {
  padding-bottom: 26px;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  #strength .contents-ttl {
    font-size: 2.4rem;
  }
}
#strength .contents-ttl::after {
  background-color: #0071C1;
}
#strength .index-contact .contents-ttl::after {
  background-color: #fff;
}
#strength .strength-01 {
  background: url("../img/top/bg-strength-sp.jpg") center/cover no-repeat;
}
@media (min-width: 768px) {
  #strength .strength-01 {
    background: url("../img/top/bg-strength-pc.jpg") center/cover no-repeat;
  }
}
#strength .strength-01 .lead {
  margin-bottom: 32px;
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  #strength .strength-01 .lead {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
#strength .strength-01 .image {
  margin-bottom: 32px;
}
#strength .strength-01 .image img {
  aspect-ratio: 375/347;
}
@media (min-width: 768px) {
  #strength .strength-01 .image img {
    aspect-ratio: 588/167;
  }
}
#strength .strength-01 .text {
  color: #fff;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  #strength .strength-01 .text {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
#strength .strength-02 .check-list {
  padding: 32px 15px;
  background-color: #FFFAEB;
}
@media (min-width: 768px) {
  #strength .strength-02 .check-list {
    padding: 48px 80px;
  }
}
@media (min-width: 992px) {
  #strength .strength-02 .check-list {
    padding: 48px 168px;
  }
}
#strength .strength-02 .check-list li::after {
  border-color: #FA9F0C;
}
#strength .strength-03 {
  background-color: #EBF8FF;
}
#strength .strength-03 .wrapper:nth-child(2) {
  padding-top: 0;
  padding-bottom: 40px;
}
#strength .strength-03 .wrapper:nth-child(3) {
  padding-top: 40px;
  padding-bottom: 40px;
}
#strength .strength-03 .wrapper:nth-child(4) {
  padding-top: 40px;
  padding-bottom: 40px;
}
#strength .strength-03 .wrapper:nth-child(5) {
  padding-top: 40px;
  padding-bottom: 0;
}
#strength .strength-03 .wrapper:not(:last-child) {
  border-bottom: 1px solid #C8D2EE;
}
#strength .strength-03 .image img {
  border-radius: 15px;
}
#strength .strength-03 .contents-subttl {
  margin-top: 30px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  #strength .strength-03 .contents-subttl {
    margin-top: 60px;
  }
}
#strength .strength-03 .contents-subttl .ttl-en, #strength .strength-03 .contents-subttl .ttl-jp {
  display: block;
}
#strength .strength-03 .contents-subttl .ttl-en {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  #strength .strength-03 .contents-subttl .ttl-en {
    margin-bottom: 16px;
  }
}
#strength .strength-03 .contents-subttl .ttl-en img {
  width: auto;
  height: 32px;
}
@media (min-width: 768px) {
  #strength .strength-03 .contents-subttl .ttl-en img {
    height: 32px;
  }
}
#strength .strength-03 .contents-subttl .ttl-jp {
  color: #012A9C;
  font-size: 2.4rem;
  letter-spacing: 0.075em;
  font-weight: bold;
}
@media (min-width: 768px) {
  #strength .strength-03 .contents-subttl .ttl-jp {
    font-size: 2.4rem;
  }
}
#strength .strength-03 .text {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
  font-weight: 500;
}
#strength .strength-04 .faq-q {
  background: #0071C1;
  color: #FFF;
}
#strength .strength-04 .faq-q:after {
  border-color: #FFF;
}
#strength .strength-04 .faq-a {
  background-color: #EBF8FF;
}
#strength .strength-04 .faq-a:before {
  color: #012A9C;
}
#strength .strength-04 .lead {
  margin-top: 32px;
  margin-bottom: 32px;
  font-size: 1.6rem;
  line-height: 1.875;
  letter-spacing: 0.075em;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 768px) {
  #strength .strength-04 .lead {
    margin-top: 56px;
  }
}
#strength .strength-04 .tel-number a {
  font-size: 2.8rem;
  line-height: 1.0714285714;
  letter-spacing: 0.05em;
}
#strength .strength-04 .contact-info {
  font-size: 1.3rem;
  line-height: 1.3846153846;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (min-width: 768px) {
  #strength .strength-04 .contact-info {
    display: flex;
    align-items: normal;
    justify-content: center;
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.075em;
  }
}
@media (max-width: 767px) {
  #strength .strength-04 .contact-info .valign-m {
    vertical-align: super;
  }
}

#business .contents-ttl {
  padding-bottom: 26px;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  #business .contents-ttl {
    font-size: 2.4rem;
  }
}
#business .contents-ttl::after {
  background-color: #0071C1;
}
#business .chapter-ttl {
  position: relative;
  margin-bottom: 48px;
  padding-left: 16px;
  color: #012A9C;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.625;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  #business .chapter-ttl {
    margin-bottom: 24px;
  }
}
#business .chapter-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px;
  background-color: #012A9C;
}
#business .index-contact .contents-ttl::after {
  background-color: #fff;
}
#business .business-01 {
  background-color: #EBF8FF;
}
#business .business-01 .lead {
  margin-bottom: 40px;
  font-size: 2.4rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  #business .business-01 .lead {
    margin-bottom: 16px;
    font-size: 1.8rem;
  }
}
#business .business-01 .image {
  margin-bottom: 32px;
}
#business .business-01 .image img {
  border-radius: 15px;
}
#business .business-02 .text {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  #business .business-02 .text {
    margin-bottom: 24px;
  }
}
#business .business-02 .wrapper {
  padding: 32px 16px;
  background-color: #FFFAEB;
}
@media (min-width: 768px) {
  #business .business-02 .wrapper {
    padding: 48px;
  }
}
@media (max-width: 767px) {
  #business .business-02 .inner:not(:last-child) {
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  #business .business-02 .inner:nth-child(-n+3) {
    margin-bottom: 32px;
  }
}
#business .business-02 .image {
  margin-bottom: 12px;
}
#business .business-02 .emphasis {
  font-size: 1.8rem;
  line-height: 1.3;
  letter-spacing: 0.075em;
}
#business .business-03 {
  background-color: #EBF8FF;
}
#business .business-03 .lead {
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
#business .business-03 .text {
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  #business .business-03 .text {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  #business .business-03 .inner:not(:last-child) {
    margin-bottom: 32px;
  }
}
@media (min-width: 768px) {
  #business .business-03 .inner:nth-child(-n+2) {
    margin-bottom: 72px;
  }
}
#business .business-03 .image {
  margin-bottom: 16px;
}
#business .business-03 .image img {
  border-radius: 15px;
}
#business .business-03 dl dt {
  display: flex;
  align-items: center;
  color: #012A9C;
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media (min-width: 768px) {
  #business .business-03 dl dt {
    font-size: 1.8rem;
  }
}
@media (min-width: 992px) {
  #business .business-03 dl dt {
    font-size: 2rem;
  }
}
#business .business-03 dl dt span {
  display: block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
#business .business-03 dl dd {
  line-height: 1.75;
  letter-spacing: 0.075em;
}

#company .contents-ttl {
  padding-bottom: 26px;
  font-size: 4rem;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  #company .contents-ttl {
    font-size: 2.4rem;
  }
}
#company .contents-ttl::after {
  background-color: #0071C1;
}
#company .chapter-ttl {
  position: relative;
  margin-top: 80px;
  margin-bottom: 48px;
  padding-left: 16px;
  color: #012A9C;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.625;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  #company .chapter-ttl {
    margin-top: 40px;
    margin-bottom: 24px;
  }
}
#company .chapter-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 3px;
  background-color: #012A9C;
}
#company .index-contact .contents-ttl::after {
  background-color: #fff;
}
#company .company-01 {
  background: url("../img/company/bg-message.jpg") center/cover no-repeat;
}
#company .company-01 .note {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: right;
  line-height: 1.25;
  letter-spacing: 0.075em;
}
#company .company-01 .note span {
  margin-right: 24px;
  font-size: 1.8rem;
  line-height: 1.6666666667;
}
#company .company-02 .wrapper:not(:last-child) {
  margin-bottom: 32px;
}
#company .company-02 .chapter-lead {
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #012A9C;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
#company .company-02 .image {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  #company .company-02 .image {
    margin-bottom: 32px;
  }
}
#company .company-02 .image img {
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  #company .company-02 .outer {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  #company .company-02 .outer .image {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}
#company .company-02 .list-title-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  #company .company-02 .list-title-wrapper {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
#company .company-02 .list-column .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  #company .company-02 .list-column .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}
#company .company-02 .list-column .list .list-item:not(:last-child) {
  margin-bottom: 8px;
}/*# sourceMappingURL=common.css.map */