@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%;
}

body {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-size: 1em;
  line-height: 1.9;
  color: #303030;
  position: relative;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

#container {
  min-width: 375px;
  position: relative;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  line-height: 1.5;
  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%;
}

/*--------------------------------------------------
animation
--------------------------------------------------*/
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-120px);
            transform: translateY(-120px);
    opacity: 0;
    display: none;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    display: block;
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-120px);
            transform: translateY(-120px);
    opacity: 0;
    display: none;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    display: block;
  }
}
/*==================================================
Layout
==================================================*/
/*--------------------------------------------------
Header
--------------------------------------------------*/
.header {
  display: none;
  background-color: #fff;
  width: 100%;
  padding: 20px 4%;
}
@media screen and (max-width: 1280px) {
  .header {
    padding: 10px;
    top: -60px;
  }
}
.header.is-fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: block;
  -webkit-animation: slideDown 0.5s forwards;
          animation: slideDown 0.5s forwards;
}
.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: 1280px) {
  .header .logo img {
    max-height: 40px;
  }
}
.header .gnav {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
}
@media screen and (max-width: 1280px) {
  .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: 18px;
  font-size: clamp(0.75rem, 0.6786rem + 0.3571vw, 1.125rem);
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.header .gnav .gnav-list > li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .gnav .gnav-list > li a:hover {
  color: #0160a3;
}
.header .contact-btn {
  width: 180px;
}
.header .contact-btn a {
  display: block;
  background-color: #262626;
  border: 1px solid #262626;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 16px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header .contact-btn a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  background: url(../img/common/ico-mail-white.svg) no-repeat center/contain;
}
.header .contact-btn a:hover {
  opacity: 0.8;
}
.header .menu-btn {
  display: none;
  background-color: #fff;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
@media screen and (max-width: 1280px) {
  .header .menu-btn {
    display: block;
  }
}
.header .menu-btn > span {
  display: block;
  background-color: #0160a3;
  border-radius: 6px;
  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: #0160a3;
  color: #fff;
  position: absolute;
  z-index: 999;
  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 {
  background-color: #f7f7f7;
  padding: 140px 4% 80px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 4%;
  }
}
.footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  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: 150px;
}
@media screen and (max-width: 768px) {
  .footer .logo {
    text-align: center;
    margin-bottom: 40px;
  }
}
.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 0;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1em 0;
  }
}
.footer .nav .nav-list > li {
  font-size: 16px;
  font-weight: bold;
  padding: 0 2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list > li {
    font-size: 14px;
    padding: 0 1em;
  }
}
.footer .nav .nav-list > li::after {
  content: "";
  background-color: #303030;
  width: 1px;
  height: 1em;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list > li::after {
    clip-path: none;
    width: 1px;
    height: 1em;
    margin: auto;
    top: 0;
    bottom: 0;
  }
}
.footer .nav .nav-list > li:last-child::after {
  display: none;
}
.footer .nav .nav-list > li a:hover {
  text-decoration: underline;
}
.footer .tbl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 520px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer .tbl {
    margin: 0 auto;
  }
}
.footer .tbl table tr {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
}
.footer .tbl table th, .footer .tbl table td {
  font-size: 16px;
  padding: 20px 10px;
}
@media screen and (max-width: 768px) {
  .footer .tbl table th, .footer .tbl table td {
    font-size: 14px;
    padding: 10px;
  }
}
.footer .tbl table th {
  text-align: left;
  width: 120px;
}
.footer .tbl table a {
  text-decoration: underline;
  color: #02347b;
}
.footer .tbl table a:hover {
  text-decoration: none;
}
.footer .map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer .map {
    margin: 0 auto;
  }
}
.footer .map iframe {
  width: 100%;
  height: 310px;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .footer .map iframe {
    height: 250px;
  }
}
.footer .contact {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 420px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .footer .contact {
    margin: 0 auto 40px;
  }
}
.footer .contact .ttl {
  background-color: #0160a3;
  border-radius: 20px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 3px 15px;
}
.footer .contact .tel {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer .contact .tel {
    font-size: 28px;
  }
}
.footer .contact .tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  background: url(../img/common/ico-tel-blue.svg) no-repeat center/contain;
}
.footer .contact .btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .footer .contact .btn-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.footer .contact .btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 200px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer .contact .btn {
    margin: 0 auto;
  }
}
.footer .contact .btn a {
  display: block;
  border: 1px solid #000;
  border-radius: 99px;
  color: #000;
  font-size: 16px;
  text-align: center;
  max-width: 200px;
  padding: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer .contact .btn a:hover {
  opacity: 0.8;
}
.footer .contact .btn.staff a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  background: url(../img/common/ico-staff-black.svg) no-repeat center/contain;
}
.footer .contact .btn.contact a {
  background-color: #000;
  color: #fff;
}
.footer .contact .btn.contact a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  background: url(../img/common/ico-mail-white.svg) no-repeat center/contain;
}
.footer .copyright {
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    text-align: center;
  }
}

.pagetop {
  position: fixed;
  z-index: 9999;
  right: 50px;
  bottom: 100px;
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 10px;
    bottom: 70px;
  }
}

/*--------------------------------------------------
Main
--------------------------------------------------*/
.pagehead {
  padding: 0 4%;
}
.pagehead .inner {
  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;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .pagehead .inner {
    gap: 10px;
  }
}
.pagehead .img {
  width: 60%;
}
.pagehead .img img {
  border-radius: 30px;
}
.pagehead .pagettl-area {
  width: 37.2222222222%;
  height: 100%;
  position: relative;
}
.pagehead .pagettl {
  font-size: 60px;
  font-weight: bold;
  text-align: right;
  color: #0160a3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl {
    font-size: 16px;
  }
}
.pagehead .pagettl::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../img/common/pagettl-arrow.png) no-repeat center/contain;
  width: 50px;
  height: 50px;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl::before {
    width: 1em;
    height: 1em;
    margin-right: 10px;
  }
}
.pagehead .pagettl-en {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.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: 1200px;
  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
--------------------------------------------------*/
.side-fixed {
  position: fixed;
  z-index: 99;
  top: 140px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .side-fixed {
    display: none;
  }
}
.side-fixed .list > li {
  margin-bottom: 20px;
}
.side-fixed .list > li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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: #000;
  border-radius: 20px 0 0 20px;
  color: #fff;
  font-size: 21px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-align: center;
  min-width: 70px;
  padding: 15px;
}
.side-fixed .list > li .ico {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  line-height: 1;
  width: 1em;
  margin: auto auto 10px;
}
.side-fixed .list > li .ico img {
  min-width: 32px;
}

.side-bnr {
  position: fixed;
  z-index: 99;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .side-bnr {
    display: none;
  }
}
.side-bnr a {
  display: block;
  background-color: #0160a3;
  border-radius: 20px 0 0 0;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 20px;
}
.side-bnr .ico {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  width: 1em;
  height: 1em;
  margin-right: 5px;
}

.foot-fixed {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 99;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .foot-fixed {
    display: block;
  }
}
.foot-fixed .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.foot-fixed .tel {
  width: 50%;
}
.foot-fixed .tel a {
  display: block;
  background-color: #d14600;
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 10px;
}
.foot-fixed .tel a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../img/common/ico-tel-white.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.foot-fixed .line {
  width: 50%;
}
.foot-fixed .line a {
  display: block;
  background-color: #aedd3c;
  font-size: 12px;
  text-align: center;
  padding: 10px;
}
.foot-fixed .line a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: url(../img/common/LINE_Brand_icon.png) no-repeat center/contain;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

/*==================================================
Object
==================================================*/
/*--------------------------------------------------
Component
--------------------------------------------------*/
.c-section {
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding: 30px 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 {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .c-heading {
    margin-bottom: 40px;
  }
}
.c-heading .heading-ico {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-heading .heading-ico {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-heading .heading-ico img {
    max-width: 100px;
    max-height: 100px;
  }
}
.c-heading .heading-ttl {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  color: #0160a3;
}
@media screen and (max-width: 768px) {
  .c-heading .heading-ttl {
    font-size: 18px;
  }
}
.c-heading .heading-ttl .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(30%, #eef2f7));
  background: linear-gradient(transparent 30%, #eef2f7 30%);
  margin-top: auto;
  padding: 0 20px;
}

.c-tblwrap table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.c-tblwrap table th, .c-tblwrap table td {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .c-tblwrap table th, .c-tblwrap table td {
    padding: 10px;
  }
}
.c-tblwrap table th {
  background-color: #f3f3f3;
  text-align: left;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .c-tblwrap table th {
    width: 120px;
  }
}
.c-tblwrap table a {
  text-decoration: underline;
  color: #dd3333;
}
.c-tblwrap table a:hover {
  text-decoration: none;
}

.c-btn {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 275px;
  }
}
.c-btn a {
  display: block;
  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) {
  .c-btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.c-btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Form
--------------------------------------------------*/
.form table tr {
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}
.form table th, .form table td {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .form table th, .form table td {
    display: block;
    padding: 10px;
  }
}
.form table th {
  text-align: left;
  vertical-align: top;
  width: 400px;
  color: #0160a3;
}
@media screen and (max-width: 768px) {
  .form table th {
    width: auto;
  }
}
.form .required {
  display: inline-block;
  vertical-align: middle;
  background-color: #0160a3;
  border-radius: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: normal;
  margin-left: 1em;
  padding: 2px 4px;
}
.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: #fcfcfc;
  border: 1px solid #d2d2d2;
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form [type=number] {
  background-color: #fcfcfc;
  border: 1px solid #d2d2d2;
  border-radius: 20px;
  max-width: 100px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form select {
  border: 1px solid #fcfcfc;
  border-radius: 20px;
  padding: 10px;
}
.form textarea {
  background-color: #fcfcfc;
  border: 1px solid #d2d2d2;
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  height: 200px;
  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 {
  background-color: #fcfcfc;
  height: 350px;
  margin: 2em 0;
  padding: 40px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .form .privacy {
    padding: 20px;
  }
}
.form .privacy .privacy-head {
  display: inline-block;
  vertical-align: middle;
  background-color: #0160a3;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  margin-bottom: 1em;
  padding: 2px 10px;
}
.form .privacy .privacy-body {
  padding-right: 100px;
}
@media screen and (max-width: 768px) {
  .form .privacy .privacy-body {
    padding-right: 20px;
  }
}
.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: 350px;
  width: 100%;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .form .btn {
    max-width: 275px;
  }
}
.form .btn button, .form .btn input {
  background-color: #0160a3;
  border: 1px solid #0160a3;
  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) {
  .form .btn button, .form .btn input {
    font-size: 13px;
    padding: 15px;
  }
}
.form .btn button:hover, .form .btn input:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
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: #e0e0e0;
  border: 1px solid #ccc;
  border-radius: 50%;
  color: #fff;
  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: #0160a3;
    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 {
  background: #0160a3;
  -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 {
  background: #0160a3;
  -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 {
  background: #0160a3;
  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 {
  background: #0160a3;
  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 {
  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: 4%;
  padding: 1em 2em;
}
.pagenav .pagenav-list > li {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .pagenav .pagenav-list > li {
    font-size: 13px;
  }
}
.pagenav .prev a {
  display: block;
  background-color: #0160a3;
  border-radius: 99px 0 0 99px;
  color: #fff;
  max-width: 180px;
  padding: 10px 20px;
}
.pagenav .next {
  text-align: right;
}
.pagenav .next a {
  display: block;
  background-color: #0160a3;
  border-radius: 0 99px 99px 0;
  color: #fff;
  max-width: 180px;
  padding: 10px 20px;
}
.pagenav a {
  color: #0160a3;
}
.pagenav a:hover {
  text-decoration: underline;
}

/* Project
==================================================*/
/*--------------------------------------------------
top
--------------------------------------------------*/
.p-top .hero {
  text-align: center;
  overflow: hidden;
  padding: 20px;
}
.p-top .hero .img-list {
  display: grid;
  gap: 1.5%;
  grid-template-columns: 16% 14% 27% 12% 12% 10.5%;
  grid-template-rows: auto;
  grid-auto-flow: row dense;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
}
.p-top .hero .img-list .a {
  grid-column: 1;
  grid-row: 1/2;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list .a {
    display: none;
  }
}
.p-top .hero .img-list .b {
  grid-column: 2;
  grid-row: 1/4;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list .b {
    grid-column: 1;
    grid-row: 1/4;
  }
}
.p-top .hero .img-list .b img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top .hero .img-list .c {
  grid-column: 3;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list .c {
    grid-column: 2;
  }
}
.p-top .hero .img-list .d {
  grid-column: 4/6;
  grid-row: 1/3;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list .d {
    grid-column: 3/5;
  }
}
.p-top .hero .img-list .e {
  grid-column: 6;
  grid-row: 1/3;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list .e {
    display: none;
  }
}
.p-top .hero .img-list .f {
  grid-column: 1;
  grid-row: 2/4;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list .f {
    display: none;
  }
}
.p-top .hero .img-list .g {
  grid-column: 3;
  grid-row: 2/4;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list .g {
    grid-column: 2;
  }
}
.p-top .hero .img-list .h {
  grid-column: 4;
  grid-row: 3/4;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list .h {
    grid-column: 3;
  }
}
.p-top .hero .img-list .i {
  grid-column: 5;
  grid-row: 3/4;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list .i {
    grid-column: 4;
  }
}
.p-top .hero .img-list .j {
  grid-column: 6;
  grid-row: 3/4;
}
@media screen and (max-width: 768px) {
  .p-top .hero .img-list .j {
    display: none;
  }
}
.p-top .hero .img-list img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.p-top .section01 {
  padding: 150px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section01 {
    padding: 100px 4%;
  }
}
.p-top .section01 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-top .section01 .heading {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  color: #0160a3;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading {
    font-size: 24px;
  }
}
.p-top .section01 .feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 45px 3.75%;
}
@media screen and (max-width: 960px) {
  .p-top .section01 .feature-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px 0;
  }
}
.p-top .section01 .feature-list > li {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #ccc;
  border-radius: 20px;
  color: #fff;
  max-width: 370px;
  width: 30.8333333333%;
  height: 500px;
  margin: 0 auto;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .feature-list > li {
    width: 100%;
    height: 250px;
    margin: 0 auto;
    padding: 20px;
  }
}
.p-top .section01 .feature-list > li .num {
  font-size: 40px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .feature-list > li .num {
    font-size: 20px;
  }
}
.p-top .section01 .feature-list > li .ttl {
  font-size: 22px;
  font-weight: bold;
}

.p-top .section02 {
  padding: 100px 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: 48px;
  font-weight: bold;
  text-align: center;
  color: #0160a3;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading {
    font-size: 24px;
  }
}
.p-top .section02 .lead {
  text-align: center;
  margin-bottom: 2em;
}
.p-top .section02 .img {
  text-align: center;
}
.p-top .section02 .voice-list .item {
  float: left;
  margin: 0 14px;
  -webkit-transition: none;
  transition: none;
}
.p-top .section02 .voice-list .item .img {
  aspect-ratio: 3/4;
}
.p-top .section02 .voice-list .item .img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top .section02 .voice-list .item:nth-child(even) {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .voice-list .item:nth-child(even) {
    margin-top: 50px;
  }
}
.p-top .section02 .voice-list .item .ttl {
  font-weight: bold;
  margin-top: 1em;
}
.p-top .section02 .btn {
  margin: 60px auto;
}
.p-top .section02 .btn a {
  display: block;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  padding: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-top .section02 .btn a:hover {
  opacity: 0.8;
}
.p-top .section02 .btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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%;
  color: #000;
  font-size: 10px;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  padding: 3px;
}

.p-top .section03 {
  background-color: #f7f7f7;
  border-radius: 100px;
  padding: 100px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section03 {
    border-radius: 20px;
    padding: 50px 4%;
  }
}
.p-top .section03 .inner {
  max-width: 1800px;
  margin: 0 auto;
}
.p-top .section03 .heading {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  color: #0160a3;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading {
    font-size: 24px;
  }
}
.p-top .section03 .jyoken-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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .jyoken-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 50px;
  }
}
.p-top .section03 .jyoken-list > li .img {
  max-width: 1100px;
  width: 61.1111111111%;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .jyoken-list > li .img {
    width: auto;
  }
}
.p-top .section03 .jyoken-list > li .img img {
  border-radius: 20px;
  width: 100%;
  height: 520px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .jyoken-list > li .img img {
    width: auto;
    height: auto;
  }
}
.p-top .section03 .jyoken-list > li .txtarea {
  background-color: #fff;
  border-radius: 20px;
  max-width: 840px;
  width: 46.6666666667%;
  margin: 60px 0 0 -140px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .jyoken-list > li .txtarea {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 20px;
  }
}
.p-top .section03 .jyoken-list > li .ttl {
  font-size: 31px;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .jyoken-list > li .ttl {
    font-size: 20px;
  }
}
.p-top .section03 .jyoken-list > li .ttl .ico {
  margin-right: 10px;
}
.p-top .section03 .jyoken-list > li .cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}
.p-top .section03 .jyoken-list > li .cat-list > li {
  background-color: #f0f8ff;
  border: 1px solid #0160a3;
  border-radius: 20px;
  color: #0160a3;
  font-size: 16px;
  text-align: center;
  padding: 3px 15px;
}
.p-top .section03 .jyoken-list > li.area .cat-list > li {
  background-color: #fff7ed;
  border: 1px solid #d14600;
  color: #d14600;
}
.p-top .section03 .btn {
  margin: 60px auto;
}
.p-top .section03 .btn a {
  display: block;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  padding: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-top .section03 .btn a:hover {
  opacity: 0.8;
}
.p-top .section03 .btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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%;
  color: #000;
  font-size: 10px;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  padding: 3px;
}

.p-top .section04 {
  padding: 100px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section04 {
    padding: 50px 4%;
  }
}
.p-top .section04 .inner {
  max-width: 1800px;
  margin: 0 auto;
}
.p-top .section04 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section04 .head {
  max-width: 600px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .head {
    width: auto;
  }
}
.p-top .section04 .heading {
  font-size: 48px;
  font-weight: bold;
  color: #0160a3;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .heading {
    font-size: 24px;
  }
}
.p-top .section04 .article-list {
  max-width: 1130px;
  width: 62.7777777778%;
}
@media screen and (max-width: 960px) {
  .p-top .section04 .article-list {
    width: 62.7777777778%;
  }
}
@media screen and (max-width: 768px) {
  .p-top .section04 .article-list {
    width: auto;
  }
}
.p-top .section04 .article-list .article {
  border: 1px solid #cfcfcf;
  border-radius: 20px;
  margin-bottom: 30px;
}
.p-top .section04 .article-list .article a {
  display: block;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .article-list .article a {
    padding: 20px;
  }
}
.p-top .section04 .article-list .article-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .article-list .article-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.p-top .section04 .article-list .time {
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top .section04 .article-list .cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.p-top .section04 .article-list .cat-list > li {
  border: 1px solid #000;
  border-radius: 20px;
  font-size: 12px;
  text-align: center;
  padding: 3px 15px;
}
.p-top .section04 .btn {
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .btn {
    margin: 20px auto;
  }
}
.p-top .section04 .btn a {
  display: block;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 300px;
  padding: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-top .section04 .btn a:hover {
  opacity: 0.8;
}
.p-top .section04 .btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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%;
  color: #000;
  font-size: 10px;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  padding: 3px;
}

.p-top .section05 {
  padding: 100px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section05 {
    padding: 50px 4%;
  }
}
.p-top .section05 .inner {
  max-width: 1800px;
  margin: 0 auto;
}
.p-top .section05 .box {
  border-radius: 20px;
  color: #fff;
  padding: 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .box {
    padding: 40px;
  }
}
.p-top .section05 .img-area {
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-top .section05 .img-area::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
}
.p-top .section05 .img-area img {
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .img-area img {
    border-radius: 10px;
  }
}
.p-top .section05 .recruit-img-list {
  max-width: 100%;
  width: 200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .recruit-img-list {
    width: 120px;
  }
}
.p-top .section05 .recruit-img-list02 {
  max-width: 100%;
  width: 200px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .recruit-img-list02 {
    width: 120px;
  }
}
.p-top .section05 .recruit-img-list02 .slick-list {
  -webkit-transform: rotate(180deg) !important;
          transform: rotate(180deg) !important;
}
.p-top .section05 .recruit-img-list02 .slick-list img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-top .section05 .slick-list {
  height: 100% !important;
}
.p-top .section05 .item {
  margin: 9px 0;
  -webkit-transition: none;
  transition: none;
}
.p-top .section05 .txt-area {
  margin: auto;
  position: relative;
  z-index: 99;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.p-top .section05 .heading {
  font-size: 100px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .heading {
    font-size: 24px;
  }
}
.p-top .section05 .lead {
  font-size: 30px;
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .lead {
    font-size: 1em;
  }
}
.p-top .section05 .btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .btn-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-top .section05 .btn {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .btn {
    margin: 0 auto;
  }
}
.p-top .section05 .btn a {
  display: block;
  background-color: #0160a3;
  border: 1px solid #0160a3;
  border-radius: 99px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  padding: 15px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.p-top .section05 .btn a:hover {
  opacity: 0.8;
}
.p-top .section05 .btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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%;
  color: #0160a3;
  font-size: 10px;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  padding: 3px;
}

/*--------------------------------------------------
voice(archive)
--------------------------------------------------*/
.p-voice .section01 .article-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 2.2222222222%;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-voice .section01 .article-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-voice .section01 .article {
  border: 2px solid #0160a3;
  border-radius: 30px;
  width: 48.8888888889%;
}
@media screen and (max-width: 768px) {
  .p-voice .section01 .article {
    width: auto;
  }
}
.p-voice .section01 .article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-voice .section01 .article a {
    gap: 20px;
    padding: 20px;
  }
}
.p-voice .section01 .article .img {
  width: 190px;
  height: 190px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-voice .section01 .article .img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.p-voice .section01 .article .body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-voice .section01 .article .ttl {
  font-size: 22px;
  font-weight: bold;
  border-bottom: 1px solid #d4d4d4;
  margin-bottom: 20px;
  padding: 0 12px 20px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-voice .section01 .article .ttl {
    font-size: 18px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.p-voice .section01 .article .ttl .arrow {
  position: absolute;
  right: 0;
  display: inline-block;
  width: 13px;
  height: 23px;
}
.p-voice .section01 .article .ttl .arrow::before, .p-voice .section01 .article .ttl .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 13px;
  height: 2px;
  border-radius: 9999px;
  background-color: #0160a3;
  -webkit-transform-origin: calc(100% - 1px) 50%;
          transform-origin: calc(100% - 1px) 50%;
}
.p-voice .section01 .article .ttl .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-voice .section01 .article .ttl .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*--------------------------------------------------
voice(single)
--------------------------------------------------*/
.p-voice-single .section01 .article {
  border: 2px solid #0160a3;
  border-radius: 30px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-voice-single .section01 .article {
    padding: 20px;
  }
}
.p-voice-single .section01 .article .heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-voice-single .section01 .article .heading {
    font-size: 18px;
  }
}
.p-voice-single .section01 .article p {
  margin-bottom: 1em;
}
.p-voice-single .section01 .article a {
  text-decoration: underline;
  color: #0160a3;
}
.p-voice-single .section01 .article a:hover {
  text-decoration: none;
}
.p-voice-single .section01 .article .profile {
  margin-top: 2em;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-voice-single .section01 .article .profile {
    padding: 20px;
  }
}

/*--------------------------------------------------
about
--------------------------------------------------*/
.p-about .section01 .technique-list > li {
  margin-bottom: 40px;
}
.p-about .section01 .ttl {
  font-size: 45px;
  font-weight: bold;
  color: #0160a3;
  border-bottom: 1px solid #0160a3;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-about .section01 .ttl {
    font-size: 18px;
  }
}
.p-about .section01 .ttl::before {
  content: "〇";
  margin-right: 20px;
}
.p-about .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-about .section01 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-about .section01 .flex .img {
  width: 35.5555555556%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about .section01 .flex .img {
    width: auto;
  }
}
.p-about .section01 .flex .img img {
  border-radius: 30px;
}

.p-about .section02 {
  padding: 0;
}
.p-about .section02 .catch {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #0160a3;
}
@media screen and (max-width: 768px) {
  .p-about .section02 .catch {
    font-size: 18px;
  }
}
.p-about .section02 .features-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  background-color: #fcfcfc;
  padding: 150px 4%;
}
@media screen and (max-width: 768px) {
  .p-about .section02 .features-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 50px 4%;
  }
}
.p-about .section02 .features-list > li .en {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  color: #0160a3;
  border-bottom: 1px solid #0160a3;
}
@media screen and (max-width: 768px) {
  .p-about .section02 .features-list > li .en {
    font-size: 16px;
  }
}
.p-about .section02 .features-list > li .ttl {
  font-size: 45px;
  font-weight: bold;
  color: #0160a3;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-about .section02 .features-list > li .ttl {
    font-size: 18px;
  }
}
.p-about .section02 .features-list > li .img {
  width: 35.5555555556%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about .section02 .features-list > li .img {
    width: auto;
  }
}
.p-about .section02 .features-list > li .img img {
  border-radius: 30px;
}
.p-about .section02 .features-list > li:nth-child(even) {
  background-color: #fff;
}
.p-about .section02 .features-list > li:nth-child(even) .img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
@media screen and (max-width: 768px) {
  .p-about .section02 .features-list > li:nth-child(even) .img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.p-about .section03 .flow-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  border: 2px solid #e7eaee;
  border-radius: 30px;
  margin-bottom: 100px;
  padding: 60px 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-about .section03 .flow-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    padding: 20px;
  }
}
.p-about .section03 .flow-list > li::before {
  content: "";
  background-color: #0160a3;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 60px;
  left: 60px;
}
@media screen and (max-width: 768px) {
  .p-about .section03 .flow-list > li::before {
    display: none;
  }
}
.p-about .section03 .flow-list > li::after {
  content: "";
  background-color: #0160a3;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: -60px;
  left: 53px;
}
@media screen and (max-width: 768px) {
  .p-about .section03 .flow-list > li::after {
    display: none;
  }
}
.p-about .section03 .flow-list > li .ttl {
  background-color: #fff;
  font-size: 35px;
  font-weight: bold;
  color: #0160a3;
  padding: 0 20px;
  position: absolute;
  top: -30px;
  left: -20px;
}
@media screen and (max-width: 768px) {
  .p-about .section03 .flow-list > li .ttl {
    font-size: 18px;
    padding: 0;
    position: unset;
  }
}
.p-about .section03 .flow-list > li .img {
  width: 31.25%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-about .section03 .flow-list > li .img {
    width: auto;
  }
}
.p-about .section03 .flow-list > li .img img {
  border-radius: 30px;
}
.p-about .section03 .flow-list > li a {
  font-weight: bold;
  color: #0160a3;
}

/*--------------------------------------------------
target
--------------------------------------------------*/
.p-target .section01 {
  padding-left: 0;
}
.p-target .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-target .section01 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-target .section01 .flex .img {
  width: 49.2%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-target .section01 .flex .img {
    width: auto;
  }
}
.p-target .section01 .flex .txtarea {
  padding: 0 4%;
}
.p-target .section01 .cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-target .section01 .cat-list {
    gap: 20px;
    margin: 20px 0;
  }
}
.p-target .section01 .cat-list > li {
  background-color: #fff7ed;
  border: 1px solid #d14600;
  color: #d14600;
  border-radius: 99px;
  font-size: 30px;
  text-align: center;
  padding: 3px 30px;
}
@media screen and (max-width: 768px) {
  .p-target .section01 .cat-list > li {
    font-size: 1em;
    padding: 3px 10px;
  }
}

.p-target .section02 {
  padding-right: 0;
  padding-top: 0;
}
.p-target .section02 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-target .section02 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-target .section02 .flex .img {
  text-align: right;
  width: 49.2%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .p-target .section02 .flex .img {
    width: auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.p-target .section02 .cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-target .section02 .cat-list {
    gap: 20px;
    margin: 20px 0;
  }
}
.p-target .section02 .cat-list > li {
  background-color: #f0f8ff;
  border: 1px solid #0160a3;
  border-radius: 99px;
  color: #0160a3;
  font-size: 30px;
  text-align: center;
  padding: 3px 30px;
}
@media screen and (max-width: 768px) {
  .p-target .section02 .cat-list > li {
    font-size: 1em;
    padding: 3px 10px;
  }
}

.p-target .section03 {
  background-color: #fcfcfc;
  padding-top: 0;
}
.p-target .section03 .target-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 1.1111111111%;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-target .section03 .target-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-target .section03 .target-list .item {
  background-color: #fff;
  border-radius: 20px;
  width: 18.8888888889%;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-target .section03 .target-list .item {
    width: auto;
    padding: 20px;
  }
}
.p-target .section03 .target-list .item .ttl {
  display: inline-block;
  vertical-align: middle;
  background-color: #0160a3;
  border-radius: 6px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1em;
  padding: 2px 20px;
}
@media screen and (max-width: 768px) {
  .p-target .section03 .target-list .item .ttl {
    font-size: 18px;
  }
}
.p-target .section03 .target-list .item .list > li::before {
  content: "●";
  color: #0160a3;
  margin-right: 10px;
}

.p-target .section04 {
  padding-top: 0;
}
.p-target .section04 .about-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 3.3333333333%;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-target .section04 .about-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }
}
.p-target .section04 .about-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 2px solid #0160a3;
  border-radius: 20px;
  text-align: center;
  width: 31.1111111111%;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-target .section04 .about-list .item {
    width: auto;
    padding: 20px;
  }
}
.p-target .section04 .about-list .item .ttl {
  display: inline-block;
  vertical-align: middle;
  background-color: #0160a3;
  border-radius: 6px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  padding: 2px 20px;
}
@media screen and (max-width: 768px) {
  .p-target .section04 .about-list .item .ttl {
    font-size: 18px;
  }
}
.p-target .section04 .about-list .item .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 20px;
}
.p-target .section04 .about-list .item .list > li::before {
  content: "●";
  color: #0160a3;
  margin-right: 10px;
}
.p-target .section04 .about-list .item .img {
  text-align: center;
  margin-top: auto;
}

.p-target .section05 {
  background-color: #fcfcfc;
  padding-top: 0;
}
.p-target .section05 .effect-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 1.1111111111%;
  margin: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-target .section05 .effect-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-target .section05 .effect-list .item {
  background-color: #fff;
  border-radius: 20px;
  width: 18.8888888889%;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-target .section05 .effect-list .item {
    width: auto;
    padding: 20px;
  }
}
.p-target .section05 .effect-list .item .ttl {
  display: inline-block;
  vertical-align: middle;
  background-color: #0160a3;
  border-radius: 6px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1em;
  padding: 2px 20px;
}
@media screen and (max-width: 768px) {
  .p-target .section05 .effect-list .item .ttl {
    font-size: 18px;
  }
}
.p-target .section05 .effect-list .item .list > li::before {
  content: "●";
  color: #0160a3;
  margin-right: 10px;
}

/*--------------------------------------------------
fee
--------------------------------------------------*/
.p-fee .section01 .list {
  background-color: #fff;
  border-radius: 30px;
  margin: 40px 0;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-fee .section01 .list {
    margin: 20px 0;
    padding: 20px;
  }
}
.p-fee .section01 .list > li {
  border-bottom: 1px dashed #deecfa;
  padding: 15px 0;
}
.p-fee .section01 .list > li::before {
  content: "●";
  color: #0160a3;
  margin-right: 10px;
}
.p-fee .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-fee .section01 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-fee .section02 {
  padding-top: 0;
}
.p-fee .section02 .ttl {
  font-size: 30px;
  font-weight: bold;
  color: #0160a3;
}
@media screen and (max-width: 768px) {
  .p-fee .section02 .ttl {
    font-size: 18px;
  }
}
.p-fee .section02 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin: 60px 0;
}
@media screen and (max-width: 768px) {
  .p-fee .section02 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }
}
.p-fee .section02 .flex .item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-fee .section02 .flex .item {
    width: auto;
  }
}
.p-fee .section02 table tr {
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}
.p-fee .section02 table th, .p-fee .section02 table td {
  width: 50%;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-fee .section02 table th, .p-fee .section02 table td {
    padding: 10px;
  }
}
.p-fee .section02 table th {
  border-right: 1px solid #d2d2d2;
  color: #0160a3;
  text-align: left;
  vertical-align: top;
}

.p-fee .section03 {
  padding-top: 0;
}
.p-fee .section03 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin: 60px 0;
}
@media screen and (max-width: 768px) {
  .p-fee .section03 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }
}
.p-fee .section03 .flex .item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-fee .section03 .flex .item {
    width: auto;
  }
}
.p-fee .section03 table tr {
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}
.p-fee .section03 table th, .p-fee .section03 table td {
  width: 50%;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-fee .section03 table th, .p-fee .section03 table td {
    padding: 20px;
  }
}
.p-fee .section03 table th {
  border-right: 1px solid #d2d2d2;
  color: #0160a3;
  text-align: left;
  vertical-align: top;
}
.p-fee .section03 .box {
  background-color: #fcfcfc;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-fee .section03 .box {
    padding: 20px;
  }
}
.p-fee .section03 .box .ttl {
  display: inline-block;
  vertical-align: middle;
  background-color: #0160a3;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  padding: 2px 10px;
}
.p-fee .section03 .box .list > li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1em;
}
.p-fee .section03 .box .list > li::before {
  content: "●";
  color: #0160a3;
  margin-right: 10px;
}

.p-fee .section04 {
  padding-top: 0;
}
.p-fee .section04 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin: 60px 0;
}
@media screen and (max-width: 768px) {
  .p-fee .section04 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }
}
.p-fee .section04 .flex .item {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-fee .section04 .flex .item {
    width: auto;
  }
}
.p-fee .section04 table tr {
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}
.p-fee .section04 table th, .p-fee .section04 table td {
  width: 50%;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-fee .section04 table th, .p-fee .section04 table td {
    padding: 20px;
  }
}
.p-fee .section04 table th {
  border-right: 1px solid #d2d2d2;
  color: #0160a3;
  text-align: left;
  vertical-align: top;
}
.p-fee .section04 .box {
  background-color: #fcfcfc;
  padding: 30px;
}
.p-fee .section04 .box .ttl {
  display: inline-block;
  vertical-align: middle;
  background-color: #0160a3;
  border-radius: 6px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
  padding: 2px 10px;
}
.p-fee .section04 .box .list > li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1em;
}
.p-fee .section04 .box .list > li::before {
  content: "●";
  color: #0160a3;
  margin-right: 10px;
}

/*--------------------------------------------------
staff
--------------------------------------------------*/
.p-staff .section01 .staff-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-staff .section01 .staff-list .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }
}
.p-staff .section01 .img {
  width: 46.1111111111%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-staff .section01 .img {
    width: auto;
  }
}
.p-staff .section01 .img img {
  border-radius: 30px;
}
.p-staff .section01 .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-color: #fff;
  border: 2px solid #0160a3;
  border-radius: 20px;
  padding: 50px 20px;
  color: #0160a3;
  position: absolute;
  top: 40px;
  left: 40px;
}
@media screen and (max-width: 768px) {
  .p-staff .section01 .name {
    padding: 10px;
    top: 10px;
    left: 10px;
  }
}
.p-staff .section01 .name .job {
  font-size: 25px;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-staff .section01 .name .job {
    font-size: 12px;
  }
}
.p-staff .section01 .name .jp {
  font-size: 50px;
  line-height: 1.4;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-staff .section01 .name .jp {
    font-size: 18px;
  }
}
.p-staff .section01 .name .en {
  font-size: 15px;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .p-staff .section01 .name .en {
    font-size: 12px;
  }
}
.p-staff .section01 .txtarea {
  width: 50.5555555556%;
}
@media screen and (max-width: 768px) {
  .p-staff .section01 .txtarea {
    width: auto;
  }
}
.p-staff .section01 .catch {
  font-size: 45px;
  font-weight: bold;
  color: #0160a3;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-staff .section01 .catch {
    font-size: 18px;
  }
}
.p-staff .section01 .list {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px;
}
.p-staff .section01 .list > li {
  border-bottom: 1px dashed #deecfa;
  padding: 15px 0;
}
.p-staff .section01 .list > li::before {
  content: "●";
  color: #0160a3;
  margin-right: 10px;
}

/*--------------------------------------------------
faq
--------------------------------------------------*/
.p-faq .section01 dl div {
  border-bottom: 2px dashed #e4ebf1;
}
.p-faq .section01 dl dt {
  font-size: 30px;
  font-weight: bold;
  color: #0160a3;
  padding: 40px 40px 40px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 dl dt {
    font-size: 18px;
    padding: 20px 20px 20px 0;
  }
}
.p-faq .section01 dl dt:before {
  content: "Q.";
  margin-right: 10px;
}
.p-faq .section01 dl dt .arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 21px;
  height: 12px;
  margin: auto;
}
.p-faq .section01 dl dt .arrow::before, .p-faq .section01 dl dt .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 12px;
  border-radius: 9999px;
  background-color: #0160a3;
  -webkit-transform-origin: 50% calc(100% - 1px);
          transform-origin: 50% calc(100% - 1px);
}
.p-faq .section01 dl dt .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-faq .section01 dl dt .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-faq .section01 dl dt.is-active .arrow::before, .p-faq .section01 dl dt.is-active .arrow::after {
  -webkit-transform-origin: 50% 1px;
          transform-origin: 50% 1px;
}
.p-faq .section01 dl dd {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 dl dd {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------
contact
--------------------------------------------------*/
.p-contact .section01 .tel-box {
  background-color: #ccc;
  background: url(../img/contact/contact-tel-bg.jpg) no-repeat center/cover;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 100px;
  padding: 60px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box {
    margin-bottom: 50px;
    padding: 20px;
  }
}
.p-contact .section01 .tel-box .tel-txt {
  font-size: 30px;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box .tel-txt {
    font-size: 18px;
  }
}
.p-contact .section01 .tel-box .tel-ttl {
  display: inline-block;
  vertical-align: middle;
  background-color: #0160a3;
  border-radius: 20px;
  color: #fff;
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  max-width: 710px;
  width: 100%;
  margin: 0 auto;
  padding: 2px 4px;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box .tel-ttl {
    font-size: 18px;
  }
}
.p-contact .section01 .tel-box .tel-num {
  font-size: 84px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box .tel-num {
    font-size: 28px;
  }
}
.p-contact .section01 .tel-box .tel-num::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  margin-right: 20px;
  background: url(../img/contact/ico-tel-white.svg) no-repeat center/contain;
}

/*--------------------------------------------------
news(archive)
--------------------------------------------------*/
.p-news .section01 .article-list {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-news .section01 .article-list {
    margin-bottom: 50px;
  }
}
.p-news .section01 .article-list .article {
  border: 1px solid #cfcfcf;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 30px;
}
.p-news .section01 .article-list .article a {
  display: block;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-news .section01 .article-list .article a {
    padding: 20px;
  }
}
.p-news .section01 .article-list .article-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-news .section01 .article-list .article-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.p-news .section01 .article-list .time {
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-news .section01 .article-list .cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.p-news .section01 .article-list .cat-list > li {
  border: 1px solid #000;
  border-radius: 20px;
  font-size: 12px;
  text-align: center;
  padding: 3px 15px;
}

/*--------------------------------------------------
news(single)
--------------------------------------------------*/
.p-news-single .section01 .article {
  border: 2px solid #0160a3;
  border-radius: 30px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-news-single .section01 .article {
    padding: 20px;
  }
}
.p-news-single .section01 .article .heading {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-news-single .section01 .article .heading {
    font-size: 18px;
  }
}
.p-news-single .section01 .article .time {
  display: block;
  text-align: right;
  margin-bottom: 1em;
}
.p-news-single .section01 .article p {
  margin-bottom: 1em;
}
.p-news-single .section01 .article a {
  text-decoration: underline;
  color: #0160a3;
}
.p-news-single .section01 .article a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */