@charset "UTF-8";
:root {
  --color-1: #0f4c81;
  --color-2: #dc7c33;
  --color-3: #787878;
  --color-4: #c30d24;
  --color-5: #f2ead3;
}

/* ━━━━━━━━━━━━━━━━

 ■初期化

━━━━━━━━━━━━━━━━ */
body {
  font-family: "Noto Sans JP", 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
 */
/*==================================
* Button
==================================*/
.c-button-container {
  padding-top: 30px;
  text-align: center;
}

/*
　標準ボタン
================================*/
.c-button {
  position: relative;
  display: block;
  width: 95%;
  margin: 0 auto;
  padding: 12px 5px;
  text-align: center;
  border-radius: 30px;
  border: 2px solid #0f4c81;
  background-color: #FFF;
  box-sizing: border-box;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
  overflow: hidden;
  z-index: 1;
}

.c-button,
.c-button:link,
.c-button:visited {
  text-decoration: none;
  color: #0f4c81;
  font-weight: bold;
}

.c-button::after {
  background: #0f4c81;
  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: 43%;
    padding: 15px 10px;
    font-size: 17px;
  }
}
/*
　プライマリボタン
================================*/
.c-button--primary {
  display: block;
  width: 95%;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: #0f4c81;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.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: 35%;
    font-size: 17px;
  }
}
/*
　セカンダリボタン
================================*/
.c-button--secondary {
  display: block;
  width: 95%;
  margin: 0 auto;
  padding: 20px 10px;
  background-color: #dc7c33;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.c-button--secondary,
.c-button--secondary:link,
.c-button--secondary:visited {
  text-decoration: none;
  color: #FFF;
}

.c-button--secondary:hover {
  background-color: #787878;
}

@media screen and (min-width: 768px) {
  .c-button--secondary {
    width: 35%;
    font-size: 17px;
  }
}
/*
　アウトラインボタン
================================*/
.c-button-outline {
  display: block;
  width: 95%;
  margin: 0 auto;
  padding: 15px 10px;
  text-align: center;
  font-weight: bold;
  border: 1.5px solid #111;
  box-sizing: border-box;
}

.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: #0f4c81;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-button-outline {
    width: 43%;
    font-size: 18px;
  }
}
/*
　システム標準-H2
================================*/
h2.tit {
  width: 90%;
  text-align: center;
  color: #000;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 15px auto 30px auto;
  padding: 0;
  background-color: transparent !important;
}

/* PC */
@media screen and (min-width: 768px) {
  h2.tit {
    margin-top: 0;
    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: #0f4c81;
}

/* 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: #0f4c81;
  margin-bottom: 30px;
}

.c-title-02--color-2 {
  color: #dc7c33;
}

/* 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: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  color: #0f4c81;
  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: 2.3rem;
    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: #0f4c81;
}

.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: 30px;
  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: #0f4c81;
}

.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 #0f4c81;
  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: #0f4c81;
  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: #0f4c81 transparent transparent transparent;
}

.c-title-count-01 span {
  font-size: 50px;
  position: absolute;
  bottom: 0;
  right: -100px;
  display: block;
  padding-left: 16px;
  color: #0f4c81;
  font-family: "Arial", "Noto Sans JP", 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: #0f4c81;
  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 #0f4c81;
  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: #0f4c81;
}

.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(16px, 4.8vw, 26px);
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}

.c-title-bg-01--color-2,
.c-title-bg-01--color-2--sm {
  background: #dc7c33;
}

.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: 36px;
    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: #0f4c81;
}

.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;
}

/* 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);
  }
}
/*
　アイコン付きタイトル
================================*/
.c-title-icon {
  position: relative;
  margin-bottom: 20px;
  padding-left: 32px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  box-sizing: border-box;
}

.c-title-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  background: #0f4c81;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-title-icon {
    padding-left: 40px;
    font-size: 28px;
  }
  .c-title-icon::before {
    top: 8px;
    width: 28px;
    height: 28px;
  }
}
/*
　お知らせ-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: #0f4c81;
  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: #0f4c81;
    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: #0f4c81;
    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: var(--color-4);
  }
  .c-news-list-01__button__pc .fa {
    margin-left: 10px;
  }
  .c-news-list-01__button__sp {
    display: none;
  }
}
/*
　物件検索-05
================================*/
.c-estate-search-05 {
  width: 95%;
  margin: 0 auto 20px auto;
}

.c-estate-search-05 ul {
  display: flex;
  flex-wrap: wrap;
}

.c-estate-search-05 li {
  width: 100%;
  margin-bottom: 15px;
}

.c-estate-search-05 li a {
  display: inline-block;
  position: relative;
  width: 100%;
  margin-bottom: 12px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  vertical-align: middle;
  transition: all 0.3s;
}

.c-estate-search-05 li a > span {
  display: block;
  position: relative;
  background: #fff;
  padding: 15px 5px;
  border: 2px solid #000;
  border-radius: 0.5rem;
  color: #000;
}

/* hover の淡い青は --color-1（#0f4c81）に馴染ませた色 */
.c-estate-search-05 li a > span:hover {
  background: #dbe5ef;
}

/* （）内の補足表記（平米数など）を控えめに見せる */
.c-estate-search-05__sub {
  color: #808080;
}

.c-estate-search-05 li a:before {
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 14px;
  content: "";
  transition: all 0.3s;
  border: 2px solid #000;
  border-radius: 0 0 0.5rem 0.5rem;
  background-size: 7px 7px;
  border-top: 1px solid #000;
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  backface-visibility: hidden;
  /* 斜線（background-image）の下地。--color-1（濃紺）だと黒の斜線が沈むため、
     ここだけ明るい青を直接指定する */
  background-color: #4281be;
  box-sizing: border-box;
}

.c-estate-search-05 li a:hover {
  transform: translate(0, 3px);
}

.c-estate-search-05 li a:hover:before {
  bottom: -5px;
}

.c-estate-search-05 li a:active {
  transform: translate(0, 7px);
}

.c-estate-search-05 li a:active:before {
  bottom: -1px;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-estate-search-05 {
    width: 100%;
  }
  .c-estate-search-05 li {
    width: auto;
    margin: 0 15px 20px 0;
  }
  .c-estate-search-05 li:last-child {
    margin: 0 0 20px 0;
  }
  .c-estate-search-05 li a {
    font-size: clamp(15px, 1.4912280702vw, 17px);
  }
  .c-estate-search-05 li a > span {
    padding: 15px 15px;
  }
  /* 左右を広げる（文字数の少ないボタン用） */
  .c-estate-search-05--wide li a > span {
    padding: 15px 100px;
  }
}
/*
　物件情報スライド（Swiper）
================================*/
.c-estate-list-slide,
.c-estate-list-slide--gray {
  padding: 0;
}

/* height: auto … スライド同士の高さを揃えず、カードの中身に追従させる */
.c-estate-list-slide li,
.c-estate-list-slide--gray li {
  position: relative;
  height: auto;
  border-radius: 10px;
}

/* テキスト部分の背景：白色 */
.c-estate-list-slide li {
  background-color: #fff;
}

/* テキスト部分の背景：灰色 */
.c-estate-list-slide--gray li {
  background-color: #f5f5f5;
}

.c-estate-list-slide a,
.c-estate-list-slide--gray a {
  display: block;
  height: 100%;
  text-decoration: none;
  color: #333;
}

.c-estate-list-slide__image {
  position: relative;
}

.c-estate-list-slide__image img:last-of-type {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.c-estate-list-slide__type {
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 0;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: rgba(66, 129, 190, 0.85);
}

.c-estate-list-slide__textarea {
  padding: 20px 15px 15px 15px;
}

.c-estate-list-slide__catchcopy {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #0f4c81;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.c-estate-list-slide__name {
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: bold;
}

.c-estate-list-slide__address {
  margin-bottom: 5px;
  font-size: 14px;
}

.c-estate-list-slide__access {
  margin-bottom: 10px;
  font-size: 14px;
}

.c-estate-list-slide__access i {
  margin-right: 5px;
}

.c-estate-list-slide__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.c-estate-list-slide__item {
  font-size: 14px;
  font-weight: 500;
  color: #767171;
}

.c-estate-list-slide__space,
.c-estate-list-slide__floor {
  font-size: 15px;
}

.c-estate-list-slide__price {
  font-size: 24px;
  font-weight: bold;
  color: #c30d24;
}

.c-estate-list-slide__price span {
  font-size: 17px;
}

/* ページネーション（スライド下の丸） */
.js-swiper-estate {
  padding-bottom: 40px;
}

.js-swiper-estate .swiper-pagination {
  bottom: 0;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-estate-list-slide a:hover,
  .c-estate-list-slide--gray a:hover {
    opacity: 0.8;
  }
  .c-estate-list-slide__textarea {
    padding: 25px 18px 20px 18px;
  }
  .c-estate-list-slide__name {
    font-size: 18px;
  }
  .c-estate-list-slide__catchcopy,
  .c-estate-list-slide__address,
  .c-estate-list-slide__access,
  .c-estate-list-slide__item {
    font-size: 15px;
  }
  .c-estate-list-slide__space,
  .c-estate-list-slide__floor {
    font-size: 17px;
  }
  .c-estate-list-slide__price {
    font-size: 26px;
  }
  .js-swiper-estate {
    padding-bottom: 50px;
  }
}
/*
 ページリンク-11
================================*/
.c-page-link-11__title {
  padding: 15px 5px;
  background: #0f4c81;
  text-align: center;
}

.c-page-link-11__title h2 {
  font-size: 22px;
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}

.c-page-link-11 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 0;
  background: url(../img/page-link-11__bg.jpg) no-repeat 70% 0%/cover;
}

.c-page-link-11::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* 白文字のコントラストを確保できる範囲でマスクを薄くし、背景写真を見せる */
  background-color: rgba(33, 33, 33, 0.6);
}

.c-page-link-11__inner {
  position: relative;
  width: 90%;
  text-align: center;
}

.c-page-link-11__title-balloon {
  margin-bottom: 10px;
  text-align: center;
}

.c-page-link-11__title-balloon__inner {
  width: 100%;
  margin: 0 auto;
}

.c-page-link-11__title-balloon__inner p {
  display: inline-block;
  margin-bottom: 15px;
  text-align: center;
  font-size: clamp(16px, 2.0833333333vw, 28px);
  font-weight: bold;
  color: #fff;
}

.c-page-link-11__title-balloon h2 {
  font-size: clamp(30px, 9.0666666667vw, 40px);
  font-weight: 900;
  color: #fff;
}

.c-page-link-11__text {
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-align: left;
}

.c-page-link-11__text span {
  color: #fedb39;
  font-weight: bold;
}

a.c-page-link-11__button {
  display: block;
  position: relative;
  width: 85%;
  margin: 0 auto;
  padding: 0.8em 1em 0.8em calc(2.8em - 15px);
  font-size: clamp(18px, 5.0666666667vw, 23px);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 0.5rem;
  background: #c30d24;
  box-shadow: 0 5px 0 color-mix(in srgb, #c30d24, black 20%);
  box-sizing: border-box;
  transition: 0.3s;
}

.c-page-link-11__button .c-page-link-11__button__copy {
  position: absolute;
  bottom: 1em;
  left: -10px;
  display: inline-block;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.2em;
  text-align: center;
  color: #c30d24;
  font-size: 70%;
  font-weight: bold;
  background: #fff;
  border: 3px solid #c30d24;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-10deg);
}

.c-page-link-11__button .c-page-link-11__button__copy::before {
  position: absolute;
  content: "";
  bottom: -3px;
  right: -4px;
  border: 8px solid transparent;
  border-left: 13px solid #FFF;
  z-index: 0;
  transform: rotate(45deg);
}

.c-page-link-11__button__text {
  font-weight: 900;
  line-height: 1.2;
}

/* ホバー時 */
.c-page-link-11__button:hover {
  transform: translate(0, 3px);
  background: #0f4c81;
  box-shadow: 0 2px 0 color-mix(in srgb, #0f4c81, black 20%);
}

.c-page-link-11__button:hover .c-page-link-11__button__copy {
  color: #0f4c81;
  border: 3px solid #0f4c81;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-page-link-11__title {
    padding: 15px 0;
  }
  .c-page-link-11__title h2 {
    font-size: clamp(24px, 2.8070175439vw, 32px);
    letter-spacing: 0.05em;
  }
  .c-page-link-11 {
    padding: 35px 0;
  }
  .c-page-link-11__inner {
    width: 100%;
  }
  .c-page-link-11__title-balloon__inner {
    width: 100%;
  }
  .c-page-link-11__title-balloon__inner p {
    margin-bottom: 10px;
    font-size: clamp(16px, 2.1929824561vw, 25px);
  }
  .c-page-link-11__title-balloon h2 {
    font-size: clamp(38px, 4.2105263158vw, 48px);
  }
  .c-page-link-11__text {
    margin-bottom: 20px;
    font-size: clamp(18px, 1.9298245614vw, 22px);
    text-align: center;
  }
  /* テキスト幅に合わせて自動で縮む */
  a.c-page-link-11__button {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    padding: 0.7em 1.6em 0.7em calc(3.4em - 15px);
    font-size: clamp(20px, 2.0175438596vw, 24px);
  }
  .c-page-link-11__button .c-page-link-11__button__copy {
    width: 3.9em;
    height: 3.9em;
    line-height: 3.7em;
  }
  .c-page-link-11__button__text {
    line-height: 1;
  }
}
/*
　ルビ付き-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;
  }
}
/*
　お客様の声（簡易版）-02
================================*/
.c-survey-list-02 {
  width: 95%;
  margin: 0 auto;
}

.c-survey-list-02 li {
  margin-bottom: 50px;
  border: solid 1px #9c9c9c;
  background: #fff;
}

.c-survey-list-02 li a {
  display: block;
  height: 100%;
  padding: 20px;
  text-decoration: none;
  box-sizing: border-box;
}

.c-survey-list-02__image {
  margin-bottom: 20px;
}

.c-survey-list-02__image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-survey-list-02__name {
  margin: 0 auto 10px auto;
  color: #333;
  font-weight: bold;
}

.c-survey-list-02__tag {
  display: flex;
  align-items: center;
  margin: 0 auto 15px auto;
}

.c-survey-list-02__tag--area,
.c-survey-list-02__tag--type {
  margin-right: 10px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.c-survey-list-02__tag--area {
  background: #0f4c81;
}

/* 物件種別タグ：鮮やかなイエロー背景＋白文字 */
.c-survey-list-02__tag--type {
  background: #ffc400;
}

.c-survey-list-02__detail {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0 auto;
  line-height: 1.3;
  color: #333;
  overflow: hidden;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-survey-list-02 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .c-survey-list-02::after {
    content: "";
    display: block;
    width: 31%;
  }
  .c-survey-list-02 li {
    width: 31%;
  }
  .c-survey-list-02 a:hover {
    opacity: 0.7;
  }
}
/*
　特徴（4カラム）-03 ※本案件では3カラムで使用
================================*/
.c-feature-col4-03 {
  width: 90%;
  margin: 0 auto;
}

.c-feature-col4-03__inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.c-feature-col4-03__item {
  background: #fff;
  box-shadow: 9px 9px 24px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* top は数字の下端がカードの上辺から同じ位置に来るよう、font-size と合わせて調整する */
.c-feature-col4-03__number {
  position: absolute;
  top: -30px;
  left: 10px;
  font-size: 3.8em;
  font-weight: 700;
  color: #0f4c81;
  z-index: 1;
  line-height: 1;
  font-style: italic;
}

.c-feature-col4-03__image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-feature-col4-03__text {
  padding: 20px 20px;
}

.c-feature-col4-03__text h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #0f4c81;
  line-height: 1.3;
}

/* PC */
@media screen and (min-width: 768px) {
  .c-feature-col4-03 {
    width: 100%;
    max-width: 1140px;
  }
  /* 3カラム。端数の段（2つ以下）が中央寄せになるよう flex + center で並べる */
  .c-feature-col4-03__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem 4%;
  }
  .c-feature-col4-03__item {
    width: 30%;
  }
  .c-feature-col4-03__number {
    font-size: 4.6em;
    top: -31px;
  }
  .c-feature-col4-03__text {
    padding: 25px;
  }
  .c-feature-col4-03__text h3 {
    line-height: 1.4;
  }
}
/*
　会社概要-08
================================*/
.c-company-08-title {
  width: 95%;
  margin: 0 auto 40px auto;
}

.c-company-08-title h2 {
  position: relative;
  margin-bottom: 30px;
  padding: 50px 0 0 0;
  font-size: 1rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  line-height: 1.4;
  text-align: center;
}

.c-company-08-title h2 span {
  display: block;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
}

.c-company-08-title h2::before {
  content: attr(data-en);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  color: #a9aabe;
  opacity: 0.2;
  font-size: 4rem;
  font-weight: normal;
  font-style: italic;
  font-family: Times, "Times New Roman", "Noto Serif JP", serif;
  z-index: -1;
}

.c-company-08-title h2 em {
  display: inline-block;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 900;
  color: #e60012;
}

.c-company-08 {
  width: 95%;
  margin: 0 auto 30px auto;
}

.c-company-08-title-ruby {
  margin-bottom: 20px;
}

.c-company-08-title-ruby span {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.5;
}

.c-company-08-title-ruby h2 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: bold;
}

.c-company-08-title-ruby h2:before {
  content: "";
  margin-right: 0.5em;
  width: 1.5em;
  border-top: 1px solid;
}

.c-company-08__inner {
  display: flex;
  flex-direction: column;
}

.c-company-08__detail {
  margin-bottom: 30px;
}

.c-company-08__detail dl > div {
  display: flex;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}

.c-company-08__detail dt {
  width: 25%;
  padding: 13px 5px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-top: solid 1px #908a6a;
}

.c-company-08__detail dl > div:last-child dt {
  border-bottom: solid 1px #908a6a;
}

.c-company-08__detail dd {
  width: 73%;
  margin-left: 0;
  padding: 13px 5px 13px 20px;
  font-size: 16px;
  font-weight: bold;
  border-top: solid 1px #c5c5c5;
}

.c-company-08__detail dd a {
  text-decoration: none;
  color: #000;
  font-size: clamp(18px, 2.6041666667vw, 20px);
  font-weight: bold;
  font-family: "Arial", "Century Gothic", sans-serif;
}

.c-company-08__detail i {
  margin-right: 5px;
  color: #333;
}

.c-company-08__detail dl > div:last-child dd {
  border-bottom: solid 1px #c5c5c5;
}

.c-company-08__photo li {
  margin-bottom: 15px;
}

.c-company-08__photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-company-08-button {
  width: 90%;
  margin: 0 auto;
}

.c-company-08-button a {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 1em 2em;
  transition: all 0.2s ease;
  border: none;
  background: none;
  text-decoration: none;
}

.c-company-08-button a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  display: block;
  border-radius: 100vh;
  background: var(--color-5);
  width: 3.3em;
  height: 3.3em;
  transition: all 0.3s ease;
}

.c-company-08-button a span {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333;
}

.c-company-08-button a svg {
  position: relative;
  top: -1px;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #333;
  stroke-width: 2;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.c-company-08-button a:hover:before {
  width: calc(100% + 1em);
}

.c-company-08-button a:hover svg {
  transform: translateX(0);
}

.c-company-08-button a:active {
  transform: scale(0.95);
}

/* PC */
@media screen and (min-width: 768px) {
  .c-company-08-title {
    margin-bottom: 60px;
  }
  /* 40文字の一文がPCで1行に収まるサイズ。画面幅に追従させ、768pxまで1行を保つ */
  .c-company-08-title h2 {
    font-size: clamp(18px, 2.1052631579vw, 24px);
    margin-bottom: 40px;
    padding: 70px 0 0 0;
    text-align: center;
    line-height: 1.4;
  }
  .c-company-08-title h2 span {
    margin-bottom: 25px;
    font-size: 3rem;
  }
  .c-company-08-title h2::before {
    top: -23px;
    font-size: 7rem;
    letter-spacing: -3px;
  }
  .c-company-08-title h2 em {
    font-size: 3.3rem;
  }
  .c-company-08-title p {
    font-size: 18px;
    text-align: center;
    line-height: 1.7;
  }
  .c-company-08 {
    width: 100%;
    margin-bottom: 50px;
  }
  .c-company-08-title-ruby span {
    font-size: 40px;
    line-height: 1.3;
  }
  .c-company-08-title-ruby h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }
  .c-company-08__inner {
    flex-direction: row;
    justify-content: space-between;
  }
  /* 写真を縦並びにした分、表を広く使う */
  .c-company-08__detail {
    width: 72%;
    margin-bottom: 0;
  }
  /* 表が広がっても項目名の欄が伸びすぎないよう、比率を調整 */
  .c-company-08__detail dt {
    width: 20%;
    font-size: 16px;
  }
  .c-company-08__detail dd {
    width: 78%;
    font-size: 16px;
  }
  /* 会社概要の項目数が多いため、写真2枚は縦並びにして左右の高さを揃える。
     1枚あたりの見え方（横長になりすぎない比率）は横並び時と同じくらいに保つ */
  .c-company-08__photo {
    width: 25%;
  }
  .c-company-08__photo ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .c-company-08__photo li {
    margin-bottom: 0;
    width: 100%;
  }
  .c-company-08__photo img {
    height: 210px;
  }
  .c-company-08-button {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    width: 100%;
    text-align: center;
  }
  .c-company-08-button a {
    margin-bottom: 0;
    padding: 1em 1.5em;
    font-size: 19px;
  }
  .c-company-08-button a:before {
    width: 3.5em;
    height: 3.5em;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■レイアウト

━━━━━━━━━━━━━━━━ */
/*=========================================

* ヘッダー-11

==========================================*/
html {
  scroll-padding-top: 55px;
}

.l-header-11 {
  position: relative;
  width: 100%;
  height: 55px;
  margin: 0;
}

.l-header-11__wrapper {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 55px;
  top: 0;
  padding: 5px 10px;
  background-color: rgba(250, 250, 250, 0.9);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  z-index: 1010;
}

.l-header-11__logo {
  max-width: 250px;
}

.l-header-11__logo a {
  display: block;
}

.l-header-11__logo img {
  display: block;
  width: 100%;
}

.l-header-11__nav {
  display: none;
}

.l-header-11__inquiry {
  display: none;
}

.l-header-11__inquiry--tel {
  display: none;
}

/* ハンバーガーメニュー
======================= */
.l-header-11__menu__button {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
}

.l-header-11__menu__button span {
  display: block;
  position: absolute;
  right: 10px;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}

.l-header-11__menu__button span:nth-child(1) {
  top: 4px;
}

.l-header-11__menu__button span:nth-child(2) {
  top: 14px;
}

.l-header-11__menu__button span:nth-child(3) {
  bottom: 4px;
}

.l-header-11__menu__button.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.l-header-11__menu__button.is-open span:nth-child(2) {
  opacity: 0;
}

.l-header-11__menu__button.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ナビゲーション
======================= */
.l-header-11__sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 72px 20px 65px 20px;
  transform: translateY(min(-100%, -1000px));
  transition: transform 0.5s;
  overflow-y: auto;
  background: #fefefe;
  box-sizing: border-box;
  z-index: 1000;
}

.l-header-11__sp-menu ul li {
  width: 100%;
  height: auto;
  border-top: 1px solid #919191;
}

.l-header-11__sp-menu ul li:last-child {
  border-bottom: 1px solid #919191;
}

.l-header-11__sp-menu ul li a {
  display: block;
  padding: 15px 0;
  position: relative;
  font-size: 1em;
  text-decoration: none;
  color: #0f4c81;
  transition: all 0.2s ease;
}

.l-header-11__sp-menu__nav-child a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-top: solid 2px #7f7f7f;
  border-right: solid 2px #7f7f7f;
  transform: rotate(135deg);
  content: "";
}

.l-header-11__sp-menu__nav-child a.is-open {
  border-bottom: 1px dotted #919191;
}

.l-header-11__sp-menu__nav-child a.is-open::after {
  transform: rotate(315deg);
}

.l-header-11__sp-menu__nav ul li ul {
  display: none;
}

.l-header-11__sp-menu__nav ul li ul.is-open {
  display: block;
}

.l-header-11__sp-menu__nav ul li ul li {
  width: 93%;
  margin: 0 0 0 auto;
  border-bottom: 1px dotted #919191;
  border-top: none;
}

.l-header-11__sp-menu__nav ul li ul li:last-child {
  border-bottom: none;
}

.l-header-11__sp-menu__nav ul li ul li a {
  display: block;
  margin-left: 10px;
  padding: 15px 0;
  font-size: 1em;
  color: #0f4c81;
}

.l-header-11__sp-menu__nav ul li ul li a::after {
  display: none;
}

.l-header-11__sp-menu__nav ul li ul li a:after {
  display: none;
}

.l-header-11__sp-menu__nav ul li ul li a.is-open ul {
  display: block;
}

.l-header-11__sp-menu.is-open {
  transform: translateY(0);
  transition: transform 0.5s;
}

.l-header-11__sp-menu--tel a,
.l-header-11__sp-menu--mail a {
  display: block;
  text-align: center;
}

.l-header-11__sp-menu--mail a:hover {
  background: #070d59;
}

.l-header-11__sp-menu--tel a {
  margin-top: 50px;
  text-decoration: none;
  line-height: 1;
  font-family: "Arial", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: bold;
  color: #0f4c81;
}

.l-header-11__sp-menu--tel p {
  text-align: center;
  font-size: 16px;
  color: #5f5f5f;
}

.l-header-11__sp-menu--mail a {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 450px;
  margin: 30px auto;
  padding: 30px;
  text-decoration: none;
  font-size: 16px;
  color: #FFF;
  background-color: #0f4c81;
  box-sizing: border-box;
}

.l-header-11__sp-menu--mail a span {
  font-weight: bold;
  font-size: 25px;
}

@media print {
  .l-header-11__sp-menu {
    display: none;
  }
}
.p-page-title {
  padding: 10px 8px;
  font-size: 13px;
}

/* PC */
@media screen and (min-width: 1060px) {
  html {
    scroll-padding-top: 85px;
  }
  .l-header-11 {
    height: 85px;
  }
  .l-header-11__wrapper {
    display: block;
    height: 85px;
    padding: 0;
  }
  .l-header-11__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
  .l-header-11__logo {
    max-width: clamp(250px, 27.2vw, 340px);
    margin: 0 auto 0 25px;
  }
  /* ナビゲーション */
  .l-header-11__nav {
    display: block;
  }
  .l-header-11__nav > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .l-header-11__nav ul > li {
    position: relative;
    padding: 10px 15px;
  }
  .l-header-11__nav ul > li > a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.1em;
  }
  .l-header-11__nav ul > li > a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #333;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  .l-header-11__nav ul > li > a:hover::after {
    transform: scale(1, 1);
  }
  .l-header-11__nav ul > li ul {
    display: none;
    padding: 5px;
    background-color: #FFF;
    box-shadow: 0 2px 7px 1px rgba(118, 118, 118, 0.3);
  }
  .l-header-11__nav ul > li ul li a {
    display: block;
    padding: 2px 15px;
    white-space: nowrap;
  }
  .l-header-11__nav ul > li ul li a:hover {
    opacity: 1;
  }
  .l-header-11__nav ul > li:hover ul {
    position: absolute;
    display: block;
    margin: 0;
    top: 40px;
    left: 0;
  }
  .l-header-11__inquiry {
    display: flex;
    align-items: center;
    background-color: #0f4c81;
  }
  .l-header-11__inquiry a {
    display: block;
    padding: 18px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    color: #FFF;
  }
  .l-header-11__inquiry:hover {
    background-color: var(--color-4);
  }
  .l-header-11__menu__button {
    display: none;
  }
  .l-header-11__inquiry i {
    font-size: 23px;
  }
  /* ハンバーガーメニュー*/
  .l-header-11__menu__button {
    display: none;
  }
  .p-page-title {
    max-width: 1140px;
    margin: 0 auto;
    padding: 10px 0;
    font-size: 14px;
  }
}
@media screen and (min-width: 1250px) {
  .l-header-11__inquiry--tel {
    display: block;
    margin-right: 20px;
    margin-left: 5px;
  }
  .l-header-11__inquiry--tel a {
    text-decoration: none;
    font-size: 20px;
    color: #000;
    font-family: "Century Gothic", "Arial", sans-serif;
  }
}
@media screen and (min-width: 1500px) {
  .l-header-11__inquiry--tel a {
    font-size: 33px;
  }
}
/*=================================

* メインビジュアル

=================================*/
/* SPはタイトル枠と丸バッジが重ならないよう高めに確保（PCは下のメディアクエリで上書き） */
.l-main-visual-02 {
  position: relative;
  margin: 0 auto;
  height: 71vh;
}

.l-main-visual-02__slide {
  width: 100%;
  height: 71vh;
  overflow: hidden;
}

.vegas-slide-inner {
  background-position: 70% 50% !important;
}

.l-main-visual-02__text {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  padding: 25px 5px;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  box-sizing: border-box;
}

/* 最長行「工場倉庫経営支援株式会社」12文字が1行に収まるサイズ（span も同サイズ） */
.l-main-visual-02__text h1 {
  font-size: clamp(19px, 6.1333333333vw, 46px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 25px;
}

.l-main-visual-02__text h1 span {
  font-style: normal;
  font-weight: 900;
  display: inline-block;
}

.l-main-visual-02__text h1 em {
  display: inline-block;
  font-size: 60px;
  font-size: clamp(45px, 5.859375vw, 60px);
  color: #c30d24;
  font-weight: 900;
  font-style: normal;
}

/* h2 の上下に横線（左右は margin の分だけボックス内側から空ける） */
.l-main-visual-02__text h2 {
  font-size: clamp(15px, 4.8vw, 25px);
  line-height: 1.4;
  font-weight: bold;
  margin: 0 15px;
  padding: 12px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

/* 右下の丸バッジ（リフォーム・売却査定）：ディープグリーン背景＋白の線画アイコン・白文字 */
/* SPは中央寄せ、PCは右下（PCの指定は下のメディアクエリ） */
.l-main-visual-02__feature {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  /* テキストが円幅より広く左右にはみ出すため、隣同士がぶつからない間隔を確保
     （「リフォーム」等を拡大した分、SPは 30px→40px） */
  gap: 40px;
  z-index: 2;
}

.l-main-visual-02__feature__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #11858f;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}

/* アイコン画像は黒の線画なので、CSSフィルタで白に反転させる */
.l-main-visual-02__feature__item img {
  display: block;
  width: 44px;
  height: 44px;
  margin-bottom: 5px;
  filter: brightness(0) invert(1);
}

/* テキストは円からはみ出すため、背景写真の上でも読めるよう円と同色で縁取る */
.l-main-visual-02__feature__item p {
  font-size: 15px;
  white-space: nowrap;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  text-shadow: #11858f 2px 2px 2px, #11858f -2px -2px 2px, #11858f -2px 2px 2px, #11858f 2px -2px 2px, #11858f 2px 0px 2px, #11858f -2px 0px 2px, #11858f 0px 2px 2px, #11858f 0px -2px 2px;
}

/* 「リフォーム」「売却・査定」だけ一段大きく見せる。
   共通CSS（外部）が em を display: block にしているため、inline に戻さないと改行される */
.l-main-visual-02__feature__item p em {
  display: inline;
  font-size: 1.2em;
  font-style: normal;
  font-weight: 900;
}

/* PC */
@media screen and (min-width: 768px) {
  /* ノートPCの画面高でも収まるよう、画面の高さに応じて可変（最大560px） */
  .l-main-visual-02 {
    height: clamp(420px, 58vh, 560px);
  }
  .l-main-visual-02__slide {
    height: clamp(420px, 58vh, 560px);
  }
  .l-main-visual-02__text {
    transform: none;
    top: 0;
    left: 5%;
    width: 46%;
    height: 100%;
    padding: 30px 10px;
  }
  .l-main-visual-02__text h1 {
    font-size: clamp(24px, 3.4210526316vw, 58px);
    margin-bottom: 35px;
  }
  .l-main-visual-02__text h1 em {
    font-size: clamp(50px, 5.2631578947vw, 95px);
  }
  .l-main-visual-02__text h2 {
    font-size: clamp(20px, 2.4561403509vw, 28px);
    margin: 0 20px;
    padding: 16px 0;
  }
  .l-main-visual-02__feature {
    left: auto;
    right: 5%;
    bottom: 30px;
    transform: none;
    gap: 45px;
  }
  .l-main-visual-02__feature__item {
    width: 145px;
    height: 145px;
  }
  .l-main-visual-02__feature__item img {
    width: 62px;
    height: 62px;
    margin-bottom: 7px;
  }
  .l-main-visual-02__feature__item p {
    font-size: 20px;
    text-shadow: #11858f 3px 3px 3px, #11858f -3px -3px 3px, #11858f -3px 3px 3px, #11858f 3px -3px 3px, #11858f 3px 0px 3px, #11858f -3px 0px 3px, #11858f 0px 3px 3px, #11858f 0px -3px 3px;
  }
}
/* PC */
@media screen and (min-width: 1200px) {
  .l-main-visual-02__text {
    left: 12%;
  }
}
/* PC */
@media screen and (min-width: 1500px) {
  .l-main-visual-02__text {
    left: 18%;
    width: 35%;
  }
  /* テキストボックスが46%→35%に狭まるため、h1も併せて縮小 */
  .l-main-visual-02__text h1 {
    font-size: clamp(30px, 2.6315789474vw, 56px);
  }
}
/*=========================================

* フッター-08

==========================================*/
.l-footer-08 {
  background-color: #F8F8F8;
  border-top: none;
}

.l-footer-08__inner {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}

.l-footer-08__logo img {
  width: 90%;
  margin-bottom: 15px;
}

.l-footer-08__info p:nth-of-type(2) {
  margin-bottom: 20px;
}

.l-footer-08__contact__sns {
  display: flex;
  justify-content: center;
}

.l-footer-08__contact__sns a:hover {
  opacity: 0.7;
}

.l-footer-08__contact__sns img {
  width: 35px;
}

.l-footer-08__contact__sns a:not(:first-child) {
  margin-left: 15px;
}

.l-footer-08__contact {
  margin-top: 30px;
}

.l-footer-08__contact h3 {
  position: relative;
  width: 100%;
  height: 14px;
  text-align: center;
  border-bottom: 1px solid #000;
}

.l-footer-08__contact h3 span {
  padding: 0 10px;
  font-size: 18px;
  background-color: #f8f8f8;
}

.l-footer-08__contact__shop__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.l-footer-08__contact__shop__tel a {
  font-size: clamp(35px, 5.2083333333vw, 40px);
  font-family: "Arial", sans-serif;
  color: #333;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.l-footer-08__contact__shop__tel i {
  margin-right: 5px;
}

.l-footer-08__contact__inquiry {
  margin-top: 15px;
}

/* 色はサイト共通のアクセントレッド（--color-4） */
.l-footer-08__contact__inquiry a {
  display: block;
  width: 100%;
  padding: 12px 0;
  color: var(--color-4);
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid var(--color-4);
}

.l-footer-08__contact__inquiry a:hover {
  color: #fff;
  background-color: var(--color-4);
}

/* スマホ */
@media screen and (max-width: 450px) {
  .l-footer-08__info {
    text-align: center;
  }
  .l-footer-08__contact__shop__info {
    flex-direction: column-reverse;
    text-align: center;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .l-footer-08__inner {
    display: flex;
    justify-content: space-between;
    width: unset;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px 10px;
  }
  .l-footer-08__info {
    padding-top: 5px;
    width: 40%;
  }
  .l-footer-08__logo img {
    width: 90%;
    margin-bottom: 10px;
  }
  .l-footer-08__info p:nth-of-type(2) {
    margin-bottom: 10px;
  }
  .l-footer-08__contact__sns {
    justify-content: flex-start;
  }
  .l-footer-08__contact__sns img {
    width: 30px;
  }
  .l-footer-08__contact__sns a:not(:first-child) {
    margin-left: 10px;
  }
  .l-footer-08__contact__shop__open {
    width: 45%;
  }
  .l-footer-08__info p {
    font-size: 17px;
  }
  .l-footer-08__contact__shop__tel a {
    font-size: clamp(30px, 3.0701754386vw, 40px);
  }
  .l-footer-08__contact {
    width: 50%;
    margin-top: 0;
  }
  .l-footer-08__contact__inquiry {
    margin-top: 10px;
  }
}
/* フッターナビゲーション
==============================*/
.l-footer-08__nav {
  padding: 20px 10px;
  background-color: #fff;
}

.l-footer-08__nav__inner {
  padding: 0 8px;
}

.l-footer-08__nav__inner ul {
  display: flex;
  flex-wrap: wrap;
}

.l-footer-08__nav__inner li:not(:last-child) {
  margin-right: 30px;
}

.l-footer-08__nav__inner li a {
  font-size: 15px;
  color: #000;
  text-decoration: none;
}

.l-footer-08__nav__inner li a::before {
  content: ">";
  margin-right: 3px;
}

/* PC */
@media screen and (min-width: 768px) {
  .l-footer-08__nav__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
  }
}
/* SP */
@media screen and (max-width: 767px) {
  .btn__page_top {
    display: none !important;
  }
}
/* コピーライトの帯
==============================*/
/* 共通CSS（外部の layout.css）で PC #0b3c5d / SP #328cc1 が当たっているので、
   サイトのメインカラーで上書きする */
.copyright {
  background-color: #0f4c81;
}

/**
 * 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;
}

/* flow-root: 子要素の margin がセクション外へ抜けて背景色が途切れるのを防ぐ */
.l-section__container {
  display: flow-root;
  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;
  }
}
/* ━━━━━━━━━━━━━━━━

 ■プロジェクト

━━━━━━━━━━━━━━━━ */
/*=================================

* トップ

=================================*/
/*
　事業内容タイトル下のリード文
================================*/
.p-index-service-lead {
  text-align: center;
}

/* flex: 「５」と前後の文字を天地中央で揃える */
/* z-index: 0 で重なりの基準を作り、背面の円（__num::before）を文字より下に敷く */
.p-index-service-lead__title {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px; /* 背景の円が行からはみ出すぶん、下の文との間隔を確保 */
  font-size: clamp(20px, 5.8666666667vw, 26px);
  font-weight: bold;
  line-height: 1.5;
  color: #333; /* 強調は「５」だけにするため、前後の文字は黒 */
}

/* 「５」の強調。下のカード番号（01〜05）と同じ「大きい数字」で表現を揃える */
/* position のみ指定（z-index は指定しない）。円の位置は「５」基準、重なり順は見出し基準になる */
.p-index-service-lead__num {
  position: relative;
  flex-shrink: 0;
  font-size: 1.4em;
  font-weight: 900;
  line-height: 1;
  color: #333;
}

/* 「５」の背面に敷く円。em 指定なので数字のサイズに追従する */
.p-index-service-lead__num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 1.8em;
  height: 1.8em;
  background-color: rgba(15, 76, 129, 0.2); /* --color-1（#0f4c81）を薄くした青 */
  border-radius: 50%;
}

.p-index-service-lead__text {
  font-size: 16px;
  line-height: 1.6;
}

/* PC */
@media screen and (min-width: 768px) {
  .p-index-service-lead__title {
    margin-bottom: 30px;
    font-size: 38px;
  }
  .p-index-service-lead__text {
    font-size: 18px;
  }
}