@charset "utf-8";
/*====================================================================
 clearfix
====================================================================*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
  overflow: hidden;
}
* html .clearfix {
  height: 1px;
  overflow: hidden;
}
html.fixed, body.fixed {
  overflow: hidden;
  width: 100%;
}
.sp_view {
  display: none;
}
.pc_view {
  display: block;
}
.hover {
  transition: opacity 0.4s ease;
}
.hover:hover {
  opacity: 0.8;
}

/* reCAPTCHA */
.grecaptcha-badge {
  display: none;
}

/* ==================================================
   page fade
================================================== */
html.js body {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js body.is-loaded {
  opacity: 1;
}

html.js body.is-page-leaving {
  opacity: 0;
  transition-duration: 0.4s;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js body {
    opacity: 1;
    transition: none;
  }
}

/*-----------------------------------*/
/* ==================================================
 mainvisual
================================================== */
#wrapper {
  overflow: hidden;
}
.sp_menu_btn, .sp_global_menu {
  display: none;
}
/* ==================================================
 header
================================================== */
#header {
  width: 100%;
  background: linear-gradient(90deg, #26314e 0%, #4e5d7d 100%);
  color: #fff;
}
.header_inner {
  width: 1120px;
  height: 188px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 180px 1fr;
  align-items: center;
}
.header_logo {
  text-align: center;
}
.header_logo img {
  width: 120px;
  height: auto;
}
.header_logo span {
	display: block;
	font-size: 16px;
	font-weight: 900;
	color: #FFFFFF;
	line-height: 1.2em;
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	padding-top: 10px;
}


.header_nav ul {
  display: flex;
  align-items: center;
}
.header_nav_left ul {
  justify-content: flex-end;
}
.header_nav_right ul {
  justify-content: flex-start;
}
.header_nav li {
  width: 205px;
  text-align: center;
  position: relative;
}
.header_nav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, .35);
  transform: translateY(-50%);
}
.header_nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  transition: opacity .3s ease;
}
.header_nav a:hover {
  opacity: .75;
}
.header_nav span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .1em;
}
.header_nav em {
  display: block;
  margin-top: 4px;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
}
/* ==================================================
 facilities page
================================================== */
#facilities_page {
  color: #4a130b;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}
/* ==================================================
 facility mv
================================================== */
.facility_mv {
  overflow: hidden;
  padding: 70px 0 70px;
  background-color: #fbf3e8;
  background-image: url("../images/bg_mvphoto.webp"), url("../images/bg_font.webp");
  background-repeat: no-repeat;
  background-position: calc(50% + 141px) 334px, calc(50% + 368px) 40px;
}
.facility_slider {
  width: 1120px;
  margin: 0 auto;
  position: relative;
}
.facility_slide_area {
  position: relative;
  height: 460px;
}
.facility_slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 470px 1fr;
  align-items: center;
  gap: 52px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity .55s ease, transform .55s ease, visibility .55s ease;
}
.facility_slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.facility_text {
  padding-left: 22px;
}
.facility_num {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 66px;
  line-height: 1;
  color: #ff7900;
  letter-spacing: .02em;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.facility_num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 185px;
  height: 1px;
  background: #ff7900;
}
.facility_label {
  color: #ff7900;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 15px;
}
.facility_text h1 {
  font-size: 30px;
  line-height: 1.2em;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.facility_desc {
  font-size: 16px;
  line-height: 2.25;
  font-weight: 700;
  letter-spacing: .04em;
	margin-bottom: 20px;
}
.facility_photo {
  position: relative;
  padding-top: 45px;
}
/*
.facility_photo::before {
  content: "Prodss Facilities";
  position: absolute;
  right: 0;
  top: -20px;
  z-index: 1;
  color: #9a7a68;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 58px;
  line-height: 1;
  font-style: italic;
  transform: rotate(-6deg);
  white-space: nowrap;
  pointer-events: none;
}
*/
.facility_img {
  position: relative;
  z-index: 2;
}
.facility_img {
  width: 530px;
  height: 390px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #d9d9d9;
}
.facility_img::after {
  content: "";
  position: absolute;
  left: -42px;
  bottom: -28px;
  z-index: -1;
  width: 250px;
  height: 120px;
  background: rgba(255, 185, 91, .35);
  filter: blur(2px);
  transform: rotate(-9deg);
}
.facility_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.facility_img.is-noimage {
  background: #d9d9d9;
}
/* arrows */
.facility_arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 62px;
  height: 62px;
  border: 2px solid #ff7900;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background .3s ease, transform .3s ease;
}
.facility_arrow:hover {
  background: rgba(255, 121, 0, .08);
  transform: translateY(-50%) scale(1.06);
}
.facility_prev {
  left: -72px;
}
.facility_next {
  right: -72px;
}
.facility_arrow span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border-top: 2px solid #ff7900;
  border-right: 2px solid #ff7900;
}
.facility_prev span {
  transform: translate(-38%, -50%) rotate(-135deg);
}
.facility_next span {
  transform: translate(-62%, -50%) rotate(45deg);
}
/* bars */
.facility_bars {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}
.facility_bars button {
  width: 66px;
  height: 6px;
  padding: 0;
  border: none;
  background: #deded3;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
}
.facility_bars button.is-active {
  background: #ff7900;
}
.facility_bars button:hover {
  transform: translateY(-2px);
}
/* ==================================================
 facility thumb
================================================== */
.facility_thumb_sec {
  background: #fff;
  padding: 22px 0 78px;
}
.facility_thumb_list {
  width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.facility_thumb {
  min-height: 300px;
  padding: 44px 38px 28px;
  border: none;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  background: #fff;
  text-align: center;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 縦方向中央 */
  align-items: center; /* 横方向中央 */
  transition:
    border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.facility_thumb:nth-child(3n + 1) {
  border-left: 1px solid #e1e1e1;
}
.facility_thumb:nth-child(-n + 3) {
  border-top: 1px solid #e1e1e1;
}
.facility_thumb.is-active {
  border: 2px solid #ff7900;
  z-index: 2;
}
.facility_thumb:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .08);
  z-index: 3;
}
.thumb_num {
  position: absolute;
  left: 20px;
  top: 24px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ff7900;
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 32px;
  line-height: 1;
  box-shadow: 0 0 0 4px #fff;
}
.thumb_img {
  display: block;
  width: 260px;
  height: 132px;
  margin: 0 auto 20px;
  border-radius: 8px;
  overflow: hidden;
  background: #d9d9d9;
}
.thumb_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.facility_thumb:hover .thumb_img img {
  transform: scale(1.06);
}
.thumb_label {
  display: block;
  color: #ff7900;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.facility_thumb strong {
  display: block;
  color: #4a130b;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
  letter-spacing: .04em;
}
.g-recaptcha {
  clear: both;
  width: 310px;
  margin: 0px auto 20px !important;
}
/* ==================================================
   concept
================================================== */
#concept {
  position: relative;
  width: 100%;
  min-height: 934px;
  background: url("../images/bg_concept.webp") center center / cover no-repeat;
  overflow: hidden;
  color: #4a130b;
}
/* 左側の淡いベージュグラデーション */
#concept::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 225, 188, .92) 0%, rgba(250, 225, 188, .78) 28%, rgba(250, 225, 188, .42) 48%, rgba(250, 225, 188, .08) 68%, rgba(250, 225, 188, 0) 100%);
  z-index: 1;
  pointer-events: none;
}
/* 写真全体に少し温かみを足す */
#concept::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 227, 184, .12);
  z-index: 2;
  pointer-events: none;
}
.concept_inner {
  position: relative;
  z-index: 3;
  width: 1180px;
  min-height: 934px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.concept_text {
  width: 630px;
  padding-top: 10px;
}
.concept_en {
  margin: 0 0 58px;
  color: #754739;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 62px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .08em;
}
.concept_text h2 {
  margin: 0 0 0 30px;
  color: #4a130b;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: .025em;
}
.concept_text h2 span {
  display: inline-block;
  margin-left: -0.5em;
}
.concept_text h3 {
  margin: 40px 0 0 30px;
  color: #4a130b;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6em;
  letter-spacing: .06em;
}
.concept_lead {
  margin: 30px 0 0 30px;
  color: #4a130b;
  font-size: 16px;
  font-weight: 600;
  line-height: 2.2em;
  letter-spacing: .05em;
}
/* ==================================================
   common section head
================================================== */
.section_head {
  text-align: center;
}
.section_head h2 {
  margin: 0;
  color: #4a130b;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
}
.section_head p {
  margin-top: 10px;
  color: #9a7a68;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}
.section_head::after {
  content: "";
  display: block;
  width: 68px;
  height: 4px;
  margin: 18px auto 0;
  background: #ff7900;
}
/* ==================================================
   news
================================================== */
#news {
  background: #fff;
  padding: 95px 0 78px;
  color: #4a130b;
}
.news_inner {
  width: 1120px;
  margin: 0 auto;
}
.news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 58px;
}
.news_item a {
  display: block;
  color: #222;
  text-decoration: none;
}
.news_img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #aaa;
}
.news_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news_item a:hover .news_img img {
  transform: scale(1.06);
}
.news_item time {
  display: block;
  margin-top: 18px;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
}
.news_item h3 {
  margin: 14px 0 0;
  color: #222;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.75;
  letter-spacing: .03em;
  transition: color .3s ease;
}
.news_item a:hover h3 {
  color: #ff7900;
}
.news_more {
  text-align: center;
  margin-top: 64px;
}

.bt_more {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 235px;
  height: 46px;
  border-radius: 999px;
  background: #313d5d;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  transition: transform .3s ease, opacity .3s ease;
}
.bt_more span {
  position: relative;
  z-index: 2;
}
.bt_more::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: relative;
  z-index: 2;
  transition: transform .3s ease;
}
.bt_more:hover {
  transform: translateY(-3px);
  opacity: .9;
}
.bt_more:hover::after {
  transform: rotate(45deg) translate(3px, -3px);
}

/**/

.fa_button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 235px;
  height: 46px;
  border-radius: 999px;
  background: #313d5d;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  transition: transform .3s ease, opacity .3s ease;
}
.fa_button span {
  position: relative;
  z-index: 2;
}
.fa_button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: relative;
  z-index: 2;
  transition: transform .3s ease;
}
.fa_button:hover {
  transform: translateY(-3px);
  opacity: .9;
}
.fa_button:hover::after {
  transform: rotate(45deg) translate(3px, -3px);
}


/* ==================================================
   company
================================================== */
#company {
  background: #fff;
  padding: 50px 0 120px;
  color: #4a130b;
}
.company_inner {
  width: 1040px;
  margin: 0 auto;
}
.company_content {
  display: grid;
  grid-template-columns: 560px 430px;
  justify-content: space-between;
  align-items: center;
  margin-top: 70px;
}
.company_text h3 {
  margin: 0 0 25px;
  color: #4a130b;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: .08em;
}
.company_text p {
  margin: 0;
  color: #4a130b;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
  letter-spacing: .04em;
}
.company_info {
  margin: 38px 0 0;
}
.company_info div {
  display: flex;
  align-items: baseline;
  color: #4a130b;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.8;
  letter-spacing: .04em;
}
.company_info dt {
  margin-right: 10px;
}
.company_info dt::before {
  content: "【";
}
.company_info dt::after {
  content: "】";
}
.company_info dd {
  margin: 0;
}
.company_info dd a {
   color: #4a130b; 
}

.company_recruit {
  margin-top: 22px !important;
  padding: 12px 18px;
  background: #313d5d;
  border-radius: 6px;
  color: #fff !important;
  text-align: center;
  font-size: 15px !important;
  line-height: 1.5 !important;
  box-sizing: border-box;
}
.company_img {
  width: 430px;
  height: 330px;
  overflow: hidden;
}
.company_img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==================================================
 contact
================================================== */
#contact {
  background: #fdfaf8;
  padding: 120px 0;
}

.contact_inner {
  width: 1040px;
  margin: 0 auto;
  padding: 75px 100px 105px;
  background: #fff;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
}

.contact_head {
  text-align: center;
}

.contact_head h2 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #666;
  line-height: 1;
}

.contact_head p {
  margin-top: 13px;
  font-size: 15px;
  font-weight: 700;
  color: #666;
}

.contact_lead {
  margin-top: 50px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
}

.contact_form {
  margin-top: 55px;
}

.contact_form dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 24px;
}

.contact_form dt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #444;
}

.contact_form dt span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 18px;
  border-radius: 9px;
  background: #a40000;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.contact_form input,
.contact_form textarea {
  width: 100%;
  border: 1px solid #999;
  background: #fff;
  padding: 0 16px;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  outline: none;
}

.contact_form input {
  height: 44px;
}

.contact_form textarea {
  height: 250px;
  padding-top: 16px;
  resize: vertical;
}

.contact_form input::placeholder,
.contact_form textarea::placeholder {
  color: #aaa;
}

.contact_form input:focus,
.contact_form textarea:focus {
  border-color: #f8b500;
  box-shadow: 0 0 0 3px rgba(248, 181, 0, 0.18);
}

.privacy_box {
  margin-top: 48px;
  border: 1px solid #999;
  padding: 32px 38px 38px;
  box-sizing: border-box;
}

.privacy_title {
  width: 100%;
  background: #999;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 16px 0px;
  font-weight: 700;
}

.privacy_text {
  margin-top: 25px;
  max-height: 120px;
  overflow-y: auto;
}

.privacy_text p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: #333;
}

.agree_check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  margin: 35px auto 0;
  cursor: pointer;
}

.agree_check input {
  width: 22px;
  height: 22px;
  padding: 0;
  appearance: none;
  border: 1px solid #777;
  position: relative;
  cursor: pointer;
}

.agree_check input:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 13px;
  border-right: 2px solid #f8b500;
  border-bottom: 2px solid #f8b500;
  transform: rotate(45deg);
}

.agree_check span {
  font-size: 14px;
  font-weight: 700;
  color: #333;
}

.recaptcha_area {
  text-align: center;
  margin-top: 28px;
}

.recaptcha_area img {
  width: 210px;
  height: auto;
}

.submit_area {
  text-align: center;
  margin-top: 42px;
}

.submit_area button {
  position: relative;
  overflow: hidden;
  width: 250px;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: #f8b500;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3em;
  cursor: pointer;
  transition: .35s ease;
}

.submit_area button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(248, 181, 0, 0.28);
}


/* ==================================================
   footer
================================================== */
#footer {
  background: #313d5d;
  color: #fff;
  padding: 62px 0 38px;
  text-align: center;
}
.footer_inner {
  width: 1120px;
  margin: 0 auto;
}
.footer_logo {
  margin: 0;
}
.footer_logo img {
  width: 130px;
  height: auto;
}
.footer_nav {
  margin-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
}
.footer_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.footer_nav li {
  position: relative;
  list-style: none;
  padding: 0 26px;
}
.footer_nav li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .55);
  transform: translateY(-50%);
}
.footer_nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  transition: opacity .3s ease;
}
.footer_nav a:hover {
  opacity: .7;
}
.copyright {
  margin: 28px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
}

/* ===============================
   個人情報保護方針ページ用CSS
   =============================== */
.poli_wrap {
  clear: both;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 10px 20px;
  border: 1px solid #cccccc;
  margin-bottom: 0px;
}
.privacy-policy {
  width: 100%;
  overflow-y: scroll !important;
  line-height: 1.6em;
  font-size: 14px;
  height: 250px;
  box-sizing: border-box;
  padding: 30px 50px 30px;
}
/* --- Chrome / Edge / Safari --- */
.privacy-policy::-webkit-scrollbar {
  width: 14px; /* 横幅 */
}
.privacy-policy::-webkit-scrollbar-track {
  background: transparent; /* トラック部分（透明にしておく） */
}
.privacy-policy::-webkit-scrollbar-thumb {
  background-color: #E0E0E0; /* スクロール部分 */
  border-radius: 9px; /* 角丸 */
  border: 3px solid transparent; /* 内側に余白をつけて丸感を出す */
  background-clip: content-box; /* 余白を反映させる */
}
/* --- Firefox --- */
.privacy-policy {
  scrollbar-width: thin; /* 細めにする */
  scrollbar-color: #E0E0E0 transparent; /* 色（つまみ / 背景） */
}
.privacy-policy h4 {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}
/* 段落 */
.privacy-policy p {
  margin: 0 0 1.2em;
}
/* 見出し（h5） */
.privacy-policy h5 {
  font-size: 15px;
  font-weight: bold;
  margin: 2em 0 0.8em;
}
.privacy-policy h5::before {
  content: '●';
  font-size: 16px;
  margin-right: 5px;
}
/* 番号付きリスト */
.privacy-policy ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
.privacy-policy ol li {
  margin-bottom: 0.5em;
}
/* 箇条書きリスト */
.privacy-policy ul {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
  list-style-type: disc;
}
.privacy-policy ul li {
  margin-bottom: 0.5em;
}
/* 住所や問い合わせ先 */
.privacy-policy address, .privacy-policy .contact {
  font-style: normal;
  background: #f8f8f8;
  padding: 10px 15px;
  border-left: 3px solid #ccc;
  margin: 1em 0;
}
/* 強調したい部分 */
.privacy-policy strong {
  color: #c00;
  font-weight: bold;
}

#policy_agree {
  width: 400px;
  font-size: 18px;
  text-align: center;
  margin: 0 auto 20px;
  cursor: pointer;
}
#policy_agree label {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  margin: 0px auto 0px;
}
/* ボタンのラッパー */
#bt_submit {
  text-align: center; /* 横中央揃え */
  margin-bottom: 40px; /* 下余白 */
}
/* ボタン本体 */
#bt_submit input[type="submit"] {
  width: 310px;
  height: 60px;
  background: #3d4766;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease; /* フェードアニメーション */
}
/* ホバー時 */
#bt_submit input[type="submit"]:hover {
  background: #505050;
}
.g-recaptcha {
  clear: both;
  width: 310px;
  margin: 0px auto 20px !important;
}
