/* .noto-sans-jp-<uniquifier> {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }

.cormorant-garamond-<uniquifier> {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
  */

  :root {
    /* 色管理用の変数 */
    --font-color: #333333;
    --white-color: #FFFFFF;
    --base-color: #F7EDDE;
    --main-color: #94C28C; 
    --sub-color:#E6F0EF;
    --line-color:#D9D9D9;
    --btn-color:#299467;
    --filter-color:rgba(27, 111, 147, 0.2);
  }
  
  :root {
    /* コンテンツ幅管理用の変数 */
    --content-width-sm: 800px;
    --content-width: 960px;
    --content-width-lg: 1088px;
  }
  
  :root {
    /* z-index管理用の変数 */
    --z-index-back: -1;
    --z-index-default: 1;
    --z-index-header: 100;
    --z-index-menu: 150;
    --z-index-modal: 200;
  }

   /* ---------- base ---------- */

   html {
    scroll-behavior: smooth;
  }

  body {
    cursor: default;
    color: var(--font-color);
    font-size: 16px;
    font-family: "Noto Sans JP",
      sans-serif;
    line-height: 1.8;
    letter-spacing: 0.1em;
  }

  @media (min-width: 751px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
    }

  /* ---------- utility ---------- */
  @media screen and (min-width: 768px) {
    .u_dn-sm {
      display: none;
    }
  }
  
  @media screen and (min-width: 1080px) {
    .u_dn-lg {
      display: none;
    }
  }
  
  /* ---------- layout ---------- */
  
  .l_container-sm,
  .l_container,
  .l_container-lg {
    width: 100%;
    padding: 0 16px;
    margin: 0 auto;
  }
  
  .l_container-sm {
    max-width: calc(
      var(--content-width-sm) + 32px
    );
  }
  
  .l_container {
    max-width: calc(
      var(--content-width) + 32px
    );
  }
  
  .l_container-lg {
    max-width: calc(
      var(--content-width-lg) + 32px
    );
  }
  
  .l_contents {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .l_header {
    height: 80px;
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    z-index: var(--z-index-header);
    background: rgba(35, 132, 59, 0.5);
  }
  
  @media screen and (min-width: 1080px) {
    .l_header {
      padding: 0 48px;
    }
  }
  
  .l_header-logo_link {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .l_header-logo-img {
    height: 60px;
  }
  
  .l_header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--main-color);
    z-index: var(--z-index-header);
    color: var(--white-color);
  }
  
  @media screen and (min-width: 1080px) {
    .l_header-nav {
      position: static;
      background: transparent;
      width: auto;
      height: auto;
      opacity: 1;
      pointer-events: inherit;
    }
  }
  
  .l_header-nav_list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  @media screen and (min-width: 1080px) {
    .l_header-nav_list {
      display: flex;
      gap: 0 48px;
      position: static;
      transform: none;
    }
  }
  
  .l_header-nav_item {
    text-align: center;
    font-size: 16px;
  }
  
  @media screen and (min-width: 1080px) {
    .l_header-nav_item {
      font-weight: normal;
      display: flex;
      align-items: center;
      position: relative;
    }
  }
  
  .l_header-nav_item:not(:first-child) {
    margin-top: 40px;
  }
  
  @media screen and (min-width: 1080px) {
    .l_header-nav_item:not(:first-child) {
      margin-top: 0;
    }
  }

  @media screen and (min-width: 1080px) {
    .l_header-nav_link {
  transition: .3s;
  position: relative;
    }
  }

  @media screen and (min-width: 1080px) {
    .l_header-nav_link::after {
      content: '';
  display: block;
  height: 1px;
  width: 80%;
  background: var(--white-color);
  position: absolute;
  bottom: 0;
  left: 10%;
  transform: scale(0, 1);
  transition: .3s;
    }
  }

  @media screen and (min-width: 1080px) {
    .l_header-nav_link:hover::after {
      transform: scale(1, 1);
    }
  }

  .header_logo_img {
    width: 50%;
  }

  .l_footer {
    padding: 32px;
    background: var(--main-color);
  }

  @media screen and (min-width: 758px) {
    .l_footer_box {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }

  .l_footer_logo {
    width: 300px;
    text-align: center;
  }

  .l_footer_list {
    display: none;
  }

  @media screen and (min-width: 1080px) {
    .l_footer_list {
      display: flex;
      color: var(--white-color);
      align-items: center;
      justify-content: center;
      gap:  0 48px;
      margin-top: 48px;
    }
  }

  .l_footer_txt {
    margin-top: 32px;
  }

  @media screen and (min-width: 1080px) {
    .l_footer_txt {
    margin-top: 0;
  }

  }

  .l_footer-copyright {
    margin-top: 48px;
    text-align: center;
  }

  .l_footer-copyright_txt {
    font-size: 12px;
    color: var(--white-color);
  }

  .footer_logo_img {
    width: 70%;
  }

  /* ---------- module ---------- */
  .m_hamburger {
    height: 3rem;
      width: 3rem;
    position: relative;
    z-index: var(--z-index-menu);
    border-radius: 0.375rem;
    --tw-bg-opacity: 1;
    background-color:var(--main-color);
  }
  
  @media screen and (min-width: 1080px) {
    .m_hamburger {
      display: none;
    }
  }
  
  .m_hamburger-bar {
    width: 70%;
    height: 2px;
    position: absolute;
    background: var(--white-color);
    left: 50%;
    transition: 0.3s;
  }
  
  .m_hamburger-bar:first-child {
    top: 25%;
    transform: translate(-50%, 0);
  }
  
  .m_hamburger-bar:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .m_hamburger-bar:last-child {
    top: 75%;
    transform: translate(-50%, -100%);
  }

  .m_section_ttl_box {
    align-items: center;
    justify-content: center;
    display: flex;
    margin-bottom: 64px;
  }

  .m_section_ttl {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
  }
  
  .m_section_ttl span {
    display: flex;
    align-items: center;
    color: var(--main-color);
    font-size: 24px;
    font-weight: normal;
  }
  
  .m_section_ttl span::before {
    content: '';
    display: inline-block;
    margin-right: 16px;
    width: 26px;
    height: 1px;
    background-color: var(--main-color);
  }

  .m_btn {
    margin-top: 32px;
  }

  .m_btn a {
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 200px;
    padding: 10px 25px;
    color: var(--btn-color);
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.m_btn a:hover {
    background: #edf6ff;
}
.m_btn a:before, .m_btn a:after {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.3s;
  right: 0.6rem;
  top: 50%;
}
.m_btn a:before {
  width: 1.4rem;
  height: 2px;
  background: var(--btn-color);
  transform: translateY(-50%);
}
.m_btn a:after {
  opacity: 0;
  width: 0;
  height: 0;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.m_btn a:hover:before {
  width: 1.5rem;
}
.m_btn a:hover:after {
  opacity: 1;
  width: 8px;
  height: 8px;
}

.m_btn_2 {
  margin-top: 32px;
}

.m_btn_2 a {
  background: #eee;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 200px;
  padding: 10px 25px;
  color: var(--btn-color);
  transition: 0.3s ease-in-out;
  font-weight: 500;
}

.m_btn_2 a:hover {
  background: #edf6ff;
}

.m_cta {
  background: var(--main-color);
  padding: 64px 0;
}

.m_cta_box {
  background: var(--white-color);
  width: 300px;
  margin: 0 auto;
  padding: 26px;
  border-radius: 30px;
}

@media screen and (min-width: 1080px) {
  .m_cta_box {
    width: 600px;
  }
}

.m_cta_ttl {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.m_cta_tel {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
}

.m_cta_time {
  text-align: center;
  margin-bottom: 16px;
}

.m_button-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  margin: 0 auto;
  padding: .9em 1em;
  border: none;
  border-radius: 5px;
  background-color: var(--btn-color);
  color: #fff;
  font-weight: 600;
}

.m_button-2:hover {
  background-color: #1579c0;
}

.m_button-2::after {
  width: 1.25em;
  height: 1.25em;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 3H21C21.5523 3 22 3.44772 22 4V20C22 20.5523 21.5523 21 21 21H3C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3ZM12.0606 11.6829L5.64722 6.2377L4.35278 7.7623L12.0731 14.3171L19.6544 7.75616L18.3456 6.24384L12.0606 11.6829Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  content: '';
}

.m_kv {
  height: 450px;
  background: linear-gradient(rgba(27, 111, 147, 0.2),rgba(27, 111, 147, 0.2)),
  url(../img/m_kv.jpg) center / cover;
}

.m_kv-inner {
  position: relative;
  height: 100%;
  -ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
text-orientation: upright;
color: var(--white-color);
font-family: "Shippori Mincho", serif;
}

.m_kv-title {
  position: absolute;
  top: 40%;
  font-size: 32px;
}

@media screen and (min-width: 1080px) {
  .m_kv-title {
      font-size: 40px;
      top: 30%;
  }
}

.m_kv_subttl {
  position: absolute;
  left: 5%;
  top: 50%;
}

@media screen and (min-width: 1080px) {
  .m_kv_subttl {
      font-size: 24px;
      left: 0%;
      top: 40%;
  }
}

  /* ---------.top_kv----------- */

  .top_kv {
    height: 100vh;
    position: relative;
    background: linear-gradient(rgba(27, 111, 147, 0.2),rgba(27, 111, 147, 0.2)),
    url(../img/top_kv.png) center / cover;
  }

  .top_kv-inner {
    position: relative;
    height: 100%;
    -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: var(--white-color);
  font-family: "Shippori Mincho", serif;
  }

  .top_kv_copy {
    position: absolute;
    top: 30%;
    font-size: 32px;
  }
  
  @media screen and (min-width: 1080px) {
    .top_kv_copy {
        font-size: 40px;
        top: 17%;
    }
  }

  .top_kv_subcopy {
    position: absolute;
    left: 5%;
    top: 30%;
  }

  @media screen and (min-width: 1080px) {
    .top_kv_subcopy {
        font-size: 24px;
        left: 0%;
        top: 18%;
    }
  }

  /* ---------- .top_intro ---------- */
  @media screen and (min-width: 1080px) {
    .top_intro_box {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  }

  .top_intro_ttl {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 48px;
  }
  
  /* ---------- .top_slider ---------- */
  .slider{
    margin:0 auto;
}
.slider img{
    width:100%;
    height: 100px;
    border-radius: 10%;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
  .slider img {
    height: 200px;
  }
}

@media screen and (min-width: 1080px) {
  .slider img {
    height: 300px;
  }
}

.slider .slick-slide{
    height:auto!important;
      margin-right: 1vw!important;
      margin-left: 1vw!important;
  }

  /* ---------- .top_news ---------- */
  .top_news_list{
    width:100%;
    margin-bottom: 32px;
  }

  @media screen and (min-width: 1080px) {
    .top_news_list {
      width: 70%;
      margin: 0 auto;
    }
  }

  .top_news_item{
    border-bottom:1px solid var(--line-color);
    list-style:none;
    text-decoration:none;
    display: block;
    padding: 10px 0;
  }

  .top_news_item:hover{
    background-color:var(--sub-color);
  }

  .top_news_date{
      vertical-align: middle;
      display: inline-block;
      margin-right: 10px;
  }

  .top_news_txt{
      display: inline-block;
      margin: 0;
      padding: 0;
      vertical-align: middle;
  }

  /* ---------- .top_pic ---------- */
  .top_pic {
    height: 300px;
    background: url(../img/top_pic.jpg) center / cover;
  }

  .shapedividers_com-6309{
    height: 100px;
    overflow:hidden;
    position:relative;
    }
    .shapedividers_com-6309::before{ 
    content:'';
    font-family:'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw; 
    background-size: 100% 81px;
    background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" fill="%23ffffff"/></svg>'); 
    }
    
    @media (min-width:2100px){
    .shapedividers_com-6309::before{
    background-size: 100% calc(2vw + 81px);
    }
    }

  .shapedividers_com-5065{
    overflow:hidden;
    position:relative;
    height: 200px;
    }
    .shapedividers_com-5065::before{ 
    content:'';
    font-family:'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw; 
    background-size: 100% 66px;
    background-position: 50% 100%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23ffffff"/></svg>'); 
    }
    
    @media (min-width:2100px){
    .shapedividers_com-5065::before{
    background-size: 100% calc(2vw + 66px);
    }
    }

  /* ---------- .top_message ---------- */
  @media screen and (min-width: 1080px) {
    .top_message_box {
      display: flex;
    }
  }

  .top_message_img {
    object-fit: contain;
    height: 250px;
  }

  /* ---------- .top_company ---------- */
  .top_company {
    background: var(--base-color);
  }
  
.shapedividers_com-4460{
  overflow:hidden;
  position:relative;
  height: 50px;
  }
  .shapedividers_com-4460::before{ 
  content:'';
  font-family:'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw; 
  background-size: 100% 116px;
  background-position: 50% 0%; 
  transform: rotateY(180deg); background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffffff"/></svg>'); 
  }
  
  @media (min-width:2100px){
  .shapedividers_com-4460::before{
  background-size: 100% calc(2vw + 116px);
  }
  }

  .top_company_wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  @media screen and (min-width: 758px) {
    .top_company_wrapper {
      flex-direction: row;
      align-items: center;
      justify-content: center;
    }
  }

  .top_company_img_box {
    width: 350px;
    box-shadow: 0 3px 10px 0 #333;
  }

  @media screen and (min-width: 1080px) {
    .top_company_img_box {
      width: 500px;
      overflow: hidden;
    }
  }

  .top_company_img {
    object-fit: cover;
  }

  @media screen and (min-width: 1080px) {
    .top_company_img {
      height: auto;
  transition: transform .6s ease; /* ゆっくり変化させる */
    }
  }

  @media screen and (min-width: 1080px) {
    .top_company_img:hover {
      transform: scale(1.1); /* 拡大 */
    }
  }

  @media screen and (min-width: 1080px) {
    .top_company_adress {
      margin-bottom: 32px;
    }
  }

  /* ---------- news ---------- */
  .news-list{
    list-style: none outside;
    margin: 0;
    padding: 0;
  }
  .news-list_item{
    display: flex;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #CCC;
    padding: 20px 20px;
  }
  .news-list_item:first-child{
    border-top: 1px solid #CCC;
  }
  .news-list_date{
    margin: 0;
    min-width: 120px;
    font-size: 16px;
    color: #999;
    padding: 0 20px 0 0;
  }
  .news-list_title{
    margin: 0;
    width: 100%;
  }
  .news-list_title:hover{
    color: #00F;
  }
  
  @media screen and (max-width: 767px){
  .news-list_title{
    flex-wrap: wrap;
  }
  .news-list_date{
    min-width: 100px;
  }
  .news-list_title{
    margin-top: 10px;
  }
  }

  /* ---------- company---------- */ 
  .m_v_inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
  }

  @media screen and (min-width: 758px) {
    .m_v_inner {
      flex-direction: row;
      justify-content: center;
      align-items: center;
      gap: 120px;
    }
  }

  .m_v_ttl {
    text-align: center;
  }

  .heading-29 {
    font-weight: bold;
    display: inline-block;
    position: relative;
    margin: calc(3.5em / 2) 0 calc(3.5em / 4) calc(3.5em / 2);
    color: #333333;
    line-height: 1;
}

.heading-29::before {
    position: absolute;
    bottom: calc(-3.5em / 4);
    left: calc(-3.5em / 2);
    z-index: -1;
    width: 3.5em;
    height: 3.5em;
    border-radius: 50%;
    background: #9feac9;
    content: '';
}

.m_v_txt {
  margin-top: 32px;
  text-align: center;
}

.company_info {
  background: var(--base-color);
}

#table01 {
  margin: 0 auto;
  width: 80%;
}

#table01 tr {
border-bottom: 1px solid var(--line-color);
}

#table01 th,
#table01 td {
padding: 24px 0;
border: none;
}

#table01 th {
width: 30%;
font-weight: bold;
}

/* sp */
@media only screen and (max-width: 480px) {
#table01 th,
#table01 td {
  width: 100%;
  display: block;
}

#table01 th {
  width: 100%;
}

#table01 td {
  padding-top: 0;
}
}

.map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
  margin-top: 48px;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------- message ---------- */
.intro_box {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.balloon1-right {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 16px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #e0edff;
  border-radius: 15px;
}

.balloon1-right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #e0edff;
}

.balloon1-right p {
  margin: 0;
  padding: 0;
}

.intro_img_box {
  width: 100px;
}

@media screen and (min-width: 758px) {
  .message_items {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .message_item {
    flex: 1;
  }
}

.message_img_box {
  position: relative;
  height: 400px;
}

.message_img_box01 {
  background: linear-gradient(rgba(27, 111, 147, 0.2),rgba(27, 111, 147, 0.2)),
    url(../img/message_01.jpg) bottom / cover;
}

.message_img_box02 {
  background: linear-gradient(rgba(27, 111, 147, 0.2),rgba(27, 111, 147, 0.2)),
    url(../img/message_03.png) center / cover;
}

.message_img_box03 {
  background: linear-gradient(rgba(27, 111, 147, 0.2),rgba(27, 111, 147, 0.2)),
    url(../img/message_02.png) center / cover;
}

.message_img_ttl {
	position: relative;
	padding-bottom: 50px;
	font-size: 24px;
	text-align: center;
  color: var(--white-color);
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
}

.message_img_ttl::before {
	content: attr(data-en);
	display: block;
	color: var(--white-color);
	font-size: 16px;
	font-style: italic;
	text-transform: uppercase;
}

.message_box {
  margin-top: 48px;
}

.massage_txt {
  padding: 100px;
}

.message_item_txt-box {
  height: 300px;
  position: relative;
  text-align: center;
}

.message_item_txt {
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size: 20px;
  width: 100%;
}

.message_item_txt-box_01 {
  background-color: var(--base-color)
}

.message_item_txt-box_02 {
  background: #DEE7DC;
} 

@media screen and (min-width: 758px) {
  .message_main_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
  }
}

.message_pic_box {
  width: 100%;
  border-radius: 15px;
  box-shadow: 5px 10px 20px rgba(0,0,0,0.25);
}

@media screen and (min-width: 1080px) {
  .message_pic_box {
    width: 500px;
  }
}

.message_pic {
  height: 370px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}

@media screen and (min-width: 1080px) {
  .message_pic {
    height: 430px;
  }
}

.message_main_txt_box {
  margin-top: 48px;
  gap: 32px;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 1080px) {
  .message_main_txt_box {
    margin-top: 0px;
  }
}

.message_copy {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  font-style: italic;
  color: var(--main-color);
}

.message_name {
  text-align: end;
  font-style: italic;
}

/* -------- bukken -------- */
.bukken_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 48px;
  padding: 1rem;
  margin: 0;
  width: 100%;
}

.bukken_item {
  display: flex;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 上に画像、下に文字を寄せる */
  background-color: #fff;
  border-radius: 0.25rem;
  box-shadow: 0 10px 20px #ccc;
  text-decoration: none;
  transition: box-shadow 0.3s;
  width: 100%;
}
.card:hover {
  box-shadow: 0 10px 20px #999;
}

/* 画像エリア（正方形） */
.bukken_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.bukken_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 文字エリア：高さを揃える */
.bukken_ttl {
  padding: 16px;
  font-size: 1.1rem;
  text-align: center;
  /* ↓ ここで高さを固定 or 最小高さを設定 */
  min-height: 3em;             /* 2行分くらい */
  display: flex;
  align-items: center;         /* 縦中央寄せ */
  justify-content: center;     /* 横中央寄せ */
  margin: 0;
  /* 必要ならはみ出しを防ぐ */
  overflow: hidden;
  /* 行数制限したい場合は以下を追加 */
  /* display: -webkit-box; */
  /* -webkit-line-clamp: 2; */
  /* -webkit-box-orient: vertical; */
}



/*-------- contact---------*/
.contact_txt-wrapper {
  padding: 40px 16px;
}

.contact_txt {
  padding-top: 16px;
  letter-spacing: normal;
}

@media screen and (min-width: 600px) {
  .contact_txt {
    text-align: center;
  }
}

.contact_txt-inner {
  max-width: 400px;
  margin-top: 24px;
  margin: 24px auto 0;
  padding: 20px;
  text-align: center;
  border: 1px solid var(--line-color);
  background-color: #F5F5F5;
  box-shadow:  0px 4px 4px rgba(0, 0, 0, 0.15);
}

.contact_tell-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.contact_tell-txt::before {
  content: "\f2a0";
  font-family: 'Font Awesome 6 Free';
font-weight: 900;
padding: 0 7px 0 0
}

.contact_number-txt {
  font-size: 20px;
  font-weight: bold;
}

.contact_info-txt {
  font-size: 16px;
}

.contact {
  margin: 40px auto 120px;
}

.contact_form_txt {
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .contact_form_txt {
    font-size: 16px;
  }
}

.font-bold {
  font-weight: bold;
  text-align: center;
}

.contact_form_list {
  padding: 16px 0;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .contact_form_item {
    display: flex;
    justify-content: center;
  }
}
.contact_form_heading {
  border: 1px solid var(--base-color);
  font-weight: bold;
  background-color: var(--sub-color);
  padding: 8px 16px;
}

@media screen and (min-width: 768px) {
  .contact_form_heading {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
  }
}

@media screen and (min-width: 1080px) {
  .contact_form_heading {
    width: 320px;
  }
}

.contact_form_detail {
  border: 1px solid var(--base-color);
  padding: 16px 24px;
}

.contact_form_detail.border-bottom {
  border-bottom: 1px solid var(--base-color);
}

@media screen and (min-width: 768px) {
  .contact_form_detail {
    width: 60%;
  }
}

.contact_form_input {
  max-width: 400px;
  width: 100%;
  padding: 4px 8px;
  border: 1px solid var(--base-color);
}

.contact_form_radio-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact_form_radio-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact_form_radio {
  appearance: radio;
}

@media screen and (min-width: 1080px) {
  .contact_form_radio {
    width: 15px;
    height: 15px;
  }
}
.contact_form_checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact_form_checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact_form_checkbox {
  appearance: checkbox;
}

@media screen and (min-width: 1080px) {
  .contact_form_checkbox {
    width: 15px;
    height: 15px;
  }
}

.contact_form_textarea {
  border: 1px solid var(--base-color);
  width: 100%;
  height: 240px;
  padding: 8px;
}

.contact_consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .contact_consent {
    font-size: 16px;
  }
}

.contact_consent.margin-top-small {
  margin-top: 12px;
}

@media screen and (min-width: 1080px) {
  .contact_consent.margin-top-small {
    margin-bottom: 24px;
  }
}

.contact_consent_inner {
  width: 250px;
}

.button002 a {
  background: #eee;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: 220px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.button002 a:before {
  content: "\f0e0";
  position: relative;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #999;
}
.button002 a:hover {
  background: var(--btn-color);
  color: #FFF;
}

/* ---------- privacy ---------- */
.m_privacy {
  background: var(--base-color);
}

.m_privacy_box {
width: 100%;
height: 300px;
padding: 20px 16px;
background-color: #fff;
border: 1px solid var(--line-color);
border-radius: 10px;
}

.m_privacy_inner {
  height: 100%;
  overflow-y: scroll; 
}

.m_privacy_ttl {
  font-size: 20px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px solid var(--line-color);
  margin-bottom: 32px;
}

.m_privacy_subttl {
  margin-bottom: 48px;
}

.m_privacy_txt_ttl {
  font-weight: bold;
  margin-bottom: 16px;
}

.m_privacy_txt {
  margin-bottom: 32px;
}

/* ---------- single ---------- */
.news_ttl {
  font-weight: bold;
  font-size: 32px;
  border-bottom: 1px solid var(--line-color);
  padding-bottom: 32px;
  margin-bottom: 64px;
}

.news_txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
}

.searchandfilter {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 48px;
}

.searchandfilter h4 {
    font-weight: 400;
    color: #555;
    font-size: 12px;
    letter-spacing: .18rem;
    margin-top: 1rem;
    margin-right: 6rem;
}
.searchandfilter label {
    margin: 0 5px;
    padding: 0 5px;
    display: block;
    color: #1d1d1d;
    font-size: 14px;
    position: relative;
    line-height: 30px;
  }

  .searchandfilter label {
    margin-top: 0.5rem;
  }

.searchandfilter input[type="submit"] {
    border: 1px solid var(--btn-color);
    color: var(--btn-color);
    background: #FFFFFF;
    transition-duration: .5s;
    border-radius: 40px;
    letter-spacing: .2rem;
    height: 50px;
}


    /* ---------- js ---------- */
.js_body.is-active {
  overflow: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1080px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: inherit;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}