@charset "UTF-8";
/* CSS Document */
/*==================================================
Foundation
==================================================*/
/*--------------------------------------------------
Font
--------------------------------------------------*/
/*@font-face {
  font-family: '';
  font-weight: normal;
  src: url('../font/') format('');
  font-display: swap;
}*/
.mincho {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
}

.gothic {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*--------------------------------------------------
Media Query
--------------------------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tb {
  display: block;
}
@media screen and (max-width: 960px) {
  .tb {
    display: none;
  }
}

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

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5625em;
  line-height: 1.7;
  color: #000;
  position: relative;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1rem;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

#container {
  background-color: #f0faff;
  min-width: 375px;
}

a {
  text-decoration: none;
  word-break: break-word;
  color: inherit;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

article a {
  text-decoration: underline;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  margin: 0;
}

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

iframe {
  vertical-align: bottom;
  max-width: 100%;
  max-height: 100%;
}

input, select, textarea {
  font-size: 16px !important;
}

button {
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

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

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

video {
  vertical-align: middle;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
}

/*==================================================
Layout
==================================================*/
/*--------------------------------------------------
Header
--------------------------------------------------*/
.header {
  background-color: #fff;
  width: 100%;
  padding: 20px 4%;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 10px;
  }
}
.header.is-fixed {
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  left: 0;
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4%;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header .logo img {
    max-height: 40px;
  }
}
.header .gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .header .gnav {
    display: none;
  }
}
.header .gnav .gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
.header .gnav .gnav-list > li {
  font-size: 16px;
  font-size: clamp(0.75rem, 0.7024rem + 0.2381vw, 1rem);
  position: relative;
}
.header .gnav .gnav-list > li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .gnav .gnav-list > li a:hover {
  color: #386cb0;
}
.header .menu-btn {
  display: none;
  background-color: #fff;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header .menu-btn {
    display: block;
  }
}
.header .menu-btn > span {
  display: block;
  background-color: #386cb0;
  width: 30px;
  height: 4px;
  margin: auto;
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .menu-btn > span:nth-child(2) {
  top: 19px;
}
.header .menu-btn > span:nth-child(3) {
  top: 29px;
}
.header .menu-btn.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}
.header .menu-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header .menu-btn.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}
.header .menu {
  display: none;
  background-color: #386cb0;
  color: #fff;
  position: fixed;
  z-index: 9;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 0 4%;
}
.header .menu-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.header .menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header .menu-nav .menu-list {
  max-width: 400px;
  width: 100%;
}
.header .menu-nav .menu-list > li {
  border-bottom: 1px solid #fff;
  font-size: 13px;
}
.header .menu-nav .menu-list > li:last-child {
  border-bottom: 0;
}
.header .menu-nav .menu-list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px 16px 20px 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.header .menu-nav .menu-list > li a::before {
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 28px;
  left: 10px;
}
.header .menu-nav .menu-list > li a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Footer
--------------------------------------------------*/
.footer-contact {
  padding: 0 4%;
}
@media screen and (max-width: 768px) {
  .footer-contact {
    padding: 0 4% 20px;
  }
}
.footer-contact .inner {
  max-width: 1800px;
  margin: 0 auto;
}
.footer-contact .box {
  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;
  gap: 20px;
  background-color: #ccc;
  background: url(../img/common/footer-contact-bg.jpg) no-repeat center/cover;
  border-radius: 20px;
  color: #fff;
  margin-bottom: -140px;
  padding: 100px 4%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .footer-contact .box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    padding: 20px;
  }
}
.footer-contact .heading {
  font-size: 90px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .footer-contact .heading {
    font-size: 40px;
  }
}
.footer-contact .heading .small {
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .footer-contact .heading .small {
    font-size: 16px;
  }
}
.footer-contact .tel-box {
  background-color: #fff;
  border-radius: 20px;
  font-size: 30px;
  line-height: 1.5;
  color: #386cb0;
  padding: 30px 50px;
}
@media screen and (max-width: 768px) {
  .footer-contact .tel-box {
    font-size: 16px;
    padding: 20px;
  }
}
.footer-contact .tel-box .tel {
  font-size: 70px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer-contact .tel-box .tel {
    font-size: 20px;
  }
}
.footer-contact .tel-box .tel::before {
  content: "";
  display: inline-block;
  background: url(../img/common/ico-tel.svg) no-repeat center/contain;
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .footer-contact .tel-box .tel::before {
    width: 1em;
    height: 1em;
    margin-right: 10px;
  }
}

.footer {
  background-color: #386cb0;
  color: #fff;
  padding: 260px 4% 120px;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 13px;
    padding: 50px 4%;
  }
}
.footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4%;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .logo {
  font-size: 18px;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .footer .logo {
    text-align: center;
  }
}
.footer .address {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer .address {
    text-align: center;
    margin-bottom: 2em;
  }
}
.footer .nav {
  margin-bottom: 2em;
}
.footer .nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em 2em;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1em;
  }
}
.footer .nav .nav-list > li {
  font-size: 16px;
}
.footer .nav .nav-list > li::before {
  content: "■";
  margin-right: 10px;
}
.footer .nav .nav-list > li a:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    text-align: center;
  }
}

.pagetop {
  position: fixed;
  right: 40px;
  bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 10px;
    bottom: 10px;
  }
}

/*--------------------------------------------------
Main
--------------------------------------------------*/
.pagehead {
  padding: 0 4%;
}
.pagehead .inner {
  max-width: 1800px;
  margin: 0 auto;
}
.pagehead .flex {
  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;
  gap: 20px;
}
.pagehead .pagettl {
  font-size: 50px;
  font-weight: normal;
  color: #386cb0;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl {
    font-size: 18px;
  }
}
.pagehead .pagettl .small {
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl .small {
    font-size: 16px;
  }
}
.pagehead .img {
  width: 56.6666666667%;
}
.pagehead .img img {
  border-radius: 20px;
}

.breadcrumb {
  padding: 10px 4% 50px;
}
.breadcrumb .breadcrumb-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  max-width: 1800px;
  margin: 0 auto;
}
.breadcrumb .breadcrumb-list > li {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb-list > li {
    font-size: 12px;
  }
}
.breadcrumb .breadcrumb-list > li::after {
  content: ">";
  margin: 0 5px;
}
.breadcrumb .breadcrumb-list > li a:hover {
  text-decoration: underline;
}
.breadcrumb .breadcrumb-list > li:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 14em;
}
.breadcrumb .breadcrumb-list > li:last-child::after {
  display: none;
}

/*--------------------------------------------------
Side
--------------------------------------------------*/
/*==================================================
Object
==================================================*/
/*--------------------------------------------------
Component
--------------------------------------------------*/
.c-section {
  padding: 100px 4%;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding: 50px 4%;
  }
}
.c-section:last-child {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .c-section:last-child {
    padding-bottom: 75px;
  }
}

.c-inner {
  max-width: 1800px;
  margin: 0 auto;
}

.c-heading {
  font-size: 60px;
  font-weight: normal;
  margin-bottom: 1em;
  color: #15355f;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 20px;
  }
}

.c-tbl-wrap {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .c-tbl-wrap {
    padding: 20px;
  }
}
.c-tbl-wrap table tr {
  border-bottom: 1px dashed #386cb0;
}
.c-tbl-wrap table th, .c-tbl-wrap table td {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .c-tbl-wrap table th, .c-tbl-wrap table td {
    display: block;
    padding: 10px;
  }
}
.c-tbl-wrap table th {
  text-align: left;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .c-tbl-wrap table th {
    width: auto;
    padding-bottom: 0;
  }
}
.c-tbl-wrap table a {
  text-decoration: underline;
  color: #386cb0;
}
.c-tbl-wrap table a:hover {
  text-decoration: none;
}

.c-btn {
  max-width: 560px;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 275px;
  }
}
.c-btn a {
  display: block;
  background-color: #15355f;
  border: 1px solid #15355f;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.c-btn a::after {
  content: "→";
  margin-left: 1em;
}
.c-btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Form
--------------------------------------------------*/
.form table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.form table th, .form table td {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .form table th, .form table td {
    display: block;
    padding: 10px;
  }
}
.form table th {
  background-color: #f3f3f3;
  text-align: left;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .form table th {
    width: auto;
  }
}
.form .required {
  display: inline-block;
  vertical-align: middle;
  background-color: #dd3333;
  color: #fff;
  font-size: 9px;
  font-weight: normal;
  margin-left: 1em;
  padding: 1px 6px;
}
.form .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.form .row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.form label {
  cursor: pointer;
}
.form [type=text], .form [type=email], .form [type=tel] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 550px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form [type=number] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 120px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form select {
  border: 1px solid #ccc;
  padding: 10px;
}
.form textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 650px;
  width: 100%;
  height: 120px;
  padding: 10px;
}
.form ::-webkit-input-placeholder {
  color: #ccc;
}
.form ::-moz-placeholder {
  color: #ccc;
}
.form :-ms-input-placeholder {
  color: #ccc;
}
.form ::-ms-input-placeholder {
  color: #ccc;
}
.form ::placeholder {
  color: #ccc;
}
.form .privacy {
  margin: 2em 0;
}
.form .privacy .privacy-head {
  background-color: #f3f3f3;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .form .privacy .privacy-head {
    padding: 10px;
  }
}
.form .privacy .privacy-body {
  border-bottom: 1px solid #ccc;
  height: 240px;
  padding: 20px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .form .privacy .privacy-body {
    height: 200px;
    padding: 10px;
  }
}
.form .privacy dl {
  margin: 2em 0;
}
.form .privacy dl div {
  margin-bottom: 2em;
}
.form .privacy dl dt {
  font-weight: bold;
  color: #dd3333;
}
.form .agree {
  text-align: center;
  margin: 2em 0;
}
.form .btn {
  max-width: 320px;
  width: 100%;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .form .btn {
    max-width: 275px;
  }
}
.form .btn button, .form .btn input {
  background-color: #202020;
  border: 1px solid #202020;
  border-radius: 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .form .btn button, .form .btn input {
    font-size: 13px;
    padding: 15px;
  }
}
.form .btn button:hover, .form .btn input:hover {
  opacity: 0.7;
}

div.cf-turnstile {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

/*--------------------------------------------------
Pagination
--------------------------------------------------*/
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2em;
  line-height: 1;
  padding: 2em 0;
}
.pagination .pagination-last,
.pagination .pagination-first,
.pagination .pagination-next,
.pagination .pagination-prev,
.pagination .pagination-item a,
.pagination .is-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-decoration: none;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  min-width: 32px;
  min-height: 32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.5em 0.5em;
  margin: 0 0.2em;
}
.pagination .pagination-last:hover:not(li),
.pagination .pagination-first:hover:not(li),
.pagination .pagination-next:hover:not(li),
.pagination .pagination-prev:hover:not(li),
.pagination .pagination-item a:hover:not(li),
.pagination .is-current:hover:not(li) {
  background: #ddd;
}
.pagination .pagination-list {
  display: none;
}
@media (min-width: 520px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 520px) {
  .pagination .is-current {
    background: #202020;
    color: #fff;
    font-weight: bold;
  }
}
.pagination .pagination-page {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border: 1px solid #ccc;
  padding: 1em;
}
@media (min-width: 520px) {
  .pagination .pagination-page {
    display: none;
  }
}
.pagination .pagination-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 520px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.pagination .pagination-next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 520px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.pagination .pagination-first {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-first {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.pagination .pagination-last {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-last {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pagenav {
  padding: 2em 0;
}
.pagenav .pagenav-list {
  background-color: #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4%;
  padding: 1em 2em;
}
.pagenav .pagenav-list > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pagenav .pagenav-list > li {
    font-size: 13px;
  }
}
.pagenav .next {
  text-align: right;
}
.pagenav a {
  text-decoration: underline;
  color: #dd3333;
}
.pagenav a:hover {
  text-decoration: none;
}

/* Project
==================================================*/
/*--------------------------------------------------
top
--------------------------------------------------*/
.p-top .hero {
  padding: 0 4%;
}
.p-top .hero .flex {
  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;
  gap: 20px 1.1111111111%;
}
.p-top .hero .flex #hero_slider {
  width: 79%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-top .hero .flex #hero_slider {
    width: 70%;
  }
}
.p-top .hero .flex #hero_slider img {
  border-radius: 20px;
}
.p-top .hero .ttl {
  font-size: 50px;
  font-size: clamp(1rem, -0.2969rem + 2.7375vw, 3.125rem);
  font-weight: normal;
  color: #386cb0;
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-top .hero .ttl {
    font-size: 16px;
  }
}
.p-top .hero .ttl::before {
  content: "";
  background-color: #386cb0;
  width: 60px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top .hero .scroll_down {
  position: relative;
  width: 30px;
  height: 200px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-top .hero .scroll_down {
    height: 50px;
  }
}
.p-top .hero .scroll_down a {
  position: absolute;
  left: 0;
  bottom: 0;
  color: #386cb0;
  font-size: 14px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-top .hero .scroll_down a {
    font-size: 12px;
  }
}
.p-top .hero .scroll_down a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 6px;
  width: 1px;
  height: 20px;
  background: #386cb0;
  -webkit-transform: skewX(-31deg);
          transform: skewX(-31deg);
}
.p-top .hero .scroll_down a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #386cb0;
}

.p-top .section01 {
  padding: 150px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section01 {
    padding: 50px 4%;
  }
}
.p-top .section01 .inner {
  max-width: 1800px;
  margin: 0 auto;
}
.p-top .section01 .heading {
  font-size: 90px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.5;
  color: #386cb0;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading {
    font-size: 40px;
  }
}
.p-top .section01 .heading .small {
  display: block;
  font-size: 20px;
  font-weight: normal;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading .small {
    font-size: 16px;
  }
}
.p-top .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section01 .flex .img {
  width: 45.5555555556%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .flex .img {
    width: auto;
  }
}
.p-top .section01 .flex .img img {
  border-radius: 20px;
}

.p-top .section02 {
  background-color: #fff;
  padding: 150px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 {
    padding: 50px 4%;
  }
}
.p-top .section02 .inner {
  max-width: 1800px;
  margin: 0 auto;
}
.p-top .section02 .heading {
  font-size: 90px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.5;
  color: #386cb0;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading {
    font-size: 40px;
  }
}
.p-top .section02 .heading .small {
  display: block;
  font-size: 20px;
  font-weight: normal;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading .small {
    font-size: 16px;
  }
}
.p-top .section02 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 2.2222222222%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.p-top .section02 .list > li {
  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;
  gap: 20px;
  background-color: #f0faff;
  border-radius: 20px;
  width: 31.6666666667%;
  padding: 40px;
}
@media screen and (max-width: 960px) {
  .p-top .section02 .list > li {
    width: 100%;
    padding: 20px;
  }
}
.p-top .section02 .list > li .cap {
  font-size: 32px;
  font-weight: bold;
  color: #386cb0;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .cap {
    font-size: 18px;
  }
}
.p-top .section02 .list > li .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  width: 220px;
  height: 220px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .img {
    width: 100px;
    height: 100px;
  }
}
.p-top .section02 .list > li .img img {
  max-width: 100px;
  max-height: 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .list > li .img img {
    max-width: 32px;
    max-height: 32px;
  }
}
.p-top .section02 .btn {
  max-width: 560px;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn {
    max-width: 275px;
  }
}
.p-top .section02 .btn a {
  display: block;
  background-color: #15355f;
  border: 1px solid #15355f;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-top .section02 .btn a::after {
  content: "→";
  margin-left: 1em;
}
.p-top .section02 .btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
lawyer
--------------------------------------------------*/
.p-lawyer .section01 .box {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
}
.p-lawyer .section01 .subsec {
  margin-bottom: 40px;
}
.p-lawyer .section01 .subheading {
  background-color: #386cb0;
  border-radius: 10px;
  font-size: 25px;
  font-weight: normal;
  color: #fff;
  margin-bottom: 1em;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .p-lawyer .section01 .subheading {
    font-size: 18px;
  }
}
.p-lawyer .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .p-lawyer .section01 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-lawyer .section01 .flex .img {
  width: 27.2222222222%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-lawyer .section01 .flex .img {
    width: auto;
  }
}
.p-lawyer .section01 .flex .txtarea {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-lawyer .section01 .cap {
  margin-top: 1em;
}

/*--------------------------------------------------
business
--------------------------------------------------*/
.p-business .section01 .list {
  margin-bottom: 40px;
}
.p-business .section01 .list > li {
  margin-bottom: 1em;
}
.p-business .section01 .box {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
}

.p-business .section02 {
  background-color: #fff;
}
.p-business .section02 .box {
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 30px;
}
.p-business .section02 dl div {
  border-bottom: 1px dashed #a4b6d3;
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .p-business .section02 dl div {
    padding: 20px 0;
  }
}

.p-business .section03 {
  background-color: #fff;
}
.p-business .section03 .box {
  background-color: #f0faff;
  border-radius: 20px;
  padding: 30px;
}

.p-business .section04 {
  background-color: #fff;
}
.p-business .section04 .box {
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 30px;
}

.p-business .section05 {
  background-color: #fff;
}
.p-business .section05 .box {
  background-color: #f8f8f8;
  border-radius: 20px;
  padding: 30px;
}

/*--------------------------------------------------
case
--------------------------------------------------*/
.p-case .subsec {
  background-color: #f8f8f8;
  margin-bottom: 40px;
  padding: 30px;
}
.p-case .subheading {
  font-size: 36px;
  font-weight: bold;
  color: #386cb0;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-case .subheading {
    font-size: 18px;
  }
}
.p-case .subheading::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-color: #386cb0;
  width: 10px;
  height: 1em;
  margin-right: 10px;
}
.p-case .catch {
  font-size: 25px;
  margin-bottom: 1em;
  color: #386cb0;
}
@media screen and (max-width: 768px) {
  .p-case .catch {
    font-size: 18px;
  }
}
.p-case .box {
  background-color: #fff;
  border-radius: 20px;
  margin: 2em 0;
  padding: 30px;
}
.p-case .list > li {
  margin-bottom: 1em;
}
.p-case .list > li::before {
  content: "●";
  color: #386cb0;
  margin-right: 10px;
}
.p-case .list > li:last-child {
  margin-bottom: 0;
}
.p-case dl div {
  margin-bottom: 40px;
}
.p-case dl dt {
  display: inline-block;
  background-color: #386cb0;
  font-size: 25px;
  color: #fff;
  margin-bottom: 1em;
  padding: 3px 10px;
}
@media screen and (max-width: 768px) {
  .p-case dl dt {
    font-size: 18px;
  }
}
.p-case .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 36px 2%;
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-case .nav-list {
    gap: 20px 2.6666666667%;
    margin: 50px 0;
  }
}
.p-case .nav-list > li {
  width: 18.3333333333%;
}
@media screen and (max-width: 768px) {
  .p-case .nav-list > li {
    width: 48%;
  }
}
.p-case .nav-list > li a {
  display: block;
  font-size: 25px;
  text-align: center;
  padding: 20px;
  color: #386cb0;
  background-color: #fff;
  border: 1px solid #386cb0;
  border-radius: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-case .nav-list > li a {
    font-size: 16px;
  }
}
.p-case .nav-list > li a:hover {
  opacity: 0.7;
}

.p-case .section01 {
  background-color: #fff;
}

.p-case .section02 {
  background-color: #fff;
}

.p-case .section03 {
  background-color: #fff;
}

.p-case .section04 {
  background-color: #fff;
}

.p-case .section05 {
  background-color: #fff;
}

/*--------------------------------------------------
office
--------------------------------------------------*/
.p-office .section02 {
  background-color: #fff;
}
.p-office .section02 .map {
  margin-bottom: 40px;
}
.p-office .section02 .map iframe {
  border-radius: 20px;
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 768px) {
  .p-office .section02 .map iframe {
    height: 200px;
  }
}/*# sourceMappingURL=style.css.map */