/* -----------
top
-------------*/
body,
html {
  margin: 0;
  padding: 0;
  /* overflow: hidden; */
}

.top {
  min-height: 200vh;
  z-index: 1;
  position: relative;
  overflow: hidden; /* 不要なスクロールを防ぐ */
}
.top_wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.top_content {
  position: absolute;
  top: 37vh;
  left: -10%;
  translate: 0 0;
  z-index: 1;
}
.top_contentArea {
  opacity: 0;
  position: relative;
  left: 125px;
}

.top_ttl {
  line-height: 1.7;
  position: relative;
  z-index: 9;
  /* margin: 60px 0 0; */
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.2rem;
  color: #040000;
}
.top_content__summary {
  margin: 4% 0 0;
}
.top_content--01 {
  position: relative;
  font-weight: 600;
  line-height: 34.2px;
  letter-spacing: 0.05rem;
  font-feature-settings: "palt";
}
.top_content--02 {
  margin: 30px 0;
  position: relative;
  line-height: 34.2px;
  letter-spacing: 0.02rem;
  font-weight: 600;
}
.top_content--03 {
  position: relative;
  line-height: 34.2px;
  letter-spacing: 0.02rem;
  font-weight: 600;
}
.top_logo {
  align-items: center;
  justify-content: center;
  margin-left: 50px;
  width: 400px;
  display: block;
}
.top_logo.inview {
  width: 80%;
  transition-delay: 0.3s;
}

.scroll-container {
  position: relative;
}
/* .logo_wrapper {
  position: relative;
} */
.image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.image-wrapper__inner {
  z-index: 1;
  position: sticky;
  height: 100vh;
}
.image-wrapper__logo {
  width: 320px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.bg-wrapper {
  position: relative;
}

/* サークル（背景）のスタイル */
.background-circle {
  position: absolute;
  top: -56px;
  left: -27%;
  opacity: 0; /* 初期状態で非表示 */
  width: 800px;
  z-index: -1;
}

.dec_02 {
  position: absolute;
  width: 144px;
  top: -56px;
  left: -4px;
  z-index: -1;
  opacity: 0; /* 初期状態で非表示 */
}
.dec_03 {
  position: absolute;
  width: 222px;
  left: 480px;
  bottom: 20px;
  z-index: -1;
  opacity: 0; /* 初期状態で非表示 */
}

/* 親要素: コンテナのスタイル */
.line-container {
  position: absolute; /* 固定位置 */
  top: 85vh;
  right: 30px; /* 画面右からの距離 */
  width: 12px; /* コンテナの幅 */
  height: 88px; /* コンテナの高さ（縦棒の高さに合わせる） */
  display: flex;
  justify-content: center; /* 水平方向の中央揃え */
  align-items: flex-start; /* 上端に配置 */
  overflow: hidden; /* はみ出た部分を非表示 */
  opacity: 0; /* 初期状態で非表示 */
  transform: scale(0.8); /* 初期状態で縮小 */
  transition: opacity 1s ease, transform 1s ease; /* ふんわり表示のアニメーション */
}

/* 縦棒のスタイル */
.line {
  position: absolute;
  width: 1px; /* 縦棒の幅 */
  height: 88px; /* 縦棒の高さ */
  background: #4f4d4d; /* 縦棒の色 */
}

/* アニメーションする円 */
.circle {
  position: absolute;
  width: 12px; /* 円の幅 */
  height: 12px; /* 円の高さ */
  background-color: #e94746; /* 円の色 */
  border-radius: 50%; /* 円形にする */
  animation: moveDown 2s linear infinite; /* 上から下に移動するアニメーション */
}

/* アニメーション: 上から下へ移動しつつサイズを変える */
@keyframes moveDown {
  0% {
    transform: translateY(-100%) scale(0); /* 上に隠れる位置で縮小 */
  }
  25% {
    transform: translateY(0) scale(1); /* 中間位置で元のサイズ */
  }
  75% {
    transform: translateY(60px) scale(1); /* 下位置で元のサイズ */
  }
  100% {
    transform: translateY(80px) scale(0); /* 下に隠れる位置で縮小 */
  }
}

@media screen and (max-width: 820px) {
  .top {
    background: none;
    padding: 0;
  }
  .top_wrapper {
    padding: 0;
  }
  .top_flex {
    padding: 0;
    position: relative;
    flex-direction: column-reverse;
  }
  .image-wrapper__inner {
    z-index: 1;
    position: absolute;
    width: 100%;
  }
  .image-wrapper__logo {
    width: 183px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .scroll-container {
    height: auto;
  }
  .top_content {
    width: 100%;
    margin: 0;
    position: absolute;
    padding: 0 6.4% 63px;
    top: 70vh;
    left: 0%;
    opacity: 1;
    translate: 0 0;
  }
  .top_contentArea {
    margin: 0;
    position: static;
    opacity: 0; /* 初期は透明 */
    transform: translateY(100px); /* 下にずらす */
  }
  .top_ttl {
    margin: 30px 0 0;
    font-weight: 500;
    line-height: 1.6;
  }
  .top_content--01,
  .top_content--02,
  .top_content--03 {
    position: relative;
    z-index: 9;
    line-height: 1.7;
  }
  .top_content--01 {
    margin: 24px 0 0;
  }
  .top_content--02 {
    font-feature-settings: "palt";
  }

  /* サークル（背景）のスタイル */
  .background-circle {
    position: absolute;
    top: 0;
    left: -160px;
    opacity: 0;
    width: 610px;
    z-index: -1;
    transform: translateY(100px);
    transition: opacity 2s, transform 1s;
  }
  .dec_02 {
    position: absolute;
    width: 88px;
    top: -10px;
    left: 250px;
    z-index: -1;
    opacity: 0;
  }
  .dec_03 {
    position: absolute;
    width: 184px;
    left: 240px;
    bottom: 50px;
    z-index: -1;
    opacity: 0;
  }

  .line-container {
    display: none;
  }
}

@media screen and (min-width: 500px) and (max-width: 820px) {
  .top_content {
    width: 100%;
    margin: 0;
    position: absolute;
    padding: 0 6.4% 63px;
    top: 70vh;
    left: 50%;
    opacity: 1;
    translate: -25% 0;
  }
}

@media screen and (max-width: 820px) and (pointer: coarse) {
  .image-wrapper__logo {
    top: 42.5%; /* 実機スマホ想定時に位置を上げる */
  }
}

/* ----------
about
-------------*/
.about {
  padding: 0px 4% 100px;
  position: relative;
  margin: 300px 0 0;
}
/* .about_wrapper::after {
  background: url(/img/dec_05.png);
  width: 416px;
  height: 401px;
  background-size: contain;
  position: absolute;
  top: -71%;
  right: -13%;
  content: "";
} */

.about_wrapper {
  position: relative;
  max-width: 1070px;
  margin: 0 auto;
}
.box {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
  transform: translateY(300px);
}
.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* .about_wrapper::before {
  background: url(/img/dec_04.png) no-repeat;
  width: 489px;
  height: 282px;
  background-size: contain;

  position: absolute;
  top: -18%;
  left: -100px;
  content: "";
} */
.about_img01 {
  width: 489px;
  height: 282px;
  position: absolute;
  top: -27%;
  left: -100px;
}
.about_img02 {
  width: 416px;
  height: 401px;
  position: absolute;
  top: -81%;
  right: -13%;
}
.about_ttl {
  position: relative;
  z-index: 9;
  top: -30px;
}
.about_ttl h1 {
  font-size: 40px;
  letter-spacing: 0.04rem;
  margin-bottom: 10px;
}
.about_ttl p {
  font-size: 32px;
  font-family: "Krona One", sans-serif;
  color: #040000;
}
.about_content {
  line-height: 2;
  margin: 30px 0 0;
}
.about_content p {
  font-weight: 400;
  font-size: 20px;
}

@media screen and (max-width: 820px) {
  .about {
    position: relative;
    padding: 0;
    margin: -20vh 0 200px;
  }
  .about_wrapper::before {
    background: url(/img/sp/dec_04.png);
    width: 331px;
    height: 282px;
    top: -37%;
    left: 0;
    background-size: contain;
    content: "";
  }
  .about_img01 {
    width: 331px;
    top: -50%;
    left: 0;
  }
  .about_wrapper::after {
    background: unset;
    width: auto;
    height: auto;
  }
  .about_bg {
    background: url(/img/sp/dec_04.png) no-repeat;
    background-position: 100%;
    background-size: cover;
    position: absolute;
    height: 140px;
    width: 331px;
    top: -37px;
  }
  .about_wrapper {
    padding: 0 6.4%;
  }
  .about_ttl {
    position: relative;
    top: -10px;
  }
  .about_ttl h1 {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .about_ttl p {
    font-size: 18px;
  }
  .about_content {
    margin: 20px 0 0;
    letter-spacing: -0.04rem;
  }
  .about_content p {
    font-weight: 500;
    font-size: 16px;
  }
  .about_bg02 {
    background: url(/img/sp/dec_10.png) no-repeat;
    translate: scale(0.9);
    width: 179px;
    height: 160px;
    position: absolute;
    background-position: center;
    background-size: contain;
    right: 0;
    bottom: -180px;
  }
}
/* -----------
ポイント
--------------*/
.business_wrapper {
  position: relative;
}
.business_wrapper::before {
  background: url(/img/dec_06.png) no-repeat;
  background-size: contain;
  opacity: 0.9;
  height: 955px;
  position: absolute;
  width: 2260px;
  content: "";
  left: 62%;
  transform: translate(-50%, 0);
}

.business_contents {
  max-width: 1100px;
  margin: 100px auto;
  position: relative;
}

.business_ttl {
  padding: 40px 0 0;
}
.point_flex {
  margin: 106px 0px 0 0px;
  display: flex;
  justify-content: space-between;
}
.business_point02 {
  padding: 0 0 100px;
  transition: linear 0.7s;
}
.business_point01 {
  position: relative;
  width: 496px;
  transition: linear 0.7s;
}
.business_point01::before {
  background: url(/img/dec_07.png) no-repeat;
  background-size: 100%;
  transform: scale(1.1);
  width: 496px;
  content: "";
  position: absolute;
  top: -51px;
  left: 0;
  height: 595px;
  transition: linear 0.7s;
}
.business_point01:hover::before {
  background: url(/img/dec_07hov.png) no-repeat;
  transition: linear 0.7s;
  background-size: 100%;
}

.business_point02 {
  position: relative;
  width: 496px;
}
.business_point02::before {
  background: url(/img/dec_08.png) no-repeat;
  background-size: 100%;
  transform: scale(1.1);
  width: 496px;
  height: 551px;
  position: absolute;
  display: block;
  content: "";
  top: -51px;
  right: 0px;
  transition: linear 0.7s;
}
.business_point02:hover::before {
  background: url(/img/dec_08hov.png) no-repeat;
  transition: linear 0.7s;
  background-size: 100%;
}

.point_content {
  margin: -50px 0 0 0;
  position: relative;
}
.point_content h1,
.point_content h4,
.point_content-sub {
  text-align: center;
}
.point_content h1 {
  font-size: 72px;
}
.point_content h4 {
  font-size: 24px;
  margin: 13px 0 3px;
  font-weight: 700;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
}
.point_content-sub {
  font-size: 18px !important;
  font-weight: 700 !important;
}
.point_content p {
  margin: 0px auto 15px;
  width: 380px;
  line-height: 2;
  font-size: 17px;
  font-weight: 500;
  padding-left: 0.25rem;
}
.text_space {
  margin-left: -5px;
}
.indent_point {
  padding-left: -1rem;
}
@media screen and (max-width: 820px) {
  .business {
    background: none;
    padding: 0;
  }
  .business_wrapper::before {
    background: url(/img/sp/dec_06.png) no-repeat;
    background-size: contain;
    top: 9.5%;
    left: 34%;
    width: 2750px;
    height: 1142px;
  }
  .business_ttl {
    padding: 0 6.4%;
  }
  .point_flex {
    display: block;
    position: relative;
    margin: 120px 0 0;
  }

  .business_point01,
  .business_point02 {
    position: relative;
    width: auto;
    background: none;
    top: -57px;
    max-width: 375px;
    margin: 0 auto;
    padding-bottom: 50px;
    height: auto;
  }
  .business_point01::before {
    width: 415px;
    height: 452.5px;
    top: -16px;
    background: url(/img/sp/point_01.png) no-repeat;
    background-size: contain;
    left: 50%;
    transform: translate(-50%, 0px);
  }
  .business_point01:hover::before {
    pointer-events: none;
    background: url(/img/sp/point_01.png) no-repeat;
    background-size: contain;
    transition: none;
  }
  .business_point02::before {
    width: 415px;
    height: 438px;
    right: unset;
    left: 50%;
    transform: translate(-50%, 0px);
    top: -13px;
    background: url(/img/sp/point_02.png) no-repeat;
    background-size: contain;
  }
  .business_point02:hover::before {
    pointer-events: none;
    background: url(/img/sp/point_02.png) no-repeat;
    background-size: contain;
    transition: none;
  }

  .business_point02 {
    top: 0;
  }
  .point_content {
    margin: 0;
    position: relative;
    padding: 0 6.4%;
    top: -15px;
  }

  .point_content h1 {
    font-size: 48px;
  }
  .point_content h4 {
    font-size: 20px;
    margin: 10px 0 0;
    font-weight: 700;
  }
  .point_content-sub {
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  .point_content p {
    width: auto;
    line-height: 1.8;
    font-size: 14px;
    margin: 9px auto 12px;
    letter-spacing: 0.02rem;
    font-weight: 500;
  }
}
/* ------
ニュース
----------*/
.news {
  padding: 0 4%;
  margin: 100px 0;
}
.news_wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.news_list {
  margin: 48px 0 56px 0;
  position: relative;
}
/*
.news_list::before {
  content: "";
  border-bottom: solid 1px #d9d9d9;
  width: 1072px;
  position: absolute;
  top: 50%;
}
*/
.news_row {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.news_row:last-child {
  border-bottom: none;
}
.news_list-link {
  width: 46%;
}
.news_list_img {
  width: 216px;
  height: 144px;
  display: inline-block;
  overflow: hidden;
  border: solid 1px #ccc;
  border-radius: 3px;
}
.news_list_img img {
  display: block;
  transition-duration: 0.5s;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.news_list-link:hover a img {
  transform: scale(1.1);
}
.news_list a {
  display: flex;
  align-items: center;
}
.news_list-link:hover a p {
  color: #818080;
  transition: all 0.4s linear;
}
.news_list_content {
  padding-left: 24px;
  width: 300px;
  font-size: 14px;
  line-height: 1.6;
}
.news_list_content p {
  font-size: 14px;
  font-weight: 600;
  font-feature-settings: "palt";
}
.news_list_content p:nth-of-type(1) {
  margin: 0 0 10px;
}
.date {
  font-size: 12px;
  font-family: "Krona One", sans-serif;
  color: #4f4d4d;
}
.tag {
  background-color: #f5b6b9;
  padding: 4px 16px;
  margin: 0 0 0 16px;
  font-size: 12px;
  font-family: "Krona One", sans-serif;
  border-radius: 2px;
  color: #040000;
  font-feature-settings: "palt";
  line-height: 1.6;
}

@media screen and (max-width: 820px) {
  .news {
    margin: 100px 0 90px;
    padding: 0 6.4%;
    height: auto;
  }
  .news_list a {
    gap: 16px;
  }
  .news_list_img {
    width: 144px;
    height: 94px;
  }
  .news_list_img img {
    width: 144px;
    height: 94px;
  }
  .news_list_content {
    width: auto;
    padding: 0;
  }
  .news_list_content p {
    font-size: 12px;
    width: 168px;
  }
  .news_list {
    display: block;
  }
  .news_row {
    gap: 0;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  /*
  .news_list::before {
    border-bottom: none;
  }
  */
  .news_list-link {
    border-bottom: 1px solid #d9d9d9;
    padding: 24px 0;
    margin: 0 auto;
    width: auto;
    max-width: 375px;
  }
  .news_list-link:nth-child(3) {
    border: none;
  }

  .news_list-link:nth-child(4) {
    border: none;
  }
  .news_list_content p:nth-of-type(1) {
    margin: 0 0 5px;
  }
  .date {
    font-size: 11px;
    font-weight: normal;
  }
  .tag {
    font-size: 10px;
    padding: 4px 10px;
    margin: 0;
    font-weight: normal;
    letter-spacing: 0;
    margin-left: 8px;
  }
  .news_button {
    margin-top: 32px;
  }
}
/* ----------
コンタクト
-------------*/
.contact_pc {
  display: none;
}
.contact {
  margin: 290px 0 230px;
  padding: 0 5%;
  height: 368px;
}
.contact_wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

.contact_wrapper::before {
  background: url(/img/dec_09.png) no-repeat;
  background-size: contain;
  opacity: 0.75;
  width: 1618px;
  height: 710px;
  content: "";
  display: block;
  position: absolute;
  top: -190px;
  left: 55.6%;
  transform: translate(-50%, 0);
}
/* .contact_wrapper::after {
  background: url(/img/dec_10.png) no-repeat;
  background-size: contain;
  height: 321px;
  position: absolute;
  top: -40.9%;
  right: 120px;
  width: 712px;
  content: "";
  right: -40px;
} */
.contact_contentArea {
  position: relative;
}
.contact_content {
  margin: 56px 0 0;
}
.contact_content h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
}
.contact_content p {
  font-weight: 400;
  font-size: 14px;
  margin: 33px 0 40px;
  line-height: 2;
}
.contact_img {
  position: absolute;
  top: -209px;
  width: 692px;
  right: -60px;
}
@media screen and (max-width: 820px) {
  .contact {
    position: relative;
    margin: 0px 0 60px;
    padding: 60px 6.4% 0;
    height: auto;
  }
  /* .contact::before {
    background: url(/img/sp/dec_09.png) no-repeat;
    width: 232px;
    height: 211px;
    background-size: contain;
    right: 14px;about_bg02
    content: "";
    display: block;
    position: absolute;
    top: 43px;
    z-index: 9;
  } */

  .contact_wrapper::before {
    content: "";
    background: url(/img/sp/dec_08.png) no-repeat;
    opacity: 1;
    width: 1075px;
    height: 424px;
    display: block;
    position: absolute;
    background-size: contain;
    top: -127px;
    left: -28%;
    transform: unset;
    z-index: -1;
  }
  .contact_wrapper::after {
    background: unset;
    width: auto;
    height: auto;
  }
  .contact_contentArea {
    margin: auto;
  }
  .contact_content {
    width: auto;
    position: relative;
  }
  .contact_bg02 {
    height: 71%;
    right: 0;
  }
  .contact_content h3 {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.05rem;
  }
  .contact_content p {
    font-size: 13px;
    line-height: 1.6;
    margin: 23px 0 32px;
  }
  .contact_img {
    width: 213px;
    height: 211px;
    right: -12px;
    position: absolute;
    top: -110px;
    z-index: 9;
  }
  .contactbutton {
    margin: 120px 0 0 auto;
  }
}

/* -----------
aboutページ
----------------*/
.about_top_bg {
  padding: 240px 5% 0;
  position: relative;
}
.about_top_ttl {
  max-width: 1100px;
  margin: 0 auto 96px;
}
.about_top {
  position: relative;
  padding: 144px 0 0;
}
.about_top_wrapper {
  padding: 0 6.4%;
  position: relative;
}

.about_top_flex {
  display: flex;
  margin: 0px auto;
  max-width: 1100px;
  justify-content: space-between;
  position: relative;
}
.about_top_flex::before {
  background: url(/img/about_top.png) no-repeat;
  background-size: contain;
  width: 518px;
  height: 659px;
  position: absolute;
  top: 40px;
  content: "";
  right: 10px;
}

.about_top_content {
  position: relative;
}

.about_top_content .top_ttl {
  margin-bottom: 35px;
}
.about_top_contentArea {
  line-height: 34.2px;
}
@media screen and (max-width: 820px) {
  .about_top_wrapper::before {
    background: url(/img/sp/about_top.png) no-repeat;
    background-size: contain;
    width: 157px;
    height: 200px;
    position: absolute;
    top: unset;
    content: "";
    right: 10px;
    bottom: -190px;
  }
  .about_top_flex::before {
    background: unset;
    width: auto;
    height: auto;
  }
  .about_top {
    background: none;
    padding: 0;
  }
  .about_top_bg {
    padding: 168px 5% 0;
  }
  .about_top_ttl {
    margin: 0 auto 56px;
  }
  .about_top_flex {
    display: block;
  }
  .about_top_logoImg {
    width: 183px;
    margin: 0 auto;
  }
  .about_top_contentArea {
    margin: 104px 0 0;
  }
  .about_top_content .top_ttl {
    margin-bottom: 16px;
  }
}

/* ----------
カンパニーネーム
----------*/
.about_name {
  padding: 144px 5% 240px;
}
.about_name_wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.about_name-content {
  display: flex;
  justify-content: flex-start;
  gap: 108px;
  align-items: center;
}
.about_name-content01 {
  width: 680px;
  margin: 56px 0 0;
}
.about_name-content01 p {
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.05rem;
}
.about_nameImg img {
  width: 288px;
}
@media screen and (max-width: 820px) {
  .about_name {
    padding: 240px 6.4% 160px;
  }
  .about_name-content {
    display: block;
  }
  .about_name-content01 {
    width: auto;
    margin: 50px 0 40px;
  }
  .about_name-content01 p {
    letter-spacing: 0;
    line-height: 2;
    font-feature-settings: "palt";
    font-size: 14px;
  }
  .about_nameImg img {
    width: 247px;
    margin: 0 auto;
  }
}
/* ----------
会社概要
----------*/

.about_company {
  position: relative;
  padding: 0 4%;
}
.about_company::before {
  background: url(/img/about_company.png) no-repeat;
  width: 1600px;
  height: 728px;
  position: absolute;
  display: block;
  content: "";
  top: -105px;
  background-size: contain;
  left: 49%;
  transform: translate(-50%, 0);
}
.about_company_wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.about_company-table {
  display: flex;
  margin: 40px auto 40px;
  gap: 80px;
  justify-content: flex-start;
}
.about_company-table table:nth-child(2) {
  width: 496px;
}
.about_company-table tr {
  border-bottom: 1px solid #000;
  padding: 30px 0 16px;
  display: flex;
  gap: 40px;
}
.about_company-table th {
  font-weight: 400;
  line-height: 1.8;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
}
.about_company-table th:nth-of-type(1) {
  width: 64px;
}
.about_sakulab {
  margin: 12px 0 0 0;
  display: block;
}
@media screen and (max-width: 820px) {
  .about_company {
    position: relative;
    padding: 0 6.4%;
  }

  .about_company::before {
    background: url(/img/sp/about_company.png) no-repeat;
    width: 1600px;
    height: 728px;
    position: absolute;
    display: block;
    content: "";
    top: -22px;
    background-size: contain;
    left: -272px;
    transform: unset;
  }
  .about_company-table {
    margin: 22px auto 40px;
    display: block;
  }
  .about_company-table tr {
    padding: 20px 0 10px;
    gap: 32px;
    width: 100vw;
  }
  .about_company-table th {
    font-size: 14px;
  }
  .about_company-table th:nth-of-type(1) {
    width: 56px;
  }
  .about_sakulab {
    margin: 3px 0 0;
  }
}

/* ----------
メンバー
----------*/

.about_member {
  margin: 240px 0 144px;
  padding: 0 4%;
}
.about_member_wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
.about_member-contentArea {
  display: flex;
  justify-content: flex-start;
  margin: 80px 0;
  gap: 80px;
}
.about_member h3 {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.02rem;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
}
.about_member-content p {
  font-size: 14px;
  color: #4f4d4d;
}

.about_member span {
  font-size: 16px;
  letter-spacing: 0.04rem;
  line-height: 1.6;
}
.about_member-content h3 {
  margin: 20px 0 56px;
}
.member_flex {
  display: flex;
  align-items: baseline;
  gap: 30px;
}
@media screen and (max-width: 820px) {
  .about_member {
    margin: 160px 0;
    padding: 0 6.4%;
  }
  .about_member-contentArea {
    margin: 56px 0 0;
    display: block;
  }
  .about_member-content h3 {
    margin: 10px 0 32px;
    font-size: 20px;
  }
  .about_member span {
    font-size: 14px;
  }
  .about_member_br {
    line-height: 1.4;
  }
  .member_flex04 span {
    width: 200px;
  }
}

/* ------------------
ニュースページ
----------------------*/
.news_content {
  margin: 280px 0 0;
  padding: 0 4%;
}
.news_content_wrapper {
  max-width: 1072px;
  margin: 0 auto;
}
.news_content_txt {
  /*padding: 17.5px 0;*/
  width: 832px;
}
.news_content_ttl h1 {
  color: #e94746;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 24px;
}
.news_content_ttl p {
  font-size: 16px;
  color: #4f4d4d;
}
.news_content_ttl {
  margin-bottom: 96px;
}
.news_content_flex:first-of-type {
  padding: 0 0 24px;
}
.news_content_flex {
  border-bottom: solid 1px #d9d9d9;
  padding: 24px 0;
}
.news_content_flex:last-child {
  border-bottom: unset;
}
.news_content_flex a {
  display: flex;
  justify-content: space-between;
}
.news_content_img {
  width: 216px;
  height: 144px;
  border: solid 1px #ccc;
  border-radius: 3px;
  overflow: hidden;
}
.news_content_img img {
  display: block;
  transition-duration: 0.5s;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.news_content01:hover a img {
  transform: scale(1.1);
}
.news_content01:hover .news_content_txt-ttl,
.news_content01:hover .news_content_txt-detail {
  color: #818080;
  transition: all 0.4s linear;
}
.news_content_txt-ttl {
  margin: 16px 0 24px;
  font-size: 16px;
  font-weight: bold;
}
.news_content_txt-detail {
  line-height: 1.8;
  font-size: 14px;
  font-weight: normal;
}
.news_content_txt p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

/*-----------------------
ページネーション 
-------------------------*/

.cdp {
  position: relative;
  text-align: right;
  padding: 20px 4%;
  font-size: 0;
  z-index: 6;
  margin: 32px auto 200px;
}
.cdp_i {
  font-size: 13px;
  text-decoration: none;
  transition: background 250ms;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 3px 6px;
  height: 40px;
  min-width: 40px;
  border-radius: 38px;
  line-height: 40px;
  padding: 0;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.03em;
  background-color: #fff;
}
.cdp_i.dots {
  background: none;
  color: #ccc;
  font-size: 12px;
  margin-left: -10px;
  margin-right: -10px;
}
.cdp a,
.cdp span {
  text-align: center;
}
.cdp_i:first-child,
.cdp_i:last-child {
  padding: 0 16px;
  margin: 0 12px 6px;
  position: relative;
}
.cdp_i:first-child img,
.cdp_i:last-child img {
  position: absolute;
  top: 14px;
  height: 12px;
}

.cdp_i:first-child,
.cdp_i:last-child,
.cdp_i:nth-child(2),
.cdp_i:nth-last-child(2) {
  display: inline-block;
}
.cdp_i:hover {
  background-color: #e94746;
  color: #fff;
}
.cdp_i.dots:hover {
  background: none;
  color: #ccc;
}

@media screen and (max-width: 768px) {
  .news_content {
    margin: 168px 0 0;
    padding: 0 6.5%;
  }
  .news_content_ttl {
    margin-bottom: 32px;
  }
  .news_content_ttl h1 {
    font-size: 28px;
  }
  .news_content_ttl p {
    font-size: 14px;
  }
  .news_content_img {
    width: 144px;
    height: 94px;
  }

  .news_content_img img {
    width: 144px;
    height: 94px;
  }
  .news_content_txt {
    width: 167px;
  }
  .news_content_flex a {
    justify-content: center;
    gap: 16px;
  }
  .news_content_txt-ttl {
    font-size: 12px;
    line-height: 1.6;
  }
  .cdp {
    margin: 12px 0 160px;
    padding: 0;
    text-align: center;
  }
}

/* -------
news_detail
---------*/

.news_detail {
  padding: 160px 5% 96px;
  position: relative;
}
.news_detail_contentsArea {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.news_detail_contentsArea::before {
  background: url(/img/news_detail_bg.png);
  content: "";
  width: 1440px;
  height: 424px;
  background-size: contain;
  position: absolute;
  z-index: -1;
  left: -310px;
  top: 90px;
}

.news_detail_ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin: 32px 0 80px;
  font-feature-settings: "palt";
}
.news_listImg {
  width: 960px;
  margin: 0 auto;
}
.news_detail_contents {
  margin: 96px 0;
  position: relative;
}
.news_detail_contents::after {
  border-bottom: solid 1px #d9d9d9;
  content: "";
  position: absolute;
  bottom: -96px;
  width: 100%;
}
.news_detail_txt01 {
  margin-top: 26px;
}
.news_detail_txt {
  margin-bottom: 26px;
}

.news_detail_contents p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.06rem;
  font-feature-settings: "palt";
}

.relateposts {
  max-width: 960px;
  margin: 0px auto;
}
.relateposts_ttl {
  padding: 96px 0 48px;
}
.relateposts_content_txt {
  width: 720px;
}
.relateposts_content_flex a {
  display: flex;
  justify-content: space-between;
}

.relateposts_content_img img {
  width: 216px;
  border: solid 1px #d9d9d9;
}
.relateposts_content_txt-ttl {
  margin: 16px 0 24px;
  font-size: 16px;
  font-weight: bold;
}
.relateposts_content_txt-detail {
  line-height: 1.8;
  font-size: 14px;
  font-weight: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 820px) {
  .news_detail {
    padding: 110px 5% 56px;
  }
  .news_detail_contentsArea::before {
    background: url(/img/sp/news_detail_bg.png);
    width: 720px;
    height: 212px;
    background-size: contain;
    top: 93px;
    left: -112px;
  }
  .news_detail_ttl {
    font-size: 16px;
    line-height: 1.8;
    margin: 10px 0 40px;
    letter-spacing: 0.02rem;
  }
  .news_listImg {
    width: 327px;
  }
  .news_detail_contents {
    margin: 56px 0;
  }
  .news_detail_contents::after {
    bottom: -56px;
  }
  .news_detail_txt {
    margin-bottom: 26px;
  }
  .news_detail_txt p:nth-child(2) {
    padding-left: 23px;
    letter-spacing: 0.12rem;
  }
  .news_detail_contents p {
    font-size: 14px;
    letter-spacing: 0.12rem;
    line-height: 2;
  }
  .news_detail_dec {
    position: relative;
  }
  .news_detail_dec li {
    padding-left: 37px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.12rem;
  }
  .news_detail_dec li::before {
    content: "●";
    position: absolute;
    left: 19px;
  }
  .relateposts {
    padding: 0 5%;
  }
  .relateposts_ttl {
    padding: 56px 0 40px;
  }
  .relateposts_content_img img {
    width: 144px;
  }
  .relateposts_content_txt {
    width: 167px;
  }
  .relateposts_content_flex a {
    justify-content: center;
    gap: 16px;
  }
}

/* --------------------
コンタクト
-----------------------*/
.contact_form {
  margin: 240px 0 0;
  padding: 0 4%;
}
.contact_form_wrapper {
  max-width: 1072px;
  margin: 96px auto 40px;
}
.contact_form_ttl {
  color: #e94746;
}
.form {
  max-width: 960px;
  margin: 96px auto 56px;
}

.form-contacttype {
  width: 100%;
}

/* --- 全体レイアウト・タブ部分のスタイル --- */
.form-contacttype-list {
  display: flex;
  gap: 32px; /* タブ同士の間隔 */
  margin-bottom: 1em; /* 下部余白 */
}

/* ラジオボタンは非表示にして、ラベルをタブのように見せる */
.form-contacttype-list .contacttypeInput {
  display: none;
}

/* タブとして表示するラベルの基本スタイル */
.form-contacttype-list .contacttypeLabel {
  position: relative;
  display: inline-block;
  padding: 14px 14px;
  cursor: pointer;
  background: #f5f5f5;
  color: #040000;
  border-radius: 2px;
  border: 1px solid #ccc;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-weight: 500;
  font-size: 14px;
}

.form-contacttype-list .contacttypeLabel[for="business"] {
  padding: 14px 28px 14px 14px;
}

/* ホバー時の変化 */
.form-contacttype-list .contacttypeLabel:hover {
  background: #e9e9e9;
}

/* 選択中（チェックされた）タブのスタイル */
.form-contacttype-list .contacttypeInput:checked + .contacttypeLabel {
  background: #000; /* 背景色: 黒 */
  color: #fff; /* 文字色: 白 */
  border-color: #000; /* 枠線色: 黒 */
}

/* アイコン（▼）を付けたい場合、icn_arrow クラスに疑似要素を使用 */
.form-contacttype-list .contacttypeLabel.icn_arrow::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 8px;
  background-color: #2a2626;
  clip-path: polygon(50% 8px, 0% 0%, 12px 0%);
  right: 12px;
  top: 18px;
  transition: transform 0.2s ease;
}

.form-contacttype-list .contacttypeLabel.business {
  padding-right: 30px;
}

/* 事業に関するお問い合わせのタブが選択された時だけアイコンを回転させる例 */
.form-contacttype-list .contacttypeInput:checked + .contacttypeLabel.icn_arrow::after {
  transform: rotate(-180deg);
  background-color: #ffffff;
}

/* --- 事業に関するお問い合わせ（下位項目）のコンテナ --- */
.business-details {
  display: none;
  width: 100%;
  margin: 16px 0;
  background: #fafafa;
  color: #040000;
  font-size: 14px;
  font-weight: 500;
}

.form-contacttype:has(.form-contacttype-list #business:checked) .business-details {
  display: block;
}

/* 企業・研究者の方、一般の方 見出し */
.business-details-list .business-details-ttl {
  padding: 15px 25px 14px;
  background-color: #f2f2f2;
  font-size: 14px;
  border-bottom: 1px solid #d9d9d9;
}

/* ラジオボタン行の余白調整 */
.business-details-item {
  padding: 12px 24px;
  background-color: #ffffff;
  display: flex;
  color: #040000;
}

.business-details-item:has(.businessInput:checked) {
  background-color: #2a2626;
  color: #ffffff;
}

/* ラジオボタンとラベルを横並びにする例 */
.business-details-item .businessLabel {
  margin-left: 8px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.business-details-item .businessInput {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  height: 16px;
  width: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
}

.business-details-item .businessInput:before {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
}
.form_txt {
  margin-bottom: 56px;
}
.form_txt h3 {
  font-size: 24px;
  margin-bottom: 56px;
  font-weight: 700;
}
.form_txt .form_txt_content {
  margin-bottom: 32px;
}
.form_red {
  color: #e94746;
  font-size: 14px;
}
.red_tag {
  color: #e94746;
  margin-left: 5px;
}
.form_content {
  display: flex;
  margin-bottom: 32px;
  align-items: start;
}
.form_content .form_content_ttl {
  font-weight: 500;
  margin-bottom: 10px;
  width: 27%;
  font-size: 14px;
  padding-top: 12.5px;
  margin-bottom: 0;
}
.input_wrapper {
  position: relative;
  line-height: 1.42857;
  width: 100%;
}
.input_wrapper input,
.input_wrapper textarea {
  background: none repeat scroll 0 0 #fff;
  border-radius: 0;
  border: solid 1px #d9d9d9;
  box-shadow: none;
  color: #040000;
  display: block;
  height: 40px;
  outline: none;
  width: 100%;
  /* width: 64%; */
  padding-left: 24px;
  transition: border-color 0.3s ease 0s;
  border-radius: 4px;
  font-size: 14px;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 500;
}
.input_wrapper textarea {
  line-height: 1.42857;
  font-size: 14px;
  min-height: 240px;
  width: 100%;
  padding-top: 15px;
}
/* プレースホルダー用のスタイル */
.input_wrapper input::placeholder,
.input_wrapper textarea::placeholder {
  color: #b4b2b2; /* グレー */
}

/* WebKit系ブラウザ用 */
.input_wrapper input::-webkit-input-placeholder,
.input_wrapper textarea::-webkit-input-placeholder {
  color: #b4b2b2;
}

/* Internet Explorer 10-11 用 */
.input_wrapper input:-ms-input-placeholder,
.input_wrapper textarea:-ms-input-placeholder {
  color: #b4b2b2;
}

/* Microsoft Edge 用 */
.input_wrapper input::-ms-input-placeholder,
.input_wrapper textarea::-ms-input-placeholder {
  color: #b4b2b2;
}
.check_priv_inner {
  margin-bottom: 120px;
  text-align: center;
}

.check_priv_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 8px;
  font-size: 14px;
  flex-wrap: wrap;
}

.check_priv_inner label {
  margin-left: 8px;
}

.check_priv_inner label a {
  text-decoration: underline;
}

.check_priv_inner label a:hover {
  color: #e94746;
}

.check_priv_inner input[type="checkbox"] {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #818080;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.check_priv_inner input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 7px;
  transform: rotate(50deg);
  width: 8px;
  height: 12px;
  border-right: 2px solid #e94746;
  border-bottom: 2px solid #e94746;
  content: "";
}

.form_confirmation {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 40px;
}
.input_wrapper .form_red {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact_form {
    margin: 168px 0 0;
    padding: 0 5.6%;
  }
  .contact_form_ttl h1 {
    margin-bottom: 24px;
    font-size: 28px;
  }
  .form_content {
    display: block;
    margin-bottom: 20px;
  }
  .form {
    margin: 56px 0 50px;
  }
  .form-contacttype-list {
    display: block;
  }
  .form-contacttype-list .contacttypeLabel {
    width: 100%;
    margin-bottom: 16px;
  }
  .business-details {
    margin-top: 0;
  }
  .form_txt {
    margin-bottom: 40px;
  }
  .form_txt h3 {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .form_txt .form_txt_content {
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .form-contacttype {
    margin-top: 16px;
  }
  .input_wrapper {
    margin-top: 16px;
  }
  .form_content .form_content_ttl {
    width: auto !important;
  }
  .check_priv_inner {
    margin: 40px auto 0;
  }
  .form_confirmation {
    margin: 50px 0 32px;
    text-align: left;
    line-height: 1.6;
  }
}

.form.confirm {
  margin-bottom: 120px;
}

.contact_confirmation {
  display: flex;
  margin-bottom: 40px;
}
.contact_confirmation label {
  width: 28%;
  font-size: 14px;
}
.contact_confirmation p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02rem;
}
.contact_confirmation:nth-of-type(8) p {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .form.confirm {
    margin-bottom: 56px;
  }
  .contact_confirmation {
    display: block;
    margin-bottom: 32px;
  }
  .contact_confirmation label {
    margin-bottom: 16px;
    display: block;
    width: auto;
  }
  .contact_confirmation:nth-of-type(8) p {
    width: auto;
  }
}
.contact_complete_txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 120px;
}

/* -----------
プライバシーポリシー
-------------*/
.privacy_area {
  padding: 157px 5% 177px;
}
.privacy_contents {
  max-width: 960px;
  margin: 96px auto 0;
}
.privacy_contents h3 {
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
}
.privacy_contents h4 {
  text-align: left;
  margin: 60px 0 18px;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.12rem;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
}
.privacy_contents p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.12rem;
  font-weight: 400;
  font-feature-settings: "palt";
}
.privacy_date {
  margin: 40px 0 18px;
  letter-spacing: 0.02rem !important;
}
@media screen and (max-width: 820px) {
  .privacy_area {
    padding: 80px 5% 140px;
  }
  .privacy_contents h3 {
    line-height: 1.8;
    font-weight: 500;
  }
  .privacy_contents h4 {
    margin: 20px 0 8px;
    line-height: 2;
  }
  .privacy_contents p {
    letter-spacing: 0.08rem;
    font-weight: 500;
  }
  .privacy_date {
    font-family: dnp-shuei-gothic-kin-std, sans-serif;
    font-size: 12px !important;
    margin: 20px 0 13px;
  }
}

/* --------------------
コンタクト
-----------------------*/
.contact_form {
  margin: 240px 0 0;
  padding: 0 4%;
}
.contact_form_wrapper {
  max-width: 1072px;
  margin: 96px auto 40px;
}
.contact_form_ttl {
  color: #e94746;
}
.form {
  max-width: 960px;
  margin: 96px auto;
}
.form-group_flex {
  width: 23%;
  margin-right: 3.34%;
}
.form-group input {
  background-color: #f2f2f2;
  border: solid #d9d9d9 1px;
  height: 40px;
}
.form-group input:nth-of-type(2) {
  width: 174px;
}
details {
  width: 100%;
}
details summary {
  background-color: #2a2626;
  width: 100%;
  height: 40px;
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  display: block;
  position: relative;
  transition: all ease-in-out 0.3s;
}
summary::-webkit-details-marker {
  display: none;
}
.icn_arrow::after {
  position: absolute;
  content: "";
  background: url(/img/icn_arrowUp.png) no-repeat;
  width: 12px;
  height: 8px;
  background-size: contain;
  margin-top: -1px;
  right: 14px;
  top: 17px;
}
details[open] .icn_arrow::after {
  transform: rotate(180deg);
}
details {
  height: 40px;
  transition: all ease-in-out 0.3s;
  box-sizing: border-box;
}
details[open] {
  height: 312px;
}

.details[open] .details-content {
  animation: fadeIn 0.3s ease;
}
.details-content {
  margin-top: 16px;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.form_txt h3 {
  font-size: 24px;
  margin-bottom: 56px;
  font-weight: 700;
}
.form_red {
  color: #e94746;
  font-size: 14px;
  margin: 32px 0 56px;
}
.red_tag {
  color: #e94746;
  margin-left: 5px;
}
.form_company p,
.form_individual p {
  background-color: #f2f2f2;
  width: auto !important;
  height: 40px;
  padding-left: 24px;
  border-bottom: solid 1px #d9d9d9;
}
.form_company div,
.form_individual div {
  background-color: #fff;
  height: 40px;
  width: 100%;
  padding: 3px 20px 40px;
}
.form_radio {
  width: 343%;
}
.form_content {
  display: flex;
  margin-bottom: 32px;
  align-items: start;
}
.form-label {
  width: 21% !important;
}
.form_content p {
  font-weight: 500;
  margin-bottom: 10px;
  width: 100%;
  font-size: 14px;
  padding-top: 12.5px;
  margin-bottom: 0;
}
.input_wrapper {
  position: relative;
  line-height: 1.42857;
  width: 100%;
}
.input_wrapper input,
.input_wrapper textarea {
  background: none repeat scroll 0 0 #fff;
  border-radius: 0;
  border: solid 1px #d9d9d9;
  box-shadow: none;
  color: #040000;
  display: block;
  height: 40px;
  outline: none;
  width: 100%;
  /* width: 64%; */
  padding-left: 24px;
  transition: border-color 0.3s ease 0s;
  border-radius: 4px;
  font-size: 14px;
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  font-weight: 500;
}
.input_wrapper textarea {
  line-height: 1.42857;
  font-size: 14px;
  min-height: 240px;
  width: 100%;
  padding-top: 15px;
}
.check_priv_inner {
  /* max-width: 262px; */
  gap: 0 8px;
  margin: 56px auto 0px;
  font-size: 14px;
}
.form_confirmation {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin: 120px 0 40px;
}
details .form_red {
  margin: 0;
}
.input_wrapper .form_red {
  margin: 0;
}
.details_open[open] {
  height: 322px;
}

.media,
.other {
  background-color: #f2f2f2;
  height: 40px;
  border: solid 1px #d9d9d9;
  font-size: 14px;
  padding: 10px 12px 0;
}
.media {
  margin-right: 3.34%;
}
.media input,
.other input {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact_form {
    margin: 168px 0 0;
    padding: 0 5.6%;
  }
  .contact_form_ttl h1 {
    margin-bottom: 24px;
    font-size: 28px;
  }
  .form_content {
    display: block;
    margin-bottom: 20px;
  }
  .form {
    margin: 56px 0 50px;
  }
  .form_txt h3 {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .form_txt p {
    line-height: 1.6;
  }
  .form_red {
    margin: 24px 0 40px;
  }
  details {
    margin-top: 16px;
  }
  details summary {
    width: auto;
  }
  .input_wrapper {
    margin-top: 16px;
  }
  .form_content p {
    width: auto !important;
  }
  .form-group_flex {
    width: auto;
    margin: 0 0 16px;
  }
  .check_priv_inner {
    margin: 40px auto 0;
  }
  .form_confirmation {
    margin: 50px 0 32px;
    text-align: left;
    line-height: 1.6;
  }
  details[open] {
    height: 309px;
  }
  .form_radio {
    width: auto;
  }
  .media,
  .other {
    display: block;
    padding: 0 12px;
    line-height: 40px;
  }
  .media {
    margin: 0 0 16px;
  }
}

.contact_confirmation {
  display: flex;
  margin-bottom: 40px;
}
.contact_confirmation label {
  width: 28%;
  font-size: 14px;
}
.contact_confirmation p {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02rem;
}
.contact_confirmation:nth-of-type(8) p {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .contact_confirmation {
    display: block;
    margin-bottom: 32px;
  }
  .contact_confirmation label {
    margin-bottom: 16px;
    display: block;
    width: auto;
  }
  .contact_confirmation:nth-of-type(8) p {
    width: auto;
  }
}
.contact_complete_txt {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 120px;
}
