@charset "UTF-8";
/*=============================================*/
/*Font import */
/*=============================================*/
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

table {
  width: 100%;
  background: none;
  border: none;
  box-shadow: none;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
html {
  font-size: var(--fz, 10px); /* 初期値10px */
  overflow: auto;
}

body {
  margin: auto;
  width: auto;
  font-family: "hiragino-mincho-pron", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  color: #333333;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  letter-spacing: 0.05em;
}

a {
  color: #333333;
}

.pc_only {
  display: block !important;
}
@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

.sp_only {
  display: none !important;
}
@media (max-width: 768px) {
  .sp_only {
    display: block !important;
  }
}

.c-to-l {
  text-align: center;
}
@media (max-width: 768px) {
  .c-to-l {
    text-align: left;
  }
}

.h-w6 {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.noto_m {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

/*=============================================*/
/*  layout  Base                        */
/*=============================================*/
.main_width {
  max-width: 135rem;
  width: 96%;
  margin: auto;
}
@media (max-width: 768px) {
  .main_width {
    width: calc(100% - 3rem);
  }
}
.main_width.w1000 {
  max-width: 100rem;
}
.main_width.w1200 {
  max-width: 120rem;
}
.main_width.w1500 {
  max-width: 150rem;
}

/*=============================================*/
/* TOP PAGE */
/*=============================================*/
/********************************************/
/* 共通ボタン */
/********************************************/
.btn_more {
  position: relative;
  display: inline-block;
  padding: 0.5em 3.6em 0.5em 1.9em;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 10rem;
  border: 1px solid transparent;
  transition: all 0.3s;
}
.btn_more::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  content: "";
  width: 1rem;
  height: 1rem;
  background: no-repeat center/contain;
  transform: translateY(-50%);
  transition: background 0.3s;
}
.btn_more--primary {
  background-color: #9E7658;
  color: #FFF;
  border-color: #9E7658;
}
.btn_more--primary::after {
  background-image: url(../img/ico/ico-more-btn-arrow.svg);
}
.btn_more--primary:hover {
  background-color: #FFF;
  color: #9E7658;
}
.btn_more--primary:hover::after {
  background-image: url(../img/ico/ico-more-btn-arrow-hover.svg);
}
.btn_more--white {
  background-color: #FFF;
  color: #9E7658;
  border-color: #FFF;
}
.btn_more--white::after {
  background-image: url(../img/ico/ico-more-btn-arrow-hover.svg);
}
.btn_more--white:hover {
  background-color: #9E7658;
  color: #FFF;
}
.btn_more--white:hover::after {
  background-image: url(../img/ico/ico-more-btn-arrow.svg);
}
.btn_more--black {
  background-color: #000;
  color: #FFF;
  border-color: #000;
}
.btn_more--black::after {
  background-image: url(../img/ico/ico-more-btn-arrow-white.svg);
}
.btn_more--black:hover {
  background-color: #FFF;
  color: #000;
}
.btn_more--black:hover::after {
  background-image: url(../img/ico/ico-more-btn-arrow-black-hover.svg);
}

/********************************************/
/* FV */
/********************************************/
.fv_block {
  position: relative;
  width: 100vw;
  overflow: hidden;
}
@media (max-width: 768px) {
  .fv_block {
    height: auto;
  }
}
.fv_block .fv_img {
  position: relative;
  width: 100%;
  display: block;
}
.fv_block .fv_img::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  mix-blend-mode: multiply;
}
.fv_block .fv_img img {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .fv_block .fv_img img {
    height: 60svh;
  }
}
@media (max-width: 768px) {
  .fv_block .fade_swiper {
    height: auto;
  }
}
.fv_block .fv_txt_box {
  position: absolute;
  right: 8vw;
  top: 10vw;
  z-index: 10;
}
@media (max-width: 768px) {
  .fv_block .fv_txt_box {
    left: 50%;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.fv_block .fv_catch {
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  writing-mode: vertical-rl;
  font-size: 5rem;
  color: #FFF;
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.fv_block .fv_catch .fv_catch_char {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fv_block .fv_catch .fv_catch_char.is-visible {
  opacity: 1;
}
.fv_block .fv_catch .fv_catch_spacer {
  display: inline-block;
  height: 2.4em;
}
@media (max-width: 768px) {
  .fv_block .fv_catch {
    font-size: 2.8rem;
    margin: auto;
  }
}

/********************************************/
/* お知らせ */
/********************************************/
.news_block {
  padding: 8rem 0 7rem;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .news_block {
    padding: 5rem 0 4.5rem;
  }
}
.news_block .news_inner {
  display: flex;
  gap: 3rem 2rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .news_block .news_inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.news_block .left {
  flex-shrink: 0;
  width: 13rem;
}
@media (max-width: 768px) {
  .news_block .left {
    width: 100%;
    padding-top: 0;
  }
}
.news_block .news_ttl {
  font-size: 5rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.05em;
  line-height: 1.4;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .news_block .news_ttl {
    font-size: 2.4rem;
    writing-mode: horizontal-tb;
  }
}
.news_block .right {
  flex: 1;
}
@media (max-width: 768px) {
  .news_block .right {
    width: 100%;
  }
}
.news_block .news_list {
  margin-bottom: 2.4rem;
}
.news_block .news_item {
  border-bottom: 1px solid #e0d5c5;
}
.news_block .news_item:first-child {
  border-top: 1px solid #e0d5c5;
}
.news_block .news_link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1.6rem 0.4rem;
  transition: opacity 0.3s;
}
.news_block .news_link:hover {
  opacity: 0.65;
}
.news_block .post_status {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}
.news_block .news_date {
  font-size: 1.4rem;
  color: #666;
  letter-spacing: 0.05em;
}
.news_block .news_tag {
  display: inline-block;
  width: max-content;
  padding: 0.2rem 1.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.05em;
  background-color: #9E7658;
}
.news_block .news_tag--red {
  background-color: #c0392b;
}
.news_block .news_tag--brown {
  background-color: #9E7658;
}
.news_block .news_tag--info {
  background-color: #ca2323;
}
.news_block .news_tag--shop {
  background-color: #e18712;
}
.news_block .news_txt {
  font-size: 1.5rem;
  color: #333333;
  line-height: 1.6;
}
.news_block .news_btn {
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

/********************************************/
/* わたしたちの想い */
/********************************************/
.about_block {
  position: relative;
  padding: 9rem 0 10rem;
}
.about_block::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #faf6ed;
  z-index: -2;
}
.about_block::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 69.4rem;
  height: 42.5rem;
  background: url(../img/top/bg-ornament.webp) no-repeat center/contain;
  z-index: -1;
}
@media (max-width: 768px) {
  .about_block::after {
    width: 32rem;
    height: 20rem;
  }
}
@media (max-width: 768px) {
  .about_block {
    padding: 6rem 0 6.5rem;
  }
}
.about_block .about_inner {
  display: flex;
  gap: 8rem;
}
@media (max-width: 768px) {
  .about_block .about_inner {
    flex-direction: column;
    gap: 3.6rem;
  }
}
.about_block .left {
  flex-shrink: 0;
  width: 38%;
}
@media (max-width: 768px) {
  .about_block .left {
    width: 70%;
    margin: 0 auto;
  }
}
.about_block .about_img {
  position: relative;
  width: 100%;
}
.about_block .right {
  flex: 1;
}
.about_block .about_ttl {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2.8rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .about_block .about_ttl {
    font-size: 2rem;
  }
}
.about_block .about_txt {
  font-size: 1.5rem;
  line-height: 2;
  color: #333333;
  margin-bottom: 1.8rem;
}
.about_block .about_btn {
  margin-top: 5rem;
  max-width: 20rem;
  margin-right: auto;
  text-align: center;
}
.about_block .about_btn a {
  display: block;
  width: 100%;
}

/********************************************/
/* 商品情報 */
/********************************************/
.product_block {
  background-color: #9E7658;
  position: relative;
  overflow: visible;
}
.product_block .product_head {
  padding: 4rem 0 10rem;
}
@media (max-width: 768px) {
  .product_block .product_head {
    padding: 3rem 0 2rem;
  }
}
.product_block .product_head .main_width {
  position: relative;
  text-align: center;
}
.product_block .product_ttl {
  font-size: 4rem;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.5em;
}
@media (max-width: 768px) {
  .product_block .product_ttl {
    font-size: 2.4rem;
  }
}
.product_block .product_slider_wrap {
  position: relative;
}
.product_block .parts_wave {
  display: block;
  line-height: 0;
}
.product_block .parts_wave svg {
  width: 100%;
  height: 6rem;
  display: block;
}
.product_block .product_nav {
  position: absolute;
  right: 10%;
  top: -5rem;
  width: 15rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .product_block .product_nav {
    right: unset;
    top: unset;
    bottom: -4rem;
    left: 50%;
    width: 13rem;
    transform: translateX(-50%);
  }
}
.product_block .swiper-button-prev::after,
.product_block .swiper-button-next::after {
  display: none;
}
.product_block .product_prev,
.product_block .product_next {
  width: 5rem;
  height: 5rem;
  border: none;
  background: transparent no-repeat center/contain;
  cursor: pointer;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.product_block .product_prev:hover,
.product_block .product_next:hover {
  opacity: 0.7;
}
.product_block .product_prev.swiper-button-disabled,
.product_block .product_next.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 768px) {
  .product_block .product_prev,
  .product_block .product_next {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.product_block .product_prev {
  background-image: url(../img/ico/swiper-btn-prev.svg);
}
.product_block .product_next {
  background-image: url(../img/ico/swiper-btn-next.svg);
}
.product_block .product_swiper {
  padding-left: 2%;
}
@media (max-width: 768px) {
  .product_block .product_swiper {
    padding-left: 1.5rem;
  }
}
.product_block .product_swiper .swiper {
  overflow: visible;
}
.product_block .product_link {
  display: block;
  transition: opacity 0.3s;
}
.product_block .product_link:hover {
  opacity: 0.8;
}
.product_block .product_img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  background-color: #f5edd8;
}
.product_block .product_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product_block .product_info {
  padding: 1rem 0.2rem 0.6rem;
}
.product_block .product_name {
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .product_block .product_name {
    font-size: 1.6rem;
  }
}
.product_block .product_desc {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .product_block .product_desc {
    font-size: 1.4rem;
  }
}
.product_block .product_btn {
  text-align: center;
  margin-top: 5rem;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}
.product_block .product_btn .btn_more {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .product_block .product_btn {
    padding: 3rem 0 4rem;
  }
}

.wave-section {
  width: 100%;
  background: #FAFAF1;
  overflow: hidden;
}

.wave-svg {
  display: block;
  width: 100%;
  height: 18rem;
}
@media (max-width: 768px) {
  .wave-svg {
    height: 10rem;
  }
}

/********************************************/
/* OEM */
/********************************************/
.oem_block {
  padding-bottom: 10rem;
  position: relative;
}
.oem_block::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 69.4rem;
  height: 42.5rem;
  background: url(../img/top/bg-ornament.webp) no-repeat center/contain;
  z-index: -1;
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .oem_block::after {
    width: 32rem;
    height: 20rem;
  }
}
.oem_block::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FAFAF1;
  z-index: -2;
}
@media (max-width: 768px) {
  .oem_block {
    padding-bottom: 6rem;
  }
}
.oem_block .oem_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
@media (max-width: 768px) {
  .oem_block .oem_inner {
    flex-direction: column;
    gap: 3rem;
  }
}
.oem_block .left {
  flex-shrink: 0;
  width: 45%;
}
@media (max-width: 768px) {
  .oem_block .left {
    width: 80%;
    margin: 0 auto;
    padding-right: 2rem;
  }
}
.oem_block .oem_img_box {
  width: 100%;
}
.oem_block .right {
  flex: 1;
}
.oem_block .oem_ttl {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 2.4rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .oem_block .oem_ttl {
    font-size: 2.3rem;
  }
}
.oem_block .oem_txt {
  font-size: 1.5rem;
  line-height: 2;
  color: #333333;
  margin-bottom: 1.6rem;
}
.oem_block .oem_btn {
  margin-top: 3.2rem;
}

/********************************************/
/* アクセス情報 */
/********************************************/
.access_block {
  position: relative;
  padding: 15rem 0 30rem 0;
  background-color: #FFF;
}
.access_block::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 32rem;
  background: url(../img/top/bg-access-ornament.webp) no-repeat right/cover;
  z-index: 0;
}
@media (max-width: 768px) {
  .access_block::after {
    height: 18rem;
  }
}
@media (max-width: 768px) {
  .access_block {
    padding: 5rem 0 6rem;
  }
}
.access_block .main_width {
  position: relative;
  z-index: 1;
}
.access_block .access_ttl {
  font-size: 3.5rem;
  font-weight: 700;
  color: #333333;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .access_block .access_ttl {
    font-size: 2.3rem;
    margin-bottom: 2.4rem;
  }
}
.access_block .access_inner {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .access_block .access_inner {
    flex-direction: column;
    gap: 3rem;
  }
}
.access_block .left {
  flex-shrink: 0;
  width: 44%;
}
@media (max-width: 768px) {
  .access_block .left {
    width: 100%;
  }
}
.access_block .access_img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4rem;
}
@media (max-width: 768px) {
  .access_block .access_img img {
    border-radius: 2rem;
    width: 70%;
    margin: 0 auto;
  }
}
.access_block .right {
  flex: 1;
}
@media (max-width: 768px) {
  .access_block .right {
    width: 100%;
  }
}
.access_block .access_place {
  font-size: 2.5rem;
  font-weight: 700;
  color: #9E7658;
  margin-bottom: 2rem;
}
.access_block .access_row .txt {
  font-size: 1.6rem;
  color: #333333;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .access_block .access_row .txt {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .access_block .access_btn {
    text-align: center;
  }
}
.access_block .access_btn .btn_more::after {
  width: 2rem;
  height: 2rem;
  background: url(../img/ico/ico-pin-white.svg) no-repeat center/contain;
  transition: background 0.3s;
}
.access_block .access_btn:hover .btn_more::after {
  background: url(../img/ico/ico-pin-brown.svg) no-repeat center/contain;
}

/********************************************/
/* 採用情報 */
/********************************************/
.recruit_block {
  position: relative;
  padding: 9rem 0 10rem;
}
.recruit_block::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/bg-j-paper.webp) no-repeat center/cover;
  z-index: -2;
}
@media (max-width: 768px) {
  .recruit_block {
    padding: 6rem 0 6.5rem;
  }
}
.recruit_block .recruit_inner {
  position: relative;
}
.recruit_block .recruit_ttl {
  height: 23rem;
  font-size: 3.5rem;
  font-family: "hiragino-mincho-pron", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-weight: 700;
  color: #9E7658;
  letter-spacing: 0.12em;
  line-height: 1.3;
  writing-mode: vertical-lr;
}
@media (max-width: 768px) {
  .recruit_block .recruit_ttl {
    width: 100%;
    height: auto;
    padding-bottom: 3rem;
    font-size: 2.3rem;
    writing-mode: horizontal-tb;
  }
}
.recruit_block .recruit_img_area {
  position: relative;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 768px) {
  .recruit_block .recruit_img_area {
    width: 100%;
    display: block;
  }
}
.recruit_block .recruit_img_area .box {
  display: flex;
  gap: 10rem;
  max-width: 96.2rem;
}
@media (max-width: 768px) {
  .recruit_block .recruit_img_area .box {
    gap: 2rem;
    max-width: 100%;
    margin-bottom: 2rem;
  }
}
.recruit_block .recruit_img_area .box .recruit_img02 {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .recruit_block .recruit_img_area .box .recruit_img02 {
    margin-top: 0;
  }
}
.recruit_block .recruit_img_area .box img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3rem;
}
@media (max-width: 768px) {
  .recruit_block .recruit_img_area .box img {
    border-radius: 1.5rem;
  }
}
.recruit_block .txt {
  margin-bottom: 5rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 768px) {
  .recruit_block .txt {
    margin-bottom: 3rem;
    font-size: 1.4rem;
  }
}
.recruit_block .recruit_btn {
  max-width: 20rem;
}
@media (max-width: 768px) {
  .recruit_block .recruit_btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.recruit_block .recruit_btn {
  text-align: center;
}
.recruit_block .recruit_btn a {
  display: block;
  width: 100%;
}

/********************************************/
/* お問い合わせ */
/********************************************/
.contact_block {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.contact_block::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/common/contact.webp) no-repeat center/cover;
  z-index: -2;
}
.contact_block::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(40, 22, 10, 0.2);
  z-index: -1;
}
@media (max-width: 768px) {
  .contact_block {
    padding: 5rem 0;
  }
}
.contact_block .contact_ttl {
  font-size: 3.5rem;
  font-weight: 700;
  color: #FFF;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact_block .contact_ttl {
    font-size: 2.3rem;
    letter-spacing: 0.08em;
    text-align: center;
  }
}
.contact_block .contact_sub {
  font-size: 1.8rem;
  color: #FFF;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .contact_block .contact_sub {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
}
.contact_block .contact_box {
  max-width: 100rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 768px) {
  .contact_block .contact_box {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.contact_block .contact_tel a {
  display: block;
  font-size: 5.2rem;
  font-weight: 700;
  color: #FFF;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .contact_block .contact_tel a {
    font-size: 3rem;
  }
}
.contact_block .contact_tel .contact_hours {
  display: block;
  margin-top: 0.6rem;
  font-size: 1.4rem;
  color: #FFF;
  text-align: center;
}
.contact_block .contact_btn_list {
  flex-shrink: 0;
}
.contact_block .btn_contact {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2em 2.4em;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFF;
  background-color: #9E7658;
  border: 1px solid #9E7658;
  border-radius: 10rem;
  letter-spacing: 0.08em;
  transition: all 0.3s;
}
.contact_block .btn_contact:hover {
  background-color: transparent;
  border-color: #FFF;
}
.contact_block .btn_contact .btn_contact_ico {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .contact_block .btn_contact {
    font-size: 1.4rem;
    padding: 1em 2em;
  }
}/*# sourceMappingURL=style.css.map */