@charset "UTF-8";

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
body {
  font-family: "Noto Sans Japanese", sans-serif;
  min-width: auto !important;
}

/* ━━━━━━━━━━━━━━━━

 ■ユーティリティ

━━━━━━━━━━━━━━━━ */
/**
 * Display
 */
/*==================================
* media
==================================*/
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none !important;
  }
}

/**
 * margin
 */
.u-mr-5 {
  margin-right: 5px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mb-80 {
  margin-bottom: 80px !important;
}

/**
 * Padding
 */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pd-0 {
  padding: 0 !important;
}

/**
 * Text
 */
/*==================================
* color
==================================*/
.u-fc-light {
  color: #ced4da !important;
}

.u-fc-dark {
  color: #343a40 !important;
}

.u-fc-blue {
  color: #345887 !important;
}

.u-fc-red {
  color: #dc3545 !important;
}

.u-fc-red-dark {
  color: #ad002d !important;
}

.u-fc-green {
  color: #03967a !important;
}

.u-fc-orange {
  color: #FF8C00 !important;
}

.u-fc-white {
  color: #fff !important;
}

.u-fc-yellow {
  color: #ffc107 !important;
}

/*==================================
* font-size
==================================*/
.u-fs-h1 {
  font-size: 2rem !important;
}

.u-fs-h2 {
  font-size: 1.5rem !important;
}

.u-fs-h3 {
  font-size: 1.1rem !important;
}

@media screen and (min-width: 768px) {
  .u-fs-h1 {
    font-size: 2.5rem !important;
  }
  .u-fs-h2 {
    font-size: 1.7rem !important;
  }
  .u-fs-h3 {
    font-size: 1.2rem !important;
  }
}
/*==================================
* font-weight
==================================*/
.u-fw-bold {
  font-weight: bold !important;
}

/*==================================
* align
==================================*/
.u-text-top {
  vertical-align: top !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-left {
  text-align: left !important;
}

.u-text-middle {
  vertical-align: middle !important;
}

.u-text-bottom {
  vertical-align: bottom !important;
}

@media screen and (min-width: 768px) {
  .u-text-pc-center {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .u-text-sp-center {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .u-text-sp-left {
    text-align: left !important;
  }
}

/*==================================
* マーカー
==================================*/
.u-text-marker {
  background: linear-gradient(transparent 70%, #FFF799 70%);
}

.u-text-marker--orange {
  background: linear-gradient(transparent 75%, #ffbf7f 75%);
}

/* ━━━━━━━━━━━━━━━━

 ■コンポーネント

━━━━━━━━━━━━━━━━ */
/**
 * Block
 */
/*==================================
* コンテナ
==================================*/
.c-block {
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .c-block {
    max-width: 1140px;
  }
}
/**
 * Button
 */
/*==================================
* 標準
==================================*/
.c-button {
  width: 90%;
  display: block;
  margin: 0 auto;
  padding: 12px 5px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #003160;
  background-color: #FFF;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.c-button,
.c-button:link,
.c-button:visited {
  text-decoration: none;
  color: #003160;
  font-weight: bold;
}

.c-button::after {
  background: #003160;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.c-button:hover {
  color: #FFF;
}

.c-button:hover::after {
  transform: scale(1, 1);
}

@media screen and (min-width: 768px) {
  .c-button {
    width: 40%;
    padding: 15px 10px;
    font-size: 17px;
  }
}
/*
　プライマリボタン
================================*/
.c-button--primary {
  width: 90%;
  display: block;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #0077b4;
  text-decoration: none;
  text-align: center;
}

.c-button--primary,
.c-button--primary:link,
.c-button--primary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--primary:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .c-button--primary {
    width: 30%;
    font-size: 17px;
  }
}
/*
　セカンダリボタン
================================*/
.c-button--secondary {
  width: 90%;
  display: block;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #f8b500;
  text-decoration: none;
  text-align: center;
}

.c-button--secondary,
.c-button--secondary:link,
.c-button--secondary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--secondary:hover {
  background-color: #003160;
}

@media screen and (min-width: 768px) {
  .c-button--secondary {
    width: 30%;
    font-size: 17px;
  }
}
/*
　アウトラインボタン
================================*/
.c-button-outline {
  width: 90%;
  padding: 15px 10px;
  display: block;
  text-align: center;
  font-weight: bold;
  border: 1.5px solid #111;
  margin: 0 auto;
}

.c-button-outline,
.c-button-outline:link,
.c-button-outline:visited {
  text-decoration: none;
  color: #111;
}

.c-button-outline:hover {
  border-color: transparent;
  color: #FFF;
  background-color: #0077b4;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-button-outline {
    width: 40%;
    font-size: 20px;
  }
}
/*
　ボタン-02
================================*/
.c-button-02 {
  margin-top: 20px;
  padding-left: 10px;
}

.c-button-02 a {
  position: relative;
  display: block;
  max-width: 250px;
  padding: 10px 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  text-decoration: none;
  background: #FFF;
  outline: none;
  transition: ease 0.2s;
  overflow: hidden;
  border: 1px solid #0077b4;
  border-radius: 3px;
}

.c-button-02 a span {
  position: relative;
  z-index: 3;
  color: #0077b4;
}

.c-button-02 a:hover span {
  color: #fff;
}

.c-button-02 a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  background: #0077b4;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}

.c-button-02 a:hover::before {
  animation: skewanime 0.5s forwards;
}

@keyframes skewanime {
  100% {
    left: -10%;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .c-button-02 {
    padding-left: 25px;
  }
}
/*
　システム標準-H2
================================*/
h2.tit {
  width: 90%;
  text-align: center;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 auto 30px auto;
  padding: 0;
  background-color: transparent !important;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.tit {
    width: 100%;
    font-size: 2rem;
  }
}
/*
　システム標準-H3
================================*/
h3.tit {
  position: relative;
  border-bottom: 4px solid #ccc;
  margin: 0 0 20px 0;
  padding: 15px 10px 15px 0;
  font-size: 1.1rem;
  background: transparent;
  text-shadow: none;
  border-top: none;
}

h3.tit:after {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 2;
  content: "";
  width: 20%;
  height: 4px;
  background-color: #0077b4;
}

/* PC */
@media screen and (min-width: 768px) {
  h3.tit {
    max-width: 1140px;
    margin: 0 auto 40px auto;
    padding: 0 0 10px 0;
    font-size: 1.3rem;
  }
}
/*
　シンプル-01・中央寄せ
================================*/
.c-title-01 {
  width: 90%;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  color: #000;
  margin: 0 auto 30px auto;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-01 {
    width: 100%;
    font-size: 2.5rem;
  }
}
/*
　シンプル-02・テキストカラー
================================*/
.c-title-02,
.c-title-02--color-2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: #0077b4;
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: #f8b500;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-02,
  .c-title-02--color-2 {
    font-size: clamp(40px, 4.649122807vw, 53px);
    margin-bottom: 50px;
  }
}
/*
　ルビ付き-01
================================*/
.c-title-ruby-01 {
  margin: 0 auto 20px auto;
  text-align: center;
}

.c-title-ruby-01 h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.c-title-ruby-01 span {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-title-ruby-01 span:before,
.c-title-ruby-01 span:after {
  content: "";
  width: 2em;
  border-top: 1px solid;
}

.c-title-ruby-01 span:before {
  margin-right: 0.7em;
}

.c-title-ruby-01 span:after {
  margin-left: 0.7em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-01 {
    margin: 0 auto 50px auto;
  }
  .c-title-ruby-01 h2 {
    font-size: 2.5rem;
    margin-bottom: 7px;
  }
  .c-title-ruby-01 span {
    font-size: 1.2rem;
  }
}
/*
　ルビ付き-02
================================*/
.c-title-ruby-02 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
  padding: 30px 0 10px 0;
}

.c-title-ruby-02 span {
  position: relative;
  line-height: 1.5;
  z-index: 2;
}

.c-title-ruby-02::before {
  content: attr(data-en);
  position: absolute;
  top: 20px;
  left: 10px;
  color: rgba(15, 10, 50, 0.1);
  font-size: 2rem;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  z-index: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-02 {
    font-size: 3rem;
    margin-bottom: 50px;
  }
  .c-title-ruby-02::before {
    top: 0;
    left: 20px;
    font-size: 4.3rem;
  }
}
/*
　ルビ付き-03
================================*/
.c-title-ruby-03 {
  width: 90%;
  font-size: clamp(22px, 3.2552083333vw, 25px);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  color: #0077b4;
  margin: 0 auto 30px auto;
}

.c-title-ruby-03 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Serif JP", serif;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-03 {
    width: 100%;
    font-size: clamp(25px, 3.0701754386vw, 35px);
    line-height: 1.5;
    margin: 0 auto 45px auto;
  }
}
/*
　ルビ付き-04
================================*/
.c-title-ruby-04 {
  width: 90%;
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.4;
  margin: 0 auto 30px auto;
}

.c-title-ruby-04::first-letter {
  color: #0077b4;
}

.c-title-ruby-04 span {
  display: block;
  font-size: 16px;
  font-weight: normal;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-04 {
    width: 100%;
    font-size: 2.8rem;
    line-height: 1.4;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-04 span {
    font-size: 18px;
  }
}
/*
　ルビ付き-05
================================*/
.c-title-ruby-05 {
  margin-bottom: 20px;
}

.c-title-ruby-05 span {
  font-size: 29px;
  font-weight: 900;
  line-height: 1.2;
}

.c-title-ruby-05 h2 {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}

.c-title-ruby-05 h2:before {
  content: "";
  width: 1.5em;
  border-top: 1px solid;
  margin-right: 0.5em;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-05 {
    margin-bottom: 50px;
  }
  .c-title-ruby-05 span {
    font-size: 40px;
  }
  .c-title-ruby-05 h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
/*
　ルビ付き-06
================================*/
.c-title-ruby-06 {
  width: 90%;
  margin: 0 auto 30px auto;
  text-align: center;
  line-height: 1.4;
}

.c-title-ruby-06 h2 {
  font-size: 26px;
  font-weight: bold;
  color: #333;
}

.c-title-ruby-06 span::first-letter {
  color: #0077b4;
}

.c-title-ruby-06 span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-06 {
    width: 100%;
    margin: 0 auto 45px auto;
  }
  .c-title-ruby-06 h2 {
    font-size: 34px;
  }
  .c-title-ruby-06 span {
    font-size: 20px;
  }
}
/*
　下線付き-01
================================*/
.c-title-border-01 {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  width: 90%;
  margin: 0 auto 50px auto;
}

.c-title-border-01::after {
  content: "";
  display: block;
  position: absolute;
  width: 45px;
  left: calc(50% - 30px);
  bottom: -15px;
  border: 2px solid #0077b4;
  border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-border-01 {
    width: 100%;
    font-size: 2.3rem;
    line-height: 1.4;
    margin: 0 auto 70px auto;
  }
}
/*
　番号付き-01
================================*/
.c-title-count-01 {
  position: relative;
  height: 100px;
  margin-right: 100px;
  padding: 20px 0 10px 15px;
  color: #fff;
  background: #0077b4;
  box-sizing: border-box;
  margin-bottom: 50px;
  font-weight: 900;
  font-size: 22px;
}

.c-title-count-01:after {
  position: absolute;
  top: 0;
  right: -60px;
  width: 0;
  height: 0;
  content: "";
  border-width: 100px 60px 0 0;
  border-style: solid;
  border-color: #0077b4 transparent transparent transparent;
}

.c-title-count-01 span {
  font-size: 50px;
  position: absolute;
  bottom: 0;
  right: -100px;
  display: block;
  padding-left: 16px;
  color: #0077b4;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: 700;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-01 {
    margin-right: 120px;
    margin-bottom: 60px;
    padding: 20px 0 10px 20px;
    font-size: 40px;
    font-size: clamp(33px, 3vw, 40px);
  }
  .c-title-count-01 span {
    font-size: 63px;
    top: 0;
    right: -120px;
    padding-top: 10px;
  }
}
/*
　番号付き-02
================================*/
.c-title-count-02 {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  padding: 10px 0;
}

.c-title-count-02 p {
  font-size: clamp(35px, 9vw, 100px);
  font-weight: bold;
  color: #0077b4;
  font-family: "Arial", sans-serif;
}

.c-title-count-02 h2 {
  margin-left: 3%;
  line-height: 1.4;
  font-size: clamp(20px, 6vw, 41px);
  font-weight: 900;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-count-02 {
    align-items: center;
    padding: 0;
  }
  .c-title-count-02 p {
    margin-top: -2.4%;
    margin-bottom: -2.7%;
    font-size: clamp(130px, 17vw, 205px);
  }
  .c-title-count-02 h2 {
    margin-left: 40px;
    font-size: clamp(30px, 3.5vw, 45px);
  }
}
/*
　付箋風-01
================================*/
.c-title-label-01 {
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #f8f8f8;
  border-left: 15px solid #0077b4;
  margin: 0 0 15px 0;
  padding: 15px 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-label-01 {
    font-size: 2rem;
    padding: 11px 10px 11px 20px;
    letter-spacing: 0.04em;
  }
}
/*
　背景カラー-01
================================*/
.c-title-bg-01,
.c-title-bg-01--color-2,
.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
  margin-bottom: 30px;
  padding: 15px;
  background: #0077b4;
}

.c-title-bg-01 h2,
.c-title-bg-01--color-2 h2,
.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01 h3,
.c-title-bg-01--color-2 h3,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
  font-size: clamp(27px, 4.1666666667vw, 32px);
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
  background: #f8b500;
}

.c-title-bg-01--sm,
.c-title-bg-01--color-2--sm {
  padding: 10px;
}

.c-title-bg-01--sm h2,
.c-title-bg-01--color-2--sm h2,
.c-title-bg-01--sm h3,
.c-title-bg-01--color-2--sm h3 {
  font-size: clamp(20px, 3.2552083333vw, 25px);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-bg-01,
  .c-title-bg-01--color-2,
  .c-title-bg-01--sm,
  .c-title-bg-01--color-2--sm {
    margin-bottom: 50px;
    padding: 30px 0;
    text-align: center;
  }
  .c-title-bg-01 h2,
  .c-title-bg-01--color-2 h2,
  .c-title-bg-01--sm h2,
  .c-title-bg-01--color-2--sm h2,
  .c-title-bg-01 h3,
  .c-title-bg-01--color-2 h3,
  .c-title-bg-01--sm h3,
  .c-title-bg-01--color-2--sm h3 {
    font-size: clamp(32px, 6.5104166667vw, 50px);
    letter-spacing: 0.05em;
  }
  .c-title-bg-01--sm,
  .c-title-bg-01--color-2--sm {
    padding: 15px;
  }
  .c-title-bg-01--sm h2,
  .c-title-bg-01--color-2--sm h2,
  .c-title-bg-01--sm h3,
  .c-title-bg-01--color-2--sm h3 {
    font-size: clamp(25px, 3.90625vw, 30px);
  }
}
/*
　誘導型-01
================================*/
.c-title-induction-01 {
  width: 100%;
  padding-bottom: 35px;
  box-sizing: content-box;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
  background-color: #0077b4;
}

.c-title-induction-01__inner {
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  padding: 4% 0 2% 0;
}

.c-title-induction-01__inner h2 {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
}

.c-title-induction-01 span {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
}

.c-title-induction-01 em {
  display: inline-block;
  font-weight: 900;
  font-style: normal;
  color: #f3e600;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-induction-01__inner {
    max-width: 1140px;
    padding: 25px 0 20px 0;
  }
  .c-title-induction-01__inner h2 {
    line-height: 1.3;
    font-size: clamp(36px, 2vw, 40px);
  }
  .c-title-induction-01__inner span {
    font-size: clamp(42px, 5vw, 53px);
  }
}
/*
　ルビ付き-07
================================*/
.c-title-ruby-07 {
  position: relative;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  margin-bottom: 30px;
  padding: 30px 0 20px 0;
}

.c-title-ruby-07 span {
  position: relative;
  line-height: 1.5;
  font-size: clamp(26px, 3.3854166667vw, 35px);
  z-index: 2;
}

.c-title-ruby-07::before {
  content: attr(data-en);
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(241, 141, 95, 0.6);
  opacity: 0.2;
  font-size: 3rem;
  font-size: clamp(47px, 6.1197916667vw, 60px);
  font-weight: normal;
  font-style: italic;
  z-index: 1;
}

.c-title-ruby-07::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-ruby-07 {
    margin-bottom: 60px;
  }
  .c-title-ruby-07 span {
    font-size: clamp(25px, 2.1929824561vw, 35px);
  }
  .c-title-ruby-07::before {
    top: -40px;
    font-size: clamp(65px, 5.701754386vw, 85px);
    letter-spacing: -3px;
  }
}
/*
　概要-09
================================*/
.c-about-09__container {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: 8vw;
  box-sizing: border-box;
}

.c-about-09 {
  position: relative;
}
.c-about-09::before {
  position: absolute;
  display: block;
  content: "";
  left: -8vw;
  right: -8vw;
  width: auto;
  height: 100%;
  background: #f7f7f7;
  z-index: -1;
}

.c-about-09__head {
  transform: translateY(-50%);
}

.c-about-09__head__title {
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Century Gothic", "Arial", sans-serif;
  font-size: 38px;
  font-weight: bold;
}

.c-about-09__head__img__container {
  margin-top: 2rem;
}

.c-about-09__head__img {
  position: relative;
}
.c-about-09__head__img:nth-child(1) {
  width: 98%;
  margin-left: -8vw;
}
.c-about-09__head__img:nth-child(2) {
  display: none;
  width: 90%;
  margin-top: 1.25rem;
  margin-right: -8vw;
  margin-left: auto;
  padding-left: 8vw;
}
.c-about-09__head__img:nth-child(3) {
  display: none;
  width: 75%;
  margin-top: 1.25rem;
  margin-left: -8vw;
  padding-right: 8vw;
}
.c-about-09__head__img img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-about-09__body {
  margin-top: 2.875rem;
}

.c-about-09__body__title {
  letter-spacing: 0.2em;
  font-size: 20px;
  font-weight: bold;
}

.c-about-09__desc {
  margin-top: 1.25rem;
  line-height: 2;
  font-size: 15px;
}

a.c-about-09__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 3.2rem;
  padding: 0 1rem 0 0;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  text-decoration: none;
  color: #000;
}
a.c-about-09__btn:hover .c-about-09__btn__arrow {
  position: relative;
  display: flex;
  align-items: center;
}
a.c-about-09__btn:hover .c-about-09__btn__arrow i {
  left: 100%;
}

.c-about-09__btn__text {
  margin-right: 1rem;
  letter-spacing: 0.15em;
  font-size: 13px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
}

.c-about-09__btn__arrow {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: 0.7rem;
  margin-left: auto;
}
.c-about-09__btn__arrow i {
  position: absolute;
  left: 0;
  font-size: 15px;
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.c-about-09__btn__line {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 0.6rem;
  pointer-events: none;
}
.c-about-09__btn__line::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background: #000;
}
.c-about-09__btn__line::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  right: 0;
  bottom: 0;
  background: #000;
}

/* PC */
@media screen and (min-width: 1024px) {
  .c-about-09__container {
    padding-inline: 9.5vw;
    margin-top: 100px;
    margin-bottom: 80px;
  }
  .c-about-09 {
    padding-bottom: 6.8rem;
  }
  .c-about-09::before {
    left: -4.3rem;
    right: -4.3rem;
  }
  .c-about-09__head__title {
    font-size: 50px;
  }
  .c-about-09__head__img__container {
    margin-top: 0;
  }
  .c-about-09__head__img {
    position: absolute;
    width: 100%;
  }
  .c-about-09__head__img:nth-child(1) {
    width: 75%;
    top: -5rem;
    left: calc(50% + 3.75rem);
    width: 18.75rem;
    margin-left: 0;
    padding-right: 0;
  }
  .c-about-09__head__img:nth-child(2) {
    display: block;
    top: 21.5rem;
    left: calc(50% - 2.5rem);
    width: 25rem;
    margin-top: 0;
    margin-right: 0;
    padding-left: 0;
  }
  .c-about-09__head__img:nth-child(3) {
    display: block;
    top: 2.9375rem;
    left: calc(50% + 23.5rem);
    width: 18.75rem;
    margin-left: 0;
    padding-right: 0;
  }
  .c-about-09__head__img img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .c-about-09__body {
    margin-top: 1.8rem;
  }
  .c-about-09__desc {
    width: calc(50% - 8rem);
    line-height: 2.2;
    font-size: 16px;
  }
  a.c-about-09__btn {
    max-width: 13.7rem;
    margin-bottom: 0;
  }
  .c-about-09__btn__text {
    position: relative;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .c-about-09__head__img {
    position: absolute;
  }
  .c-about-09__head__img:nth-child(1) {
    top: -5.8vw;
    left: calc(50% + 4.3vw);
    width: 22vw;
  }
  .c-about-09__head__img:nth-child(2) {
    top: 25.1830161054vw;
    left: calc(50% - 3.7vw);
    width: 30vw;
  }
  .c-about-09__head__img:nth-child(3) {
    top: 3.4407027818vw;
    left: calc(50% + 27.3vw);
    width: 22vw;
  }
}
/*
　施工事例-03
================================*/
.c-reform-list-03 {
  width: 95%;
  margin: 0 auto;
}

.c-reform-list-03 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.c-reform-list-03 li {
  margin-bottom: 30px;
  width: 46%;
}

.c-reform-list-03 li a {
  display: block;
  text-decoration: none;
  color: #222;
}

.c-reform-list-03 li a:hover {
  opacity: 0.8;
}

.c-reform-list-03 a:hover img {
  transform: scale(1.1);
}

.c-reform-list-03__image {
  margin-bottom: 10px;
  overflow: hidden;
  width: 100%;
}

.c-reform-list-03__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s all;
}

.c-reform-list-03__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.c-reform-list-03__title h3 {
  width: calc(100% - 22px);
  min-height: 40px;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.c-reform-list-03__title span {
  background: #0077b4;
  border-radius: 50%;
  display: block;
  width: 18px;
  height: 18px;
  position: relative;
}

.c-reform-list-03__title span::before {
  content: "";
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 1px;
  background: #fff;
}

.c-reform-list-03__title span::after {
  content: "";
  position: absolute;
  top: 46%;
  right: 5px;
  width: 3px;
  height: 1px;
  background: #fff;
  transform: rotate(35deg);
}

.c-reform-list-03 a:hover span {
  transform: scale(1.1, 1.1);
  transition: all 0.4s;
}

.c-reform-list-03__label {
  display: inline-block;
  margin-bottom: 5px;
  padding: 3px 5px 5px;
  font-size: 13px;
  color: #fff;
  background-color: #003160;
  line-height: 1;
}

.c-reform-list-03__detail {
  font-size: 13px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-reform-list-03 {
    width: 100%;
  }
  .c-reform-list-03 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-reform-list-03 ul::after {
    content: "";
    display: block;
    width: 31%;
  }
  .c-reform-list-03 li {
    width: 31%;
  }
  .c-reform-list-03__image {
    margin-bottom: 15px;
  }
  .c-reform-list-03__title h3 {
    width: calc(100% - 26px);
    min-height: 45px;
    font-size: 16px;
    line-height: 1.3;
  }
  .c-reform-list-03__title span {
    width: 22px;
    height: 22px;
  }
  .c-reform-list-03__title span::before {
    width: 13px;
  }
  .c-reform-list-03__title span::after {
    right: 4px;
    width: 5px;
  }
  .c-reform-list-03__label {
    padding: 3px 5px 5px;
    font-size: 14px;
  }
  .c-reform-list-03__detail {
    font-size: 14px;
    line-height: 1.7;
  }
}
/*
　お客様の声（アンケート）-01
================================*/
.c-survey-list-01 li,
.c-survey-list-01--gray li {
  margin-bottom: 30px;
}

.c-survey-list-01 li {
  background-color: #FFF;
}

.c-survey-list-01--gray li {
  background-color: #f9f9f9;
}

.c-survey-list-01 li a,
.c-survey-list-01--gray li a {
  display: block;
  margin: 0 auto;
  text-decoration: none;
}

.c-survey-list-01__image {
  width: 90%;
  margin: 0 auto 15px auto;
}

.c-survey-list-01__image img {
  width: 100%;
  height: 225px;
  margin-top: 20px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-survey-list-01__name {
  width: 90%;
  margin: 0 auto 10px auto;
  font-size: 17px;
  color: #000;
  font-weight: bold;
}

.c-survey-list-01__tag {
  display: flex;
  align-items: center;
  width: 90%;
  margin: 0 auto 15px auto;
  font-size: 16px;
  color: #FFF;
}

.c-survey-list-01__tag--area,
.c-survey-list-01__tag--type {
  margin-right: 10px;
  padding: 3px 5px;
}

.c-survey-list-01__tag--area {
  background-color: #0077b4;
}

.c-survey-list-01__tag--type {
  background-color: #003160;
}

.c-survey-list-01__detail {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.3;
  color: #333;
  overflow: hidden;
}

.c-survey-list-01__detail p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-survey-list-01,
  .c-survey-list-01--gray {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-survey-list-01 li,
  .c-survey-list-01--gray li {
    width: 31%;
  }
  .c-survey-list-01 a:hover,
  .c-survey-list-01--gray a:hover {
    opacity: 0.7;
  }
  .c-survey-list-01::after,
  .c-survey-list-01--gray::after {
    content: "";
    display: block;
    width: 31%;
  }
}
/*
　お知らせ-01
================================*/
.c-news-list-01__title h2 {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
}

.c-news-list-01__list {
  padding: 0 10px;
}

.c-news-list-01__list li {
  position: relative;
  padding: 10px 0;
  border-bottom: solid 1px #dddddd;
}

.c-news-list-01__list li:first-child {
  border-top: solid 1px #dddddd;
}

.c-news-list-01__list li::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 2px;
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
}

.c-news-list-01__list a {
  display: block;
  color: #333;
  text-decoration: none;
}

.c-news-list-01__list__data {
  margin-bottom: 5px;
  font-size: 14px;
}

.c-news-list-01__list__text {
  width: 90%;
}

.c-news-list-01__button__pc {
  display: none;
}

.c-news-list-01__button__sp {
  padding: 30px 0 0 0;
  text-align: center;
}

.c-news-list-01__button__sp a {
  position: relative;
  display: block;
  width: 90%;
  padding: 20px 10px;
  margin: 0 auto;
  color: #ffffff;
  background-color: #0077b4;
  text-decoration: none;
  text-align: center;
}

.c-news-list-01__button__sp a,
.c-news-list-01__button__sp a:link,
.c-news-list-01__button__sp a:visited {
  text-decoration: none;
  color: #FFF;
}

.c-news-list-01__button__sp .fa {
  margin-left: 20px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-news-list-01 {
    max-width: 1140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .c-news-list-01__title {
    width: 30%;
  }
  .c-news-list-01__title h2 {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
  .c-news-list-01__list {
    width: 70%;
  }
  .c-news-list-01__list li {
    padding: 15px 10px;
    border-bottom: solid 1px #000;
  }
  .c-news-list-01__list li::after {
    display: none;
  }
  .c-news-list-01__list li:first-child {
    border-top: none;
  }
  .c-news-list-01__list li:last-child {
    border-bottom: none;
  }
  .c-news-list-01__list li a {
    display: flex;
    box-sizing: border-box;
  }
  .c-news-list-01__list li a:hover {
    color: #0077b4;
    text-decoration: underline;
  }
  .c-news-list-01__list__data {
    width: 25%;
    font-size: 16px;
  }
  .c-news-list-01__list__text {
    width: 75%;
  }
  .c-news-list-01__button__pc {
    display: block;
  }
  .c-news-list-01__button__pc a {
    position: relative;
    display: block;
    width: 130px;
    margin: 0 auto;
    padding: 10px;
    color: #ffffff;
    background-color: #0077b4;
    text-decoration: none;
    text-align: center;
  }
  .c-news-list-01__button__pc a,
  .c-news-list-01__button__pc a:link,
  .c-news-list-01__button__pc a:visited {
    text-decoration: none;
    color: #FFF;
  }
  .c-news-list-01__button__pc a:hover {
    background-color: #f8b500;
  }
  .c-news-list-01__button__pc .fa {
    margin-left: 10px;
  }
  .c-news-list-01__button__sp {
    display: none;
  }
}
/*
　ブログリスト-03
================================*/
.c-blog-list-03 li {
  margin: 30px auto;
}

.c-blog-list-03 li a {
  display: flex;
  justify-content: space-between;
}

.c-blog-list-03__image {
  width: 30%;
  position: relative;
  padding-top: 20%;
  overflow: hidden;
}

.c-blog-list-03__image img {
  position: absolute;
  top: 50%;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-blog-list-03__text {
  width: 65%;
}

.c-blog-list-03__title {
  color: #111;
  margin-bottom: 10px;
  transition-duration: 0.2s;
}

.c-blog-list-03__date {
  font-size: 14px;
  color: #7F7F7F;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-blog-list-03 {
    margin-bottom: 30px;
  }
  .c-blog-list-03 li {
    margin: 0;
  }
  .c-blog-list-03 li:nth-child(1) {
    position: relative;
    width: 58%;
    float: left;
    margin-right: 30px;
  }
  .c-blog-list-03 li:nth-child(n+2) {
    width: 38%;
    float: right;
  }
  .c-blog-list-03 a {
    text-decoration: none;
  }
  .c-blog-list-03 a:hover {
    opacity: 0.7;
  }
  .c-blog-list-03 li:nth-child(n+2) a {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__image {
    width: 100%;
    padding-top: 66%;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__text {
    position: absolute;
    right: 0;
    bottom: -10px;
    padding: 20px 30px;
    width: 75%;
    background-color: #FFF;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__title {
    font-size: clamp(16px, 1.4035087719vw, 18px);
    font-weight: 500;
  }
  .c-blog-list-03 li:nth-child(n+2) .c-blog-list-03__image {
    width: 28%;
    padding-top: 18%;
  }
  .c-blog-list-03 li:nth-child(n+2) .c-blog-list-03__text {
    width: 68%;
  }
  .c-blog-list-03__date {
    font-size: 13px;
  }
  .c-blog-list-03 li:nth-child(1) .c-blog-list-03__date {
    font-size: clamp(13px, 1.1403508772vw, 16px);
    font-weight: 500;
  }
  .c-blog-list-03::after {
    content: "";
    display: block;
    clear: both;
  }
}
/*
　ページタイトル-10
================================*/
.c-page-title-10 {
  position: relative;
  width: 100%;
  height: 200px;
  border-bottom: 1px solid #222;
}

.c-page-title-10__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.c-page-title-10__inner p {
  margin-bottom: 15px;
  font-size: clamp(35px, 4.5572916667vw, 45px);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  color: #333;
  line-height: 1.1;
}

.c-page-title-10__inner h2 {
  font-size: clamp(18px, 2.34375vw, 27px);
  font-weight: normal;
  color: #333;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-page-title-10 {
    height: clamp(230px, 20.1754385965vw, 260px);
  }
  .c-page-title-10__inner p {
    margin-bottom: 10px;
    font-size: clamp(45px, 3.9473684211vw, 55px);
  }
  .c-page-title-10__inner h2 {
    font-size: clamp(20px, 1.7543859649vw, 23px);
  }
}
/*
　ページリンク-04
=================================*/
.c-page-link-04__inner {
  margin-top: 40px;
  margin-bottom: 25px;
}

.c-page-link-04__title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(22px, 7vw, 38px);
  font-weight: 900;
  line-height: 1.3;
}

.c-page-link-04__text p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
}

/* チェックボックス付きリスト */
.c-page-link-04__checkbox-list {
  margin: 35px 0 30px 0;
}

.c-page-link-04__checkbox-list li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.3;
}

.c-page-link-04__checkbox-list li:before {
  position: absolute;
  width: 23px;
  top: -2px;
  left: 0;
  content: url(../img/icon__check.svg);
}

.c-page-link-04__image {
  width: 70%;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}

.c-page-link-04__image img {
  max-width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-page-link-04__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
  }
  .c-page-link-04__title {
    font-size: clamp(35px, 5vw, 54px);
  }
  .c-page-link-04__text {
    width: 63%;
  }
  .c-page-link-04__checkbox-list li {
    padding-left: 40px;
    font-size: 20px;
    line-height: 1.5;
  }
  .c-page-link-04__checkbox-list li:before {
    top: 0;
    width: 26px;
  }
  .c-page-link-04__image {
    width: 35%;
    margin: 0;
  }
  .c-page-link-04__image img {
    max-width: 330px;
  }
}
/*
　会社概要-02
================================*/
.c-company-02__detail {
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
}

.c-company-02__detail__list {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.c-company-02__detail__list:nth-child(even) {
  background: #FFF;
}

.c-company-02__detail__list dt {
  width: 25%;
  padding-left: 2%;
  box-sizing: border-box;
}

.c-company-02__detail__list dd {
  width: 75%;
  padding-right: 2%;
  box-sizing: border-box;
}

.c-company-02__detail__list dt,
.c-company-02__detail__list dd {
  font-size: 14px;
}

.c-company-02__detail__feature {
  display: flex;
  flex-wrap: wrap;
}

.c-company-02__detail__feature li {
  margin: 0 5px 5px 0;
  padding: 2px 5px;
  font-size: 14px;
  background-color: #0077b4;
  border-radius: 3px;
  color: #FFF;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-company-02__detail__list {
    padding: 20px 0;
  }
  .c-company-02__detail__list dt {
    width: 19%;
  }
  .c-company-02__detail__list dd {
    width: 81%;
  }
  .c-company-02__detail__list dt,
  .c-company-02__detail__list dd {
    font-size: 16px;
  }
  .c-company-02__detail__feature li {
    margin: 0 7px 5px 0;
    padding: 2px 10px 4px 10px;
    font-size: 16px;
  }
}
/*
　吹き出し
================================*/
.c-trouble-04--mb-20 {
  margin-bottom: 20px !important;
}

.c-trouble-04__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.c-trouble-04__list {
  display: flex;
  flex-wrap: wrap;
}

.c-trouble-04__list li {
  margin-bottom: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  align-content: flex-start;
  width: 100%;
}

.c-trouble-04 img {
  width: 15%;
}

.c-trouble-04 p {
  font-size: 15px;
  font-weight: bold;
}

.c-trouble-04 p span {
  background: linear-gradient(transparent 60%, #FFF799 60%);
}

.c-trouble-04__comment {
  position: relative;
  display: inline-block;
  margin-left: 5px;
  padding: 10px 15px;
  text-align: left;
  background: #FFF;
  border-radius: 50px;
  box-sizing: border-box;
}

.c-trouble-04__comment:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -23px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 20px solid #FFF;
  z-index: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-trouble-04__title {
    font-size: 35px;
    margin-bottom: 50px;
  }
  .c-trouble-04 img {
    width: 13%;
  }
  .c-trouble-04__comment {
    font-size: 27px;
  }
  .c-trouble-04__list li {
    margin-bottom: 25px;
    width: 50%;
  }
  .c-trouble-04 p {
    font-size: 20px;
  }
  .c-trouble-04__comment {
    padding: 10px 15px;
  }
}
/* iPhone5 */
@media screen and (max-width: 320px) {
  .c-trouble-04 p {
    font-size: 11px;
  }
  .c-trouble-04 img {
    width: 10%;
  }
}
.c-trouble-04__text {
  line-height: 1.7;
}

/*
　流れ
================================*/
.c-flow-04 {
  margin: 0 auto 40px auto;
}

.c-flow-04.c-flow-04__inner {
  margin-top: 25px;
}

.c-flow-04__step {
  position: relative;
  width: 270px;
  background: #0077b4;
  padding: 10px 10px 0 10px;
  text-align: center;
  color: #FFF;
  box-sizing: border-box;
  margin: 0 auto;
}

.c-flow-04__step p,
.c-flow-04__step h3 {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 2px;
}

.c-flow-04__step:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -25px;
  left: 0;
  border-style: solid;
  border-color: #0077b4 transparent transparent transparent;
  border-width: 25px 135px 0 135px;
  z-index: 1;
}

.c-flow-04__text {
  padding: 40px 10px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-flow-04 {
    margin-bottom: 80px;
  }
  .c-flow-04__block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    margin-bottom: 30px;
  }
  .c-flow-04__step {
    margin: 0;
  }
  .c-flow-04__text {
    width: calc(100% - 330px);
    padding: 0 0 0 60px;
    font-size: 16px;
  }
}
/*
　コンタクト-01
================================*/
.c-contact-01 {
  display: block;
  padding: 30px 0;
  background: #727a84;
}

/* mail */
.c-contact-01__mail {
  width: 95%;
  margin: 0 auto;
  border-bottom: 1px solid #FFF;
}

.c-contact-01__mail a {
  display: block;
  max-width: 380px;
  width: 90%;
  margin: 0 auto 30px auto;
  padding: 20px 0;
  text-align: center;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  border: solid 1px #fff;
}

.c-contact-01__mail a:hover {
  background-color: #FFF;
  color: #727a84;
}

.c-contact-01__mail a i {
  margin-right: 5px;
}

/* tel */
.c-contact-01__tel {
  padding-top: 20px;
  text-align: center;
  color: #fff;
}

.c-contact-01__tel__announce {
  font-size: 18px;
}

.c-contact-01__tel__no {
  text-decoration: none !important;
  font-size: 40px;
  font-weight: bold;
  color: #fff !important;
  font-family: "Arial", "Century Gothic", "Noto Sans Japanese", sans-serif;
}

.c-contact-01__tel__no i {
  margin-right: 5px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact-01 {
    display: flex;
    align-items: center;
    padding: 20px 0;
  }
  /* mail */
  .c-contact-01__mail {
    width: 50%;
    padding: 25px 0;
    border-right: 1px solid #FFF;
    border-bottom: none;
  }
  .c-contact-01__mail a {
    width: 70%;
    margin: 0 auto;
  }
  /* tel */
  .c-contact-01__tel {
    width: 50%;
    padding-top: 0;
  }
  .c-contact-01__tel__announce {
    font-size: 20px;
  }
}
/*
　バナー
================================*/
.c-banner-col1-01 {
  position: relative;
  width: 95%;
  height: 250px;
  margin: 30px auto;
}

.c-banner-col1-01 a {
  display: block;
  text-decoration: none;
}

.c-banner-col1-01 a::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(11, 60, 93, 0.7);
}

.c-banner-col1-01__image img {
  display: block;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-banner-col1-01__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  color: #fff;
}

.c-banner-col1-01__content__text {
  line-height: 1.4;
  font-size: 16px;
}

.c-banner-col1-01__content__title {
  margin: 15px 0;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
}

.c-banner-col1-01__content__button {
  display: block;
  max-width: 380px;
  margin: 0 auto;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  background: #f8b500;
}

.c-banner-col1-01__content__button i {
  margin-left: 10px;
}

.c-banner-col1-01 a:hover {
  opacity: 0.8;
  background: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-banner-col1-01 {
    width: 100%;
    margin: 0 auto;
  }
  .c-banner-col1-01__content {
    width: 90%;
  }
  .c-banner-col1-01__content__title {
    text-align: left;
    font-size: 45px;
  }
  .c-banner-col1-01__content__text {
    font-size: 22px;
    font-weight: bold;
  }
  .c-banner-col1-01__content__button {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    padding: 10px;
    font-size: 22px;
  }
}
/*
　ポイント（リスト）-02
================================*/
.c-point-list-02 {
  background: #fafafa;
  margin-bottom: 80px;
}

.c-point-list-02 ul {
  counter-reset: num; /* カウンターをリセット */
}

.c-point-list-02 li {
  position: relative;
  border-bottom: 1px dotted #000;
}

.c-point-list-02 li:last-child {
  border-bottom: none;
}

.c-point-list-02__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  padding: 5px 0;
  background-color: #0077b4;
}

.c-point-list-02__cover::before {
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: bold;
  counter-increment: num;
  content: counter(num);
}

.c-point-list-02__cover p {
  color: #FFF;
  text-align: center;
  font-size: 32px;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: bold;
}

.c-point-list-02 h3 {
  padding: 10px 0 10px 65px;
  font-size: 25px;
  font-weight: 500;
}

.c-point-list-02__text {
  padding: 10px 20px 20px 20px;
}

.c-point-list-02__text img {
  max-width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

.c-point-list-02--orange {
  color: #FF8C00 !important;
  font-weight: bold !important;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-point-list-02 {
    margin-bottom: 100px;
  }
  .c-point-list-02 ul {
    display: flex;
    flex-wrap: wrap;
  }
  .c-point-list-02 li {
    width: 50%;
    border-bottom: 1px dotted #000;
    border-right: 1px dotted #000;
    box-sizing: border-box;
  }
  .c-point-list-02 li:nth-last-child(2) {
    border-bottom: none;
  }
  .c-point-list-02 li:nth-child(2n) {
    border-right: none;
  }
  .c-point-list-02__cover {
    width: 70px;
    padding: 0;
  }
  .c-point-list-02__cover::before {
    font-size: 48px;
  }
  .c-point-list-02__cover p {
    font-size: 48px;
  }
  .c-point-list-02 h3 {
    padding: 15px 0 15px 85px;
    font-size: 28px;
  }
  .c-point-list-02__text {
    padding: 20px 30px 30px 30px;
  }
}
/*
　よくある質問①
================================*/
.c-ques-list-01 {
  width: 90%;
  margin: 0 auto 30px auto;
}

.c-ques-list-01 dt,
.c-ques-list-01 dd {
  line-height: 1.7;
}

.c-ques-list-01 dt {
  margin-bottom: 10px;
}

.c-ques-list-01 dd {
  margin-bottom: 50px;
}

.c-ques-list-01 dt p,
.c-ques-list-01 dd p {
  display: inline-block;
  width: calc(100% - 60px);
  margin-left: 10px;
  padding: 8px;
  font-size: 16px;
  background-color: #FFFFFF;
  border: solid 1px #CCCCCC;
  border-radius: 5px;
  box-sizing: border-box;
}

.c-ques-list-01 dt:before,
.c-ques-list-01 dd:before {
  display: inline-block;
  content: "Q";
  width: 35px;
  height: 35px;
  vertical-align: top;
  text-align: center;
  font-size: 24px;
  font-family: "Arial", sans-serif;
  font-weight: 500;
  color: #FFF;
  line-height: 35px;
  border-radius: 50%;
  background-color: #0077b4;
}

.c-ques-list-01 dd:before {
  content: "A";
  background-color: #CCC;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-ques-list-01 {
    width: 100%;
  }
  .c-ques-list-01 dt:before,
  .c-ques-list-01 dd:before {
    width: 45px;
    height: 45px;
    font-size: 27px;
    line-height: 45px;
  }
}
/*
　ブログリスト-02
================================*/
.c-blog-list-02 {
  margin-bottom: 40px;
}

.c-blog-list-02 li {
  max-width: 400px;
  margin: 0 auto 50px auto;
}

.c-blog-list-02 li:last-child {
  border-bottom: none;
}

.c-blog-list-02 li a {
  display: block;
  text-decoration: none;
}

.c-blog-list-02__image img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.c-blog-list-02__content {
  padding-top: 10px;
  padding-bottom: 10px;
}

.l-section--gray .c-blog-list-02__content,
.l-section--blue .c-blog-list-02__content,
.l-section--yellow .c-blog-list-02__content {
  padding-left: 8px;
  padding-right: 8px;
}

.c-blog-list-02__content__inner {
  padding-bottom: 10px;
}

.c-blog-list-02__content__date {
  color: #666;
}

.c-blog-list-02__content__title {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #0077b4;
  font-weight: bold;
}

.c-blog-list-02__content__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: #333;
}

.c-blog-list-02__tag span {
  display: inline-block;
  margin-bottom: 5px;
  padding: 5px 10px;
  font-size: 14px;
  color: #fff !important;
  background-color: #f8b500;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-blog-list-02 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1140px;
    margin: 0 auto;
  }
  .c-blog-list-02::after {
    content: "";
    display: block;
    width: 31%;
  }
  .c-blog-list-02 li {
    width: 31%;
    margin: 0 0 50px 0;
    border-bottom: none;
  }
  .c-blog-list-02 a:hover {
    opacity: 0.7;
  }
}
/*
　会社概要-04
================================*/
.c-company-04 {
  padding: 25px 30px 25px 30px;
  background: #fff;
  border-radius: 7px;
}

.c-company-04__shop-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}

.c-company-04__shop-title img {
  width: 260px;
  height: auto;
  margin-right: 10px;
}

.c-company-04__shop-title img + span {
  font-size: 20px;
  font-weight: bold;
  vertical-align: middle;
}

.c-company-04__content {
  margin: 0 auto 30px auto;
}

.c-company-04__content dl > div {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  margin-top: 0;
  margin-bottom: 0;
}

.c-company-04__content dt {
  width: 25%;
  padding: 13px 5px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  border-top: solid 1px #908a6a;
}

.c-company-04__content dl > div:last-child dt {
  border-bottom: solid 1px #908a6a;
}

.c-company-04__content dd {
  width: 73%;
  margin-left: 0;
  padding: 13px 5px 13px 20px;
  font-size: 16px;
  font-weight: bold;
  border-top: solid 1px #c5c5c5;
}

.c-company-04__content dl > div:last-child dd {
  border-bottom: solid 1px #c5c5c5;
}

.c-company-04__image {
  margin-bottom: 20px;
  text-align: center;
}

.c-company-04__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-company-04__image img:nth-of-type(2) {
  margin-top: 20px;
}

.c-company-04__content__map {
  height: 250px;
}

.c-company-04__content__map iframe {
  width: 100%;
  height: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-company-04 {
    padding: 45px;
  }
  .c-company-04__shop-title img {
    width: 100%;
    max-width: 330px;
  }
  .c-company-04__wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1140px;
    margin: 0 auto 20px auto;
  }
  .c-company-04__content {
    width: calc(100% - 420px);
    margin: 0 50px 0 0;
  }
  .c-company-04__content dt {
    width: 25%;
    font-size: 16px;
  }
  .c-company-04__content dd {
    width: 65%;
  }
  .c-company-04__image {
    max-width: 370px;
    margin-bottom: 0;
  }
  .c-company-04__content__map {
    height: 400px;
  }
}
/*
　シンプル-03・左寄せ
================================*/
.c-title-03 {
  margin-bottom: 30px;
  line-height: 1.75;
  font-size: 24px;
  font-weight: bold;
}

.c-title-03::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background-color: #0077b4;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-03 {
    margin-bottom: 40px;
    font-size: clamp(28px, 3.6458333333vw, 32px);
  }
}
/*
　特徴（３カラム）-06
================================*/
.c-feature-col3-06 {
  width: 95%;
  margin: 0 auto;
}

.c-feature-col3-06 ul {
  display: flex;
  flex-direction: column;
}

.c-feature-col3-06 li {
  margin-bottom: 50px;
}

.c-feature-col3-06 li:last-child {
  margin-bottom: 0;
}

.c-feature-col3-06__image {
  border: 1px solid #B6BBC4;
  background-color: #FFF;
  border-radius: 5px;
  margin-bottom: 20px;
  padding: 7px;
  box-sizing: border-box;
  filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.7));
  font-size: 0;
}

.c-feature-col3-06__image img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-col3-06 h3 {
  margin-bottom: 10px;
  font-size: clamp(25px, 3.2552083333vw, 30px);
  font-weight: bold;
  color: #0077b4;
  text-align: center;
}

.c-feature-col3-06 p {
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-col3-06 {
    width: 100%;
  }
  .c-feature-col3-06 ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .c-feature-col3-06 li {
    width: 30%;
    margin-bottom: 0;
  }
  .c-feature-col3-06 h3 {
    font-size: clamp(25px, 2.1929824561vw, 28px);
  }
}
/*
　会社概要-10
================================*/
.c-company-10 {
  width: 100%;
}

.c-company-10__title {
  margin-bottom: 20px;
  font-size: clamp(22px, 1.4912280702vw, 35px);
  font-weight: 900;
  color: #0077b4;
  text-align: center;
}

.c-company-10__lead {
  margin-bottom: 50px;
  font-size: clamp(17px, 1.4912280702vw, 20px);
  font-weight: 500;
  text-align: center;
}

.c-company-10 ul {
  margin-bottom: 50px;
}

.c-company-10 ul li {
  margin-bottom: 50px;
}

.c-company-10 img {
  width: 100%;
}

.c-company-10__info__shop img {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  max-height: 30px;
  margin-bottom: 10px;
}

.c-company-10__info__shop dt {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  margin-left: auto;
  font-size: 24px;
  font-weight: bold;
  color: #000;
}

.c-company-10__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 25px;
}

.c-company-10__info dl > div {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #DCDCDC;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.c-company-10__info dt {
  width: 20%;
  width: 110px;
  font-weight: bold;
  color: #555;
}

.c-company-10__info i {
  margin-right: 5px;
}

.c-company-10__info dd a {
  text-decoration: none;
  color: #333;
  font-size: clamp(20px, 2.9947916667vw, 23px);
  font-weight: bold;
  font-family: "Arial", "Century Gothic", sans-serif;
}

.c-company-10__info__free-dial a {
  position: relative;
}

.c-company-10__info .button__line {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 30px 0;
  padding: 15px 0;
  font-size: 20px;
  text-decoration: none !important;
  background-color: #00b900;
  box-shadow: 0 4px 0 0 #048904;
  border-radius: 5px;
}

.c-company-10__info .button__line img {
  position: relative;
  width: clamp(30px, 3.90625vw, 30px);
  height: auto;
  top: 1px;
  margin-right: 10px;
}

.c-company-10__info .button__line span {
  color: #fff;
  font-weight: bold;
}

.c-company-10__map iframe {
  width: 100%;
  height: 250px;
}

/* PC */
@media screen and (min-width: 950px) {
  .c-company-10__lead {
    width: 100%;
    margin: 0 auto 80px auto;
  }
  .c-company-10 ul {
    display: flex;
    justify-content: space-between;
  }
  .c-company-10 ul li {
    width: 47%;
    margin-bottom: 0;
  }
  .c-company-10__info__shop img {
    max-height: 35px;
    margin-bottom: 7px;
  }
  .c-company-10__info__shop dt {
    font-size: clamp(20px, 2.1052631579vw, 24px);
  }
  .c-company-10__detail {
    display: flex;
    justify-content: space-between;
  }
  .c-company-10__info {
    width: 48%;
  }
  .c-company-10__info dl > div:first-child {
    flex-direction: column;
    align-items: baseline;
  }
  .c-company-10__info dt {
    width: 30%;
    margin-right: 15px;
  }
  .c-company-10__info dd a {
    font-size: 22px;
    font-size: clamp(18px, 1.9298245614vw, 22px);
  }
  .c-company-10__info .button__line {
    margin: 20px 0 0 0;
    padding: 10px 0;
  }
  .c-company-10__info .button__line img {
    flex: none;
    top: 2px;
  }
  .c-company-10__info .button__line:hover {
    opacity: 0.7;
  }
  .c-company-10__map {
    width: 47%;
  }
  .c-company-10__map iframe {
    height: 100%;
  }
}
/*
　メニュー-14
=================================*/
.c-menu-14--pattern {
  position: relative;
  padding: 80px 0;
  background-color: #f8f8f8;
}

.c-menu-14--pattern::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/pattern.png);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.c-menu-14 {
  width: 90%;
  margin: 0 auto;
}

.c-menu-14 ul {
  display: flex;
  flex-direction: column;
}

.c-menu-14 li {
  position: relative;
  margin-bottom: 70px;
}

.c-menu-14 li:last-child {
  margin-bottom: 0;
}

.c-menu-14 li a {
  display: block;
  text-decoration: none;
  color: #000;
}

.c-menu-14__image {
  cursor: pointer;
  position: relative;
  margin-bottom: 25px;
  background: #000;
  font-size: 0;
}

.c-menu-14__image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 7/4;
  filter: drop-shadow(3px 3px 2px rgba(160, 160, 160, 0.9));
}

.c-menu-14__image__hover-mask {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  width: 100%;
  height: auto;
  text-align: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.c-menu-14__image__hover-mask:hover {
  opacity: 1;
}

.c-menu-14__image__hover-mask p {
  width: 80%;
  font-size: 25px;
  font-weight: 900;
}

.c-menu-14 li a:hover .c-menu-14__image img {
  opacity: 0.5;
  transition: 0.3s;
}

.c-menu-14__text {
  padding: 20px 0;
  border-top: 2px solid #222;
  border-bottom: 2px solid #222;
}

.c-menu-14 li a:hover .c-menu-14__text {
  opacity: 0.7;
}

.c-menu-14__number {
  margin-bottom: 10px;
  font-size: 20px;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: bold;
  line-height: 1;
}

.c-menu-14__text h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 0 10px 20px 0;
  font-size: 35px;
  font-size: clamp(33px, 4.5572916667vw, 35px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #222;
}

.c-menu-14__text h3 span {
  background: #0077b4;
  border-radius: 50%;
  display: block;
  width: 27px;
  height: 27px;
  position: relative;
}

.c-menu-14__text h3 span::before {
  content: "";
  position: absolute;
  bottom: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 1px;
  background: #fff;
}

.c-menu-14__text h3 span::after {
  content: "";
  position: absolute;
  top: 46%;
  right: 6px;
  width: 5px;
  height: 1px;
  background: #fff;
  transform: rotate(35deg);
}

.c-menu-14__text h3 small {
  font-size: 70%;
  display: contents;
}

.c-menu-14 a:hover span {
  transform: scale(1.2, 1.2);
  transition: all 0.3s;
}

/* PC */
@media screen and (min-width: 900px) {
  .c-menu-14--pattern {
    padding: 100px 0;
  }
  .c-menu-14 {
    max-width: 1200px;
  }
  .c-menu-14 ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-menu-14 ul::after {
    content: "";
    display: block;
    width: 30%;
  }
  .c-menu-14 li {
    margin-bottom: 20px;
    width: 48%;
  }
  .c-menu-14__number {
    font-size: 23px;
  }
}
/*
　コンタクト-15
================================*/
.c-contact-15 {
  position: relative;
  background: url(../img/mado-shop__detail__contact-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: auto;
}

.c-contact-15::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(23, 65, 125, 0.8);
}

.c-contact-15__inner {
  position: relative;
  padding: 100px 0 80px 0;
  z-index: 10;
}

.c-contact-15__head {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.c-contact-15__heading span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-family: "Arial", "Century Gothic", sans-serif;
  font-size: clamp(60px, 18.2291666667vw, 140px);
  font-weight: 700;
  color: rgba(240, 245, 247, 0.3803921569);
  opacity: 0.38;
}

.c-contact-15__title {
  padding-top: 5px;
  line-height: 1.2;
  font-size: clamp(30px, 3.90625vw, 36px);
  font-weight: 900;
  color: #fff;
  text-align: center;
}

.c-contact-15__lead {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
}

.c-contact-15__wrapper {
  width: 90%;
  margin: 0 auto;
}

.c-contact-15__tel {
  margin-bottom: 30px;
}

.c-contact-15__tel:hover,
.c-contact-15__mail:hover {
  opacity: 0.8;
}

.c-contact-15__tel a,
.c-contact-15__mail a {
  display: block;
  padding: 25px 20px;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: #fff;
  box-sizing: border-box;
}

.c-contact-15__tel__title,
.c-contact-15__mail__title {
  margin-bottom: 20px;
  font-size: clamp(22px, 3.6458333333vw, 28px);
  font-weight: bold;
}

.c-contact-15__tel__number {
  margin-bottom: 15px;
  line-height: 1;
  font-family: "Arial", "Century Gothic", sans-serif;
  font-size: 40px;
  font-weight: bold;
}

.c-contact-15__tel__number i {
  margin-right: 5px;
  font-size: 38px;
}

.c-contact-14__tel__info__label {
  display: inline-block;
  margin-bottom: 5px;
  padding: 7px 10px;
  line-height: 1;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #f8b500;
}

.c-contact-15__mail__button {
  margin: 0 auto 20px auto;
  padding: 15px 5px;
  color: #fff;
  font-weight: 500;
  background: #f8b500;
}

.c-contact-15__mail__button i {
  margin-right: 5px;
  font-size: 18px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-contact-15__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 140px 0 100px 0;
  }
  .c-contact-15__head {
    width: 100%;
  }
  .c-contact-15__heading span {
    transform: translate(-50%, -40%);
    font-size: clamp(140px, 15.7894736842vw, 180px);
  }
  .c-contact-15__title {
    font-size: clamp(36px, 4.3859649123vw, 60px);
  }
  .c-contact-15__lead {
    margin-bottom: 50px;
    font-size: clamp(20px, 1.7543859649vw, 27px);
    text-align: center;
  }
  .c-contact-15__wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .c-contact-15__tel {
    margin-bottom: 0;
  }
  .c-contact-15__tel,
  .c-contact-15__mail {
    width: 48%;
  }
  .c-contact-15__tel a,
  .c-contact-15__mail a {
    padding: 40px 25px;
    width: 100%;
    height: 100%;
  }
  .c-contact-15__tel__title,
  .c-contact-15__mail__title {
    margin-bottom: 15px;
    font-size: clamp(26px, 2.6315789474vw, 30px);
  }
  .c-contact-15__tel__number {
    font-size: clamp(40px, 4.9122807018vw, 56px);
  }
  .c-contact-15__tel__number i {
    font-size: clamp(36px, 4.3859649123vw, 50px);
  }
  .c-contact-14__tel__info {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .c-contact-14__tel__info__label {
    margin-right: 10px;
    margin-bottom: 0;
    padding: 10px;
    font-size: 18px;
  }
  .c-contact-14__tel__info__detail,
  .c-contact-15__mail__button,
  .c-contact-15__mail__text {
    font-size: 20px;
  }
  .c-contact-15__mail__button {
    width: 75%;
  }
  .c-contact-15__mail__button i {
    margin-right: 10px;
    font-size: 22px;
  }
}
/*
特徴（3カラム）-08
================================*/
.c-feature-col3-08 {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.c-feature-col3-08 li {
  border: 1px solid #000;
  background: #fff;
  margin-bottom: 30px;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
}

.c-feature-col3-08__image {
  margin-bottom: 15px;
}

.c-feature-col3-08__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-col3-08__label {
  color: #fff;
  font-weight: bold;
  background: #0077b4;
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 12px;
}

.c-feature-col3-08 h3 {
  color: #0077b4;
  font-size: clamp(22px, 1.9298245614vw, 25px);
  font-weight: bold;
  margin-bottom: 12px;
}

/* PC */
@media screen and (min-width: 700px) {
  .c-feature-col3-08 li {
    width: 49%;
  }
}
@media screen and (min-width: 960px) {
  .c-feature-col3-08 {
    width: 100%;
    max-width: 1250px;
  }
  .c-feature-col3-08 li {
    width: 32%;
    margin-bottom: 0;
    padding: 20px;
  }
}
/*
　ボタン-03
================================*/
.c-button-03 a {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 500px;
  padding: 25px 30px;
  font-size: clamp(16px, 2.0833333333vw, 20px);
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background: #B22222;
  box-shadow: 0 5px #7c1717;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  box-sizing: border-box;
  width: 95%;
  margin: 40px auto 0;
}

.c-button-03 a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.c-button-03 a:hover:after {
  right: 1.4rem;
}

.c-button-03 a:hover {
  opacity: 0.8;
  box-shadow: 0 3px #555;
  transform: translateY(3px);
}

.c-button-03 i {
  margin-right: 10px;
}

/*
　2columnレイアウト-01
=================================*/
.c-column-2-01 {
  margin-bottom: 50px;
}

.c-column__col {
  margin-bottom: 15px;
}

.c-column__col h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.c-column__col p {
  line-height: 1.6;
}

.c-column__col img {
  max-width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-column-2-01 {
    display: flex;
    justify-content: space-between;
  }
  .c-column__col {
    width: 48%;
  }
  .c-column__col p {
    font-size: clamp(16px, 1.7543859649vw, 20px);
    line-height: 1.8;
  }
}
/*
　アコーディオンメニュー-01
================================*/
.c-accordion-menu-01 {
  width: 100%;
  margin: 0 auto 30px auto;
}

.c-accordion-menu-01 li {
  display: block;
  background: #fff;
  border-top: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
}

.c-accordion-menu-01 li:last-child {
  border-bottom: 1px solid #dcdcdc;
}

.c-accordion-menu-01__check {
  display: none;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question + .c-accordion-menu-01__answer {
  padding: 10px;
  height: auto;
  opacity: 1;
  visibility: visible;
}

.c-accordion-menu-01__check:checked + .c-accordion-menu-01__question::after {
  content: "－";
}

.c-accordion-menu-01__question {
  position: relative;
  display: block;
  padding: 15px 50px 15px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #345887;
  background: #fff;
}

.c-accordion-menu-01__question::after {
  position: absolute;
  display: block;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  padding: 15px;
  box-sizing: border-box;
  content: "＋";
}

.c-accordion-menu-01__answer {
  padding: 0 10px;
  height: 0;
  opacity: 0;
  visibility: hidden;
  border-top: 1px solid #dcdcdc;
  transition: 0.5s;
  background-color: #f5f5f5;
}

.c-accordion-menu-01__answer p {
  width: 95%;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
  word-break: break-word;
}

@media screen and (min-width: 768px) {
  .c-accordion-menu-01 {
    margin-bottom: 50px;
  }
  .c-accordion-menu-01__question {
    padding-right: 70px;
    font-size: 22px;
    cursor: pointer;
  }
  .c-accordion-menu-01__question::after {
    padding: 20px;
  }
  .c-accordion-menu-01__answer p {
    width: 98%;
    line-height: 1.6;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=================================

* ヘッダー-02

=================================*/
html {
  scroll-padding-top: 80px;
}

.l-header-02 {
  position: relative;
  width: 100%;
  height: 75px;
  margin: 0;
}

.l-header-02__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 75px;
  padding: 5px;
  background-color: rgba(250, 250, 250, 0.9);
  z-index: 99;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}

.l-header-02__inner h1 {
  overflow: hidden;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
  color: #5f5f5f;
}

.l-header-02__information {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.l-header-02__logo {
  width: 100%;
  max-width: clamp(155px, 20.1822916667vw, 200px);
  margin: 0 0 0 2px;
  font-size: 0;
}

.l-header-02__nav {
  display: none;
}

.l-header-02__inquiry--tel,
.l-header-02__inquiry--mail {
  display: none;
}

.open .l-header-02__nav {
  display: block;
  z-index: 15;
}

/* ハンバーガーメニュー */
.l-header-02__menu__button {
  position: absolute;
  display: block;
  top: 60%;
  right: 15px;
  transform: translate(0, -50%);
}

.l-header-02__menu__button a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #1f2a34;
}

.l-header-02__menu__button i {
  font-size: 35px;
}

.l-header-02__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(min(-100%, -1000px));
  width: 100%;
  height: 100%;
  padding: 100px 20px 65px 20px;
  transition: transform 0.5s;
  background: #fefefe;
  z-index: 60;
  box-sizing: border-box;
  overflow: auto;
}

.l-header-02__sp-menu.__open {
  transform: translateY(0);
  transition: transform 0.5s;
}

.l-header-02__sp-menu ul li {
  width: 100%;
  height: auto;
  border-top: 1px solid #919191;
}

.l-header-02__sp-menu ul li:hover {
  background: #747474;
}

.l-header-02__sp-menu ul li:last-child {
  border-bottom: 1px solid #919191;
}

.l-header-02__sp-menu ul li a {
  display: block;
  width: 100%;
  height: 3em;
  margin-left: 1em;
  line-height: 3em;
  text-decoration: none;
  font-size: 1em;
  color: #0077b4;
}

.l-header-02__sp-menu ul li a:hover {
  color: #fff;
}

.l-header-02__sp-menu--tel a, .l-header-02__sp-menu--mail a {
  display: block;
  text-align: center;
}

.l-header-02__sp-menu--tel p {
  text-align: center;
  font-size: 16px;
  color: #5f5f5f;
}

.l-header-02__sp-menu--tel a {
  margin-top: 50px;
  text-decoration: none;
  line-height: 1;
  font-family: "Arial", "Noto Sans Japanese", sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #0077b4;
}

.l-header-02__sp-menu--mail a {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  max-width: 450px;
  width: 100%;
  margin: 30px auto;
  padding: 30px;
  text-decoration: none;
  font-size: 16px;
  color: #FFF;
  background-color: #0077b4;
}

.l-header-02__sp-menu--mail a span {
  font-size: 25px;
  font-weight: bold;
}

.l-header-02__sp-menu--mail a:hover {
  background: #003160;
}

@media print {
  .l-header-02__sp-menu {
    display: none;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }
  .l-header-02 {
    height: 100px;
  }
  .l-header-02__wrapper {
    display: flex;
    justify-content: space-between;
    height: 100px;
    padding: 0 0 0 10px;
  }
  .l-header-02__inner {
    width: calc(100% - 190px);
  }
  .l-header-02__inner h1 {
    margin-top: 2px;
    margin-bottom: 8px;
  }
  .l-header-02__logo {
    max-width: clamp(200px, 19.298245614vw, 220px);
    margin: 0 auto 0 0;
  }
  /* 問合せ */
  .l-header-02__inquiry--mail {
    display: block;
  }
  .l-header-02__inquiry--mail {
    width: 165px;
  }
  .l-header-02__inquiry--mail a {
    display: block;
    width: 165px;
    height: 100px;
    padding: 25px 5px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    color: #fff;
    background-color: #0077b4;
    box-sizing: border-box;
  }
  .l-header-02__inquiry--mail a span {
    display: flex;
    flex-direction: column;
    font-size: 18px;
  }
  .l-header-02__inquiry--mail a:hover {
    position: absolute;
    bottom: 0;
    background-color: #003160;
  }
  /* ハンバーガーメニュー */
  .l-header-02__menu__button {
    top: 60%;
    right: 200px;
  }
}
/* PC */
@media screen and (min-width: 1200px) {
  .l-header-02__inner {
    width: calc(100% - 135px);
  }
  .l-header-02__logo {
    width: clamp(200px, 17.5438596491vw, 300px);
  }
  /* ナビゲーション */
  .l-header-02__nav {
    display: block;
  }
  .l-header-02__nav ul {
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
  }
  .l-header-02__nav li {
    position: relative;
  }
  .l-header-02__nav li:before,
  .l-header-02__nav li:last-child:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 90%;
    background-color: #ededed;
  }
  .l-header-02__nav li a {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5px 25px 10px 25px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    color: #000;
  }
  .l-header-02__nav li a span {
    letter-spacing: 0.1em;
    font-size: 17px;
    font-weight: bold;
  }
  .l-header-02__nav li a:hover {
    color: #0077b4;
  }
  .l-header-02__nav li a:hover:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 5px;
    background-color: #0077b4;
  }
  /* 問合せ */
  .l-header-02__inquiry--mail {
    width: 135px;
  }
  .l-header-02__inquiry--mail a {
    width: 135px;
  }
  /* ハンバーガーメニュー*/
  .l-header-02__menu__button {
    display: none;
  }
}
/* PC */
@media screen and (min-width: 1460px) {
  /* ナビゲーション */
  .l-header-02__nav ul {
    margin-right: 15px;
  }
  .l-header-02__nav li:last-child:after {
    left: auto;
    right: 0;
  }
  .l-header-02__nav li a {
    padding: 5px 25px 10px 25px;
  }
  .l-header-02__nav li a span {
    font-size: 18px;
  }
  /* Tel */
  .l-header-02__inquiry--tel {
    display: block;
    margin-right: 15px;
  }
  .l-header-02__inquiry--tel a {
    line-height: 1;
    text-decoration: none;
    font-family: "Arial", "Noto Sans Japanese", sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #0077b4;
  }
  .l-header-02__inquiry--tel i {
    margin-right: 5px;
  }
  .l-header-02__inquiry--tel p {
    text-align: center;
    font-size: 12px;
  }
}
/*
　メインビジュアル-29
================================*/
.l-main-visual-29 {
  margin-bottom: 0;
}

.l-main-visual-29__inner {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  max-height: 730px;
  z-index: 20;
}

.l-main-visual-29__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  margin: 0 auto;
  z-index: 10;
}

.l-main-visual-29__catchcopy {
  margin-bottom: 20px;
  font-size: clamp(30px, 3.90625vw, 40px);
  font-weight: bold;
  text-align: center;
  color: #FFF;
  line-height: 1.3;
  text-shadow: 1px 1px 2px #000;
}

.l-main-visual-29__title h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
  font-size: clamp(38px, 4.9479166667vw, 45px);
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  color: #FFF;
  text-shadow: 1px 1px 2px #000;
}

.l-main-visual-29__title em {
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: clamp(35px, 4.5572916667vw, 45px);
  font-weight: 900;
  font-style: normal;
  border: 2px solid #FFF;
  background-color: rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  line-height: 1;
  text-shadow: 1px 1px 2px #000;
  box-shadow: 1px 1px 3px #000;
}

.l-main-visual-29__title h3 {
  font-size: clamp(20px, 2.6041666667vw, 30px);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  color: #FFF;
  text-shadow: 1px 1px 2px #000;
}

.l-main-visual-29__title img {
  display: block;
  width: 90%;
  margin: 0 auto 20px auto;
  max-width: 260px;
}

.l-main-visual-29__title--03 h2 {
  margin: 0 auto 20px auto;
  line-height: 1.5;
  font-size: clamp(35px, 6.5104166667vw, 50px);
  font-weight: 900;
  text-shadow: 1px 1px 2px #000;
  color: #fff;
}

.l-main-visual-29__title--03 h3 {
  font-size: clamp(20px, 2.6041666667vw, 30px);
}

.l-main-visual-29__image--01,
.l-main-visual-29__image--02,
.l-main-visual-29__image--03 {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  max-height: 730px;
}

.l-main-visual-29__image--01::before,
.l-main-visual-29__image--02::before,
.l-main-visual-29__image--03::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(33, 33, 33, 0.4);
}

.l-main-visual-29__image--01 {
  background-image: url(../img/main-visual--01.jpg);
  background-position: 45% 50%;
}

.l-main-visual-29__image--02 {
  background-image: url(../img/main-visual--02.jpg);
  background-position: 35% 50%;
}

.l-main-visual-29__image--03 {
  background-image: url(../img/main-visual--03.jpg);
  background-position: 75% 50%;
}

.sp-buttons {
  display: none;
}

.l-main-visual-29__list {
  padding: 0;
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.l-main-visual-29__list li {
  position: relative;
  background: #fff;
  padding: 12px 16px 12px 40px;
  color: #333;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: -moz-max-content;
  width: max-content;
  min-width: 250px;
}

.l-main-visual-29__list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/main-visual__icon-check.svg") no-repeat center center;
  background-size: contain;
}

.l-main-visual-29__list li span {
  color: #fc7f1f;
  font-weight: bold;
}

.l-main-visual-29__logo {
  max-width: 670px;
  margin: 25px auto 0;
  width: 93%;
}

.l-main-visual-29__logo img {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 450px;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-main-visual-29__inner {
    height: 85vh;
  }
  .sp-slides-container {
    overflow-x: clip;
  }
  .l-main-visual-29__title {
    max-width: clamp(1140px, 100vw, 1300px);
  }
  .l-main-visual-29__catchcopy {
    margin-bottom: 40px;
    font-size: clamp(40px, 3.5087719298vw, 65px);
  }
  .l-main-visual-29__title h2 {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 45px;
    font-size: clamp(40px, 3.5087719298vw, 65px);
  }
  .l-main-visual-29__title h2 em {
    margin: 0 15px;
    padding: 15px 25px;
    font-size: clamp(30px, 3.5087719298vw, 65px);
    border: 3px solid #FFF;
    background-color: rgba(255, 255, 255, 0.3);
  }
  .l-main-visual-29__title h3 {
    font-size: clamp(25px, 2.1929824561vw, 35px);
  }
  .l-main-visual-29__title img {
    max-width: 1000px;
  }
  .l-main-visual-29__title--03 h2 {
    margin-bottom: 30px;
    line-height: 1.3;
    font-size: clamp(40px, 4.8245614035vw, 75px);
    text-shadow: 2px 2px 3px #000;
  }
  .l-main-visual-29__title--03 h3 {
    font-size: clamp(24px, 2.1052631579vw, 29px);
  }
  .l-main-visual-29__list {
    margin-top: 40px;
    gap: 20px;
  }
  .l-main-visual-29__list li {
    margin-bottom: 0;
    padding: 12px 20px 12px 50px;
    font-size: clamp(20px, 2.0175438596vw, 23px);
  }
  .l-main-visual-29__list li::before {
    left: 20px;
  }
  .l-main-visual-29__logo {
    margin: 35px auto 0;
  }
  .l-main-visual-29__logo img {
    max-width: 1000px;
  }
}
/*=========================================

* フッター-07

==========================================*/
.l-footer-07 {
  padding: 30px 0;
  background: #F5F5F5;
}

.l-footer-07__inner {
  max-width: 90%;
  margin: 0 auto;
}

.l-footer-07__info {
  border-bottom: 1px solid #CCC;
  padding-bottom: 15px;
}

.l-footer-07__info__logo {
  width: 85%;
  max-width: 220px;
  margin-bottom: 20px;
}

.l-footer-07__info__detail {
  margin-bottom: 20px;
}

.l-footer-07__info__logo img {
  width: 100%;
}

a.l-footer-07__info__tel {
  display: block;
  margin: 10px 0;
  text-decoration: none;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  color: #b30404;
  font-family: "Arial", "Century Gothic", sans-serif;
}

.l-footer-07__info__detail p {
  margin-bottom: 3px;
  line-height: 1.4;
}

.l-footer-07__info__map {
  width: 100%;
  height: 250px;
}

.l-footer-07__info__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.l-footer-07__nav {
  padding-top: 20px;
}

.l-footer-07__nav ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.l-footer-07__nav ul li {
  width: 50%;
}

.l-footer-07__nav ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 10px;
}

.l-footer-07__nav ul li a:hover {
  color: #0077b4;
  font-weight: bold;
}

.l-footer-07__contact__sns {
  display: flex;
  padding-left: 10px;
}

.l-footer-07__contact__sns a:hover {
  opacity: 0.7;
}

.l-footer-07__contact__sns img {
  width: 35px;
}

.l-footer-07__contact__sns a:not(:first-child) {
  margin-left: 15px;
}

.copyright {
  padding: 10px 0 30px 0 !important;
  text-align: center !important;
  background-color: #0077b4 !important;
  color: #FFF !important;
  font-size: 14px !important;
}

/* PC */
@media screen and (min-width: 1024px) {
  .l-footer-07 {
    padding: 60px 0 50px 0;
  }
  .l-footer-07__inner {
    max-width: 85%;
  }
  .l-footer-07__contents {
    display: flex;
    justify-content: space-between;
  }
  .l-footer-07__info {
    display: flex;
    justify-content: space-between;
    width: 57%;
    border-right: 1px solid #CCC;
    border-bottom: none;
    padding-right: 3%;
    padding-bottom: 0;
    box-sizing: border-box;
  }
  .l-footer-07__info__detail {
    width: 48%;
    margin-bottom: 0;
  }
  .l-footer-07__info__logo {
    max-width: 250px;
  }
  a.l-footer-07__info__tel {
    font-size: clamp(27px, 2.109375vw, 35px);
  }
  .l-footer-07__info__map {
    width: 50%;
  }
  .l-footer-07__nav {
    width: 43%;
    padding-left: 2%;
    padding-top: 0;
    box-sizing: border-box;
  }
  .l-footer-07__nav ul {
    margin-bottom: 10px;
  }
  .l-footer-07__nav ul li {
    width: auto;
    margin-bottom: 15px;
    border-right: 1px solid #333;
  }
  .l-footer-07__nav ul li a {
    padding: 3px 25px;
    line-height: 1;
  }
  .l-footer-07__contact__sns {
    padding-left: 25px;
  }
  .l-footer-07__contact__sns img {
    width: 35px;
  }
  .l-footer-07__contact__sns a:not(:first-child) {
    margin-left: 15px;
  }
  .btn__page_top {
    position: fixed;
    right: 10px;
    bottom: 50px;
    font-size: 1.2rem;
    line-height: 1.2rem;
    background: #fff;
    color: #737373;
    padding: 13px;
    border: solid 1px;
    border-radius: 50%;
    box-shadow: 0 2px 10px -6px rgba(0, 0, 0, 0.5), 0 3px 10px -4px rgba(0, 0, 0, 0.2);
  }
  .btn__page_top i {
    font-size: 1.2rem;
    opacity: 1;
    margin: 0;
  }
  .btn__page_top span {
    display: none;
  }
  .copyright {
    padding: 20px 0 !important;
  }
}
/* SP */
@media screen and (max-width: 767px) {
  .btn__page_top {
    display: none !important;
  }
}
/**
 * Section
 */
/*==================================
* Section
==================================*/
.l-section {
  padding: 50px 0;
}

.l-section.l-section--gray {
  background: #F5F5F5;
}

.l-section.l-section--blue {
  background: #eaf3f9;
}

.l-section.l-section--yellow {
  background: #fbf9ee;
}

.l-section.l-section--beige {
  background: #f4f3ef;
}

.l-section.l-section--stripe {
  background: repeating-linear-gradient(#fcfbfb, #fcfbfb 20px, #fff 20px, #fff 40px);
}

.l-section.l-section--stripe--yellow {
  background: repeating-linear-gradient(#fcfaf2, #fcfaf2 20px, #fff 20px, #fff 41px);
}

.l-section__container,
.l-section__container--md,
.l-section__container--lg {
  padding: 0 8px;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-section {
    padding: 80px 0;
  }
  .l-section__container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
  .l-section__container--md {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0;
  }
  .l-section__container--lg {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　カテゴリ別検索
================================*/
.p-search__reform-category {
  position: relative;
  background: url(../img/search__reform-category__bg.jpg) no-repeat center center/cover;
}

.p-search__reform-category::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background-color: rgba(33, 33, 33, 0.6);
}

.p-search__reform-category__inner {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.p-search__reform-category__title {
  margin-bottom: 20px;
  color: #FFF;
}

.p-search__reform-category__title span {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.p-search__reform-category__title h2 {
  display: flex;
  align-items: center;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 10px;
}

.p-search__reform-category__title h2:before {
  content: "";
  width: 1.5em;
  border-top: 1px solid;
  margin-right: 0.5em;
}

.p-search__reform-category__list {
  display: flex;
  flex-wrap: wrap;
}

.p-search__reform-category__list li {
  width: auto;
  margin: 0 10px 10px 0;
}

.p-search__reform-category__list li a {
  display: block;
  padding: 10px 25px;
  text-decoration: none;
  font-size: 15px;
  background: #f8b500;
  color: #fff;
  font-weight: 500;
  border-radius: 50px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-search__reform-category__list li a:hover {
  opacity: 0.7;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-search__reform-category__inner {
    width: 100%;
    max-width: 1140px;
  }
  .p-search__reform-category__title {
    margin-bottom: 30px;
  }
  .p-search__reform-category__title span {
    font-size: 40px;
  }
  .p-search__reform-category__title h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }
  .p-search__reform-category__list li {
    margin: 0 12px 12px 0;
  }
  .p-search__reform-category__list li a {
    padding: 15px 30px;
    font-size: clamp(16px, 2.6041666667vw, 20px);
  }
}
.p-index__section-read {
  display: flex;
  justify-content: center;
  width: 95%;
  margin: 0 auto 40px;
  font-size: clamp(16px, 1.4035087719vw, 18px);
}

/* PC */
@media screen and (min-width: 768px) {
  .p-index__section-read {
    margin-bottom: 60px;
    text-align: center;
  }
}
/*=================================

* 会社案内

=================================*/
/*
　紹介文
================================*/
.p-company__introduction {
  position: relative;
  background: url(../img/company__introduction__bg.jpg) no-repeat center center/cover;
}

.p-company__introduction::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(248, 247, 247, 0.85);
}

.p-company__introduction__inner {
  position: relative;
  width: 85%;
  margin: 0 auto;
}

.p-company__introduction__inner h2 {
  margin-bottom: 15px;
  font-size: clamp(22px, 2.8645833333vw, 26px);
  font-weight: bold;
  color: #333;
}

.p-company__introduction__inner h3 {
  margin-bottom: 25px;
  font-size: clamp(25px, 3.2552083333vw, 30px);
  font-weight: 900;
  color: #3fa037;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}

.p-company__introduction__inner p {
  line-height: 1.8;
  letter-spacing: 0.05em;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__introduction__inner {
    max-width: 960px;
  }
  .p-company__introduction__inner h2 {
    margin-bottom: 30px;
    font-size: clamp(23px, 2.0175438596vw, 30px);
    text-align: center;
  }
  .p-company__introduction__inner h3 {
    font-size: clamp(25px, 2.1929824561vw, 33px);
    text-align: center;
  }
  .p-company__introduction__inner p {
    font-size: clamp(16px, 1.4035087719vw, 18px);
  }
}
/*
　共通タイトル
================================*/
.p-company-title {
  position: relative;
  width: 90%;
  margin: 0 auto 50px auto;
  font-size: clamp(22px, 2.8645833333vw, 26px);
  font-weight: bold;
  text-align: center;
  color: #333;
}

.p-company-title::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 12px);
  bottom: -20px;
  width: 24px;
  border: 2px solid #0077b4;
  border-radius: 50px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company-title {
    width: 100%;
    margin: 0 auto 70px auto;
    font-size: clamp(23px, 2.0175438596vw, 30px);
  }
  .p-company-title::after {
    left: calc(50% - 17px);
    width: 34px;
  }
}
/*
　当社の特徴
================================*/
.p-company__feature {
  padding-top: 15px;
}

.p-company__feature__block {
  width: 90%;
  margin: 0 auto;
}

.p-company__feature__block li {
  position: relative;
  width: 100%;
  border: solid 1px #ccc;
}

.p-company__feature__block li:not(:first-child) {
  margin-top: 30px;
}

.p-company__feature__list-cover {
  position: absolute;
  top: -14px;
  left: 12px;
  width: 80px;
  padding: 8px 0;
  text-align: center;
  color: #fff;
  font-weight: bold;
  background-color: #0077b4;
}

.p-company__feature__block-no {
  font-size: 1.7rem;
}

.p-company__feature__block li h3 {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding: 10px 12px 10px 105px;
  min-height: 80px;
  font-size: clamp(20px, 2.6041666667vw, 25px);
  font-weight: 900;
  border-bottom: solid 1px #ccc;
  box-sizing: border-box;
  color: #222;
  line-height: 1.3;
}

.p-company__feature__list-text {
  padding: 20px;
}

.p-company__feature__list-text p {
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__feature__block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .p-company__feature__block li {
    width: 31%;
    margin-top: 0;
  }
  .p-company__feature__block li:not(:first-child) {
    margin-top: 0;
  }
  .p-company__feature__block li:nth-child(n+4) {
    margin-top: 68px;
  }
  .p-company__feature ul::after {
    display: block;
    content: "";
    width: 31%;
  }
  .p-company__feature__list-cover {
    padding: 18px 0;
  }
  .p-company__feature__block li h3 {
    min-height: 100px;
    padding: 12px 12px 12px 110px;
  }
}
/*
　代表あいさつ
================================*/
.p-company__greeting {
  width: 95%;
  margin: 0 auto;
}

.p-company__greeting h3 {
  margin-bottom: 25px;
  font-size: clamp(24px, 3.125vw, 28px);
  font-weight: 900;
  color: #0077b4;
  font-family: "Noto Serif JP", serif;
  line-height: 1.5;
}

.p-company__greeting__text p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.p-company__greeting__img {
  width: 100%;
}

.p-company__greeting__img img {
  display: block;
  width: 100%;
  max-height: 350px;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__greeting {
    width: 100%;
  }
  .p-company__greeting__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }
  .p-company__greeting h3 {
    margin-bottom: 30px;
    font-size: clamp(25px, 2.1929824561vw, 40px);
  }
  .p-company__greeting__text {
    width: 65%;
  }
  .p-company__greeting__text p {
    margin-bottom: 0;
    font-size: clamp(16px, 1.4035087719vw, 17px);
  }
  .p-company__greeting__img {
    width: 35%;
  }
  .p-company__greeting__img img {
    max-height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/*
　スタッフ紹介バナー
================================*/
.p-company__banner-staff {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: url(../img/company__banner-staff.jpg) no-repeat center center/cover;
}

.p-company__banner-staff::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(12, 55, 94, 0.7);
}

.p-company__banner-staff__inner {
  position: relative;
  width: 90%;
  text-align: center;
}

.p-company__banner-staff__title {
  font-size: clamp(32px, 4.1666666667vw, 40px);
  font-weight: 900;
  color: #fff;
}

.p-company__banner-staff__text {
  margin-top: 20px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

a.p-company__banner-staff__button {
  display: block;
  max-width: 330px;
  margin: 30px auto 0;
  padding: 10px 10px;
  font-size: clamp(18px, 2.34375vw, 22px);
  font-weight: bold;
  text-decoration: none;
  color: #0077b4;
  background: #fedb39;
}

a.p-company__banner-staff__button:hover {
  opacity: 0.8;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__banner-staff__inner {
    width: 100%;
  }
  .p-company__banner-staff__title {
    font-size: clamp(30px, 2.6315789474vw, 45px);
  }
  .p-company__banner-staff__text {
    font-size: clamp(16px, 1.4035087719vw, 18px);
  }
  a.p-company__banner-staff__button {
    font-size: clamp(17px, 1.4912280702vw, 22px);
  }
}
/*
　沿革
================================*/
.p-company__history__list {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
}

.p-company__history__list:nth-child(even) {
  background: #FFF;
}

.p-company__history__list dt {
  width: 28%;
  padding-left: 2%;
}

.p-company__history__list dd {
  width: 81%;
  padding-right: 2%;
}

.p-company__history__list dt,
.p-company__history__list dd {
  font-size: 14px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__history__list {
    padding: 20px 0;
  }
  .p-company__history__list dt {
    width: 19%;
  }
  .p-company__history__list dt,
  .p-company__history__list dd {
    font-size: 16px;
  }
}
/*
　アクセス
================================*/
.p-company__access {
  padding-bottom: 0 !important;
  font-size: 0;
}

.p-company__access__lead {
  width: 90%;
  margin: 0 auto 30px auto;
  font-size: 16px;
}

.p-company__access iframe {
  width: 100%;
  height: 550px;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-company__access__lead {
    max-width: 1140px;
    margin: 0 auto 40px auto;
    text-align: center;
  }
}
.p-management__lead {
  font-size: 1.1rem !important;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-management__lead {
    font-size: 1.2rem !important;
    text-align: center;
  }
}
/*=================================

* MADOショップ

=================================*/
/*
　main-visual
================================*/
.p-mado-shop__page-title {
  position: relative;
  height: calc(100vh - 75px);
  min-height: 590px;
  background-repeat: no-repeat;
  background-position: 85% 50%;
  background-size: cover;
  background-image: url("../img/page-title__mado-shop__sp.jpg");
}

.p-mado-shop__page-title__inner {
  position: absolute;
  top: 42%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 95%;
}

.p-mado-shop__page-title__inner img {
  width: 100%;
}

/* PC */
@media screen and (min-width: 767px) {
  .p-mado-shop__page-title {
    height: calc(100vh - 100px);
    min-height: 800px;
    background-position: 80% 60%;
    background-image: url("../img/page-title__mado-shop.jpg");
  }
  .p-mado-shop__page-title__inner {
    top: 52%;
    width: 95%;
    max-width: 1080px;
  }
}
/*
　section背景イラスト
=================================*/
.p-section__bg--rt {
  position: relative;
  padding-bottom: 80px;
}

.p-section__bg--rt::after {
  position: absolute;
  content: url(../img/section__bg--rt.svg);
  width: min(100px, 25%);
  bottom: -20px;
  right: 10px;
  z-index: 10;
}

.p-section__bg--lt {
  position: relative;
  padding-bottom: 80px;
}

.p-section__bg--lt::before {
  position: absolute;
  content: url(../img/section__bg--lt.svg);
  width: min(80px, 23%);
  bottom: -20px;
  left: 10px;
  z-index: 10;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-section__bg--rt,
  .p-section__bg--lt {
    padding-bottom: 120px;
  }
  .p-section__bg--rt::after {
    width: min(180px, 21%);
    bottom: -50px;
    bottom: clamp(-50px, -0.8771929825vw, 10px);
    right: clamp(10px, 2.1929824561vw, 50px);
  }
  .p-section__bg--lt::before {
    width: min(140px, 17%);
    bottom: -50px;
    bottom: clamp(-50px, -0.8771929825vw, 10px);
    left: clamp(20px, 4.3859649123vw, 100px);
  }
}
/*
　窓・玄関ドアリフォームとは
================================*/
.p-mado-shop__lead {
  margin-bottom: 40px;
  font-size: 17px;
  color: #222;
  line-height: 1.6;
}

.p-mado-shop__point {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  padding: 20px 15px;
  font-size: 17px;
  font-weight: bold;
  color: #222;
  background-color: #f9f7ce;
  border-radius: 10px;
}

.p-mado-shop__detail img {
  width: 100%;
}

.p-mado-shop__detail__image--sm {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-mado-shop__lead {
    margin-bottom: 60px;
    font-size: clamp(17px, 1.4912280702vw, 20px);
    text-align: center;
  }
  .p-mado-shop__point {
    max-width: 750px;
    margin: 40px auto 0;
    padding: 20px 25px;
    font-size: clamp(16px, 1.4035087719vw, 18px);
    text-align: center;
    box-sizing: border-box;
  }
}
/*
　シミュレーションバナー
================================*/
.p-mado-shop__simulation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.p-mado-shop__simulation a {
  display: block;
}

.p-mado-shop__simulation a:hover {
  opacity: 0.7;
}

.p-mado-shop__simulation img {
  width: 100%;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-mado-shop__simulation {
    display: flex;
    flex-direction: row;
  }
  .p-mado-shop__simulation a {
    width: 49%;
  }
}
/*=================================

* 定額制リフォームイメチェン

=================================*/
/*
　main-visual
================================*/
.p-imechen__page-title {
  position: relative;
  margin-bottom: 0;
  background-repeat: no-repeat;
  background-position: 70% 60%;
  background-size: cover;
  background-image: url("../img/page-title__imechen.jpg");
}

.p-imechen__page-title::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
}

.p-imechen__page-title h2 {
  background-color: #06629f;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: clamp(16px, 2.0833333333vw, 20px);
  padding: 1em 0.4em;
  font-weight: 700;
  position: relative;
  z-index: 10;
  text-align: center;
}

.p-imechen__page-title h2 span {
  color: #fff452;
}

.p-imechen__page-title__inner {
  position: relative;
  width: 100%;
  min-height: 550px;
  max-height: 730px;
  z-index: 20;
  padding: 30px 0;
}

.p-imechen__page-title__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  margin: 0 auto;
  z-index: 10;
}

.p-imechen__page-title__title img {
  display: block;
  width: 90%;
  margin: 0 auto 20px auto;
  max-width: 260px;
}

.p-imechen__page-title__list {
  padding: 0;
  list-style: none;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.p-imechen__page-title__list li {
  position: relative;
  background: #fff;
  padding: 12px 16px 12px 40px;
  color: #333;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: -moz-max-content;
  width: max-content;
  min-width: 250px;
}

.p-imechen__page-title__list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/main-visual__icon-check.svg") no-repeat center center;
  background-size: contain;
}

.p-imechen__page-title__list li span {
  color: #fc7f1f;
  font-weight: bold;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-imechen__page-title__inner {
    padding: 70px 0 60px;
  }
  .p-imechen__page-title__title {
    max-width: clamp(1140px, 100vw, 1300px);
  }
  .p-imechen__page-title h2 {
    font-size: clamp(17px, 1.4912280702vw, 22px);
    letter-spacing: 0.3em;
  }
  .p-imechen__page-title__title img {
    max-width: 1000px;
  }
  .p-imechen__page-title__list {
    margin-top: 40px;
    gap: 20px;
  }
  .p-imechen__page-title__list li {
    margin-bottom: 0;
    padding: 12px 20px 12px 50px;
    font-size: clamp(20px, 2.0175438596vw, 23px);
  }
  .p-imechen__page-title__list li::before {
    left: 20px;
  }
}
/*
　窓・玄関ドアリフォームとは
================================*/
.p-imechen__detail__bg {
  position: relative;
  background-repeat: no-repeat;
  background-position: 70% 60%;
  background-size: cover;
  background-image: url("../img/imechen__detail--01__bg.jpg");
}

.p-imechen__detail img {
  width: 100%;
}

.p-imechen__detail a {
  display: block;
}

.p-imechen__detail a:hover {
  opacity: 0.7;
}

.p-imechen__detail__text {
  margin-top: 20px;
}

.p-imechen__detail__text p {
  font-size: clamp(17px, 1.4912280702vw, 20px);
  font-weight: bold;
}

/*
　YouTubeバナー
================================*/
.p-imechen__youtube img {
  display: block;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
}