@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #fff;
  --primary-color: #3399cc;
  --accsent-color: #fcde32;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1200px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */
html {
  margin: 0 auto !important;
  scroll-behavior: smooth;
}

body {
  color: var(--black-color);
  background-color: var(--white-color);
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */
.u_only_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u_only_pc {
    display: none;
  }
}

.u_only_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u_only_sp {
    display: block;
  }
}

.js_fadein {
  opacity: 0;
  transform: translateY(1.389vw);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.js_fadein.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 40px 0 80px;
}

.l_header {
  width: 100vw;
  height: 97px;
  padding: 0 100px;
}
@media screen and (max-width: 1080px) {
  .l_header {
    padding: 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .l_header {
    height: 50px;
    padding: 0 16px;
  }
}

.l_header-logo {
  height: 97px;
  display: flex;
  align-items: center;
  padding: 14px 0;
}
@media screen and (max-width: 768px) {
  .l_header-logo {
    height: 50px;
    padding: 4px 0;
  }
}

.l_header-logo a {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}

.l_header-logo_img {
  width: auto;
  height: 100%;
}

.l_footer {
  width: 100%;
  background-color: var(--primary-color);
  padding: 8px 125px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	color:white;
}
.l_footer .policy{
	font-size:14px;
display:inline-block;
}
@media screen and (max-width: 768px) {
  .l_footer {
	  	flex-direction:column;
	  gap:10px;
    padding: 8px 16px;
  }
}

.l_footer-logo {
  height: 80px;
  display: flex;
  align-items: center;
}

.l_footer-logo a {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .l_footer-logo {
    height: 40px;
  }
}

.l_footer-logo_img {
  width: auto;
  height: 100%;
}

/* ---------- module ---------- */
.m_section-ttl {
  padding-left: 24px;
  width: auto;
  font-size: 32px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1080px) {
  .m_section-ttl {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .m_section-ttl {
    font-size: 24px;
  }
}

.m_section-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 60%;
  background-color: var(--primary-color);
}

/* ---------- fv ---------- */
.fv_only_pc {
  display: block;
}
@media screen and (max-width: 600px) {
  .fv_only_pc {
    display: none;
  }
}

.fv_only_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_only_sp {
    display: block;
  }
}

.fv {
  width: 100%;
  height: clamp(648px, 60em, 980px);
  padding: 0;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1080px) {
  .fv {
    height: clamp(600px, 40em, 800px);
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .fv {
    height: clamp(500px, 30em, 700px);
  }
}
@media screen and (max-width: 600px) {
  .fv {
    height: 600px;
  }
}

.fv_img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (min-width: 1441px) {
  .fv_img-wrap {
    overflow: hidden;
  }
}
@media screen and (max-width: 600px) {
  .fv_img-wrap {
    overflow: hidden;
  }
}

.fv-pc_img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  object-fit: cover;
  z-index: var(--z-index-default);
}

.fv-main-text_img {
  position: absolute;
  top: 40%;
  left: 53%;
  transform: translateX(-50%);
  width: min(1000px, 80%);
  max-width: 876px;
  height: auto;
  z-index: 10;
  opacity: 0;
  animation: fadeInUpPc 0.8s ease-out 0.8s forwards;
}

@keyframes fadeInUpPc {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.fv-main-text-sp_img {
  opacity: 0;
  animation: fadeInUpSp 0.8s ease-out 0.8s forwards;
}

@keyframes fadeInUpSp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fv-btn_img {
  position: absolute;
  top: 76%;
  left: 50%;
  transform: translateX(-50%);
  width: 20%;
  max-width: 300px;
  height: auto;
  cursor: pointer;
  z-index: 10;
}

.fv_sub-text-wrap {
  position: absolute;
  top: 73%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  text-align: center;
  background: #379bcc;
  z-index: var(--z-index-default);
}

.fv-sub-text_img {
  /* position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%); */
  width: 100%;
  max-width: 1200px;
  height: auto;
}

.fv-sp_img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  object-fit: cover;
  z-index: var(--z-index-default);
}

.fv-main-text-sp_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 180px;
  z-index: 10;
  object-fit: contain;
  opacity: 0;
  animation: fadeInUpSp 0.8s ease-out 0.8s forwards;
}

@keyframes fadeInUpSp {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 30px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.fv-btn-sp_img {
  position: absolute;
  top: 74%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(180px, 10em, 240px);
  height: clamp(45px, 2.5em, 60px);
  cursor: pointer;
  z-index: 10;
}

.fv_sub-text-sp-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  text-align: center;
  background: #379bcc;
  z-index: var(--z-index-default);
}

.fv-sub-text-sp_img {
  /* position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); */
  width: 100%;
  max-width: 340px;
  height: 200px;
}

/* ---------- top_feature ---------- */
.top_feature {
  width: 100%;
}

.top_feature-ttl {
  text-align: center;
  margin-bottom: 40px;
  width: auto;
  height: 40px;
}
@media screen and (max-width: 768px) {
  .top_feature-ttl {
    height: 24px;
  }
}

.top_feature-ttl_img {
  width: auto;
  height: 100%;
}

.top_feature_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 10px;
}
@media screen and (max-width: 768px) {
  .top_feature_list {
    align-items: center;
  }
}

.top_feature_item {
  width: calc(33.333% - 10px);
}
@media screen and (max-width: 768px) {
  .top_feature_item {
    width: 100%;
    max-width: 300px;
  }
}

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

/* ---------- top_merit ---------- */
.top_merit {
  width: 100%;
}

.top_merit_inner {
  width: 100%;
  background-color: #effafe;
  padding: 40px 100px 80px;
}
@media screen and (max-width: 1080px) {
  .top_merit_inner {
    padding: 40px 60px 80px;
  }
}
@media screen and (max-width: 768px) {
  .top_merit_inner {
    padding: 40px 16px 80px;
  }
}

.top_merit_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-top: 35px;
}

.top_merit_item {
  width: auto;
  text-align: center;
}

.top_merit_item_img {
  width: auto;
}

/* ---------- top_schedule ---------- */
.top_schedule {
  width: 100%;
}

.top_schedule_inner {
  width: 100%;
  background-color: #dff5ff;
  padding: 40px 100px 80px;
}
@media screen and (max-width: 1080px) {
  .top_schedule_inner {
    padding: 40px 60px 80px;
  }
}
@media screen and (max-width: 768px) {
  .top_schedule_inner {
    padding: 40px 16px 80px;
  }
}

.top_schedule_sub-ttl {
  text-align: center;
  margin-top: 80px;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .top_schedule_sub-ttl {
    font-size: 18px;
    margin-top: 40px;
  }
}

.top_schedule_box {
  margin-top: 75px;
  text-align: center;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top_schedule_box {
    margin-top: 40px;
  }
}

.top_schedule_box img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top_schedule_box img {
    width: 100%;
    max-width: clamp(300px, 100%, 310px);
  }
}

.top_schedule_arrow {
  margin: 20px auto 0;
  width: 40px;
}
@media screen and (max-width: 768px) {
  .top_schedule_arrow {
    margin: 10px auto 0;
  }
}

.top_schedule_arrow_img {
  width: 100%;
  height: auto;
}

.top_schedule_bottom-txt {
  text-align: center;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .top_schedule_bottom-txt {
    font-size: 18px;
    margin-top: 10px;
  }
}

/* ---------- top_result ---------- */
.top_result {
  width: 100%;
}

.top_result_inner {
  width: 100%;
  padding: 40px 100px 80px;
}
@media screen and (max-width: 1080px) {
  .top_result_inner {
    padding: 40px 60px 80px;
  }
}
@media screen and (max-width: 768px) {
  .top_result_inner {
    padding: 40px 16px 80px;
  }
}

.top_result_wrap {
  margin-top: 80px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top_result_wrap {
    margin-top: 40px;
  }
}

.top_result_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 10px;
}

.top_result_item {
  width: calc(33.333% - 10px);
}
@media screen and (max-width: 768px) {
  .top_result_item {
    width: 100%;
    max-width: clamp(300px, 100%, 310px);
  }
}

.top_result_item_img {
  width: 100%;
  height: auto;
}

/* ---------- top_graph ---------- */
.top_graph {
  width: 100%;
}

.top_graph_inner {
  width: 100%;
  background-color: #effafe;
  padding: 40px 100px 80px;
}
@media screen and (max-width: 1080px) {
  .top_graph_inner {
    padding: 40px 60px 80px;
  }
}
@media screen and (max-width: 768px) {
  .top_graph_inner {
    padding: 40px 16px 80px;
  }
}

.top_graph_wrap {
  margin-top: 80px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_graph_wrap {
    margin-top: 40px;
  }
}

.top_graph_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 10px;
}

.top_graph_item {
  width: calc(33.333% - 10px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_graph_item {
    width: 100%;
    max-width: 300px;
  }
}

/* ---------- top_data ---------- */
.top_data {
  width: 100%;
}

.top_data_inner {
  width: 100%;
  background-color: #dff5ff;
  padding: 40px 100px 80px;
}
@media screen and (max-width: 1080px) {
  .top_data_inner {
    padding: 40px 60px 80px;
  }
}
@media screen and (max-width: 768px) {
  .top_data_inner {
    padding: 40px 16px 80px;
  }
}

.top_data_wrap {
  margin-top: 80px;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_data_wrap {
    margin-top: 40px;
  }
}

.top_data_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 10px;
}

.top_data_item {
  width: calc(33.333% - 10px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_data_item {
    width: 100%;
    max-width: 300px;
  }
}

.top_data_item_img {
  width: 100%;
  height: auto;
}

/* ---------- top_days ---------- */
.top_days {
  width: 100%;
}

.top_days_inner {
  width: 100%;
  background-color: #ffffd8;
  padding: 40px 100px 80px;
}
@media screen and (max-width: 1080px) {
  .top_days_inner {
    padding: 40px 60px 80px;
  }
}
@media screen and (max-width: 768px) {
  .top_days_inner {
    padding: 40px 16px 80px;
  }
}

.top_days_wrap {
  margin-top: 80px;
  width: 100%;
  height: auto;
  text-align: left;
  padding: 0 24px;
}
@media screen and (max-width: 768px) {
  .top_days_wrap {
    margin-top: 40px;
    height: auto;
    padding: 0 16px;
  }
}

.top_days_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  height: 100%;
  gap: 20px 40px;
}

.top_days_txt {
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 1080px) {
  .top_days_txt {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .top_days_txt {
    font-size: 24px;
  }
}

/* ---------- top_flow ---------- */
.top_flow {
  width: 100%;
}

.top_flow_inner {
  width: 100%;
  background-color: #effafe;
  padding: 80px 100px 80px;
}
@media screen and (max-width: 1080px) {
  .top_flow_inner {
    padding: 60px 60px 80px;
  }
}
@media screen and (max-width: 768px) {
  .top_flow_inner {
    padding: 40px 16px 80px;
  }
}

.top_flow-ttl {
  margin: 0 auto;
  width: 465px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .top_flow-ttl {
    width: 300px;
  }
}

.top_flow-ttl img {
  width: 100%;
  height: auto;
}

.top_flow_wrap {
  margin-top: 80px;
  width: 100%;
  padding: 0 100px;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .top_flow_wrap {
    margin-top: 60px;
    padding: 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .top_flow_wrap {
    margin-top: 40px;
    padding: 0 16px;
  }
}

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

/* ---------- top_contact ---------- */
.top_contact {
  width: 100%;
}

.top_contact-ttl {
  margin: 0 auto 30px;
  width: auto;
  height: auto;
  padding: 24px 45px;
  background-color: #fcde32;
  border-radius: 8px;
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top_contact-ttl {
    font-size: 20px;
    height: auto;
    padding: 12px 20px;
    text-align: center;
    margin: 0 16px 20px;
  }
}

.top_contact-ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 29px solid #fcde32;
  border-bottom: 0;
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
}

.top_contact_form {
  margin: 70px auto 0;
  width: 100%;
  max-width: 426px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.top_contact_form > * {
  margin-bottom: 30px;
}

.top_contact_form > *:last-child {
  margin-bottom: 0;
}

.form_item {
  display: flex;
  flex-direction: column;
}

.form_item:not(:first-child) {
  margin-top: 20px;
}

.form_required {
  background: #db3533;
  font-size: 14px;
  color: var(--white-color);
  padding: 5px 10px;
  margin-right: 10px;
}

.form_optional {
  background: #d9d9d9;
  font-size: 14px;
  color: var(--white-color);
  padding: 5px 10px;
  margin-right: 10px;
}

.form_input {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 10px 10px;
  color: var(--black-color);
  margin-top: 8px;
  width: 100%;
  box-sizing: border-box;
}

.form_input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.cf7-name-row p {
  display: flex;
  gap: 10px;
  width: 100%;
}

.form_name_input {
  flex: 1;
  min-width: 0;
}

.form_name_input .form_input {
  width: 100%;
}

.form_input::placeholder {
  color: #d9d9d9;
}

textarea.form_input {
  height: 140px;
  resize: vertical;
}

.form_btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.form_btn-wrap > p {
  display: flex;
  justify-content: center;
  margin: 0;
}

.form_btn.m_btn--submit {
  width: 150px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 0;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.form_btn.m_btn--submit img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* スピナーが押し出すのを防ぐ */
.wpcf7 .wpcf7-spinner {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
}

/* =============================
   追従お問い合わせボタン
============================= */
#fixed-contact {
  position: fixed;
  right: 140px; /* page-topボタンの左隣に配置 */
  bottom: 0;
  z-index: 48;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  #fixed-contact {
    right: 80px; /* スマホではpage-topボタンとの間隔を調整 */
  }
}

#fixed-contact.show {
  opacity: 1;
  visibility: visible;
}

#fixed-contact a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#fixed-contact a:hover {
  transform: translateY(-6px);
  opacity: 0.85;
}

#fixed-contact img {
  width: auto;
  height: 78px; /* トップに戻るボタンと同じ高さに設定 */
  display: block;
  pointer-events: none;
  object-fit: contain; /* アスペクト比を保持しながら収める */
}

@media screen and (max-width: 768px) {
  #fixed-contact img {
    width: auto;
    height: 50px; /* スマホでもトップに戻るボタンと同じ高さ */
  }
}

/* back to top */
#page-top {
  position: fixed;
  right: 45px;
  bottom: 0;
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  #page-top {
    right: 16px;
  }
}

#page-top.show {
  opacity: 1;
  visibility: visible;
}

#page-top a {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#page-top a:hover {
  transform: translateY(-6px);
  opacity: 0.85;
}

#page-top img {
  width: 78px;
  height: 78px;
  display: block;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #page-top img {
    width: 50px;
    height: 50px;
  }
}

/* ---------- thanks ---------- */
.thanks {
  width: 100%;
}

.thanks .m_section-ttl {
  text-align: left;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.thanks p {
  text-align: left;
}

.thanks .p_thanks_gift {
  max-width: 640px;
  margin: 32px auto 40px;
  padding: 24px 20px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--primary-color) 8%, var(--white-color));
  border: 1px solid
    color-mix(in oklab, var(--primary-color) 35%, var(--white-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

/* ボタン�E�Ehanks冁E��け上書き：見た目が無ければ採用してね�E�E*/
.thanks .m_btn--primary,
.thanks .m_btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 12px 18px;
  min-width: 220px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.02s ease, background-color 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.thanks .m_btn--primary {
  color: var(--white-color);
  background: var(--primary-color);
  border: 1px solid color-mix(in oklab, var(--primary-color) 80%, black 0%);
}
.thanks .m_btn--primary:hover {
  filter: brightness(1.05);
}
.thanks .m_btn--primary:active {
  transform: translateY(1px);
}

.thanks .m_btn--secondary {
  color: var(--primary-color);
  background: var(--white-color);
  border: 1px solid
    color-mix(in oklab, var(--primary-color) 45%, var(--white-color));
}
.thanks .m_btn--secondary:hover {
  background: color-mix(in oklab, var(--primary-color) 6%, var(--white-color));
}
.thanks .m_btn--secondary:active {
  transform: translateY(1px);
}

.u_center {
  text-align: center;
}

.thanks .u_center .m_btn--secondary:first-child {
  margin-right: 12px;
}
@media (max-width: 480px) {
  .thanks .m_btn--primary,
  .thanks .m_btn--secondary {
    width: 100%;
    min-width: 0;
  }
  .thanks .u_center .m_btn--secondary:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* ---------- privacy ---------- */
.p_privacy .m_section-ttl {
  text-align: left;
  margin-bottom: 24px;
}
.p_privacy_lead {
  text-align: left;
  margin-left: 40px;
  margin-bottom: 32px;
  max-width: 760px;
  line-height: 1.9;
}
.p_privacy_section {
  margin: 24px auto;
  max-width: 860px;
}
.p_privacy_ttl {
  font-weight: 700;
  font-size: clamp(16px, 2.1vw, 18px);
  margin: 0 0 8px;
}
.p_privacy_list {
  padding-left: 1.2em;
  line-height: 1.9;
}
.p_privacy_list li {
  list-style: disc;
}
.p_privacy_address {
  line-height: 1.9;
}
.p_privacy_updated {
  margin-top: 32px;
  text-align: right;
  font-size: 14px;
  opacity: 0.8;
}
