@charset "utf-8";

/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */
#mv {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.mv_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.mv_title,
.mv_text {
  font-weight: 700;
}
.mv_title span {
  color: var(--maincolor);
}
.mv_text {
  line-height: 2;
}
.scroll_down{
  position:absolute;
  bottom: 0px;
  right: 4rem;
}

.scroll_down a{
  position: absolute;
  left: 1rem;
  bottom: 6.8rem;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: .2em;
  writing-mode: vertical-lr;
  white-space: nowrap;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  z-index: 2;
  background:var(--maincolor);
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove{
  0%{bottom:16rem;}
  100%{bottom:0px;}
}

@keyframes cirlemovehide{
  0%{opacity:0}
  50%{opacity:1;}
  80%{opacity:0.9;}
  100%{opacity:0;}
}

.scroll_down:after{
  content:"";
  position: absolute;
  bottom:0;
  left:0;
  width:.1rem;
  height: 16rem;
  background:#fff;
}


@media only screen and ( max-width : 767px ) {
  #mv {
    background-image: url(../img/main_sp.jpg);
    background-position: bottom center;
    padding-top: 8.4rem;
    padding: 26vw 6vw 0;
    height: 180vw;
  }
  .mv_inner {
    flex-direction: column;
    justify-content: flex-start;
  }
  .mv_title {
    font-size: 10vw;
    margin-bottom: 8vw;
  }
  .mv_text {
    font-size: 5vw;
  }
  
}
@media print, screen and ( min-width : 768px ) {
  #mv {
    background-image: url(../img/main.jpg);
    padding-top: 8.4rem;
    padding: 8.4rem 10vw 0;
  }
  .mv_title {
    font-size: 5.12vw;
    margin-bottom: 4vw;
  }
  .mv_text {
    font-size: 1.6vw;
  }
}

/* ---------------------------------------------------------------------------------------------

　   ABOUT

--------------------------------------------------------------------------------------------- */
#about {
  position: relative;
  color: #fff;
  overflow: hidden;
}

#about:before {
  content: "";
  background: var(--subcolor01);
  position: absolute;
  z-index: -1;
  border-radius: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
}
#about .title_heading {
  color: #fff;
}
.about_text {
  line-height: 2;
  font-weight: 500;
}
@media only screen and ( max-width : 767px ) {
  #about {
    margin: 3rem 0 0;
  }
  #about:before {
    width: 100%;
  }
  .about_text {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 4rem;
  }
}
@media print, screen and ( min-width : 768px ) {
  #about {
    padding: 6rem 0 10rem;
    margin: 5rem 0 0;
  }
  #about:before {
    width: calc(100% - 8rem);
  }
  #about .title_heading {
    align-items: flex-start;
  }
  .about_text {
    font-size: 2.2rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   PRODUCT

--------------------------------------------------------------------------------------------- */
.product_category_item h3 {
  color: var(--maincolor);
  font-weight: 700;
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
}
.product_category_item h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: .3rem;
  background: var(--maincolor);
}
.product_category_name {
  font-weight: 700;
}
.product_category_btn {
  background: #343434;
  color: #fff;
  font-weight: 700;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15rem;
  height: 4rem;
  position: relative;
}
.product_category_btn:after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/ico-download.png) no-repeat center center / contain;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
.product_category_text {
  font-weight: 500;
}
@media only screen and ( max-width : 767px ) {
  .product_category_list {
    margin-bottom: 6rem;
  }
  .product_category_item {
    margin-bottom: 4rem;
  }
  .product_category_item:last-of-type {
    margin-bottom: 0;
  }
  .product_category_item h3 {
    font-size: 1.7rem;
  }
  .product_category_name {
    font-size: 1.6rem;
  }
  .product_category_info {
    margin: 1.5rem 0 1rem;
  }
  .product_category_text {
    font-size: 1.3rem;
  }
  .product_category_btn {
    width: 12rem;
  }

}
@media print, screen and ( min-width : 768px ) {
  .product_category_list {
    margin-bottom: 10rem;
  }
  .product_category_item h3 {
    font-size: 2rem;
  }
  .product_category_name {
    font-size: 1.8rem;
  }
  .product_category_info {
    margin: 3rem 0 2rem;
  }
  .product_category_text {
    font-size: 1.5rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   PRODUCT ITEM LIST

--------------------------------------------------------------------------------------------- */

.product_item_list_nav {
  max-width: 60rem;
  margin: 0 auto 5rem;
  border: 1px solid var(--maincolor);
  border-radius: 1rem;
  overflow: hidden;
}
.product_item_list_nav_item {
  flex: 1;
  border-right: 1px solid var(--maincolor);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  color: var(--maincolor);
}
.product_item_list_nav_item span {
  text-align: center;
  line-height: 1.2;
}
.product_item_list_nav_item:last-of-type {
  border-right: none;
} 

.product_item_list_nav_item.active {
  background: var(--maincolor);
  color: #fff;
}
.product_item_list_content_item {
  display: none;
}
.product_item_list_content_item.active {
  display: block;
}
/* Slick Carousel Styles */
.product_item_slider {
  position: relative;
  padding-bottom: 6rem;
}
.product_item_slider .slick-arrow {
  position: absolute;
  bottom: 0;
  z-index: 10;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--maincolor);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  transition: all 0.3s ease;
}
.product_item_slider .slick-arrow:hover {
  background: var(--maincolor);
  border-color: var(--maincolor);
}
.product_item_slider .slick-arrow:hover::before {
  color: #fff;
}
.product_item_slider .slick-prev {
  right: 5rem;
}
.product_item_slider .slick-next {
  right: 0;
}
.product_item_slider .slick-arrow::before {
  content: "←";
  font-size: 2rem;
  color: var(--maincolor);
  line-height: 1;
  transition: color 0.3s ease;
}
.product_item_slider .slick-next::before {
  content: "→";
}
.product_item_slider .slick-slide {
  /* padding: 0 1rem; */
  height: auto;
}
/* .product_item_slider .slick-slide > div {
  height: 100%;
} */
.product_item_slider .slick-track {
  display: flex;
  align-items: stretch;
}
.product_item_slider .slick-list {
  margin: 0 -1rem;
  overflow: visible;
}
/* Slick Dots - Line Meter Style */
.product_item_slider .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 6rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  height: 0.3rem;
  background: #E0E0E0;
  border-radius: 0.15rem;
  z-index: 5;
  --progress: 0%;
  overflow: hidden;
}
.product_item_slider .slick-dots::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  min-width: 0;
  height: 100%;
  background: var(--maincolor);
  border-radius: 0.15rem;
  transition: width 0.3s ease;
  z-index: 1;
  display: block;
  pointer-events: none;
}
.product_item_slider .slick-dots li {
  position: relative;
  flex: 1;
  height: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}
.product_item_slider .slick-dots li button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  outline: none;
}
.product_item_slider .slick-dots li button:before {
  display: none;
}
.product_item_slider .slick-dots li.slick-active {
  background: transparent;
}
.product_item_list_item {
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  margin: 0 1.5rem;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.product_item_list_category {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--maincolor);
  color: #fff;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0 0 .5rem 0;
  font-size: 1.1rem;
  height: auto;
  width: auto;
}
.product_item_list_name  {
  color: var(--maincolor);
  font-weight: 700;
  border-bottom: 1px solid var(--maincolor);
  padding-bottom: .3em;
  margin-bottom: .8em;
  font-size: 2rem;
}
.product_item_list_title {
  font-weight: 700;
  margin-bottom: .5em;
}
.product_item_list_img {
  margin: 5rem 0 2rem;
  flex-shrink: 0;
  height: 25rem;
}
.product_item_list_img img {
  display: block;
  margin: 0 auto;
  width: auto;
  object-fit: contain;
  height: 100%;
}
.product_item_list_info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product_item_list_text {
  font-size: 1.4rem;
  flex: 1;
}
.product_item_list_robot_img {
  position: absolute;
  right: 1rem;
  width: 14rem;
  top: .5rem;
}
@media only screen and ( max-width : 767px ) {
  .product_item_slider {
    padding-bottom: 5rem;
  }
  .product_item_slider .slick-arrow {
    width: 5rem;
    height: 5rem;
    bottom: -2.5rem;
  }
  .product_item_slider .slick-prev {
    right: 6rem;
  }
  .product_item_slider .slick-next {
    right: 0;
  }
  .product_item_slider .slick-arrow::before {
    font-size: 1.5rem;
  }
  .product_item_slider .slick-dots {
    left: 0;
    height: 0.3rem;
    width: calc(100% - 14rem);
  }
}
@media print, screen and ( min-width : 768px ) {
  .product_item_slider {
    padding-bottom: 6rem;
  }
  .product_item_slider .slick-arrow {
    width: 7rem;
    height: 7rem;
    bottom: -3.5rem;
  }
  .product_item_slider .slick-prev {
    right: 9rem;
  }
  .product_item_slider .slick-next {
    right: 0;
  }
  .product_item_slider .slick-dots {
    left: 0;
    height: 0.3rem;
    width: calc(100% - 22rem);
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMPANY

--------------------------------------------------------------------------------------------- */
#service {
  position: relative;
  overflow: hidden;
}

#service:before {
  content: "";
  background: #EDEDED;
  position: absolute;
  z-index: -1;
  border-radius: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
}
.service_content_list li {
  color: var(--maincolor);
  background: #fff;
  font-weight: 700;
  border-radius: 1rem;
  padding: .5em .4em;
  text-align: center;
  cursor: pointer;
}
.service_content_list li.current {
  background: var(--maincolor);
  color: #fff;
}
.service_content_text {
  background: #fff;
  border-radius: 1rem;
}
.service_text_item {
  display: none;
}
.service_text_item.active {
  display: block;
}
.service_accordion {
  border-bottom: 1px solid #EDEDED;
}
.service_accordion:last-child {
  border-bottom: none;
}
.service_accordion_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 1.5rem;
}


.service_accordion_title_text {
  flex: 1;
}
.service_accordion_toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
  color: var(--maincolor);
  font-weight: 500;
}
.service_accordion_icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.service_accordion_title.active .service_accordion_icon {
  transform: rotate(45deg);
}
.service_accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.service_accordion_content > div {
  padding: 1.5rem 1.5rem 3rem;
}
.service_accordion_text p {
  line-height: 1.8;
}
.service_accordion_text p span {
  font-weight: 700;
  color: var(--subcolor01);
  font-size: 1.4em;
}
.service_strong_text {
  font-weight: 700;
  margin-top: 1rem;
  color: var(--subcolor01);
}

@media only screen and ( max-width : 767px ) {
  #service {
    margin: 3rem 0 0;
  }
  #service:before {
    width: 100%;
  }
  .service_content_list {
    margin-bottom: 2rem;
  }
  .service_content_list ul {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  .service_content_list li {
    width: 48%;
  }
  .service_accordion_toggle_text {
    display: none;
  }
}
@media print, screen and ( min-width : 768px ) {
  #service {
    padding: 6rem 0 10rem;
    margin: 5rem 0 0;
  }
  #service:before {
    width: calc(100% - 8rem);
  }
  .service_content_list {
    width: 26rem;
    margin-right: 5rem;
  }
  .service_content_list li {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .service_content_text {
    width: calc(100% - 26rem - 5rem);
    padding: 2rem;
  }
  .service_accordion_title_text {
    font-size: 1.8rem;
  }
}


/* ---------------------------------------------------------------------------------------------

　   COMPANY

--------------------------------------------------------------------------------------------- */
#contact {
  position: relative;
  color: #fff;
  overflow: hidden;
}
#contact:before {
  content: "";
  background: var(--subcolor01);
  position: absolute;
  z-index: -1;
  border-radius: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
}
#contact .title_heading {
  color: #fff;
}
.contact_info_title {
  text-align: center;
  margin-bottom: 1rem;
}
.contact_info_text_p {
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.contact_tel {
  margin-top: 5.5rem;
}
.contact_tel_title {
  border-bottom: 1px solid #fff;
  padding-bottom: .4em;
  position: relative;
  text-align: center;
}
.contact_tel_text {
  font-weight: 700;
}
.contact_tel_text a {
  color: #fff;
}
.contact_tel_time {
  text-align: center;
}
.contact_form_more {
  background: #FFC422;
  margin: 0 auto;
  max-width: 52rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 9rem;
  position: relative;
  color: #000;
  cursor: pointer;
}
.contact_form_more:before {
  content: "";
  position: absolute;
  background: url(../img/illust-woman.png) no-repeat center center / contain;
}
.contact_form_more:after {
  content: "";
  background: url(../img/arrow-down.png) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.contact_form_more.active:after {
  transform: translateY(-50%) rotate(180deg);
}
.contact_form_content {
  background: #fff;
  max-width: 80rem;
  margin: 0 auto;
  border-radius: 2rem;
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  position: relative;
}
.contact_form_close_btn {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #CFF1FC;
  color: var(--maincolor);
  font-weight: 700;
  border-radius: 2rem 0 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.contact_form_close_btn .close_icon {
  font-weight: 400;
}
.contact_form_content.active {
  display: block;
  max-height: 5000px;
}
#contact .contact_form_content {
  color: #000;
}
.contact_form_content dl {
  margin: 0;
  padding: 0;
}
.contact_form_content dt {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.contact_form_content .required {
  display: inline-block;
  background: #E60012;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.2em 0.6em;
  border-radius: 0.2rem;
  line-height: 1.4;
  margin-right: 1rem;
}
.contact_form_content dd {
  margin: 0 0 2rem 0;
}
.contact_form_content dd:last-of-type {
  margin-bottom: 0;
}
.contact_form_content input[type="text"],
.contact_form_content input[type="email"],
.contact_form_content input[type="tel"],
.contact_form_content textarea,
.contact_form_content select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 1px solid #CCCCCC;
  border-radius: 0.4rem;
  background: #fff;
  font-size: 1.4rem;
  font-family: inherit;
  color: #000;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.contact_form_content input[type="text"]:focus,
.contact_form_content input[type="email"]:focus,
.contact_form_content input[type="tel"]:focus,
.contact_form_content textarea:focus,
.contact_form_content select:focus {
  outline: none;
  border-color: var(--maincolor);
}
.contact_form_content input[type="text"]::placeholder,
.contact_form_content input[type="email"]::placeholder,
.contact_form_content input[type="tel"]::placeholder,
.contact_form_content textarea::placeholder {
  color: #999999;
}
.contact_form_content textarea {
  min-height: 15rem;
  resize: vertical;
}
.contact_form_content select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  padding-right: 4rem;
  cursor: pointer;
}
.contact_form_privacy {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}
/* Contact Form 7対応：acceptanceタグを使う場合 */
.contact_form_privacy .wpcf7-acceptance,
.wpcf7-form-control.wpcf7-acceptance {
  text-align: center;
  margin: 0;
}
.contact_form_privacy_title,
.contact_form_privacy h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 0;
}
.contact_form_privacy_checkbox {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
/* Contact Form 7対応：チェックボックスとラベルのコンテナ */
.contact_form_privacy .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.contact_form_privacy input[type="checkbox"],
.contact_form_privacy .wpcf7-acceptance input[type="checkbox"],
.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  border: 1px solid #CCCCCC;
  border-radius: 0.3rem;
  cursor: pointer;
  appearance: none;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.contact_form_privacy input[type="checkbox"]:checked,
.contact_form_privacy .wpcf7-acceptance input[type="checkbox"]:checked,
.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked {
  background: var(--maincolor);
  border-color: var(--maincolor);
}
.contact_form_privacy input[type="checkbox"]:checked::after,
.contact_form_privacy .wpcf7-acceptance input[type="checkbox"]:checked::after,
.wpcf7-form-control.wpcf7-acceptance input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.contact_form_privacy label,
.contact_form_privacy .wpcf7-acceptance label,
.wpcf7-form-control.wpcf7-acceptance label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.contact_form_privacy .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.contact_form_privacy .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}
.contact_form_submit {
  text-align: center;
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.contact_submit_btn,
.wpcf7-previous {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--maincolor);
  color: #fff;
  border: none;
  border-radius: 5rem;
  padding: 1.5rem 4rem;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: inherit;
  width: 100%;
}
.wpcf7-previous {
  background: #999;
  margin-bottom: 1.5rem;
}
.contact_submit_btn:hover:not(:disabled) {
  background: #0052A3;
}
.contact_submit_btn:disabled,
.wpcf7-submit:disabled {
  background: #CCCCCC;
  color: #999999;
  cursor: not-allowed;
  opacity: 0.6;
}
.contact_submit_btn .submit_arrow {
  font-size: 2rem;
  line-height: 1;
}
.contact_form_privacy_content {
	overflow: auto;
	border: 1px solid #ccc;
	padding: 1.5rem;
	text-align: left;
	margin-bottom: 1.5rem;
}
.contact_form_privacy_content p {
	margin-bottom: 2rem;
}
.contact_form_privacy_content h4 {
	font-size: 1.2em;
}
.contact_form_privacy_content h5 {
	margin-top: 3rem;
	font-size: 1.1em;
	margin-bottom: .5rem;
}
@media only screen and ( max-width : 767px ) {
  #contact {
    margin: 3rem 0 0;
  }
  #contact:before {
    width: 100%;
  }
  .contact_info {
    margin-bottom: 4rem;
  }
  .contact_info_title,
  .contact_tel_title {
    font-size: 1.8rem;
  }
  .contact_info_text_p {
    font-size: 1.5rem;
  }
  .contact_tel_text {
    text-align: center;
  }
  .contact_tel_text_span {
    font-size: 2rem;
  }
  .contact_tel_text_number {
    font-size: 4rem;
  }
  .contact_tel_time {
    font-size: 1.2rem;
  }
  .contact_area {
    margin: 5rem auto 0;
    width: 80%;
  }
  .contact_form_more {
    font-size: 1.7rem;
    height: 6rem;
  }
  .contact_form_more:before {
    top: -3.4rem;
    width: 2.5rem;
    height: 5.8rem;
    right: .5rem;
  }
  .contact_form_more:after {
    right: 2rem;
    height: 1.6rem;
    width: .9rem;
  }
  .contact_form_content {
    margin-top: 0;
    padding: 3rem 2rem 8rem;
  }
  .contact_form_content.active {
    margin-top: 3rem;
  }
  .contact_form_content dt {
    font-size: 1.4rem;
  }
  .contact_form_content .required {
    font-size: 0.9rem;
    padding: 0.15em 0.5em;
  }
  .contact_form_content input[type="text"],
  .contact_form_content input[type="email"],
  .contact_form_content input[type="tel"],
  .contact_form_content textarea,
  .contact_form_content select {
    font-size: 1.3rem;
    padding: 1rem 1.2rem;
  }
  .contact_form_content textarea {
    min-height: 12rem;
  }
  .contact_form_privacy {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .contact_form_privacy_title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .contact_form_privacy input[type="checkbox"],
  .contact_form_privacy .wpcf7-acceptance input[type="checkbox"],
  .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
    width: 1.8rem;
    height: 1.8rem;
  }
  .contact_form_privacy label,
  .contact_form_privacy .wpcf7-acceptance label,
  .wpcf7-form-control.wpcf7-acceptance label {
    font-size: 1.3rem;
  }
  .contact_form_submit {
    margin-top: 2.5rem;
  }
  .contact_submit_btn,
  .wpcf7-previous {
    width: 100%;
    font-size: 1.5rem;
    padding: 1.3rem 3rem;
  }
  .contact_form_close_btn {
    width: 12rem;
    height: 5rem;
    font-size:1.5rem;
  }
  .contact_form_close_btn .close_icon {
    font-size: 2.4rem;
    margin-right: .8rem;
  }
	.contact_form_privacy_content {
		height: 15rem;
		font-size: 1.2rem;
	}
}
@media print, screen and ( min-width : 768px ) {
  #contact {
    padding: 6rem 0 10rem;
    margin: 5rem 0 0;
  }
  #contact:before {
    width: calc(100% - 8rem);
  }
  .contact_info {
    margin-bottom: 16rem;
  }
  .contact_info_text {
    width: 60rem;
    padding-left: 12rem;
  }
  .contact_area {
    width: 40rem;
  }
  .contact_info_title,
  .contact_tel_title {
    font-size: 2.2rem;
  }
  .contact_tel_text_span {
    font-size: 2.7rem;
  }
  .contact_tel_text_number {
    font-size: 5.6rem;
  }
  .contact_tel_time {
    font-size: 1.4rem;
  }
  .contact_info_text_p {
    font-size: 1.7rem;
  }
  .contact_form_more {
    font-size: 2.4rem;
    height: 9rem;
  }
  .contact_form_more:before {
    top: -5rem;
    right: 1rem;
    width: 3.6rem;
    height: 8.6rem;
  }
  .contact_form_more:after {
    right: 3.4rem;
    height: 2.2rem;
    width: 1.2rem;
  }
  .contact_form_content {
    margin-top: 5rem;
    padding: 5rem 10rem 8rem;
  }
  .contact_form_content.active {
    margin-top: 5rem;
  }
  .contact_form_content dt {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .contact_form_content .required {
    font-size: 1.1rem;
    padding: 0.25em 0.7em;
  }
  .contact_form_content dd {
    margin-bottom: 2.5rem;
  }
  .contact_form_content input[type="text"],
  .contact_form_content input[type="email"],
  .contact_form_content input[type="tel"],
  .contact_form_content textarea,
  .contact_form_content select {
    font-size: 1.5rem;
    padding: 1.3rem 1.8rem;
  }
  .contact_form_content textarea {
    min-height: 18rem;
  }
  .contact_form_privacy {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .contact_form_privacy_title {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
  .contact_form_privacy input[type="checkbox"],
  .contact_form_privacy .wpcf7-acceptance input[type="checkbox"],
  .wpcf7-form-control.wpcf7-acceptance input[type="checkbox"] {
    width: 2.2rem;
    height: 2.2rem;
  }
  .contact_form_privacy label,
  .contact_form_privacy .wpcf7-acceptance label,
  .wpcf7-form-control.wpcf7-acceptance label {
    font-size: 1.5rem;
  }
  .contact_form_submit {
    margin-top: 4rem;
  }
  .contact_submit_btn,
  .wpcf7-previous {
    font-size: 1.8rem;
    padding: 1.8rem 5rem;
  }
  .contact_form_close_btn {
    width: 15.4rem;
    height: 6.2rem;
    font-size:2rem;
  }
  .contact_form_close_btn .close_icon {
    font-size: 3.4rem;
    margin-right: 1.2rem;
  }
	.contact_form_privacy_content {
		height: 25rem;
		font-size: 1.4rem;
	}
}



/* ---------------------------------------------------------------------------------------------

　   COMPANY

--------------------------------------------------------------------------------------------- */
#company {
  position: relative;
  color: #fff;
  overflow: hidden;
}

#company:before {
  content: "";
  background: var(--maincolor);
  position: absolute;
  z-index: -1;
  border-radius: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
}
#company .title_heading {
  color: #fff;
}
.company_info_list dt span {
  display: block;
  background: #fff;
  color: var(--maincolor);
  text-align: center;
  font-weight: 700;
  border-radius: 2rem;
  padding: .2em .4em;
}
.company_info_list dd {
  font-weight: 700;
  line-height: 1.7;
}
.company_info_list li {
  list-style: disc;
  margin-left: 1em;
  line-height: 1.7;
}
@media only screen and ( max-width : 767px ) {
  #company {
    margin: 3rem 0 0;
  }
  #company:before {
    width: 100%;
  }
  .company_info_list dt {
    margin-bottom: 1rem;
  }
  .company_info_list dt span {
    width: 14rem;
  }
  .company_info_list dd {
    margin-bottom: 3rem;
  }
  .company_info_list dd:last-of-type {
    margin-bottom: 0;
  }
}
@media print, screen and ( min-width : 768px ) {
  #company {
    padding: 6rem 0 10rem;
    margin: 5rem 0 0;
  }
  #company:before {
    width: calc(100% - 8rem);
  }
  .company_info_list {
    display: flex;
    flex-wrap: wrap;
    max-width: 80rem;
    margin: 0 auto;
  }
  .company_info_list dt,
  .company_info_list dd {
    border-bottom: 1px solid #fff;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
  }
  .company_info_list dt:last-of-type,
  .company_info_list dd:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;

  }
  .company_info_list dt {
    width: 20.4rem;
    padding-right: 4rem;
  }
  .company_info_list dd {
    width: calc(100% - 20.4rem);
  }
}

/* ---------------------------------------------------------------------------------------------

　   XXX

--------------------------------------------------------------------------------------------- */

@media only screen and ( max-width : 767px ) {

}
@media print, screen and ( min-width : 768px ) {

}