@charset "UTF-8";

/*

 style.css

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



  = トップページ



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

  = mv

----------------------------------------------- */
.mv {
  position: relative;
  z-index: 1;
}
.mv_movie {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mv_movie > video {
  max-width: 100%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .mv {
    padding-top: 8.5rem;
  }
  .mv_movie {
    height: 100vh;
  }
  .mv_movie > video {
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .mv {
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
  }
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .top_news {
    padding-bottom: 13rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .top_news {
    padding-bottom: 8rem;
  }
}




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



  = 各種パーツ（bl_）



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

  = 見出し

----------------------------------------------- */
h2,h3,h4,h5,h6 {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.02em;
}
h2 {
  margin-bottom: 3rem;
}
h3 {
  margin-bottom: 3rem;
}
h4 {
  margin-bottom: 2rem;
}
h5 {
  margin-bottom: 2rem;
}
h6 {
  margin-bottom: 1rem;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  h2 {
    font-size: 3.2rem;
  }
  h3 {
    font-size: 2.4rem;
  }
  h4 {
    font-size: 2.4rem;
  }
  h5 {
    font-size: 2rem;
  }
  h6 {
    font-size: 1.8rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.8rem;
  }
  h5 {
    font-size: 1.6rem;
  }
  h6 {
    font-size: 1.5rem;
  }
}
/* -----------------------------------------------

  = text01

----------------------------------------------- */
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .text01 {
    font-size: 1.5rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .text01 {
    font-size: 1.4rem;
  }
}
/* -----------------------------------------------

  = アコーディオン

----------------------------------------------- */
.anchor-unit {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px 0;
}
.anchor-unit_dt {
  width: 15%;
  border-right: 2px solid #ff9b3c;
}
.anchor-unit_dd {
  width: 80%;
  padding-left: 20px;
}
.accordion-term {
  position: relative;
  align-items: center;
  display: flex;
  padding: 1.8rem 5rem 1.8rem 0;
  border-bottom: 1px solid #1b1b1b;
}
.accordion-term::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 24px;
  width: 1px;
  height: 14px;
  background: #fff;
  transition: .3s transform;
  z-index: 2;
}
.accordion-term::after {
  content: "";
  position: absolute;
  right: 0;
  top: 16px;
  width: 30px;
  height: 30px;
  background: url(../img/shared/icon_minus.svg) no-repeat center/100%;
  transition: .3s transform;
}
.accordion-subtitle {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
}
.accordion-desc {
  display: none; 
  font-size: 1.2rem;
  line-height: 2;
  padding: 20px 15px 20px 15px;
}
.accordion-desc.stay {
  display: block;
}
.accordion-term.stay::before,
.accordion-term.open::before {
  transform: rotate(90deg);
}
.accordion-term.stay.open::before {
  transform: rotate(0);
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .accordion-term {
    padding: 1.8rem 5rem 1.8rem 0;
  }
  .accordion-term::before {
    right: 1.1rem;
    top: 2.1rem;
    width: 1px;
    height: 1.2rem;
  }
  .accordion-term::after {
    top: 1.6rem;
    width: 2.4rem;
    height: 2.4rem;
  }
  .accordion-subtitle {
    font-size: 1.4rem;
  }
  .accordion-desc {
    padding: 2rem 1rem;
  }
}

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

  = bl_btn

----------------------------------------------- */
.bl_btn {
  position: relative;
}
.bl_btn_center {
  text-align: center;
}
.bl_btnLink {
  position: relative;
  display: block;
  padding: 16px 20px;
  color: #FFF;
  max-width: 400px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 120%;
  border-radius: 3px;
  background: #212529;
}
.bl_circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 9px 5px 5px;
  background-color: var(--color-key);
}
.bl_btn .bl_circle {
  position: absolute;
  top: 0;
  right: 1.5rem;
  transform: translateY(-50%);
  z-index: 2;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .bl_btnLink {
    transition: all .2s;
  }
  /* hover */
  .bl_btnLink:hover {
    opacity: .8;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .bl_btn + .bl_btn {
    margin-top: 2rem;
  }
  .bl_btnLink {
    display: block;
  }
  .bl_circle {
    width: 56px;
    height: 56px;
    font-size: 0.8rem;
  }
  .bl_btn .bl_circle {
    transform: translateY(-36%);
  }
}

/*
  = ページナビ
----------------------------------------------- */
ul.page-numbers {
  display: flex;
	justify-content: center;
  align-items: center;
}
.page-numbers a,
.page-numbers span {
	position: relative;
	display: block;
	font-weight: 500;
}
.page-numbers li .page-numbers:not(.prev,.next) {
  display: flex;
  justify-content: center;
  align-items: center;
	color: #333;
	width: 4rem;
	height: 4rem;
	border: 1px solid var(--color-key);
	border-radius: 50%;
}
.page-numbers li .page-numbers.current {
	color: #fff;
	background-color: var(--color-key);
	border: none;
}
.page-numbers .prev::before,
.page-numbers .next::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 2rem;
	height: 2rem;
	background: url(../img/shared/arrow_black.svg) no-repeat;
	background-size: 100%;
	transition: all .2s;
}
.page-numbers .prev::before {
	left: 0;
	transform: scale(-1, 1);
}
.page-numbers .next::before {
	right: 0;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.page-numbers_wpr {
		padding-bottom: 8rem;
	}
	.page-numbers {
		font-size: 1.4rem;
	}
  .page-numbers li .page-numbers:not(.prev,.next) {
    margin: 0 0.8rem;
  }
	.page-numbers li a.page-numbers:not(.prev,.next):hover {
		color: #fff;
	  background-color: var(--color-key);
		border: none;
	}
	.page-numbers .prev {
		padding-left: 3rem;
		margin-right: 4rem;
	}
	.page-numbers .next {
		padding-right: 3rem;
		margin-left: 4rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	ul.page-numbers {
		font-size: 1.3rem;
	}
	.page-numbers li .page-numbers:not(.prev,.next) {
		width: 3rem;
		height: 3rem;
    margin: 0 0.5rem;
	}
	.page-numbers .prev {
		padding-left: 2rem;
		margin-right: 1.2rem;
	}
	.page-numbers .next {
		padding-right: 2rem;
		margin-left: 1.2rem;
	}
}

/*
  = margin
----------------------------------------------- */
.mb10 {
  margin-bottom: 1rem !important;
}
.mb20 {
  margin-bottom: 2rem !important;
}
.mb30 {
  margin-bottom: 3rem !important;
}
.mb40 {
  margin-bottom: 4rem !important;
}
.mb50 {
  margin-bottom: 5rem !important;
}
.mb60 {
  margin-bottom: 6rem !important;
}
.mb70 {
  margin-bottom: 7rem !important;
}
.mb80 {
  margin-bottom: 8rem !important;
}
.mb90 {
  margin-bottom: 9rem !important;
}
.mb100 {
  margin-bottom: 10rem !important;
}
.mb110 {
  margin-bottom: 11rem !important;
}
.mb120 {
  margin-bottom: 12rem !important;
}
.mb130 {
  margin-bottom: 13rem !important;
}
.mb140 {
  margin-bottom: 14rem !important;
}

/*
  = 
----------------------------------------------- */
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	
}

/* = 見出し
----------------------------------------------- */
/* h2 */
.heading02 {
  position: relative;
	line-height: 1.4;
	letter-spacing: 0.04em;
  font-weight: bold;
	margin-bottom: 4rem;
}
.heading02::first-letter {
  color: var(--color-key);
}
/* h3 */
.heading03 {
  position: relative;
  line-height: 1.4;
	letter-spacing: 0.04em;
  font-weight: bold;
	margin-bottom: 3rem;
	border-top: 1px solid rgba(217, 4, 43, 0.50);
}
.heading03::before {
	content: "";
	display: block;
  position: absolute;
  top: -0.3rem;
  left: 0;
	width: 0.6rem;
  height: 0.6rem;
  background: linear-gradient(90deg, #D9042B 0.03%, #730217 99.93%);
  border-radius: 50%;
}
.heading03_2 {
  position: relative;
  line-height: 1.4;
	letter-spacing: 0.04em;
  font-weight: bold;
	margin-bottom: 3rem;
}
/* h4 */
.heading04 {
	position: relative;
  line-height: 1.4;
	letter-spacing: 0.04em;
  font-weight: 600;
	margin-bottom: 2rem;
}
/* h5 */
.heading05 {
  line-height: 1.4;
	letter-spacing: 0.04em;
  font-weight: 600;
	margin-bottom: 2rem;
}
/* h6 */
.heading06 {
  line-height: 1.4;
	letter-spacing: 0.04em;
  font-weight: 600;
	margin-bottom: 2rem;
}
/* 装飾 */
.heading_circle {
  position: relative;
  padding-left: 2rem;
}
.heading_circle::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--color-key);
  border-radius: 50%;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 767px) {
  /* h2 */
  .heading02 {
    font-size: 3.6rem;
  }
  /* h3 */
  .heading03 {
    font-size: 3rem;
		padding-top: 1.2rem;
  }
  .heading03_2 {
    font-size: 3rem;
		padding-left: 2.4rem;
  }
  /* h4 */
  .heading04 {
    font-size: 2.6rem;
  }
  /* h5 */
  .heading05 {
    font-size: 2.4rem;
  }
	/* h6 */
  .heading06 {
    font-size: 2rem;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 766px) {
  /* h2 */
  .heading02 {
    font-size: 2.6rem;
  }
  /* h3 */
  .heading03 {
    font-size: 2rem;
		padding-top: 1.8rem;
  }
	.heading03::before {
		width: 0.6rem;
    height: 0.6rem;
    top: -0.3rem;
	}
  .heading03_2 {
    font-size: 2rem;
		padding-left: 2rem;
  }
  .heading03_2::before {
    width: 1.2rem;
    height: 1.2rem;
    top: 1rem;
  }
  /* h4 */
  .heading04 {
    font-size: 1.8rem;
  }
  /* h5 */
  .heading05 {
    font-size: 1.7rem;
  }
	/* h6 */
  .heading06 {
    font-size: 1.6rem;
  }
  .heading_circle::before {
    top: 0.3rem;
  }
}

/* = text
----------------------------------------------- */
.text01 .fl {
	float: left;
}
.text01 strong {
	font-weight: bold;
}
.text_center {
	text-align: center;
}
.text_right {
	text-align: right;
}
.text_white {
  color: #fff;
}
.text_black {
  color: var(--color-base);
}
.text_red {
  color: var(--color-key);
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 767px) {
  .text01 {
		line-height: 2;
	}
	.text01 .inline {
		display: inline !important;
	}
    /* hover */
	.text01 a:hover {
		text-decoration: underline;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 766px) {
  .text01 {
    line-height: 1.9;
	}
}

/* = note
----------------------------------------------- */
.note01 {
	color: #313131;
	line-height: 1.75;
}
.note01 li+li {
	margin-top: 1rem;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 767px) {
  .note01 {
		font-size: 1.3rem;
	}
	.note01 li {
		margin-left: 1rem;
		text-indent: -1.8rem;
	}
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 766px) {
  .note01 {
		font-size: 1.2rem;
	}
	.note01 li {
		margin-left: 3rem;
		text-indent: -3rem;
	}
}

/*--------------------------------------------------
  = bl_card
--------------------------------------------------*/
.bl_card .elementor-image-box-wrapper {
  display: flex;
  gap: 1rem;
  border-radius: 3px;
  background: #FFF;
  box-shadow: 0px .3rem 1rem 0px rgba(0, 0, 0, 0.15);
  padding: 1.6rem 1rem;
}
.bl_card .elementor-image-box-wrapper .elementor-image-box-img {
  width: 38% !important;
  margin-bottom: 0 !important;
}
.bl_card .elementor-image-box-wrapper .elementor-image-box-content {
  flex: 1;
  text-align: left;
}
.bl_card .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.bl_card .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description {
  font-size: 1.2rem;
  color: #757575;
  line-height: 1.4;
  font-weight: 600;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .bl_card .elementor-image-box-wrapper {
    min-width: 240px !important;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .bl_card .elementor-image-box-wrapper {
    min-width: 26rem !important;
  }
  .bl_card .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description {
    font-size: 1.4rem;
  }
}

/*--------------------------------------------------
  = Slick Slider
--------------------------------------------------*/
.slick-slider{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}
.slick-list{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus{
  outline: none;
}
.slick-list.dragging{
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
  -webkit-transform: translate3d(0, 0, 0);
     -moz-transform: translate3d(0, 0, 0);
      -ms-transform: translate3d(0, 0, 0);
       -o-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slick-track{
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after{
  display: table;
  content: '';
}
.slick-track:after{
  clear: both;
}
.slick-loading .slick-track{
  visibility: hidden;
}
.slick-slide{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide{
  float: right;
}
.slick-slide img{
  display: block;
}
.slick-slide.slick-loading img{
  display: none;
}
.slick-slide.dragging img{
  pointer-events: none;
}
.slick-initialized .slick-slide{
  display: block;
}
.slick-loading .slick-slide{
  visibility: hidden;
}
.slick-vertical .slick-slide{
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* slider */
.slick-prev, .slick-next {
  position: absolute;
  width: 6rem;
  height: 6rem;
  top: 34%;
  transform: translateY(-50%);
  display: block;
  color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  background: url(../img/shared/icon_arrow.svg) no-repeat center/100%;
  z-index: 3;
  }
  .slick-prev {
    top: 58%;
    left: -2rem;
  }
  .slick-next {
    right: -2rem;
    transform: scale(-1, 1);
  }
  .slick-prev::before,
  .slick-next::before {
    display: none;
  }

/*--------------------------------------------------
  = bl_gallery
--------------------------------------------------*/
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .bl_gallery img {
    height: 33vw !important;
    object-fit: cover;
    aspect-ratio: 891.36 / 598.00;
  }
}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .bl_gallery img {
    height: 25rem !important;
    object-fit: cover;
    aspect-ratio: 312.81/209.86;
  }
}

/* = contact_form
----------------------------------------------- */
.contact_form {
  position: relative;
}
.contact_form table {
	width: 100%;
	line-height: 1.5;
}
.contact_form tr {
	position: relative;
}
.contact_form tr th {
	font-weight: bold;
}
.contact_form .required {
	display: inline-block;
	color: #c82727;
  font-weight: normal;
  margin-left: 0.5rem;
}
.contact_form tr td .note {
  display: inline-block;
  color: #898989;
  font-size: 1.2rem;
}
.contact_form input,
.contact_form select,
.contact_form textarea {
  color: #1b1b1b;
  border-radius: 0.3rem;
  background: transparent;
  outline: none;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
}
.contact_form input::placeholder {
  color: #898989;
}
/* IE */
.contact_form input:-ms-input-placeholder {
  color: #898989;
}
/* Edge */
.contact_form input::-ms-input-placeholder {
  color: #898989;
}
.contact_form input[type='text'],
.contact_form input[type='email'],
.contact_form input[type='tel'],
.contact_form textarea {
  background-color: #f6f6f6;
  border: 1px solid #e5e5e5;
}
.contact_form select {
  border: 0;
  border-radius: 0;
}
.contact_form textarea {
  width: 100%;
}
.contact_form input[type='checkbox'],
.contact_form input[type='radio'] {
  display: none;
}
.contact_form label {
  cursor: pointer;
}
.contact_form label span {
  position: relative;
  display: inline-block;
}
.contact_form label span::before,
.contact_form label span::after {
  content: "";
  display: block;
  position: absolute;
}
.contact_form label span::before {
  width: 1.5rem;
  height: 1.5rem;
	background-color: #ececec;
  border: 1px solid #e5e5e5;
  border-radius: 0.3rem;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
.contact_form label span::after {
  opacity: 0;
  transform: rotate(-45deg);
}
.contact_form input:checked + span::before {
  background-color: var(--color-key);
}
.contact_form input:checked + span::after {
  opacity: 1;
}
.contact_form .form_select {
  display: inline-block;
  position: relative;
  padding: 0 0 0 0.8rem;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.3rem;
  cursor: pointer;
}
.contact_form .form_select::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.3rem;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.9rem 0.55rem 0 0.55rem;
  border-color: var(--color-key) transparent transparent transparent;
	pointer-events: none;
}
.contact_form .radio p,
.contact_form .checkbox p {
	display: inline-block;
}
.contact_form input[type='submit'],
.contact_form input[type='button'] {
  display: inline-block;
  position: relative;
  background: var(--color-key);
  color: #fff;
  font-weight: normal;
  text-align: center;
	line-height: 1.3;
	letter-spacing: 0.06em;
  border-radius: 5rem;
}
.contact_form input[type='button'] {
  background-color: #4c4c4c;
}
.contact_form .plivacy_cont {
  height: 160px;
  overflow: scroll;
  padding: 5px 10px 10px;
  margin-bottom: 15px;
  border: 1px solid #d1d5db;
   /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
   -ms-overflow-style: none;
   /*Firefoxへの対応*/
   scrollbar-width: none;
}
 /*Google Chrome、Safariへの対応*/
 .contact_form .plivacy_cont::-webkit-scrollbar{
  display: none;
}

/* 確認画面 */
.confirm.contact_form input:not(input[type='submit'],input[type='button']),
.confirm.contact_form textarea {
  background: none !important;
  border: none !important;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.contact_form table {
		position: relative;
		max-width: 1000px;
		margin: 0 auto;
	}
	.contact_form tr th {
		width: 26%;
		font-size: 1.5rem;
		padding: 1.7rem 2.5rem 1.7rem 0;
		vertical-align: top;
	}
	.contact_form tr td {
		width: 74%;
		padding: 1.2rem 1.3rem;
		vertical-align: top;
	}
  .contact_form .required {
    font-size: 1.6rem;
  }
  .contact_form tr td .note {
    margin-top: .7rem;
  }
  .contact_form .mb0 {
    margin: 0 !important;
  }
	.contact_form .text_s td input {
		width: 30rem;
	}
	.contact_form .text_m td input {
		width: 40rem;
	}
	.contact_form .text_l td input {
		width: 50rem;
	}
  .contact_form .zip td input {
		width: 14rem;
	}
	.contact_form input,
	.contact_form select,
	.contact_form textarea {
		font-size: 1.5rem;
		line-height: 1.5;
		padding: 1rem;
	}
  .contact_form label span {
    padding-left: 2.7rem;
    margin-right: 1.3rem;
    margin-bottom: 1rem;
  }
  .contact_form label span::after {
    border-bottom: 0.2rem solid #fff;
    border-left: 0.2rem solid #fff;
    height: 5px;
        width: 11px;
        top: 7px;
        left: 2px;
  }
  .contact_form .form_select {
    min-width: 20rem;
  }
  .contact_form .form_select select {
    width: 100%;
  }
	.contact_form .submit {
		display: flex;
		justify-content: center;
		padding: 2rem 0;
	}
	.contact_form .submit li:last-child {
		margin-left: 5rem;
	}
	.contact_form input[type='submit'],
  .contact_form input[type='button'] {
		min-width: 26.5rem;
    font-size: 1.6rem;
		padding: 1.7rem;
	}
	.contact_form li:hover {
		opacity: .8;
	}
}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.contact_form tr th,
	.contact_form tr td {
		display: block;
	}
	.contact_form tr th {
    display: flex;
    align-items: center;
		font-size: 1.4rem;
		padding: 1rem .5rem;
	}
	.contact_form tr td {
		font-size: 1.4rem;
		padding: 1rem 0.5rem 2rem;
	}
  .contact_form .required {
    font-size: 1.3rem;
  }
  .contact_form tr td .note {
    margin-top: .5rem;
  }
	.contact_form input,
  .contact_form select,
	.contact_form textarea {
		width: 100%;
		font-size: 1.6rem;
		line-height: 1.5;
		padding: 1.5rem 0.5rem;
	}
  .contact_form label span {
    padding-left: 2rem;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
  }
  .contact_form label span::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .contact_form label span::after {
    border-bottom: 0.2rem solid #fff;
    border-left: 0.2rem solid #fff;
    height: 0.5rem;
        width: 1rem;
        top: 0.7rem;
        left: 0.3rem;
  }
  .contact_form .form_select {
    display: block;
  }
  .contact_form .form_select::after {
    right: 2rem;
    border-width: 1.9rem 1rem 0 1rem;
  }
	.contact_form .submit {
		margin: 3rem 0;
	}
	.contact_form .submit li + li {
		margin-top: 2rem;
	}
	.contact_form input[type='submit'],
  .contact_form input[type='button'] {
		display: block;
    line-height: 1.3;
    font-size: 1.6rem;
    padding: 2rem 2rem;
		margin: auto;
	}
}