@charset "UTF-8";
/*リセット*/
html, body, h1, h2, h3, h4, h5, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 10px;
  vertical-align: baseline;
  box-sizing: border-box;
  color: #121212;
}

article, header, aside, figure, figcaption, nav, section {
  display: block;
}

html {
  scroll-behavior: smooth;
  position: relative;
}

body {
  font-family: "Noto Sans JP", YakuHanJP, sans-serif, "游ゴシック体", YuGothic;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
ol, ul {
  list-style: none;
  list-style-type: none;
}

a {
  color: #121212;
  text-decoration: none;
}

img {
  display: block;
}

p {
  line-height: 1.5em;
}

table {
  border-collapse: collapse;
}
@media (max-width: 599px) {
  table table {
    width: 100%;
  }
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.title {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 3.12%;
  margin-right: 1.56%;
  display: flex;
  justify-content: space-between;
}
.title h1 img {
  width: 200px;
}
.title h2 img {
  width: 200px;
}

@media (max-width: 1024px) {
  .navwrapper {
    background: #F5F5F5;
    position: fixed;
    height: 100vh;
    display: block;
    padding-top: 160px;
    width: 60%;
    right: -60%;
    transition: 0.7s ease-in-out;
    z-index: 100;
    top: 0;
    transform: translateY(0);
  }
}

.menu {
  display: flex;
}
@media (max-width: 1024px) {
  .menu {
    display: block;
  }
}
.menu li {
  margin-right: 20px;
  position: relative;
}
@media (max-width: 1024px) {
  .menu li {
    margin-left: 60px;
    margin-bottom: 40px;
  }
}
.menu li:last-child {
  margin-right: 0;
}
@media (max-width: 1024px) {
  .menu li:last-child {
    width: 75%;
  }
}
.menu li:last-child a {
  padding: 15px 24px;
  background-color: #4A2408;
  border-radius: 4px;
  color: #ffffff;
}
.menu li:last-child a::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  height: 16px;
  background-image: url(../../images/mailicon.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.menu li:last-child a:hover {
  color: #ffffff;
  background-color: #997860;
}
.menu li a {
  font-weight: 500;
  display: block;
  font-size: 1.3rem;
  line-height: 1.3em;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  position: inherit;
  top: 50%;
  transform: translateY(-50%);
  color: #4A2408;
  transition: 0.5s;
}
.menu li a:hover {
  color: #838383;
}
@media (max-width: 1024px) {
  .menu li a {
    position: static;
    transform: translateY(0);
  }
}

#nav_toggle {
  margin-top: 12px;
  height: 32px;
  width: 32px;
  position: fixed;
  right: 20px;
  cursor: pointer;
  z-index: 100;
  display: none;
}
@media (max-width: 1024px) {
  #nav_toggle {
    display: block;
    z-index: 300;
  }
}
#nav_toggle span {
  background: #191919;
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  margin-bottom: 8px;
  transition: 0.5s ease-in-out;
}
#nav_toggle span:nth-child(1) {
  top: 0;
}
#nav_toggle span:nth-child(2) {
  top: 11px;
}
#nav_toggle span:nth-child(3) {
  top: 22px;
  margin-bottom: 0;
}

.open #nav_toggle span:nth-child(1) {
  transform: translateY(11px) rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
  width: 0;
}
.open #nav_toggle span:nth-child(3) {
  transform: translateY(-11px) rotate(-315deg);
}
.open nav {
  transform: translate3d(-100%, 0, 0);
}

.contact {
  margin-top: 160px;
}
@media (max-width: 1024px) {
  .contact {
    margin-top: 100px;
  }
}
.contact h2 {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  color: #4A2408;
  font-size: 5rem;
}
.contact h2 span {
  color: #4A2408;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 4px;
  margin-left: 4px;
}
.contact .contxt {
  font-size: 1.4rem;
  line-height: 1.5em;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0.1em;
}
.contact ul {
  display: flex;
  margin-top: 40px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .contact ul {
    display: block;
  }
}
.contact ul li {
  width: 28.12%;
  background-color: #F7F2E9;
  border-radius: 40px;
  transition: 0.5s;
}
@media (max-width: 1024px) {
  .contact ul li {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 599px) {
  .contact ul li {
    width: 80%;
  }
}
.contact ul li:hover {
  background-color: #dac7a5;
}
.contact ul li a {
  text-align: center;
  padding: 20px 0;
  display: block;
  font-size: 2.2rem;
  color: #4A2408;
  letter-spacing: 0.1em;
  font-weight: 700;
}
@media (max-width: 599px) {
  .contact ul li a {
    font-size: 1.6rem;
  }
}
.contact ul .mail {
  margin-right: 80px;
}
@media (max-width: 1024px) {
  .contact ul .mail {
    margin: 0 auto 20px;
  }
}
.contact ul .mail a::before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 32px;
  height: 24px;
  background-image: url(../../images/mailicon_br.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media (max-width: 599px) {
  .contact ul .mail a::before {
    width: 26px;
    height: 20px;
  }
}
.contact ul .tel a::before {
  content: "";
  display: inline-block;
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background-image: url(../../images/phoneicon.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media (max-width: 599px) {
  .contact ul .tel a::before {
    width: 26px;
    height: 26px;
  }
}

.map {
  margin-top: 180px;
}
@media (max-width: 1024px) {
  .map {
    margin-top: 120px;
  }
}
.map iframe {
  width: 100%;
  height: 340px;
}

footer {
  background-color: #E5E5E5;
}
footer .wrapper {
  padding: 120px 21.87% 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer .wrapper {
    display: block;
    padding: 80px 21.87% 0;
  }
}
@media (max-width: 599px) {
  footer .wrapper {
    padding: 80px 10% 0;
  }
}
footer .wrapper .company img {
  width: 200px;
}
footer .wrapper .company p {
  margin-top: 4px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
footer .wrapper .company a {
  font-size: 1.2rem;
  color: #4A2408;
  display: inline-block;
  background-color: #ffffff;
  padding: 10px 40px;
  border-radius: 40px;
  margin-top: 10px;
}
footer .wrapper .company a::before {
  content: "";
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  height: 16px;
  background-image: url(../../images/mailicon_br.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
footer .wrapper .link {
  display: flex;
}
@media (max-width: 1024px) {
  footer .wrapper .link {
    margin-top: 20px;
    display: block;
  }
}
footer .wrapper .link ul li a {
  font-size: 1.2rem;
  line-height: 3em;
}
footer .wrapper .link .foot_menu {
  margin-right: 40px;
}
footer small {
  text-align: center;
  margin-top: 120px;
  background-color: #4A2408;
  color: #ffffff;
  display: block;
  padding: 10px 0;
}
@media (max-width: 1024px) {
  footer small {
    margin-top: 80px;
  }
}

.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi span {
  font-size: 1.4rem;
  display: inline-block;
  padding: 12px;
}
.wp-pagenavi .current {
  border-bottom: 1px solid #121212;
  margin-right: 10px;
}
.wp-pagenavi .page {
  font-size: 1.4rem;
  display: inline-block;
  padding: 12px;
  margin-right: 10px;
}
.wp-pagenavi .nextpostslink, .wp-pagenavi .previouspostslink {
  font-size: 1.4rem;
  display: inline-block;
  padding: 12px;
}

.breadcrumbs {
  margin-left: 30px;
  margin-top: 10px;
}/*# sourceMappingURL=style_common.css.map */

/* scssに追記せず追加 */
footer .wrapper .company img{
  padding-bottom: 20px;
}

.sns-area {
  margin-top: 16px;
    display: flex;      
    align-items: center; 
    gap: 1rem;           
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}
.sns-label {
    font-size: 1rem;  
    color: #4a3320;
    font-weight: 500; 
    letter-spacing: 0.05em; 
}
.sns-icons {
    display: flex; 
    gap: 0.75rem; 
}

.sns-icon {
    width: 4rem !important; 
    height: 4rem !important; 
    background-color: #fff; 
    border-radius: 9999px; 
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #4a3320;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); 
    transition: background-color 0.2s, color 0.2s; 
    
    padding: 0 !important; 
    margin: 0 !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

.sns-icon::before,
.sns-icon::after {
    display: none !important;
    content: none !important;
}

.sns-icon:hover {
    background-color: #4a3320 !important;
    color: #fff !important;                        
}

.sns-icon svg {
    fill: currentColor; 
    display: block;
    margin: 0 !important; 
    padding: 0 !important;
}

.icon-instagram { width: 20px; height: 20px; }
.icon-tiktok { width: 18px; height: 18px; } 

footer .wrapper .company a:nth-child(1),footer .wrapper .company a:nth-child(2){
  margin-top: 0;
  padding: 0;
}

footer .wrapper .company a:nth-child(1)::before,footer .wrapper .company a:nth-child(2)::before{
  background-image:none;
      vertical-align: top;
}

.link{
  padding-top: 51px;
}
@media (max-width: 1024px) {
  .link{padding-top: 0;}
}
@media (max-width: 599px) {
  .link{padding-top: 0;}
}