@charset "UTF-8";
/* CSS Document */
/*==================================================
Foundation
==================================================*/
/*--------------------------------------------------
Font
--------------------------------------------------*/
/*@font-face {
  font-family: '';
  font-weight: normal;
  src: url('../font/') format('');
  font-display: swap;
}*/
.gothic {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.mincho {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", 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", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1em;
  font-size: 0.9375em;
  line-height: 1.7;
  color: #000;
  position: relative;
  overflow-wrap: break-word;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.8125rem;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

#container {
  min-width: 320px;
}

p {
  margin-bottom: 1em;
}

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

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

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

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

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

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

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

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

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

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

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

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

/*==================================================
Layout
==================================================*/
/*--------------------------------------------------
Header
--------------------------------------------------*/
.header {
  background-color: #fff;
  border-top: 5px solid #d80c18;
  width: 100%;
  padding: 20px 4%;
}
@media screen and (max-width: 1000px) {
  .header {
    padding: 10px;
  }
}
.header.is-fixed {
  position: fixed;
  z-index: 9;
  top: 0;
  right: 0;
  left: 0;
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4%;
  max-width: 1900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header .logo img {
    height: 40px;
  }
}
.header .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .header .head {
    margin: 0;
  }
}
.header .tel-area {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .header .tel-area {
    display: none;
  }
}
.header .tel-area .tel {
  margin: 0;
}
.header .tel-area .tel a {
  text-decoration: none;
  font-size: 30px;
  color: #d80c18;
}
.header .tel-area .time {
  font-size: 13px;
  text-align: right;
  margin: 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: 768px) {
  .header .gnav {
    display: none;
  }
}
.header .gnav .gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .gnav .gnav-list > li {
  font-size: 16px;
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: bold;
  padding: 0 1em;
  position: relative;
}
.header .gnav .gnav-list > li::after {
  content: "";
  background-color: #000;
  width: 1px;
  height: 1em;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.header .gnav .gnav-list > li a {
  display: block;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .gnav .gnav-list > li a:hover {
  color: #d80c18;
}
.header .gnav .gnav-list > li:last-child::after {
  display: none;
}
.header .login-btn {
  width: 120px;
  margin: 0;
}
.header .login-btn a {
  display: block;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #d80c18;
  color: #d80c18;
  font-size: 14px;
  text-align: center;
  padding: 3px 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header .login-btn a {
    font-size: 13px;
  }
}
.header .login-btn a:hover {
  background-color: #d80c18;
  color: #fff;
}
.header .menu-btn {
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 999;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header .menu-btn {
    display: block;
    width: 40px;
    height: 40px;
  }
}
.header .menu-btn > span {
  display: block;
  background-color: #fff;
  width: 30px;
  height: 2px;
  margin: auto;
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header .menu-btn > span {
    top: 10px;
  }
}
.header .menu-btn > span:nth-child(2) {
  top: 24px;
}
@media screen and (max-width: 768px) {
  .header .menu-btn > span:nth-child(2) {
    top: 20px;
  }
}
.header .menu-btn > span:nth-child(3) {
  top: 33px;
}
@media screen and (max-width: 768px) {
  .header .menu-btn > span:nth-child(3) {
    top: 30px;
  }
}
.header .menu-btn.is-active {
  background-color: #d80c18;
}
.header .menu-btn.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header .menu-btn.is-active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
            transform: translateY(10px) rotate(-45deg);
  }
}
.header .menu-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.header .menu-btn.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header .menu-btn.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
            transform: translateY(-10px) rotate(45deg);
  }
}
.header .menu {
  display: none;
  background-color: #000;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 4%;
}
@media screen and (max-width: 768px) {
  .header .menu {
    height: auto;
    padding: 0;
    top: 65px;
  }
}
.header .menu-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.header .menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 768px) {
  .header .menu-nav {
    gap: 0;
  }
}
.header .menu-list {
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header .menu-list {
    border-right: 1px solid #fff;
  }
}
.header .menu-list > li {
  border-bottom: 1px solid #fff;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .header .menu-list > li {
    font-size: 13px;
  }
}
.header .menu-list > li:last-child {
  border-bottom: 0;
}
.header .menu-list > li a {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px 16px 20px 25px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header .menu-list > li a {
    padding: 15px 15px 15px 25px;
  }
}
.header .menu-list > li a::before {
  content: "";
  background-color: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 32px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .header .menu-list > li a::before {
    top: 24px;
  }
}
.header .menu-list > li a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Footer
--------------------------------------------------*/
.footer {
  background-color: #c41721;
  color: #fff;
  padding: 40px 4%;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 13px;
    margin-bottom: 50px;
  }
}
.footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4% 100px;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer .logo {
    text-align: center;
    margin-bottom: 2em;
  }
}
.footer .hyoji {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .footer .hyoji {
    text-align: center;
    margin-bottom: 2em;
  }
}
.footer .copyright {
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    text-align: center;
  }
}

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

/*--------------------------------------------------
Main
--------------------------------------------------*/
.pagehead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eee;
  background-image: url(../img/common/pagehead.jpg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: cover;
  color: #fff;
  height: 220px;
  padding: 20px 4%;
}
@media screen and (max-width: 768px) {
  .pagehead {
    background-image: url(../img/common/pagehead-sp.jpg);
    height: 110px;
  }
}
.pagehead .inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
.pagehead .pagettl {
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl {
    font-size: 21px;
  }
}
.pagehead .pagettl .small {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl .small {
    font-size: 13px;
  }
}

.breadcrumb {
  padding: 10px 4% 100px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding-bottom: 25px;
  }
}
.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: 1300px;
  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 {
  text-decoration: none;
}
.breadcrumb .breadcrumb-list > li a:hover {
  text-decoration: underline;
}
.breadcrumb .breadcrumb-list > li:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 14em;
}
.breadcrumb .breadcrumb-list > li:last-child::after {
  display: none;
}

/*--------------------------------------------------
Side
--------------------------------------------------*/
.side-fixed {
  display: block;
  text-align: right;
  position: fixed;
  top: 240px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .side-fixed {
    top: 80px;
  }
}
.side-fixed .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: 15px;
}
.side-fixed .list > li {
  max-height: 180px;
  height: 18vh;
}

.side-fixed-sp {
  display: none;
  background-color: #d80c18;
  width: 100%;
  max-height: 50px;
  position: fixed;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .side-fixed-sp {
    display: block;
  }
}
.side-fixed-sp .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.side-fixed-sp .list img {
  max-height: 50px;
}

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

.c-subsec {
  margin: 80px 0;
}
@media screen and (max-width: 768px) {
  .c-subsec {
    margin: 40px 0;
  }
}

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

.c-heading {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  padding-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 18px;
    padding-bottom: 10px;
  }
}
.c-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 5px;
  margin: auto;
  background-color: #d80c18;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-heading::after {
    width: 45px;
    height: 2px;
  }
}

.c-subheading {
  background-color: #d80c18;
  color: #fff;
  font-size: 18px;
  margin-bottom: 30px;
  padding: 15px 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-subheading {
    font-size: 13px;
    margin-bottom: 15px;
    padding: 14px 25px;
  }
}
.c-subheading::before {
  content: "";
  background-color: #fff;
  width: 20px;
  height: 3px;
  position: absolute;
  top: 26px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-subheading::before {
    width: 15px;
    height: 2px;
    top: 24px;
  }
}

.c-tbl-wrap table {
  background-color: #fff;
}
.c-tbl-wrap table th, .c-tbl-wrap table td {
  border: 1px dotted #929292;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .c-tbl-wrap table th, .c-tbl-wrap table td {
    padding: 10px;
  }
}
.c-tbl-wrap table th {
  background-color: #fef0f1;
  text-align: left;
  width: 320px;
}
@media screen and (max-width: 768px) {
  .c-tbl-wrap table th {
    width: 120px;
  }
}
.c-tbl-wrap table a {
  text-decoration: underline;
  color: #d80c18;
}
.c-tbl-wrap table a:hover {
  text-decoration: none;
}

.c-btn {
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 250px;
  }
}
.c-btn a {
  display: block;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  max-width: 300px;
  width: 100%;
  margin: auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .c-btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.c-btn a .arrow {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 1em;
  margin: 0 auto 0 10px;
  position: relative;
}
.c-btn a .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 30px;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
.c-btn a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 12px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 2px) 50%;
          transform-origin: calc(100% - 2px) 50%;
}
.c-btn a:hover {
  opacity: 0.7;
}

.c-lead {
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .c-lead {
    text-align: left;
  }
}

.c-red {
  color: #d80c18;
}

/*--------------------------------------------------
Form
--------------------------------------------------*/
.form .tbl-wrap {
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .form .tbl-wrap {
    margin: 20px 0;
  }
}
.form table {
  background-color: #fff;
}
.form table caption {
  background-color: #f4f4f4;
  border: 1px dotted #929292;
  font-size: 18px;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .form table caption {
    font-size: 13px;
    padding: 10px;
  }
}
.form table th, .form table td {
  border: 1px dotted #929292;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .form table th, .form table td {
    display: block;
    padding: 10px;
  }
}
.form table th {
  background-color: #fef0f1;
  text-align: left;
  width: 320px;
}
@media screen and (max-width: 768px) {
  .form table th {
    width: auto;
  }
}
.form table a {
  color: #d80c18;
}
.form table .ref {
  color: #aeaeae;
}
.form .required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  background-color: #d80c18;
  color: #fff;
  font-size: 9px;
  font-weight: normal;
  margin-left: 1em;
  padding: 1px 6px;
}
.form .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.form .row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.form label {
  cursor: pointer;
}
.form [type=text], .form [type=email], .form [type=tel] {
  background-color: #fff;
  border: 1px solid #cecece;
  max-width: 270px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form [type=number] {
  background-color: #fff;
  border: 1px solid #cecece;
  max-width: 60px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form select {
  border: 1px solid #cecece;
  padding: 10px;
}
.form textarea {
  background-color: #fff;
  border: 1px solid #cecece;
  max-width: 700px;
  width: 100%;
  height: 140px;
  padding: 10px;
}
.form ::-webkit-input-placeholder {
  color: #cecece;
}
.form ::-moz-placeholder {
  color: #cecece;
}
.form :-ms-input-placeholder {
  color: #cecece;
}
.form ::-ms-input-placeholder {
  color: #cecece;
}
.form ::placeholder {
  color: #cecece;
}
.form .privacy {
  margin: 2em 0;
}
.form .privacy .privacy-head {
  background-color: #eee;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-weight: bold;
  text-align: center;
  padding: 1em;
}
.form .privacy .privacy-body {
  border-bottom: 1px solid #eee;
  height: 240px;
  padding: 2em;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .form .privacy .privacy-body {
    height: 200px;
    padding: 1em;
  }
}
.form .privacy dl {
  margin: 2em 0;
}
.form .privacy dl div {
  margin-bottom: 2em;
}
.form .privacy dl dt {
  font-weight: bold;
  color: #d80c18;
}
.form .agree {
  text-align: center;
  margin: 2em 0;
}
.form .agree a {
  color: #d80c18;
}
.form .btn {
  max-width: 300px;
  width: 100%;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .form .btn {
    max-width: 250px;
  }
}
.form .btn button, .form .btn input {
  background-color: #000;
  border: 1px solid #000;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .form .btn button, .form .btn input {
    font-size: 13px;
    padding: 15px;
  }
}
.form .btn button:hover, .form .btn input:hover {
  opacity: 0.7;
}

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

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

/* Project
==================================================*/
/*--------------------------------------------------
top
--------------------------------------------------*/
.p-top .hero {
  text-align: center;
}
.p-top .hero img {
  width: 100%;
}

.p-top .section01 {
  background-color: #ccc;
  background-image: url(../img/top/top-gray-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section01 {
    padding: 50px 4%;
  }
}
.p-top .section01 .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.p-top .section01 .heading {
  font-size: 48px;
  text-align: center;
  color: #d80c18;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading {
    font-size: 28px;
  }
}
.p-top .section01 .heading .small {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .heading .small {
    font-size: 13px;
  }
}
.p-top .section01 .list {
  background-color: #fff;
  border: 1px solid #000;
  height: 460px;
  padding: 30px 90px 30px 60px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list {
    height: 290px;
    padding: 20px 40px 20px 20px;
  }
}
.p-top .section01 .list .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
  border-bottom: 1px dotted #929292;
  font-size: 16px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list .article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1em;
    padding: 15px 0;
  }
}
.p-top .section01 .list .article .ttl a {
  color: #d80c18;
}
.p-top .section01 .list .article .ttl a:hover {
  text-decoration: none;
}

.p-top .section02 {
  background-color: #ccc;
  background-image: url(../img/top/top-estimate-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 {
    padding: 50px 4%;
  }
}
.p-top .section02 .heading {
  font-size: 48px;
  text-align: center;
  color: #fff;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading {
    font-size: 28px;
  }
}
.p-top .section02 .heading .small {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .heading .small {
    font-size: 13px;
  }
}
.p-top .section02 .content {
  background-color: #fff;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .content {
    padding: 20px 4%;
  }
}
.p-top .section02 .ttl {
  font-weight: bold;
  margin-bottom: 0;
}
.p-top .section02 .ref {
  color: #aeaeae;
}
.p-top .section02 select {
  background-color: #f0f0f0;
  border: 1px solid #000;
  border-radius: 3px;
  max-width: 100%;
  padding: 3px;
}
.p-top .section02 .list .item {
  margin-bottom: 1em;
}
.p-top .section02 .box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px 100px;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .box-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0;
  }
}
.p-top .section02 .box-flex .box {
  width: 46.1538461538%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .box-flex .box {
    width: auto;
  }
}
.p-top .section02 .box-flex .box::after {
  content: "";
  background-color: #afafaf;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 40px;
  height: 85px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -70px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .box-flex .box::after {
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    width: 40px;
    height: 20px;
    top: auto;
    right: 0;
    left: 0;
    bottom: -35px;
  }
}
.p-top .section02 .box-flex .box:last-child::after {
  display: none;
}
.p-top .section02 .box-flex .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.p-top .section02 .box-head {
  background-color: #d80c18;
  color: #fff;
  font-size: 18px;
  padding: 15px 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .box-head {
    font-size: 13px;
    margin-bottom: 15px;
    padding: 14px 25px;
  }
}
.p-top .section02 .box-head::before {
  content: "";
  background-color: #fff;
  width: 20px;
  height: 3px;
  position: absolute;
  top: 26px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .box-head::before {
    width: 15px;
    height: 2px;
    top: 24px;
  }
}
.p-top .section02 .box-body {
  background-color: #fff;
  border: 1px solid #c0c0c0;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .box-body {
    padding: 20px;
  }
}
.p-top .section02 .box-body a {
  color: #d80c18;
}
.p-top .section02 .box-body a:hover {
  text-decoration: none;
}
.p-top .section02 .btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 20px auto;
  }
}
.p-top .section02 .btn-list .reset-btn {
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn-list .reset-btn {
    max-width: 250px;
    margin: 0 auto;
  }
}
.p-top .section02 .btn-list .reset-btn button {
  display: block;
  background-color: #5fb2bc;
  border: 1px solid #5fb2bc;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn-list .reset-btn button {
    font-size: 13px;
    padding: 15px;
  }
}
.p-top .section02 .btn-list .reset-btn button:hover {
  opacity: 0.7;
}
.p-top .section02 .btn-list .submit-btn {
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn-list .submit-btn {
    max-width: 250px;
    margin: 0 auto;
  }
}
.p-top .section02 .btn-list .submit-btn button {
  display: block;
  background-color: #44a637;
  border: 1px solid #44a637;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn-list .submit-btn button {
    font-size: 13px;
    padding: 15px;
  }
}
.p-top .section02 .btn-list .submit-btn button:hover {
  opacity: 0.7;
}
.p-top .section02 .btn {
  max-width: 400px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn {
    max-width: 250px;
  }
}
.p-top .section02 .btn a {
  display: block;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-top .section02 .btn a .arrow {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 1em;
  margin: 0 auto 0 10px;
  position: relative;
}
.p-top .section02 .btn a .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 30px;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
.p-top .section02 .btn a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 12px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 2px) 50%;
          transform-origin: calc(100% - 2px) 50%;
}
.p-top .section02 .btn a:hover {
  opacity: 0.7;
}

.modal-area {
  max-width: 1000px !important;
  width: auto !important;
  max-height: 90vh !important;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .modal-area {
    max-width: 90% !important;
    width: auto !important;
    max-height: 400px !important;
  }
}
.modal-area section {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .modal-area section {
    margin-bottom: 20px;
  }
}
.modal-area .ttl {
  font-weight: bold;
  color: #d80c18;
  margin-bottom: 1em;
}
.modal-area .c-tbl-wrap {
  max-width: 860px;
}
.modal-area .ref a {
  color: #d80c18;
}

.p-top .section03 {
  background-color: #be000b;
  background-image: url(../img/top/top-campaign-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section03 {
    padding: 50px 4%;
  }
}
.p-top .section03 .heading {
  font-size: 48px;
  text-align: center;
  color: #fff;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading {
    font-size: 28px;
  }
}
.p-top .section03 .heading .small {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading .small {
    font-size: 13px;
  }
}
.p-top .section03 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 70px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section03 .list > li {
  background-color: #fff;
  width: 47.6470588235%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li {
    width: auto;
  }
}
.p-top .section03 .list > li a {
  display: block;
  text-decoration: none;
  padding: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li a {
    padding: 20px;
  }
}
.p-top .section03 .list > li a:hover {
  opacity: 0.7;
}
.p-top .section03 .list > li::before {
  content: "";
  background-color: #ffd200;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  width: 170px;
  height: 170px;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li::before {
    width: 75px;
    height: 75px;
  }
}
.p-top .section03 .list > li .ttl {
  font-size: 24px;
  color: #be000b;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .list > li .ttl {
    font-size: 15px;
  }
}
.p-top .section03 .list > li .img {
  margin-bottom: 1em;
}

.p-top .section04 {
  background-color: #fce6e8;
  background-image: url(../img/top/top-pink-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section04 {
    padding: 50px 4%;
  }
}
.p-top .section04 .heading {
  font-size: 48px;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .heading {
    font-size: 28px;
  }
}
.p-top .section04 .heading strong {
  color: #be000b;
}
.p-top .section04 .list {
  background-color: #fff;
  border: 1px solid #000;
  height: 640px;
  padding: 30px 90px 30px 60px;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list {
    height: 350px;
    padding: 20px 40px 20px 20px;
  }
}
.p-top .section04 .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  border-bottom: 1px dotted #929292;
  font-size: 16px;
  padding: 30px 10px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list > li {
    gap: 20px;
    font-size: 1em;
    padding: 15px 4%;
  }
}
.p-top .section04 .list > li .ico {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top .section04 .list > li .star {
  color: #d80c18;
}
.p-top .section04 .list > li p {
  margin-bottom: 0;
}

.p-top .section05 {
  background-color: #ccc;
  background-image: url(../img/top/top-gray-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section05 {
    padding: 50px 4%;
  }
}
.p-top .section05 .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.p-top .section05 .heading {
  font-size: 48px;
  text-align: center;
  color: #d80c18;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .heading {
    font-size: 28px;
  }
}
.p-top .section05 .heading .small {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .heading .small {
    font-size: 13px;
  }
}
.p-top .section05 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 70px 160px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
}
.p-top .section05 .list > li {
  width: 14.1176470588%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .list > li {
    text-align: center;
    width: auto;
  }
}
.p-top .section05 .list > li::after {
  content: "→";
  font-size: 60px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -100px;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .list > li::after {
    content: "↓";
    font-size: 40px;
    text-align: center;
    top: auto;
    bottom: -50px;
    right: 0;
    left: 0;
  }
}
.p-top .section05 .list > li .img {
  text-align: center;
  margin-bottom: 20px;
}
.p-top .section05 .list > li .ttl {
  font-size: 24px;
  text-align: center;
  color: #d80c18;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .list > li .ttl {
    font-size: 18px;
  }
}
.p-top .section05 .list > li:last-child::after {
  display: none;
}

.p-top .section06 {
  background-color: #fce6e8;
  background-image: url(../img/top/top-pink-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section06 {
    padding: 50px 4%;
  }
}
.p-top .section06 .heading {
  font-size: 48px;
  text-align: center;
  color: #d80c18;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .heading {
    font-size: 28px;
  }
}
.p-top .section06 .heading .small {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .heading .small {
    font-size: 13px;
  }
}
.p-top .section06 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section06 dl {
    margin-bottom: 20px;
  }
}
.p-top .section06 dl div {
  background-color: #fff;
  border: 1px solid #000;
  padding: 20px 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section06 dl div {
    padding: 20px;
  }
}
.p-top .section06 dl dt, .p-top .section06 dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section06 dl dt, .p-top .section06 dl dd {
    padding: 10px 0;
  }
}
.p-top .section06 dl dt::before, .p-top .section06 dl dd::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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  width: 35px;
  height: 35px;
}
.p-top .section06 dl dt {
  border-bottom: 1px dotted #929292;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-top .section06 dl dt {
    font-size: 1em;
  }
}
.p-top .section06 dl dt::before {
  content: "Q";
  background-color: #000;
}
.p-top .section06 dl dd::before {
  content: "A";
  background-color: #d80c18;
}

.p-top .section07 {
  background-color: #ccc;
  background-image: url(../img/top/top-gray-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section07 {
    padding: 50px 4%;
  }
}
.p-top .section07 .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.p-top .section07 .heading {
  font-size: 48px;
  text-align: center;
  color: #d80c18;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .heading {
    font-size: 28px;
  }
}
.p-top .section07 .heading .small {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .heading .small {
    font-size: 13px;
  }
}
.p-top .section07 .list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 70px 4.1176470588%;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .list01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.p-top .section07 .list01 > li {
  text-align: center;
  width: 30.5882352941%;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .list01 > li {
    width: auto;
  }
}
.p-top .section07 .list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 4.1176470588%;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .list02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}
.p-top .section07 .list02 > li {
  width: 30.5882352941%;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .list02 > li {
    width: auto;
  }
}
.p-top .section07 .list02 > li a {
  display: block;
  text-decoration: none;
  background-color: #f0f0f0;
  border: 1px solid #000;
  font-size: 16px;
  text-align: center;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section07 .list02 > li a {
    font-size: 15px;
  }
}
.p-top .section07 .list02 > li a::after {
  content: "";
  background-color: #000;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  position: absolute;
  right: 4px;
  bottom: 4px;
}
.p-top .section07 .list02 > li a:hover {
  opacity: 0.7;
}

.p-top .section08 {
  background-color: #ccc;
  background-image: url(../img/top/top-reason-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section08 {
    padding: 50px 4%;
  }
}
.p-top .section08 .heading {
  font-size: 48px;
  text-align: center;
  color: #fff;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section08 .heading {
    font-size: 28px;
  }
}
.p-top .section08 .heading .small {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-top .section08 .heading .small {
    font-size: 13px;
  }
}
.p-top .section08 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 70px 4.1176470588%;
}
@media screen and (max-width: 768px) {
  .p-top .section08 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.p-top .section08 .list > li {
  text-align: center;
  width: 30.5882352941%;
}
@media screen and (max-width: 768px) {
  .p-top .section08 .list > li {
    width: auto;
  }
}

.p-top .section09 {
  background-color: #ccc;
  background-image: url(../img/top/top-gray-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 120px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section09 {
    padding: 50px 4%;
  }
}
.p-top .section09 .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.p-top .section09 .heading {
  font-size: 48px;
  text-align: center;
  color: #d80c18;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section09 .heading {
    font-size: 28px;
  }
}
.p-top .section09 .heading .small {
  font-family: "小塚ゴシック Pr6N", KozGoStd, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
  font-size: 18px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-top .section09 .heading .small {
    font-size: 13px;
  }
}
.p-top .section09 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 4.1176470588%;
}
@media screen and (max-width: 768px) {
  .p-top .section09 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-top .section09 .list > li {
  width: 30.5882352941%;
}
@media screen and (max-width: 768px) {
  .p-top .section09 .list > li {
    width: auto;
  }
}
.p-top .section09 .list > li .map {
  border: 1px solid #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section09 .list > li .map {
    margin-bottom: 10px;
  }
}
.p-top .section09 .list > li .map iframe {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .p-top .section09 .list > li .map iframe {
    height: 220px;
  }
}
.p-top .section09 .list > li a {
  font-size: 24px;
  color: #d80c18;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-top .section09 .list > li a {
    font-size: 18px;
  }
}

.sec-contact {
  background-color: #000;
  background-image: url(../img/common/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 4%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sec-contact {
    padding: 40px 4%;
  }
}
.sec-contact .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.sec-contact .heading {
  font-size: 24px;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .sec-contact .heading {
    font-size: 15px;
  }
}
.sec-contact .tel-area {
  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 20px;
}
@media screen and (max-width: 768px) {
  .sec-contact .tel-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec-contact .tel-area p {
  margin-bottom: 0;
}
.sec-contact .tel-area .ttl {
  background-color: #c41721;
  color: #fff;
  font-size: 18px;
  padding: 3px 20px;
}
@media screen and (max-width: 768px) {
  .sec-contact .tel-area .ttl {
    font-size: 13px;
    padding: 3px 10px;
  }
}
.sec-contact .tel-area .tel a {
  font-size: 52px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .sec-contact .tel-area .tel a {
    font-size: 34px;
  }
}
.sec-contact .tel-area .time {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .sec-contact .tel-area .time {
    font-size: 13px;
  }
}
.sec-contact .btn {
  max-width: 700px;
  margin: 20px auto;
}
@media screen and (max-width: 768px) {
  .sec-contact .btn {
    max-width: 250px;
  }
}
.sec-contact .btn a {
  display: block;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 21px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .sec-contact .btn a {
    font-size: 15px;
    padding: 15px;
  }
}
.sec-contact .btn a::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-image: url(../img/common/ico-mail.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 28px;
  height: 21px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .sec-contact .btn a::before {
    width: 1em;
    height: 1em;
  }
}
.sec-contact .btn a:hover {
  opacity: 0.7;
}

.sec-link {
  padding: 50px 4%;
}
.sec-link .inner {
  max-width: 1700px;
  margin: 0 auto;
}
.sec-link .link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 100px;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec-link .link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.sec-link .link-list > li {
  width: 47.0588235294%;
}
@media screen and (max-width: 768px) {
  .sec-link .link-list > li {
    width: auto;
  }
}
.sec-link .link-list > li a {
  display: block;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #000;
  font-size: 16px;
  text-align: center;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .sec-link .link-list > li a {
    font-size: 15px;
  }
}
.sec-link .link-list > li a::after {
  content: "";
  background-color: #000;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  position: absolute;
  right: 4px;
  bottom: 4px;
}
.sec-link .link-list > li a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
archive
--------------------------------------------------*/
.pagecontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 150px;
  padding: 0 4%;
}
@media screen and (max-width: 768px) {
  .pagecontent {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 768px) {
  .pagecontent .left {
    display: none;
  }
}
.pagecontent .right {
  width: 100%;
}

.side {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .side {
    display: none;
  }
}
.side .side-box {
  border: 1px solid #c0c0c0;
}
.side .side-head {
  background-color: #000;
  color: #fff;
  font-size: 15px;
  text-align: center;
  padding: 10px;
}
.side .side-body {
  padding: 0 20px;
}
.side .side-calender table caption {
  font-size: 15px;
  text-align: center;
  padding: 10px;
}
.side .side-calender table th, .side .side-calender table td {
  font-size: 15px;
  text-align: center;
  padding: 5px;
}
.side .side-calender table th {
  background-color: #eee;
  font-weight: normal;
}
.side .side-calender table tbody a {
  text-decoration: underline;
  color: #d80c18;
}
.side .side-calender table tbody a:hover {
  text-decoration: none;
}
.side .side-calender table tfoot a {
  text-decoration: underline;
}
.side .side-calender table tfoot a:hover {
  text-decoration: none;
}
.side .side-calender table .prev {
  text-align: left;
}
.side .side-calender table .next {
  text-align: right;
}
.side .side-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  border-bottom: 1px dotted #929292;
  font-size: 15px;
  padding: 14px 10px 14px 16px;
  position: relative;
}
.side .side-list > li::before {
  content: "";
  background-color: #000;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 24px;
  left: 3px;
}
.side .side-list > li:last-child {
  border-bottom: none;
}
.side .side-list > li a {
  text-decoration: none;
}
.side .side-list > li a:hover {
  text-decoration: underline;
}
.side .side-archive select {
  border: 1px solid #c5c5c5;
  width: 100%;
  margin: 20px 0;
  padding: 10px;
}

.p-archive .archive-heading {
  font-size: 30px;
  border-bottom: 2px solid #d80c18;
  margin-bottom: 40px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-archive .archive-heading {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.p-archive .article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 40px;
  border: 1px solid #000;
  margin-bottom: 30px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-archive .article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 15px;
  }
}
.p-archive .article .img {
  text-align: center;
  width: 26.0416666667%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-archive .article .img {
    width: auto;
  }
}
.p-archive .article .ttl {
  font-size: 18px;
  color: #d80c18;
}
@media screen and (max-width: 768px) {
  .p-archive .article .ttl {
    font-size: 13px;
  }
}
.p-archive .article .ttl a:hover {
  text-decoration: none;
}
.p-archive .article .btn {
  max-width: 150px;
  margin: 20px 0 0 auto;
}
.p-archive .article .btn a {
  display: block;
  background-color: #d80c18;
  border: 1px solid #d80c18;
  border-radius: 0;
  color: #fff;
  font-size: 13px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-archive .article .btn a {
    font-size: 13px;
    padding: 10px;
  }
}
.p-archive .article .btn a .arrow {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 1em;
  margin: 0 auto 0 8px;
  position: relative;
}
.p-archive .article .btn a .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 18px;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
.p-archive .article .btn a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 8px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 2px) 50%;
          transform-origin: calc(100% - 2px) 50%;
}
.p-archive .article .btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
archive(single)
--------------------------------------------------*/
.p-single .article-heading {
  font-size: 30px;
  border-bottom: 2px solid #d80c18;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-single .article-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.p-single .category {
  text-align: right;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-single .category {
    margin-bottom: 20px;
  }
}
.p-single .article a {
  text-decoration: underline;
  color: #d80c18;
}
.p-single .article a:hover {
  text-decoration: none;
}
.p-single .article-foot {
  border-top: 1px solid #000;
  text-align: right;
  margin-top: 60px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-single .article-foot {
    margin-top: 30px;
    padding-top: 10px;
  }
}

/*--------------------------------------------------
beginner
--------------------------------------------------*/
.p-beginner .sec-nav .nav-list {
  border: 1px solid #c0c0c0;
  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;
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 4%;
}
@media screen and (max-width: 768px) {
  .p-beginner .sec-nav .nav-list {
    padding: 20px;
  }
}
.p-beginner .sec-nav .nav-list > li {
  font-size: 16px;
  padding: 0 2em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-beginner .sec-nav .nav-list > li {
    font-size: 13px;
    padding: 0 1em;
  }
}
.p-beginner .sec-nav .nav-list > li::after {
  content: "";
  display: inline-block;
  background-color: #000;
  width: 1px;
  height: 1em;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.p-beginner .sec-nav .nav-list > li a {
  text-decoration: none;
  position: relative;
}
.p-beginner .sec-nav .nav-list > li a:hover {
  text-decoration: underline;
}
.p-beginner .sec-nav .nav-list > li:last-child::after {
  display: none;
}

.p-beginner .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 70px;
}
@media screen and (max-width: 768px) {
  .p-beginner .section01 .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-beginner .section01 .flex .img {
  text-align: center;
  width: 32.3076923077%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-beginner .section01 .flex .img {
    width: auto;
  }
}
.p-beginner .section01 .flex .list {
  text-indent: -1em;
  margin: 0 0 1em 1em;
}
.p-beginner .section01 .flex .list > li::before {
  content: "●";
  color: #d80c18;
}

.p-beginner .section02 .box {
  background-color: #f4f4f4;
  padding: 50px 4%;
}
@media screen and (max-width: 768px) {
  .p-beginner .section02 .box {
    padding: 40px 20px;
  }
}
.p-beginner .section02 .box .txt {
  font-size: 18px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-beginner .section02 .box .txt {
    font-size: 13px;
    text-align: left;
  }
}
.p-beginner .section02 .box .tel-area {
  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 20px;
}
@media screen and (max-width: 768px) {
  .p-beginner .section02 .box .tel-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-beginner .section02 .box .tel-area p {
  margin-bottom: 0;
}
.p-beginner .section02 .box .tel-area .ttl {
  background-color: #c41721;
  color: #fff;
  padding: 3px 20px;
}
@media screen and (max-width: 768px) {
  .p-beginner .section02 .box .tel-area .ttl {
    padding: 3px 10px;
  }
}
.p-beginner .section02 .box .tel-area .tel a {
  font-size: 42px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .p-beginner .section02 .box .tel-area .tel a {
    font-size: 32px;
  }
}

.p-beginner .section03 .ref-box {
  border: 1px solid #929292;
  font-size: 16px;
  text-align: center;
  color: #d80c18;
  margin: 40px 0;
  padding: 30px 4%;
}
@media screen and (max-width: 768px) {
  .p-beginner .section03 .ref-box {
    font-size: 13px;
    text-align: left;
    margin: 30px 0;
    padding: 20px;
  }
}
.p-beginner .section03 .ref-box p {
  margin-bottom: 0;
}
.p-beginner .section03 .list {
  margin-bottom: 1em;
}
.p-beginner .section03 .list > li {
  border-bottom: 1px dotted #929292;
  text-indent: -1em;
  padding: 20px 1em;
}
.p-beginner .section03 .list > li::before {
  content: "●";
  color: #d80c18;
}

.p-beginner .section04 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 70px;
}
@media screen and (max-width: 768px) {
  .p-beginner .section04 .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-beginner .section04 .flex .img {
  text-align: center;
  width: 32.3076923077%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-beginner .section04 .flex .img {
    width: auto;
  }
}
.p-beginner .section04 .flex .list {
  margin-bottom: 1em;
}
.p-beginner .section04 .flex .list > li {
  text-indent: -1em;
  margin-left: 1em;
}
.p-beginner .section04 .flex .list > li::before {
  content: "●";
  color: #d80c18;
}

.p-beginner .section05 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 70px;
}
@media screen and (max-width: 768px) {
  .p-beginner .section05 .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-beginner .section05 .flex .img {
  text-align: center;
  width: 32.3076923077%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-beginner .section05 .flex .img {
    width: auto;
  }
}

.p-beginner .sec-link {
  padding-top: 0;
}
.p-beginner .sec-link .link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-beginner .sec-link .link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-beginner .sec-link .link-list > li {
  width: 47.6923076923%;
}
@media screen and (max-width: 768px) {
  .p-beginner .sec-link .link-list > li {
    width: auto;
  }
}
.p-beginner .sec-link .link-list > li a {
  display: block;
  text-decoration: none;
  background-color: #f0f0f0;
  border: 1px solid #000;
  font-size: 16px;
  text-align: center;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-beginner .sec-link .link-list > li a {
    font-size: 15px;
  }
}
.p-beginner .sec-link .link-list > li a::after {
  content: "";
  background-color: #000;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  position: absolute;
  right: 4px;
  bottom: 4px;
}
.p-beginner .sec-link .link-list > li a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
flow
--------------------------------------------------*/
.p-flow .section01 .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: 80px;
}
@media screen and (max-width: 768px) {
  .p-flow .section01 .list {
    gap: 40px;
  }
}
.p-flow .section01 .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 70px;
  background-color: #fef0f1;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow .section01 .list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}
.p-flow .section01 .list > li::after {
  content: "";
  background-color: #dfdfdf;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 90px;
  height: 40px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: -60px;
}
@media screen and (max-width: 768px) {
  .p-flow .section01 .list > li::after {
    width: 45px;
    height: 20px;
    bottom: -30px;
  }
}
.p-flow .section01 .list > li .ico {
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-flow .section01 .list > li .ttl {
  font-size: 28px;
  color: #d80c18;
}
@media screen and (max-width: 768px) {
  .p-flow .section01 .list > li .ttl {
    font-size: 14px;
  }
}
.p-flow .section01 .list > li:last-child::after {
  display: none;
}

.p-flow .section02 .img {
  text-align: center;
  margin-bottom: 50px;
}
.p-flow .section02 .list > li {
  border-bottom: 1px dotted #929292;
  text-indent: -1em;
  padding: 20px 1em;
}
.p-flow .section02 .list > li::before {
  content: "●";
  color: #d80c18;
}

.p-flow .sec-link {
  padding-top: 0;
}
.p-flow .sec-link .link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-flow .sec-link .link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-flow .sec-link .link-list > li {
  width: 47.6923076923%;
}
@media screen and (max-width: 768px) {
  .p-flow .sec-link .link-list > li {
    width: auto;
  }
}
.p-flow .sec-link .link-list > li a {
  display: block;
  text-decoration: none;
  background-color: #f0f0f0;
  border: 1px solid #000;
  font-size: 16px;
  text-align: center;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-flow .sec-link .link-list > li a {
    font-size: 15px;
  }
}
.p-flow .sec-link .link-list > li a::after {
  content: "";
  background-color: #000;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  position: absolute;
  right: 4px;
  bottom: 4px;
}
.p-flow .sec-link .link-list > li a:hover {
  opacity: 0.7;
}

.p-flow .sec-faq {
  background-color: #f0f0f0;
  padding-top: 120px;
}
.p-flow .sec-faq dl div {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-flow .sec-faq dl div {
    margin-bottom: 10px;
  }
}
.p-flow .sec-faq dl dt, .p-flow .sec-faq dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 20px 75px 20px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow .sec-faq dl dt, .p-flow .sec-faq dl dd {
    padding: 10px 38px 10px 10px;
  }
}
.p-flow .sec-faq dl dt::before, .p-flow .sec-faq dl dd::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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  width: 35px;
  height: 35px;
}
.p-flow .sec-faq dl dt {
  background-color: #fff;
  border: 1px solid #c0c0c0;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-flow .sec-faq dl dt {
    font-size: 1em;
  }
}
.p-flow .sec-faq dl dt::before {
  content: "Q";
  background-color: #000;
}
.p-flow .sec-faq dl dt .acc {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .p-flow .sec-faq dl dt .acc {
    top: 10px;
    right: 10px;
  }
}
.p-flow .sec-faq dl dt .acc::before, .p-flow .sec-faq dl dt .acc::after {
  content: "";
  display: block;
  background-color: #000;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
}
.p-flow .sec-faq dl dt .acc::before {
  width: 20px;
  height: 2px;
  top: 9px;
}
.p-flow .sec-faq dl dt .acc::after {
  width: 2px;
  height: 20px;
  top: 0;
  right: 9px;
}
.p-flow .sec-faq dl dt.is-active .acc::after {
  display: none;
}
.p-flow .sec-faq dl dd::before {
  content: "A";
  background-color: #d80c18;
}

/*--------------------------------------------------
faq
--------------------------------------------------*/
.p-faq .section01 dl div {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 dl div {
    margin-bottom: 10px;
  }
}
.p-faq .section01 dl dt, .p-faq .section01 dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 20px 75px 20px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 dl dt, .p-faq .section01 dl dd {
    padding: 10px 38px 10px 10px;
  }
}
.p-faq .section01 dl dt::before, .p-faq .section01 dl dd::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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  width: 35px;
  height: 35px;
}
.p-faq .section01 dl dt {
  border: 1px solid #c0c0c0;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 dl dt {
    font-size: 1em;
  }
}
.p-faq .section01 dl dt::before {
  content: "Q";
  background-color: #000;
}
.p-faq .section01 dl dt .acc {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .p-faq .section01 dl dt .acc {
    top: 10px;
    right: 10px;
  }
}
.p-faq .section01 dl dt .acc::before, .p-faq .section01 dl dt .acc::after {
  content: "";
  display: block;
  background-color: #000;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
}
.p-faq .section01 dl dt .acc::before {
  width: 20px;
  height: 2px;
  top: 9px;
}
.p-faq .section01 dl dt .acc::after {
  width: 2px;
  height: 20px;
  top: 0;
  right: 9px;
}
.p-faq .section01 dl dt.is-active .acc::after {
  display: none;
}
.p-faq .section01 dl dd::before {
  content: "A";
  background-color: #d80c18;
}

/*--------------------------------------------------
transport
--------------------------------------------------*/
.p-transport .section01 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 6.1538461538%;
}
@media screen and (max-width: 768px) {
  .p-transport .section01 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-transport .section01 .list > li {
  max-width: 380px;
  width: 29.2307692308%;
}
@media screen and (max-width: 768px) {
  .p-transport .section01 .list > li {
    width: auto;
    margin: 0 auto;
  }
}
.p-transport .section01 .list > li .img {
  text-align: center;
  margin-bottom: 1em;
}

.p-transport .section02 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px 4.6153846154%;
}
@media screen and (max-width: 768px) {
  .p-transport .section02 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-transport .section02 .list > li {
  max-width: 280px;
  width: 21.5384615385%;
}
@media screen and (max-width: 768px) {
  .p-transport .section02 .list > li {
    width: auto;
    margin: 0 auto;
  }
}
.p-transport .section02 .list > li .ttl {
  font-size: 21px;
  color: #d80c18;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-transport .section02 .list > li .ttl {
    font-size: 18px;
  }
}
.p-transport .section02 .list > li .img {
  text-align: center;
  margin-bottom: 1em;
}
.p-transport .section02 .btm-txt {
  font-size: 21px;
  text-align: center;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .p-transport .section02 .btm-txt {
    font-size: 1em;
    text-align: left;
    margin: 20px 0;
  }
}
.p-transport .section02 .btm-txt .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffe932));
  background: linear-gradient(transparent 50%, #ffe932 50%);
}

.p-transport .section03 .bnr {
  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: #ccc;
  background-image: url(../img/transport/transport-bnr-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-size: 24px;
  text-align: center;
  color: #fff;
  height: 300px;
  margin-bottom: 80px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .p-transport .section03 .bnr {
    font-size: 1em;
    text-align: left;
    height: auto;
    margin-bottom: 20px;
  }
}
.p-transport .section03 .bnr p {
  margin-bottom: 0;
}
.p-transport .section03 .link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 60px;
}
@media screen and (max-width: 768px) {
  .p-transport .section03 .link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-transport .section03 .link-list > li {
  width: 47.6923076923%;
}
@media screen and (max-width: 768px) {
  .p-transport .section03 .link-list > li {
    width: auto;
  }
}
.p-transport .section03 .link-list > li a {
  display: block;
  text-decoration: none;
  background-color: #c41721;
  border: 1px solid #c41721;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 20px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-transport .section03 .link-list > li a {
    font-size: 15px;
  }
}
.p-transport .section03 .link-list > li a::after {
  content: "";
  background-color: #fff;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  position: absolute;
  right: 4px;
  bottom: 4px;
}
.p-transport .section03 .link-list > li a:hover {
  opacity: 0.7;
}

.p-transport .sec-faq {
  background-color: #f0f0f0;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-transport .sec-faq {
    padding-top: 50px;
  }
}
.p-transport .sec-faq dl div {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-transport .sec-faq dl div {
    margin-bottom: 10px;
  }
}
.p-transport .sec-faq dl dt, .p-transport .sec-faq dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 20px 75px 20px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-transport .sec-faq dl dt, .p-transport .sec-faq dl dd {
    padding: 10px 38px 10px 10px;
  }
}
.p-transport .sec-faq dl dt::before, .p-transport .sec-faq dl dd::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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  width: 35px;
  height: 35px;
}
.p-transport .sec-faq dl dt {
  background-color: #fff;
  border: 1px solid #c0c0c0;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-transport .sec-faq dl dt {
    font-size: 1em;
  }
}
.p-transport .sec-faq dl dt::before {
  content: "Q";
  background-color: #000;
}
.p-transport .sec-faq dl dt .acc {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .p-transport .sec-faq dl dt .acc {
    top: 10px;
    right: 10px;
  }
}
.p-transport .sec-faq dl dt .acc::before, .p-transport .sec-faq dl dt .acc::after {
  content: "";
  display: block;
  background-color: #000;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
}
.p-transport .sec-faq dl dt .acc::before {
  width: 20px;
  height: 2px;
  top: 9px;
}
.p-transport .sec-faq dl dt .acc::after {
  width: 2px;
  height: 20px;
  top: 0;
  right: 9px;
}
.p-transport .sec-faq dl dt.is-active .acc::after {
  display: none;
}
.p-transport .sec-faq dl dd::before {
  content: "A";
  background-color: #d80c18;
}

/*--------------------------------------------------
vanning
--------------------------------------------------*/
.p-vanning .section01 .catch {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #d80c18;
}
@media screen and (max-width: 768px) {
  .p-vanning .section01 .catch {
    font-size: 18px;
  }
}
.p-vanning .section01 .box {
  background-color: #f4f4f4;
  margin: 50px 0;
  padding: 60px 4%;
}
@media screen and (max-width: 768px) {
  .p-vanning .section01 .box {
    padding: 20px;
  }
}
.p-vanning .section01 .box .ttl {
  font-size: 28px;
  text-align: center;
  color: #d80c18;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-vanning .section01 .box .ttl {
    font-size: 18px;
  }
}
.p-vanning .section01 .box .txt {
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .p-vanning .section01 .box .txt {
    text-align: left;
  }
}
.p-vanning .section01 .box .ba-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-vanning .section01 .box .ba-list {
    gap: 40px;
  }
}
.p-vanning .section01 .box .ba-list > li {
  width: 41.1016949153%;
  position: relative;
}
.p-vanning .section01 .box .ba-list > li::after {
  content: "";
  background-color: #d80c18;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 36px;
  height: 68px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -60px;
}
@media screen and (max-width: 768px) {
  .p-vanning .section01 .box .ba-list > li::after {
    width: 20px;
    height: 30px;
    right: -30px;
  }
}
.p-vanning .section01 .box .ba-list > li:last-child::after {
  display: none;
}
.p-vanning .section01 .box .img-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-vanning .section01 .box .img-list {
    gap: 20px;
  }
}
.p-vanning .section01 .box .img-list > li {
  width: 41.1016949153%;
}
@media screen and (max-width: 768px) {
  .p-vanning .section01 .box .img-list > li {
    width: 48%;
  }
}
.p-vanning .section01 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 3.8461538462%;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-vanning .section01 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.p-vanning .section01 .list > li {
  border: 1px solid #000;
  width: 30.7692307692%;
  padding: 70px 40px 30px;
  font-size: 18px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-vanning .section01 .list > li {
    font-size: 1em;
    width: auto;
    padding: 40px 20px 20px;
  }
}
.p-vanning .section01 .list > li .num {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 160px;
  padding: 3px;
  position: absolute;
  top: 0;
  left: 0;
}
.p-vanning .section01 .list > li .img {
  text-align: center;
  margin-bottom: 30px;
}

/*--------------------------------------------------
pickup
--------------------------------------------------*/
.p-pickup .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 80px;
}
@media screen and (max-width: 768px) {
  .p-pickup .section01 .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-pickup .section01 .flex .img {
  text-align: center;
  width: 46.1538461538%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-pickup .section01 .flex .img {
    width: auto;
  }
}
.p-pickup .section01 .flex .tel a {
  text-decoration: none;
  font-size: 24px;
  color: #d80c18;
}
.p-pickup .section01 .flex .c-btn a {
  margin: 0;
}

/*--------------------------------------------------
touring
--------------------------------------------------*/
.p-touring .section01 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 80px;
}
@media screen and (max-width: 768px) {
  .p-touring .section01 .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-touring .section01 .flex .img {
  text-align: center;
  width: 46.1538461538%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-touring .section01 .flex .img {
    width: auto;
  }
}
.p-touring .section01 .flex .c-btn a {
  margin: 0;
}

/*--------------------------------------------------
company
--------------------------------------------------*/
.p-company .section01 .txt {
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-company .section01 .txt {
    font-size: 18px;
    text-align: left;
  }
}

.p-company .section02 .txt {
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-company .section02 .txt {
    font-size: 18px;
    text-align: left;
  }
}

.p-company .section04 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 6.1538461538%;
}
@media screen and (max-width: 768px) {
  .p-company .section04 .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.p-company .section04 .list > li {
  width: 46.9230769231%;
}
@media screen and (max-width: 768px) {
  .p-company .section04 .list > li {
    width: 100%;
  }
}
.p-company .section04 .list > li .map {
  border: 1px solid #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-company .section04 .list > li .map {
    margin-bottom: 10px;
  }
}
.p-company .section04 .list > li .map iframe {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .p-company .section04 .list > li .map iframe {
    height: 200px;
  }
}

/*--------------------------------------------------
recruit
--------------------------------------------------*/
.p-recruit .section01 .catch {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #d80c18;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .catch {
    font-size: 18px;
    text-align: left;
  }
}
.p-recruit .section01 .img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .img-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.p-recruit .section01 .img-list > li {
  text-align: center;
  width: 30.7692307692%;
}
@media screen and (max-width: 768px) {
  .p-recruit .section01 .img-list > li {
    width: auto;
  }
}

.p-recruit .section02 .job-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .job-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.p-recruit .section02 .job-list > li {
  background-color: #f0f0f0;
  border: 1px solid #000;
  font-size: 16px;
  text-align: center;
  width: 47.6923076923%;
  padding: 20px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-recruit .section02 .job-list > li {
    font-size: 15px;
    width: auto;
  }
}
.p-recruit .section02 .job-list > li::after {
  content: "";
  background-color: #000;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  position: absolute;
  right: 4px;
  bottom: 4px;
}
.p-recruit .section02 .job-list > li.is-select {
  background-color: #000;
  color: #fff;
  cursor: unset;
}
.p-recruit .section02 .job-list > li.is-select::after {
  background-color: #fff;
}

.p-recruit .section03 .job-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 .job-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.p-recruit .section03 .job-list > li {
  background-color: #f0f0f0;
  border: 1px solid #000;
  font-size: 16px;
  text-align: center;
  width: 47.6923076923%;
  padding: 20px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-recruit .section03 .job-list > li {
    font-size: 15px;
    width: auto;
  }
}
.p-recruit .section03 .job-list > li::after {
  content: "";
  background-color: #000;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  width: 15px;
  height: 15px;
  position: absolute;
  right: 4px;
  bottom: 4px;
}
.p-recruit .section03 .job-list > li.is-select {
  background-color: #000;
  color: #fff;
  cursor: unset;
}
.p-recruit .section03 .job-list > li.is-select::after {
  background-color: #fff;
}

.p-recruit .sec-faq {
  background-color: #f0f0f0;
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-recruit .sec-faq {
    padding-top: 50px;
  }
}
.p-recruit .sec-faq dl div {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-recruit .sec-faq dl div {
    margin-bottom: 10px;
  }
}
.p-recruit .sec-faq dl dt, .p-recruit .sec-faq dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 20px 75px 20px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-recruit .sec-faq dl dt, .p-recruit .sec-faq dl dd {
    padding: 10px 38px 10px 10px;
  }
}
.p-recruit .sec-faq dl dt::before, .p-recruit .sec-faq dl dd::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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  width: 35px;
  height: 35px;
}
.p-recruit .sec-faq dl dt {
  background-color: #fff;
  border: 1px solid #c0c0c0;
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-recruit .sec-faq dl dt {
    font-size: 1em;
  }
}
.p-recruit .sec-faq dl dt::before {
  content: "Q";
  background-color: #000;
}
.p-recruit .sec-faq dl dt .acc {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .p-recruit .sec-faq dl dt .acc {
    top: 10px;
    right: 10px;
  }
}
.p-recruit .sec-faq dl dt .acc::before, .p-recruit .sec-faq dl dt .acc::after {
  content: "";
  display: block;
  background-color: #000;
  width: 20px;
  height: 20px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
}
.p-recruit .sec-faq dl dt .acc::before {
  width: 20px;
  height: 2px;
  top: 9px;
}
.p-recruit .sec-faq dl dt .acc::after {
  width: 2px;
  height: 20px;
  top: 0;
  right: 9px;
}
.p-recruit .sec-faq dl dt.is-active .acc::after {
  display: none;
}
.p-recruit .sec-faq dl dd::before {
  content: "A";
  background-color: #d80c18;
}

/*--------------------------------------------------
contact
--------------------------------------------------*/
/*--------------------------------------------------
estimate
--------------------------------------------------*/
.p-estimate .section01 .box-head {
  background-color: #d80c18;
  color: #fff;
  font-size: 18px;
  padding: 15px 30px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .box-head {
    font-size: 13px;
    margin-bottom: 15px;
    padding: 14px 25px;
  }
}
.p-estimate .section01 .box-head::before {
  content: "";
  background-color: #fff;
  width: 20px;
  height: 3px;
  position: absolute;
  top: 26px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .box-head::before {
    width: 15px;
    height: 2px;
    top: 24px;
  }
}
.p-estimate .section01 .box-body {
  background-color: #fff;
  border: 1px solid #c0c0c0;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .box-body {
    padding: 20px;
  }
}
.p-estimate .section01 .box-body a {
  color: #d80c18;
}
.p-estimate .section01 .box-body a:hover {
  text-decoration: none;
}
.p-estimate .section01 .sub-box {
  background-color: #f4f4f4;
  margin-bottom: 1em;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .sub-box {
    padding: 20px;
  }
}
.p-estimate .section01 section {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 section {
    margin-bottom: 20px;
  }
}
.p-estimate .section01 section:last-child {
  margin-bottom: 0;
}
.p-estimate .section01 .ttl {
  color: #d80c18;
  margin-bottom: 1em;
}
.p-estimate .section01 .roof-img {
  margin: 1em 0;
}
.p-estimate .section01 select {
  background-color: #f0f0f0;
  border: 1px solid #000;
  border-radius: 3px;
  max-width: 100%;
  padding: 3px;
}
.p-estimate .section01 .ref-box {
  border: 1px solid #d80c18;
  color: #d80c18;
  margin: 50px 0;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .ref-box {
    margin: 20px 0;
    padding: 20px;
  }
}
.p-estimate .section01 .ref-box p {
  margin-bottom: 0;
}
.p-estimate .section01 .box-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px 100px;
  margin: 40px 0;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .box-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 20px 0;
  }
}
.p-estimate .section01 .box-flex .box {
  width: 46.1538461538%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .box-flex .box {
    width: auto;
  }
}
.p-estimate .section01 .box-flex .box::after {
  content: "";
  background-color: #afafaf;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 40px;
  height: 85px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -70px;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .box-flex .box::after {
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    width: 40px;
    height: 20px;
    top: auto;
    right: 0;
    left: 0;
    bottom: -35px;
  }
}
.p-estimate .section01 .box-flex .box:last-child::after {
  display: none;
}
.p-estimate .section01 .box-flex .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.p-estimate .section01 .btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .btn-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin: 20px auto;
  }
}
.p-estimate .section01 .btn-list .reset-btn {
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .btn-list .reset-btn {
    max-width: 250px;
    margin: 0 auto;
  }
}
.p-estimate .section01 .btn-list .reset-btn button {
  display: block;
  background-color: #5fb2bc;
  border: 1px solid #5fb2bc;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .btn-list .reset-btn button {
    font-size: 13px;
    padding: 15px;
  }
}
.p-estimate .section01 .btn-list .reset-btn button:hover {
  opacity: 0.7;
}
.p-estimate .section01 .btn-list .submit-btn {
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .btn-list .submit-btn {
    max-width: 250px;
    margin: 0 auto;
  }
}
.p-estimate .section01 .btn-list .submit-btn button {
  display: block;
  background-color: #44a637;
  border: 1px solid #44a637;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .btn-list .submit-btn button {
    font-size: 13px;
    padding: 15px;
  }
}
.p-estimate .section01 .btn-list .submit-btn button:hover {
  opacity: 0.7;
}
.p-estimate .section01 .btn {
  max-width: 550px;
  margin: 40px auto;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .btn {
    max-width: 250px;
  }
}
.p-estimate .section01 .btn a {
  display: block;
  background-color: #d80c18;
  border: 1px solid #d80c18;
  border-radius: 0;
  color: #fff;
  font-size: 21px;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .btn a {
    font-size: 13px;
    padding: 15px;
  }
}
.p-estimate .section01 .btn a .arrow {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 1em;
  margin: 0 auto 0 10px;
  position: relative;
}
.p-estimate .section01 .btn a .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 30px;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
.p-estimate .section01 .btn a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 12px;
  height: 1px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 2px) 50%;
          transform-origin: calc(100% - 2px) 50%;
}
.p-estimate .section01 .btn a:hover {
  opacity: 0.7;
}
.p-estimate .section01 .btm-txt {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-estimate .section01 .btm-txt {
    text-align: left;
  }
}
.p-estimate .section01 .btm-txt a {
  color: #d80c18;
}
.p-estimate .section01 .btm-txt a:hover {
  text-decoration: none;
}

/*--------------------------------------------------
delivery
--------------------------------------------------*//*# sourceMappingURL=style.css.map */