@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --white-color: #ffffff;
  --primary-color: #ded3c7;
  --primary-color2: #8e745a;
  --primary-color3: #63411f;
  --primary-color4: #3f2103;
  --accent-color: #7f7f7f;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 1057px;
  --content-width: 936px;
  --content-width-lg: 1080px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--primary-color2);
}

/* ---------- utility ---------- */
.m_section_ttl.u_blown_coler {
  color: var(--primary-color4);
}
/* ---------- layout ---------- */
.l_container-sm {
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.l_container-lg {
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 48px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 80px);
}

.l_contents {
  padding: 64px 0;
}

/* header */
.l_header {
  background: linear-gradient(rgba(142, 116, 90, 1), rgba(142, 116, 90, 0));
  height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 24px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-index-modal);
}
.l_header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.l_header-logo_link {
  font-size: 16px;
  font-weight: bold;
  color: var(--white-color);
}
.l_header-logo_img_wrapper {
  width: 16px;
  height: 18px;
}
.l_header-logo_img {
  transform: translateY(-30%);
}

.l_header-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: auto;
  }
}

.l_header-nav_list {
  color: var(--primary-color3);
  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;
  font-weight: bold;
  padding-top: 36px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    color: var(--white-color);
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 0;
  }
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}

.l_header-nav-logo_img_wrapper {
  width: 80px;
  height: 80px;
}

@media screen and (min-width: 1080px) {
  .l_header-nav-logo_img_wrapper {
    display: none;
  }
}
/* footer */
.l_footer {
  height: 185px;
  background-color: var(--primary-color2);
  position: relative;
  overflow: hidden;
}
.l_footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/footer.jpeg) bottom center/cover;
  opacity: 0.3;
  z-index: var(--z-index-default);
}
.l_footer_inner {
  height: 100%;
  position: relative;
  z-index: var(--z-index-header);
}
.l_footer_box {
  padding: 48px 35px;
}
.l_footer-nav_list {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  gap: 24px;
  font-weight: bold;
  font-size: 12px;
}

.l_footer_logo_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 16px auto;
}
.l_footer_logo {
  font-size: 16px;
  font-weight: bold;
  color: var(--white-color);
}
.l_footer-logo_img_wrapper {
  width: 16px;
  height: 18px;
}
.l_footer-logo_img {
  transform: translateY(-30%);
}
.l_footer-copyright {
  text-align: center;
}
.l_footer-copyright_txt {
  color: var(--white-color);
  font-size: 10px;
}

/*---------- module ----------*/
.m_hamburger {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  z-index: var(--z-index-modal);
  border: none;
  background: transparent;
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: var(--white-color);
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger-bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

.m_kv {
  height: 232px;
  background-color: var(--primary-color2);
  position: relative;
  overflow: hidden;
}
.m_kv-inner {
  height: 100%;
  position: relative;
}
.m_kv.menu {
  background: url(../img/Cafe_kv.jpg) no-repeat center/cover;
}
.m_kv_title {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: var(--z-index-menu);
  font-weight: bold;
  font-size: 36px;
  color: var(--white-color);
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
}

.m_btn-wrapper {
  width: 327px;
  height: 65px;
  margin-left: auto;
  margin-right: auto;
}

.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  color: var(--white-color);
  background: var(--primary-color3);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.m_btn_side {
  position: relative;
}

.m_btn_side::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-width: 2px;
  border-style: solid solid none none;
  border-color: var(--white-color);
}

/*---------- top ----------*/

.top_kv {
  height: 100vh;
  position: relative;
  top: 0;
  overflow: hidden;
}
/* 追加: スライドコンテナ (画像とテキストを重ねるため) */
.top_kv-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

@keyframes kvFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.top_kv-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}
.top_kv-slide.active {
  opacity: 1;
  z-index: 2;
}
/* 次スライド：現スライドの上でフェードイン（背景が透けない） */
.top_kv-slide.entering {
  animation: kvFadeIn 1s ease-in-out forwards;
  z-index: 3;
}
/* 追加: キービジュアル画像の設定 */
.top_kv-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* コンテナに合わせて画像を切り取る（背景画像と同様の効果） */
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-back); /* テキストより奥に配置 */
}
.top_kv-inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.top_kv_box {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
  text-shadow: 3px 3px 3px #000000;
}

@media screen and (min-width: 1080px) {
  .top_kv_box {
    padding: 0 112px;
  }
}

.top_kv_copy {
  font-weight: bold;
  font-size: 16px;
  line-height: 2;
  color: var(--white-color);
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .top_kv_copy {
    text-align: left;
    font-size: 40px;
  }
}
.kv-logo_img_wrapper {
  width: 46px;
  height: 49px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1080px) {
  .kv-logo_img_wrapper {
    display: none;
  }
}

.top_kv-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1080px) {
  .top_kv-scroll {
    display: none;
  }
}

.top_kv-scroll_txt {
  font-size: 12px;
  font-weight: bold;
  color: var(--white-color);
  text-align: center;
}

.top_kv-scroll_arrow {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 8px auto 0;
  border: 1px solid var(--white-color);
  color: var(--white-color);
}

/* toppage */

/* ranya */
.news-pick {
  background-color: var(--primary-color);
  padding: 24px 24px;
}
@media screen and (min-width: 1080px) {
  .news-pick {
    padding: 64px 0px;
  }
}
.news-pick_wrapper {
  display: block;
  border: 1px solid var(--primary-color2);
  text-align: center;
  color: var(--primary-color4);
  max-width: 327px;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .news-pick_wrapper {
    max-width: 718px;
    margin: 0 auto;
  }
}
.news-pick_title {
  font-weight: bold;
  font-size: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (min-width: 1080px) {
  .news-pick_title {
    font-size: 32px;
    padding-top: 32px;
  }
}
.news-pick_txt {
  font-size: 12px;
  padding-bottom: 8px;
}
@media screen and (min-width: 1080px) {
  .news-pick_txt {
    font-size: 24px;
    padding: 32px;
  }
}
/* m_なのでは？？ */
.m_section_ttl {
  color: var(--white-color);
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .m_section_ttl {
    font-size: 36px;
  }
}
.concept_wrapper {
  background-color: var(--primary-color2);
  position: relative;
  overflow: hidden;
}
.concept_wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/conceptbackground.png) bottom center/cover;
  opacity: 0.1;
  z-index: var(--z-index-default);
}
@media screen and (min-width: 1080px) {
  .concept_wrapper .l_container-sm {
    padding: 0 112px;
  }
}
@media screen and (min-width: 1080px) {
  .concept_wrapper .l_contents {
    padding: 120px 0;
  }
}
.concept {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-index-header);
}
.concept_responsive_conteiner {
  margin-top: 48px;
}
@media screen and (min-width: 728px) {
  .concept_responsive_conteiner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 64px;
    margin-top: 64px;
    max-width: 1057px;
    margin-right: auto;
    margin-left: auto;
  }
}
.concept_img_wrapper {
  width: 100%;
  height: 245px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 460px) {
  .concept_img_wrapper {
    height: 400px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 728px) {
  .concept_img_wrapper {
    width: calc((100% - 64px) / 2);
    height: 100%;
    flex-shrink: 0;
  }
}
.concept_sub_conteiner {
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-style: normal;
  color: var(--white-color);
  margin-top: 40px;
}
@media screen and (min-width: 728px) {
  .concept_sub_conteiner {
    margin-top: 0;
  }
}
.concept_sub {
  font-size: 24px;
  padding: 0 20px;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .concept_sub {
    font-size: 36px;
    line-height: 1.5;
    text-align: center;
    padding: 0;
  }
}
.concept_txt {
  font-size: 16px;
  margin-top: 40px;
  padding: 0 16px;
  line-height: 2;
  
}
@media screen and (min-width: 900px) {
  .concept_txt {
    font-size: 24px;
    padding: 0;
  }
}
.store-guid_conteiner {
  margin-top: 40px;
}
@media screen and (min-width: 1080px) {
  .store-guid_conteiner {
    margin-top: 64px;
  }
}
.store-guid_wrapper {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 53px;
  padding: 15px 0;
  max-width: 327px;
  margin: 0 auto;
}
@media screen and (min-width: 1080px) {
  .store-guid_wrapper {
    max-width: 718px;
    margin: 0 auto;
    padding: 37px 0;
  }
}
.store-guid_img {
  width: 120px;
  height: 62px;
}
@media screen and (min-width: 1080px) {
  .store-guid_img {
    width: 312px;
    height: 151px;
  }
}
.store-guid_txt {
  font-weight: bold;
  font-size: 12px;
}
@media screen and (min-width: 1080px) {
  .store-guid_txt {
    font-size: 24px;
  }
}
.store-guid_txt_wifi {
  margin-bottom: 12px;
}
/*  */
/* みぎちゃん */
.top_menu_section {
  background-color: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .menu_wrapper.l_contents {
    padding: 120px 0;
  }
}

.scroll-item_title,
.scroll-item_txt {
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-color4);
}
.scroll-container {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 1080px) {
  .scroll-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1057px;
    gap: 86px;
    overflow-x: hidden; /* ← スクロール消す */
  }
}

/* 1-2. Chrome, Safari (WebKit系) のスクロールバー自体を非表示に */
.scroll-container::-webkit-scrollbar {
  display: none;
}

/* 2. Firefox */
.scroll-container {
  scrollbar-width: none; /* Firefoxでスクロールバーを非表示に */
}

/* 3. Internet Explorer (古いEdge) */
.scroll-container {
  -ms-overflow-style: none; /* IE, Edgeでスクロールバーを非表示に */
}

.scroll-item {
  flex-shrink: 0;
}
.scroll-item_img {
  width: 295px;
  height: 301px;
}

.top_btn-box {
  padding-top: 48px;
}

.access_section {
  background: var(--primary-color2);
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .access_wrapper.l_contents {
    padding: 120px 0;
  }
}

.access_wrapper {
  width: 327px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1080px) {
  .access_wrapper {
    width: 100%;
    max-width: 1057px;
  }
}

.access-content {
  margin-top: 48px;
}

@media screen and (min-width: 1080px) {
  .access-content {
    margin-top: 64px;
    height: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    gap: 84px;
  }
}

.map-placeholder {
  margin-top: 48px;
  width: 327px;
  height: 150px;
  margin: 0 auto;
  overflow: hidden;
}

@media screen and (min-width: 1080px) {
  .map-placeholder {
    width: calc((100% - 64px) / 2);
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
    margin: 0;
  }
}

.access_list {
  margin-top: 48px;
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .access_list {
    font-size: 20px;
    font-weight: bold;
    margin-top: 0;
    width: 463px;
  }
}

.row {
  display: flex;
  gap: 24px;
}

@media screen and (min-width: 1080px) {
  .row {
    gap: 40px;
  }
}

.access_item:not(:first-child) .row {
  padding-top: 24px;
}

@media screen and (min-width: 1080px) {
  .access_item:not(:first-child) .row {
    padding-top: 40px;
  }
}

.access_item:not(:nth-child(2)) .row {
  align-items: center;
}

.access_shopinfo-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 83px;
  height: 28px;
  border: 1.5px solid var(--white-color);
  border-radius: 100vh;
  flex-shrink: 0;
}

@media screen and (min-width: 1080px) {
  .access_shopinfo-ttl {
    border: 1.5px solid var(--white-color);
    border-radius: 100vh;
    flex-shrink: 0;
    width: 120px;
    height: 40px;
  }
}

.access_shopinfo {
  line-height: 200%;
  width: 212px;
}

@media screen and (min-width: 1080px) {
  .access_shopinfo {
    width: 100%;
  }
}

.contact_section {
  background: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .contact_wrapper.l_contents {
    padding: 120px 0;
  }
}

.instagram-link {
  text-align: center;
  margin-top: 48px;
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-color4);
}

.instagram-item_img_wrap {
  padding-top: 24px;
  text-align: center;
}

.instagram-icon_img {
  width: 68px;
  height: 68px;
}

/* menupage */
.menu_section {
  background-color: var(--primary-color);
  padding: 40px 0;
  height: 141px;
  font-family: "Crimson Text", serif;
  color: var(--primary-color4);
}
@media screen and (min-width: 1080px) {
  .menu_section {
    padding: 80px 0;
    height: 214px;
    margin: 0 auto;
  }
}
.menu_section_title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  font-family: "Crimson Text", serif;
}
@media screen and (min-width: 1080px) {
  .menu_section_title {
    font-size: 36px;
  }
}

.drink_contents {
  background-color: var(--primary-color2);
}
.drink_link_wrap {
  padding: 40px 24px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1080px) {
  .drink_link_wrap {
    padding: 64px 156px;
  }
}
.drink_list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 15px;
}
@media screen and (min-width: 1080px) {
  .drink_list {
    gap: 64px 120px;
    max-width: 967px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.drink_item {
  text-align: center;
  color: var(--white-color);
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 1080px) {
  .drink_item {
    width: calc((100% - (120px * 2)) / 3);
  }
}
.drink_img {
  width: 156px;
  height: 156px;
}
@media screen and (min-width: 1080px) {
  .drink_img {
    width: 243px;
    height: 243px;
  }
}
.drink_info {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .drink_info {
    width: 243px;
  }
}
.drink_name {
  margin-top: 8px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1080px) {
  .drink_name {
    margin-top: 24px;
  }
}

.food_menu_section {
  background-color: var(--primary-color);
  padding: 40px 20px;
  font-family: "Crimson Text", serif;
  color: var(--primary-color4);
}
.food_contents {
  background-color: var(--primary-color2);
}
.food_link_wrap {
  padding: 40px 24px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1080px) {
  .food_link_wrap {
    padding: 64px 156px;
  }
}
.food_list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 15px;
  background-color: var(--primary-color2);
}
@media screen and (min-width: 1080px) {
  .food_list {
    gap: 64px 120px;
    max-width: 967px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.food_item {
  text-align: center;
  color: var(--white-color);
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 1080px) {
  .food_item {
    width: calc((100% - (120px * 2)) / 3);
  }
}
.food_img {
  width: 156px;
  height: 156px;
}
@media screen and (min-width: 1080px) {
  .food_img {
    width: 243px;
    height: 243px;
  }
}
.food_info {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .food_info {
    width: 243px;
  }
}
.food_name {
  margin-top: 8px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1080px) {
  .food_name {
    margin-top: 24px;
  }
}
.sweets_menu_section {
  background-color: var(--primary-color);
  padding: 40px 20px;
  font-family: "Crimson Text", serif;
  color: var(--primary-color4);
}
.sweets_contents {
  background-color: var(--primary-color2);
}
.sweets_link_wrap {
  padding: 40px 24px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1080px) {
  .sweets_link_wrap {
    padding: 64px 156px;
  }
}
.sweets_list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 15px;
}
@media screen and (min-width: 1080px) {
  .sweets_list {
    gap: 64px 120px;
    max-width: 967px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.sweets_item {
  text-align: center;
  color: var(--white-color);
  width: calc((100% - 15px) / 2);
}
@media screen and (min-width: 1080px) {
  .sweets_item {
    width: calc((100% - (120px * 2)) / 3);
  }
}
.sweets_img {
  width: 156px;
  height: 156px;
}
@media screen and (min-width: 1080px) {
  .sweets_img {
    width: 243px;
    height: 243px;
  }
}
.sweets_info {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .sweets_info {
    width: 243px;
  }
}
.sweets_name {
  margin-top: 8px;
  margin-bottom: 8px;
}
@media screen and (min-width: 1080px) {
  .sweets_name {
    margin-top: 24px;
  }
}
.menu_btn-box {
  padding: 64px 0;
  background-color: var(--primary-color);
}
.m_btn-wrapper {
  width: 327px;
  height: 65px;
  margin-left: auto;
  margin-right: auto;
}

.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  color: var(--white-color);
  background: var(--primary-color3);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.m_btn_more {
  position: relative;
}

.m_btn_more::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-22%) rotate(45deg);
  width: 13px;
  height: 13px;
  border-width: 2px;
  border-style: solid none none solid;
  border-color: var(--white-color);
}
/* infopage */

.m_kv.contact {
  background: url(../img/Contact_kv.jpg) center / cover;
}
.cta {
  background-color: var(--primary-color);
}
.contact_description {
  font-size: 16px;
  color: var(--primary-color4);
  line-height: 200%;
}

@media screen and (min-width: 1080px) {
  .contact_description {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 64px;
  }
}

@media screen and (max-width: 1079px) {
  .br-pc {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .contact_form_list {
    padding-top: 64px;
  }
}

.contact_form_heading {
  padding-top: 40px;
  color: var(--primary-color4);
}

@media screen and (min-width: 1080px) {
  .contact_form_heading:first-of-type {
    padding-top: 0;
  }
}

.contact_form_required {
  color: #d32929;
}

.contact_form_detail {
  padding-top: 16px;
}

.contact_form_input {
  font-size: 16px;
  width: 100%;
  height: 40px;
  padding: 8px;
  border: 2px solid #b3b3b3;
  border-radius: 6px;
  background: var(--white-color);
}

.contact_form_textarea {
  font-size: 16px;
  width: 100%;
  height: 166px;
  padding: 8px;
  border: 2px solid #b3b3b3;
  border-radius: 6px;
  background: var(--white-color);
}

.contact_form_privacy {
  margin-top: 40px;
}

.contact_form_checkbox {
  vertical-align: middle;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--white-color);
  border: 2px solid #b3b3b3;
  appearance: checkbox;
}

input[type="checkbox"]:checked {
  accent-color: var(--primary-color2);
}

.contact_form_privacy-txt {
  font-size: 16px;
  color: var(--primary-color4);
}

.contact_form_btn-wrapper {
  margin-top: 40px;
}
/* newspage */
.m_kv.news {
  background: url(../img/News_kv.jpg) no-repeat center/cover;
}
.news-main {
  background-color: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .news_contents .l_container-lg {
    padding: 0px 156px 0 156px;
  }
}

@media screen and (min-width: 960px) {
  .news_contents .l_contents {
    padding-bottom: 120px;
  }
}

.post {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--primary-color4);
  width: 100%;
}
.post:nth-child(3) {
  padding-bottom: 0;
}
@media screen and (min-width: 1080px) {
  .post {
    max-width: 968px;
    padding-bottom: 128px;
  }
}

.post:last-child {
  border: none;
}

.post:not(:first-child) {
  margin-top: 48px;
}

.post-time {
  font-size: 12px;
  color: var(--primary-color4);
}

.post-title {
  font-weight: bold;
  line-height: 1.5;
  font-size: 24px;
  color: var(--primary-color4);
  margin-top: 8px;
}
@media screen and (min-width: 960px) {
  .post-title {
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .post-title-br {
    display: none;
  }
}

.post-contents {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 1080px) {
  .post-contents {
    margin-top: 64px;
    justify-content: space-between;
    flex-direction: row;
  }
}

.post-thumb {
  height: 194px;
  width: 295px;
  object-fit: cover;
}

.post-txt-box {
  margin-top: 48px;
}
@media screen and (min-width: 1080px) {
  .post-txt-box {
    margin-top: 0;
    margin-left: 64px;
  }
}

.post-txt {
  line-height: 2;
  color: var(--primary-color4);
  text-align-last: left;
}
@media screen and (min-width: 1080px) {
  .post-txt {
    font-size: 20px;
  }
}

.news_btn-box {
  padding: 64px 0;
}
@media screen and (min-width: 960px) {
  .news_btn-box {
    padding-top: 0;
    padding-bottom: 80px;
  }
}
/* js */
/* .js_body.is-active {
  overflow: hidden;
}

.js_opening.is-active {
  visibility: 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: auto;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  background: var(--primary-color3);
}

.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);
  background: var(--primary-color3);
}

.js_success-swiper {
  position: relative;
}

.js_faq_mark.is-open::before {
  opacity: 0;
}

.js_faq-a {
  height: 0;
  opacity: 0;
}

.js_h-slide_trigger {
  overflow: hidden;
}
