@charset "UTF-8";
/**
 * Foundation - Reset
 * 既存の app.css の Reset セクションを移植
 */
body {
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4, h5, h6,
table, input, textarea, select, option, button {
  font-size: 100%;
}

blockquote, q {
  quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

img, a img {
  border: none;
  vertical-align: middle;
}

a {
  cursor: pointer;
}

input:not([type=checkbox]):not([type=radio]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.browser-is-ie wbr:after {
  content: "​";
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 100;
  -webkit-transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 70px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    height: 80px;
    padding: 0 40px;
  }
}
.l-header__logo {
  margin: 0;
  line-height: 1;
}
.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  text-decoration: none;
}
.l-header__logo .l-header__img img {
  height: 30px;
  width: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .l-header__logo .l-header__img img {
    height: 40px;
  }
}
.l-header__logo-text {
  font-size: 14px;
  font-weight: bold;
  color: #003876;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header__logo-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .l-header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
.l-header__btn.c-btn {
  padding: 10px 40px;
  margin: 0;
  width: auto;
  max-width: none;
}
.l-header__hamburger {
  display: block;
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger-line {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background-color: #333333;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-header__hamburger-line:nth-child(1) {
  top: 16px;
}
.l-header__hamburger-line:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-header__hamburger-line:nth-child(3) {
  bottom: 16px;
}
.l-header__hamburger.is-active {
  opacity: 0;
  visibility: hidden;
}
.l-header--transparent {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.l-header--transparent .l-header__logo-text {
  color: #fff;
}
.l-header--transparent .p-global-nav__item a {
  color: #fff;
}
.l-header.is-scrolled {
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.l-header.is-scrolled .l-header__logo-text {
  color: #003876;
  text-shadow: none;
}
.l-header.is-scrolled .p-global-nav__item a {
  color: #333333;
  text-shadow: none;
}

.p-global-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-global-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-global-nav__item a {
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.p-global-nav__item a:hover {
  color: #003876;
}

.l-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.l-drawer-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .l-drawer-overlay {
    display: none;
  }
}

.l-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 350px;
  height: 100vh;
  background-color: #fff;
  z-index: 1001;
  overflow-y: auto;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.l-drawer.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .l-drawer {
    display: none;
  }
}
.l-drawer__inner {
  padding: 30px 0;
}
.l-drawer__logo {
  padding: 0 20px 30px;
}
.l-drawer__logo img {
  height: 30px;
  width: auto;
}

.p-drawer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-drawer-nav__item {
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}
.p-drawer-nav__item:first-child {
  border-top: 1px solid #f0f0f0;
}
.p-drawer-nav__item a {
  display: block;
  padding: 20px;
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
}
.p-drawer-nav__item.has-child a {
  padding-right: 60px;
}
.p-drawer-nav__toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.p-drawer-nav__toggle::before, .p-drawer-nav__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #003876;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.p-drawer-nav__toggle::before {
  width: 14px;
  height: 2px;
}
.p-drawer-nav__toggle::after {
  width: 2px;
  height: 14px;
}
.p-drawer-nav__toggle.is-open::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.p-drawer-subnav {
  list-style: none;
  padding: 30px 20px;
  margin: 0;
}
.p-drawer-subnav li {
  margin-bottom: 15px;
}
.p-drawer-subnav li a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
}

.l-drawer-close {
  position: fixed;
  right: 15px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1002;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.l-drawer-close.is-active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .l-drawer-close {
    display: none;
  }
}
.l-drawer-close__icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.l-drawer-close__icon::before, .l-drawer-close__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333333;
}
.l-drawer-close__icon::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.l-drawer-close__icon::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

.p-drawer-sublist {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f9f9f9;
  border-top: 1px solid #eee;
}
.p-drawer-sublist.is-open {
  display: block;
  -webkit-animation: drawerFadeIn 0.3s ease forwards;
          animation: drawerFadeIn 0.3s ease forwards;
}
.p-drawer-sublist li {
  border-bottom: 1px dashed #e5e5e5;
}
.p-drawer-sublist li:last-child {
  border-bottom: none;
}
.p-drawer-sublist li a {
  display: block;
  padding: 15px 20px 15px 40px;
  font-size: 14px;
  font-weight: normal;
  color: #333333;
  text-decoration: none;
}

@-webkit-keyframes drawerFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes drawerFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.l-footer {
  background-color: #2b2b2b;
  color: #ffffff;
  padding: 80px 0 40px;
  position: relative;
}
.l-footer a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.l-footer a:hover {
  opacity: 0.7;
}
.l-footer__header {
  margin-bottom: 60px;
}
.l-footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.l-footer__logo-img {
  height: 25px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__logo-img {
    height: 30px;
  }
}
.l-footer__logo-text {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .l-footer__logo-text {
    font-size: 16px;
  }
}
.l-footer__nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
.l-footer__copyright {
  text-align: left;
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.05em;
  padding-top: 40px;
}

.p-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-footer-list__item {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.4;
}
.p-footer-list__item.--title {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 30px;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.c-page-top {
  position: absolute;
  top: -25px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-page-top {
    right: 40px;
  }
}
.c-page-top__arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #003876;
  border-left: 2px solid #003876;
  -webkit-transform: translateY(3px) rotate(45deg);
          transform: translateY(3px) rotate(45deg);
}
.c-page-top:hover {
  background-color: #f5f5f5;
}

.l-inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 20px 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 40px 40px 40px;
  }
}

table.form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 10px;
  margin-bottom: 15px;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ddd;
  table-layout: fixed;
}

table.form th {
  text-align: left;
  padding: 1em 0.5em 0.5em;
  font-weight: normal;
  border: 1px solid #ddd;
}

table.form tr {
  border-bottom: dotted 1px #999;
}

table.form td {
  padding: 1em 0.5em 0.5em;
  vertical-align: middle;
  border: 1px solid #ddd;
  background-color: #fff;
}

span.hissu {
  padding: 2px;
  background: #c00;
  color: #fff;
  border-radius: 3px;
  margin-left: 10px;
  white-space: nowrap;
  font-size: x-small;
}

span.head {
  display: block;
}

select {
  font-size: 1.6rem;
}

table.form {
  margin-top: 30px;
}
table.form th {
  background-color: #f8f8f8;
}
table.form input.border20 {
  width: 20em;
}
table.form input.border7 {
  width: 7em;
}
table.form input.border5 {
  width: 5.5em;
}
table.form input[type=text],
table.form input[type=password],
table.form input[type=email],
table.form input[type=tel],
table.form input[type=textarea],
table.form textarea,
table.form select {
  border: 1px solid #CCC;
  background: #fff;
  margin: 2px;
  padding: 6px;
  max-width: 95%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
table.form textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 90%;
}
table.form textarea.adress {
  height: 5.5em;
}
table.form input.wpcf7-not-valid,
table.form textarea.wpcf7-not-valid {
  background-color: pink;
}
table.form input:focus, table.form select:focus, table.form textarea:focus {
  background-color: #eef;
}

.submit {
  text-align: center;
  margin: 50px auto 15px auto;
}

input[type=submit],
input[type=button] {
  width: 280px;
  text-align: center;
  vertical-align: top;
  padding: 0 10px;
  background: #7b644c;
  line-height: 50px;
  height: 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  border: 0;
}

div.serch {
  text-align: center;
}
div.serch input[type=text] {
  border: 1px solid #CCC;
  background: #fff;
  margin: 15px;
  padding: 1rem;
  width: 90%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
div.serch input[type=submit],
div.serch input[type=button] {
  width: 200px;
  vertical-align: top;
  padding: 0 10px;
  background: #589f39;
  line-height: 50px;
  height: 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  border: 0;
  margin: 10px auto;
}

*:first-child + html input[type=submit] {
  padding: 3px;
}

span .wpcf7-list-item {
  padding-right: 1em;
}

p.privacy {
  text-align: center;
  font-size: 1.2rem;
}

@media print, screen and (min-width: 64em) {
  table.form th {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  table.form,
  table.company {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  table.form tr th,
  table.company tr th {
    padding-bottom: 0;
  }
  table.form tr th, table.form tr td,
  table.company tr th,
  table.company tr td {
    width: 100%;
    display: block;
    border-top: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  table.form tr:first-child th,
  table.company tr:first-child th {
    border-top: 1px solid #ddd;
  }
}
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn--red {
  background-color: #cc0000;
}
.c-btn--blue {
  background-color: #003876;
}

.c-breadcrumb {
  padding: 30px 0 10px;
}
.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.c-breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  color: #999;
  line-height: 1;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #ccc;
}
.c-breadcrumb__link {
  color: #999;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumb__link:hover {
  color: #003876;
}
.c-breadcrumb__link svg {
  fill: currentColor;
  width: 15px;
  height: 15px;
}

.p-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
}
.p-hero .swiper {
  width: 100%;
  height: 100%;
}
.p-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-hero__bg picture, .p-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-hero__content {
    padding: 0 40px;
  }
}
.p-hero__catchphrase {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-hero__catchphrase {
    font-size: 36px;
    margin-bottom: 40px;
  }
}
.p-hero__sub-catchphrase {
  display: block;
  font-size: 14px;
  margin-top: 15px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-hero__sub-catchphrase {
    font-size: 16px;
  }
}
.p-hero__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-hero__buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
}
.p-hero__buttons .c-btn {
  max-width: 240px;
}
.p-hero .swiper-pagination {
  bottom: 30px !important;
}
.p-hero .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
}
.p-hero .swiper-pagination-bullet-active {
  opacity: 1;
}

.p-intro {
  padding-bottom: 80px;
  position: relative;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .p-intro {
    padding-bottom: 120px;
  }
}
.p-intro__container {
  background-color: #fff;
  padding: 40px 20px;
  margin-top: -60px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-intro__container {
    padding: 80px;
    margin-top: -100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 80px;
  }
}
.p-intro__text-area {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .p-intro__text-area {
    max-width: 60%;
  }
}
.p-intro__catch {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-intro__catch {
    font-size: 26px;
    margin-bottom: 60px;
  }
}
.p-intro__heading-wrapper {
  margin-bottom: 20px;
}
.p-intro__sub-title {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #00205b;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.p-intro__title {
  font-size: 32px;
  font-weight: bold;
  color: #333333;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-intro__title {
    font-size: 42px;
  }
}
.p-intro__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}
.p-intro__links {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-intro__links {
    max-width: 35%;
    margin-top: 80px;
  }
}

.p-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e5e5e5;
}
.p-link-list li {
  border-bottom: 1px solid #e5e5e5;
}
.p-link-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 0;
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-link-list li a:hover {
  opacity: 0.6;
}
.p-link-list__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #00205b;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-link-list__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #fff;
}

.p-info {
  background-color: #f5f5f5;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-info {
    padding-bottom: 120px;
  }
}
.p-info__bg {
  width: 100%;
  height: 350px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-info__bg {
    height: 450px;
  }
}
.p-info__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-info .l-inner {
  position: relative;
  z-index: 2;
}
.p-info__container {
  position: relative;
  z-index: 10;
  background-color: #fff;
  padding: 40px 20px;
  margin-top: -150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .p-info__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 80px 0;
    margin-top: -200px;
  }
}
.p-info__box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 768px) {
  .p-info__box {
    padding: 0 60px;
  }
}
.p-info__box:first-child {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .p-info__box:first-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid #e5e5e5;
  }
}
.p-info__box-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-info__box-title {
    font-size: 26px;
  }
}
.p-info__text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #333333;
}
.p-info__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: info-counter;
}
.p-info__list li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  position: relative;
  padding-left: 1.5em;
}
.p-info__list li::before {
  counter-increment: info-counter;
  content: counter(info-counter) ". ";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: normal;
}
.p-info__buttons {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-info__buttons {
    margin-top: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
.p-info__btn.c-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: none;
  padding: 20px;
  font-size: 16px;
  position: relative;
}
.p-info__btn-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
}
.p-info__btn-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  margin-left: 2px;
}
.p-info .c-btn--red .p-info__btn-icon::after {
  border-color: transparent transparent transparent #cc0000;
}
.p-info .c-btn--blue .p-info__btn-icon::after {
  border-color: transparent transparent transparent #003876;
}

.p-employee-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .p-employee-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.p-employee {
  display: block;
  text-decoration: none;
  color: #333333;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  overflow: hidden;
}
.p-employee:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.p-employee:hover .p-employee__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-employee__img {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #eee;
}
.p-employee__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.p-employee__label-container {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.p-employee__text {
  padding: 20px 0;
  position: relative;
}
.p-employee__name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #003876;
}
.p-employee__head {
  font-size: 14px;
  line-height: 1.6;
  padding-right: 20px;
  position: relative;
}
.p-employee__head::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #003876;
  border-right: 2px solid #003876;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.p-employee__heading-wrapper {
  margin-bottom: 20px;
}
.p-employee__sub-title {
  display: block;
  font-size: 16px;
  font-weight: bold;
  color: #00205b;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.p-employee__title {
  font-size: 32px;
  font-weight: bold;
  color: #333333;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-employee__title {
    font-size: 42px;
  }
}

.p-page-header {
  padding-top: 70px;
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}
@media screen and (min-width: 768px) {
  .p-page-header {
    padding-top: 80px;
  }
}
.p-page-header__title {
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  padding: 10px 0 30px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-page-header__title {
    font-size: 48px;
    padding: 20px 0 50px;
  }
}

.l-main--gray {
  background-color: #f5f5f5;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .l-main--gray {
    padding: 80px 0;
  }
}

.p-about {
  background-color: #fff;
  padding: 40px 20px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-about {
    padding: 80px;
    margin-bottom: 40px;
  }
}
.p-about__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  padding: 0 0 20px 0;
  border-bottom: 2px solid #eee;
}
@media screen and (min-width: 768px) {
  .p-about__nav {
    gap: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-about__nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.p-about__nav li a:hover {
  color: #003876;
}
.p-about__nav-icon {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-about__section {
  margin-bottom: 80px;
  scroll-margin-top: 100px;
}
.p-about__section:last-child {
  margin-bottom: 0;
}
.p-about__title {
  font-size: 21px;
  font-weight: bold;
  color: #333333;
  border-left: 4px solid #003876;
  padding-left: 15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    font-size: 24px;
  }
}
.p-about__philosophy {
  text-align: center;
}
.p-about__philosophy img {
  max-width: 100%;
  height: auto;
}
.p-about__message-img {
  margin: 0 0 30px;
}
.p-about__message-img img {
  width: 100%;
  height: auto;
}
.p-about__message-text {
  margin-bottom: 40px;
}
.p-about__message-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.6;
}
.p-about__message-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 1em;
}
.p-about__table {
  width: 100%;
  border-collapse: collapse;
}
.p-about__table th, .p-about__table td {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}
.p-about__table th {
  width: 35%;
  font-weight: bold;
  background-color: #fafafa;
}
@media screen and (min-width: 768px) {
  .p-about__table th {
    width: 25%;
  }
}
.p-about__table tr:first-child th,
.p-about__table tr:first-child td {
  border-top: 1px solid #e5e5e5;
}
.p-about__snap-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.p-about__snap-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-about__snap-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
.p-about__snap-gallery img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}

.p-work-detail {
  background-color: #fff;
  padding: 40px 20px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-work-detail {
    padding: 80px;
  }
}
.p-work-detail__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .p-work-detail__intro {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-work-detail__intro-img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-detail__intro-img {
    width: 50%;
  }
}
.p-work-detail__intro-img img {
  width: 100%;
  height: auto;
}
.p-work-detail__intro-text {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-work-detail__intro-text {
    width: 50%;
  }
}
.p-work-detail__intro-title {
  font-size: 22px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-work-detail__intro-title {
    font-size: 26px;
  }
}
.p-work-detail__intro-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
}
.p-work-detail__intro-profile dt {
  font-weight: bold;
  width: 80px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-work-detail__intro-profile dd {
  margin: 0;
}
.p-work-detail__intro-name {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-work-detail__intro-name {
    font-size: 20px;
  }
}
.p-work-detail__intro-desc {
  font-size: 15px;
  line-height: 2;
}
.p-work-detail__body {
  max-width: 800px;
  margin: 0 auto;
}
.p-work-detail__s {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-work-detail__s {
    font-size: 24px;
  }
}
.p-work-detail__q {
  font-size: 18px;
  font-weight: bold;
  color: #003876;
  margin-bottom: 15px;
  line-height: 1.6;
  border-left: 4px solid #003876;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .p-work-detail__q {
    font-size: 20px;
  }
}
.p-work-detail__a {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 50px;
}
.p-work-detail__img {
  margin: 50px 0;
}
.p-work-detail__img img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.p-work-others {
  margin-bottom: 100px;
}
.p-work-others__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .p-work-others__title {
    font-size: 28px;
  }
}
.p-work-others__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-work-others__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.c-work-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  text-decoration: none;
  color: #333333;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
}
.c-work-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.c-work-card:hover .c-work-card__title {
  color: #003876;
}
.c-work-card:hover .c-work-card__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.c-work-card__img {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.c-work-card__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.c-work-card__body {
  padding: 25px 20px;
}
.c-work-card__job {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #003876;
  border: 1px solid #003876;
  padding: 4px 12px;
  margin-bottom: 15px;
  border-radius: 20px;
}
.c-work-card__title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-faq {
  background-color: #fff;
  padding: 40px 20px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding: 80px;
  }
}

.p-qa-block {
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}
.p-qa-block dt {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  background-color: #f5f7fa;
  padding: 20px 20px 20px 50px;
  border-radius: 4px;
  margin-bottom: 20px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-qa-block dt {
    font-size: 18px;
    padding: 25px 30px 25px 60px;
  }
}
.p-qa-block dt::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #003876;
}
@media screen and (min-width: 768px) {
  .p-qa-block dt::before {
    left: 20px;
    font-size: 28px;
  }
}
.p-qa-block dd {
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  padding: 0 20px 40px 50px;
  margin: 0 0 40px 0;
  border-bottom: 1px dashed #e5e5e5;
}
@media screen and (min-width: 768px) {
  .p-qa-block dd {
    padding: 0 30px 50px 60px;
    margin-bottom: 50px;
  }
}
.p-qa-block dd:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.p-qa-block dd::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 15px;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #cc0000;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-qa-block dd::before {
    left: 20px;
    font-size: 28px;
  }
}

.p-requirements__nav {
  background-color: #fff;
  padding: 40px 20px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .p-requirements__nav {
    padding: 60px;
  }
}
.p-requirements__index {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-requirements__index {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-requirements__index li {
  border-bottom: 1px solid #eee;
}
.p-requirements__index li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-requirements__index li a {
    font-size: 18px;
    padding: 25px 0;
  }
}
.p-requirements__index li a:hover {
  opacity: 0.6;
}

/* --- 白いコンテナブロック --- */
.c-block.-whiteboard {
  padding: 40px 20px;
}
.c-block__inner {
  width: 100%;
}

/* --- セクション構造 --- */
.c-section-1 {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 2px dashed #eee;
  scroll-margin-top: 100px;
}
.c-section-1:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.c-section-2 {
  margin-bottom: 40px;
}

/* --- 見出し周り --- */
.p-section-heading {
  margin-bottom: 40px;
}
.p-section-heading__main {
  margin-bottom: 20px;
}

.c-heading-3 {
  font-size: 24px;
  font-weight: bold;
  color: #003876;
  border-left: 5px solid #003876;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .c-heading-3 {
    font-size: 28px;
  }
}

.c-sentence {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* --- テーブル（募集要項） --- */
.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table.-wide {
  border-top: 2px solid #003876;
}
.c-table.-wide th, .c-table.-wide td {
  padding: 20px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
}
.c-table.-wide th {
  width: 35%;
  font-weight: bold;
  background-color: #f5f7fa;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .c-table.-wide th {
    width: 25%;
    padding: 25px 30px;
  }
}
.c-table.-wide td {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-table.-wide td {
    padding: 25px 30px;
  }
}

/* --- お問い合わせボタン --- */
.c-button-wrap {
  text-align: center;
  margin-top: 40px;
}

.c-button {
  display: block;
  margin: 0 auto;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-button.-large {
  width: 100%;
  max-width: 400px;
  background-color: #123368;
  color: #fff;
  border-radius: 40px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.c-button.-large span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.c-button.-large:hover {
  background-color: #0b2044;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* --- 丸い矢印アイコン --- */
.c-circle-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-circle-arrow.-bottom.-accent {
  background-color: #5d6d39;
}
.c-circle-arrow.-bottom.-accent::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateY(-2px) rotate(45deg);
          transform: translateY(-2px) rotate(45deg);
}
.c-circle-arrow.-right.-white {
  background-color: rgba(255, 255, 255, 0.25);
}
.c-circle-arrow.-right.-white::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: translateX(-2px) rotate(-45deg);
          transform: translateX(-2px) rotate(-45deg);
}

.page-box.privacy {
  background-color: #fff;
  padding: 40px 20px;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 80px;
  color: #333333;
  line-height: 1.8;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .page-box.privacy {
    padding: 80px;
  }
}
.page-box.privacy > p {
  margin-bottom: 30px;
}
.page-box.privacy ol {
  list-style: none;
  padding: 0;
  margin: 0 0 60px 0;
  counter-reset: privacy-counter;
}
.page-box.privacy ol li {
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 40px;
}
.page-box.privacy ol li:last-child {
  margin-bottom: 0;
}
.page-box.privacy ol li::before {
  counter-increment: privacy-counter;
  content: counter(privacy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: #003876;
  font-size: 20px;
  line-height: 1.4;
}
.page-box.privacy ol li strong {
  display: block;
  font-size: 18px;
  color: #003876;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
.page-box.privacy .box {
  background-color: #f5f7fa;
  padding: 30px 20px;
  border-radius: 4px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-box.privacy .box {
    padding: 40px;
  }
}
.page-box.privacy .box p {
  margin: 0;
  line-height: 1.8;
}
.page-box.privacy .box p:first-child {
  margin-bottom: 20px;
  font-weight: bold;
}
.page-box.privacy .box strong {
  display: inline-block;
  font-size: 20px;
  color: #333333;
  margin-bottom: 5px;
}

.u-fade-in {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}
.u-fade-in.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}/*# sourceMappingURL=style.css.map */