/*****************************************
dgreen common css
header & footer only!
*****************************************/
/*=======================================
header
=======================================*/
/* ====== Base ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #1C2A52;
}
img{
  vertical-align: bottom;
}
#site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
}
p{
  color: #233057;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* ====== Responsive ====== */
@media all and (min-width: 861px) {}
@media all and (max-width: 860px) {
  .header-inner{
    padding: 9px 10px 9px;
    height: 106px;
  }
}

/* ====== Logo ====== */
.logo{
  padding: 10px 0 10px;
}
.logo img {
  height: auto;
  width: 100%;
  max-width: 315px;
}

/* ====== Navigation ====== */
.global-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}
.global-nav ul li{
  position: relative;
}

.global-nav a, .global-nav a:visited {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: #233057;
  text-align: left;
}

.global-nav .jp {
  font-weight: bold;
}

.global-nav .en {
  color: #C1B392;
  margin: 4px 0 0;
}



/* ====== Responsive ====== */
@media all and (min-width: 861px) {
  .sp{
    display: none !important;
  }
  .global-nav a, .global-nav a:visited {
    font-size: 16px;
  }
  .global-nav a:hover::after {
    content: "";
    display: block;
    background-color: #D8A233;
    height: 5px;
    bottom: -22px;
    position: absolute;
    width: 100%;
  }
  .global-nav .en {
    font-size: 15px;
  }
}
@media all and (max-width: 860px) {
  .pc{
    display: none !important;
  }
  .global-nav {
    position: absolute;
    top: 106px;
    right: 0;
    width: 100%;
    background: white;
    display: none;
    flex-direction: column;
    padding: 14px 0 79px;
  }
  .global-nav a, .global-nav a:visited {
    font-size: clamp(16px, 2.5vw, 21px);
  }
  .global-nav .en {
    font-size: clamp(15px, 2vw, 18px);
  }
  .global-nav a, .global-nav a:visited {
    border-bottom: 1px solid #D6D6D6;
    padding: 16px 0 12px 54px;
    background-repeat: no-repeat;
    background-position: left center;
  }
  .global-nav a.gn-yellow{
    background-image: url(https://homechigiru-group.com/assets25/img/sparrow-yellow.png);
  }
  .global-nav a.gn-pink{
    background-image: url(https://homechigiru-group.com/assets25/img/sparrow-pink.png);
  }
  .global-nav a.gn-green{
    background-image: url(https://homechigiru-group.com/assets25/img/sparrow-green.png);
  }
  .global-nav a.gn-blue{
    background-image: url(https://homechigiru-group.com/assets25/img/sparrow-blue.png);
  }

  .global-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .global-nav.open {
    display: flex;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.16);
  }

  .logo img {
    width: 64.67vw;
    max-width: 100%;
  }

  /* ====== Hamburger base ====== */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 60px;
    height: 60px;
    background: #41AAE4;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
    z-index: 999; /* 必要に応じて調整 */
  }

  .hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
  }


  /* ===== 開いた状態（→1本線） ===== */
  .hamburger.open span:nth-child(1) {
    transform: translateY(9px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 1;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-9px);
  }
  .global-nav ul li{
    padding: 0 40px;
  }
  /* 半透明の黒背景 */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998; /* ハンバーガーより下、メニューより上 */
  }

  /* メニュー開いたときにbodyを固定 */
  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }


}

/*=======================================
footer
=======================================*/
footer{}
footer .site-info{
  text-align: center;
  padding: 52px 20px 0;
}


#for-media{}
#for-media .contact-wrap{
  border: 2px solid #233057;
  border-radius: 30px;
  max-width: 980px;
  margin: 120px auto 40px;
  padding: 60px 20px 20px;
  position: relative;
}

#for-media h1{
  font-size: clamp(15px, 2vw, 22px);
  background: #233057;
  color: #fff;
  font-weight: 500;
  max-width: 270px;
  position: absolute;
  top: -23px;
  margin: auto;
  right: 0;
  left: 0;
  padding: 6px 20px 6px;
}
#for-media h1::after{
  content: "";
  width: 166px;
  height: 66px;
  background-image: url(https://homechigiru-group.com/assets25/img/five-stars-gold.png);
  display: block;
  position: absolute;
  top: -72px;
  left: 0;
  right: 0;
  margin: auto;
}

#for-media p{}
#for-media p.large{
  font-size: clamp(18px, 2vw, 22px);
  margin: 0 0 20px;
}

.copyright{
  background: #B4EAFF;
  text-align: center;
  font-size: 16px;
  padding: 10px 20px 10px;
  margin: 0;
}
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {
  footer .site-info .footer-logo{
    max-width: 212px;
    margin: 0 auto;
  }
}
/*=======================================
mainvisual
=======================================*/
.mainvisual{
  width: 100%;
  height: auto;
}
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
common
=======================================*/
.contents-wrap{
  max-width: 1200px;
  background-image: url(https://homechigiru-group.com/assets25/img/bg-dots.png);
  background-color: #fff;
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
  padding: clamp(124px, 15vw, 140px) 35px 20px;
}
.contents-title{
  margin: auto;
  position: absolute !important;
  top: -70px;
  right: 0;
  left: 0;
  text-align: center;
}
.contents-title img{
  height: clamp(94px, 12vw, 120px);
  width: auto;
}
.contents-title span{
  color: #233057;
  font-weight: normal;
  display: block;
  font-size: clamp(22px, 2.5vw, 32px);
  margin: 15px 0 0;
}
.contents-title span::after{
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 166px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contents-wrap::before, .contents-wrap::after{
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}
.contents-wrap * {
  position: relative;
  z-index: 2;
}
.contents-wrap::before{
  top: 0;
  right: 0;
}
.contents-wrap::after{
  bottom: 0;
  left: 0;
}

/* ボタンリンク */
.btn01 {
}
.btn01 a {
  text-align: center;
  text-decoration: none;
  transition: .3s;
  border-radius: 27px;
  position: relative;
  align-items: center;
  color: #233057 !important;
  background-color: #ffffff;
  box-shadow: 0px 3px 0px #233057;
  border: 1px solid #233057;
  max-width: 254px;
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 10px 10px 10px;
  font-size: 18px;
}

.btn01 a:hover {
  box-shadow: unset;
  transform: translateY(4px);
  box-shadow: #000000;
}


/*pc*/
@media all and (min-width: 861px) {
  .contents-wrap::before, .contents-wrap::after{
    width: 316px;
    height: 213px;
  }
  section{
    padding: 92px 20px 56px;
  }
}
/*sp*/
@media all and (max-width: 860px) {
  .contents-title{
    top: -55px;
  }
  .contents-title span::after{
    height: 24px;
  }
  .contents-wrap::before, .contents-wrap::after{
    width: 174px;
    height: 118px;
  }
  section{
    padding: 86px 20px 56px;
  }
}
/*=======================================
yellow-wrap
=======================================*/
.bg-yellow01, .bg-yellow02{
  background-color: #FFEC54;
}
.bg-yellow01 .contents-title span::after{
  background-image: url(https://homechigiru-group.com/assets25/img/five-stars-blueyellow.png);
}

.bg-yellow02 .contents-title span::after{
  background-image: url(https://homechigiru-group.com/assets25/img/five-stars-yellow.png);
}

.bg-yellow01 .yellow-wrap::before{
  background-image: url(https://homechigiru-group.com/assets25/img/bg-diagonal-line-top-right-blueyellow.png);
}
.bg-yellow01 .yellow-wrap::after{
  background-image: url(https://homechigiru-group.com/assets25/img/bg-diagonal-line-bottom-left-teal-blueyellow.png);
}

/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
blue-wrap
=======================================*/
.bg-blue{
  background-color: #B4EAFF;
}
.bg-blue .contents-title span::after{
  background-image: url(https://homechigiru-group.com/assets25/img/five-stars-bluepink.png);
}
.blue-wrap{}

.blue-wrap01::before, .blue-wrap02::before{
  background-image: url(https://homechigiru-group.com/assets25/img/bg-diagonal-line-top-right-bluepink.png);
}
.blue-wrap01::after{
  background-image: url(https://homechigiru-group.com/assets25/img/bg-diagonal-line-bottom-left-bluepink.png);
}
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
pink-wra
=======================================*/
.bg-pink{
  background-color: #FFB7D4;
}
.bg-pink .contents-title span::after{
  background-image: url(https://homechigiru-group.com/assets25/img/five-stars-greenpink.png);
}
.pink-wrap{}

.pink-wrap::before{
  background-image: url(https://homechigiru-group.com/assets25/img/bg-diagonal-line-top-right-teal-pink.png);
}
.pink-wrap::after{
  background-image: url(https://homechigiru-group.com/assets25/img/bg-diagonal-line-bottom-left-teal-pink.png);
}
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
green-wrap
=======================================*/
.bg-green{
  background-color: #D6E689;
}
.bg-green .contents-title span::after{
  background-image: url(https://homechigiru-group.com/assets25/img/five-stars-greenyellow.png);
}
.green-wrap{}

.green-wrap::before{
  background-image: url(https://homechigiru-group.com/assets25/img/bg-diagonal-line-top-right-yellow-green.png);
}
.green-wrap::after{
  background-image: url(https://homechigiru-group.com/assets25/img/bg-diagonal-line-bottom-left-yellow-green.png);
}
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
why-five-star
=======================================*/
#why-five-star{}
#why-five-star .flex-wrap01{
  max-width: 867px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#why-five-star .flex-wrap01 .txt-wrap01 h2{
  font-size: clamp(23px, 6.2vw, 32px);
  color: #233057;
  display: flex;
  align-items: center;
}
#why-five-star .flex-wrap01 .txt-wrap01 h2 img{
  margin-right: 20px;
  height: clamp(55px, 10vw, 72px);
  width: auto;
}
#why-five-star .flex-wrap01 .txt-wrap01 p{
  font-size: 20px;
  margin: 20px 0 0;
  letter-spacing: 1px;
  line-height: 1.6;
}
#why-five-star .catchcopy01{
  text-align: center;
  margin: 65px 0 30px;
}
#why-five-star .catchcopy01 span{
  background: #41AAE4;
  display: inline-block;
  color: #fff;
  font-size: clamp(21px, 3vw, 37px);
  font-weight: bold;
  margin: 0 0 15px;
}

/*pc*/
@media all and (min-width: 861px) {
  #why-five-star .flex-wrap01{
    justify-content: space-between;
  }
  #why-five-star .flex-wrap01:nth-of-type(1){
    margin: 13px auto -11px;
  }
  #why-five-star .flex-wrap01:nth-of-type(2){
    margin: 0 auto 23px;
  }
  #why-five-star .flex-wrap01:nth-of-type(3){
    margin: 0 auto;
  }
  #why-five-star .flex-wrap01 .img-wrap01{
    width: 37%;
    display: block;
  }
  #why-five-star .flex-wrap01 .txt-wrap01{
    max-width: 520px;
    width: 60%;
  }
  #why-five-star .flex-wrap01 .txt-wrap01 h2{
    margin: 0 0 26px;
  }
  #why-five-star .catchcopy01 span{
    padding: 3px 40px 6px;
  }
  #why-five-star .catchcopy01 span.row2{
    padding: 3px 0 6px 40px;
  }
  #why-five-star .catchcopy01 span.row3{
    padding: 3px 40px 6px 0;
  }
}
/*sp*/
@media all and (max-width: 860px) {
  #why-five-star .flex-wrap01{
    margin: 0 auto 30px;
  }
  #why-five-star .flex-wrap01:nth-of-type(1){
    margin: 40px 0 30px;
  }
  #why-five-star .flex-wrap01 .img-wrap01{
    width: 100%;
    display: block;
    order: 1;
    margin: 0 0 20px;
  }
  #why-five-star .flex-wrap01 .img-wrap01 img{
    max-width: 260px;
    margin: 0 auto;
    display: block;
    width: 100%;
  }
  #why-five-star .flex-wrap01 .txt-wrap01{
    width: 100%;
    order: 2;
  }
  #why-five-star .flex-wrap01 .txt-wrap01 h2{
    margin: 0 0 10px;
  }
  #why-five-star .catchcopy01 span{
    padding: 3px 14px 6px;
  }
}
/*=======================================
reason
=======================================*/
#reason{}
.contents-lead{
  line-height: 1.8;
  font-size: clamp(18px, 2vw, 20px);
}
.contents-lead span{
  font-weight: bold;
}

.pink-hukidashi{
  text-align: center;
  margin: 0 0 20px;
}

.slider01-slider .slick-track {
  display: flex !important;
  justify-content: center;
}

.slider01-slider .slick-slide {
  margin: 0 4px;
}

.slider01-wrapper {
  max-width: 980px;
  overflow: hidden;
}
.slider01-slider .slick-slide{
  width: 25%;
}
.slider01-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.slider01-slider {
  box-sizing: border-box;
  padding: 0;
}
.slider01-slider .slick-prev, .slider01-slider .slick-next{
  display: none !important;
  left: 0;
  right: 0;
}

.slider02-wrapper{
  max-width: 980px;
  margin: 0 auto 40px;
}
.slick-prev:before, .slick-next:before{
  display: none;
}
.slider02-slider .slick-prev, .slider02-slider .slick-next {
  background: none;
  border: none;
  position: absolute;
  top: 30%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
}

.slider02-slider {
  position: relative;
  max-width: 866px;
  margin: 0 auto;
}

#reason .flex-wrap02{
  display: flex;
  max-width: 980px;
  justify-content: space-between;
}
#reason .flex-wrap02 .text-wrap h2{
  color: #233057;
}
#reason .flex-wrap02 .text-wrap h2 span{
  color: #E67DA7;
}
#reason .flex-wrap02 .text-wrap p{
  font-size: clamp(18px, 2vw, 20px);
}
#reason .flex-wrap02 .img-wrap img{}

/*pc*/
@media all and (min-width: 861px) {
  .slider02-slider .slick-prev{
    left: -60px !important;
  }
  .slider02-slider .slick-next{
    right: -60px !important;
  }
  .contents-lead{
    margin: 42px 0 68px;
    text-align: center;
  }
  #reason .flex-wrap02{
    margin: 50px auto 53px;
  }
  #reason .flex-wrap02:nth-of-type(4){
    margin: 50px auto 73px;
  }
  #reason .flex-wrap02 .text-wrap{
    max-width: 462px;
    width: 48%;
  }
  #reason .flex-wrap02 .img-wrap{
    max-width: 452px;
    width: 47%;
  }
  #reason .flex-wrap02 .text-wrap h2{
    font-size: clamp(18px, 3.5vw, 38px);
  }
  .slider01-wrapper {
    margin: 0 auto 100px;
  }
  #reason .flex-wrap02 .text-wrap p{
    margin: 22px 0 0;
  }
}
/*sp*/
@media all and (max-width: 860px) {
  .slider02-slider .slick-prev, .slider02-slider .slick-next{
    width: 23px;
  }
  .slider02-slider .slick-prev{
    left: -27px !important;
  }
  .slider02-slider .slick-next{
    right: -27px !important;
  }
  #reason .flex-wrap02{
    margin: 10px auto 53px;
  }
  #reason .flex-wrap02 .text-wrap h2{
    font-size: clamp(24px, 1vw, 38px);
  }
  #reason .flex-wrap02{
    flex-wrap: wrap;
  }
  #reason .flex-wrap02 .text-wrap{
    width: 100%;
    order: 2;
    margin: 14px 0 0;
  }
  #reason .flex-wrap02 .img-wrap{
    width: 100%;
    order: 1;
  }
  .slider01-wrapper {
    margin: 0 0 50px -10%;
    width: 120%;
  }
  #reason .slick-slide img{
    max-width: 100%;
    margin: 0 auto;
  }
  #reason .flex-wrap02 .text-wrap p{
    margin: 16px 0 0;
  }
  .contents-lead{
    margin: 42px 0 18px;
  }
}
/*=======================================
school
=======================================*/
#school{}
/* セクション背景 */
.bg-pink {
}

/* 内側のラップ（ピンク用） */
.pink-wrap {
}

/* 教習所リード文 */
.school-lead {
  text-align: center;
}

.school-lead .txt {
}

/* 教習所ブロック全体のラップ */
.school-wrap01 {
  display: flex;
  justify-content: center;
}
.school-wrap02 {
  max-width: 980px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* 各教習所ブロック */
.school-block {
  max-width: 460px;
  text-align: center;
  margin: 0 0 30px;
}
.school-block img {
}

/* 教習所名タイトル */
.honbu-title {
  font-size: clamp(16px, 4.4vw, 28px);
  color: #233057;
  margin: 0 0 12px;
}
.honbu-title span {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: normal;
  display: block;
}

/* 認定校タイトル */
.ninteikou-title {
  position: relative;
  padding: 0 55px;
  width: 100%;
  text-align: center;
  max-width: 980px;
  display: block;
  font-size: clamp(22px, 2.5vw, 28px);
  box-sizing: border-box;
}

/* 文字の左右パディングと同じ幅で線の位置を制御 */
.ninteikou-title::before,
.ninteikou-title::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 4px;
  background-color: #E67DA7;
  width: calc(50% - 55px);  /* 50%からパディング分の55pxを引く */
  max-width: 418px;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.ninteikou-title::before {
  left: 0;
}

.ninteikou-title::after {
  right: 0;
}


/* 通学・合宿カテゴリ */
.school-cat {
  margin: 6px 0 20px;
  display: flex;
  justify-content: space-between;
  font-size: clamp(18px, 3vw, 22px);
}
.school-cat span {
  color: #fff;
  width: 49.5%;
  display: inline-block;
  border-radius: 5px;
  padding: 2px 10px 1px;
}
.school-cat .tugaku {
  background: #41AAE4;
}
.school-cat .gasshuku {
  background: #E67DA7;
}
.school-cat .non-gasshuku {
  background: #B9B9B9;
}
.school-lead .large span{
  color: #fff;
}
/*pc*/
@media all and (min-width: 861px) {
  .school-lead {
    margin: 40px 0 70px;
  }
  .school-lead .large {
    font-size: clamp(18px, 3vw, 32px);
    background: #E67DA7;
    color: #fff;
    font-weight: bold;
    text-align: center;
    display: inline-block;
    margin: 0 auto 23px;
    padding: 5px 30px 7px;
  }
  .school-block {
    width: 48%;
    margin: 0 0 30px;
  }
  /* 認定校タイトル */
  .ninteikou-title {
    margin: 50px auto 60px;
  }
  .school-wrap02 {
    margin: 0 auto 38px;
  }
}
/*sp*/
@media all and (max-width: 860px) {
  .school-lead {
    margin: 40px 0 46px;
  }
  .school-lead .large{
    margin: 0 0 10px;
  }
  .school-lead .large span {
    background: #E67DA7;
    display: inline-block;
    color: #fff;
    font-size: clamp(19px, 3vw, 32px);
    font-weight: bold;
    margin: 0 0 11px;
    padding: 3px 9px 6px;
  }
  .school-block {
      width: 100%;
        margin: 0 0 14px;
        max-width: 100%;
        display: block;
  }
  /* 認定校タイトル */
  .ninteikou-title {
    margin: 20px auto 30px;
  }
  .school-wrap02 {
    margin: 0 auto 28px;
    max-width: 100%;
    display: block;
  }


}
/*=======================================
media
=======================================*/
#media{}

.media-block {
  position: relative;
  max-width: 980px;
}

.media-title {
  text-align: center;
  margin: 0;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  z-index: 2;
}

.media-title span {
  display: inline-block;
  background-color: #D6E689;
  padding: 10px 30px;
  border: 2px solid #233057;
  font-size: clamp(22px, 2vw, 32px);
  font-weight: bold;
}

.media-box {
  border: 2px solid #233057;
  border-radius: 30px;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  text-align: center;
}

.media-box p {
  margin: 0 auto;
  max-width: 850px;
  line-height: 1.6;
  font-size: clamp(18px, 2vw, 20px);
  text-align: left;
}
.media-img{
  margin: -10px auto 25px;
  display: block;
}
/*pc*/
@media all and (min-width: 861px) {
  .media-block {
    margin: 50px auto 54px;
  }
  .media-img{
    margin: 0 auto 30px;
  }
  .media-box {
    padding: 60px 20px 52px;
  }
}
/*sp*/
@media all and (max-width: 860px) {
  .media-img{
    margin: 30px auto 30px;
  }
  .media-block {
    margin: 60px 0 70px;
  }
  .media-box {
    padding: 50px 30px 32px;
  }
}
/*=======================================
movie
=======================================*/
#movie{}
#movie .flex-wrap{
  max-width: 1016px;
  display: flex;
  justify-content: space-between;
  margin: 50px auto 62px;
}

#movie .flex-wrap a img{}
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {
  #movie .flex-wrap{
    flex-wrap: wrap;
    margin: 20px auto 35px;
  }
  #movie .flex-wrap a{
    margin: 0 0 15px;
  }
}
/*=======================================
news
=======================================*/
#news {}

.news-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 980px;
}

.news-list li {
  align-items: center;
  padding: 12px 0;
}
.news-date {
  background-color: #233057;
  color: #FFEC54;
  font-weight: bold;
  border-radius: 4px;
  min-width: 164px;
  text-align: center;
  font-size: 14px;
}

.news-date {
  padding: 6px 12px;
  margin-right: 16px;
  font-size: clamp(16px, 2vw, 20px);
}

.entry-header .news-date {
  padding: 6px 12px;
  font-size: 21px;
  max-width: 168px;
  margin: 0 0 20px;
}

.news-title {
  color: #1C2A52;
}

.news-title {
  font-size: clamp(16px, 1.8vw, 18px);
  text-decoration: underline;
}

.entry-header .news-title {
  font-size: clamp(20px, 2vw + 1rem, 25px);
  border-bottom: 1px solid #233057;
  padding: 0 0 9px;
  margin: 0 0 40px;
  text-decoration: none;
}

/*pc*/
@media all and (min-width: 861px) {
  .news-list li {
    display: flex;
  }
}
/*sp*/
@media all and (max-width: 860px) {
  .news-list{
    margin: 12px auto 20px;
  }
  .news-title {
    display: block;
    margin: 14px 0 0;
  }
}
/*=======================================
qa
=======================================*/
#qa{}

.qa-list {
  list-style: none;
  margin: 50px 0 40px;
  padding: 0;
}

.qa-item {
  background: #E0F1F8;
  margin: 0 auto 6px;
  max-width: 980px;
}

.qa-question {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 16px 28px 16px 20px;
}

.qa-question .qa-text {
  flex: 1;
  font-size: clamp(17px, 2vw, 20px);
  color: #333;
}

.qa-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  margin-left: 25px;
  top: 5px;
}

.qa-toggle .bar {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #233057;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 横線（常に表示） */
.qa-toggle .horizontal {
  transform: translateY(-50%);
}

/* 縦線（変化） */
.qa-toggle .vertical {
  transform: rotate(90deg);
  top: 50%;
}

/* 展開時：縦線を非表示（アニメーションで回転） */
.qa-item.open .qa-toggle .vertical {
  transform: rotate(90deg) scaleY(0);
  opacity: 0;
}
.qa-item.open .qa-toggle {
  transition: transform 0.3s ease;
}
.qa-toggle:hover .bar {
  background-color: #3a4e7a;
}

.qa-answer {
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}


.label-q {
  background-image: url(https://homechigiru-group.com/assets25/img/Q.png);
}
.label-a {
  background-image: url(https://homechigiru-group.com/assets25/img/A.png);
}

.qa-answer .qa-text {
  color: #555;
  font-size: clamp(17px, 1.8vw, 18px);
  flex: 1;
}

.qa-icon {
  font-size: clamp(14px, 2vw, 20px);
  color: #777;
  margin-left: auto;
}

.qa-item.open .qa-answer {
  max-height: 500px; /* 展開時の高さに余裕をもたせます */
  opacity: 1;
  pointer-events: auto;
  padding: 5px 78px 16px 20px;
}


/*pc*/
@media all and (min-width: 861px) {
  .qa-label{
    width: 35px;
    height: 32px;
    margin-right: 14px;
  }
}
/*sp*/
@media all and (max-width: 860px) {
  .qa-label{
    width: 28px;
    height: 32px;
    margin-right: 14px;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

/*=======================================
contact-wrap
=======================================*/
.contact-wrap{
  max-width: 1200px;
  background-color: #fff;
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
  padding: clamp(110px, 15vw, 140px) 35px 20px;
}
.contact-wrap::before, .contact-wrap::after{
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}
.contact-wrap * {
  position: relative;
  z-index: 2;
}
.contact-wrap::before{
  top: 0;
  right: 0;
}
.contact-wrap::after{
  bottom: 0;
  left: 0;
}
/*pc*/
@media all and (min-width: 861px) {
  .contact-wrap::before, .contact-wrap::after{
    width: 316px;
    height: 213px;
  }
}
/*sp*/
@media all and (max-width: 860px) {
  .contact-wrap::before, .contact-wrap::after{
    width: 174px;
    height: 118px;
  }
}
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
pagenation
=======================================*/
#pagenation{
	text-align: center;
}
#pagenation #pagenation-list{
	display: inline-block;
}
#pagenation:after{
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
#pagenation #pagenation-list li{
	float: left;
	background: none;
	list-style: none;
	padding: 0;
	margin: 0 5px 5px 0;
}
#pagenation #pagenation-list li:last-child{
	margin-left: 0;
}
#pagenation #pagenation-list a,#pagenation #pagenation-list span{
	background: none;
	display: block;
	margin: 0;
	padding: 8px 9px;
	font-size: 18px;
	line-height: 1.5;
	text-align: center;
  width: 44px;
  height: 44px;
}
#pagenation #pagenation-list .current{
	border: 1px solid #233057;
  border-radius: 50%;
}
#pagenation #pagenation-list .omit{
	padding: 4px 2px;
}
#pagenation #pagenation-list li a{
	color: #333333;
	text-decoration: none;
}
#pagenation #pagenation-list a:hover{
  border: 1px solid #233057;
  border-radius: 50%;
	text-decoration: none;
}


/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
 page-news
=======================================*/
.page-news article, .page-news ul{
  max-width: 980px;
  margin: 0 auto 60px;
}
.page-news .btn01{
  margin: 0 auto 60px;
}
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
fade-up
=======================================*/
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
privacypolicy
=======================================*/
#privacypolicy h1{
  font-size: clamp(20px, 2vw + 1rem, 25px);
  border-bottom: 1px solid #233057;
  padding: 0 0 9px;
  margin: 0 0 40px;
  text-decoration: none;
}
#privacypolicy h2{
  background-color: #F0F0F0;
  font-size: clamp(17px, 2vw + 1rem, 20px);
  padding: 4px 10px;
  font-weight: 500;
  margin: 30px 0 15px;
}
#privacypolicy p{
  margin: 0 0 40px;
}
p.privacypolicy a{
  font-size: 15px;
  margin: 10px 0 0;
  display: block;
  color: #233057 !important;
}
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
common
=======================================*/
/*media
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
common
=======================================*/
/*media
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}

/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width: 861px) {}
/*sp*/
@media all and (max-width: 860px) {}
