@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #000;
  --white-color: #fff;
  --brown-color: #BFB09F;
  --brown-color02: #AA8D75;
  --brown-color03: #692E1F;
}

: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 ---------- */

body {
  color: var(--black-color);
  background-color: var(--brown-color);
  font-size: 16px;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */



/* ---------- 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: 80px 0;
}

@media screen and (min-width: 1080px) {
  .l_contents {
    padding: 160px 0;
  }
}

.l_header {
  height: 72px; 
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
}

@media screen and (min-width: 1080px) {
  .l_header {
    padding: 0 48px;
  }
}

.l_header-logo{
  display: flex;
  align-items: center;
  justify-content:end;
}

.l_header-logo_icon {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

.l_header-logo_link {
  height: 100%;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  white-space: nowrap;
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .l_header-logo_link {
    font-size: 24px;
  }
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brown-color);
  z-index: var(--z-index-header);
}

@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;
  font-weight: bold;
  color: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .l_header-nav_item {
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
  }
}

.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;
  }
}

.l_header-nav_img{
  height: 32px;
  width: 32px;
}

.l_footer {
  padding: 80px 0 16px;
  text-align: center;
  background: var(--brown-color03);
}

.l_footer_logo {
  color: var(--white-color);
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
}

.l_footer_logo_link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l_footer_list {
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .l_footer_list {
    flex-direction: row;
    gap: 48px;
  }
}

.l_footer_item {
  font-size: 16px;
  color: var(--white-color);
}

.l_footer_item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .l_footer_item:not(:first-child) {
    margin-top: 0;
  }
}

.l_footer_link {
  height: 100%;
  display: flex;
  align-items: center;
}

.l_footer_img{
  height: 32px;
  width: 32px;
}

.l_footer-copyright {
  margin-top: 80px;
}

.l_footer-copyright_txt {
  font-size: 12px;
  color: var(--white-color);
}

.l_header-nav_item:hover,
.l_footer_item:hover{
	background-color: white;
	color :black;
}

/* ---------- module ---------- */

.m_hamburger {
  width: 32px;
  height: 24px;
  position: relative;
  z-index: var(--z-index-menu);
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 2px;
  position: absolute;
  background: var(--white-color);
  left: 50%;
  transition: 0.3s;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.m_kv {
  height: 214px; /* 画面いっぱいか聞く */
  position: relative;
}

/* 一応設定してみた */
@media screen and (min-width: 1080px) {
  .m_kv {
    height: 675px;
  }
}

@media screen and (min-width: 1080px) {
  .m_kv-inner {
    position: relative;
    height: 100%;
  }
}

.m_kv-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.m_kv-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .m_kv-title {
    font-size: 48px;
  }
}

@media screen and (min-width: 1080px) {
  .m_kv-title {
    font-size: 72px;
  }
}

.m_section_btn {
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--brown-color03);
  font-size: 12px;
  font-weight: bold;
  overflow: hidden;
}

@media screen and (min-width: 1080px) {
  .m_section_btn{
    font-size: 24px;
  }
}

.m_section_btn-wrap {
  width: 150px;
  height: 30px;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .m_section_btn-wrap {
    width: 300px;
    height: 60px;
    margin: 0 auto;
  }
}

.m_section_btn:hover {
	background-color: bisque;
}

.m_section_title{
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .m_section_title{
    font-size: 32px;
  }
}


/* ---------- .top_kv ---------- */
.top_kv {
  height: 100vh;
  max-height: 675px;
  background: linear-gradient(rgb(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../img/top_kv.png") center/cover;
  position: relative;
}

.top_kv-inner {
  position: relative;
  height: 100%;
  padding-left: 24px;
}

.top_kv_box {
  max-width: 100%;
  position: absolute;
  bottom: 80px;
  transform: translate(0, -50%);
  text-align: left;
}

.top_kv_copy {
  font-size: 24px;
  font-weight: bold;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .top_kv_copy {
    font-size: 42px;
  }
}

@media screen and (min-width: 1200px) {
  .top_kv_copy {
    font-size: 48px;
  }
}

.top_kv_sub-copy {
  margin-top: 16px;
  font-size: 14px;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .top_kv_sub-copy {
    font-size: 24px;
    margin-top: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .top_kv_sub-copy {
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .br-lg{
    display: none;
  }
}

/* ---------- .top_story ---------- */
.top_section_content{
  padding: 48px 0;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_section_content{
    padding: 96px 0;
  }
}

.top_story_img-wrap{
  position: relative;
  width: 100%;
  height: 186px;
}

@media screen and (min-width: 1080px) {
  .top_story_img-wrap{
    height: 672px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}

.top_story_img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.top_story_overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: calc(100% - 48px);
  max-width: 295px;
  height: 138px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  background: rgb(191, 176, 159, 0.8);
}

@media screen and (min-width: 1080px) {
  .top_story_overlay{
    display: none;
  }
}

.top_story_overlay__pc{
  display: none;
}

@media screen and (min-width: 1080px) {
  .top_story_overlay__pc{
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 920px;
    height: 512px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    background: rgb(191, 176, 159, 0.8);
  }
}

.top_story_post-title{
  font-size: 20px;
}

@media screen and (min-width: 1080px) {
  .top_story_post-title{
    font-size: 32px;
    font-weight: bold;
  }
}

.top_story_desc {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}

@media screen and (min-width: 1080px) {
  .top_story_desc {
    display: none;
  }
}

.top_story_desc__pc{
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.top_story_post-txt{
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .top_menu_btn-wrap{
    display: none;
  }
}

.top_menu_btn-wrap__pc{
  margin-top: 40px;
}

/* ---------- .top_menu ---------- */
.top_menu{
  background: var(--brown-color02);
}

@media screen and (min-width: 1080px) {
  .top_menu{
    height: auto;
  }
}

@media screen and (min-width: 1080px) {
  .top_menu-post__coffee{
    position: relative;
    max-width: 100%;
    height: 880px;
  }
}

@media screen and (min-width: 1080px) {
  .top_menu-post__toast{
    position: relative;
    max-width: 100%;
    height: 804px;  /* 740+64した(paddingで94あるからトータル160にしたくて) */
  }
}

.top_menu-post:not(:first-child){
  margin-top: 48px;
}

@media screen and (min-width: 1080px) {
  .top_menu-post:not(:first-child){
    margin-top: 138px;
  }
}

.top_menu_img-wrap{
  width: 100%;
  height: 186px;
}

.top_menu_img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  object-position: 0 30%;
}

@media screen and (min-width: 1080px) {
  .top_menu_img__coffee{
    position: absolute;
    top: 80px;
    right: 0;
    z-index: var(--z-index-modal);
    width: 600px;
    height: auto;
  }
}

@media screen and (min-width: 1080px) {
  .top_menu_img__toast{
    position: absolute;
    top: 230px;
    left: 14px;
    z-index: var(--z-index-modal);
    width: 680px;
    height: auto;
  }
}

.top_menu_post-title__point{
  font-size: 16px;
}

@media screen and (min-width: 1080px) {
  .top_menu_post-title__point{
    font-size: 32px;
    font-weight: bold;
  }
}

.top_menu_post-title{
  font-size: 24px;
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .top_menu_post-title{
    font-size: 48px;
    font-weight: bold;
  }
}

@media screen and (min-width: 1080px) {
  .top_menu_post-txt{
    font-size: 32px;
    line-height: 1.3;
  }
}

.top_menu_desc {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_menu_desc {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    width: 760px;
    height: 565px;
    background: var(--brown-color);
    padding: 120px 96px;
    position: absolute;
  }
}

@media screen and (min-width: 1080px) {
  .top_menu_desc__coffee{
    top: 0;
    left: 0;
    z-index: var(--z-index-menu);
  }
}

@media screen and (min-width: 1080px) {
  .top_menu_desc__toast{
    top: 0;
    right: -40px;
    z-index: var(--z-index-menu);
    align-items: flex-end;
  }
}


@media screen and (min-width: 1080px) {
  .top_menu_frame__cofee{
    border: 2px solid var(--brown-color03);
    position: absolute;
    z-index: var(--z-index-default);
    width: calc( 100% - 64px);
    height: 664px;
    top: 40px;
    left: 40px;
    z-index: var(--z-index-default);
  }
}

@media screen and (min-width: 1080px) {
  .top_menu_frame__toast{
    border: 2px solid var(--brown-color03);
    position: absolute;
    z-index: var(--z-index-default);
    width: calc( 100% - 78px);
    height: 660px;
    top: 40px;
    right: 0;
    z-index: var(--z-index-default);
  }
}

.top_menu_desc p:nth-of-type(1){
  margin-top: 8px;
}

@media screen and (min-width: 1080px) {
  .top_menu_desc p:nth-of-type(1){
    margin-top: 0;
  }
}

.br-sm{
  display: none;
}

@media screen and (min-width: 1080px) {
  .br-sm{
  display: block;
  }
}

/* ---------- .top_info ---------- */
.top_info_table {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-collapse: collapse;
}

@media screen and (min-width: 1080px) {
  .top_info_table {
    flex-direction: row;
    justify-content: center;
  }
}

.top_info_tr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 1080px) {
  .top_info_tr{
    flex-direction: row;
    justify-content: left;
  }
}

.top_info_tr:not(:first-child){
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .top_info_tr:not(:first-child){
    margin-top: 48px;
  }
}

.top_info_th{
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .top_info_th{
    font-size: 32px;
    width: 291px;
  }
}

.top_info_td {
  padding-top: 8px;
  font-size: 20px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top_info_td {
    padding-top: 0;
    font-size: 32px;
    text-align: left;
  }
}

/* ---------- .top_contact---------- */
.top_contact{
  background: var(--brown-color02);
}

.top_contact_img-wrap{
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 279px;
}

@media screen and (min-width: 1080px) {
  .top_contact_img-wrap{
    height: 646px;
  }
}

.top_contact_img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_contact_guid{
  font-size: 20px;
}

@media screen and (min-width: 1080px) {
  .top_contact_guid{
    font-size: 32px;
  }
}

.top_contact_btn-wrap{
  margin: 24px auto 0;
}

/* ---------- story ---------- */
.story_kv{
  background: linear-gradient(rgb(0, 0, 0, 0.2),rgb(0, 0, 0, 0.2)),
              url("../img/story_kv.png") top/cover;
}

.story_contents{
  height: auto;
}

@media screen and (min-width: 1080px) {
  .story_container{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 64px;
    max-width: 100%;
    padding: 0 80px;
  }
}

@media screen and (min-width: 1080px) {
  .story_flex_item{
    width: 496px;
    max-width: 574px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 96px;
  }
}

.story_title{
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .story_title{
    font-size: 48px;
  }
}

.story_txt{
  font-size: 14px;
  margin: 32px 24px;
  line-height: 20px;
  letter-spacing: 1px;
}

@media screen and (min-width: 1080px) {
  .story_txt{
    font-size: 32px;
    line-height: 1.8;
    margin: 0;
  }
}

.story_contents:nth-child(2){
  background: var(--brown-color02);
}

.story_txt__beans{
  margin: 48px 24px;
}

@media screen and (min-width: 1080px) {
  .story_txt__beans{
    margin: 0;
  }
}

@media screen and (min-width: 1080px) {
  .story_flex_wrap{
    margin-top: 112px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
  }
}

.story_img-wrap__coffee{
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .story_img-wrap__coffee{
    flex: 1;
  }
}

.story_img-wrap__beans {
  display: flex;
  height: 209.83px;
  object-fit: cover;
  overflow: hidden;
}

.story_img {
  width: 100%;
  object-fit: cover;
}

.story_img_beans{
  width: 60%;
}

.story_img_groundbeans{
  width: 40%;
}

@media screen and (min-width: 1080px) {
  .story_img-wrap__beans {
    display: flex;
    height: 675px;
    gap:48px;
    margin-top: 48px;
    width: 100%;
    justify-content: center;
    overflow: hidden;
    object-fit: cover;
  }
}

.story_sub-title{
  font-size: 18px;
  text-align: center;
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .story_sub-title{
    font-size: 48px;
    margin-top: 80px;
  }
}

.story_sentence_wrap{
  height: 185px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .story_sentence_wrap{
    height: 479px;
    margin-top: 48px;
  }
}

.story_sentence{
  font-size: 14px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .story_sentence{
    font-size: 36px;
  }
}

.swiper{
  width: 100%;
  margin-top: 80px;
}

.story_slide_img{
  max-width: 100%;
  object-fit: cover;
}


/* ---------- menu ---------- */
.menu_kv {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
  url("../img/menu_image01.png") center/cover;
}

.menu_main_box {
  width: 100%;
  height: 20px;
  background-color: var(--brown-color02);
}
@media screen and (min-width: 780px) {
  .menu_main_box {
    height: 87px;
  }
}

@media screen and (min-width: 500px) {
  .menu_main_container {
    padding: 0 32px;
  }
}
@media screen and (min-width: 600px) {
  .menu_main_container {
    padding: 0 48px;
  }
}
@media screen and (min-width: 680px) {
  .menu_main_container {
    padding: 0 72px;
  }
}
@media screen and (min-width: 780px) {
  .menu_main_container {
    padding: 0 144px;
  }
}


.menu_section_title_block {
  display: flex;
  justify-content: center;
}

.menu_section_title_sub {
  font-size: 24px;
  display: inline-block;
  text-align: center;
  border-bottom: solid 2px var(--brown-color02);
}
@media screen and (min-width: 1080px) {
  .menu_section_title_sub {
    font-size: 64px;
  }
}

@media screen and (min-width: 1080px) {
  .menu_container_group {
    width: 45%;
  }
}

@media screen and (min-width: 1080px) {
  .menu_container {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
  }
}

.menu_wrap {
  margin-top: 24px;
}

.menu_wrap:not(:first-child) {
  margin-top: 32px;
}

.menu_title {
  font-size: 20px;
  font-weight: medium;
}
@media screen and (min-width: 1080px) {
  .menu_title {
    font-size: 36px;
  }
}

.menu_list {
  margin-top: 8px;
}
@media screen and (min-width: 1080px) {
  .menu_list {
    margin-top: 48px;
  }
}

.menu_list_item {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
@media screen and (min-width: 1080px) {
  .menu_list_item {
    margin-top: 40px;
  }
}

.menu_list_item_name {
  display: inline-block;
  width: 82%;
  border-bottom: dashed 1px var(--black-color);
  font-weight: normal;
}

@media screen and (min-width: 1080px) {
  .menu_list_item_name {
    /* width: 343px; */
    font-size: 20px;
  }
}

.menu_list_item_price {
  display: inline-block;
}
@media screen and (min-width: 1080px) {
  .menu_list_item_price {
    font-size: 20px;
  }
}

.menu_img-wrap {
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .menu_img-wrap {
    margin-top: 80px;
  }
}

.menu_img {
  width: 72%;
  max-width: 675px;
  height: auto;
}

.menu_img_hover{
  transition-duration: 0.5s;
}

.menu_img_hover:hover{
  transition-duration: 0.5s;
  opacity: 0.6;
}

.menu_thumb_wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1080px) {
  .menu_thumb_wrapper {
    margin-top: 80px;
  }
}

.menu_thumb-wrap {
width: calc((100% - 32px)/ 3);
height: auto;
}

@media screen and (min-width: 1080px) {
  .menu_thumb-wrap {
    width: calc((100% - 102px))/3;
    max-width: 300px;
  }
}

.menu_thumb {
  width: 100%;
  height: 100%;
}

.menu_wrap {
  margin-top: 40px;
}

.menu_title-box {
  position: relative;
  margin-top: 40px;
  /* display: inline-block; */
}
@media screen and (min-width: 1080px) {
  .menu_title-box {
    margin-top: 68px;
  }
}

.menu_title_small {
  letter-spacing: normal;
  margin-left: 22%;
  margin-top: 40px;
}
@media screen and (min-width: 632px) {
  .menu_title_small {
    margin-left: 152px;
    margin-top: 68px;
  }
}

.menu_title_small::before {
  content: '';
  width: calc(100% - 80%);
  max-width: 120px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--brown-color02);
}

.menu_title_time {
  font-size: 14px;
  font-weight: medium;
}
@media screen and (min-width: 1080px) {
  .menu_title_time {
    font-size: 20px;
  }
}

.menu_desc_box {
  margin-top: 18px;
}

.menu_desc_txt {
  font-size: 14px;
  letter-spacing: normal;
}
@media screen and (min-width: 1080px) {
  .menu_desc_txt {
    font-size: 20px;
    margin-left: 152px;
    margin-top: 36px;
  }
}

.menu_desc_price {
  font-size: 18px;
  line-height: 1;
  /* text-align: center; */
  display: flex;
  align-items: end;
  justify-content: space-between;
  letter-spacing: normal;
  padding: 0 16px;
  margin: 8px 0 auto;
}

@media screen and (min-width: 1080px) {
  .menu_desc_price {
    font-size: 32px;
    margin-top: 20px;
  }
}

.menu_desc_attention {
  font-size: 12px;
  letter-spacing: normal;
}
@media screen and (min-width: 1080px) {
  .menu_desc_attention {
    margin-left: 132px;
    font-size: 20px;
  }
}

.menu_photo {
  margin-top: 24px;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1080px) {
  .menu_photo {
    margin-top: 64px;
  }
}

.menu_attention {
  font-size: 10px;
  display: flex;
  justify-content: end;
  margin-top: 32px;
}

@media screen and (min-width: 1080px) {
  .menu_attention {
    font-size: 16px;
    margin-top: 80px;
  }
}

@media screen and (min-width: 1080px) {
  .menu_list_other {
    column-count: 2;
    gap: 10%;
  }
}

@media screen and (min-width: 1080px) {
  .menu_list_item_other:nth-child(1)  {
    margin-top: 0;
  }
}

.m_cta {
  background: url("../img/menu_message_image.png") center/cover;
  height: 449px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.m_cta_txt {
  font-size: 14px;
  letter-spacing: normal;
  color: var(--white-color);
  text-align: center;
}
@media screen and (min-width: 1080px) {
  .m_cta_txt {
    font-size: 20px;
  }
}

.m_cta_txt:not(:first-child) {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .u_break {
    display: none;
  }
}


/* ---------- info ---------- */
.information_kv{
  background: linear-gradient(rgb(0, 0, 0, 0.2),rgb(0, 0, 0, 0.2)),
              url("../img/info_kv.png") top/cover;
}

@media screen and (min-width: 1080px) {
  .info_section{
    display: flex;
    flex-direction: row-reverse;
    text-align: center;
    margin: 0 auto;
    justify-content: space-between;
    gap: 96px;
    width: calc(100% - 192px);
  }
}

.info_img-wrapper{
  height: 180px;
  width: 180px;
  padding-top: 80px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (min-width: 1080px) {
  .info_img-wrapper{
    height: 204px;
    width: 206px;
    padding-top: 0;
  }
}

.info_img{
  width: 100%;
}

.info_ditail{
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-top: 160px;
}

@media screen and (min-width: 1080px) {
  .info_ditail{
    width: 448px;
    height: auto;
    margin: 0;
    margin-top: 48px;
  }
}

.info_section{
  /* height: 1315px; */
  width: 100%;
  height: auto;
}


.info_ditail_box{
  display: flex;
  height: 52px;
  width: 100%;
  border-top:  2px solid var(--brown-color02);
  display: flex;
  margin: 0 auto;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .info_ditail_box{
    display: flex;
    height: 61px;
    width: 100%;
    border-top:  2px solid var(--brown-color02);
    display: flex;
    margin: 0 auto;
    align-items: left;
    padding: 16px 0;
  }
}

.info_ditail_box2{
  display: flex;
  height: 72px;
  width: 100%;
  border-top:  2px solid var(--brown-color02);
  margin: 0 auto;
  justify-content: left;
  align-items: flex-start;
  padding: 16px 0;
}

@media screen and (min-width: 1080px) {
  .info_ditail_box2{
    display: flex;
    height: auto;
    width: 100%;
    border-top:  2px solid var(--brown-color02);
    margin: 0 auto;
    align-items: left;
  }
}

.info_txt{
  /* position: relative; */
  font-size: 14px;
  font-weight: 500;
  /* padding-left: 24px;
  padding-top: 16px;
  padding-bottom: 16px; */
  letter-spacing: 0px;
  /* height: 240x; */
  width: calc(100% - 86px);
}

@media screen and (min-width: 1080px) {
  .info_txt{
    /* position: relative; */
    font-size: 20px;
    font-weight: 500;
    /* padding-left: 24px;
    padding-top: 16px;
    padding-bottom: 16px; */
    letter-spacing: 0px;
    line-height: 29px;
    /* height: 24px; */
    text-align: left;
    height: 100%;
    width: calc(100% - 120px);
  }
}

.info_ttl{
  font-size: 14px;
  font-weight: 500;
  width: 86px;
}

@media screen and (min-width: 1080px) {
  .info_ttl{
    font-size: 20px;
    font-weight: 500;
    width: 120px;
    text-align: left;
  }
}

/* @media screen and (min-width: 1080px) {
  .info_ttl{
    font-size: 20px;
    font-weight: 500;
    width: 100px; 
  }
} */

.info_border{
  background-color:  var(--brown-color02);
  height: 2px;
  border: none;
  margin: 0;
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .info_border{
    width: 100%;
    background-color:  var(--brown-color02);
    height: 2px;
    border: none;
    margin: 0;
  }
}

/* .info_map_img{
  height: 457px;
  width: 343px;
  margin-top: 80px;
}

@media screen and (min-width: 1080px) {
  .info_map_img{
    height: 800px;
    width: 600px;
    margin-top: 240px;
  }
} */

.info_map_box{
  text-align: center;
  margin-top: 80px;
  width: 100%;
  height: 457px;
}

.google_map{
  height: auto;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1080px) {
  .info_map_box{
    margin-top: 243px;
    width: 100%;
    height: 800px;
    margin-bottom: 244px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.info_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 30px;
  margin: 48px auto 80px;
  background: var(--brown-color03);
  color: var(--white-color);
  border-radius: 100vh;
  /* transition: 0.5s; */
  /* margin-top: 48px; */
  font-size: 12px;
  font-weight: bold;
  overflow: hidden;
}

.info_btn2{
  display: none;
}

@media screen and (min-width: 1080px) {
  .info_btn2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 60px;
    margin: 48px auto 0;
    background: var(--brown-color03);
    color: var(--white-color);
    border-radius: 100vh;
    /* transition: 0.5s; */
    /* margin-top: 48px; */
    font-size: 24px;
    font-weight: bold;
    overflow: hidden;
  }
}

@media screen and (min-width: 1080px) {
  .info_btn{
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  .info_con{
    width: auto;
    margin: 240px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}



/* ---------- contact ---------- */
.contact_kv{
  background: linear-gradient(rgb(0, 0, 0, 0.2),rgb(0, 0, 0, 0.2)),
              url("../img/contact_kv.png") top/cover;
}

.contact_form {
  padding: 80px 0;
}
@media screen and (min-width: 1080px) {
  .contact_form  {
    padding: 240px 0;
  }
}

.contact_form_inner {
  padding: 0 16px;
}
@media screen and (min-width: 500px) {
  .contact_form_inner {
    padding: 0 32px;
  }
}
@media screen and (min-width: 600px) {
  .contact_form_inner {
    padding: 0 48px;
  }
}
@media screen and (min-width: 680px) {
  .contact_form_inner {
    padding: 0 72px;
  }
}
@media screen and (min-width: 780px) {
  .contact_form_inner {
    padding: 0 144px;
  }
}
@media screen and (min-width: 1080px) {
  .contact_form_innerl {
    padding: 0 247px;
  }
}

/* チェックボックスのデフォルトのスタイルをリセット */
input[type="checkbox"] {
  appearance: auto;

  /* チェックボックスのサイズや位置を調整 */
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

/* チェックボックスにチェックが入った時のスタイル */
input[type="checkbox"]:checked {
  background-color: #4CAF50;
  border: none;
}

.contact_p_txt{
  font-size: 14px;
  font-weight: 400;
  margin-left: 8px;
}
@media screen and (min-width: 1080px) {
  .contact_p_txt {
    font-size: 20px;
    margin-left: 16px;
  }
}

.contact_ch {
  display: flex;
  align-items: center;
}

.contact_txt_color{
  color: var(--brown-color03);
}

.contact_form_Label:not(:first-child) {
  margin-top: 24px;
}
@media screen and (min-width: 1080px) {
  .contact_form_Label:not(:first-child) {
    margin-top: 48px;
  }
}

.contact_form_Label {
  width: 100%;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 16px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .contact_form_Label {
    font-size: 20px;
  }
}

.contact_Form_Label-Required {
  border-radius: 100px;
  width: 51px;
  height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brown-color02);
  color: var(--white-color);
  font-size: 10px;
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translate(-60%, -50%);
}
@media screen and (min-width: 680px) {
  .contact_Form_Label-Required {
    left: 30%;
    top: 50%;
    transform: translate(-30%, -50%);
  }
}
@media screen and (min-width: 1080px) {
  .contact_Form_Label-Required {
    font-size: 14px;
    width: 60px;
    height: 32px;
    left: 35%;
    top: 50%;
    transform: translate(-35%, -50%);
  }
}
@media screen and (min-width: 1360px) {
  .contact_Form_Label-Required {
    left: 25%;
    top: 50%;
    transform: translate(-25%,-50%);
  }
}


.contact_Form-Item-Input {
  border: 1px solid var(--brown-color02);
  border-radius: 5px;
  height: 34px;
  width: 100%;
  padding: 10px 0 10px 8px;
  background: var(--white-color);
  font-size: 10px;
  margin-top: 8px;
}
@media screen and (min-width: 1080px) {
  .contact_Form-Item-Input {
    height: 64px;
    padding: 16px 0 16px 21px;
    font-size: 16px;
    margin-top: 24px;
  }
}

.contact_Form-Item-Input2 {
  border: 1px solid var(--brown-color02);
  border-radius: 5px;
  height: 136px;
  margin-top: 8px;
  width: 100%;
  background: var(--white-color);
  font-size: 10px;
}
@media screen and (min-width: 1080px) {
  .contact_Form-Item-Input2 {
    height: 192px;
    margin-top: 24px;
    font-size: 16px;
  }
}

.contact_ch{
  display: flex;
  align-items: center;
  margin-top: 56px;
}
@media screen and (min-width: 1080px) {
  .contact_ch {
    margin-top: 96px;
  }
}

.contact_btn_0{
    font-size: 12px;
    font-weight: bold;
    color: var(--white-color);
  }
@media screen and (min-width: 1080px) {
  .contact_btn_0 {
    font-size: 24px;
  }
}

.contact_btn_wrapper{
  margin: 56px auto 0;
  width: 150px;
  height: 30px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-color03);
}
@media screen and (min-width: 1080px) {
  .contact_btn_wrapper {
    margin: 96px auto 0;
    width: 300px;
    height: 60px;
  }
}



/* ---------- js ---------- */

.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);
  background: var(--black-color);
}

.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(--black-color);
}

.no-scroll {
  overflow: hidden;
}



.scroll-space{
  box-sizing: border-box;
  /* color: #fff; */
  overflow: hidden;
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
} 

.fadein-left{
  transform: translate(-16px, 0);
}

@media screen and (min-width: 1080px) {
  .fadein-left{
    transform: translate(-30px, 0);
  }
}

.fadein-right{
  transform: translate(16px, 0);
}

@media screen and (min-width: 1080px) {
  .fadein-right{
    transform: translate(30px, 0);
  }
}

.fadein-up{
  transform: translate(0, -30px);
}

.fadein-bottom{
  transform: translate(0, 30px);
}

.scrollin{
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}


/* cf7 style */
.wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item:not(:first-child) {
  margin-left: 16px;
}

.wpcf7-list-item-label {
  font-weight: bold;
  margin-left: 8px;
}

input[type="radio"] {
  appearance: button;
}

input[type="checkbox"] {
  appearance: checkbox;
}

div.wpcf7 .wpcf7-spinner {
    display: none !important;
}