@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Libre Baskerville', 'Poppins', sans-serif;
}

/* =====================
  respoonsive
===================== */

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

/* =====================
  module
===================== */

a:hover {
  opacity: 0.7;
}

.section_title {
  text-align: center;
  font-family: Libre Baskerville;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.52px;

  background: var(--2, linear-gradient(93deg, #3A3A3A 8.75%, #696565 24.2%, #3A3A3A 40.17%, #3A3A3A 62.31%, #696565 77.76%, #3A3A3A 93.21%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =====================
    layout
===================== */

.container {
  width: 100%;
  max-width: 415px;
  margin: 0 auto;
}

/* =====================
  cta
===================== */

/* =====================
  animation
===================== */

.fadein {
  /* 最初は非表示 */
  transform: translateY(0);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.5s, opacity 1.5s, visibility 1.5s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* =====================
  bg
===================== */

.bg-back {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #F2D9D7;
  z-index: -1;
  margin-top: -24px;
  margin-bottom: -24px;
}

.bg_logo {
  display: block !important;

  position: fixed;
  top: 40px;
  left: 3%;
  z-index: -1;
}

.bg_title {
  color: #FFF;
  font-family: Libre Baskerville;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.6px;
}

.bg_subtitle {
  color: #FFF;
  font-family: Libre Baskerville;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.96px;

  margin-top: 10px;
}

.bg_1 {
  display: block !important;

  position: fixed;
  top: 360px;
  left: 5%;
  width: 20%;
  z-index: -1;
}

.bg_2 {
  display: block !important;

  position: fixed;
  top: 160px;
  right: 4%;
  width: 20%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .bg_1 {
    display: none !important;
  }

  .bg_2 {
    display: none !important;
  }
}

/* =====================
  header
===================== */

.header {
  position: fixed;
  top: 72px;
  left: calc(50% + 80px);
  z-index: 100;
}

.header_list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  transition: color 0.3s ease;

  color: #FFF;
  font-family: Libre Baskerville;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}

.single_header_list {
  color: #3a3a3a;
}

.color-change {
  color: #3a3a3a;
}

.header_item {
  vertical-align: middle;
}

.bullet {
  font-size: 6px;
  vertical-align: middle;
  opacity: 0;
  margin-right: 10px;
}

/* =====================
  kv
===================== */

.kv {
  background-color: #FFF;
  margin-top: 24px;
}

.kv_1 {
  width: 82%;

  padding: 12px 0;
  margin-left: 14%;
}

.kv_title {
  text-align: center;
  font-family: Libre Baskerville;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.8px;

  background: var(--2, linear-gradient(93deg, #3A3A3A 8.75%, #696565 24.2%, #3A3A3A 40.17%, #3A3A3A 62.31%, #696565 77.76%, #3A3A3A 93.21%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kv_subtitle {
  text-align: center;
  font-family: Libre Baskerville;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.24px;

  background: var(--2, linear-gradient(93deg, #3A3A3A 8.75%, #696565 24.2%, #3A3A3A 40.17%, #3A3A3A 62.31%, #696565 77.76%, #3A3A3A 93.21%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  margin-top: 8px;
}

.kv_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 92%;
  margin: 0 auto;
  margin-top: 22px;
}

.kv_2 {
  width: 56%;
}

.l_scrolldown {
  position: relative;
  width: 36%;
}

.scrolldown {
  animation: rotating 10s linear infinite;
}

.scrolldown_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;

  width: 14px;
  height: 16px;
}

@keyframes rotating {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* =====================
  news
===================== */

.news {
  background-color: #FFF;
  padding-top: 64px;
  padding-bottom: 80px;
}

.news_items {
  width: 88%;
  margin: 0 auto;
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.l_news_item {
  width: 100%;
  height: 81px;
  border-radius: 24px 0px;
  background: #F8ECEB;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.02);

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 24px;
}

.l_single_news_item {
  background: #fff;
  margin-top: 24px;

  position: relative;
  justify-content: center;
}

.l_news_item_left p:first-child {
  color: #3A3A3A;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;

  margin-top: 2px;
}

.l_news_item_left p:last-child {
  color: #3A3A3A;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.28px;
}

.l_news_item_right {
  width: 10px;
}

.l_single_news_item_right {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  right: 24px
}

/* =====================
  sns
===================== */

.sns {
  background: #F8ECEB;
  padding: 48px 0;
}

.sns_items {
  width: 88%;
  margin: 0 auto;
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sns_items a {
  width: 100%;
}

.l_sns_item {
  width: 100%;
  height: 81px;

  border-radius: 24px 0px;
  background: #FFF;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.02);

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 24px;
}

.l_sns_item img {
  width: 32px;
}

.l_sns_item p {
  color: #3A3A3A;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 157.143% */
  letter-spacing: 0.28px;
}

.sns_item_youyube_title {
  text-align: center;
}

.l_sns_item p span {
  color: rgba(58, 58, 58, 0.64);
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.24px;
}

/* =====================
  margin
===================== */

.margin {
  background: #FFF;
  padding: 40px 0;
}

/* =====================
  produce
===================== */

.produce {
  background: #F8ECEB;
  padding: 48px 0;
}

.produce_items {
  width: 88%;
  margin: 0 auto;
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  gap: 56px;
}

.produce_img {
  width: 100%;
  margin: 0 auto;
}

.produce_item_subtxt {
  color: rgba(58, 58, 58, 0.64);
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;
}

.produce_logo_img {
  width: 48%;
  margin: 0 auto;
  margin-top: 4px;
}

.produce_item_txt {
  width: 100%;
  margin: 0 auto;

  color: #3A3A3A;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 185.714% */
  letter-spacing: 0.28px;

  margin-top: 16px;
}


/* =====================
  company
===================== */

.company {
  background: #FFF;
  padding: 80px 0;
}

.company_contents {
  width: 88%;
  margin: 0 auto;
  margin-top: 40px;
}

.company_name {
  color: #3A3A3A;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;

  margin-top: 32px;
}

.company_message {
  color: #3A3A3A;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  letter-spacing: 0.28px;

  margin-top: 16px;
}

.company_table {
  width: 88%;
  margin: 0 auto;
  margin-top: 32px;
}

.company_table_column {
  padding: 16px 0;
  border-bottom: 1px solid rgba(58, 58, 58, 0.24);
}

.company_table_column_title {
  color: #3A3A3A;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
  margin-top: 6px;
}

.company_table_column_txt {
  color: #3A3A3A;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;

  margin-top: 6px;
}

/* =====================
  single_news
===================== */

.single_news_title {
  text-align: center;
  font-family: Libre Baskerville;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 3.52px;
  color: #3A3A3A;

  background-color: #fff;
  padding-top: 50px;
  padding-bottom: 48px;
}

.single_news_contents {
  padding: 24px;
  padding-top: 50px;
  padding-bottom: 48px;
  background: #F8ECEB;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.02);
}

.single_news_contents_time {
  color: #3A3A3A;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}

.single_news_contents_title {
  color: var(--black, #3A3A3A);
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 91.667% */
  letter-spacing: 0.48px;
  margin-top: 16px;
}

.single_news_contents_txt {
  margin-top: 32px;
}

.single_news_contents_txt p {
  color: #000;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  /* 157.143% */
  letter-spacing: 0.28px;

  word-wrap: break-word;
  overflow-wrap: break-word;

  margin-top: 12px;
}

.single_news_contents_txt a {
  color: #AF4A64;
}


/* =====================
  contact
===================== */

.contact {
  background: #F8ECEB;
  padding: 48px 0;
  margin-bottom: 24px;
}

.contact_txt {
  color: #3A3A3A;
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;

  margin-top: 40px;
}

.btn {
  color: #FFF;
  font-family: Poppins;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;

  position: relative;
  display: block;
  margin: 0 auto;
  margin-top: 16px;
  width: 88%;
  padding: 20px;

  cursor: pointer;

  border-radius: 80px;
  background: #AF4A64;
  box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.16);
}

.btn_icon {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  right: 40px
}

.copyright {
  color: #3A3A3A;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.28px;

  margin-left: 6%;
  margin-top: 24px;
}