@charset "UTF-8";
/*****************************************************************
コーポレートサイト ベースレイアウト設定ファイル（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: 2rem;
  font-family: "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 300;
}
@media (max-width: 767.98px) {
  body {
    font-size: 1.8rem;
    line-height: 2;
  }
}

*, *:after, *:before {
  box-sizing: border-box;
}

.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 (min-width: 992px) {
  a:hover {
    color: #352216;
    text-decoration: none;
  }
}
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
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 (min-width: 992px) {
  section a:hover {
    opacity: 0.8;
  }
}
a[href^="tel:"] {
  cursor: default;
  text-decoration: none !important;
}
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: #002877;
  border: 2px solid #002877;
  padding: 0.6em;
  font-size: 2.4rem;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 2px;
}
@media (max-width: 767.98px) {
  .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 #00A2EC;
  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 {
    max-width: 246px;
    width: 100%;
  }
}
header .row {
  position: relative;
}
header .nav {
  display: flex;
  justify-content: center;
}
header .nav li {
  color: #333;
  font-weight: bold;
  font-size: 1.8rem;
}
@media (min-width: 992px) {
  header .nav li {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1200px) {
  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 {
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}
@media (max-width: 991.98px) {
  header .nav li a span.focus {
    border-bottom-color: #DEF8FF;
    color: #DEF8FF;
  }
}
@media (min-width: 992px) {
  header .nav li a:hover {
    color: #002877;
  }
  header .nav li a:hover span {
    border-bottom-color: #002877;
  }
}
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: 40px;
  padding: 0 20px 0;
  border-radius: 4px;
  background-color: #002877;
  color: #fff;
  transition: opacity 0.2s ease;
}
@media (min-width: 992px) {
  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: 60px;
    transition: all 0.2s ease;
  }
  header.mini-header .header-logo {
    height: 56px;
  }
  header.mini-header .header-logo img {
    width: 100%;
    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: 991.98px) {
  .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: 36px;
  }
  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: #002877;
    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: #002877;
    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;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
    width: -moz-fit-content;
    width: fit-content;
  }
  header.open ul.nav li a span {
    padding: 0;
  }
  header.open ul.nav .contact-btn {
    border-bottom: none;
  }
  header.open ul.nav .contact-btn a {
    display: flex;
    justify-content: center;
    margin: 16px 0;
  }
  header.open ul.nav .contact-btn a .contact-btn-bg {
    width: 144px;
    height: 48px;
  }
  header.open ul.nav .contact-btn a::before {
    content: none;
  }
}
/******************************************************************
  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: 767.98px) {
  .breadcrumbs {
    margin-bottom: 0;
  }
  .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: 767.98px) {
  .main-img {
    height: 432px;
  }
}
.main-img .kv-img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.img-text {
  color: #002877;
  width: 100%;
  text-align: center;
  font-size: 4vw;
}
@media (max-width: 767.98px) {
  .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;
}

.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: 767.98px) {
  .title-text-upper {
    font-size: 3rem;
  }
}
.title-text-lower {
  font-size: 2.4rem;
  padding-top: 24px;
}
@media (max-width: 767.98px) {
  .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: 767.98px) {
  .contents-ttl {
    font-size: 2rem;
    margin-bottom: 24px;
  }
}
.contents-ttl::after {
  content: "";
  position: absolute;
  display: inline-block;
  bottom: 0;
  background-color: #002877;
  width: 104px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
}
.contents-ttl-sub {
  font-size: 2.4rem;
  color: #002877;
  line-height: 1.25;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .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: #002877;
  margin: 0;
  color: #FFF;
}
footer section a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
footer section a:link, footer section a:visited {
  text-decoration: none;
  color: #fff;
}
@media (min-width: 992px) {
  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: 767.98px) {
  .footer-nav-title {
    font-size: 1.5rem;
    padding: 16px 32px 16px 0;
    margin-bottom: 0;
    position: relative;
  }
  .footer-nav-title .trigger {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    right: 8px;
    top: 18px;
    cursor: pointer;
  }
  .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: 8px;
}
@media (max-width: 767.98px) {
  .footer-sub-menu li {
    margin-bottom: 16px;
  }
}
@media (max-width: 767.98px) {
  .footer-sub-menu {
    display: none;
    padding-left: 16px;
    padding-bottom: 8px;
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  footer dl {
    border-bottom: 1px solid #999;
  }
  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;
}
@media (max-width: 767.98px) {
  footer .ga-pdf {
    padding: 14px 0 0 0;
  }
}
footer .ga-pdf a {
  font-size: 1.2rem;
}
@media (max-width: 767.98px) {
  footer .ga-pdf a {
    font-size: 1rem;
  }
}

.footer-logo {
  width: 267px;
  margin: 0 auto 32px;
  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;
  background: #002877;
  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: 767.98px) {
  .sns-box {
    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 img.object-fit-img {
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
@media (max-width: 767px) {
  .mainimg img.object-fit-img {
    height: 432px;
  }
}
.mainimg .slick-dots li {
  margin: 0 8px;
}
.mainimg .slick-dots li button::before {
  font-size: 18px;
}

/******************************************************************
  8■contents
*****************************************************************/
section {
  padding: 80px 0 80px;
}
@media (max-width: 767.98px) {
  section {
    padding: 48px 0 48px;
  }
}
section p {
  line-height: 1.75;
}
section.section-colored {
  background-color: #DEF8FF;
  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: #DEF8FF;
  opacity: 0.8;
  z-index: 1;
}
section.section-image .container, section.section-image-dark .container {
  position: relative;
  z-index: 10;
}
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: 767.98px) {
  section.recruit .lead {
    text-align: left;
  }
}
section.contact {
  position: relative;
}
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: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;
  font-weight: normal;
}
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 (min-width: 992px) {
  section.contact .btn-02 a:hover, section.recruit .btn-02 a:hover {
    background-color: #fff;
    color: #002877;
    opacity: 1;
  }
  section.contact .btn-02 a:hover::before, section.recruit .btn-02 a:hover::before {
    border-color: #002877;
  }
}
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: 767.98px) {
  .m-b-sm {
    margin-bottom: 8px;
  }
}

.m-b-md {
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  .m-b-md {
    margin-bottom: 16px;
  }
}

.m-b-lg {
  margin-bottom: 64px;
}
@media (max-width: 767.98px) {
  .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: 767.98px) {
  .font-size-xs {
    font-size: 1rem;
  }
}

.font-size-sm {
  font-size: 1.4rem;
}
@media (max-width: 767.98px) {
  .font-size-sm {
    font-size: 1rem;
  }
}

.font-size-md {
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .font-size-md {
    font-size: 1.2rem;
  }
}

.font-size-lg {
  font-size: 2.4rem;
}
@media (max-width: 767.98px) {
  .font-size-lg {
    font-size: 1.6rem;
  }
}

.font-size-xl {
  font-size: 5rem;
}
@media (max-width: 767.98px) {
  .font-size-xl {
    font-size: 3rem;
  }
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.article {
  line-height: 2;
}

.valign-m {
  vertical-align: middle;
}

.emphasis {
  font-weight: bold;
}
.emphasis-colored {
  color: #002877;
}
.emphasis-boldcolored {
  font-weight: bold;
  color: #002877;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.h-line {
  border-left: 4px solid #002877;
  padding-left: 8px;
}

.label {
  color: #fff;
  background-color: #002877;
  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: #002877;
}
.blockquote::before, .blockquote::after {
  content: "“";
  font-size: 60px;
  line-height: 0.8em;
  font-family: "Times New Roman", "ＭＳ Ｐゴシック", sans-serif;
  color: #002877;
  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: #DEF8FF;
  border: 1px solid #002877;
  padding: 16px;
}

.bg-gray {
  background-color: #ccc;
}

.bg-white {
  background-color: #fff;
}

.bg-colored {
  background-color: #DEF8FF;
}

.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;
}
@media (max-width: 767.98px) {
  .check-list li {
    margin: 8px 0 8px 24px;
  }
}
.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 #002877;
  border-bottom: 4px solid #002877;
  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 (min-width: 992px) {
  .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, .table-list.time-line dd {
    vertical-align: top;
    border-top: none;
  }
  .table-list.time-line dt::after {
    content: "";
    height: 8px;
    width: 8px;
    background-color: #37C0FE;
    position: absolute;
    right: -5px;
    top: 32px;
    border-radius: 4px;
  }
  .table-list.time-line dd p {
    margin-top: 8px;
  }
}
@media (max-width: 767.98px) {
  .table-list dt, .table-list dd {
    padding: 8px;
  }
  .table-list dt {
    background-color: #DEF8FF;
  }
  .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: #002877;
    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: #37C0FE;
    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;
  }
}
/* その他 */
a.map-link {
  display: inline-block;
  margin-top: 14px;
  padding: 11.5px 37px;
  background-color: #002877;
  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: 767.98px) {
  .map-responsive::before {
    padding-top: 100%;
  }
}
.map #map-canvas {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
}

.anchor {
  margin-top: -140px;
  padding-top: 140px;
}
@media (max-width: 991.98px) {
  .anchor {
    margin-top: -134px;
    padding-top: 134px;
  }
}
@media (max-width: 767.98px) {
  .anchor {
    margin-top: -102px;
    padding-top: 102px;
  }
}

/******************************************************************
  9■news
*****************************************************************/
.news-list ul {
  margin-bottom: 32px;
}
.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;
  }
  .news-list ul li a:hover {
    background-color: #DEF8FF;
  }
}
.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: 767.98px) {
  .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: #002877;
  text-align: center;
}
@media (max-width: 767.98px) {
  .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 {
  border: 1px solid #bbb;
  padding: 2px 8px;
  background-color: #fff;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .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: 767.98px) {
  .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);
  }
}

.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: 767.98px) {
  .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: 767.98px) {
  .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: 767.98px) {
  .news-info {
    margin-bottom: 8px;
    font-size: 1.3rem;
  }
}
.news-info .news-date {
  margin-right: 16px;
}
.news-info .category-frame {
  border: 1px solid #bbb;
  padding: 2px 8px;
  background-color: #fff;
  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: #DEF8FF;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .faq-q {
    padding: 15px 35px 10px;
  }
}
.faq-q:not(:first-child) {
  margin-top: 20px;
}
.faq-q:before {
  content: "Q";
  top: 18px;
}
@media (max-width: 767.98px) {
  .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: 767.98px) {
  .faq-q:after {
    right: 10px;
  }
}
.faq-q.open:after {
  transform: rotate(-45deg);
  top: 45%;
  border-color: #fff;
}
@media (min-width: 992px) {
  .faq-q:hover:after {
    border-color: #fff;
  }
}

.faq-a {
  display: none;
  padding: 30px 20px 30px 60px;
  position: relative;
  background-color: #f1f1f1;
}
@media (max-width: 767.98px) {
  .faq-a {
    padding: 20px 10px 20px 35px;
  }
}
.faq-a:before {
  content: "A";
  top: 28px;
}
@media (max-width: 767.98px) {
  .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: 767.98px) {
  .faq-q:before, .faq-a:before {
    left: 10px;
    font-size: 1.8rem;
  }
}

@media (min-width: 992px) {
  .faq-container .faq-q:hover {
    background-color: #002877;
    color: white;
  }
}

.faq-container .faq-q:active,
.faq-container .faq-q.open {
  background-color: #002877;
  color: white;
}

.faq-container .faq-q:hover i:before,
.faq-container .faq-q:hover i:active,
.faq-container .faq-q.open i {
  color: #333;
}

/******************************************************************
  11■free(その他、独自のスタイルは以下に記述してください)
*****************************************************************/
.width-860 {
  max-width: 860px;
}

@media (max-width: 767.98px) {
  .width-sp-69 {
    width: 69px;
  }
}

.pb-00 {
  padding-bottom: 0;
}

.m-0-auto {
  margin: 0 auto;
}

.mb-00 {
  margin-bottom: 0;
}

.mb-08 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-44 {
  margin-bottom: 44px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-56 {
  margin-bottom: 56px;
}

.mb-64 {
  margin-bottom: 64px;
}

@media (max-width: 767.98px) {
  .sp-mb-00 {
    margin-bottom: 0;
  }
  .sp-mb-08 {
    margin-bottom: 8px;
  }
  .sp-mb-16 {
    margin-bottom: 16px;
  }
  .sp-mb-24 {
    margin-bottom: 24px;
  }
  .sp-mb-32 {
    margin-bottom: 32px;
  }
  .sp-mb-40 {
    margin-bottom: 40px;
  }
  .sp-mb-48 {
    margin-bottom: 48px;
  }
}
@media (max-width: 767.98px) {
  .text-left-sp {
    text-align: left;
  }
}

h2 {
  font-size: 6.4rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
@media (max-width: 991.98px) {
  h2 {
    font-size: 4.2vw;
  }
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 4rem;
    margin-bottom: 16px;
  }
}
h2 > span {
  font-size: 2.4rem;
  display: block;
  color: #002877;
  line-height: 1.75;
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  h2 > span {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
h2 > span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/top/ic-ttl.png);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-right: 8px;
}

h3 {
  font-size: 3.2rem;
  color: #002877;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.75;
}
@media (max-width: 767.98px) {
  h3 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}

.img-radius-20 {
  border-radius: 20px;
}

.btn-more {
  display: inline-block;
}
.btn-more a {
  display: flex;
  align-items: center;
  justify-content: end;
  text-decoration: none;
}
.btn-more a p {
  font-size: 1.8rem;
  font-weight: bold;
  color: #002877;
  padding-right: 16px;
}
.btn-more a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #002877;
  text-decoration: none;
  z-index: 1;
  position: relative;
  border: solid 3px #fff;
  transition: background-color 0.3s ease, border 0.3s ease;
}
.btn-more a span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 24px;
  background-image: url(../img/top/ic-w-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}
.btn-more a:hover span {
  background-color: #fff;
  border: solid 3px #002877;
}
.btn-more a:hover span::after {
  background-image: url(../img/top/ic-b-arrow.png);
}

.img-town-r {
  margin-top: 20px;
  padding-right: 200px;
  text-align: right;
}
@media (max-width: 767.98px) {
  .img-town-r {
    padding-right: initial;
    text-align: center;
  }
}
.img-town-r img {
  max-height: 80px;
}
@media (max-width: 767.98px) {
  .img-town-r img {
    max-height: 40px;
  }
}

.aspect-ratio-1 {
  --aspect-ratio-sp: 25/28;
  --aspect-ratio-pc: 12/5;
}

.aspect-ratio-2 {
  --aspect-ratio-sp: 551/367;
  --aspect-ratio-pc: 551/367;
}

.aspect-ratio-3 {
  --aspect-ratio-sp: 497/331;
  --aspect-ratio-pc: 551/180;
}

.aspect-ratio-4 {
  --aspect-ratio-sp: 345/259;
  --aspect-ratio-pc: 773/280;
}

.aspect-ratio-5 {
  --aspect-ratio-sp: 7/12;
  --aspect-ratio-pc: 7/12;
}

.aspect-ratio-6 {
  --aspect-ratio-sp: 547/365;
  --aspect-ratio-pc: 547/365;
}

.aspect-ratio-7 {
  --aspect-ratio-sp: 640/427;
  --aspect-ratio-pc: 640/427;
}

.aspect-ratio-8 {
  --aspect-ratio-sp: 6/5;
  --aspect-ratio-pc: 860/203;
}

.aspect-ratio-9 {
  --aspect-ratio-sp: 690/497;
  --aspect-ratio-pc: 860/203;
}

.aspect-ratio-10 {
  --aspect-ratio-sp: 30/31;
  --aspect-ratio-pc: 430/141;
}

.aspect-ratio img {
  aspect-ratio: var(--aspect-ratio-sp);
}
@media (min-width: 768px) {
  .aspect-ratio img {
    aspect-ratio: var(--aspect-ratio-pc);
  }
}

/*****************************
  ヘッダーナビ　PC-プルダウン／sp-tab-アコーディオン
  *****************************/
header nav ul.nav > li {
  position: relative;
  display: inline-block;
}
@media (min-width: 992px) {
  header nav ul.nav > li ul {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
    transition: all 0.4s ease-out;
  }
}
header nav ul.nav > li ul {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 1;
  padding: 16px 16px 16px 32px;
  background: #DEF8FF;
  border-radius: 20px;
}
header nav ul.nav > li ul li {
  font-size: 1.6rem;
  padding: 0 0 16px;
  list-style: disc;
  font-weight: normal;
}
header nav ul.nav > li ul li::marker {
  color: #37C0FE;
}
header nav ul.nav > li ul li:last-child {
  padding-bottom: 0;
}
header nav ul.nav > li ul li a {
  height: initial;
}
@media (min-width: 992px) {
  header nav ul.nav > li.open > ul {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    display: block;
  }
}

@media (max-width: 991.98px) {
  header.open {
    overflow-y: auto;
  }
  header.open nav ul.nav {
    padding-top: 28px;
  }
  header.open nav ul.nav > li {
    position: relative;
  }
  header.open nav ul.nav > li div.nav-open {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    right: 0;
    top: 18px;
    cursor: pointer;
  }
  header.open nav ul.nav > li div.nav-open::before, header.open nav ul.nav > li div.nav-open::after {
    content: "";
    position: absolute;
    display: block;
    background-color: #fff;
    width: 10px;
    height: 1px;
    right: 6px;
    transform-origin: right center;
    transition: transform 0.4s;
  }
  header.open nav ul.nav > li div.nav-open::before {
    top: 10px;
    transform: rotate(135deg);
  }
  header.open nav ul.nav > li div.nav-open::after {
    top: 10px;
    transform: rotate(45deg);
  }
  header.open nav ul.nav > li div.nav-open.active::before {
    transform: rotate(45deg);
  }
  header.open nav ul.nav > li div.nav-open.active::after {
    transform: rotate(-45deg);
  }
  header.open nav ul.nav > li a {
    color: #fff;
  }
  header.open nav ul.nav > li ul {
    display: none;
    visibility: initial;
    opacity: initial;
    transform: initial;
    position: static;
    background: #002877;
    padding: 0 0 16px 0;
  }
  header.open nav ul.nav > li ul li {
    padding: 0 0 0 16px;
    border-bottom: none;
  }
  header.open nav ul.nav > li ul li a {
    padding: 10px 0;
  }
  header.open nav ul.nav .contact-btn {
    border-bottom: 1px solid #ccc;
  }
  header.open nav ul.nav .contact-btn a {
    margin: 0;
  }
  header.open nav ul.nav .contact-btn a .contact-btn-bg {
    padding: 0;
    width: auto;
    height: auto;
  }
}
/*****************************
  TOPページ
  *****************************/
section.about {
  position: relative;
}
section.about::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 198px;
  height: 198px;
  background-image: url(../img/top/deco-radius-002.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media (max-width: 767.98px) {
  section.about::after {
    width: 80px;
    height: 80px;
  }
}
section.about .btn-more a span {
  border: solid 3px #DEF8FF;
}
section.about .btn-more a:hover span {
  border: solid 3px #002877;
}

section.service {
  position: relative;
  padding: 80px 0 280px;
}
@media (max-width: 767.98px) {
  section.service {
    padding: 48px 0 192px;
  }
}
section.service::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 198px;
  height: 198px;
  background-image: url(../img/top/deco-radius-001.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 767.98px) {
  section.service::before {
    width: 80px;
    height: 80px;
  }
}
section.service .service-container .service-right-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
section.service .service-container .service-right-wrap div {
  flex: 1 1 100%;
}
section.service .service-container .service-right-wrap div a {
  position: relative;
  display: block;
}
section.service .service-container .service-right-wrap div a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #37C0FE;
  opacity: 0;
  z-index: 1;
  border-radius: 20px;
}
section.service .service-container .service-right-wrap div a:hover::after {
  opacity: 0.2;
}
section.service .service-container .service-right-wrap div a p {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #002877;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 20px 20px 0;
  height: 100%;
  width: 240px;
  text-align: center;
}
@media (max-width: 991.98px) {
  section.service .service-container .service-right-wrap div a p {
    width: 186px;
  }
}
@media (max-width: 767.98px) {
  section.service .service-container .service-right-wrap div a p {
    bottom: 0;
    left: 0;
    right: initial;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-radius: 0 20px;
    height: auto;
    width: auto;
  }
}
section.service .service-container .service-right-wrap div a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  text-decoration: none;
  margin-left: 8px;
  position: absolute;
  right: 16px;
  bottom: 16px;
}
@media (max-width: 767.98px) {
  section.service .service-container .service-right-wrap div a span {
    position: initial;
  }
}
section.service .service-container .service-right-wrap div a span img {
  width: 5px;
}

section.service::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background-image: url(../img/top/slide.png);
  background-repeat: repeat-x;
  background-size: cover;
  animation: bg-scroll 30s linear infinite;
}
@media (max-width: 767.98px) {
  section.service::after {
    height: 160px;
  }
}

@keyframes bg-scroll {
  from {
    background-position: 0 100%;
  }
  to {
    background-position: -600px 100%;
  }
}
section.company {
  padding-bottom: 0;
}
section.company .bg-img {
  padding-right: 16px;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  section.company .bg-img {
    margin-bottom: 16px;
  }
}
section.company .bg-img div {
  position: relative;
  margin-right: calc(50% - 50vw);
}
section.company .bg-img div img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 200px 0 0 0;
}
@media (max-width: 767.98px) {
  section.company .bg-img div img {
    border-radius: 80px 0 0 0;
  }
}
section.company .bg-img div h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  margin-bottom: 0;
  border-radius: 0 80px 0 0;
  padding: 32px 70px 25px 36px;
}
@media (max-width: 767.98px) {
  section.company .bg-img div h2 {
    padding: 16px 16px 0 16px;
    border-radius: 0 40px 0 0;
  }
}

section.recruit .img-town-l {
  padding-left: 64px;
}
@media (max-width: 767.98px) {
  section.recruit .img-town-l {
    padding-left: 15px;
  }
}
section.recruit .img-town-l img {
  max-height: 80px;
}
@media (max-width: 767.98px) {
  section.recruit .img-town-l img {
    max-height: 40px;
  }
}
section.recruit .bg-img {
  padding-left: 16px;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  section.recruit .bg-img {
    margin-bottom: 16px;
  }
}
section.recruit .bg-img div {
  position: relative;
  margin-left: calc(50% - 50vw);
}
section.recruit .bg-img div img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 200px 0 0;
}
@media (max-width: 767.98px) {
  section.recruit .bg-img div img {
    border-radius: 0 80px 0 0;
  }
}
section.recruit .bg-img div h2 {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
  margin-bottom: 0;
  border-radius: 80px 0 0 0;
  padding: 32px 36px 25px 36px;
}
@media (max-width: 767.98px) {
  section.recruit .bg-img div h2 {
    padding: 16px 16px 0 16px;
    border-radius: 40px 0 0 0;
  }
}
section.recruit .row h3 {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  section.recruit .row h3 {
    margin-bottom: 16px;
  }
}

section.news {
  position: relative;
  padding-bottom: 0;
}
section.news::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 198px;
  height: 198px;
  background-image: url(../img/top/deco-radius-003.png);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 767.98px) {
  section.news::after {
    bottom: 0;
    width: 80px;
    height: 80px;
  }
}
section.news .container {
  position: relative;
}
section.news .container .news-inner {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 32px;
}
@media (max-width: 767.98px) {
  section.news .container .news-inner {
    margin-bottom: 0;
  }
}
section.news .container .news-inner h2 {
  margin-bottom: 0;
}
section.news .container .btn-more.position-pc {
  display: block;
}
@media (min-width: 768px) {
  section.news .container .btn-more.position-pc {
    position: absolute;
    top: 17px;
    right: 15px;
  }
}
@media (min-width: 992px) {
  section.news .container .btn-more.position-pc {
    position: absolute;
    top: 50px;
    right: 15px;
  }
}
section.news .container .news-list {
  padding: 0;
}

section.contact {
  position: relative;
  padding-bottom: 50px;
}
section.contact::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url("../img/top/contact-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 100%;
  height: 222px;
  z-index: 1;
}
section.contact .contact-wrap {
  text-align: center;
  background-color: #fff;
  border-radius: 80px;
  padding: 80px 40px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767.98px) {
  section.contact .contact-wrap {
    padding: 48px 8px;
    border-radius: 40px;
  }
}
section.contact .contact-wrap .contact-h2 {
  font-size: 6.4rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}
@media (max-width: 991.98px) {
  section.contact .contact-wrap .contact-h2 {
    font-size: 4.2vw;
  }
}
@media (max-width: 767.98px) {
  section.contact .contact-wrap .contact-h2 {
    font-size: 4rem;
    margin-bottom: 16px;
  }
}
section.contact .contact-wrap .contact-h2 > span {
  font-size: 2.4rem;
  display: block;
  color: #002877;
  line-height: 1.75;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
}
@media (max-width: 767.98px) {
  section.contact .contact-wrap .contact-h2 > span {
    font-size: 2rem;
    margin-bottom: 8px;
  }
}
section.contact .contact-wrap .contact-h2 > span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/common/ic-ttl.png);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-right: 24px;
}
@media (max-width: 767.98px) {
  section.contact .contact-wrap .contact-h2 > span::before {
    margin-right: 8px;
  }
}
section.contact .contact-wrap .contact-h2 > span::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/common/ic-ttl.png);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-left: 24px;
}
@media (max-width: 767.98px) {
  section.contact .contact-wrap .contact-h2 > span::after {
    margin-left: 8px;
  }
}
section.contact .contact-wrap .contact-h3 {
  font-size: 3.2rem;
  color: #002877;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.75;
}
@media (max-width: 767.98px) {
  section.contact .contact-wrap .contact-h3 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}
section.contact .contact-wrap p {
  margin-bottom: 36px;
  font-size: 2rem;
}
@media (max-width: 767.98px) {
  section.contact .contact-wrap p {
    font-size: 1.8rem;
  }
}
section.contact .contact-wrap .info {
  font-weight: bold;
  font-size: 2.8rem;
  color: #002877;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  section.contact .contact-wrap .info {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}
section.contact .contact-wrap .info .tel-num a {
  font-size: 4.8rem;
  color: #002877;
}
@media (max-width: 767.98px) {
  section.contact .contact-wrap .info .tel-num a {
    font-size: 2.8rem;
  }
}
section.contact .contact-wrap .btn-contact {
  max-width: 434px;
  width: 100%;
  margin: 0 auto;
}
section.contact .contact-wrap .btn-contact a {
  background-color: #002877;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 100px;
  display: block;
  height: 80px;
  line-height: 78px;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: solid 3px #fff;
  box-sizing: border-box;
  transition: background-color 0.3s ease, color 0.3s ease;
}
section.contact .contact-wrap .btn-contact a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("../img/top/ic-b-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 5px auto;
  transition: background-color 0.2s ease, background-image 0.2s ease;
}
section.contact .contact-wrap .btn-contact a:hover, section.contact .contact-wrap .btn-contact a:focus-visible {
  background-color: #fff;
  color: #002877;
  border: solid 3px #002877;
}
section.contact .contact-wrap .btn-contact a:hover::after, section.contact .contact-wrap .btn-contact a:focus-visible::after {
  background-color: #002877;
  background-image: url("../img/top/ic-w-arrow.png");
}

/*****************************
  下層ページ
  *****************************/
#about, #service, #company {
  font-size: 1.8rem;
}
@media (max-width: 767.98px) {
  #about, #service, #company {
    font-size: 1.6rem;
  }
}
#about .lead, #service .lead, #company .lead {
  font-size: 4rem;
  line-height: 1.75;
  color: #002877;
  font-weight: bold;
  margin-bottom: 48px;
  letter-spacing: 0.05em;
}
@media (max-width: 767.98px) {
  #about .lead, #service .lead, #company .lead {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }
}
#about h2.layer-sec, #service h2.layer-sec, #company h2.layer-sec {
  font-size: 4rem;
  line-height: 1.75;
  color: #002877;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}
@media (max-width: 767.98px) {
  #about h2.layer-sec, #service h2.layer-sec, #company h2.layer-sec {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
}
#about h2.layer-sec::before, #service h2.layer-sec::before, #company h2.layer-sec::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/common/ic-ttl.png);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-right: 24px;
}
@media (max-width: 767.98px) {
  #about h2.layer-sec::before, #service h2.layer-sec::before, #company h2.layer-sec::before {
    margin-right: 8px;
  }
}
#about h2.layer-sec::after, #service h2.layer-sec::after, #company h2.layer-sec::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/common/ic-ttl.png);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-left: 24px;
}
@media (max-width: 767.98px) {
  #about h2.layer-sec::after, #service h2.layer-sec::after, #company h2.layer-sec::after {
    margin-left: 8px;
  }
}
@media (max-width: 767.98px) {
  #about h2.layer-sec.sp-small, #service h2.layer-sec.sp-small, #company h2.layer-sec.sp-small {
    font-size: 2rem;
  }
}
#about h4, #service h4, #company h4 {
  font-size: 2.8rem;
  color: #002877;
  font-weight: bold;
}
@media (max-width: 767.98px) {
  #about h4, #service h4, #company h4 {
    font-size: 2rem;
  }
}
#about .radius-r-top, #service .radius-r-top, #company .radius-r-top {
  position: relative;
}
#about .radius-r-top::before, #service .radius-r-top::before, #company .radius-r-top::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 198px;
  height: 198px;
  background-image: url(../img/common/deco-radius-006.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}
@media (max-width: 767.98px) {
  #about .radius-r-top::before, #service .radius-r-top::before, #company .radius-r-top::before {
    width: 80px;
    height: 80px;
  }
}
#about .radius-r-btm, #service .radius-r-btm, #company .radius-r-btm {
  position: relative;
}
#about .radius-r-btm::after, #service .radius-r-btm::after, #company .radius-r-btm::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 198px;
  height: 198px;
  background-image: url(../img/common/deco-radius-007.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media (max-width: 767.98px) {
  #about .radius-r-btm::after, #service .radius-r-btm::after, #company .radius-r-btm::after {
    width: 80px;
    height: 80px;
  }
}
#about .radius-l-top, #service .radius-l-top, #company .radius-l-top {
  position: relative;
}
#about .radius-l-top::before, #service .radius-l-top::before, #company .radius-l-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 198px;
  height: 198px;
  background-image: url(../img/common/deco-radius-008.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
}
@media (max-width: 767.98px) {
  #about .radius-l-top::before, #service .radius-l-top::before, #company .radius-l-top::before {
    width: 80px;
    height: 80px;
  }
}
#about .radius-l-btm, #service .radius-l-btm, #company .radius-l-btm {
  position: relative;
}
#about .radius-l-btm::after, #service .radius-l-btm::after, #company .radius-l-btm::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 198px;
  height: 198px;
  background-image: url(../img/common/deco-radius-005.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -1;
}
@media (max-width: 767.98px) {
  #about .radius-l-btm::after, #service .radius-l-btm::after, #company .radius-l-btm::after {
    width: 80px;
    height: 80px;
  }
}

/*****************************
  下層ページ：当社について
  *****************************/
#about h3 {
  font-size: 2.8rem;
  line-height: 1.75;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  #about h3 {
    font-size: 2rem;
  }
}
#about h3 span {
  background: linear-gradient(transparent 50%, #DEF8FF 50%);
}
@media (min-width: 768px) {
  #about .strong-pt .strong-pt-wrap {
    display: flex;
    align-items: center;
  }
}
#about .example .example-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 44px 48px;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  #about .example .example-wrap {
    row-gap: 16px;
    text-align: center;
  }
}
#about .example .example-wrap > div {
  flex: 1 1 calc(50% - 24px);
}
@media (max-width: 767.98px) {
  #about .example .example-wrap > div {
    flex: 1 1 100%;
  }
}
#about .example .example-wrap img {
  max-width: 547px;
}
#about .faq {
  padding-bottom: 0;
}

/*****************************
  下層ページ：サービス紹介
  *****************************/
#service h3 {
  position: relative;
  letter-spacing: 0.05em;
}
@media (max-width: 767.98px) {
  #service h3 {
    padding-bottom: 4px;
  }
}
#service h3::before, #service h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  width: 100%;
}
#service h3::after {
  width: 104px;
  background-color: #002877;
}
#service h3 span {
  display: flex;
  align-items: center;
}
#service h3 span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/common/ic-ttl.png);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-right: 16px;
}
#service h3.glay::before, #service h3.glay::after {
  background-color: #F1F1F1;
}
#service h3.glay::after {
  width: 104px;
  background-color: #002877;
}
#service .service-container .service-box {
  position: relative;
  margin: 0 auto 32px;
  display: flex;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  #service .service-container .service-box {
    margin: 0 auto 16px;
    flex-direction: column;
  }
}
#service .service-container .service-box .img {
  width: 640px;
}
@media (max-width: 1200px) {
  #service .service-container .service-box .img {
    width: 466px;
  }
}
@media (max-width: 991.98px) {
  #service .service-container .service-box .img {
    width: 340px;
  }
}
@media (max-width: 767.98px) {
  #service .service-container .service-box .img {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
  }
}
#service .service-container .service-box .item {
  flex-grow: 1;
}
@media (max-width: 767.98px) {
  #service .service-container .service-box .item {
    width: 640px;
    margin: 0 auto;
  }
}
#service .service-container .service-box .item p {
  translate: -40px -50%;
  width: calc(100% + 40px);
  position: absolute;
  top: 50%;
}
@media (max-width: 767.98px) {
  #service .service-container .service-box .item p {
    translate: 0 -80%;
    top: 80%;
  }
}
#service .service-container .service-box .item p span {
  color: #002877;
  font-weight: bold;
  font-size: 2.8rem;
  padding: 4px 8px;
  letter-spacing: 0.05em;
}
@media (max-width: 991.98px) {
  #service .service-container .service-box .item p span {
    font-size: 2.3rem;
  }
}
@media (max-width: 767.98px) {
  #service .service-container .service-box .item p span {
    font-size: 1.8rem;
    padding: 2px 4px;
  }
}
#service .service-container .service-text {
  max-width: 940px;
  padding: 40px;
  border-radius: 20px;
  margin: 0 auto 64px;
}
@media (max-width: 767.98px) {
  #service .service-container .service-text {
    padding: 20px;
    margin: 0 auto 32px;
  }
}
#service .service-container .service-text.text-mb-0 {
  margin-bottom: 0;
}
#service .service-container .service-text p {
  font-weight: bold;
}
#service .service-container .service-sign {
  max-width: 800px;
  width: 100%;
  margin: 48px auto;
}
@media (max-width: 767.98px) {
  #service .service-container .service-sign {
    margin: 32px auto;
  }
}
#service .service-container .service-wrap h4 {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  #service .service-container .service-wrap h4 {
    font-size: 2rem;
  }
}
#service .service-container .service-wrap .inner-box-1 {
  text-align: center;
}
#service .service-container .service-wrap .inner-box-1 img {
  max-width: 547px;
}
#service .service-container .service-wrap .inner-box-2 ul.text-indent li {
  text-indent: -1em;
}

@media (max-width: 767.98px) {
  #company .philosophy .philosophy-wrap {
    max-width: 345px;
  }
}
#company .company-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}
@media (max-width: 767.98px) {
  #company .company-wrap {
    flex-direction: column;
    gap: 24px;
  }
}
#company .company-wrap div {
  width: calc(50% - 24px);
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  #company .company-wrap div {
    width: 100%;
  }
}
#company h3 {
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  #company h3 {
    font-size: 2rem;
    padding-bottom: 4px;
  }
}
#company h3 span {
  display: flex;
  align-items: center;
}
#company h3 span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/common/ic-ttl.png);
  background-repeat: no-repeat;
  background-size: 24px 24px;
  margin-right: 16px;
}/*# sourceMappingURL=common.css.map */