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

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

/*--------------------------------------------------
Media Query
--------------------------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.tb {
  display: block;
}
@media screen and (max-width: 960px) {
  .tb {
    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: 2;
  color: #1b1b1b;
  position: relative;
  overflow-wrap: break-word;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

#container {
  overflow-x: hidden;
}

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

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

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

address {
  font-style: normal;
}

small {
  font-size: 100%;
}

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

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

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

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

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

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

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

/*==================================================
Layout
==================================================*/
/*--------------------------------------------------
Header
--------------------------------------------------*/
.header {
  width: 100%;
  padding: 20px 4%;
}
.header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4%;
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header .inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .header .logo img {
    max-height: 40px;
  }
}
.header .contact-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .header .contact-wrap {
    display: none;
  }
}
.header .tel {
  font-size: 21px;
  font-weight: bold;
}
.header .tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/common/ico-tel.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-right: 5px;
}
.header .contact-btn a {
  display: block;
  background-color: #c13133;
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  padding: 10px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .contact-btn a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/common/ico-mail.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 1em;
  margin-right: 5px;
}
.header .contact-btn a:hover {
  opacity: 0.7;
}

/*--------------------------------------------------
Footer
--------------------------------------------------*/
.footer {
  background-color: #434343;
  color: #fff;
  padding: 80px 4%;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 13px;
    padding: 30px 4%;
  }
}
.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: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
.footer .logo {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer .logo {
    text-align: center;
  }
}
.footer .address {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer .address {
    font-size: 14px;
    text-align: center;
  }
}
.footer .nav .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .nav .nav-list > li {
  font-size: 15px;
  padding: 0 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list > li {
    font-size: 14px;
  }
}
.footer .nav .nav-list > li::after {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 1em;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}
.footer .nav .nav-list > li a:hover {
  text-decoration: underline;
}
.footer .nav .nav-list > li:last-child::after {
  display: none;
}
.footer .privacymark {
  text-align: right;
  margin: 2em 0;
}
@media screen and (max-width: 768px) {
  .footer .privacymark {
    text-align: center;
  }
}
.footer .copyright {
  font-size: 12px;
  text-align: center;
  padding: 1em;
}

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

/*==================================================
Component
==================================================*/
/*--------------------------------------------------
Component
--------------------------------------------------*/
.c-heading {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: clamp(18px, 4vw, 36px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
.c-heading .small {
  display: block;
  font-size: 16px;
}

.c-text-center {
  text-align: center;
}

.c-red {
  color: #c13133;
}

/*==================================================
Project
==================================================*/
/*--------------------------------------------------
top
--------------------------------------------------*/
.p-top .hero {
  text-align: center;
}
.p-top .hero img {
  width: 100%;
}
.p-top .section01 {
  padding: 0 4% 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section01 {
    padding-bottom: 40px;
  }
}
.p-top .section01::after {
  content: "";
  background-color: #f5edea;
  width: 100%;
  height: 20vh;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
.p-top .section01 .inner {
  max-width: 1400px;
  margin: 0 auto;
}
.p-top .section01 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}
.p-top .section01 .esg-image {
  width: 43.2857142857%;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .esg-image {
    max-width: 80%;
    margin: 0 auto;
  }
}
.p-top .section01 .esg-box {
  background-color: #fff;
  border: 4px solid #c13133;
  border-radius: 20px;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  padding: 10vh 50px 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .esg-box {
    border-width: 2px;
    margin: 0 auto;
    padding: 5vh 20px 20px;
  }
}
.p-top .section01 .esg-head {
  text-align: center;
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .esg-head {
    top: -20px;
  }
}
.p-top .section01 .esg-title {
  display: inline-block;
  background-color: #fff;
  border: 4px solid #c13133;
  border-radius: 20px;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .esg-title {
    border-width: 2px;
    font-size: 18px;
  }
}
.p-top .section01 .esg-list > li {
  border-bottom: 1px solid #bfbfbf;
  font-size: 30px;
  font-weight: bold;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .esg-list > li {
    font-size: 1em;
  }
}
.p-top .section01 .esg-list > li .ico {
  max-width: 40px;
  max-height: 40px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-top .section01 .esg-list > li .ico {
    max-width: 30px;
    max-height: 30px;
  }
}
.p-top .section02 {
  padding: 150px 4%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section02 {
    padding: 40px 4%;
  }
}
.p-top .section02::before {
  content: "";
  background-color: #f5edea;
  width: 30%;
  height: 46vh;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.p-top .section02::after {
  content: "";
  background-image: url(../img/top/bg-dot.png);
  width: 26.5%;
  height: 80vh;
  position: absolute;
  z-index: 0;
  top: 10vh;
  left: 26.6666666667%;
}
@media screen and (max-width: 768px) {
  .p-top .section02::after {
    display: none;
  }
}
.p-top .section02 .inner {
  max-width: 1400px;
  margin: 0 auto;
}
.p-top .section02 .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section02 .about-image {
  text-align: center;
  width: 55%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .about-image {
    width: auto;
  }
}
.p-top .section02 .about-title {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 1em;
  padding-bottom: 10px;
  position: relative;
}
.p-top .section02 .about-title::after {
  content: "";
  background-color: #c13133;
  width: 44px;
  height: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-top .section02 .about-catch {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 30px;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .about-catch {
    font-size: 18px;
  }
}
.p-top .section02 .about-company {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 18px;
}
.p-top .section02 .about-name {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 32px;
  margin-bottom: 1em;
}
.p-top .section02 .about-btn {
  text-align: right;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .about-btn {
    margin-top: 20px;
  }
}
.p-top .section02 .about-btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #c13133;
  border-radius: 20px;
  color: #c13133;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 18px;
  text-align: center;
  padding: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section02 .about-btn a {
    font-size: 14px;
    padding: 10px;
  }
}
.p-top .section02 .about-btn a::after {
  content: ">";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border: 1px solid #c13133;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  margin-left: 20px;
}
.p-top .section02 .about-btn a:hover {
  opacity: 0.7;
}
.p-top .section03 {
  background-color: #f5edea;
  padding: 0 4%;
  position: relative;
}
.p-top .section03::before {
  content: "";
  background-image: url(../img/top/esg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 90%;
  height: 130px;
  margin: auto;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
}
.p-top .section03 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-top .section03 .heading {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 26px;
  text-align: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #c13133;
  margin: auto;
  padding: 20px;
  border-left: 1px solid #c13133;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .heading {
    font-size: 14px;
    padding: 10px;
  }
}
.p-top .section03 .box {
  background-color: #fff;
  border: 4px solid #c13133;
  border-radius: 20px;
  padding: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .box {
    border-width: 2px;
    padding: 20px;
  }
}
.p-top .section03 .box dl div {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .box dl div {
    margin-bottom: 40px;
  }
}
.p-top .section03 .box dl div:last-child {
  margin-bottom: 0;
}
.p-top .section03 .box dl dt {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .box dl dt {
    font-size: 18px;
  }
}
.p-top .section03 .box dl dt::before {
  content: "●";
  color: #c13133;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .box dl dt::before {
    margin-right: 10px;
  }
}
.p-top .section03 .box dl dd {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .p-top .section03 .box dl dd {
    margin-left: 20px;
  }
}
.p-top .section04 {
  background-color: #f5edea;
  position: relative;
}
.p-top .section04::before {
  content: "";
  display: block;
  background-color: #c13133;
  width: 1px;
  height: 80px;
  margin: auto;
}
.p-top .section04 .achieve-area {
  padding: 0 4% 80px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .achieve-area {
    padding-bottom: 40px;
  }
}
.p-top .section04 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-top .section04 .heading {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  padding-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .heading {
    font-size: 18px;
  }
}
.p-top .section04 .heading::after {
  content: "";
  background-color: #c13133;
  width: 44px;
  height: 4px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.p-top .section04 .lead {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 25px;
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .lead {
    font-size: 1em;
  }
}
.p-top .section04 .achieve-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .achieve-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.p-top .section04 .achieve-item:nth-child(even) .achieve-image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .achieve-item:nth-child(even) .achieve-image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}
.p-top .section04 .achieve-item:last-child {
  margin-bottom: 0;
}
.p-top .section04 .achieve-image {
  text-align: center;
  width: 48.3333333333%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .achieve-image {
    width: auto;
  }
}
.p-top .section04 .achieve-title {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 30px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .achieve-title {
    font-size: 18px;
  }
}
.p-top .section04 .achieve-result {
  color: #c13133;
}
.p-top .section04 .achieve-result::before {
  content: "≫";
}
.p-top .section04 .achieve-btn {
  margin-top: 20px;
}
.p-top .section04 .achieve-btn a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #c13133;
  border-radius: 10px;
  color: #c13133;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 18px;
  text-align: center;
  padding: 10px 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .achieve-btn a {
    font-size: 15px;
  }
}
.p-top .section04 .achieve-btn a:hover {
  opacity: 0.7;
}
.p-top .section04 .result-area {
  background-color: #fff;
  padding: 80px 4%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .result-area {
    padding: 40px 4%;
  }
}
.p-top .section04 .result-area::before {
  content: "";
  background-color: #f5edea;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 120px;
  height: 50px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .result-area::before {
    width: 50px;
    height: 20px;
  }
}
.p-top .section04 .result-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .result-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top .section04 .result-text {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .p-top .section04 .result-text {
    font-size: 1em;
  }
}
.p-top .section04 .result-image {
  text-align: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top .section05 {
  background-color: #f5edea;
  padding: 0 4% 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section05 {
    padding-bottom: 40px;
  }
}
.p-top .section05::before {
  content: "";
  background-image: url(../img/top/esg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 90%;
  height: 130px;
  margin: auto;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
}
.p-top .section05::after {
  content: "";
  background-image: url(../img/top/bg-dot.png);
  width: 100%;
  height: 28vh;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
}
.p-top .section05 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-top .section05 .heading {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 26px;
  text-align: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #c13133;
  margin: auto;
  padding: 20px;
  border-left: 1px solid #c13133;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .heading {
    font-size: 14px;
    padding: 10px;
  }
}
.p-top .section05 .catch {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .catch {
    font-size: 18px;
  }
}
.p-top .section05 .img {
  text-align: center;
  margin-bottom: -60px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .img {
    width: 80%;
    margin: 0 auto;
    margin-bottom: -30px;
  }
}
.p-top .section05 .box {
  background-color: #fff;
  border: 4px solid #c13133;
  border-radius: 20px;
  padding: 100px 50px 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .box {
    border-width: 2px;
    padding: 20px;
  }
}
.p-top .section05 .box-list {
  counter-reset: count 0;
}
.p-top .section05 .box-list > li {
  background-color: #fff;
  border: 2px solid #c13133;
  border-radius: 99px;
  -webkit-box-shadow: 0 5px 5px #ccc;
          box-shadow: 0 5px 5px #ccc;
  color: #c13133;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  margin-bottom: 20px;
  padding: 10px 20px;
  counter-increment: count 1;
}
@media screen and (max-width: 768px) {
  .p-top .section05 .box-list > li {
    border-radius: 20px;
  }
}
.p-top .section05 .box-list > li::before {
  content: counter(count, decimal);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #c13133;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
.p-top .section05 .box-list > li:last-child {
  margin-bottom: 0;
}
.p-top .section06 .head {
  background-color: #d78b8b;
  text-align: center;
  padding: 60px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .head {
    padding: 40px 4%;
  }
}
.p-top .section06 .head .subtitle {
  display: inline-block;
  background-color: #fff;
  border: 3px solid #c13133;
  border-radius: 99px;
  color: #c13133;
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 29px;
  font-weight: bold;
  text-align: center;
  padding: 10px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .head .subtitle {
    border-width: 2px;
    border-radius: 20px;
    font-size: 18px;
  }
}
.p-top .section06 .head .subtitle:before {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}
.p-top .section06 .head .subtitle:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #c13133;
  z-index: 1;
}
.p-top .section06 .body {
  padding: 80px 4%;
}
@media screen and (max-width: 768px) {
  .p-top .section06 .body {
    padding: 40px 4%;
  }
}
.p-top .section06 .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.p-top .section06 .heading {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
  padding-bottom: 10px;
  position: relative;
}
.p-top .section06 .heading::after {
  content: "";
  background-color: #c13133;
  width: 44px;
  height: 4px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.p-top .section06 .tel {
  font-family: "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
.p-top .section06 .tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/common/ico-tel.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1em;
  height: 1em;
  margin-right: 5px;
}
.p-top .section06 .contact-btn {
  text-align: center;
  margin: 0 auto 50px;
}
.p-top .section06 .contact-btn a {
  display: inline-block;
  background-color: #c13133;
  border-radius: 99px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  padding: 10px 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top .section06 .contact-btn a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/common/ico-mail.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 1em;
  margin-right: 5px;
}
.p-top .section06 .contact-btn a:hover {
  opacity: 0.7;
}
.p-top .section06 .img {
  text-align: center;
}/*# sourceMappingURL=style.css.map */