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

#container {
  overflow-x: hidden;
  min-width: 320px;
}

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

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

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

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

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

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

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

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

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

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

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

/*==================================================
Layout
==================================================*/
/*--------------------------------------------------
Header
--------------------------------------------------*/
.header {
  background-color: #fff;
  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: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header .logo {
    height: 40px;
  }
}
.header .gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  .header .gnav {
    display: none;
  }
}
.header .gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
}
.header .gnav-list > li {
  font-size: 18px;
  font-size: clamp(12px, 1.2vw, 18px);
  position: relative;
  z-index: 99;
}
.header .gnav-list > li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .gnav-list > li a:hover {
  color: #fa192e;
}
.header .gnav-list > li:hover .drop {
  display: block;
}
.header .gnav-list .drop {
  display: none;
  padding-top: 50px;
  position: absolute;
  z-index: 9;
  top: 0;
  left: -20px;
}
.header .gnav-list .drop .balloon {
  background-color: #fdeff1;
  border-radius: 20px;
  width: 260px;
  padding: 20px;
  position: relative;
}
.header .gnav-list .drop .balloon::before {
  content: "";
  background-color: #fdeff1;
  -webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  width: 30px;
  height: 16px;
  margin: auto;
  position: absolute;
  top: -16px;
  left: 36px;
}
.header .gnav-list .drop .list > li {
  font-size: 18px;
}
.header .gnav-list .drop .list > li::before {
  content: "●";
  color: #fa192e;
}
.header .menu-btn {
  display: none;
  background-color: #fa192e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 9;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header .menu-btn {
    display: block;
  }
}
.header .menu-btn > span {
  display: block;
  background-color: #fff;
  border-radius: 3px;
  width: 25px;
  height: 3px;
  margin: auto;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .menu-btn > span:nth-child(2) {
  top: 19px;
}
.header .menu-btn > span:nth-child(3) {
  top: 28px;
}
.header .menu-btn.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) 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);
}
.header .menu {
  display: none;
  background-color: #fedde0;
  position: fixed;
  z-index: 9;
  top: 60px;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 0 4% 100px;
}
.header .menu-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.header .menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header .menu-list {
  max-width: 400px;
  width: 100%;
}
.header .menu-list > li {
  border-bottom: 1px solid #fa192e;
  font-size: 14px;
}
.header .menu-list > li:last-child {
  border-bottom: 0;
}
.header .menu-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.header .menu-list > li > a::before {
  content: "";
  background-color: #fa192e;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 28px;
  left: 10px;
}
.header .menu-list > li > a:hover {
  color: #fa192e;
}
.header .menu-list > li p {
  display: block;
  padding: 20px 10px;
  position: relative;
}
.header .menu-list > li p span {
  width: 40px;
  height: 40px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.header .menu-list > li p span::before, .header .menu-list > li p span::after {
  content: "";
  background-color: #fa192e;
  width: 25px;
  height: 3px;
  margin: auto;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
}
.header .menu-list > li p span::before {
  width: 25px;
  height: 3px;
  right: 10px;
}
.header .menu-list > li p span::after {
  width: 3px;
  height: 25px;
  right: 21px;
}
.header .menu-list > li p.is-active span::after {
  display: none;
}
.header .menu-list > li .drop {
  display: none;
}
.header .menu-list > li .drop .list > li {
  border-top: 1px solid #fa192e;
}
.header .menu-list > li .drop .list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 20px 20px 20px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.header .menu-list > li .drop .list > li > a::before {
  content: "";
  background-color: #fa192e;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 6px;
  height: 6px;
  position: absolute;
  top: 28px;
  left: 20px;
}
.header .menu-list > li .drop .list > li > a:hover {
  color: #fa192e;
}

/*--------------------------------------------------
Footer
--------------------------------------------------*/
.sec-time {
  background-color: #ccc;
  background-image: url(../img/common/sec-time-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 4%;
}
@media screen and (max-width: 768px) {
  .sec-time {
    padding: 40px 4%;
  }
}
.sec-time .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sec-time .heading {
  font-size: 40px;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .sec-time .heading {
    font-size: 20px;
  }
}
.sec-time .heading .small {
  display: block;
  font-size: 15px;
  color: #fa192e;
}
@media screen and (max-width: 768px) {
  .sec-time .heading .small {
    font-size: 12px;
  }
}
.sec-time .tblarea {
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .sec-time .tblarea {
    white-space: nowrap;
    overflow-y: scroll;
  }
}
.sec-time table {
  background-color: #fff;
}
.sec-time table th, .sec-time table td {
  font-size: 18px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .sec-time table th, .sec-time table td {
    font-size: 14px;
  }
}
.sec-time table th {
  background-color: #fa192e;
  border: 1px solid #fff;
  color: #fff;
}
.sec-time table td {
  border: 1px solid #fa192e;
  color: #fa192e;
  text-align: center;
}

.footer {
  border-top: 1px solid #fa192e;
  padding: 60px 4%;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 13px;
    padding: 30px 4% 15px;
  }
}
.footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 4%;
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer .address-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
}
@media screen and (max-width: 768px) {
  .footer .address-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 2em;
  }
}
.footer .logo {
  font-size: 18px;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .footer .logo {
    text-align: center;
  }
}
.footer .address {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .footer .address {
    text-align: center;
    margin-bottom: 2em;
  }
}
.footer .tel-list {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer .tel-list {
    font-size: 14px;
    text-align: center;
  }
}
.footer .tel-list .tel::before {
  content: "";
  display: inline-block;
  background-image: url(../img/common/tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-right: 10px;
}
.footer .tel-list .fax::before {
  content: "";
  display: inline-block;
  background-image: url(../img/common/fax.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-right: 10px;
}
.footer .nav {
  margin-bottom: 2em;
}
.footer .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1em 2em;
}
@media screen and (max-width: 768px) {
  .footer .nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1em 0;
  }
}
.footer .nav-list > li {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .footer .nav-list > li {
    font-size: 14px;
    padding: 0 1em;
  }
}
.footer .nav-list > li a:hover {
  text-decoration: underline;
}
.footer .copyright {
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    text-align: center;
  }
}

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

/*--------------------------------------------------
Main
--------------------------------------------------*/
.pagehead {
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fa192e;
  height: 400px;
  padding: 20px 4%;
}
@media screen and (max-width: 768px) {
  .pagehead {
    height: 200px;
  }
}
.pagehead .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1400px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.pagehead .pagettl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 60px;
  font-weight: normal;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl {
    font-size: 30px;
  }
}
.pagehead .pagettl .ico {
  width: 1em;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .pagehead .pagettl .ico {
    margin-right: 10px;
  }
}

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

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

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

.c-heading {
  font-size: 40px;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .c-heading {
    font-size: 20px;
  }
}
.c-heading .small {
  display: block;
  font-size: 15px;
  color: #fa192e;
}
@media screen and (max-width: 768px) {
  .c-heading .small {
    font-size: 12px;
  }
}

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

.c-btn {
  max-width: 320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-btn {
    max-width: 275px;
  }
}
.c-btn a {
  display: block;
  background-color: #202020;
  border: 1px solid #202020;
  border-radius: 0;
  color: #fff;
  font-size: 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) {
  .c-btn a {
    font-size: 13px;
  }
}
.c-btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Form
--------------------------------------------------*/
.form table tr {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.form table th, .form table td {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .form table th, .form table td {
    display: block;
    padding: 10px;
  }
}
.form table th {
  background-color: #f3f3f3;
  text-align: left;
  width: 300px;
}
@media screen and (max-width: 768px) {
  .form table th {
    width: auto;
  }
}
.form .required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  background-color: #dd3333;
  color: #fff;
  font-size: 9px;
  font-weight: normal;
  margin-left: 1em;
  padding: 1px 6px;
}
.form .col-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.form .row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.form label {
  cursor: pointer;
}
.form [type=text], .form [type=email], .form [type=tel] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 550px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form [type=number] {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 60px;
  width: 100%;
  min-height: 40px;
  padding: 10px;
}
.form select {
  border: 1px solid #ccc;
  padding: 10px;
}
.form textarea {
  background-color: #fff;
  border: 1px solid #ccc;
  max-width: 650px;
  width: 100%;
  height: 120px;
  padding: 10px;
}
.form ::-webkit-input-placeholder {
  color: #ccc;
}
.form ::-moz-placeholder {
  color: #ccc;
}
.form :-ms-input-placeholder {
  color: #ccc;
}
.form ::-ms-input-placeholder {
  color: #ccc;
}
.form ::placeholder {
  color: #ccc;
}
.form .privacy {
  margin: 2em 0;
}
.form .privacy .privacy-head {
  background-color: #f3f3f3;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
  text-align: center;
  padding: 1em 2em;
}
.form .privacy .privacy-body {
  border-bottom: 1px solid #ccc;
  height: 240px;
  padding: 2em;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  .form .privacy .privacy-body {
    height: 200px;
    padding: 1em;
  }
}
.form .privacy dl div {
  margin-bottom: 2em;
}
.form .privacy dl dt {
  font-weight: bold;
  color: #dd3333;
}
.form .agree {
  text-align: center;
  margin: 2em 0;
}
.form .btn {
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .form .btn {
    max-width: 275px;
  }
}
.form .btn button, .form .btn input {
  background-color: #202020;
  border: 1px solid #202020;
  border-radius: 0;
  color: #fff;
  font-size: 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;
  }
}
.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: #f3f3f3;
  border: 1px solid #ccc;
  min-width: 32px;
  min-height: 32px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 0.5em 0.5em;
  margin: 0 0.2em;
}
.pagination .pagination-last:hover:not(li),
.pagination .pagination-first:hover:not(li),
.pagination .pagination-next:hover:not(li),
.pagination .pagination-prev:hover:not(li),
.pagination .pagination-item a:hover:not(li),
.pagination .is-current:hover:not(li) {
  background: #ddd;
}
.pagination .pagination-list {
  display: none;
}
@media (min-width: 520px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-list {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 520px) {
  .pagination .is-current {
    background: #fa192e;
    color: #fff;
    font-weight: bold;
  }
}
.pagination .pagination-page {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border: 1px solid #ccc;
  padding: 1em;
}
@media (min-width: 520px) {
  .pagination .pagination-page {
    display: none;
  }
}
.pagination .pagination-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (min-width: 520px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-prev {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.pagination .pagination-next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (min-width: 520px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (min-width: 960px) {
  .pagination .pagination-next {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.pagination .pagination-first {
  display: none;
}
@media (min-width: 960px) {
  .pagination .pagination-first {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    display: 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: 2em 0;
}
.pagenav .pagenav-list {
  background-color: #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4%;
  padding: 1em 2em;
}
.pagenav .pagenav-list > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 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: #dd3333;
}
.pagenav a:hover {
  text-decoration: none;
}

/* Project
==================================================*/
/*--------------------------------------------------
top
--------------------------------------------------*/
.p-top .hero {
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-top .hero {
    margin-bottom: 50px;
  }
}
.p-top .hero .slick-dots {
  bottom: -40px;
}
.p-top .hero .slick-dots li button:before {
  content: "";
  background-color: #fff;
  border: 2px solid #fa192e;
  border-radius: 50%;
  width: 15px;
  height: 15px;
}
.p-top .hero .slick-dots li.slick-active button:before {
  background-color: #fa192e;
}

.p-top .section01 {
  background-color: #f8f8f8;
}
.p-top .section01 .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 46px 4.4230769231%;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 40px 0;
  }
}
.p-top .section01 .list > li {
  width: 16.3461538462%;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .list > li {
    width: 48%;
  }
}
.p-top .section01 .list .ico {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50%;
  max-width: 170px;
  height: 170px;
  margin: 0 auto;
  padding: 20px;
}
.p-top .section01 .list .ico img {
  max-width: 70px;
  max-height: 70px;
}
.p-top .section01 .list .cap {
  text-align: center;
  margin-top: 2em;
}
.p-top .section01 .txt {
  font-size: 15px;
}

.p-top .section02 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1em 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section02 .flex .img {
  width: 38.3333333333%;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .flex .img {
    width: auto;
  }
}
.p-top .section02 .flex .txtarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .flex .txtarea {
    font-size: 1em;
  }
}
.p-top .section02 .flex .txt {
  margin-bottom: 2em;
}
.p-top .section02 .flex .btn a {
  display: block;
  background-color: #fff;
  border: 1px solid #fa192e;
  border-radius: 10px;
  color: #fa192e;
  font-size: 20px;
  text-align: center;
  max-width: 290px;
  margin-left: auto;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .flex .btn a {
    font-size: 14px;
  }
}
.p-top .section02 .flex .btn a:hover {
  opacity: 0.7;
}

.p-top .section03 .map iframe {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .map iframe {
    height: 200px;
  }
}

.p-top .section04 {
  background-color: #fdeff1;
}
.p-top .section04 .list {
  border-top: 1px solid #fa192e;
  margin-bottom: 2em;
}
.p-top .section04 .list .article {
  border-bottom: 1px solid #fa192e;
}
.p-top .section04 .list .article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 2em;
  color: #fa192e;
  padding: 20px 40px 20px 0;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .list .article a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section04 .list .article a::after {
  content: "→";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fa192e;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  width: 25px;
  height: 25px;
  margin: auto;
  padding: 3px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.p-top .section04 .list .article a:hover {
  opacity: 0.7;
}
.p-top .section04 .list .article .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top .section04 .btn a {
  display: block;
  background-color: #fff;
  border: 1px solid #fa192e;
  border-radius: 10px;
  color: #fa192e;
  font-size: 20px;
  text-align: center;
  max-width: 290px;
  margin: auto;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .btn a {
    font-size: 14px;
  }
}
.p-top .section04 .btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
kamoku
--------------------------------------------------*/
.p-kamoku section .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1em 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-kamoku section .list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}
.p-kamoku section .list .img {
  width: 38.3333333333%;
}
@media screen and (max-width: 768px) {
  .p-kamoku section .list .img {
    width: auto;
  }
}
.p-kamoku section .list .txtarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-kamoku section .list .txtarea {
    font-size: 1em;
  }
}
.p-kamoku section .list .ttl {
  font-size: 25px;
  font-weight: bold;
  color: #fa192e;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-kamoku section .list .ttl {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.p-kamoku section .img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-kamoku section .img-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-doumyaku .section02 .img {
  text-align: center;
  margin-bottom: 2em;
}
.p-doumyaku .section02 .txt {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-doumyaku .section02 .txt {
    font-size: 1em;
  }
}

.p-echo-aga .section02 .img {
  text-align: center;
  margin-bottom: 2em;
}
.p-echo-aga .section02 .ttl {
  font-size: 25px;
  font-weight: bold;
  color: #fa192e;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-echo-aga .section02 .ttl {
    font-size: 18px;
  }
}
.p-echo-aga .section02 .txt {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-echo-aga .section02 .txt {
    font-size: 1em;
  }
}

/*--------------------------------------------------
clinic
--------------------------------------------------*/
.p-clinic .section01 table tr {
  border-top: 1px solid #fa192e;
  border-bottom: 1px solid #fa192e;
  color: #fa192e;
}
.p-clinic .section01 table th, .p-clinic .section01 table td {
  font-size: 14px;
  padding: 20px;
}
.p-clinic .section01 table th {
  text-align: left;
  width: 160px;
}
@media screen and (max-width: 768px) {
  .p-clinic .section01 table th {
    width: 100px;
  }
}

.p-clinic .section02 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 4%;
}
@media screen and (max-width: 768px) {
  .p-clinic .section02 .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-clinic .section02 .flex .img {
  width: 38.3333333333%;
}
@media screen and (max-width: 768px) {
  .p-clinic .section02 .flex .img {
    width: auto;
  }
}
.p-clinic .section02 .flex .txtarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-clinic .section02 .flex .ttl {
  font-size: 25px;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-clinic .section02 .flex .ttl {
    font-size: 18px;
  }
}
.p-clinic .section02 .flex dl {
  margin: 2em 0;
}
.p-clinic .section02 .flex dl div {
  margin: 1em 0;
}
.p-clinic .section02 .flex dl dt {
  font-weight: bold;
}

.p-clinic .section03 .map iframe {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 768px) {
  .p-clinic .section03 .map iframe {
    height: 200px;
  }
}

/*--------------------------------------------------
facility
--------------------------------------------------*/
.p-facility .section01 .list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1em 50px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-facility .section01 .list > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
}
.p-facility .section01 .list .img {
  border: 2px solid #fa192e;
  width: 38.3333333333%;
  padding: 3px;
}
@media screen and (max-width: 768px) {
  .p-facility .section01 .list .img {
    width: auto;
  }
}
.p-facility .section01 .list .txtarea {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .p-facility .section01 .list .txtarea {
    font-size: 1em;
  }
}
.p-facility .section01 .list .ttl {
  font-size: 25px;
  font-weight: bold;
  color: #fa192e;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-facility .section01 .list .ttl {
    font-size: 18px;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------
news
--------------------------------------------------*/
.p-news .section01 .article {
  color: #fa192e;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-news .section01 .article {
    margin-bottom: 40px;
  }
}
.p-news .section01 .article .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1em;
  border-bottom: 1px solid #fa192e;
  margin-bottom: 1em;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-news .section01 .article .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 10px 0;
  }
}
.p-news .section01 .article .time {
  font-size: 14px;
}
.p-news .section01 .article .ttl {
  font-size: 18px;
}
.p-news .section01 .article a {
  text-decoration: underline;
}
.p-news .section01 .article a:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */