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

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

/*--------------------------------------------------
Media Query
--------------------------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    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: "小塚ゴシック Pr6N", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", KozGoStd, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1em;
  line-height: 1.6;
  color: #202020;
  position: relative;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.8125rem;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.overlay.is-active {
  width: 100%;
  height: 100%;
  opacity: 1;
}

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

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

/*--------------------------------------------------
animation
--------------------------------------------------*/
/*@keyframes test {
  0% {
  }
  100% {
  }
}*/
/*==================================================
Layout
==================================================*/
/*--------------------------------------------------
Header
--------------------------------------------------*/
.header {
  background-color: #fff;
  width: 100%;
  padding: 15px 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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header .logo img {
    max-height: 40px;
  }
}
.header .nav-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.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: 960px) {
  .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(16px, 1.6vw, 18px);
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header .gnav .gnav-list > li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .gnav .gnav-list > li a:hover {
  color: #0078ff;
}
.header .hmenu-btn {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 999;
  cursor: pointer;
}
.header .hmenu-btn > span {
  display: block;
  background-color: #0078ff;
  width: 30px;
  height: 4px;
  margin: auto;
  position: absolute;
  top: 9px;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .hmenu-btn > span:nth-child(2) {
  top: 19px;
}
.header .hmenu-btn > span:nth-child(3) {
  top: 29px;
}
.header .hmenu-btn.is-active span {
  background-color: #fff;
}
.header .hmenu-btn.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}
.header .hmenu-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header .hmenu-btn.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}
.header .hmenu {
  background-color: #0078ff;
  padding: 100px 4%;
  max-width: 100%;
  width: 600px;
  height: 100vh;
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  -webkit-transform: translate(600px);
          transform: translate(600px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .header .hmenu {
    padding: 60px 4%;
  }
}
.header .hmenu.is-active {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.header .hmenu .hmenu-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.header .hmenu .hmenu-nav {
  background-color: #fff;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  padding: 15px 4%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header .hmenu .hmenu-nav .hmenu-list {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
.header .hmenu .hmenu-nav .hmenu-list > li {
  border-bottom: 1px solid #d0d0d0;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header .hmenu .hmenu-nav .hmenu-list > li {
    font-size: 13px;
  }
}
.header .hmenu .hmenu-nav .hmenu-list > li:last-child {
  border-bottom: 0;
}
.header .hmenu .hmenu-nav .hmenu-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: 30px 16px 30px 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header .hmenu .hmenu-nav .hmenu-list > li a {
    padding: 15px 15px 15px 10px;
  }
}
.header .hmenu .hmenu-nav .hmenu-list > li a::before {
  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: #0078ff;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  width: 20px;
  height: 20px;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  .header .hmenu .hmenu-nav .hmenu-list > li a::before {
    font-size: 10px;
    width: 14px;
    height: 14px;
  }
}
.header .hmenu .hmenu-nav .hmenu-list > li a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Footer
--------------------------------------------------*/
.footer {
  background-color: #0078ff;
  color: #fff;
  padding: 60px 4%;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 13px;
    padding: 50px 4% 20px;
  }
}
.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: 1700px;
  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;
    margin-bottom: 25px;
  }
}
.footer .address {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .footer .address {
    font-size: 13px;
    text-align: center;
    margin-bottom: 2em;
  }
}
.footer .name {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .footer .name {
    font-size: 15px;
    margin-bottom: 1em;
  }
}
.footer .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .footer .nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .nav .nav-list > li {
  font-size: 15px;
  margin-bottom: 20px;
  padding-left: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list > li {
    font-size: 13px;
    margin-bottom: 15px;
    padding: 0 1em;
  }
}
.footer .nav .nav-list > li::before {
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 8px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list > li::before {
    clip-path: none;
    width: 1px;
    height: 1em;
    margin: auto;
    top: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list > li:first-child::before {
    display: none;
  }
}
.footer .nav .nav-list > li a:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    text-align: center;
  }
}

.pagetop {
  position: fixed;
  z-index: 9;
  right: 30px;
  bottom: 30px;
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 10px;
    bottom: 15px;
  }
}

/*--------------------------------------------------
Main
--------------------------------------------------*/
.pagehead {
  height: 250px;
  padding: 0 4%;
}
@media screen and (max-width: 768px) {
  .pagehead {
    height: 110px;
  }
}
.pagehead .inner {
  max-width: 1800px;
  height: 100%;
  margin: 0 auto;
}
.pagehead .box {
  background-color: #ccc;
  background-image: url(../img/common/pagehead.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  height: 100%;
  padding: 20px;
  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;
}
.pagehead .pagettl {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl {
    font-size: 24px;
  }
}
.pagehead .pagettl .small {
  display: block;
  font-size: 21px;
  color: #0078ff;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl .small {
    font-size: 13px;
  }
}

.breadcrumb {
  padding: 10px 4% 80px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-bottom: 30px;
  }
}
.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: 15px;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb-list > li {
    font-size: 13px;
  }
}
.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: 0 4% 150px;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding: 0 4% 75px;
  }
}
.c-section:last-child {
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .c-section:last-child {
    padding-bottom: 75px;
  }
}

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

.c-heading {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 36px;
  font-weight: bold;
  border-bottom: 1px solid #c1c1c1;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}
.c-heading::before {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  margin: auto;
  background-color: #0078ff;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-heading::before {
    width: 75px;
    height: 3px;
  }
}

.c-subheading {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  background-color: #e7f3fb;
  border-radius: 10px;
  font-size: 21px;
  font-weight: bold;
  color: #0078ff;
  margin-bottom: 30px;
  padding: 20px 30px 20px 54px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-subheading {
    font-size: 15px;
    margin-bottom: 15px;
    padding: 10px 20px 10px 30px;
  }
}
.c-subheading::before {
  content: "";
  display: inline-block;
  background: url(../img/common/ttl-ico.png) no-repeat center/contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 26px;
  left: 28px;
}
@media screen and (max-width: 768px) {
  .c-subheading::before {
    width: 12px;
    height: 12px;
    top: 16px;
    left: 13px;
  }
}

.c-tbl-wrap table tr:nth-of-type(odd) {
  background-color: #f4f4f4;
}
.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 {
    background-color: #f4f4f4;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .c-tbl-wrap table td {
    background-color: #fff;
  }
}
.c-tbl-wrap table a {
  text-decoration: underline;
  color: #0078ff;
}
.c-tbl-wrap table a:hover {
  text-decoration: none;
}

.c-btn {
  max-width: 320px;
  width: 100%;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 225px;
  }
}
.c-btn a {
  display: block;
  background-color: #0078ff;
  background: -webkit-gradient(linear, left top, right top, from(#004491), to(#0078ff));
  background: linear-gradient(to right, #004491, #0078ff);
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.c-btn a::after {
  content: "→";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .c-btn a::after {
    font-size: 13px;
    right: 15px;
  }
}
.c-btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Form
--------------------------------------------------*/
.form .tbl-wrap {
  margin: 40px 0;
}
.form table tr:nth-of-type(odd) {
  background-color: #f4f4f4;
}
.form table th, .form table td {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .form table th, .form table td {
    display: block;
    padding: 10px;
  }
}
.form table th {
  text-align: left;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .form table th {
    background-color: #f4f4f4;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .form table td {
    background-color: #fff;
  }
}
.form .required {
  display: inline-block;
  vertical-align: middle;
  background-color: #ea4335;
  border-radius: 99px;
  color: #fff;
  font-size: 9px;
  font-weight: normal;
  margin-left: 1em;
  padding: 2px 8px;
}
.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 #c1c1c1;
  max-width: 300px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form [type=number] {
  background-color: #fff;
  border: 1px solid #c1c1c1;
  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 #c1c1c1;
  max-width: 700px;
  width: 100%;
  height: 160px;
  padding: 10px;
}
.form ::-webkit-input-placeholder {
  color: #cdcdcd;
}
.form ::-moz-placeholder {
  color: #cdcdcd;
}
.form :-ms-input-placeholder {
  color: #cdcdcd;
}
.form ::-ms-input-placeholder {
  color: #cdcdcd;
}
.form ::placeholder {
  color: #cdcdcd;
}
.form .privacy {
  border: 1px solid #c1c1c1;
  height: 320px;
  margin: 2em 0;
  padding: 40px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .form .privacy {
    height: 200px;
    padding: 20px;
  }
}
.form .privacy .privacy-head {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 1em;
}
.form .privacy dl {
  margin: 2em 0;
}
.form .privacy dl div {
  margin-bottom: 2em;
}
.form .privacy dl dt {
  font-weight: bold;
  color: #0078ff;
}
.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: #0078ff;
  background: -webkit-gradient(linear, left top, right top, from(#004491), to(#0078ff));
  background: linear-gradient(to right, #004491, #0078ff);
  border: none;
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form .btn button, .form .btn input {
    font-size: 13px;
    padding: 15px;
  }
}
.form .btn button::after, .form .btn input::after {
  content: "→";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
}
.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: #fff;
  border: 1px solid #c1c1c1;
  border-radius: 6px;
  font-size: 15px;
  min-width: 40px;
  min-height: 40px;
  -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: #002d60;
    color: #fff;
    font-weight: bold;
  }
}
.pagination .pagination-page {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border: 1px solid #c1c1c1;
  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 {
  background: url(../img/top/top-bg01.jpg) no-repeat top center, url(../img/top/top-bg03.jpg) no-repeat bottom center;
}

.p-top .hero {
  text-align: center;
  padding: 0 4%;
}
.p-top .hero img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top .hero img {
    border-radius: 10px;
  }
}
.p-top .hero .slick-dots li {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 5px;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}
.p-top .hero .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 40px;
  height: 5px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.p-top .hero .slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 5px;
  content: "";
  text-align: center;
  opacity: 1;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #d0d0d0;
}
.p-top .hero .slick-dots li.slick-active button:before {
  background-color: #0078ff;
  width: 40px;
  height: 5px;
}

.p-top .section01 {
  padding: 150px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section01 {
    padding: 50px 4% 75px;
  }
}
.p-top .section01 .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.p-top .section01 .heading {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading {
    font-size: 30px;
  }
}
.p-top .section01 .heading .small {
  display: block;
  font-size: 21px;
  color: #0078ff;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading .small {
    font-size: 13px;
  }
}
.p-top .section01 .lead {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .lead {
    text-align: left;
    margin-bottom: 20px;
  }
}
.p-top .section01 .service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px 8.3333333333%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .service-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.p-top .section01 .service-list > li {
  width: 66.6666666667%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .service-list > li {
    width: auto;
  }
}
.p-top .section01 .service-list > li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top .section01 .service-list > li a:hover {
  opacity: 0.7;
}
.p-top .section01 .service-list > li img {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .service-list > li img {
    border-radius: 10px;
  }
}
.p-top .section01 .service-list > li .cap {
  background-color: #fff;
  border-radius: 0 20px 0 0;
  font-size: 24px;
  color: #0078ff;
  max-width: 450px;
  width: 100%;
  margin-top: 20px;
  padding: 20px 20px 6px 6px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .service-list > li .cap {
    border-radius: 0 10px 0 0;
    font-size: 14px;
    width: 225px;
    padding: 15px 15px 6px 6px;
  }
}
.p-top .section01 .service-list > li .cap::before {
  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: #0078ff;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .service-list > li .cap::before {
    font-size: 10px;
    width: 14px;
    height: 14px;
  }
}
.p-top .section01 .btn {
  max-width: 320px;
  width: 100%;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .btn {
    max-width: 220px;
  }
}
.p-top .section01 .btn a {
  display: block;
  background-color: #0078ff;
  background: -webkit-gradient(linear, left top, right top, from(#004491), to(#0078ff));
  background: linear-gradient(to right, #004491, #0078ff);
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .btn a {
    font-size: 14px;
    padding: 15px;
  }
}
.p-top .section01 .btn a::after {
  content: "→";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .btn a::after {
    font-size: 18px;
  }
}
.p-top .section01 .btn a:hover {
  opacity: 0.7;
}

.p-top .section02 {
  background-color: #e5f3fb;
  background: url(../img/top/top-bg02.jpg) no-repeat center/cover;
  padding: 150px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 {
    padding: 75px 4%;
  }
}
.p-top .section02 .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.p-top .section02 .heading {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading {
    font-size: 30px;
  }
}
.p-top .section02 .heading .small {
  display: block;
  font-size: 21px;
  color: #0078ff;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading .small {
    font-size: 13px;
  }
}
.p-top .section02 .product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px 5%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .product-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
  }
}
.p-top .section02 .product-list > li {
  max-width: 380px;
  width: 31.6666666667%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .product-list > li {
    width: auto;
    margin: 0 auto;
  }
}
.p-top .section02 .product-list > li a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top .section02 .product-list > li a:hover {
  opacity: 0.7;
}
.p-top .section02 .product-list > li img {
  border-radius: 20px;
  overflow: hidden;
}
.p-top .section02 .product-list > li .cap {
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .product-list > li .cap {
    margin-top: 1em;
  }
}
.p-top .section02 .btn {
  max-width: 320px;
  width: 100%;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn {
    max-width: 220px;
  }
}
.p-top .section02 .btn a {
  display: block;
  background-color: #0078ff;
  background: -webkit-gradient(linear, left top, right top, from(#004491), to(#0078ff));
  background: linear-gradient(to right, #004491, #0078ff);
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn a {
    font-size: 14px;
    padding: 15px;
  }
}
.p-top .section02 .btn a::after {
  content: "→";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn a::after {
    font-size: 18px;
  }
}
.p-top .section02 .btn a:hover {
  opacity: 0.7;
}

.p-top .section03 {
  padding: 150px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section03 {
    padding: 75px 4%;
  }
}
.p-top .section03 .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.p-top .section03 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-top .section03 .head {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-top .section03 .heading {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading {
    font-size: 30px;
    margin-bottom: 0;
  }
}
.p-top .section03 .heading .small {
  display: block;
  font-size: 21px;
  color: #0078ff;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading .small {
    font-size: 13px;
  }
}
.p-top .section03 .btn {
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .btn {
    max-width: 145px;
  }
}
.p-top .section03 .btn a {
  display: block;
  background-color: #0078ff;
  background: -webkit-gradient(linear, left top, right top, from(#004491), to(#0078ff));
  background: linear-gradient(to right, #004491, #0078ff);
  border-radius: 99px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 15px 30px 15px 15px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .btn a {
    font-size: 12px;
    padding: 15px;
  }
}
.p-top .section03 .btn a::after {
  content: "→";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .btn a::after {
    font-size: 14px;
    right: 10px;
  }
}
.p-top .section03 .btn a:hover {
  opacity: 0.7;
}
.p-top .section03 .article-list {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.p-top .section03 .article {
  border-bottom: 1px solid #d0d0d0;
}
.p-top .section03 .article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding: 40px 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .article a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    padding: 15px 20px 15px 10px;
  }
}
.p-top .section03 .article a::before {
  content: "";
  background-color: #202020;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .article a::before {
    top: 0;
    bottom: 0;
    right: 5px;
  }
}
.p-top .section03 .article .ttl {
  text-decoration: underline;
  color: #0078ff;
}
.p-top .section03 .article .ttl:hover {
  text-decoration: none;
}

.p-top .section04 {
  padding: 0 4% 150px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 {
    padding: 0 4% 75px;
  }
}
.p-top .section04 .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.p-top .section04 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px 5%;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}
.p-top .section04 .list > li {
  border-radius: 20px;
  max-width: 380px;
  width: 31.6666666667%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list > li {
    border-radius: 10px;
    width: auto;
    margin: 0 auto;
  }
}
.p-top .section04 .list > li a {
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top .section04 .list > li a::before {
  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: 20px 0 0 0;
  font-size: 24px;
  color: #0078ff;
  width: 50px;
  height: 50px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list > li a::before {
    font-size: 23px;
    width: 45px;
    height: 45px;
  }
}
.p-top .section04 .list > li a::after {
  content: "";
  background-color: rgba(0, 45, 96, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-top .section04 .list > li a:hover {
  opacity: 0.7;
}
.p-top .section04 .list > li img {
  border-radius: 20px;
  overflow: hidden;
}
.p-top .section04 .list > li .ttl {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 32px;
  text-align: center;
  margin: auto;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list > li .ttl {
    font-size: 30px;
  }
}
.p-top .section04 .list > li .ttl .small {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list > li .ttl .small {
    font-size: 15px;
  }
}

/*--------------------------------------------------
service
--------------------------------------------------*/
.p-service .section01 .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }
}
.p-service .section01 .intro .catch {
  font-size: 24px;
  font-weight: bold;
  color: #0078ff;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .intro .catch {
    font-size: 15px;
  }
}
.p-service .section01 .intro .img {
  width: 33.3333333333%;
  -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-service .section01 .intro .img {
    width: auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.p-service .section01 .intro .img img {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .intro .img img {
    border-radius: 10px;
  }
}
.p-service .section01 .subsection {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .subsection {
    margin-bottom: 50px;
  }
}
.p-service .section01 .subsection .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .subsection .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.p-service .section01 .subsection .img {
  width: 33.3333333333%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .subsection .img {
    width: auto;
  }
}
.p-service .section01 .subsection .img img {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .subsection .img img {
    border-radius: 10px;
  }
}
.p-service .section01 .subsection .img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .subsection .img-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
  }
}
.p-service .section01 .subsection .img-list > li {
  width: 22.5%;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .subsection .img-list > li {
    width: 46.4788732394%;
  }
}
.p-service .section01 .subsection .img-list > li img {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-service .section01 .subsection .img-list > li img {
    border-radius: 10px;
  }
}

/*--------------------------------------------------
feature
--------------------------------------------------*/
.p-feature .section01 .catch {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-feature .section01 .catch {
    font-size: 15px;
  }
}
.p-feature .section01 .feature-list {
  margin: 40px 0 60px;
}
@media screen and (max-width: 768px) {
  .p-feature .section01 .feature-list {
    margin: 20px 0 40px;
  }
}
.p-feature .section01 .feature-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  background-color: #e7f3fb;
  border-radius: 30px;
  margin-bottom: 50px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-feature .section01 .feature-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    padding: 25px;
  }
}
.p-feature .section01 .feature-list > li .img {
  width: 33.3333333333%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-feature .section01 .feature-list > li .img {
    width: auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.p-feature .section01 .feature-list > li .img img {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-feature .section01 .feature-list > li .img img {
    border-radius: 10px;
  }
}
.p-feature .section01 .feature-list > li .num {
  width: 130px;
  background-color: #0078ff;
  background: -webkit-gradient(linear, left top, right top, from(#004491), to(#0078ff));
  background: linear-gradient(to right, #004491, #0078ff);
  border-radius: 99px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 30px;
  padding: 3px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-feature .section01 .feature-list > li .num {
    font-size: 14px;
    width: 100px;
    margin-bottom: 15px;
  }
}
.p-feature .section01 .feature-list > li .ttl {
  font-size: 21px;
  font-weight: bold;
  color: #0078ff;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-feature .section01 .feature-list > li .ttl {
    font-size: 15px;
  }
}

/*--------------------------------------------------
product(archive)
--------------------------------------------------*/
.p-product .section01 .catalog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin: 40px 0 100px;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .catalog-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
    margin: 20px 0 50px;
  }
}
.p-product .section01 .catalog-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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #0078ff;
  border-radius: 20px;
  font-weight: bold;
  max-width: 570px;
  width: 47.5%;
  padding: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .catalog-list > li {
    width: auto;
    margin: 0 auto;
    padding: 25px;
  }
}
.p-product .section01 .catalog-list > li .flex {
  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: 40px;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .catalog-list > li .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.p-product .section01 .catalog-list > li .flex .img {
  width: 34.5814977974%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .catalog-list > li .flex .img {
    width: 35.2112676056%;
  }
}
.p-product .section01 .catalog-list > li .catalog-btn {
  max-width: 256px;
  width: 100%;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .catalog-list > li .catalog-btn {
    max-width: 265px;
  }
}
.p-product .section01 .catalog-list > li .catalog-btn a {
  display: block;
  background-color: #0078ff;
  background: -webkit-gradient(linear, left top, right top, from(#004491), to(#0078ff));
  background: linear-gradient(to right, #004491, #0078ff);
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .catalog-list > li .catalog-btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-product .section01 .catalog-list > li .catalog-btn a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url(../img/product/product-ico-catalog.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .catalog-list > li .catalog-btn a::before {
    width: 17px;
    height: 17px;
  }
}
.p-product .section01 .catalog-list > li .catalog-btn a:hover {
  opacity: 0.7;
}
.p-product .section01 .catalog-list > li .contact-btn {
  max-width: 350px;
  width: 100%;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .catalog-list > li .contact-btn {
    max-width: 265px;
  }
}
.p-product .section01 .catalog-list > li .contact-btn a {
  display: block;
  background-color: #f48a0c;
  background: -webkit-gradient(linear, left top, right top, from(#e35804), to(#f48a0c));
  background: linear-gradient(to right, #e35804, #f48a0c);
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 26px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .catalog-list > li .contact-btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-product .section01 .catalog-list > li .contact-btn a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background: url(../img/product/product-ico-mail.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .catalog-list > li .contact-btn a::before {
    width: 17px;
    height: 17px;
  }
}
.p-product .section01 .catalog-list > li .contact-btn a:hover {
  opacity: 0.7;
}
.p-product .section01 .subsection .cat-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border: 1px solid #0078ff;
  border-radius: 10px;
  font-size: 18px;
  margin-bottom: 20px;
  padding: 15px 25px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .subsection .cat-ttl {
    gap: 20px;
    font-size: 13px;
    margin-bottom: 10px;
    padding: 10px 45px 10px 13px;
  }
}
.p-product .section01 .subsection .cat-ttl::before {
  content: "";
  background-color: #0078ff;
  width: 29px;
  height: 3px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .subsection .cat-ttl::before {
    width: 17px;
    height: 2px;
    right: 14px;
  }
}
.p-product .section01 .subsection .cat-ttl::after {
  content: "";
  background-color: #0078ff;
  width: 3px;
  height: 29px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 43px;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .subsection .cat-ttl::after {
    width: 2px;
    height: 17px;
    right: 22px;
  }
}
.p-product .section01 .subsection .cat-ttl .img {
  width: 100px;
  height: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .subsection .cat-ttl .img {
    width: 114px;
  }
}
.p-product .section01 .subsection .cat-ttl .img img {
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product .section01 .subsection .cat-ttl.is-active::after {
  display: none;
}
.p-product .section01 .subsection .list {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .subsection .list {
    margin-bottom: 50px;
  }
}
.p-product .section01 .subsection .list > li {
  border-bottom: 1px solid #c3c3c3;
}
.p-product .section01 .subsection .list > li a {
  display: block;
  font-weight: bold;
  padding: 30px 76px 30px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .subsection .list > li a {
    padding: 15px;
  }
}
.p-product .section01 .subsection .list > li a::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  background-color: #0078ff;
  width: 4px;
  height: 22px;
  margin-right: 15px;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .subsection .list > li a::before {
    width: 3px;
    height: 17px;
    margin-right: 10px;
  }
}
.p-product .section01 .subsection .list > li 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: #0078ff;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  width: 24px;
  height: 24px;
  margin: auto;
  padding: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 26px;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .subsection .list > li a::after {
    font-size: 10px;
    width: 16px;
    height: 16px;
    right: 10px;
  }
}

/*--------------------------------------------------
product(category)
--------------------------------------------------*/
.p-product .section01 .tbl-wrap {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .tbl-wrap {
    margin-bottom: 40px;
  }
}
.p-product .section01 table thead th:first-child {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .p-product .section01 table thead th:first-child {
    width: 100px;
  }
}
.p-product .section01 table thead th:last-child {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .p-product .section01 table thead th:last-child {
    width: 100px;
  }
}
.p-product .section01 table th, .p-product .section01 table td {
  border: 1px solid #c1c1c1;
  padding: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-product .section01 table th, .p-product .section01 table td {
    padding: 10px;
  }
}
.p-product .section01 table th {
  background-color: #e7f3fb;
  text-align: center;
}
.p-product .section01 .img {
  text-align: center;
}
.p-product .section01 .detail-btn {
  max-width: 160px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .detail-btn {
    max-width: 70px;
  }
}
.p-product .section01 .detail-btn a {
  display: block;
  background-color: #f48a0c;
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-product .section01 .detail-btn a {
    font-size: 13px;
    padding: 5px;
  }
}
.p-product .section01 .detail-btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
product(single)
--------------------------------------------------*/
.p-product-s .section01 .subsection {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .subsection {
    margin-bottom: 30px;
  }
}
.p-product-s .section01 .img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 23px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .img-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    max-width: 527px;
    margin: 0 auto 25px;
  }
}
.p-product-s .section01 .img-area .img {
  text-align: center;
  width: 43.9166666667%;
  max-height: 352px;
  height: 352px;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .img-area .img {
    width: auto;
    height: auto;
  }
}
.p-product-s .section01 .img-area .thumb-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: 25px;
  width: 54.1666666667%;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .img-area .thumb-list {
    gap: 10px;
    width: auto;
  }
}
.p-product-s .section01 .img-area .thumb-list > li {
  background-color: #ddd;
  width: 30.7692307692%;
  width: 200px;
  height: 133px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .img-area .thumb-list > li {
    width: 30.985915493%;
    height: 73px;
  }
}
.p-product-s .section01 .img-area .thumb-list > li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product-s .section01 .tbl-wrap {
  overflow: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .tbl-wrap {
    margin-bottom: 25px;
  }
}
.p-product-s .section01 .tbl-wrap table th, .p-product-s .section01 .tbl-wrap table td {
  border: 1px solid #c1c1c1;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .tbl-wrap table th, .p-product-s .section01 .tbl-wrap table td {
    padding: 10px;
  }
}
.p-product-s .section01 .tbl-wrap table th {
  background-color: #e7f3fb;
}
.p-product-s .section01 .tbl-wrap02 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .tbl-wrap02 {
    margin-bottom: 30px;
  }
}
.p-product-s .section01 .tbl-wrap02 table th, .p-product-s .section01 .tbl-wrap02 table td {
  border: 1px solid #c1c1c1;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .tbl-wrap02 table th, .p-product-s .section01 .tbl-wrap02 table td {
    padding: 10px;
  }
}
.p-product-s .section01 .tbl-wrap02 table th {
  background-color: #e7f3fb;
}
.p-product-s .section01 .btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .btn-list {
    -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;
    gap: 20px;
  }
}
.p-product-s .section01 .btn {
  max-width: 320px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .btn {
    max-width: 225px;
  }
}
.p-product-s .section01 .btn a {
  display: block;
  background-color: #0078ff;
  background: -webkit-gradient(linear, left top, right top, from(#004491), to(#0078ff));
  background: linear-gradient(to right, #004491, #0078ff);
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-product-s .section01 .btn a::after {
  content: "→";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 21px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .p-product-s .section01 .btn a::after {
    font-size: 13px;
    right: 15px;
  }
}
.p-product-s .section01 .btn a:hover {
  opacity: 0.7;
}
.p-product-s .section01 .btn.contact a {
  background-color: #f48a0c;
  background: -webkit-gradient(linear, left top, right top, from(#e35804), to(#f48a0c));
  background: linear-gradient(to right, #e35804, #f48a0c);
}

/*--------------------------------------------------
company
--------------------------------------------------*/
.p-company .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-company .section01 .img {
  width: 41.6666666667%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .img {
    width: auto;
  }
}
.p-company .section01 .img img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .img img {
    border-radius: 10px;
  }
}
.p-company .section01 .name {
  text-align: right;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .name {
    margin-top: 20px;
  }
}

.p-company .section02 .box {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 24px;
  font-weight: bold;
  border: 1px solid #202020;
  margin: 40px 0;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-company .section02 .box {
    font-size: 1em;
    margin: 20px 0;
    padding: 20px;
  }
}

.p-company .section05 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .p-company .section05 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 20px 0;
  }
}
.p-company .section05 .map {
  width: 47.5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-company .section05 .map {
    width: auto;
  }
}
.p-company .section05 .map iframe {
  border-radius: 20px;
  width: 100%;
  height: 380px;
}
@media screen and (max-width: 768px) {
  .p-company .section05 .map iframe {
    border-radius: 10px;
    height: 240px;
  }
}
.p-company .section05 .img {
  width: 47.5%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-company .section05 .img {
    width: auto;
  }
}
.p-company .section05 .img img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-company .section05 .img img {
    border-radius: 10px;
    width: 100%;
  }
}

/*--------------------------------------------------
recruit
--------------------------------------------------*/
.p-recruit .section01 .txt01 {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .txt01 {
    font-size: 21px;
  }
}
.p-recruit .section01 .txt01 span {
  color: #ea4335;
  text-decoration: underline;
}
.p-recruit .section01 .txt02 {
  font-weight: bold;
  text-align: center;
}
.p-recruit .section01 .box {
  background-color: #e7f3fb;
  background: #e7f3fb url(../img/recruit/recruit-box-bg.jpg) no-repeat center/cover;
  border-radius: 30px;
  margin-top: 40px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .box {
    border-radius: 20px;
    margin-top: 20px;
    padding: 25px;
  }
}
.p-recruit .section01 .box .img {
  margin-top: 25px;
}
.p-recruit .section01 .box .img img {
  border-radius: 10px;
}

.p-recruit .section02 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-recruit .section02 .flex .catch {
  font-size: 21px;
  font-weight: bold;
  color: #0078ff;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .flex .catch {
    font-size: 15px;
  }
}
.p-recruit .section02 .flex .img {
  width: 33.3333333333%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .flex .img {
    width: auto;
  }
}
.p-recruit .section02 .flex .img img {
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .flex .img img {
    border-radius: 10px;
  }
}

.p-recruit .section03 .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 .tab-list {
    gap: 10px;
    margin-bottom: 25px;
  }
}
.p-recruit .section03 .tab-list > li {
  border: 1px solid #002d60;
  border-radius: 10px;
  color: #002d60;
  width: 19.1666666667%;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 .tab-list > li {
    width: 48.1690140845%;
    padding: 15px;
  }
}
.p-recruit .section03 .tab-list > li.is-current {
  background-color: #002d60;
  color: #fff;
  cursor: auto;
}
.p-recruit .section03 .disnon {
  display: none;
}
.p-recruit .section03 .tbl-wrap {
  margin-bottom: 40px;
}
.p-recruit .section03 table tr:nth-of-type(odd) {
  background-color: #f4f4f4;
}
.p-recruit .section03 table th, .p-recruit .section03 table td {
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 table th, .p-recruit .section03 table td {
    display: block;
    padding: 10px;
  }
}
.p-recruit .section03 table th {
  text-align: left;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 table th {
    background-color: #f4f4f4;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 table td {
    background-color: #fff;
  }
}

/*--------------------------------------------------
entry
--------------------------------------------------*/
.p-entry .section01 .tel-box {
  background-color: #e7f3fb;
  border-radius: 30px;
  margin: 40px 0;
  padding: 60px 20px;
  text-align: center;
}
.p-entry .section01 .tel-box .ttl {
  font-size: 24px;
  font-weight: bold;
}
.p-entry .section01 .tel-box .tel {
  font-size: 48px;
  color: #0078ff;
}
.p-entry .section01 .tel-box .time {
  font-size: 18px;
}

/*--------------------------------------------------
sale
--------------------------------------------------*/
.p-sale .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-sale .section01 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-sale .section01 .img {
  width: 33.3333333333%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-sale .section01 .img {
    width: auto;
  }
}
.p-sale .section01 .img img {
  border-radius: 20px;
}

.p-sale .section02 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-sale .section02 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.p-sale .section02 .flex .img {
  width: 33.3333333333%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-sale .section02 .flex .img {
    width: auto;
  }
}
.p-sale .section02 .flex .img img {
  border-radius: 20px;
}

/*--------------------------------------------------
packing
--------------------------------------------------*/
.p-packing .section01 .packing-list {
  margin: 40px 0 60px;
}
@media screen and (max-width: 768px) {
  .p-packing .section01 .packing-list {
    margin: 20px 0 40px;
  }
}
.p-packing .section01 .packing-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  background-color: #e7f3fb;
  border-radius: 30px;
  margin-bottom: 50px;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-packing .section01 .packing-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    margin-bottom: 25px;
    padding: 25px;
  }
}
.p-packing .section01 .packing-list > li .img {
  width: 33.3333333333%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-packing .section01 .packing-list > li .img {
    width: auto;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.p-packing .section01 .packing-list > li .img img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-packing .section01 .packing-list > li .img img {
    border-radius: 10px;
  }
}
.p-packing .section01 .packing-list > li .ttl {
  font-size: 21px;
  font-weight: bold;
  color: #0078ff;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-packing .section01 .packing-list > li .ttl {
    font-size: 15px;
  }
}

/*--------------------------------------------------
initiative
--------------------------------------------------*/
.p-initiative .section01 .initiative-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 5%;
}
@media screen and (max-width: 768px) {
  .p-initiative .section01 .initiative-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px;
  }
}
.p-initiative .section01 .initiative-list > li {
  background-color: #e7f3fb;
  border-radius: 30px;
  max-width: 570px;
  width: 47.5%;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-initiative .section01 .initiative-list > li {
    border-radius: 20px;
    width: auto;
    margin: 0 auto;
    padding: 25px;
  }
}
.p-initiative .section01 .initiative-list > li .img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-initiative .section01 .initiative-list > li .img {
    text-align: center;
    width: auto;
  }
}
.p-initiative .section01 .initiative-list > li .img img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-initiative .section01 .initiative-list > li .img img {
    border-radius: 10px;
  }
}
.p-initiative .section01 .initiative-list > li .ttl {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  color: #0078ff;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-initiative .section01 .initiative-list > li .ttl {
    font-size: 18px;
    margin: 15px 0;
  }
}

/*--------------------------------------------------
news
--------------------------------------------------*/
.p-news .section01 .article-list {
  margin-bottom: 100px;
}
.p-news .section01 .article {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-news .section01 .article {
    margin-bottom: 50px;
  }
}
.p-news .section01 .article .ttl {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  background-color: #e7f3fb;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #002d60;
  margin-bottom: 30px;
  padding: 20px 30px 20px 54px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-news .section01 .article .ttl {
    font-size: 15px;
    margin-bottom: 15px;
    padding: 10px 20px 10px 30px;
  }
}
.p-news .section01 .article .ttl::before {
  content: "";
  display: inline-block;
  background: url(../img/news/ttl-ico.png) no-repeat center/contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 26px;
  left: 28px;
}
@media screen and (max-width: 768px) {
  .p-news .section01 .article .ttl::before {
    width: 12px;
    height: 12px;
    top: 16px;
    left: 13px;
  }
}
.p-news .section01 .article .date {
  display: block;
  margin-bottom: 1em;
}
.p-news .section01 .article a {
  text-decoration: underline;
  color: #0078ff;
}
.p-news .section01 .article a:hover {
  text-decoration: none;
}

/*--------------------------------------------------
contact
--------------------------------------------------*/
.p-contact .section01 .tel-box {
  background-color: #e7f3fb;
  border-radius: 30px;
  margin: 40px 0;
  padding: 60px 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box {
    border-radius: 20px;
    padding: 25px;
  }
}
.p-contact .section01 .tel-box .ttl {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box .ttl {
    font-size: 15px;
  }
}
.p-contact .section01 .tel-box .tel {
  font-size: 48px;
  font-weight: bold;
  color: #0078ff;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box .tel {
    font-size: 30px;
  }
}
.p-contact .section01 .tel-box .time {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-contact .section01 .tel-box .time {
    font-size: 1em;
  }
}/*# sourceMappingURL=style.css.map */