@charset "UTF-8";
.hamburger {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 46px;
  height: 46px;
  cursor: pointer;
  margin-left: auto;
  position: absolute;
  padding: 8px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #1E3A8A;
  z-index: 100;
}
.hamburger span {
  display: block;
  height: 4px;
  background-color: #fff;
  border-radius: 2px;
  margin-bottom: 4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger::before {
  content: "menu";
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}
.hamburger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(6px, 6px);
          transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(6px, -6px);
          transform: rotate(-45deg) translate(6px, -6px);
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header {
  position: fixed;
  width: 100%;
  background-color: #F7F9FA;
  top: 0;
  z-index: 100;
  padding-bottom: 10px;
}
.header--inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-logo {
  margin-left: 0px;
}
.header-logo img {
  height: 60px;
}
.header-nav--upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-nav--btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background: #000;
}
.header-nav--btn.btn_web {
  background: #F5A623;
}
.header-nav--btn.btn_web img {
  height: 30px;
}
.header-nav--btn.btn_jiko {
  background: #E60013;
}
.header-nav--btn.btn_jiko img {
  height: 28px;
}
.header-nav--lower {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.header-nav--lower a {
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 16px;
  color: #000;
  display: block;
  padding-bottom: 5px;
  position: relative;
}
.header-nav--lower a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1E3A8A;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header-nav--lower a:hover {
  color: #1E3A8A;
}
.header-nav--lower a:hover::after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 10px 0px 0px;
  }
  .header-logo img {
    height: 45px;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 99;
    overflow-y: auto;
    padding: 80px 20px 20px;
    display: block;
  }
  .header-nav.is-open {
    right: 0;
  }
  .header-nav--upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
  }
  .header-nav--upper li {
    width: 100%;
  }
  .header-nav--upper .header-nav--btn {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header-nav--lower {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-top: 0;
  }
  .header-nav--lower li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .header-nav--lower a {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    color: #333333;
    text-decoration: none;
  }
  .header-nav--lower a::after {
    display: none;
  }
  .header-nav--lower a:hover {
    color: #1E3A8A;
    background-color: #F7F9FA;
    padding-left: 10px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 98;
  }
}
.footer {
  background-color: #F7F9FA;
  padding: 30px 0 0;
}
.footer--inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-left {
  margin-left: 0;
}
.footer-left dl {
  margin-top: 3cqh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-left dl dt {
  font-weight: bold;
  font-size: 14px;
  width: 70px;
}
.footer-left dl dd {
  font-size: 14px;
  width: calc(100% - 80px);
}
.footer-logo {
  margin-left: 0;
  gap: 10px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer-logo span {
  font-size: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.footer-logo img {
  height: 60px;
}
.footer-right img {
  height: 100px;
}
.footer-privacy {
  margin-top: 30px;
  text-align: center;
  background: #fff;
  padding: 15px 0 0;
}
.footer-privacy a {
  color: #333;
  text-decoration: none;
  font-size: 1.4rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-privacy a:hover {
  opacity: 0.7;
  text-decoration: underline;
}
.footer-copyright {
  margin-top: 0;
  text-align: center;
  font-size: 10px;
  background: #fff;
  padding: 10px 0;
}
.footer-copyright p {
  font-size: 1.1rem !important;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 0 0;
  }
  .footer--inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer-left {
    width: 75%;
    margin: 0 auto;
  }
  .footer-left dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
  .footer-left dl dt {
    width: 100%;
  }
  .footer-left dl dd {
    width: 100%;
  }
  .footer-logo img {
    height: 45px;
  }
  .footer-right {
    width: 100%;
    text-align: center;
  }
  .footer-right img {
    height: 80px;
  }
  .footer-privacy {
    margin-top: 20px;
    padding: 12px 0;
  }
  .footer-privacy a {
    font-size: 1.2rem;
  }
  .footer-copyright {
    margin-top: 0;
    padding: 15px 0;
  }
  .footer-copyright p {
    font-size: 1rem !important;
  }
}
body {
  margin-top: 100px;
}

img {
  max-width: 100%;
}

[class*="--inner"] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}

figure {
  padding: 0;
  margin: 0;
}
figure img {
  padding: 0;
  margin: 0;
}
figure figcaption {
  padding: 0;
  margin: 0;
}

.sp-only {
  display: none;
}

br.sp-only {
  display: none;
}

@media screen and (max-width: 768px) {
  body {
    margin-top: 65px;
  }
  .sp-only {
    display: block;
  }
  br.sp-only {
    display: inline;
  }
}
* {
  color: #333333;
  font-size: 1.6rem;
}

.text-pageintro {
  text-align: center;
  line-height: 1.8;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  padding: 40px 0;
}
.text-pageintro span {
  display: inline-block;
}

.text-strong {
  font-weight: bold;
  color: #E60013;
}

.mincho {
  font-family: "Noto Serif JP", serif !important;
}

.page--title {
  width: 100%;
  aspect-ratio: 16/3;
  background: rgba(44, 171, 228, 0.17);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(2rem, 1.8rem + 1vw, 3rem);
  letter-spacing: 0.1em;
  font-weight: bold;
}

.section--title {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #0075B6;
}

.sub--title {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: bold;
}
.sub--title.sub--title-red {
  background: #E60013;
  color: #fff;
  padding: 8px 10px;
}
.sub--title.sub--title-square {
  padding: 8px 10px 8px 24px;
  position: relative;
}
.sub--title.sub--title-square::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #0075B6;
}

@media screen and (max-width: 768px) {
  .page--title {
    aspect-ratio: 16/6;
  }
}
.btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  background: #F7F9FA;
  text-align: center;
  border-radius: 20px;
  min-width: 300px;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}
.btn::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/svg/arrow.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn:hover {
  background: #0075B6;
  color: #fff;
}
.btn:hover::after {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.btn--center {
  margin: 0 auto;
}

.dl-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.dl-table dt, .dl-table dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
}
.dl-table dt {
  width: 80px;
  padding: 10px 0;
  font-weight: bold;
}
.dl-table dd {
  width: calc(100% - 80px);
  padding: 10px 10px;
}
.dl-table-typeA dt, .dl-table-typeA dd {
  padding: 25px 10px 20px;
}
.dl-table-typeA dt {
  font-weight: bold;
  position: relative;
}
.dl-table-typeA dt::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 8px;
  background: #4B3F3F;
}
.dl-table-typeA dd {
  position: relative;
}
.dl-table-typeA dd::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #4B3F3F;
}
.dl-table-typeB dt, .dl-table-typeB dd {
  padding: 25px 0px;
}
.dl-table-typeB dt {
  font-weight: bold;
  position: relative;
  margin-right: 50px;
  width: 130px;
}
.dl-table-typeB dt::after {
  content: "";
  width: 30px;
  height: 1px;
  background: #4B3F3F;
  position: absolute;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.dl-table-typeB dd {
  width: calc(100% - 230px);
}

.list {
  margin: 0;
  padding: 0;
}
.list li {
  margin-bottom: 20px;
  line-height: 1.5;
}
.list--disc li {
  position: relative;
  padding-left: 20px;
}
.list--disc li::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.list--arrow li {
  position: relative;
  padding-left: 20px;
}
.list--arrow li::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../images/svg/arrow_red.svg) no-repeat center center;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.list--arrow li a {
  text-decoration: none;
}
.list--arrow li a:hover {
  text-decoration: underline;
}

.news-list a {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  border-bottom: 1px solid #000;
  padding: 10px 0;
}
.news-list--meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.news-list--date {
  font-size: 12px;
}
.news-list--category {
  font-size: 10px;
  font-weight: bold;
  background: #0075B6;
  color: #fff;
  padding: 5px 10px;
  border-radius: 1px;
}
.news-list--title {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.banner-webhoken {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 600/180;
  background: #0075B6;
  position: relative;
  display: block;
  margin: 0 auto;
}
.banner-webhoken img {
  width: 40%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 5%;
}
.banner-webhoken::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/banner_webhoken.png") no-repeat center center;
  background-size: 100% auto;
}
.banner-webhoken:hover {
  background: #E60013;
}
.banner-infomation {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  background: #2CABE4;
  padding: 20px;
  position: relative;
}
.banner-infomation--tel {
  width: 50%;
  padding-top: 80px;
  position: relative;
}
.banner-infomation--tel a {
  display: block;
  display: block;
  text-align: center;
}
.banner-infomation--tel a img {
  width: 100%;
  max-width: 330px;
}
.banner-infomation--tel span {
  display: block;
  text-align: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}
.banner-infomation--tel::after {
  content: "";
  width: 48px;
  height: 48px;
  background: url("../images/svg/tel_icon.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.banner-infomation--mail {
  width: 50%;
  position: relative;
}
.banner-infomation--mail a {
  background: #F7F9FA;
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  max-width: 430px;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: bold;
}
.banner-infomation--mail a:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/svg/arrow.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.banner-infomation--mail a:hover {
  background: #E60013;
  color: #fff;
}
.banner-infomation--mail a:hover::after {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.banner-infomation--mail::after {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../images/svg/mail_icon.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.banner-infomation::after {
  content: "";
  width: 1px;
  height: 90%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .banner-infomation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }
  .banner-infomation--tel {
    width: 100%;
  }
  .banner-infomation--tel span {
    font-size: 16px;
  }
  .banner-infomation--mail {
    width: 100%;
    padding-top: 80px;
  }
  .banner-infomation--mail::after {
    top: 10px;
  }
  .banner-infomation--mail a {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    max-width: 100%;
    margin-top: 20px;
  }
  .banner-infomation::after {
    width: 90%;
    height: 1px;
    top: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.iframe-gmap {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
.iframe-gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*page*/
.page-top--visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/6;
  overflow: hidden;
}
.page-top--visual--img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  width: 100%;
}
.page-top--visual figcaption {
  width: 100%;
  max-width: 600px;
  display: block;
  position: absolute;
  bottom: 14%;
  right: clamp(0.938rem, 0.625rem + 1.56vw, 2.5rem);
}
.page-top--visual figcaption img {
  width: 100%;
}
.page-top--news {
  padding: 40px 0;
}
.page-top--news--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-top--news--inner .section--title {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.page-top--news--inner .page-top--news--list {
  -ms-flex-preferred-size: calc(50% - 10px);
      flex-basis: calc(50% - 10px);
}
.page-top--news--inner .page-top--news--banner {
  -ms-flex-preferred-size: calc(50% - 10px);
      flex-basis: calc(50% - 10px);
}
.page-top--news--btn {
  margin: 0 auto;
  font-size: 1.3rem;
  padding: 8px 20px;
  min-width: 160px;
  letter-spacing: 0.3em;
}

.page-top--service {
  padding: 40px 0;
}
.page-top--service--title {
  width: 100%;
  aspect-ratio: 16/3;
  background: rgba(44, 171, 228, 0.1);
  position: relative;
  letter-spacing: 0.1em;
  position: relative;
}
.page-top--service--title--wrap {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-top--service--title h2 {
  border-left: 6px solid #0075B6;
  padding: 10px 10px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 20px;
}
.page-top--service--title::after {
  content: "";
  width: 40%;
  height: 100%;
  background: url("../images/service.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0.8;
}
.page-top--service--list--wrap {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.page-top--service--list--wrap > div {
  -ms-flex-preferred-size: calc(50% - 10px);
      flex-basis: calc(50% - 10px);
}

.page-top--youtube--inner {
  max-width: 700px;
  position: relative;
  aspect-ratio: 16/9;
}
.page-top--youtube--wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.page-top--youtube--wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-top--access {
  padding: 40px 0 80px;
}
.page-top--access--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.page-top--access--wrap > div:first-child {
  -ms-flex-preferred-size: calc(40% - 10px);
      flex-basis: calc(40% - 10px);
}
.page-top--access--wrap > div:last-child {
  -ms-flex-preferred-size: calc(60% - 10px);
      flex-basis: calc(60% - 10px);
}

@media screen and (max-width: 768px) {
  .page-top--visual figcaption {
    width: 60%;
  }
  .page-top--news--inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-top--news--inner .page-top--news--list {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
  .page-top--news--inner .page-top--news--banner {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .page-top--access--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-top--access--wrap > div:first-child {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .page-top--access--wrap > div:last-child {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .page-top--access--map {
    width: 100%;
    min-height: 300px;
  }
  .page-top--service--title {
    aspect-ratio: 16/4;
  }
  .page-top--service--title::after {
    display: none;
  }
  .page-top--service--inner {
    padding: 0 20px;
  }
  .page-top--service--list--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
  .page-top--service--list--wrap > div {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.page-service--title {
  position: relative;
  overflow: hidden;
}
.page-service--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/hhs_madoguchi.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
.page-service--nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.page-service--nav ul li {
  width: 25%;
}
.page-service--nav ul li a {
  display: block;
  background: #F7F9FA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
  aspect-ratio: 1/0.8;
}
.page-service--nav ul li a img {
  height: 70%;
}
.page-service--list--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.page-service--list--wrap > div {
  -ms-flex-preferred-size: calc(50% - 10px);
      flex-basis: calc(50% - 10px);
}
.page-service--banner {
  margin: 80px 0 80px;
}
.page-service--banner > div {
  -ms-flex-preferred-size: calc(50% - 10px);
      flex-basis: calc(50% - 10px);
}
.page-service--banner .banner-webhoken--wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .page-service--nav ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-service--nav ul li {
    width: calc(50% - 10px);
  }
  .page-service--list--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-service--list--wrap > div {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.page-compliance {
  padding-bottom: 100px;
}
.page-compliance--title {
  position: relative;
  overflow: hidden;
  padding: 10px;
}
.page-compliance--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/hhs_madoguchi.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
  opacity: 0.6;
}

.page-fd--title {
  position: relative;
  overflow: hidden;
}
.page-fd--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/hhs_madoguchi.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
.page-fd--inner {
  padding: 80px 20px;
}

.fd-policy--dl {
  margin-bottom: 80px;
}
.fd-policy--dl .policy--title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
.fd-policy--dl .policy--title span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 10px;
  background: #333333;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.fd-policy--dl .policy--note {
  position: relative;
  padding: 20px 0;
  line-height: 1.5;
  font-size: 1.4rem;
}
.fd-policy--dl .policy--note strong {
  font-size: 100%;
}
.fd-policy--dl .policy--note::before {
  content: "";
  height: 1px;
  width: 140px;
  background: rgba(176, 175, 175, 0.9333333333);
  position: absolute;
  top: 0;
  left: 0;
}
.fd-policy--dl dd {
  background: #F7F9FA;
  padding: 20px;
  line-height: 1.5;
}

.page-company section {
  margin-bottom: 80px;
}
.page-company--title {
  position: relative;
  overflow: hidden;
}
.page-company--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/company_b.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
.page-company .dl-table-typeA dt {
  width: 200px;
}
.page-company .dl-table-typeA dd {
  width: calc(100% - 200px);
}
.page-company--text {
  line-height: 2;
  font-size: 1.9rem;
  letter-spacing: 0.01em;
  letter-spacing: 0.05em;
}
.page-company--info {
  padding-top: 80px;
}
.page-company--enkaku {
  margin-top: 80px;
}
.page-company--banner {
  margin: 80px 0;
}

@media screen and (max-width: 768px) {
  .page-company section {
    margin-bottom: 40px;
  }
  .page-company .dl-table-typeA {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-company .dl-table-typeA dt {
    width: 100%;
    padding: 15px 10px 10px;
  }
  .page-company .dl-table-typeA dd {
    width: 100%;
  }
  .page-company .dl-table-typeB {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-company .dl-table-typeB dt {
    width: 100%;
    margin-right: 0;
    padding: 15px 10px 10px;
  }
  .page-company .dl-table-typeB dt::after {
    display: none;
  }
  .page-company .dl-table-typeB dd {
    width: 100%;
    padding: 0 10px 15px;
  }
  .page-company--text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .page-company--info {
    padding-top: 40px;
  }
  .page-company--enkaku {
    margin-top: 40px;
  }
  .page-company--banner {
    margin: 40px 0;
  }
}
.page-members--title {
  position: relative;
  overflow: hidden;
}
.page-members--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/main.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: center left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-67%);
          transform: translateY(-67%);
  right: 0;
  z-index: -1;
  opacity: 0.6;
}
.page-members--inner {
  padding: 80px 20px;
}
.page-members--wrap {
  background: url(../images/svg/bk_blue_diagonal.svg) no-repeat center center;
  background-size: cover;
}
.page-members--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-members--list--item {
  -ms-flex-preferred-size: 22%;
      flex-basis: 22%;
}
.page-members--list--item figure {
  margin-bottom: 10px;
  padding: 10px;
  background: #F7F9FA;
  border-radius: 10px;
}
.page-members--list--item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-members--list--item .page-members--text {
  letter-spacing: 0.06rem;
}
.page-members--list--item .page-members--text p {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2%;
}
.page-members--list--item .page-members--text span {
  font-size: 1.2rem;
  font-weight: bold;
}
.page-members--caption {
  text-align: center;
  padding: 80px 0;
}
.page-members--caption p {
  font-size: 3rem;
  letter-spacing: 0.08rem;
  font-weight: bold;
  color: #0075B6;
}
.page-members-daihyo {
  background: url(../images/svg/bk_blue_diagonal.svg) no-repeat center center;
  background-size: cover;
}
.page-members-daihyo--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 80px 20px 100px;
  gap: 20px;
}
.page-members-daihyo--image {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}
.page-members-daihyo--message {
  position: relative;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
.page-members-daihyo--message h2 {
  margin-bottom: 30px;
}
.page-members-daihyo--message p {
  font-size: 1.9rem;
  line-height: 1.6;
  letter-spacing: 0.08rem;
  font-weight: bold;
}
.page-members-daihyo--message--name {
  position: absolute;
  bottom: 0px;
  font-size: 1.9rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .page-members--inner {
    padding: 40px 20px;
  }
  .page-members--list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .page-members--list--item {
    -ms-flex-preferred-size: calc(50% - 10px);
        flex-basis: calc(50% - 10px);
  }
  .page-members--caption p {
    font-size: 2rem;
  }
  .page-members-daihyo--inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 20px 60px;
  }
  .page-members-daihyo--image {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .page-members-daihyo--message {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .page-members-daihyo--message--name {
    position: relative;
    margin-top: 20px;
    text-align: end;
  }
}
.page-insurance {
  padding-bottom: 100px;
}
.page-insurance--title {
  position: relative;
  overflow: hidden;
}
.page-insurance--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/hhs_madoguchi.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
.page-insurance--text {
  line-height: 1.8;
}
.page-insurance--list {
  margin: 10px 0;
  padding-left: 20px;
}
.page-insurance--list li {
  margin-bottom: 10px;
  list-style: disc;
}
.page-insurance section {
  margin-bottom: 30px;
}

.page-accident--title {
  position: relative;
  overflow: hidden;
}
.page-accident--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/car24_2.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
.page-accident--tel {
  background: #2CABE4;
  padding: 30px 20px;
  text-align: center;
}
.page-accident--tel img {
  height: 100px;
}
.page-accident-flow {
  padding: 80px 0 40px;
}
.page-accident-flow--wrap {
  padding: 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.page-accident-flow--wrap figure:first-child {
  -ms-flex-preferred-size: 55%;
      flex-basis: 55%;
}
.page-accident-flow--wrap figure:last-child {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}
.page-accident-contact {
  padding: 80px 0 0px;
}
.page-accident-contact--wrap {
  padding: 40px 0;
}
.page-accident-contact p {
  padding: 30px 0;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .page-accident-flow {
    padding: 40px 0 20px;
  }
  .page-accident-flow--wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0 0;
  }
  .page-accident-flow--wrap figure {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .page-accident-contact {
    padding: 40px 0 0px;
  }
}
.page-webhoken--title {
  position: relative;
  overflow: hidden;
}
.page-webhoken--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/webhoken.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
.page-webhoken--nav {
  margin-bottom: 40px;
}
.page-webhoken--nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-webhoken--nav ul li {
  width: calc(25% - 20px);
}
.page-webhoken--nav a {
  display: block;
  background: #1E3A8A;
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-webhoken--nav a:hover {
  background: #E60013;
}
.page-webhoken--banner {
  margin-bottom: 60px;
}
.page-webhoken--banner--inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-webhoken--banner--list {
  margin-top: 20px;
}
.page-webhoken--banner--list--item {
  margin-bottom: 20px;
}
.page-webhoken--banner--list--item:last-child {
  margin-bottom: 0;
}
.page-webhoken--banner--list--item a {
  display: block;
  padding: 20px;
  background: #F7F9FA;
  border-radius: 10px;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page-webhoken--banner--list--item a:hover {
  background: #F5A623;
}
.page-webhoken--banner--list--item dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-webhoken--banner--list--item dl dt span {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}
.page-webhoken--banner--list--item dl dt p {
  font-size: 17px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .page-webhoken--nav ul li {
    width: calc(50% - 10px);
  }
  .page-webhoken--banner--list--item dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/**
 * Newsページのスタイル
 */
.page-news--title {
  position: relative;
  overflow: hidden;
}
.page-news--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/news.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
.page-news--list {
  max-width: 800px;
  margin: 120px auto;
}

.page-archive--title {
  position: relative;
  overflow: hidden;
}
.page-archive--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/news.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
.page-archive--inner {
  padding: 80px 20px;
}
.page-archive--list {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 40px;
}

.page-single--inner {
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.page-single .entry-header {
  margin-bottom: 40px;
}
.page-single .entry-title {
  font-size: 2.6rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #0075B6;
  margin-bottom: 20px;
}
.page-single .entry-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 1.4rem;
  color: #666;
}
.page-single .entry-meta .entry-date::after {
  content: "|";
  margin-left: 20px;
}
.page-single .entry-content {
  line-height: 1.8;
  font-size: 1.6rem;
}
.page-single .entry-content p {
  margin-bottom: 20px;
}
.page-single .post-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}
.page-single .post-navigation .nav-previous a,
.page-single .post-navigation .nav-next a {
  color: #0075B6;
  text-decoration: none;
}
.page-single .post-navigation .nav-previous a:hover,
.page-single .post-navigation .nav-next a:hover {
  text-decoration: underline;
}
.page-single .post-back-to-list {
  margin-top: 40px;
  text-align: center;
}

.pagination,
.page-news .pagination,
.page-archive .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin: 60px auto;
  padding: 40px;
  border-top: 1px solid #e0e0e0;
  max-width: 800px;
}
.pagination .nav-links,
.page-news .pagination .nav-links,
.page-archive .pagination .nav-links {
  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: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagination .page-numbers,
.page-news .pagination .page-numbers,
.page-archive .pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  background: #F7F9FA;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pagination .page-numbers:hover,
.page-news .pagination .page-numbers:hover,
.page-archive .pagination .page-numbers:hover {
  background: #0075B6;
  color: #fff;
}
.pagination .page-numbers.current,
.page-news .pagination .page-numbers.current,
.page-archive .pagination .page-numbers.current {
  background: #0075B6;
  color: #fff;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next,
.page-news .pagination .page-numbers.prev,
.page-news .pagination .page-numbers.next,
.page-archive .pagination .page-numbers.prev,
.page-archive .pagination .page-numbers.next {
  background: #0075B6;
  color: #fff;
}
.pagination .page-numbers.prev:hover, .pagination .page-numbers.next:hover,
.page-news .pagination .page-numbers.prev:hover,
.page-news .pagination .page-numbers.next:hover,
.page-archive .pagination .page-numbers.prev:hover,
.page-archive .pagination .page-numbers.next:hover {
  background: #005a8a;
}
.pagination .page-numbers.dots,
.page-news .pagination .page-numbers.dots,
.page-archive .pagination .page-numbers.dots {
  background: transparent;
  cursor: default;
}
.pagination .page-numbers.dots:hover,
.page-news .pagination .page-numbers.dots:hover,
.page-archive .pagination .page-numbers.dots:hover {
  background: transparent;
  color: #333;
}

@media screen and (max-width: 768px) {
  .page-news--list {
    padding: 40px 20px;
    margin: 40px auto;
  }
  .page-archive--inner {
    padding: 40px 20px;
  }
  .page-single--inner {
    padding: 40px 20px;
  }
  .page-single .entry-title {
    font-size: 2rem;
  }
}
.page-nipponham {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-nipponham--header-banner {
  width: 100%;
  background: #3498db;
  border: #FBA848 2px solid;
  text-align: center;
  margin-bottom: 20px;
}
.page-nipponham--header-banner * {
  color: #fff;
  line-height: 2.6rem;
}
.page-nipponham--header-title {
  color: #fff;
  font-size: clamp(1.8rem, 1.5rem + 1vw, 2.4rem);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5px;
}
.page-nipponham--header-line1 {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.page-nipponham--header-line2 {
  display: block;
  font-size: 1.2em;
}
.page-nipponham--banner-text {
  line-height: 2.6rem;
}
.page-nipponham--banner-note {
  font-size: 1.3rem;
  display: block;
  margin-top: 10px;
  line-height: 2.6rem;
}
.page-nipponham--banner-approval {
  font-size: 1.3rem;
  display: block;
  line-height: 2.6rem;
}
.page-nipponham--inner {
  padding: 0;
}
.page-nipponham img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-nipponham-text {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}
.page-nipponham-note {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.page-nipponham-approval {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #333;
}

.discount--box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0;
  padding: 20px;
  border: dotted 3px #3498db;
  background: #fff;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .discount--box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
  }
}

.discount--label {
  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;
  background: #FBA848;
  padding: 20px 30px;
  font-size: 1.8rem;
  font-weight: bold;
  min-width: 200px;
  border-radius: 10px;
  margin: 0;
}
.discount--label-text {
  display: block;
  color: #fff;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .discount--label {
    min-width: auto;
  }
}

.discount--value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 10px 10px 5px;
}

.discount--percentage {
  font-size: 4.8rem;
  font-weight: bold;
  color: #333;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .discount--percentage {
    font-size: 3.6rem;
  }
}

.discount--note {
  font-size: 1.8rem;
  color: #333;
  font-weight: bold;
}

.discount--disclaimer {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: #333;
  margin: 20px 0 0;
}

.discount--cta-banner {
  background: #DC143C;
  padding: 5px;
  text-align: center;
  margin-top: 30px;
}
.discount--cta-banner * {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 3rem;
}
.discount--cta-banner-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  margin: 0 0 15px;
  line-height: 3rem;
}
.discount--cta-banner-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

.discount--images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 30px 0;
  padding: 0 20px;
}
.discount--images a {
  display: block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.discount--images a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .discount--images {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
}

.discount--image-1,
.discount--image-2 {
  max-width: 100%;
  height: auto;
  display: block;
}

.discount--sompo-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 30px;
  padding: 20px;
}
.discount--sompo-banner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.discount--sompo-banner-logo-img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.discount--sompo-banner-logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
.discount--sompo-banner-name {
  font-size: 3.6rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}
.discount--sompo-banner-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #3498db;
  border: 2px solid #9b59b6;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  min-width: 200px;
  gap: 5px;
}
.discount--sompo-banner-button-line1, .discount--sompo-banner-button-line2 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
.discount--sompo-banner-button:hover {
  background: #2980b9;
  border-color: #8e44ad;
}

.page-nipponham--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}
.page-nipponham--info-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page-nipponham--info-right {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.info-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}
.info-list li {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.4rem;
  color: #333;
}
.info-list li:last-child {
  margin-bottom: 0;
}

.info-contact-title {
  font-size: 1.8rem;
  color: #333;
  margin: 0 0 25px;
}

.info-contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.info-contact-item:last-child {
  margin-bottom: 0;
}

.info-contact-subtitle {
  font-size: 1.6rem;
  font-weight: normal;
  color: #333;
  margin: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 120px;
}

.info-contact-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}

.info-contact-company {
  font-size: 1.6rem;
  font-weight: normal;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.6;
}

.info-contact-branch {
  font-size: 1.4rem;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.6;
}

.info-contact-address {
  font-size: 1.4rem;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.6;
}

.info-contact-tel {
  font-size: 1.4rem;
  color: #333;
  margin: 0;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .page-nipponham {
    padding: 20px 15px;
  }
  .page-nipponham--header-banner {
    padding: 30px 15px;
  }
  .page-nipponham--header-title {
    font-size: 1.6rem;
    gap: 8px;
  }
  .page-nipponham--inner {
    padding: 0;
  }
  .page-nipponham--discount {
    margin: 40px 0;
  }
  .discount--cta-banner {
    padding: 20px 15px;
    margin-top: 20px;
  }
  .discount--cta-banner-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .discount--cta-banner-text {
    font-size: 1.4rem;
  }
  .discount--sompo-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
  .discount--sompo-banner-name {
    font-size: 2.4rem;
  }
  .discount--sompo-banner-button {
    width: 100%;
    min-width: auto;
  }
  .page-nipponham--info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
  }
  .page-nipponham--info-right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .info-contact-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .info-contact-subtitle {
    min-width: auto;
  }
}
/**
 * プライバシーポリシーページのスタイル
 */
.page-privacy--title {
  position: relative;
  overflow: hidden;
  background: transparent !important;
}
.page-privacy--title::after {
  content: "";
  width: 100%;
  aspect-ratio: 16/9;
  background: url("../images/company_b.jpg") no-repeat center center;
  background-size: 100% auto;
  background-position: top left;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-75%);
          transform: translateY(-75%);
  left: 0;
  z-index: -1;
  opacity: 0.6;
}
.page-privacy--inner {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.page-privacy--main-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.page-privacy--subtitle {
  text-align: center;
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}
.page-privacy--content {
  line-height: 1.8;
}

.privacy-intro {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 50px;
  line-height: 1.8;
  text-align: justify;
}

.privacy-section {
  margin-bottom: 40px;
}
.privacy-section:last-of-type {
  margin-bottom: 0;
}
.privacy-section--title {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0075B6;
}
.privacy-section--text {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.8;
}
.privacy-section--purpose {
  margin: 20px 0;
}
.privacy-section--list {
  list-style: disc;
  padding-left: 30px;
  margin: 15px 0;
}
.privacy-section--list li {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.8;
}
.privacy-section--list li:last-child {
  margin-bottom: 0;
}
.privacy-section--ordered-list {
  list-style: decimal;
  padding-left: 30px;
  margin: 15px 0;
}
.privacy-section--ordered-list li {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.8;
}
.privacy-section--ordered-list li:last-child {
  margin-bottom: 0;
}

.privacy-insurance-companies {
  margin: 30px 0;
  padding: 20px;
  background: #F7F9FA;
  border-radius: 5px;
}
.privacy-insurance-companies--title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  margin-top: 20px;
}
.privacy-insurance-companies--title:first-child {
  margin-top: 0;
}
.privacy-insurance-companies--list {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}
.privacy-insurance-companies--list li {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.8;
}
.privacy-insurance-companies--list li a {
  color: #0075B6;
  text-decoration: none;
}
.privacy-insurance-companies--list li a:hover {
  text-decoration: underline;
}
.privacy-insurance-companies--list li:last-child {
  margin-bottom: 0;
}

.privacy-contact {
  background: #F7F9FA;
  padding: 30px;
  border-radius: 5px;
  margin-top: 40px;
}
.privacy-contact--title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}
.privacy-contact--address, .privacy-contact--email, .privacy-contact--url {
  font-size: 1.6rem;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.8;
}
.privacy-contact--address:last-child, .privacy-contact--email:last-child, .privacy-contact--url:last-child {
  margin-bottom: 0;
}
.privacy-contact--address strong, .privacy-contact--email strong, .privacy-contact--url strong {
  font-weight: bold;
  color: #0075B6;
}
.privacy-contact--address a, .privacy-contact--email a, .privacy-contact--url a {
  color: #0075B6;
  text-decoration: none;
}
.privacy-contact--address a:hover, .privacy-contact--email a:hover, .privacy-contact--url a:hover {
  text-decoration: underline;
}
.privacy-contact--company {
  font-size: 2rem;
  color: #333;
  line-height: 1.8;
  font-weight: normal;
}
.privacy-contact--company:last-child {
  margin-bottom: 0;
}
.privacy-contact--company strong {
  font-weight: bold;
  font-size: 2rem;
}
.privacy-contact--representative {
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.8;
  font-weight: bold;
}
.privacy-contact--representative:last-child {
  margin-bottom: 0;
}
.privacy-contact--tel {
  font-size: 2.5rem;
  color: #ed2557;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  line-height: 1.8;
}
.privacy-contact--tel:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .page-privacy--inner {
    padding: 40px 15px;
  }
  .page-privacy--main-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }
  .page-privacy--subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
  .privacy-intro {
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
  .privacy-section {
    margin-bottom: 30px;
  }
  .privacy-section--title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .privacy-section--text {
    font-size: 1.4rem;
  }
  .privacy-section--list, .privacy-section--ordered-list {
    padding-left: 20px;
  }
  .privacy-section--list li, .privacy-section--ordered-list li {
    font-size: 1.4rem;
  }
  .privacy-insurance-companies {
    padding: 15px;
  }
  .privacy-insurance-companies--title {
    font-size: 1.6rem;
  }
  .privacy-insurance-companies--list {
    padding-left: 20px;
  }
  .privacy-insurance-companies--list li {
    font-size: 1.4rem;
  }
  .privacy-contact {
    padding: 20px;
  }
  .privacy-contact--title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  .privacy-contact--address, .privacy-contact--email, .privacy-contact--url {
    font-size: 1.4rem;
  }
  .privacy-contact--company, .privacy-contact--representative {
    font-size: 1.8rem;
  }
  .privacy-contact--tel {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */