@charset "UTF-8";
/*======================================================
トップ
======================================================*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes textanimation {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatingY {
  0% {
    transform: translateY(-6%);
  }
  100% {
    transform: translateY(6%);
  }
}
.mv_inner {
  position: relative;
  min-height: 100vh;
}
.mv_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.mv_inner .mv_swiper {
  position: fixed;
  inset: 0;
  z-index: 1;
  height: 100vh;
  will-change: transform;
}
.mv_inner .mv_swiper .swiper-wrapper,
.mv_inner .mv_swiper .swiper-slide {
  height: 100%;
  overflow: hidden;
}
.mv_inner .mv_swiper .swiper-slide-active .mv_item, .mv_inner .mv_swiper .swiper-slide-duplicate-active .mv_item, .mv_inner .mv_swiper .swiper-slide-prev .mv_item {
  animation: zoomUp 7s linear 0s normal both;
}
.mv_inner .mv_swiper .mv_item {
  position: relative;
  width: 100%;
  height: 100%;
  will-change: transform;
  overflow: hidden;
}
.mv_inner .mv_swiper .mv_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv_inner .mv_item_txt {
  position: absolute;
  bottom: 100px;
  left: 28px;
  z-index: 3;
  color: #fff;
  font-family: "Lora", serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .mv_inner .mv_item_txt {
    bottom: 80px;
    left: 80px;
  }
}
.mv_inner .mv_item_txt .lead {
  font-size: 46px;
  font-weight: 400;
  padding-bottom: 15px;
  line-height: 1.3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv_inner .mv_item_txt .lead {
    font-size: 60px;
  }
}
.mv_inner .mv_item_txt .txt {
  font-size: 23px;
  line-height: 1.3;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .mv_inner .mv_item_txt .txt {
    font-size: 28px;
  }
}
.mv_inner .mv_item_txt .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(2em);
  animation: textanimation 1s forwards;
  animation-delay: calc(var(--char-index) * 0.05s);
}

.ttl .lead {
  font-size: 44px;
  line-height: 1.4;
  padding-bottom: 35px;
  letter-spacing: 0.01em;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .ttl .lead {
    font-size: 56px;
    padding-bottom: 35px;
  }
}
.ttl .lead .en {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.02em;
  padding-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .ttl .lead .en {
    font-size: 18px;
    letter-spacing: 0.44em;
  }
}
.ttl .txt {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  padding-bottom: 65px;
}
@media screen and (min-width: 768px) {
  .ttl .txt {
    font-size: 21px;
    padding-bottom: 30px;
  }
}

.ttl_en h2 {
  font-size: 26px;
  font-family: "Lora", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.17em;
  padding-bottom: 65px;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .ttl_en h2 {
    font-size: 30px;
    padding-bottom: 35px;
  }
}
.ttl_en .jp {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 30px;
  color: #000;
}
@media screen and (min-width: 768px) {
  .ttl_en .jp {
    font-size: 40px;
  }
}

.btn a {
  display: block;
  background: #DEE0D7;
  padding: 30px 0 30px 20px;
  color: #000;
  position: relative;
  text-align: left;
  font-size: 17px;
  letter-spacing: 0.01em;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  max-width: 300px;
  margin: 0 auto;
  line-height: 1;
  font-style: normal;
}
.btn a::before {
  position: absolute;
  content: "";
  width: 45px;
  height: 20px;
  display: inline-block;
  background: url(../img/line_mark.svg) center/100% 100% no-repeat;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.btn a .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  font-style: normal;
  color: #000;
}

.concept_wrap {
  background: linear-gradient(to bottom, #202120 calc(100% - 60px), #F4F4F1 0);
  padding: 30px 0 0;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .concept_wrap {
    background: linear-gradient(to bottom, #202120 calc(100% - 30px), #F4F4F1 0);
    padding: 70px 0 0;
  }
}
.concept_wrap .inner {
  position: relative;
}
.concept_wrap .inner .concept_fx {
  position: relative;
}
@media screen and (min-width: 768px) {
  .concept_wrap .inner .concept_fx {
    display: flex;
    gap: 0 10%;
    justify-content: space-between;
  }
}
.concept_wrap .inner .concept_fx .concept_fx_item {
  color: #fff;
}
.concept_wrap .inner .concept_fx .concept_fx_item.left_col {
  width: 100%;
  max-width: 213px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .concept_wrap .inner .concept_fx .concept_fx_item.left_col {
    padding-left: 0;
    width: 50%;
    max-width: 534px;
  }
}
.concept_wrap .inner .concept_fx .concept_fx_item.right_col {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .concept_wrap .inner .concept_fx .concept_fx_item.right_col {
    width: 50%;
  }
}
.concept_wrap .inner .concept_fx .concept_fx_item.right_col img {
  width: 100%;
  max-width: 230px;
  display: block;
  margin: 0 0 90px auto;
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .concept_wrap .inner .concept_fx .concept_fx_item.right_col img {
    max-width: 100%;
    margin: 0 auto 90px 0;
  }
}
.concept_wrap .inner .concept_fx .concept_fx_item .ttl {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .concept_wrap .inner .concept_fx .concept_fx_item .ttl {
    padding-top: 170px;
  }
}
.concept_wrap .inner .concept_bt_img {
  width: 100%;
  max-width: 228px;
  display: block;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .concept_wrap .inner .concept_bt_img {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
  }
}
.concept_wrap .concept_bg01 {
  position: absolute;
  top: 100px;
  right: -150px;
  width: 400px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .concept_wrap .concept_bg01 {
    right: 220px;
    width: 627px;
    top: -50px;
  }
}
.concept_wrap .concept_bg02 {
  position: absolute;
  bottom: 120px;
  right: -20px;
  width: 217px;
  z-index: 1;
  right: 208px;
}
@media screen and (min-width: 768px) {
  .concept_wrap .concept_bg02 {
    bottom: 0;
    left: -20px;
    width: 434px;
  }
}

.brand_wrap {
  background: #F4F4F1;
  padding: 10px 0 65px;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .brand_wrap {
    padding: 100px 0 115px;
  }
}
.brand_wrap .brand_bg01 {
  position: absolute;
  top: -200px;
  right: -110px;
  width: 286px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .brand_wrap .brand_bg01 {
    top: -380px;
    right: -300px;
    width: 664px;
  }
}
@media screen and (min-width: 768px) {
  .brand_wrap .brand_fx {
    display: flex;
    gap: 0 60px;
    justify-content: space-between;
  }
}
.brand_wrap .brand_fx .brand_fx_item .txt {
  font-size: 16px;
  line-height: 2;
  padding-bottom: 10px;
}
.brand_wrap .brand_fx .brand_fx_item .brand_link {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .brand_wrap .brand_fx .brand_fx_item.right_col {
    width: 100vw;
    margin-left: auto;
    margin-right: calc(50% - 50vw);
  }
}
.brand_wrap .btn a {
  margin-bottom: 25px;
  padding-top: 15px;
  padding-bottom: 15px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .brand_wrap .btn a {
    margin: 0 auto 25px 0;
  }
}
.brand_wrap .btn a:last-child {
  margin-bottom: 0;
}
.brand_wrap .ttl .lead .en {
  color: #477141;
  padding-bottom: 20px;
}
.brand_wrap .brand_swiper_wrap {
  width: 100dvw;
  margin-left: calc(50% - 50dvw);
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .brand_wrap .brand_swiper_wrap {
    width: 100%;
    max-width: 950px;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
    overflow: hidden;
  }
}
.brand_wrap .brand_swiper_wrap .brand_swiper {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .brand_wrap .brand_swiper_wrap .brand_swiper {
    overflow: visible;
  }
}
.brand_wrap .brand_swiper_wrap .brand_swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
}

.products_wrap {
  background: url(../img/top/products_bg_sp.webp) top center/cover no-repeat;
  background-attachment: scroll;
  padding: 66px 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .products_wrap {
    padding: 75px 0 0;
    background: url(../img/top/products_bg_pc.webp) right top/cover no-repeat;
    background-attachment: fixed;
  }
}
.products_wrap .products_box h2 {
  padding-bottom: 35px;
}
.products_wrap .products_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_list {
    gap: 16px;
  }
}
.products_wrap .products_list_item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_list_item {
    max-width: 735px;
  }
}
.products_wrap .products_list_item:nth-child(1) {
  background: #081008;
  width: calc(100% + 20px);
  margin-left: -20px;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_list_item:nth-child(1) {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
}
.products_wrap .products_list_item:nth-child(2) {
  background: #2B2D21;
  width: calc(100% + 20px);
  margin-left: auto;
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_list_item:nth-child(2) {
    width: 100%;
    margin-right: 0;
    margin-left: auto;
  }
}
.products_wrap .products_list_item:nth-child(3) {
  background: #344008;
  width: calc(100% + 20px);
  margin-left: -20px;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_list_item:nth-child(3) {
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }
}
.products_wrap .products_list_itemFx {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_list_itemFx {
    min-height: 194px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 39px;
  }
}
.products_wrap .products_list_itemFx_item.right_col p {
  width: 100%;
}
.products_wrap .products_list_itemFx_item.right_col img {
  display: block;
  width: 100%;
  height: 126px;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_list_itemFx_item.right_col {
    width: 240px;
    flex-shrink: 0;
  }
  .products_wrap .products_list_itemFx_item.right_col img {
    height: 194px;
  }
}
.products_wrap .products_list_itemFx_item.left_col {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_list_itemFx_item.left_col {
    width: 100%;
    max-width: 436px;
    padding: 0;
  }
}
.products_wrap .products_info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.products_wrap .products_name {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_name {
    flex-direction: row;
    align-items: flex-end;
  }
}
.products_wrap .products_name .grade {
  color: #83AA66;
  font-family: "Lora", serif;
  font-weight: 500;
  font-size: 29px;
  letter-spacing: 0.11em;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_name .grade {
    font-size: 34px;
  }
}
.products_wrap .products_name .label {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-transform: uppercase;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_name .label {
    font-size: 21px;
  }
}
.products_wrap .products_desc {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
}
.products_wrap .more_btn {
  display: flex;
  justify-content: flex-end;
}
.products_wrap .more_btn p {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  padding-right: 55px;
  font-style: normal;
}
.products_wrap .more_btn p::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 20px;
  display: inline-block;
  background: url(../img/line_mark-g.svg) center/100% 100% no-repeat;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.products_wrap .products_bottom_btn {
  margin-top: 40px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .products_wrap .products_bottom_btn {
    margin-top: 60px;
    padding-bottom: 100px;
  }
}
.products_wrap .products_bottom_btn a {
  width: 100%;
  max-width: 300px;
  height: 80px;
  margin: 0 auto;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0 50px 0 21px;
  position: relative;
}
.products_wrap .products_bottom_btn a::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 20px;
  display: inline-block;
  background: url(../img/line_mark.svg) center/100% 100% no-repeat;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  filter: brightness(0) invert(1);
}

.column_wrap {
  background: #F4F4F1;
  padding: 65px 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .column_wrap {
    padding: 120px 0 120px;
  }
}
.column_wrap .online_brnBox {
  max-width: 1008px;
  margin: 0 auto;
  margin-bottom: 65px;
}
@media screen and (min-width: 768px) {
  .column_wrap .online_brnBox {
    margin-bottom: 95px;
  }
}
.column_wrap .ttl_en h2 {
  padding-bottom: 0;
  color: #477141;
}
.column_wrap .ttl_en .jp {
  color: #000;
  letter-spacing: 0.01em;
}
.column_wrap .column_bg01 {
  position: absolute;
  top: 90px;
  left: -30px;
  width: 170px;
  height: 220px;
  z-index: -1;
}
.column_wrap .column_bg01 img {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .column_wrap .column_bg01 {
    width: 407px;
    height: 376px;
    top: 70px;
    left: -70px;
  }
}
.column_wrap .column_bg02 {
  display: none;
}
@media screen and (min-width: 768px) {
  .column_wrap .column_bg02 {
    display: block;
    position: absolute;
    top: 0;
    right: 100px;
    width: 280px;
    height: 330px;
    z-index: -1;
  }
}
.column_wrap .column_post_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .column_wrap .column_post_list {
    flex-direction: row;
    align-items: flex-start;
    gap: 7px;
    margin-top: 41px;
    justify-content: center;
  }
}
.column_wrap .column_post_item {
  width: 100%;
  max-width: 342px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .column_wrap .column_post_item {
    max-width: 464px;
    margin: 0;
  }
}
.column_wrap .column_post_thumb {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .column_wrap .column_post_thumb {
    margin-top: 0;
  }
}
.column_wrap .column_post_thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  max-height: 195px;
}
@media screen and (min-width: 768px) {
  .column_wrap .column_post_thumb img {
    max-height: 310px;
  }
}
.column_wrap .column_post_body {
  margin-top: 10px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .column_wrap .column_post_body {
    margin-top: 25px;
    padding: 0 35px;
  }
}
.column_wrap .column_post_body .date {
  color: #477141;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.column_wrap .column_post_info {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .column_wrap .column_post_info {
    margin-top: 16px;
  }
}
.column_wrap .column_post_info .txt {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .column_wrap .column_post_info .txt {
    height: 64px;
    -webkit-line-clamp: 2;
  }
}
.column_wrap .column_more_btn {
  margin-top: 8px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .column_wrap .column_more_btn {
    margin-top: 16px;
  }
}
.column_wrap .column_more_btn p {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  text-transform: uppercase;
  position: relative;
  padding-right: 65px;
}
.column_wrap .column_more_btn p::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 35px;
  height: 20px;
  display: inline-block;
  transform: translateY(-50%);
  background: url(../img/line_mark-g.svg) center/100% 100% no-repeat;
  filter: brightness(0);
}
.column_wrap .columnTop_more_btn {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .column_wrap .columnTop_more_btn {
    margin-top: 60px;
  }
}
.column_wrap .columnTop_more_btn a {
  width: 100%;
  max-width: 300px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  color: #000;
  background: #DEE0D7;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 0 50px 0 21px;
  position: relative;
}
.column_wrap .columnTop_more_btn a::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 20px;
  display: inline-block;
  background: url(../img/line_mark.svg) center/100% 100% no-repeat;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  filter: brightness(0);
}
.column_wrap .matcha_innovation_brn {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .column_wrap .matcha_innovation_brn {
    margin-top: 95px;
  }
}

.information_wrap {
  background: #fff;
  padding: 64px 0;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .information_wrap {
    padding: 116px 0 100px;
  }
}
.information_wrap .info_block {
  width: 100%;
  border-bottom: 1px solid #CCC;
}
@media screen and (min-width: 768px) {
  .information_wrap .info_block {
    padding-bottom: 40px;
  }
}
.information_wrap .information_title {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.17em;
  color: #477141;
}
@media screen and (min-width: 768px) {
  .information_wrap .information_title {
    font-size: 30px;
  }
}
.information_wrap .info_fx {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .information_wrap .info_fx {
    flex-direction: row;
    gap: 140px;
    align-items: flex-start;
  }
}
.information_wrap .info_fx_item.left_col {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .information_wrap .info_fx_item.left_col {
    max-width: 300px;
    flex-shrink: 0;
    gap: 60px;
  }
}
.information_wrap .info_fx_item.right_col {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .information_wrap .info_fx_item.right_col {
    flex: 1;
  }
}
.information_wrap .information_list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .information_wrap .information_list {
    gap: 32px;
  }
}
.information_wrap .information_list_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px dashed #CCCCCC;
}
.information_wrap .information_list_item a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: inherit;
  text-decoration: none;
}
.information_wrap .information_list_item:last-child {
  border-bottom: none;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .information_wrap .information_list_item:last-child {
    border-bottom: none;
    margin-bottom: 40px;
  }
}
.information_wrap .information_list_item .date {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #83AA66;
}
.information_wrap .information_list_item .txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #000;
}
.information_wrap .information_btn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .information_wrap .information_btn {
    margin: 0;
  }
}
.information_wrap .information_btn a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #DEE0D7;
  padding: 0 21px;
  height: 80px;
  width: 100%;
  position: relative;
  color: #000;
}
.information_wrap .information_btn a .en {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
}
.information_wrap .information_btn a::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 20px;
  display: inline-block;
  background: url(../img/line_mark.svg) center/100% 100% no-repeat;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  filter: brightness(0);
}
.information_wrap .social_block {
  width: 100%;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .information_wrap .social_block {
    flex: 1;
    padding-top: 40px;
  }
}
.information_wrap .social_section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .information_wrap .social_section {
    gap: 24px;
    align-items: stretch;
    margin: 0 auto;
  }
}
.information_wrap .social_header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .information_wrap .social_header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
}
.information_wrap .social_header_left {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: center;
  width: 100%;
  max-width: 342px;
}
@media screen and (min-width: 768px) {
  .information_wrap .social_header_left {
    align-items: flex-start;
    max-width: none;
  }
}
.information_wrap .social_title_box {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: start;
  width: 100%;
}
.information_wrap .social_title {
  font-family: "Lora", serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.17em;
  color: #477141;
  text-align: center;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .information_wrap .social_title {
    font-size: 30px;
    text-align: left;
  }
}
.information_wrap .social_subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #477141;
  line-height: 1;
}
.information_wrap .social_desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #000;
  text-align: left;
  width: 100%;
  max-width: 342px;
}
@media screen and (min-width: 768px) {
  .information_wrap .social_desc {
    text-align: left;
    max-width: none;
  }
}
.information_wrap .social_images {
  display: grid;
  grid-template-columns: repeat(2, 160px);
  gap: 22px;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .information_wrap .social_images {
    grid-template-columns: repeat(4, 283px);
    width: 100%;
    margin: 0;
    justify-content: start;
  }
}
.information_wrap .social_follow {
  align-items: center;
}
.information_wrap .social_follow .follow_txt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: #000;
}
.information_wrap .social_follow.sp {
  display: flex;
  gap: 64px;
  width: 100%;
  max-width: 342px;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .information_wrap .social_follow.sp {
    display: none;
  }
}
.information_wrap .social_follow.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .information_wrap .social_follow.pc {
    display: flex;
    gap: 48px;
    width: 100%;
    max-width: 360px;
    justify-content: flex-end;
  }
}
.information_wrap .social_icons {
  display: flex;
  align-items: center;
  gap: 56px;
}
@media screen and (min-width: 768px) {
  .information_wrap .social_icons {
    gap: 48px;
  }
}
.information_wrap .social_icon {
  display: block;
}
.information_wrap .social_icon.instagram {
  max-width: 35px;
}
.information_wrap .social_icon.facebook {
  max-width: 38px;
}