@charset "UTF-8";
/*■01.RESET HTML*/
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
img {
  margin: 0px;
  padding: 0px;
  border: 0px;
  max-width: 100%;
}

a {
  color: #4c4948;
  text-decoration: underline;
  word-break: break-all;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
a:hover {
  text-decoration: none;
}

html {
  overflow-y: auto;
  --top-spacing: 135px;
  scroll-padding-top: var(--top-spacing);
}
@media screen and (max-width: 767px) {
  html {
    --top-spacing: 105px;
  }
}
@media screen and (max-width: 480px) {
  html {
    --top-spacing: 90px;
  }
}

#wrapper {
  min-width: 1200px;
  box-sizing: border-box;
  overflow: hidden;
}

body {
  background: #dae5db;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", YuGothic, sans-serif;
  color: #4c4948;
  line-height: 1.8;
  font-size: 14px;
}

.container {
  width: 1104px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

/*■02.CLEAR FLOAT*/
.clearfix:after {
  clear: both;
  display: block;
  content: " ";
  height: 0px;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hide these rules from IE-mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

.hidden {
  display: none;
}

/*■03.USE MEDIA*/
.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.media,
.media-body {
  overflow: hidden;
}

.media-text:after {
  clear: both;
  display: block;
  content: "";
  height: 0px;
  visibility: hidden;
}

a[href*="tel:"] {
/*
  pointer-events: none;
  cursor: default;
*/
  text-decoration: none;
}

/* ▽ TAB layout ========== */
@media print, screen and (max-width: 1100px) {
  .container {
    width: 100% !important;
    padding: 0 2%;
  }
}
/* ▽ PC-TAB layout ========== */
@media screen and (min-width: 768px) {
  .pc {
    display: inline-block !important;
  }

  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: inline-block !important;
  }
}
/*■04.FLEX*/
.flex_jus_center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/*■05.LAYOUT*/
@media screen and (min-width: 768px) {
  .ov_hover:hover {
    opacity: 0.7;
  }
}
.a_absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.style_ttl01 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}
.style_ttl01.bottom_line {
  border-bottom: 2px solid #4c4948;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .style_ttl01 {
    font-size: 26px;
    margin: 10%;
  }
}

.cm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  border: 1px solid #a6a39e;
  height: 32px;
  width: 32px;
  border-radius: 50%;
}
.cm-arrow:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  content: "\f105";
  font-family: FontAwesome;
  font-size: 20px;
  color: #7f7c79;
  top: -1px;
  left: -1px;
  width: 32px;
  height: 32px;
  font-weight: normal;
  text-align: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
.cm-arrow.arrow_down:after {
  content: "\f107";
}
.cm-arrow.arrow_back:after {
  content: "\f104";
}

.style_btn01 {
  position: relative;
  text-decoration: none !important;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.style_btn01 span {
  display: block;
}
.style_btn01 span.cm_txt {
  width: 100%;
  font-weight: bold;
}
.style_btn01 span.cm-arrow {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .style_btn01:hover {
    color: #f48814;
  }
}
@media screen and (max-width: 767px) {
  .style_btn01 {
    margin-bottom: 5%;
  }
}

/*--------------------------------
Loading
---------------------------------*/
.loading {
  width: 100%;
  height: 100vh;
  background-color: #4b4b3d;
  visibility: visible;
  overflow: hidden;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  transition: 1s;
}
.loading .loading__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loading.js-fade-out {
  visibility: hidden;
  opacity: 0;
  /* transition: 2.5s; TOPのみ反映させたいのでtop.cssに記述*/
}
.loading .loading__img {
  width: 314px;
  margin: auto;
  animation: loading__img-fadein 1.5s 1.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}
.loading .loading__img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .loading .loading__img {
    width: 115px;
  }
}
@keyframes loading__img-fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/*■06.HEADER*/
.l-head {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 1200px;
  width: 100%;
  background: none;
  -webkit-transition: background-image 0.4s linear, height 0.4s ease-in-out;
  transition: background-image 0.4s linear, height 0.4s ease-in-out;
}
.l-head .l-head_logo {
  width: 105px;
  margin-top: 20px;
}
.l-head .l-head_logo img {
  display: none;
}
.l-head.is-thin {
  background: #4c4948;
}
.l-head.is-thin .l-head_logo img {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .l-head {
    /* background: #393939 !important; */
    min-width: auto;
    height: 75px !important;
  }
  .l-head .l-head_logo {
    width: 63px;
    position: absolute;
    left: 50%;
    height: auto;
    transform: translateX(-50%);
    /* top: 5%; */
    top: 10px;
    margin-top: 0;
  }
  .l-head .l-head_logo img {
    width: 100%;
  }
  .l-head.is-thin .l-head_logo {
    opacity: 1;
  }
  .l-head.is-thin .l-head_logo img {
    display: inline-block;
  }
  .l-head.is-thin .l-menu_trigger {
    top: 0;
    right: 0;
    border-radius: 0;
    -webkit-transition: all linear 0.3s;
    -o-transition: all linear 0.3s;
    transition: all linear 0.3s;
  }
/* 
  .l-head .l-head_nav .list_sns {
    display: none;
  }
*/

}

.l-head_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px 15px 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-head_inner {
    padding: 0 2%;
    height: auto;
    align-items: center;
  }
}

.l-head_nav {
  position: fixed;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10001;
  /* padding-top: 5px; */
  padding-top: 20px;
  margin-right: 85px;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
/* .l-head_nav:after {
  position: absolute;
  content: "";
  background: #393939;
  top: -15px;
  left: 0;
  width: calc(100% + 50px);
  height: 67px;
  z-index: -1;
} */
.l-head_nav a {
  color: #fff;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .l-head_nav a:hover {
    /* color: #f48814; */
    opacity: 0.7;
  }
}
.l-head_nav .link_contact a {
  position: relative;
  padding-right: 95px;
  display: none;
}
.l-head_nav .link_contact a:after {
  position: absolute;
  content: "";
  background: #a6a4a4;
  width: 50px;
  height: 1px;
  top: 50%;
  right: 0;
}
.l-head_nav .list_sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: 50px;
}
.l-head_nav .list_sns li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding:0 20px 0 50px;
  font-weight: bold;
  line-height: 1.4;
 /* border-radius: 6px;*/
}
.l-head_nav .list_sns li a.link_tel {
  background: #315344 url("../common_img/icon_tel_line.svg") no-repeat center left 15px;
  background-size: 24px;
  line-height: 1.5;
  text-align: center;
}
.l-head_nav .list_sns li a.link_web {
  background: #315344 url("../common_img/icon_web.png") no-repeat center left 15px;
  background-size: 24px;
}
.l-head_nav .list_sns li a.link_line {
  background-color: #315344;
  background-size: 24px;
    padding: 0 20px;
    font-size: 1.2em;

}
.l-head_nav .list_sns li:not(:first-child) {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .l-head_nav {
    padding-top: 0;
    margin-right: 50px;
    top: 0;
    width: calc(100% - 50px);
  }
  .l-head_nav:after {
    background: none;
  }
  .l-head_nav .list_sns {
    margin-left: 0;
    width: 100%;
  }
  .l-head_nav .list_sns li {
    border-right: 1px solid #FFF;
  }
  .l-head_nav .list_sns li:nth-child(1) {
    order: 2;
    width: 50px;
  }
  .l-head_nav .list_sns li:nth-child(2) {
    order: 3;
    width: 50px;
  }
  .l-head_nav .list_sns li:nth-child(3) {
    order: 1;
	  width:50px;
  }
  .l-head_nav .list_sns li:not(:first-child) {
    margin-left: 0;
  }
  .l-head_nav .list_sns li a {
    height: 50px;
    line-height: 1.2;
    font-size: 90%;
    border-radius: 0;
  }
  .l-head_nav .list_sns li a.link_tel {
    line-height: 1.2;
    background: #315344 url("../common_img/icon_tel_line.svg") no-repeat center center;
    background-size: 24px;
    padding: 0;
  }
  .l-head_nav .list_sns li a.link_web {
    background-size: 0px;
    padding: 0;
	  font-size:12px;
  }
  .l-head_nav .list_sns li a.link_line {
    background-image: none;
    padding: 0;
	  width:50px;
	  
  }
  .l-head_nav .list_sns li a.link_line span.sp {
    line-height: 2;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 24px;
	  font-size:16px;
  }
}

.l-head_shop {
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 144px;
  height: 48px;
  color: #5d5d5d;
  text-decoration: none !important;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-family: Prata, serif;
  -webkit-transition: color 0.3s linear;
  transition: color 0.3s linear;
}
.l-head_shop:hover {
  color: #f48814;
}
.l-head_shop svg {
  margin-right: 0.5em;
}
.l-head_shop svg path {
  fill: currentColor;
}

.l-head_shopSub.is-unready {
  opacity: 1;
}

.l-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  min-width: 1200px;
  width: 100%;
}

div#menuContents {
    background-color: #233d31;
}
@media screen and (max-width: 1200px) {
  .l-menu {
    min-width: auto;
  }
}

.l-menu_trigger {
  position: absolute;
  background: #315344;
  top: 20px;
  right: 10px;
  z-index: 10002;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
@media screen and (max-width: 767px) {
  .l-menu_trigger {
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 0;
  }
}

.l-menu_triggerBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* margin-right: 12px; */
  width: 60px;
  height: 48px;
}
@media screen and (max-width: 767px) {
  .l-menu_triggerBtn {
    width: 50px;
    height: 50px;
    margin-right: 0;
  }
}

.l-menu_contents {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 99;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 120px;
  width: 438px;
  height: 100vh;
  background: #393939;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.l-menu_contents.is-visible {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.l-menu_contents ul {
  padding: 0 17%;
}
.l-menu_contents ul li {
  position: relative;
}
.l-menu_contents ul li a {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  color: #fff;
  text-decoration: none !important;
  padding: 2% 0 2% 40px;
}
/*
.l-menu_contents ul.menu_icon li:nth-child(1) a {
  background: url("../common_img/icon_01.png") no-repeat center left;
  background-size: 20px;
} 
.l-menu_contents ul.menu_icon li:nth-child(2) a {
  background: url("../common_img/icon_02.svg") no-repeat center left;
  background-size: 20px;
} 
.l-menu_contents ul.menu_icon li:nth-child(3) a {
  background: url("../common_img/icon_02.svg") no-repeat center left;
  background-size: 20px;
} 

.l-menu_contents ul.menu_icon li:nth-child(4) a {
  background: url("../common_img/icon_02.svg") no-repeat center left;
  background-size: 20px;
} 
.l-menu_contents ul.menu_icon li:nth-child(5) a {
  background: url("../common_img/icon_02.svg") no-repeat center left;
  background-size: 20px;
} 
.l-menu_contents ul.menu_icon li:nth-child(6) a {
  background: url("../common_img/icon_02.svg") no-repeat center left;
  background-size: 20px;
} 
.l-menu_contents ul.menu_icon li:nth-child(7) a {
  background: url("../common_img/icon_02.svg") no-repeat center left;
  background-size: 20px;
} 
.l-menu_contents ul.menu_icon li:nth-child(8) a {
  background: url("../common_img/icon_02.svg") no-repeat center left;
  background-size: 20px;
} 
.l-menu_contents ul.menu_icon li:nth-child(9) a {
  background: url("../common_img/icon_02.svg") no-repeat 4px center;
  background-size: 13px;
} 
.l-menu_contents ul.menu_icon li:nth-child(10) a {
  background: url("../common_img/icon_02.svg") no-repeat center left;
  background-size: 20px;
} */

.l-menu_contents ul.menu_arr {
  margin-top: 5%;
  margin-left: 20px;
}
.l-menu_contents ul.menu_arr li a {
  position: relative;
  padding: 2% 0 2% 20px;
} 
.l-menu_contents ul.menu_arr li a:after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  top: 5px;
  left: -13px;
} 

.l-menu_contents ul li a:after {
  position: absolute;
  content: "\f105";
  font-family: FontAwesome;
  top: 5px;
  left: -13px;
} 

.l-menu_contents ul li a:hover {
  color: #f48814;
}
@media screen and (max-width: 767px) {
  .l-menu_contents {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 80px;
    overflow-y: auto;
    height: 100vh;
  }
}

.anico-bar3close {
  display: inline-block;
}
.anico-bar3close g {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
  transition: -webkit-transform 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
  transition: transform 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
  transition: transform 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s, -webkit-transform 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.anico-bar3close line {
  -webkit-transition: stroke 0.25s linear 0s, stroke-width 0.25s linear 0s, -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s;
  transition: stroke 0.25s linear 0s, stroke-width 0.25s linear 0s, -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s;
  transition: stroke 0.25s linear 0s, stroke-width 0.25s linear 0s, transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s;
  transition: stroke 0.25s linear 0s, stroke-width 0.25s linear 0s, transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s, -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 20px;
}

.is-active .anico-bar3close g {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s;
  transition: -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s, -webkit-transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.25s;
}
.is-active .anico-bar3close line {
  -webkit-transition: stroke 0.25s linear 0.25s, stroke-width 0.25s linear 0.25s, -webkit-transform 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
  transition: stroke 0.25s linear 0.25s, stroke-width 0.25s linear 0.25s, -webkit-transform 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
  transition: stroke 0.25s linear 0.25s, stroke-width 0.25s linear 0.25s, transform 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
  transition: stroke 0.25s linear 0.25s, stroke-width 0.25s linear 0.25s, transform 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s, -webkit-transform 0.25s cubic-bezier(0.6, -0.28, 0.735, 0.045) 0s;
  stroke: #fff;
  stroke-width: 20px;
}
.is-active .anico-bar3close .bar3close-group01 {
  -webkit-transform: scale(1.1) rotate(45deg);
  transform: scale(1.1) rotate(45deg);
}
.is-active .anico-bar3close .bar3close-group02 {
  -webkit-transform: scale(1.1) rotate(-45deg);
  transform: scale(1.1) rotate(-45deg);
}
.is-active .anico-bar3close .bar3close-line01 {
  -webkit-transform: translateY(90px);
  transform: translateY(90px);
}
.is-active .anico-bar3close .bar3close-line03 {
  -webkit-transform: translateY(-90px);
  transform: translateY(-90px);
}

/*■07.FOOTER*/
#footer .f_main {
  background: #e0dcd2;
  padding: 0 0 50px 0;
  box-sizing: border-box;
}
#footer .f_main {
  display: none;
}

#footer .f_main .inner_main .instagram img,
#footer .f_main .inner_main .line img {
  display: block;
  margin:auto;
  width: 70%;
  height: 100%;
  text-align: center;
}
#footer .f_main .inner_main {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
}
#footer .f_main .inner_main .f_logo img {
  width: 35%;
  margin: auto;
}
/* #footer .f_main .inner_main .f_list_sns2 ul li.tiktok {
  display: none;
}
#footer .f_main .inner_main .f_list_sns2 ul li a img {
  width: 32px;
  height: 32px;
} */
#footer .f_gnav {
  display: flex;
  justify-content: center;
  margin-top: 5%; 
  /* display: none; */
}
#footer .f_gnav ul {
  width: auto;
  padding: 0 5%;
}
#footer .f_gnav ul:nth-child(2) {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
}
#footer .f_gnav ul li {
  margin-bottom: 2%;
}
#footer .f_gnav ul li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

#footer .f-contact {
  background: #413e3d;
  width: 100%;
  margin: 0 auto;
  padding: 50px 5% 0;
  color: #fff;
  text-align: center;
  clear: both;
}
@media screen and (max-width: 767px) {
  #footer .f-contact {
    padding-top: 40px;
	  padding-bottom: 40px;
  }
}
#footer .f-contact .f-contact-flex-block {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  #footer .f-contact .f-contact-flex-block {
    display: block;
  }
}
#footer .f-contact .link_line-block a:hover {
  color: #413e3d;
  background-color: #fff;
}

#footer .f-contact .link_line-block {
  position: relative;
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}
#footer .f-contact .link_line-block a {
  display: block;
  text-align: center;
  padding: 15px;
  border: 1px solid #FFF;
}
#footer .f-contact .link_line-block a,
#footer .f-contact .link_tel-block a,
#footer .f-contact .link_web-block a {
  font-size: 14px;
  font-weight: 600;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  #footer .f-contact .link_line-block a,
  #footer .f-contact .link_tel-block a,
  #footer .f-contact .link_web-block a {
    font-size: 13px;
  }
}
#footer .f-contact .link_line-block a span {
    display: inline-block;
    /* padding-left: 35px; */
    /* background-image: url(../common_img/icon_line.png); */
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 24px;
}
a.link_line {
    background-color: #315344;
}
#footer .f-contact .link_line-block a span:hover{
	background-color:#fff;
}


#footer .f-contact .link_tel-block,
#footer .f-contact .link_web-block {
  flex: 0 1 auto;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  #footer .f-contact .link_tel-block,
  #footer .f-contact .link_web-block {
    text-align: center;
    padding: 0 0 5px;
  }
}
#footer .f-contact .link_tel-block a span {
  display: inline-block;
  padding-left: 35px;
  background-image: url("../common_img/icon_tel_line.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 23px;
}
#footer .f-contact .link_web-block a span {
  display: inline-block;
  padding-left: 35px;
  background-image: url("../common_img/icon_mail_02_line.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 24px;
}

#footer .copy_right {
  background: #413e3d;
  padding: 20px 0;
  font-size: 12px;
  color: #fff;
  text-align: center;
  clear: both;
}

#footer .copy_right_com {
  color: #fff;
  float: right;
  margin-top: -20px;
  margin-right: 20px;
  text-decoration: none;
}


#page-top {
  position: fixed;
  width: 32px;
  z-index: 20;
  right: 2%;
  bottom: 20px;
}

#footer .f_main .inner_main .f_list_sns {
  display: none;
}

#footer .f_main .inner_main .f_list_sns2 .ttl {
  font-size: 18px;
  font-family: "Marcellus", serif;
  color: #fff;
  font-weight: normal;
  letter-spacing: 2px;
  text-align: center;
}
#footer .f_main .inner_main .f_list_sns2 ul {
  display: flex;
  justify-content: center;
  width:35vw;
  margin: 0px auto;
}
#footer .f_main .inner_main .f_list_sns2 ul li {
  margin: 0 5px;
  width: 60px;
}
@media screen and (max-width: 767px) {
  #footer .f_main .inner_main .f_list_sns {
/*  display: block;*/
  width: 25%;
  /* width: auto; */
}
#footer .f_main .inner_main .f_list_sns .ttl {
  background: #fff;
  text-align: center;
  font-weight: normal; 
  /* display: none; */
}
#footer .f_main .inner_main .f_list_sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
#footer .f_main .inner_main .f_list_sns ul li a {
  display: inline-block;
  padding: 2px 0 2px 40px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}
#footer .f_main .inner_main .f_list_sns ul li a.link_web {
  background: url("../common_img/icon_mail.png") no-repeat center left;
}
#footer .f_main .inner_main .f_list_sns ul li a.link_tel {
  background: url("../common_img/icon_tel.png") no-repeat center left;
}
#footer .f_main .inner_main .f_list_sns ul li a.link_line {
  background: url("../common_img/icon_line.png") no-repeat center left;
}
#footer .f_main .inner_main .f_list_sns ul li a.link_web,
#footer .f_main .inner_main .f_list_sns ul li a.link_tel,
#footer .f_main .inner_main .f_list_sns ul li a.link_line {
  background-size: 30px;
}


@media only screen and (max-width: 767px) {
  #footer .f_main .inner_main .f_list_sns {
/*    display: block;*/
  }

  #footer .f_main .inner_main .f_list_sns ul li a {
    padding: 0 0 0 30px;
  }
  #footer .f_main .inner_main .f_list_sns ul li a.link_web,
  #footer .f_main .inner_main .f_list_sns ul li a.link_tel,
  #footer .f_main .inner_main .f_list_sns ul li a.link_line {
    background-size: 20px;
  }
}
#footer .f_main .inner_main .f_list_sns ul li:last-child {
  /* margin-left: 10px; */
}


  #wrapper, .container {
    width: 100% !important;
    min-width: inherit !important;
  }

  .container {
    box-sizing: border-box;
    padding: 0 4%;
  }

  #footer {
    /* padding-bottom: 59px; */
    /*padding-bottom: 47px;*/
    padding-bottom: 0;
  }
  #footer .f_main {
    display: block;
    padding: 3% 0 10%;
  }
  #footer .f_main .inner_main {
    flex-wrap: wrap;
  }
  #footer .f_main .inner_main .f_logo {
    width: 35%;
    /* max-width: 97px; */
    margin: auto;
  }
  #footer .f_main .inner_main .f_logo img {
    width: 100%;
    image-rendering: -webkit-optimize-contrast;
  }
  #footer .f_main .inner_main .f_list_sns {
    position: fixed;
    background: #413e3d;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-bottom: 10px;
    z-index: 10002;
  }
  #footer .f_main .inner_main .f_list_sns .ttl {
    width: 280px;
    margin: -13px auto 0;
  }
  #footer .f_main .inner_main .f_list_sns ul {
    position: relative;
    justify-content: center;
    margin-top: 12px;
  }
  #footer .f_main .inner_main .f_list_sns ul:after {
    display: none;
    position: absolute;
    content: "";
    background: #fff;
    height: 100%;
    width: 1px;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  #footer .f_main .inner_main .f_list_sns ul li {
    width: 50%;
    text-align: center;
  }
  /* #footer .f_main .inner_main .f_list_sns ul li:last-child {
    margin-left: 30px;
  } */
  #footer .f_main .inner_main .f_list_sns2 {
    display: none;
    /* width: 100%;
    margin-top: 0%; */
  }
  #footer .f_main .inner_main .f_list_sns2 ul {
    width: 85vw;
    /* background-color: pink; */
    margin: 0px auto;
  }
  #footer .f_gnav {
    padding: 8% 0;
  }
  #footer .f_gnav ul:nth-child(1) {
    padding-left: 0;
  }
  #footer .f_gnav ul:nth-child(2) {
    padding-right: 0;
    border-right: none;
  }
  #footer .copy_right {
    padding: 10px 5px 25px;
  }
}
@media screen and (max-width: 767px) {
  #footer .f_gnav ul {
    padding: 0 4%;
  }
}

/*start*/
window.scrollTo({
  top: target,
  behavior: 'smooth',
});

/*# sourceMappingURL=base.css.map */
