@charset "UTF-8";
/* 共通のスタイル */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #1E2A31;
}

img {
  width: 100%;
  height: auto;
}

.g_bg {
  background-color: #F6F8F9;
}

/* ヘッダー */
header {
  background-color: #fff;
  width: 100%;
  padding: 16px 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  position: fixed;
  z-index: 10;
}
header a {
  display: inline-block;
  width: 180px;
  cursor: pointer;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
header nav a {
  max-width: 200px;
  width: 100%;
  padding: 6px 18px;
  border: 2px solid;
  border-radius: 1.5rem;
  font-weight: 600;
}
header nav a:nth-child(1) {
  background-color: #06C68D;
  border-color: #06C68D;
  color: white;
  white-space: nowrap;
}
header nav a:nth-child(2) {
  background-color: white;
  border-color: #1E2A31;
  color: #1E2A31;
  white-space: nowrap;
}

@media (width < 768px) {
  .none767 {
    display: none;
  }
  header {
    padding: 8px 12px;
    gap: 1.5rem;
  }
  header a {
    display: inline-block;
    width: 110px;
  }
  header nav {
    gap: 12px;
  }
  header nav a {
    padding: 4px 12px;
    font-size: 12px;
  }
}
@media (width < 400px) {
  header {
    padding: 8px 12px;
    gap: 1rem;
  }
  header a {
    display: inline-block;
    width: 95px;
  }
  header nav {
    gap: 8px;
  }
  header nav a {
    padding: 4px 8px;
    font-size: 11px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
label {
  margin: 0;
}

h1 {
  font-size: 24px;
}

a {
  text-decoration: none;
  color: #1E2A31;
}

/* メインコンテンツ */
section {
  padding: 3rem clamp(0.75rem, 0.15rem + 3vw, 3.75rem);
}

h2 {
  font-size: 20px;
}

.inner {
  max-width: calc(1180px + 10vw);
  margin: 0 auto;
}

.wrap {
  margin-top: 2rem;
}

.t_ce {
  text-align: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gap16 {
  gap: 1rem;
}

.g_btn {
  max-width: 200px;
  width: 100%;
  padding: 6px 18px;
  border: 2px solid #06C68D;
  border-radius: 1.5rem;
  font-weight: 600;
  background-color: #06C68D;
  text-align: center;
  color: white;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.g_btn:hover {
  background-color: white;
  color: #06C68D;
}

.b_btn {
  max-width: 200px;
  width: 100%;
  padding: 6px 18px;
  border: 2px solid #1E2A31;
  border-radius: 1.5rem;
  font-weight: 600;
  background-color: white;
  text-align: center;
  color: #1E2A31;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.b_btn:hover {
  background-color: #1E2A31;
  color: white;
}

.mini_title,
.sub {
  font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.5rem);
  font-weight: bold;
}

.mini_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.mini_title span {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: #4AFF93;
}

.title {
  font-size: clamp(1.25rem, 1.1rem + 1.75vw, 3rem);
}

.mt16 {
  margin-top: 1rem;
}

.hero {
  max-width: calc(1440px + 10vw);
  margin-inline: auto;
  padding-bottom: 3rem;
  padding: 4rem 2rem 4rem;
}

.sp {
  display: none;
}

.hero_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero_inner .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.hero_inner .left .title {
  margin-bottom: 1rem;
}
.hero_inner .right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero_inner .right .in_img {
  position: relative;
  width: 100%;
  z-index: 3;
  padding: clamp(1rem, -0.333rem + 2.78vw, 3rem) clamp(3rem, 1rem + 4.17vw, 6rem);
}
.hero_inner .right .bg_slash {
  position: absolute;
  z-index: 2;
  background: url("../images/LP/slash.png") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

@media (width < 768px) {
  .hero_inner {
    grid-template-columns: 1fr;
  }
  .hero_inner .left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  .hero_inner .left .title {
    margin-bottom: 0rem;
  }
  .hero_inner .right {
    display: none;
  }
  .hero_inner .sp {
    display: block;
    width: 300px;
  }
}
.t40 {
  font-weight: 600;
  font-size: clamp(1.125rem, 0.85rem + 1.38vw, 2.5rem);
}

.p20 {
  font-weight: 600;
  font-size: clamp(0.813rem, 0.725rem + 0.44vw, 1.25rem);
}

.items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4rem;
}
.items .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}
.items .item .left {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.items .item .left .g_title {
  color: #06C68D;
  font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.5rem);
  font-weight: 600;
}
.items .item .left .g_title strong {
  font-size: 2em;
  margin-left: 12px;
}
.items .item .right {
  width: 50%;
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.items .item .right .mini {
  max-width: 300px;
}
.items .item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (width < 768px) {
  .items {
    gap: 3rem;
  }
  .items .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .items .item .left {
    width: 100%;
  }
  .items .item .right {
    width: 100%;
    padding: 1rem 0;
  }
  .items .item .right .mini {
    max-width: 200px;
  }
  .items .item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.grid1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (width < 768px) {
  .grid1-1 {
    grid-template-columns: 1fr;
  }
}
.table {
  background: rgb(201, 248, 227);
  background: linear-gradient(234deg, rgb(201, 248, 227) 0%, rgb(180, 250, 213) 100%);
  gap: 2rem;
  padding: clamp(1rem, 0.6rem + 2vw, 3rem);
  border-radius: 1rem;
  margin-top: 3rem;
}
.table .title {
  color: #06C68D;
}
.table .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.table .left .flex {
  margin-top: 2rem;
}

.with {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.max800 {
  max-width: 800px;
  margin: 0 auto;
}

.c_green {
  color: #06C68D;
}

.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  gap: 2rem;
  margin-bottom: 1rem;
}
.price .detail {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.price .detail h3 {
  padding: 4px 1rem;
}
.price .detail p {
  font-weight: bold;
}
.price .detail p:nth-of-type(2) {
  color: #06C68D;
}
.price .detail strong {
  color: #06C68D;
  font-size: clamp(2rem, 1.6rem + 2vw, 4rem);
}
.price .detail .strong {
  font-size: clamp(1.75rem, 1.35rem + 2vw, 3.75rem);
}
.price .detail .title small {
  font-size: 0.5em;
}

.normal {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  font-weight: 600;
}

.flow_wrap {
  padding: 2rem 1rem;
  border-radius: 1rem;
}

.flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem 2rem;
  margin-top: 4rem;
}
.flow .item {
  width: 250px;
  position: relative;
  padding: 1rem 1.5rem;
  background-color: white;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flow .item p {
  text-align: center;
}
.flow .item .ab_num {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #4AFF93;
  color: white;
  font-size: clamp(1.5rem, 1.175rem + 1.63vw, 3.125rem);
  border-radius: 100%;
  font-weight: 600;
  padding-bottom: 8px;
}

.faq-section .answer {
  display: none;
  margin-top: 5px;
}

.faq-section .question {
  cursor: pointer;
  margin-top: 16px;
}

/* スタイルをここに追加してください。例えば、質問をホバーしたときに色を変えるなど。 */
.faq-section .question:hover {
  background-color: #f5f5f5;
}

.faq_wrap .faq {
  font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.5rem);
  font-weight: 600;
}
.faq_wrap .faq .question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 24px;
  background-color: #F6F8F9;
  border-radius: 12px;
}
.faq_wrap .faq .answer {
  padding: 12px 24px;
  background-color: white;
  border-radius: 12px;
}
.faq_wrap .faq span {
  color: #06C68D;
  margin-right: 8px;
}

/* フォーム */
.thanks,
.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
}
.thanks.active,
.form.active {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}
.thanks .inner,
.form .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 600px;
  border-radius: 12px;
  background-color: #FFF;
  padding: 3rem;
  position: relative;
}
.thanks .inner h2,
.form .inner h2 {
  font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 1rem;
}
.thanks .inner label,
.form .inner label {
  font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.5rem);
  color: #1E2A31;
  font-weight: bold;
}
.thanks .inner label a,
.form .inner label a {
  text-decoration: underline;
  cursor: pointer;
}
.thanks .inner label.check,
.form .inner label.check {
  font-size: clamp(0.875rem, 0.75rem + 0.63vw - 0.3rem, 1.2rem);
}
.thanks .inner .image-area,
.form .inner .image-area {
  position: relative;
}
.thanks .inner .image-area dotlottie-player,
.form .inner .image-area dotlottie-player {
  position: absolute;
  top: 0;
  width: 100%;
  height: 75%;
  z-index: 0;
}
.thanks .inner p,
.form .inner p {
  margin-bottom: 2rem;
}
.thanks .inner input.textbox, .thanks .inner textarea.textbox,
.form .inner input.textbox,
.form .inner textarea.textbox {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: clamp(0.875rem, 0.75rem + 0.63vw - 0.3rem, 1.2rem);
  margin-top: 4px;
  margin-bottom: 16px;
  resize: vertical;
  white-space: normal;
  font-weight: bold;
}
.thanks .inner input.checkbox, .thanks .inner textarea.checkbox,
.form .inner input.checkbox,
.form .inner textarea.checkbox {
  cursor: pointer;
}
.thanks .inner .close_btn,
.form .inner .close_btn {
  position: absolute;
  width: 2rem;
  top: 8px;
  right: 8px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.thanks .inner .close_btn:hover,
.form .inner .close_btn:hover {
  opacity: 0.5;
}
.thanks .inner .required,
.form .inner .required {
  margin-left: 2px;
  color: red;
  font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.5rem);
  font-weight: bold;
}
.thanks .inner button,
.thanks .inner a,
.form .inner button,
.form .inner a {
  margin-top: 2rem;
  cursor: pointer;
  font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.5rem);
}

.bot_frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  padding: 5rem 1rem;
  background: url("../images/LP/bot_frame.png") center center no-repeat;
  background-size: cover;
  margin-top: 2rem;
}
.bot_frame .title {
  color: white;
}
.bot_frame .g_btn {
  background-color: white !important;
  color: #06C68D !important;
  border-color: white !important;
  padding: 8px 24px;
  font-size: clamp(0.875rem, 0.75rem + 0.63vw, 1.5rem);
  border-radius: 2rem;
  max-width: 295px;
  cursor: pointer;
}
.bot_frame .g_btn:hover {
  color: white !important;
  background-color: #06C68D !important;
}

/* フッター */
footer {
  background-color: white;
  padding: 2rem 5%;
}
footer .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
footer .top h1 a {
  display: block;
  width: 180px;
}
footer .top nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
footer .top nav a {
  font-weight: 600;
  font-size: clamp(0.75rem, 0.675rem + 0.38vw, 1.125rem);
}
footer .bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 1rem;
}
footer .bot span {
  font-size: 14px;
  font-weight: bold;
  opacity: 0.5;
}

.news_container {
  padding: 0 clamp(7.5px, 1.5px + 3vw, 37.5px);
}
.news_container .slick-prev:before,
.news_container .slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #06c68d;
  -webkit-font-smoothing: antialiased;
}

@media screen and (min-width: 1280px) {
  .over1280-none {
    display: none !important;
  }
}
.sp-bet {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news_item {
  position: relative;
  display: block;
  padding: 21px 0 15px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin: 0 12px;
}
.news_item .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.news_item .flex-box.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
.news_item .image {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 6px 0 0 0px;
}
.news_item .image figure {
  width: 120px;
  height: 90px;
  overflow: hidden;
  border-radius: 3px;
}
.news_item .image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.news_item .detail {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.news_item .detail > .flex-box {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.news_item .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 4px 9px 5px;
  margin-right: 5px;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 100%;
  color: #000;
  letter-spacing: 0.02em;
  border: 1px solid #000;
  border-radius: 4px;
}
.news_item::before {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 0;
  height: 2px;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(9, 164, 117)), to(rgb(74, 255, 147)));
  background-image: linear-gradient(90deg, rgb(9, 164, 117) 0%, rgb(74, 255, 147) 100%);
  -webkit-transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.news_item::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}
.news_item .date {
  font-size: 12px;
  color: #000;
  letter-spacing: 0.02em;
  opacity: 0.5;
}
.news_item .text {
  display: -webkit-box;
  margin-top: 10px;
  overflow: hidden;
  font-size: clamp(10px, 8.33px + 0.35vw, 12.5px);
  line-height: 1.69;
  letter-spacing: 0.02em;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news_item .btnArrow {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 26px;
  height: 14px;
  background-color: #000;
  border-radius: 3px;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  margin-left: auto;
}
.news_item .btnArrow .btnInner {
  position: relative;
  width: 100%;
  height: 100%;
}
.news_item .btnArrow .btnInner::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: url(../images/icon/arrow.svg) no-repeat 100%/100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news_item:hover {
  color: #06c68d;
}
.news_item:hover::before {
  width: 100%;
}
.news_item:hover .image figure img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.news_item:hover .category {
  padding: 5px 10px 6px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(9, 164, 117)), to(rgb(74, 255, 147)));
  background-image: linear-gradient(90deg, rgb(9, 164, 117) 0%, rgb(74, 255, 147) 100%);
  border: unset;
}
.news_item:hover .btnArrow {
  width: 14px;
  background-color: rgba(0, 0, 0, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(9, 164, 117)), to(rgb(74, 255, 147)));
  background-image: linear-gradient(90deg, rgb(9, 164, 117) 0%, rgb(74, 255, 147) 100%);
}
@media screen and (max-width: 1280px) {
  .news_item .detail .flex-box {
    display: none;
  }
}

.news_first {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  margin: 0 auto;
  padding-bottom: 0;
}
.news_first .newsTitleInner {
  position: relative;
  z-index: 10;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding: 35px 60px 35px 0;
}
.news_first .newsTitleInner::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
  width: 1200px;
  height: 100%;
  content: "";
  background-color: #fff;
  border-radius: 0 0 3px;
}

.newsTitleArea {
  font-weight: normal;
}
.newsTitleArea .jp,
.newsTitleArea .motif,
.newsTitleArea eng {
  opacity: 1;
  -webkit-transition: all 0.6s cubic-bezier(0.8, 0, 0.1, 1) 0.4s;
  transition: all 0.6s cubic-bezier(0.8, 0, 0.1, 1) 0.4s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.newsTitleArea .jp {
  display: block;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.46;
  letter-spacing: 0.02em;
}
.newsTitleArea .motif {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 45px;
  height: 7px;
  margin-top: 8px;
}
.newsTitleArea .motif::before, .newsTitleArea .motif::after {
  width: 20px;
  height: 7px;
  content: "";
  border-radius: 2px;
}
.newsTitleArea .motif::before {
  background-color: rgb(9, 164, 117);
}
.newsTitleArea .motif::after {
  background-color: rgb(74, 255, 147);
}
.newsTitleArea .oswald {
  display: block;
  margin-top: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  line-height: 1;
  font-weight: bold;
}

.news_contents {
  padding-top: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.news_contents .news_inner > .news_title {
  margin-bottom: 57px;
}
.news_contents .news_inner > .news_title .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news_contents .news_inner .title_categoryArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.news_contents .news_inner .title_categoryArea .title_category {
  padding: 5px 8px 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid #000;
  border-radius: 3px;
}
.news_contents .news_inner .title_date {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.02em;
}
.news_contents .news_inner .title_main {
  margin-bottom: 32px;
  font-size: 25px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.news_contents .news_inner > .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 120px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (width < 1180px) {
  .news_contents .news_inner > .flex-box {
    gap: 48px;
  }
}
@media (width < 1024px) {
  .news_contents .news_inner > .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.news_contents h2 {
  position: relative;
  padding-bottom: 24px;
  margin: 30px 0 50px;
  font-size: 19px;
  font-weight: normal;
  line-height: 1.78;
  letter-spacing: 0.04em;
}
.news_contents h2::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.news_contents h2::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  content: "";
  background: #000;
  border-radius: 3px;
}

#newsNavMenu {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 220px;
}
#newsNavMenu .sideNav_return {
  margin-bottom: 30px;
  border-top: solid 2px rgba(0, 0, 0, 0.1);
  border-bottom: solid 2px rgba(0, 0, 0, 0.1);
}
#newsNavMenu .sideNav_return a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 22px 0;
}
#newsNavMenu .sideNav_return a span {
  font-size: 13px;
  letter-spacing: 0.02em;
  -webkit-transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
#newsNavMenu .sideNav_return a::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
  width: 0;
  height: 2px;
  content: "";
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(9, 164, 117)), to(rgb(74, 255, 147)));
  background-image: linear-gradient(90deg, rgb(9, 164, 117) 0%, rgb(74, 255, 147) 100%);
  -webkit-transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
#newsNavMenu .sideNav_return a:hover span {
  color: #06c68d;
}
#newsNavMenu .sideNav_return a:hover::before {
  width: 100%;
}
#newsNavMenu .sideNav_return a:hover .btnArrow {
  width: 14px;
  background-color: rgba(0, 0, 0, 0);
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(9, 164, 117)), to(rgb(74, 255, 147)));
  background-image: linear-gradient(90deg, rgb(9, 164, 117) 0%, rgb(74, 255, 147) 100%);
}
#newsNavMenu .sideNav_return .btnArrow {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 26px;
  height: 14px;
  background-color: #000;
  border-radius: 3px;
  -webkit-transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: width 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
#newsNavMenu .sideNav_return .btnArrow .btn_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
#newsNavMenu .sideNav_return .btnArrow .btn_inner::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: url(../images/icon/arrow.svg) no-repeat 100%/100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#newsPost {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  margin-bottom: 80px;
}
#newsPost .newsContent > *:first-child {
  margin-top: 0 !important;
}
#newsPost .newsContent figure {
  width: 100%;
  margin: 60px auto;
  max-width: 720px;
}
#newsPost .newsContent figure img {
  max-height: 384px;
  height: 100%;
  width: auto;
}
@media (width < 1024px) {
  #newsPost .newsContent figure {
    margin: 42px auto;
  }
  #newsPost .newsContent figure img {
    width: 100%;
    height: auto;
  }
}
#newsPost .newsContent p {
  margin-top: 30px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.1em;
}/*# sourceMappingURL=lp.css.map */