@charset "utf-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "Inter";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: #595757;
  font-size: 2.8rem;
}
/* -----------------------------------
  ホーム画面 ~ index.html
----------------------------------- */

/* header */
.header_wrap {
  width: 100%;
  display: flex;
  box-shadow: 2.83px 2.83px 5.66px rgba(37, 23, 21, 0.45);
}

.header_wrap__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.header_wrap__box2 {
  display: flex;
  align-items: center;
}
.header_wrap__box2 .icon{
  margin-left: 30px;
}
.header_wrap__box2 .language {
  font-size: 22px;
  font-weight: bold;
  color: #595757;
  display: flex;
  gap: 17px;
  border-left: 1px solid #595757;
  margin-left: 30px;
  padding-left: 30px;
}
.head_title {
  padding: 73px 68px 38px 68px;
}
.head_title .breadcrumbs {
  font-size: 1.9rem;
  color: #b4b4b5;
}
.head_title .title {
  text-align: center;
}
.head_title .title h2 {
  font-family: "BeckmanFree", sans-serif;
  color: #595757;
  font-size: 6.3rem;
  font-weight: normal;
}
.head_title .title p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  color: #595757;
  font-size: 2rem;
}

/* logo */
.header_wrap {
  max-width: 100%;
  margin: 0;
}

/* .nav {
  margin-top: -40px;
} */

@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px; /* 右から出てくる */
    top: 0;
    width: 300px; /* スマホに収まるサイズ */
    /* padding-top: 60px; */
    background-color: #fff;
    transition: all 0.6s;
    z-index: 200;
    overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  }

  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px; /* クリックしやすい幅 */
    height: 40px; /* クリックしやすい高さ */
    cursor: pointer;
    z-index: 300;
  }

  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .nav_item {
    text-align: center;
    padding: 0 14px;
  }

  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #333;
  }

  .nav_item a:hover {
    background-color: #eee;
  }

  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #333;
    transition: all 0.6s;
  }

  .hamburger_border_top {
    top: 14px;
  }

  .hamburger_border_center {
    top: 20px;
  }

  .hamburger_border_bottom {
    top: 26px;
  }

  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s;
    cursor: pointer;
  }

  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }

  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }

  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }

  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }

  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}

@media only screen and (min-width: 769px) {
  .header_wrap__box1 {
    width: 100%;
    padding: 15px 30px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav_list {
    text-align: right;
  }

  .nav_list li {
    display: inline-block;
    text-align: right;
    padding-left: 50px;
    padding-top: 5px;
  }

  .nav_list li a {
    font-family: "BeckmanFree", sans-serif;
    text-align: center;
    color: #595757;
    font-size: 2.9rem;
    text-decoration: none;
  }
  .nav_list li a p {
    font-family: "kozuka-gothic-pr6n", sans-serif;
    font-size: 1.7rem;
    color: #b4b4b5;
  }
}
/* main */
main {
  width: 100%;
}
main section {
  margin-top: 80px;
}

main section:nth-child(5) {
  /* background-color: pink; */
  margin-top: -30px;
  margin-bottom: -30px;
}

.news,
.concept,
.products,
.instagram,
.policy {
  margin-bottom: 60px;
  font-family: "Inter", sans-serif;
  /* background: linear-gradient(90deg, #b59ed8 0%, #79b0d9 10%, #b59ed8 70%); */
  background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.news_wrap,
.concept_wrap,
.products_wrap,
.instagram_wrap,
.policy_wrap {
  max-width: 1200px;
  margin: 0 auto;
}
/* swiper */
.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 496 / 149; 
  margin: 0 auto;
}
.slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease-out;
}
.slider-item img {
  width: 100%;
  height: auto;
  display: block;
}
.slider-item.active {
  opacity: 1;
  z-index: 1;
}

/* 小圆点 */
.slider-dots {
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
  display: flex;
  gap: 4rem;
  z-index: 2;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #bfbebd;
  cursor: pointer;
}

.slider-dots button.active {
  background: #cd5d58;
}
/* home—products */
.product_wrap {
  position: relative;
}
.product_wrap::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 75%;
  height: 57%;
  background-color: #dbdcdc; 
  z-index: 0;
}
.product_show {
  display: flex;
  max-width: 1570px;
  margin: 0 auto;
  padding: 130px 0 50px;
  gap: 13px;
  position: relative;
}

.pro_left {
  position: relative;
  width: 818px;
}

.pro_img {
  width: 100%;
  display: block;
  position: relative;
  z-index: 3;
}
.pro_bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 55%;
  background-color: #ffffff;
  z-index: 1;
}
.pro_left_intro {
  width: 95%;
  font-family: 'Zen Old Mincho';
  position: absolute;
  left: 2.5%;
  background-color: #fff;
  padding: 10px;
  box-sizing: border-box;
  z-index: 3;
  bottom: 0;
  font-size: 23px;
  line-height: 1.8;
  color: #595757;
}

.pro_center {
  align-self: flex-end;
  margin-bottom: 10px;
}
.pro_center img,
.pro_right img {
  width: 100%;
  display: block;
}
.pro_left img {
  margin-top: -80px;
}
.select_wrap {
  margin-top: 20px;
  text-align: left;
}

#filterSelect {
  width: 100%;
  height: 63px;
  font-size: 23px;
  padding-left: 5px;
  font-size: #595757;
  border-color: #B5B5BE;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("../imags/select.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}
/* 外层 */
.dropdown {
  position: relative;
  width: 100%;
  font-size: 23px;
  background-color: #fff;
  border: 1px solid #B5B5BE;
}

/* 触发区 */
.dropdown-trigger {
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

/* 文本 */
.dropdown-label {
  padding-left: 8px;
}

/* 箭头 */
.dropdown-arrow {
  background: url("../imags/select.svg") no-repeat;
  width: 80px;
  height: 100%;
}


/* 菜单 */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  display: none;
  z-index: 10;
}

/* 展开 */
.dropdown.open .dropdown-menu {
  display: block;
}

/* 选项 */
.dropdown-menu li {
  padding: 12px 8px;
  cursor: pointer;
}

.dropdown-menu li:hover {
  background-color: #f2f2f2;
}

/* news */
.news-section {
  max-width: 1270px;
  margin: 0 auto;
  margin-top: 27px;
  margin-bottom: 53px;
  text-align: center;
}

.news-slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* 左右箭头 */
.news-arrow {
  border: none;
  background: none;
  font-size: 40px;
  cursor: pointer;
  padding: 0 10px;
  color: #b2b2b2;
  line-height: 1;
}

.news-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.news-window {
  overflow: hidden;
  width: calc(349px * 3 + 24px * 2);
}

/* 轨道 */
.news-track {
  display: flex;
  transition: transform 0.4s ease;
}

.news-card {
  flex: 0 0 349px;
  width: 349px;
  height: 427px;
  background: #f0f0f0;
  border: 1px solid #e3e3e3;
  margin-right: 24px; /* 间距 */
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 26px 14px;
  box-sizing: border-box;
}

.news-card:last-child {
  margin-right: 0;
}

.news-card__image {
  width: 100%;
  /* height: 200px; */
  background-size: cover;
  background-position: center;
}

.news-card__body {
  text-align: left;
}

.news-card__label {
  width: 220px;
  height: 28.7px;
  text-align: center;
  font-size: 17.7px;
  font-weight: bold;
  color: #ea7e26;
  border: 1px solid #ea7e26;
  margin: 0 auto;
  margin-top: 53px;
}

.news-card__title {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17.2px;
  font-weight: bold;
  color: #595757;
  text-align: center;
}

.news-card__date {
  font-size: 18px;
  font-weight: bold;
  color: #a9aaaa;
  text-align: center;
}

/* MORE 按钮 */
.news-more {
  margin-top: 24px;
}

.news-more button {
  padding: 8px 32px;
  border: 1px solid #999;
  background: #fff;
  font-size: 12px;
  letter-spacing: 0.15em;
  cursor: pointer;
}

.news-more button:hover {
  background: #eee;
}

/* sp */
.mNewsSlider{
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin: 20px auto;
}

.mNewsViewport{
  overflow: hidden;
  touch-action: pan-y;         
}

.mNewsTrack{
  display: flex;
  gap: 30px;
  will-change: transform;
  transition: transform .28s ease;
}

.mNewsCard{
  flex: 0 0 70%;                
  box-sizing: border-box;
  background: #dcdcdc;        
  padding: 22px 18px;
}

.mNewsCard a{ display:block; text-decoration:none; color:inherit; }

.mNewsImg img{
  display:block;
  width: 100%;
  height: auto;
}

.mNewsMeta{ text-align:center; }

.mNewsTag{
  display:inline-block;
  margin-top: 12px;
  padding: 6px 18px;
  border: 1px solid #EA7E26;
  color: #EA7E26;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: .08em;
}

.mNewsTitle{
  margin-top: 10px;
  font-weight: bold;
  line-height: 1.35;
  color: #595757;
  font-size: 15px;
}

.mNewsDate{
  margin-top: 8px;
  color: #A9AAAA;
  font-weight: 600;
  font-size: 15px;
}

.mNewsArrow{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; 
  height: 36px;
  border: 0;
  background: transparent;
  z-index: 2;
}
.mNewsArrow.is-prev{ left: 20px; }
.mNewsArrow.is-next{ right:20px; }

/* newslist */
.news-wrapper {
  max-width: 1390px;
  margin: 4rem auto;
  padding: 0 1.5rem 5rem;
  background: #fff;
}
.newsdetail_date {
  font-size: 1.8rem;
  color: #A9AAAA;
}
.newsdetail_topimg {
  margin-bottom: 23px;
}
.newsdetail_topimg img {
  width: 100%;
}
.newsdetail_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.newsdetail_imgbox {
  margin:10rem auto;
  width: 64.7rem;
}
.newsdetail_imgbox img {
  width: 100%;
}
.newsdetail_text p {
  text-align: center;
  font-size: 2.2rem;
  color: #595757;
  margin-bottom: 2.6rem;
}
/* 顶部：分类下拉 */
.news-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5rem 0 2rem;
}

.filter-dropdown {
  position: relative;
  display: inline-block;
  font-size: 1.3rem;
}

.filter-btn {
  width: 64rem;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.2rem;
  border: 1px solid #b2b1b1;
  background: #fff;
  cursor: pointer;
  position: relative;
  height: 70px;
  overflow: hidden;
}
.filter-btn img {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  height: 70px;
}
.filter-btn span {
  white-space: nowrap;
  font-size: 2.9rem;
  color: #595757;
  font-weight: bold;
}

.filter-menu {
  width: 64rem;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.4rem;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.08);
  list-style: none;
  display: none;
  z-index: 10;
}

.filter-menu li {
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  white-space: nowrap;
  font-size: 2.9rem;
  color: #595757;
  font-weight: bold;
}

.filter-menu li:hover {
  background: #f0f0f0;
}

.filter-dropdown.open .filter-menu {
  display: block;
}

/* 顶部大图 Banner */
.news-feature {
  position: relative;
  margin-bottom: 3rem;
  cursor: pointer;
  overflow: hidden;
}

.news-feature-img {
  width: 100%;
  height: 18rem;
  background: linear-gradient(135deg, #d5e9f5, #f5fbff);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #555;
}

.news-feature-date-range {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.news-feature-title {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

/* 分隔线 */
.news-divider {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 0 0 1.5rem;
}

/* 列表项 */
.news-list {
  list-style: none;
}

.news-item {
  display: flex;
  align-items: flex-start;
  padding: 2.4rem 0;
  border-bottom: 1px solid rgb(89, 87, 87,0.25);
  position: relative;
}

.news-thumb {
  flex: 0 0 64.7rem;
  max-width: 64.7rem;
  margin-right: 2rem;
}

.news-thumb-placeholder {
  width: 100%;
}

.news-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.news-content {
  flex: 1;
  padding-right: 3rem;
}

.news-label {
  display: inline-block;
  padding: 0.2rem 2.4rem;
  font-size: 2.9rem;
  color: #fff;
  background: #ea7e26;
  border-radius: 0.2rem;
  margin-bottom: 0.4rem;
}

.news-date {
  font-size: 3.2rem;
  color: #a9aaaa;
  font-weight: bold;
  margin: 3.2rem 0;
}
.news-text {
  font-size: 3.9rem;
  color: #595757;
  text-overflow: ellipsis;
  /* cursor: pointer; */
}
.news-text a {
  color: #b79ea2;
  text-decoration: underline;
}
.news-arrow-right {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.7rem;
  margin-top: 3rem;
}

.page-btn {
  width: 6.4rem;
  height: 6.4rem;
  background-color: #a9aaaa;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 5rem;
  border: none;
}

.page-btn[disabled] {
  cursor: default;
}

.page-btn.current {
  background: #ffffff;
  color: #595757;
  border:1px solid rgba(89, 87, 87, 0.17);
}
.pc {
  display: block;
}
.sp {
  display: none;
}
/* news 詳細 */
.newsdetail_wrapper {
  max-width: 1335px;
  margin: 0 auto;
}
.newsdetail_wrapper h2 {
  text-align: center;
  font-size: 4.2rem;
  color: #231815;
  font-weight: bold;
  margin: 34px auto;
}
.newsdetail_pagebtn {
  display: flex;
  justify-content: space-between;
  margin: 5rem auto;
}
.newsdetail_pagebtn .modoru-btn {
  max-width: 30rem;
  padding: 0 7rem;
  height: 6.4rem;
  line-height: 6.4rem;
  background-color: #A9AAAA;
  color: #595757;
  text-align: center;
  font-size: 3rem;
  font-family: 'Zen Old Mincho';
  cursor: pointer;
}
.newsdetail_title {
  background-color: #EDEDEC;
  width: 100%;
  padding: 2.4rem 2.1rem;
  box-sizing: border-box;
  font-size: 3rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.newsdetail_mintitle{
  color: #231815;
  border-bottom: 0.17px solid #c2b8b5;
  font-weight: bold;
  padding: 2px 0;
}
.newsdetail_textbox {
  display: flex;
  margin: 3.3rem 0;
  justify-content: space-between;
}
.newsdetail_textbox .text_remark {
  margin-top: 100px;
  font-weight: 400;
}
.newsdetail_textbox p {
  /* font-size: 3rem; */
  color: #231815;
  line-height: 1.5;
}
.newsdetail_mintro ,
.newsdetail_method {
  display: flex;
  align-items: center;
  gap: 3.8rem;
  min-height: 270px;
}
.newsdetail_mintro .imgbox_2 {
  display: flex;
  gap: 12px;
}
.newsdetail_method img {
  width: 100%;
}
.newsdetail_txt {
  color: #231815;
  /* font-size: 3rem; */
  margin: 3rem 0;
  line-height: 1.5;
}
.mintro_item {
  margin-top: 70px;
}
.mintro_item .newsdetail_mintitle {
  max-width: 497px;
}
/* concept */
.concept {
  max-width: 1000px;
  font-size: 2.2rem;
  font-weight: 1;
  color: black;
  letter-spacing: 0.12em;
  margin: 0 auto;
}
.concept_wrap {
  max-width: 1000px;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}

.concept_wrap h3 {
  font-size: 3rem;
  padding-top: 50px;
  padding-bottom: 50px;
}

.concept_wrap p {
  font-size: 1.6rem;
}

.concept_wrap__box3 {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -130px;
}
/* company */
.company_warp {
  background-color: #dbdcdc;
  padding: 30px 0;
}
.company {
  max-width: 1330px;
  font-size: 2.2rem;
  font-weight: 1;
  color: black;
  letter-spacing: 0.12em;
  margin: 0 auto;
  background-color: #dbdcdc;
}
.company h2 {
  font-size: 3.2rem;
  color: #595757;
  letter-spacing: 0;
  text-align: center;
}
.company .map {
  width: 50.6rem;
  height: 30.4rem;
  margin: 20px auto;
  overflow: hidden;
}
.info_table .flex {
  display: flex;
  align-items: flex-start;
  margin: 5px auto;
  color: #000;
  border-bottom: 1px solid #b4b4b5;
  padding: 20px 0;
}
.info_table .flex:last-child {
  border-bottom: none;
}
.info_table .flex div {
  width: 31%;
  flex-shrink: 0;
  font-size: 2.7rem;
  font-weight: bold;
  color: #595757;
}
.info_table .flex p {
  font-size: 2.7rem;
  font-weight: normal;
  color: #595757;
}
/* products */
.products_wrap {
  max-width: 1650px;
}
.products_item .title {
  font-size: 4rem;
  font-weight: 600;
  padding: 5px 10px;
  color: #595757;
  border-top: 0.37px solid #231815;
  border-bottom: 0.37px solid #231815;
}
.products_item .item_flex {
  display: flex;
  margin: 50px 0;
  gap: 14px;
}
.products_item .img_box {
  width: 585px;
  flex-shrink: 0;
  text-align: center;
}
.products_item .img_box img {
  width: 100%;
}
.products_item .img_grid {
  width: 585px;
  display: grid;
  grid-template-columns: repeat(2,2fr);
  gap: 2px;
}
.img_grid img {
  width: 100%;
}
.main_img_wrapper {
  position: relative;
  width: 100%;
}
.btn-prev,
.btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e3e3e3;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 4px;
}
.btn-prev { left: 10px; }
.btn-next { right: 10px; }

.btn-prev:hover,
.btn-next:hover {
  background: rgba(255,255,255,0.9);
}
.text_fir {
  border-bottom: 0.28px solid #231815;
  margin-bottom: 100px;
}
.text_fir h2{
  font-size: 4.3rem;
  font-weight: 600;
  color: #595757;
}

.text_fir p {
  font-size: 3rem;
  color: #595757;
  margin: 30px 0;
  font-weight: 600;
}
.text_se {
  font-size: 3rem;
  color: #595757;
  margin-bottom: 60px;
  line-height: 1.3;
}
.text_se .min_title{
  font-size: 3.4rem;
  font-weight: 600;
  margin-bottom: 28px;
}
.text_remark {
  font-size: 3rem;
  color: #231815;
  font-weight: 500;
  margin-bottom: 30px;
}
.text_th .seibun_title {
  font-size: 3.2rem;
  color: #231815;
  border-bottom: 0.24px solid #231815;
  font-weight: 600;
  margin-bottom: 50px;
}

.products_item .ingre,
.products_item .seibun{
  color: #B2B1B1;
  font-size: 2.7rem;
  margin-bottom: 2rem;
}
.products_item .labels {
  display: flex;
  gap: 10px;
  color: #B2B1B1;
  margin-bottom: 100px;
}
.products_item .labels div {
  font-size: 2.9rem;
  padding: 5px 10px;
  border: 0.2px solid #B2B1B1;
}
.products_item .buy_btn {
  background-color: #EA7E26;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 463px;
  padding: 15px 0;
  font-size: 3.4rem;
  font-weight: 600;
  margin-left: auto;
  cursor: pointer;
}
.thumb {
  border: 1px solid transparent;
}
.thumb.is-active {
  border: 1px solid #EA7E26;
}
/* policy */
.policy_wrap {
  padding-top: 2rem;
}
.policy_wrap h1 {
  font-size: 3.5rem;
}
.policy_wrap h2 {
  font-size: 16px;
}
.policy_wrap div {
  margin: 2rem auto;
}
.policy_wrap ul > li {
  font-size: 16px;
}
.policy_wrap p ,
.policy_wrap aside{
  font-size: 16px;
}

/* title */
.title_box {
  text-align: center;
}
.title_box h2 {
  font-family: "BeckmanFree", sans-serif;
  font-size: 6.3rem;
  font-weight: normal;
  color: #595757;
}
.title_box p {
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-size: 1.5rem;
  color: #595757;
  font-family: "Zen Old Mincho";
}

/* contact */

.contact_wrap {
  padding: 44px 0;
}
.contact_wrap .contact_box {
  max-width: 930px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 4.3rem;
}
.contact_wrap .box_item a {
  text-decoration: none;
}
.contact_wrap .box_item {
  width: 41.7rem;
  height: 13.9rem;
  background-color: #dbdcdc;
  text-align: center;
  padding: 2.4rem 2.4rem;
  box-sizing: border-box;
}
.contact_wrap .contact_btn {
  max-width: 36.9rem;
  height: 5.7rem;
  margin: 0 auto;
  margin-top: 10px;
  background-color: #595757;
  cursor: pointer;
}
.contact_wrap .contact_btn {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-family: "Zen Old Mincho";
}
.contact_wrap .contact_btn img {
  display: block;
  margin-right: 3px;
}
.contact_wrap .box_item p {
  font-size: 1.7rem;
  color: #595757;
  font-weight: bold;
  font-family: "Zen Old Mincho";
}
.contact_wrap .box_item h2 {
  font-size: 2.9rem;
  color: #595757;
  font-family: "Zen Old Mincho";
}
.contact_wrap .box_item small {
  font-size: 1.3rem;
  color: #595757;
  font-family: "Zen Old Mincho";
}

.page-home .contact_wrap {
  background-color: #dbdcdc;
}
.page-home .box_item {
  background-color: #ffffff;
}
/* footer */
.footer_wrap {
  background-color: #595757;
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 7.1rem;
  padding-bottom: 13.3rem;
  margin-top: 35px;
}
.area_wrap {
  text-align: center;
  margin-bottom: 7.5rem;
}
.area_wrap .footer_logo {
  max-width: 316px;
  margin: 0 auto;
  text-align: center;
}
.area_wrap p {
  font-size: 1.9rem;
  color: #b4b4b5;
  margin-top: 1.9rem;
}
.local_wrap {
  flex-wrap: wrap;
}

.local_wrap ul {
  text-align: center;
}

.local_wrap ul li {
  display: inline-block;
  border-right: 1px solid #b4b4b5;
}
.local_wrap li:last-child {
  border-right: none;
}
.local_wrap ul li a {
  font-size: 2.1rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  padding: 0 25px;
}

.local_wrap ul li a:hover {
  color: #fff;
}
/* hr */
hr {
  height: 1px;
  background-color: rgba(35, 24, 21, 0.25);
  border: 0;
  margin-top: 20px;
}

/* small */
small {
  display: block;
  text-align: center;
  font-size: 1.2rem;
}
