@charset "UTF-8";
/* CSS Document */
/* ==========================================================================
// Foundation
========================================================================== */
/*----------------------------------------------------
Font
----------------------------------------------------*/
@font-face {
  font-family: "";
  font-weight: normal;
  src: url("../font/") format("");
}
/*----------------------------------------------------
Mixin
----------------------------------------------------*/
.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
----------------------------------------------------*/
* {
  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: "KozGoPr6N", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 2;
  color: #1b1b1b;
  position: relative;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875em;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

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

::-moz-selection {
  background-color: rgba(15, 66, 137, 0.7);
  color: #fff;
}

::selection {
  background-color: rgba(15, 66, 137, 0.7);
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
  line-height: 1.4;
  margin: 0;
}

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

iframe {
  vertical-align: bottom;
}

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

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

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

/* ==========================================================================
// Layout
========================================================================== */
/*----------------------------------------------------
Header
----------------------------------------------------*/
.l-header {
  width: 100%;
  padding: 20px 4%;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 10px 4%;
  }
}
.l-header.is-scroll {
  background-color: rgba(0, 0, 0, 0.3);
}
.l-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;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    height: 40px;
  }
}
.l-header__navarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.l-header__nav-list > li {
  font-size: 15px;
  color: #fff;
}
.l-header__nav-list > li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__nav-list > li a:hover {
  color: #202020;
}
.l-header__menubtn {
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: #fff;
  width: 40px;
  height: 28px;
  position: relative;
  z-index: 999;
  cursor: pointer;
}
.l-header__menubtn > span {
  display: block;
  background-color: #fff;
  width: 40px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__menubtn > span:nth-child(2) {
  top: 13px;
}
.l-header__menubtn > span:nth-child(3) {
  top: 26px;
}
.l-header__menubtn.is-active span {
  background-color: #1b1b1b;
}
.l-header__menubtn.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(13px) rotate(-45deg);
          transform: translateY(13px) rotate(-45deg);
}
.l-header__menubtn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.l-header__menubtn.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-13px) rotate(45deg);
          transform: translateY(-13px) rotate(45deg);
}
.l-header__menu {
  display: none;
  background-color: #eee;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 80px 4%;
}
@media screen and (max-width: 768px) {
  .l-header__menu {
    padding: 40px 4%;
  }
}
.l-header__menu-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: 870px;
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 768px) {
  .l-header__menu-inner {
    display: block;
  }
}
.l-header__menu-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.l-header__menu-list > li {
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .l-header__menu-list > li {
    font-size: 13px;
  }
}
.l-header__menu-list > a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header__menu-list > a:hover {
  opacity: 0.7;
}
.l-header__menu-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #bdbdbd;
  padding: 20px;
}
.l-header__menu-child a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #bdbdbd;
  padding: 20px 50px;
  position: relative;
}
.l-header__menu-child a::before {
  content: "";
  background-color: #1f0c7d;
  width: 5px;
  height: 8px;
  margin-right: 10px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/*----------------------------------------------------
Footer
----------------------------------------------------*/
.l-footer {
  background-color: #2d2d2d;
  color: #fff;
  padding: 80px 4%;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 40px 4%;
  }
}
.l-footer__inner {
  max-width: 1200px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    margin-bottom: 40px;
  }
}
.l-footer__infoarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .l-footer__infoarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.l-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav {
    gap: 20px;
  }
}
.l-footer__nav-list {
  gap: 20px;
}
.l-footer__nav-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;
  gap: 10px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .l-footer__nav-list > li {
    font-size: 14px;
  }
}
.l-footer__nav-list > li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-footer__nav-list > li a:hover {
  opacity: 0.7;
}
.l-footer__nav-childlist > li {
  font-size: 13px;
  color: #bfbfbf;
}
.l-footer__addressarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .l-footer__addressarea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}
.l-footer__address {
  font-size: 14px;
}
.l-footer__copyright {
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    text-align: center;
  }
}
.l-footer__logo {
  text-align: center;
}

/*----------------------------------------------------
Main
----------------------------------------------------*/
/* ==========================================================================
// Object
// ========================================================================== */
/*----------------------------------------------------
Component
----------------------------------------------------*/
.c-pagehead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ccc;
  background-image: url(../img/common/low-pagehead.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
  width: 100%;
  height: 550px;
  margin-bottom: 80px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .c-pagehead {
    height: 300px;
    margin-bottom: 40px;
    padding: 20px;
  }
}

.c-pagettl {
  font-family: "a-otf-jun-pro", sans-serif;
  font-size: 60px;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-pagettl {
    font-size: 30px;
    padding-bottom: 10px;
  }
}
.c-pagettl::after {
  content: "";
  background-color: #fff;
  width: 115px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.c-section {
  padding: 0 4% 100px;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding: 0 4% 50px;
  }
}

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

.c-top-secttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 52px;
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  position: relative;
}
.c-top-secttl::after {
  content: "";
  background-color: #6bb3bb;
  width: 60px;
  height: 2px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.c-secttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "a-otf-jun-pro", sans-serif;
  font-size: 38px;
  margin-bottom: 40px;
  padding-top: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-secttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.c-secttl__en {
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  .c-secttl__en {
    font-size: 20px;
  }
}
.c-secttl__jp {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .c-secttl__jp {
    font-size: 12px;
  }
}
.c-secttl::before {
  content: "";
  background-color: #0f4289;
  width: 60px;
  height: 3px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
}

.c-secttl.center {
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-secttl.center::before {
  margin: auto;
  right: 0;
}

.c-tblarea {
  width: 100%;
  margin-bottom: 20px;
}
.c-tblarea:last-child {
  margin-bottom: 0;
}
.c-tblarea table th, .c-tblarea table td {
  border: 1px solid #bfbfbf;
  padding: 10px;
}
.c-tblarea table th {
  font-weight: normal;
  vertical-align: top;
  background-color: #eee;
  min-width: 120px;
}

.c-form .tblarea {
  width: 100%;
  margin-bottom: 20px;
}
.c-form .tblarea:last-child {
  margin-bottom: 0;
}
.c-form .tblarea table th, .c-form .tblarea table td {
  border: 1px solid #bfbfbf;
  padding: 10px 30px;
}
@media screen and (max-width: 768px) {
  .c-form .tblarea table th, .c-form .tblarea table td {
    display: block;
    padding: 10px;
  }
}
.c-form .tblarea table th {
  font-weight: normal;
  text-align: left;
  background-color: #eee;
}
.c-form .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.c-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;
}
.c-form label {
  cursor: pointer;
}
.c-form [type=text], .c-form [type=email], .c-form [type=tel] {
  background-color: #fff;
  border: 1px solid #bdbdbd;
  max-width: 350px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.c-form textarea {
  background-color: #fff;
  border: 1px solid #bdbdbd;
  max-width: 700px;
  width: 100% !important;
  height: 150px !important;
  padding: 3px;
}
.c-form .input-num {
  max-width: 80px;
}
.c-form ::-webkit-input-placeholder {
  color: #c8c8c8;
}
.c-form ::-moz-placeholder {
  color: #c8c8c8;
}
.c-form :-ms-input-placeholder {
  color: #c8c8c8;
}
.c-form ::-ms-input-placeholder {
  color: #c8c8c8;
}
.c-form ::placeholder {
  color: #c8c8c8;
}
.c-form .required {
  display: inline-block;
  background-color: #dd6580;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  padding: 0 6px;
}
@media screen and (max-width: 768px) {
  .c-form .required {
    font-size: 12px;
  }
}
.c-form .privacy {
  background-color: #f1f1f1;
  height: 330px;
  margin-bottom: 40px;
  padding: 30px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .c-form .privacy {
    padding: 20px;
  }
}
.c-form .privacy-ttl {
  font-weight: bold;
  margin-bottom: 30px;
}
.c-form .privacy-list dd {
  margin-bottom: 30px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .c-form .privacy-list dd {
    margin-bottom: 20px;
  }
}
.c-form .privacy-agree {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-form .privacy-agree {
    margin-bottom: 20px;
  }
}
.c-form .btn {
  text-align: center;
}
.c-form .btn button {
  background: #0f4289;
  border: 1px solid #0f4289;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-form .btn button {
    font-size: 13px;
    max-width: 300px;
  }
}
.c-form .btn button:hover {
  opacity: 0.7;
}

.c-btn {
  max-width: 370px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 200px;
  }
}
.c-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0f4289;
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  padding: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn a {
    font-size: 14px;
    padding: 10px;
  }
}
.c-btn a:hover {
  opacity: 0.7;
}

/* Project
// ========================================================================== */
/*----------------------------------------------------
Top
----------------------------------------------------*/
.p-top-mv {
  line-height: 0;
}
.p-top-mv img {
  width: 100%;
}
.p-top-mv .slick-dots {
  bottom: 30px;
}
.p-top-mv .slick-dotted.slick-slider {
  margin-bottom: 0;
}
.p-top-mv .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #fff;
}
.p-top-mv .slick-dots li button:before {
  font-size: 10px;
}

.p-top-section01 {
  background-image: url(../img/top/top-greeting-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 4% 0;
}
@media screen and (max-width: 768px) {
  .p-top-section01 {
    padding: 50px 4% 0;
  }
}
.p-top-section01__lead {
  max-width: 900px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .p-top-section01__lead {
    margin-bottom: 20px;
  }
}
.p-top-section01__img {
  width: 82.5%;
  height: 360px;
  margin: 0 -4% 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top-section01__img {
    width: auto;
    height: 200px;
    margin: 0 -4% 0 auto;
  }
}
.p-top-section01__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px 0 0 6px;
}

.p-top-section02 {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-top-section02 {
    padding-top: 50px;
  }
}
.p-top-section02__listarea {
  background-color: #ccc;
  background-image: url(../img/top/top-business-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
}
@media screen and (max-width: 768px) {
  .p-top-section02__listarea {
    padding: 40px 20px;
  }
}
.p-top-section02__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .p-top-section02__list {
    gap: 40px 2.7777777778%;
  }
}
.p-top-section02__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 324px;
  width: 22%;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .p-top-section02__list > li {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .p-top-section02__list > li {
    width: 100%;
  }
}
.p-top-section02__box {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.p-top-section02__box a {
  background-color: #fff;
  display: block;
  height: 100%;
}
.p-top-section02__box a::before {
  content: "BUSINESS";
  font-size: 13px;
  color: #0f4289;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.p-top-section02__box a::after {
  content: "→";
  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;
  font-size: 15px;
  background-color: #0f4289;
  border-radius: 50%;
  color: #fff;
  width: 56px;
  height: 56px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.p-top-section02__list > li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top-section02__list > li a:hover {
  opacity: 0.7;
}
.p-top-section02__txtarea {
  padding: 20px 20px 80px;
}
.p-top-section02__ttl {
  color: #0f4289;
  font-weight: bold;
  margin-bottom: 10px;
}
.p-top-section02__btn {
  max-width: 200px;
  width: 100%;
  margin: auto;
}
.p-top-section02__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0f4289;
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top-section02__btn a:hover {
  opacity: 0.7;
}

.p-top-section03 {
  padding: 100px 4%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-section03 {
    padding: 50px 4%;
  }
}
.p-top-section03::before {
  content: "";
  background-color: #eee;
  width: 91%;
  height: 630px;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
}
.p-top-section03__img {
  width: 82.5%;
  height: 360px;
  margin: 0 auto 80px -4%;
}
@media screen and (max-width: 768px) {
  .p-top-section03__img {
    width: auto;
    height: 200px;
    margin: 0 auto 40px -4%;
  }
}
.p-top-section03__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 6px 6px 0;
}
.p-top-section03__flex {
  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-section03__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-top-section03__ttl {
  font-size: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-top-section03__ttl {
    font-size: 20px;
  }
}
.p-top-section03__txt {
  margin-bottom: 20px;
}
.p-top-section03__btn {
  max-width: 200px;
}
.p-top-section03__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0f4289;
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top-section03__btn a:hover {
  opacity: 0.7;
}

.p-top-section04 {
  padding: 100px 4%;
}
@media screen and (max-width: 768px) {
  .p-top-section04 {
    padding: 50px 4%;
  }
}
.p-top-section04__articlelist {
  height: 280px;
  padding-right: 30px;
  overflow-y: scroll;
}
.p-top-section04__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #c9c9c9;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top-section04__article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.p-top-section04__txtarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top-section04__ttl {
  font-weight: bold;
  margin-bottom: 10px;
}

.p-top-section05__map iframe {
  width: 100%;
  height: 420px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media screen and (max-width: 768px) {
  .p-top-section05__map iframe {
    height: 200px;
  }
}

/*----------------------------------------------------
Company
----------------------------------------------------*/
.p-company__pagenav {
  padding: 0 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-company__pagenav {
    margin-bottom: 50px;
  }
}
.p-company__pagenav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-company__pagenav-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px 0;
  }
}
.p-company__pagenav-list > li {
  border-left: 1px solid #0f4289;
  font-size: 17px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-company__pagenav-list > li {
    border-right: 1px solid #0f4289;
    font-size: 14px;
    width: 48%;
  }
}
.p-company__pagenav-list > li::after {
  content: "";
  background-image: url(../img/company/company-nav-arrow.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  width: 11px;
  height: 8px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.p-company__pagenav-list > li:last-child {
  border-right: 1px solid #0f4289;
}
.p-company__pagenav-list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px 20px;
}
.p-company__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .p-company__flex {
    display: block;
  }
}
.p-company__left {
  max-width: 400px;
  width: 100%;
}
.p-company__right {
  width: 100%;
}

.p-company-section01__lead {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-company-section01__lead {
    margin-bottom: 40px;
  }
}
.p-company-section01 caption {
  font-size: 18px;
  text-align: left;
  margin-bottom: 10px;
}

.p-company-section02__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-company-section02__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-company-section02__subttl {
  background-color: #0f4289;
  color: #fff;
  border-radius: 6px;
  font-size: 22px;
  text-align: center;
  width: 156px;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .p-company-section02__subttl {
    font-size: 14px;
  }
}
.p-company-section02__list {
  font-size: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .p-company-section02__list {
    font-size: 1em;
  }
}
.p-company-section02__list02 > li {
  margin-bottom: 20px;
}
.p-company-section02__list02 > li:last-child {
  margin-bottom: 0;
}
.p-company-section02__list-ttl {
  font-size: 20px;
  color: #0f4289;
}
@media screen and (max-width: 768px) {
  .p-company-section02__list-ttl {
    font-size: 1em;
  }
}

.p-company-section03__organization {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-company-section03__organization {
    margin-top: 40px;
  }
}

.p-company-section05__lead {
  margin-bottom: 20px;
}

.p-company-section06__map {
  margin-bottom: 20px;
}
.p-company-section06__map iframe {
  width: 100%;
  height: 530px;
}
@media screen and (max-width: 768px) {
  .p-company-section06__map iframe {
    height: 200px;
  }
}

/*----------------------------------------------------
Business
----------------------------------------------------*/
.p-business__businessnav {
  padding: 0 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-business__businessnav {
    margin-bottom: 50px;
  }
}
.p-business__businessnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .p-business__businessnav-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px 0;
  }
}
.p-business__businessnav-list > li {
  border-bottom: 1px solid #0f4289;
  font-size: 14px;
  font-weight: bold;
  width: 22%;
}
@media screen and (max-width: 1200px) {
  .p-business__businessnav-list > li {
    width: 48%;
  }
}
.p-business__businessnav-list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 30px 10px 0;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-business__businessnav-list > li a::after {
  content: "";
  background-image: url(../img/business/business-nav-arrow.png);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.p-business__businessnav-list > li a:hover {
  color: #0f4289;
}

.p-business-section01__list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-business-section01__list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }
}
.p-business-section01__txtarea {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-business-section01__txt a {
  text-decoration: underline;
  color: #0f4289;
}
.p-business-section01__secttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #0f4289;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-business-section01__secttl {
    margin-bottom: 20px;
  }
}
.p-business-section01__secttl-en {
  font-size: 34px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-business-section01__secttl-en {
    font-size: 30px;
  }
}
.p-business-section01__secttl-jp {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .p-business-section01__secttl-jp {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .p-business-section01__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
.p-business-section01__img img {
  border-radius: 10px;
}
.p-business-section01__btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-business-section01__btn {
    margin-top: 20px;
  }
}
.p-business-section01__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #0f4289;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  max-width: 180px;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-business-section01__btn a {
    font-size: 14px;
  }
}
.p-business-section01__btn a:hover {
  opacity: 0.7;
}

/*----------------------------------------------------
System
----------------------------------------------------*/
.p-system-section01 .catch {
  font-size: 36px;
  text-align: center;
  color: #0f4289;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-system-section01 .catch {
    font-size: 20px;
    text-align: left;
  }
}
.p-system-section01 .about-wrap02 {
  background-image: url(../img/system/system-about-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 456px;
  margin: 50px auto 150px;
  padding: 100px 4% 0;
}
@media screen and (max-width: 768px) {
  .p-system-section01 .about-wrap02 {
    background-image: none;
    height: auto;
    margin: 50px auto;
    padding: 0;
  }
}
.p-system-section01 .about-wrap02 .txt-wrap {
  max-width: 600px;
  width: 50%;
  margin: 0 40px 0 auto;
}
@media screen and (max-width: 768px) {
  .p-system-section01 .about-wrap02 .txt-wrap {
    max-width: none;
    width: auto;
    margin: auto;
  }
}
.p-system-section01 .catch02 {
  font-size: 34px;
  color: #0f4289;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-system-section01 .catch02 {
    font-size: 20px;
  }
}
.p-system-section01 .step-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: 40px;
  margin-bottom: 100px;
  counter-reset: count 0;
}
.p-system-section01 .step-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  counter-increment: count 1;
}
@media screen and (max-width: 1200px) {
  .p-system-section01 .step-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-system-section01 .step-list .img {
  text-align: center;
}
.p-system-section01 .step-list .img img {
  border-radius: 10px;
}
.p-system-section01 .step-list .txt-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-system-section01 .step-list .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 30px;
  font-size: 24px;
  color: #0f4289;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-system-section01 .step-list .ttl {
    gap: 10px;
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.p-system-section01 .step-list .ttl::before {
  content: "STEP." counter(count, decimal-leading-zero);
  background-color: #0f4289;
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  padding: 6px 20px;
}
@media screen and (max-width: 768px) {
  .p-system-section01 .step-list .ttl::before {
    font-size: 12px;
  }
}

/*----------------------------------------------------
Management
----------------------------------------------------*/
.p-management-section01 .about-wrap {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-management-section01 .about-wrap {
    margin-bottom: 50px;
  }
}
.p-management-section01 .catch {
  font-size: 36px;
  text-align: center;
  color: #0f4289;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-management-section01 .catch {
    font-size: 20px;
    text-align: left;
  }
}
.p-management-section01 .subsec {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-management-section01 .subsec {
    margin-bottom: 50px;
  }
}
.p-management-section01 .type-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  counter-reset: count 0;
}
@media screen and (max-width: 768px) {
  .p-management-section01 .type-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-management-section01 .type-list > li {
  max-width: 366px;
  margin: 0 auto;
}
.p-management-section01 .type-list .img img {
  border-radius: 10px;
}
.p-management-section01 .type-list .ttl {
  font-size: 20px;
  font-weight: bold;
  color: #0f4289;
  text-align: center;
  margin: 20px auto;
}
.p-management-section01 .type-list .list {
  counter-reset: count 0;
}
.p-management-section01 .type-list .list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  counter-increment: count 1;
  border-bottom: 2px dotted #0f4289;
  padding: 6px 0;
}
.p-management-section01 .type-list .list li::before {
  content: counter(count) ".";
}
.p-management-section01 .service-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: 40px;
  margin: 50px auto 100px;
}
@media screen and (max-width: 768px) {
  .p-management-section01 .service-list {
    margin: 20px auto 50px;
  }
}
.p-management-section01 .service-list > li {
  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-management-section01 .service-list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-management-section01 .service-list .img {
  text-align: center;
}
.p-management-section01 .service-list .img img {
  border-radius: 10px;
}
.p-management-section01 .service-list .txt-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-management-section01 .service-list .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 30px;
  font-size: 24px;
  color: #0f4289;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-management-section01 .service-list .ttl {
    gap: 10px;
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.p-management-section01 .service-list .ttl::before {
  content: "SERVICE";
  background-color: #0f4289;
  border-radius: 6px;
  color: #fff;
  font-size: 20px;
  padding: 6px 20px;
}
@media screen and (max-width: 768px) {
  .p-management-section01 .service-list .ttl::before {
    font-size: 12px;
  }
}

/*----------------------------------------------------
Recruit
----------------------------------------------------*/
.p-recruit-section01 {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01 {
    padding-bottom: 50px;
  }
}
.p-recruit-section01__aboutarea {
  background-image: url(../img/recruit/recruit-about-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 562px;
  margin-bottom: 100px;
  padding: 160px 50px 0;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01__aboutarea {
    background-image: none;
    height: auto;
    margin-bottom: 50px;
    padding: 0 20px;
  }
}
.p-recruit-section01__aboutarea-txtarea {
  max-width: 870px;
}
.p-recruit-section01__pagettl {
  font-size: 120px;
  font-weight: bold;
  color: #0f4289;
}
@media screen and (max-width: 1200px) {
  .p-recruit-section01__pagettl {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .p-recruit-section01__pagettl {
    font-size: 20px;
  }
}
.p-recruit-section01__catch {
  font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
  font-size: 25px;
  color: #0f4289;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01__catch {
    font-size: 1em;
  }
}
.p-recruit-section01 .tab-area {
  padding: 0 40px 100px;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01 .tab-area {
    padding: 0 20px 50px;
  }
}
.p-recruit-section01 .tab-area ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.p-recruit-section01 .tab-area li {
  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;
  width: 48%;
  background-color: #b5b5b5;
  color: #fff;
  border-radius: 6px;
  font-size: 20px;
  padding: 30px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01 .tab-area li {
    font-size: 14px;
    padding: 20px;
  }
}
.p-recruit-section01 .tab-area li.current {
  background-color: #0f4289;
  cursor: unset;
}
.p-recruit-section01 .tab-area li::before {
  content: "";
  background-color: #fff;
  -webkit-clip-path: polygon(0 20%, 0 80%, 100% 50%);
          clip-path: polygon(0 20%, 0 80%, 100% 50%);
  width: 14px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 36px;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01 .tab-area li::before {
    left: 20px;
  }
}
.p-recruit-section01 .tabcontent {
  display: none;
}
.p-recruit-section01 .tabcontent.show {
  display: block;
}
.p-recruit-section01 .tabcontent li {
  background-color: #f0f0f0;
  margin-bottom: 20px;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01 .tabcontent li {
    padding: 10px;
  }
}
.p-recruit-section01 .tabcontent li.click-open-content .tbl-wrap {
  display: none;
}
.p-recruit-section01 .tabcontent li.click-open-content.open .tbl-wrap {
  display: block;
}
.p-recruit-section01 .tabcontent .tabttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 20px;
  font-weight: bold;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01 .tabcontent .tabttl {
    font-size: 14px;
    padding-left: 5px;
    text-align: left;
  }
}
.p-recruit-section01 .tabcontent .tabttl .ttl {
  width: calc(100% - 50px);
}
.p-recruit-section01 .tabcontent .tabttl .trigger {
  width: 40px;
  height: 40px;
  background-color: #0f4289;
  display: block;
  border-radius: 50%;
  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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-recruit-section01 .tabcontent .tabttl .trigger::before {
  content: ">";
  -webkit-transform: rotate(90deg) scale(0.8, 1.5);
          transform: rotate(90deg) scale(0.8, 1.5);
  color: #fff;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01 .tabcontent .tabttl .trigger::before {
    -webkit-transform: rotate(90deg) scale(0.8, 1.5);
            transform: rotate(90deg) scale(0.8, 1.5);
    font-size: 14px;
    line-height: 1;
  }
}
.p-recruit-section01 .tabcontent .tabttl .trigger.open {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.p-recruit-section01 .tabcontent .tbl-wrap {
  background-color: #fff;
  margin-top: 20px;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01 .tabcontent .tbl-wrap {
    padding: 10px;
  }
}
.p-recruit-section01 .tabcontent .tbl-wrap table tr {
  border-bottom: 1px solid #bcbcbc;
}
.p-recruit-section01 .tabcontent .tbl-wrap table th, .p-recruit-section01 .tabcontent .tbl-wrap table td {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01 .tabcontent .tbl-wrap table th, .p-recruit-section01 .tabcontent .tbl-wrap table td {
    display: block;
  }
}
.p-recruit-section01 .tabcontent .tbl-wrap table th {
  font-weight: bold;
  vertical-align: top;
  text-align: left;
  color: #0f4289;
  min-width: 120px;
}
@media screen and (max-width: 768px) {
  .p-recruit-section01 .tabcontent .tbl-wrap table th {
    padding-bottom: 0;
  }
}

/*----------------------------------------------------
Contact
----------------------------------------------------*/
.p-contact-section01__telbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  border: 2px solid #0f4289;
  border-radius: 6px;
  color: #0f4289;
  margin-bottom: 20px;
  padding: 50px;
}
@media screen and (max-width: 1200px) {
  .p-contact-section01__telbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-contact-section01__telbox {
    padding: 20px;
    gap: 20px;
  }
}
.p-contact-section01__telbox-ttl {
  font-size: 18px;
  font-weight: bold;
}
.p-contact-section01__telbox-telarea {
  text-align: center;
}
.p-contact-section01__telbox-tel {
  font-size: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-contact-section01__telbox-tel {
    font-size: 20px;
  }
}
.p-contact-section01__telbox-fax {
  font-size: 40px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-contact-section01__telbox-fax {
    font-size: 20px;
  }
}
.p-contact-section01__lead {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-contact-section01__lead {
    margin-bottom: 20px;
  }
}

/*----------------------------------------------------
Privacy
----------------------------------------------------*/
.p-privacy-section01__date {
  text-align: right;
  margin-bottom: 40px;
}

.p-privacy-section02__list dd {
  margin-bottom: 30px;
  padding-left: 30px;
}

/*----------------------------------------------------
Security
----------------------------------------------------*/
.p-security-section01 dl dt {
  font-weight: bold;
}
.p-security-section01 dl dd {
  margin-bottom: 30px;
}/*# sourceMappingURL=style.css.map */