@charset "utf-8";
/*
-----------------------------------------------
▼基本デザイン 2025.6
----------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-style: normal;
  word-break: normal;
  word-wrap: break-word;
}
html {
  scroll-padding-top: 130px;
  font-size: 62.5%;
  overflow: auto;
}
body {
  font-size: 1.5rem;
  overflow: hidden;
  font-feature-settings: "palt";
}
body {
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  color: #000;
}
small {
  font-size: 80%;
}
article, aside, figure, footer, header, main, menu, nav, section {
  display: block;
}
audio, canvas, video {
  display: inline-block;
}
img {
  vertical-align: bottom;
}
input, select {
  font-size: 100%;
  vertical-align: middle;
}
ul, ol {
  list-style-type: none;
}
h1, h2, h3, h4, h5, h6, strong {
  -webkit-font-smoothing: antialiased;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: underline;
}
a img {
  transition: opacity 0.5s ease-in-out;
}
a:hover img {
  opacity: 0.8;
}
.pconly {
  display: block;
}
@media screen and (max-width: 768px) {
  .pconly {
    display: none;
  }
}
.sponly {
  display: none;
}
@media screen and (max-width: 768px) {
  .sponly {
    display: block;
  }
}
.tac-all {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
/*
-----------------------------------------------
flex
----------------------------------------------- */
.container01 {
  display: flex;
  flex-wrap: wrap;
}
.container02 {
  display: flex;
  flex-wrap: nowrap;
}
.container03 {
  display: flex;
  flex-wrap: wrap-reverse;
}
.al-item01 {
  align-items: flex-end
}
.c-type01 {
  justify-content: space-between;
}
.c-type02 {
  justify-content: space-around;
}
.c-type03 {
  justify-content: flex-start;
}
.c-type04 {
  justify-content: center;
}
.c-type05 {
  justify-content: flex-end;
}
.ai-01 {
  align-items: flex-start;
}
.ai-02 {
  align-items: flex-end;
}
.ai-03 {
  align-items: center;
}
.ai-04 {
  align-items: baseline;
}
.ai-04 {
  align-items: stretch;
}
/*
-----------------------------------------------
▼オープニング
----------------------------------------------- */
.loading {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  background: #f2e7d3;
  height: 100vh;
}
.loading div {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
@media screen and (max-width: 768px) {
  .loading div {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .loading div {
    width: 75vw;
  }
}
.loading p {
  animation: open .8s linear;
}
@keyframes open {
  0% {
    opacity: 0;
    transform: scaleY(2) scaleX(2);
  }
  70% {
    opacity: 1;
    transform: scaleY(1) scaleX(1);
  }
}
/*
-----------------------------------------------
▼右固定ボタン
----------------------------------------------- */
.fixed_btn {
  writing-mode: vertical-rl;
  position: fixed;
  top: 140px;
  right: 0;
  font-weight: 700;
  font-size: 23px;
  z-index: 10;
}
.fixed_btn a {
  display: block;
  color: #fff;
  border-radius: 15px 0 0 15px;
  background: #00a63c;
  padding: 15px 12px 20px 12px;
}
.fixed_btn a:before {
  content: url(../img/present_ic01.png);
  margin-bottom: 7px;
}
.fixed_btn a:hover {
  text-decoration: none;
}
@media screen and (max-width: 820px) {
  .fixed_btn {
    font-size: 16px;
    z-index: 10;
  }
  .fixed_btn a {
    padding: 6px 4px 15px 4px;
  }
}
@media screen and (max-width: 768px) {
  .fixed_btn a:before {
    content: url(../img/sp_ic_present01.png);
  }
  .fixed_btn {
    top: 100px;
    font-size: 13px;
    z-index: 10;
  }
  .fixed_btn a {
    padding: 6px 4px 15px 4px;
  }
}
/*
-----------------------------------------------
▼全体
----------------------------------------------- */
.mx-img {
  width: auto;
  height: auto;
  max-width: 100% !important;
}
.in-box01 {
  padding-left: 0;
  padding-right: 0;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 820px) {
  .in-box01 {
    width: 100%;
    padding-left: 15%;
    padding-right: 15%;
  }
}
@media screen and (max-width: 768px) {
  .in-box01 {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
/*
-----------------------------------------------
▼ヘッダー
----------------------------------------------- */
header {
  background: #5b3f3d;
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 94px;
  top: 0;
  /* display: none; */
}
header h1 {
  text-align: center;
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  header h1 {
    width: 60vw;
    margin-left: auto;
    margin-right: auto;
    padding-top: 15px;
  }
}
@media screen and (max-width: 430px) {
  header {
    height: 17vw;
  }
  header h1 {
    padding-top: 0;
  }
}
@media screen and (max-width: 400px) {
  header {
    height: 18vw;
  }
}
@media screen and (max-width: 372px) {
  header {
    height: 70px;
  }
}
/*
-----------------------------------------------
▼メイン
----------------------------------------------- */
main {
  background: #f2e7d3;
  padding-top: 105px;
}
@media screen and (max-width: 430px) {
  main {
    padding-top: 19vw;
  }
}
@media screen and (max-width: 372px) {
  main {
    padding-top: 74px;
  }
}
#main_img {
  position: relative;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  #main_img {
    max-width: 84vw;
  }
}
@media screen and (max-width: 767px) {
  #main_img {
    max-width: 100%;
    padding-bottom: 0;
  }
}
/*
-----------------------------------------------
▼参加方法
----------------------------------------------- */
.entry_wrap {
  background-image: url(../img/bg01.png);
  background-repeat: repeat;
  padding-top: 60px;
}
.entry_wrap h2 {
  margin-bottom: 40px;
}
.entry_in {
  width: 1100px;
  padding-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.entry_box {
  width: 48%;
  background: #f2e7d3;
  padding: 15px 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 10px;
  margin-bottom: 8%;
}
.entry_txt .p01 {
  margin-top: -70px;
  margin-bottom: 10px;
}
.p-top01 {
  margin-top: 30px;
}
.entry_txt .p02 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}
.btn01 {
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  background: #00a63c;
  height: 48px;
  line-height: 44px;
  padding: 0 30px;
  border-radius: 26px;
  border: solid 2px #00a63c;
  cursor: pointer;
  letter-spacing: 0.1em;
}
.btn01:hover {
  background: #fff;
  color: #00a63c;
  border: solid 2px #00a63c;
  text-decoration: none;
  opacity: 1 !important;
}
.entry_img img, .entry_img02 img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.entry_img02 {
  margin-top: -30px;
}
.txt_w01 {
  width: 52%;
}
.txt_w02 {
  width: 62%;
}
.txt_w03 {
  width: 48%;
}
.img_w01 {
  width: 48%;
}
.img_w02 {
  width: 38%;
}
.img_w03 {
  width: 51%;
}
.present_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 1100px;
  margin: 0 auto;
}
.present_img {
  width: 30%;
}
.present_img img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.present_naiyo {
  color: #fff;
  width: 70%;
}
.present_naiyo h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
}
.present_naiyo h3 span {
  color: #ffff66;
  margin-left: 5px;
  margin-right: 5px;
}
.present_naiyo h3 span strong {
  font-size: 58px;
}
.pont_box {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
}
.point {
  display: flex;
  flex-wrap: wrap;
  width: 8em;
  background: #00a55a;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  padding: 0.2em 0;
}
.point span {
  margin-right: 5px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 40px;
}
.point_p {
  margin-left: 10px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.notes {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
.notes p {
  color: #fff;
}
.notes a {
  border: solid 2px #fff;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 12em;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  background: #4a2211;
  text-align: center;
  border-radius: 30px;
  padding: 0.5em 0;
  margin-bottom: 8px;
}
.notes a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1160px) {
  .entry_txt .p02 {
    font-size: 2.2vw;
  }
  .entry_in {
    width: 85vw;
  }
  .entry_box {
    width: 49%;
    padding: 1.5vw 1.8vw;
    margin-bottom: 8vw;
  }
  .btn01 {
    font-size: 1.5vw;
    padding: 0 1.5vw;
    height: 3.8vw;
    line-height: 3.3vw;
  }
  .present_wrap {
    width: 85vw;
    align-items: flex-end;
  }
  .present_img {
    width: 30%;
  }
  .present_naiyo {
    width: 70%;
  }
  .entry_wrap h2 {
    width: 70vw;
  }
  .present_naiyo h3 {
    font-size: 3.0vw;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .present_naiyo h3 span {
    color: #ffff66;
    margin-left: 5px;
    margin-right: 5px;
  }
  .present_naiyo h3 span strong {
    font-size: 4.0vw;
  }
  .txt_w01 {
    width: 21vw;
  }
  .txt_w02 {
    width: 22vw;
  }
  .txt_w03 {
    width: 18vw;
  }
  .img_w01 {
    width: 15vw;
  }
  .img_w02 {
    width: 14vw;
  }
  .img_w03 {
    width: 18vw;
  }
  .entry_txt .p01 {
    margin-top: -7vw;
    margin-bottom: 1vw;
    width: 12vw;
  }
  .point {
    width: 7.5em;
    font-size: 2.0vw;
    line-height: 1.1;
    padding: 0.1vw 0;
  }
  .point span {
    margin-right: 5px;
    font-size: 2.6vw;
  }
  .point_p {
    margin-left: 10px;
    font-size: 2.8vw;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .cap_small {
    padding-bottom: 10px;
  }
  .notes a {
    width: 12em;
    font-size: 2.0vw;
    border-radius: 40px;
    padding: 0.5em 0;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .entry_wrap {
    margin-top: 3vw;
    padding-top: 8vw;
    padding-bottom: 0;
  }
  .entry_wrap h2 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    width: 65vw;
  }
  .entry_in {
    width: 85vw;
  }
  .entry_box {
    width: 100%;
    padding: 3.5vw;
    margin-bottom: 10vw;
  }
  .txt_w01 {
    width: 42vw;
  }
  .txt_w02 {
    width: 44vw;
  }
  .txt_w03 {
    width: 35vw;
  }
  .img_w01 {
    width: 30vw;
  }
  .img_w02 {
    width: 28vw;
  }
  .img_w03 {
    width: 39vw;
  }
  .entry_txt .p01 {
    margin-top: -10vw;
    margin-bottom: 1vw;
    width: 18vw;
  }
  .entry_txt .p02 {
    font-size: 4.3vw;
  }
  .btn01 {
    font-size: 3.2vw;
    padding: 0 2vw;
    height: 8vw;
    line-height: 7.4vw;
  }
  .p-top01 {
    margin-top: 2vw;
  }
  .notes {
    width: 60vw;
    margin-bottom: 8vw;
  }
  .notes p {
    font-size: 3.2vw;
  }
  .notes a {
    font-size: 3.4vw;
    border-radius: 40px;
  }
  .present_wrap {
    flex-wrap: wrap-reverse;
  }
  .present_img {
    width: 50vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .cap_small {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0 !important;
  }
  .present_naiyo {
    width: 100%;
  }
  .present_naiyo h3 {
    font-size: 5.7vw;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .present_naiyo h3 span strong {
    font-size: 8.6vw;
  }
  .present_naiyo h3 br {
    display: none;
  }
  .point {
    width: 7.0em;
    font-size: 3.8vw;
    line-height: 1.1;
    padding: 0.2vw 0;
  }
  .point span {
    margin-right: 5px;
    font-size: 5.0vw;
  }
  .point_p {
    margin-left: 5px;
    font-size: 5.2vw;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}



/*
-----------------------------------------------
▼喫茶店マップ
----------------------------------------------- */
.shop_map_wrap{
padding-top:50px;
padding-bottom:100px;
background:#fff7ee;
}

.h-type01{
text-align:center;
font-size:48px;
color:#4a2211;
}

.h-type01 span{
letter-spacing:0.06em;
 padding-left:10px;
 padding-right:10px;
 background: linear-gradient(transparent 66%, #f1d8bb 0);
}

@media screen and (max-width: 820px) {
.h-type01{
font-size:36px;
}
}

@media screen and (max-width: 767px) {
.h-type01{
font-size:24px;
}

.shop_map_wrap{
padding-top:20px;
padding-bottom:100px;
}
}

.shop_map_wrap .shop_map_wrap_in{
width: 1100px;
margin: auto;
padding-top: 30px;
}
@media screen and (max-width: 1140px) {
.shop_map_wrap .shop_map_wrap_in{
width: 94%;
}
}
.shop_map_wrap .shop_map_wrap_in .g_map{
margin-bottom: 50px;
}
.shop_map_wrap .shop_map_wrap_in .g_map iframe {
    width: 100%;
    height: 600px;
}
.tab_area {
background-color:#F9ECDD;
border-radius: 10px;
padding-top: 30px;
padding-bottom: 30px;
}
@media screen and (max-width: 960px) {
.tab_area {
padding-top: 20px;
padding-bottom: 20px;
}
}
.shop_map_wrap .shop_map_wrap_in h3{
font-size: 30px;
text-align: center;
color: #492210;
margin-bottom: 30px;
font-family: "Rounded Mplus 1c", "Kosugi Maru", "YuGothic", "游ゴシック", "Yu Gothic" ,  "Meiryo", "メイリオ" ,sans-serif ;
}
.tab-container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 100%;
margin-bottom: 40px;
padding-left: 30px;
padding-right: 30px;
}
@media screen and (max-width: 960px) {
.tab-container {
display: block;
flex-wrap: wrap;
margin-bottom: 20px;
padding-left: 15px;
padding-right: 15px;
}
}
.all_area {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
width: 124px;
margin-right: 11px;
background-color: #F80000;
border-radius: 10px;
}
@media screen and (max-width: 960px) {
.all_area {
width: 100%;
margin-bottom: 30px;
}
}
.sub_area {
display: flex;
justify-content: space-between;
align-content: center;
align-items: center;
flex-wrap: wrap;
width: 86%;
}
@media screen and (max-width: 1140px) {
.sub_area {
width: 83%;
}
}
@media screen and (max-width: 960px) {
.sub_area {
width: 100%;
}
}
.sub_area ul{
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
width: 100%;
}
@media screen and (max-width: 960px) {
.sub_area ul{
justify-content: space-between;
}
}
.sub_area ul li{
width: 33%;
padding:0px 15px;
font-size: 1.3rem;
}
.sub_area ul li:nth-child(1),
.sub_area ul li:nth-child(2),
.sub_area ul li:nth-child(3)
{
padding-bottom: 15px;
}
.sub_area ul li:nth-child(4),
.sub_area ul li:nth-child(5),
.sub_area ul li:nth-child(6),
.sub_area ul li:nth-child(7),
.sub_area ul li:nth-child(8){
padding-top: 15px;
}

@media screen and (max-width: 960px) {
.sub_area ul li{
width: 48%;
padding:0px 0px;
margin-bottom: 20px;
}
.sub_area ul li:nth-child(1),
.sub_area ul li:nth-child(2),
.sub_area ul li:nth-child(3),
.sub_area ul li:nth-child(4),
.sub_area ul li:nth-child(5),
.sub_area ul li:nth-child(6),
.sub_area ul li:nth-child(7),
.sub_area ul li:nth-child(8){
padding-top: 0px;
padding-bottom: 0px;
}
}
.tab_all {
width: 124px;
height: 100%;
display: flex;
justify-content: center;
align-content: center;
align-items: center;
color: #FFFFFF;
}
@media screen and (max-width: 960px) {
.tab_all {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-content: stretch;
align-items: stretch;
padding: 15px 0px;
}
}
.tab_sub {
display: flex;
align-content: center;
align-items: center;
border-radius: 100px;
width: 100%;
height: 40px;
}
@media screen and (max-width: 1140px) {
.tab_sub {
width: 100%;
}
}
.tab1 {
background-color: #76B4C4;
}
.tab2 {
background-color: #AB7A97;
}
.tab3 {
background-color: #A3BA10;
}
.tab4 {
background-color: #E2A441;
}
.tab5 {
background-color: #D87B6A;
}
.tab6 {
background-color: #E2A441;
}
.tab7 {
background-color: #D87B6A;
}
.tab {
font-weight: 500;
opacity: 0.5;
cursor: pointer;
color: #FFFFFF;
display: flex;
justify-content: center;
align-content: center;
align-items: center;
}

.tab.active {
  opacity: 1;
}

.tabcontents {
  display: none;
  padding-left: 30px;
}
.tabcontents.show {
  display: block;
}
.tabcontents ul {
    display: flex;
}
.tabcontents ul li {
    margin-bottom: 20px;
}

/*------------------------------- チェックボックス01 */
input[type=checkbox] {
    display: none;
}
.checkbox01 {
cursor: pointer;
display: inline-block;
padding: 2px 45px 0px 45px;
position: relative;
font-size: 18px;
font-weight: 600;
line-height: 1;
color: #492210;
margin-bottom: 20px;
}
.checkbox01::before {
width: 22px;
height: 22px;
border: 2px solid #9C9C9C;
background-color: #FFFFFF;
content: '';
display: block;
top: 0px;
left: 0px;
position: absolute;
}
.checkbox01::after {
content: '';
display: block;
opacity: 0;
position: absolute;
top: 0px;
left: 0px;
width: 22px;
height: 22px;
background-image: url("../img/check.png");
background-repeat: no-repeat;
background-position: center 2px center 2px;
}
input[type=checkbox]:checked + .checkbox01::after {
    opacity: 1;
}

.result {
font-size: 20px;
color: #492210;
padding: 30px 0px;
font-weight: 600;
}
.result_box {
background-color: #FFFFFF;
padding: 30px;
margin-bottom: 50px;
border-radius: 20px;
}
@media screen and (max-width: 960px) {
.result_box {
padding: 30px 10px;
}
}
.result_box_line1 {
display: flex;
justify-content: space-between;
align-content: center;
align-items: center;
border-bottom: dotted 1px #707070;
padding-bottom: 27px;
margin-bottom: 27px;
}
@media screen and (max-width: 960px) {
.result_box_line1 {
display: block;
}
}
.result_box_line1 h4 {
font-size:22px;
font-weight: 600;
border-left: 4px solid #492210;
padding-left: 10px;
padding-right: 30px;
margin-right: auto;
}
@media screen and (max-width: 960px) {
.result_box_line1 h4 {
font-size:18px;
margin-bottom: 15px;
}
}
.result_box .ul1 {
display: flex;
align-content: center;
align-items: center;
}
@media screen and (max-width: 960px) {
.result_box .ul1 {
display: block;
}
}
.result_box .ul1 .adrress {
padding-right: 30px;
}
.result_box .ul1 .tel {
display: flex;
align-content: center;
align-items: center;
margin-right: 20px;
}
@media screen and (max-width: 960px) {
.result_box .ul1 .tel {
padding-bottom: 10px;
margin-right: 0px;
}
}
.result_box .ul1 .tel img {
margin-right: 3px;
}
.result_box .ul1 .ul1_area {
}
.result_box .ul1 .ul1_area p {
display: flex;
justify-content: center;
align-content: center;
align-items: center;
width: 160px;
color: #FFFFFF;
border-radius: 100px;
font-size: 12px;
}
.result_box .ul1 .ul1_area .area_cl1 {
background-color: #76B4C4;
}
.result_box .ul1 .ul1_area .area_cl2 {
background-color: #AB7A97;
}
.result_box .ul1 .ul1_area .area_cl3 {
background-color: #A3BA10;
}
.result_box .ul1 .ul1_area .area_cl4 {
background-color: #E2A441;
}
.result_box .ul1 .ul1_area .area_cl5 {
background-color: #D87B6A;
}
.result_box .ul1 .ul1_area .area_cl6 {
background-color: #E2A441;
}
.result_box .ul1 .ul1_area .area_cl7 {
background-color: #D87B6A;
}
.result_box .ul2 {
display: flex;
align-content: center;
align-items: center;
margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
.result_box .ul2 {
display: block;
}
}
.result_box .ul2 li {
margin-right: 50px;
}
.result_box .ul2 li:nth-child(3) {
margin-right: 0px;
}
.result_box .ul2 li dl {
display: flex;
align-content: center;
align-items: center;
}
@media screen and (max-width: 960px) {
.result_box .ul2 li dl {
margin-bottom: 20px;
}
}
.result_box .ul2 li dl dt {
display: flex;
justify-content: center;
background-color: #259E3D;
color: #FFFFFF;
margin-right: 20px;
width: 90px;
border-radius: 5px;
font-size: 16px;
font-weight: 600;
}
.result_box .ul2 li dl dd {
font-size: 18px;
font-weight: 600;
}
@media screen and (max-width: 960px) {
.result_box .ul2 li dl dd {
flex: 1;
font-size: 16px;
}
}
.comment_txt {
font-size: 16px;
padding: 20px;
background-color: #F9F6F2;
;hanging-punctuation: 1.8;
margin-bottom: 20px;
}
.result_box_line3 {
display: flex;
justify-content: space-between;
align-content: center;
align-items: center;
}
@media screen and (max-width: 960px) {
.result_box_line3 {
display: block;
padding-left: 20px;
}
}
.result_box_line3 .spec1.unsupported {
display: flex;
align-content: center;
align-items: center;
}
.result_box_line3 .spec1 {
	width: 100%;
}
@media screen and (max-width: 960px) {
.result_box_line3 .spec1 {
display: block;
}
}
.result_box_line3 .spec1 dl {
display: flex;
align-content: center;
/*align-items: center;*/
align-items: start;
margin-right: 30px;
}
@media screen and (max-width: 960px) {
.result_box_line3 .spec1 dl {
display: block;
margin-bottom: 15px;
}
}
.result_box_line3 .spec1 dl dt {
display: flex;
align-content: center;
align-items: center;
font-weight: 600;
}
.result_box_line3 .spec1 dl dt img {
margin-right: 13px;
}
.result_box_line3 .spec1 dl dd {
display: flex;
align-content: center;
align-items: center;
width: 80%;
}
.result_box_line3 .spec1 dl dd a  {
text-decoration: underline;
color: #000000;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 500px;
}
.result_box_line3 .spec1 dl dd img {
max-width: 19px;
margin-left: 5px;
margin-bottom: 4px;
}
.result_box_line3 .result_box_line3_sns {
display: flex;
align-content: center;
align-items: center;
}
.result_box_line3 .result_box_line3_sns li {
display: flex;
align-content: center;
align-items: center;
margin-right: 15px;
}
.result_box_line3 .result_box_line3_sns li:nth-last-child(1) {
margin-right: 0px;
}

.shop_map_wrap .read-more{
display: block;
margin: 0 auto;
padding: 8px 64px;
border-radius: 100px;
background-color: #5B3421;
color: #FFFFFF;
font-weight: bold;
font-size: 18px;
cursor: pointer;
}
.shop_map_wrap .read-more:hover{
opacity: 0.8;
transition : all 0.5s ease 0s;
}




/*
-----------------------------------------------
▼TOPページマップ
----------------------------------------------- */
.top_map_in {
  width: 1100px;
  padding-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: space-between;
  align-items: center;
}
.top_map_txt {
  width: 46%;
}
.top_map_img {
  width: 50%;
}
.top_map_txt p {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 1160px) {
  .top_map_in {
    width: 85vw;
  }
}
@media screen and (max-width: 1024px) {
  .shop_map_wrap {
    padding-top: 8vw;
    padding-bottom: 8vw;
  }
  .h-type01 {
    font-size: 5.5vw;
    margin-bottom: 4.5vw;
  }
}
@media screen and (max-width: 767px) {
  .top_map_txt {
    width: 100%;
    margin-top: 20px;
  }
  .top_map_txt p {
    font-size: 1.6rem;
  }
  .top_map_img {
    width: 100%;
  }
  .top_map_txt .btn01 {
    width: 70vw;
    text-align: center;
    font-size: 3.8vw;
    padding: 0 2vw;
    height: 9vw;
    line-height: 8.4vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

/*
-----------------------------------------------
▼お問い合わせ
----------------------------------------------- */
.contact_wrap {
  background: #5b3f3d;
  padding-top: 50px;
  padding-bottom: 50px;
}
.contact_in {
  color: #4a2211;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  max-width: 800px;
  border-radius: 15px;
  padding: 30px 10px;
  font-weight: 700;
}
.contact_in a {
  color: #4a2211;
}
.contact_in h2 {
  font-size: 35px;
  margin-bottom: 10px;
}
.contact_in .p01 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.contact_in .p01 span {
  font-size: 18px;
}
.contact_in .p02 {
  font-size: 20px;
}
.insta_bana {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.insta_bana a {
  margin-right: 10px;
  margin-left: 10px;
}
@media screen and (max-width: 820px) {
  .contact_in {
    max-width: 84%;
    border-radius: 15px;
    padding: 15px 10px;
    font-weight: 700;
  }
  .insta_bana a {
    margin-bottom: 15px
  }
}
@media screen and (max-width: 767px) {
  .contact_wrap {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  .contact_in h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .contact_in .p01 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 5px;
  }
  .contact_in .p01 span {
    font-size: 16px;
  }
  .contact_in .p02 {
    font-size: 14px;
  }
  .insta_bana {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 40px;
    padding-left: 15%;
    padding-right: 15%;
  }
}
/*
-----------------------------------------------
▼フッター
----------------------------------------------- */
footer {
  padding: 40px 0;
}
.foot_in {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.foot_in p {
  font-size: 24px;
  font-weight: 600;
  margin-right: 12px;
  color: #5b3f3d;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 10px 0 15px 0;
  }
  .foot_in p {
    font-size: 18px;
    margin-right: 0;
  }
  .foot_in div {
    padding-left: 20%;
    padding-right: 20%;
  }
}
/*
-----------------------------------------------
▼ページTOPボタン
----------------------------------------------- */
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
}
@media screen and (min-width: 1025px) {
  #page-top a {
    width: 100px;
    height: 100px;
  }
}
#page-top img {
  opacity: 0.9 !important;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 15px;
  z-index: 10;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
@media screen and (min-width: 1025px) {
  #page-top {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 10;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
  }
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(150px);
  }
}



/*
-----------------------------------------------
▼終了案内
----------------------------------------------- */

.end_catch{
color:#fff;
background:red;
margin:30px auto;
max-width:900px;
padding:30px 40px;
font-size:40px;
font-weight:700;
text-align:center; 
}


@media screen and (max-width: 1024px) {
.end_catch{
color:#fff;
background:red;
margin:5vw 5vw 4vw;
max-width:900px;
padding:3vw 2vw;
font-size:4vw;
font-weight:700;
text-align:center; 
}
}

@media screen and (max-width: 500px) {
.end_catch{
color:#fff;
background:red;
margin:5vw 5vw 4vw;
max-width:900px;
padding:3vw 1vw;
font-size:4.4vw;
font-weight:700;
text-align:center; 
}

}



/* css_end */
