@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap);
* {
  box-sizing: border-box;
}

/*************************
* base
**************************/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif, "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: normal;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}
@media (max-width: 780px) {
  body {
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 1.2rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

section {
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  a:hover {
    opacity: 0.5;
    transition: 0.4s;
  }
}
/*************************
* fadein
**************************/
/*scroll fadein*/
.fadein {
  opacity: 0;
}

.fadein_appear {
  animation: fadein-appear 1s ease forwards;
}
@keyframes fadein-appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeInHook35,
.fadeInHook45 {
  opacity: 0;
}

.fadeInHook35.fadeInOn,
.fadeInHook45.fadeInOn {
  opacity: 1;
  transition: 1.3s;
}

/*************************
* レスポンシブ
**************************/
.pc_content {
  display: block;
}
@media (max-width: 780px) {
  .pc_content {
    display: none;
  }
}

.sp_content {
  display: none;
}
@media (max-width: 780px) {
  .sp_content {
    display: block;
  }
}

.pc_br {
  display: initial;
}
@media (max-width: 780px) {
  .pc_br {
    display: none;
  }
}

.sp_br {
  display: none;
}
@media (max-width: 780px) {
  .sp_br {
    display: initial;
  }
}

.x_sp_br {
  display: none;
}
@media (max-width: 480px) {
  .x_sp_br {
    display: initial;
  }
}

.br_content {
  display: inline-block;
}

/*************************
* flex
**************************/
.f_boxs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/*************************
* common
**************************/
main {
  overflow: hidden;
}

/* sectioon */
.section {
  padding: 60px 0px;
}
@media (max-width: 780px) {
  .section {
    padding: 45px 0;
  }
}
@media (max-width: 780px) {
  .section {
    padding: 40px 0;
  }
}
.section .inner {
  width: 1000px;
  max-width: 96%;
  margin: 0 auto;
}

/* font */
.mincho {
  font-family: kozuka-mincho-pro, serif;
}

.furuta {
  font-family: "Futura", sans-serif;
}

/*グラデーション背景*/
.bg_grade_tate {
  background-image: linear-gradient(180deg, #ECC120, #EEAC1B, #E67B19, #D1161B);
}

/*ベースボタン*/
.base_btn {
  height: 60px;
  width: 320px;
  max-width: 90%;
  margin: auto;
  border-radius: 25px;
  border: 2px solid #D1161B;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 780px) {
  .base_btn {
    width: 300px;
    height: 50px;
  }
}
.base_btn::before {
  content: "";
  width: 0;
  height: 100%;
  background-image: none;
  background-color: #D1161B;
  position: absolute;
  left: 0;
  top: 0;
  animation: btn-arrow-re 0.5s ease forwards;
}
@keyframes btn-arrow-re {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
.base_btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 25%;
  height: 30px;
  width: 30px;
  background-image: url(../images/common/arrow_red.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 780px) {
  .base_btn::after {
    height: 25px;
    width: 25px;
  }
}
.base_btn .link {
  height: 100%;
  width: 100%;
  color: #D1161B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.2em;
  position: relative;
  line-height: inherit;
}
@media (max-width: 780px) {
  .base_btn .link {
    font-size: 14px;
  }
}
.base_btn:hover {
  border: 2px solid #fff;
  transition: 0.3s all;
  opacity: 1;
}
.base_btn:hover::before {
  content: "";
  width: 100%;
  animation: btn-arrow 0.5s ease forwards;
}
@keyframes btn-arrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.base_btn:hover::after {
  background-image: url(../images/common/arrow_wh.png);
}
.base_btn:hover .link {
  opacity: 1;
  color: #fff;
}

/* voice */
.common_voice {
  position: relative;
  z-index: 1000;
}
.common_voice .cv_voice_content {
  padding: 40px 0 0;
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content {
    padding: 0;
  }
}
.common_voice .cv_voice_content .toppagettl .en {
  color: #fff !important;
}
.common_voice .cv_voice_content .f_boxs {
  margin: 0 0 40px;
  justify-content: space-between;
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .f_boxs {
    margin: 0;
  }
}
.common_voice .cv_voice_content .f_boxs input[type=checkbox] {
  display: none;
}
.common_voice .cv_voice_content .f_boxs .box {
  width: 300px;
  max-width: 30%;
}
.common_voice .cv_voice_content .f_boxs .box .link {
  cursor: pointer;
}
.common_voice .cv_voice_content .f_boxs .box .link:hover {
  opacity: 0.8;
  transition: 0.4s;
}
.common_voice .cv_voice_content .f_boxs .box .img {
  margin: 0 0 10px;
}
.common_voice .cv_voice_content .f_boxs .box .text_box {
  text-align: center;
}
.common_voice .cv_voice_content .f_boxs .box .text_box .div {
  color: #fff;
  border: 1px solid;
  display: inline-block;
  padding: 2px 12px;
  font-size: 14px;
  border-radius: 10px;
  margin: 0 0 6px;
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .f_boxs .box .text_box .div {
    font-size: 10px;
  }
}
.common_voice .cv_voice_content .f_boxs .box .text_box .text {
  color: #fff;
  line-height: 1.75;
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .f_boxs .box .text_box .text {
    line-height: 1.6;
  }
}
.common_voice .cv_voice_content .slider_voice .slick-track {
  display: flex;
  justify-content: space-between;
}
.common_voice .cv_voice_content .slider_voice .slick-track .slick-slide {
  margin: 0 10px;
  cursor: pointer;
}
.common_voice .cv_voice_content .slider_voice .slick-arrow {
  position: absolute;
  z-index: 10;
  height: 20px;
  top: 40%;
  cursor: pointer;
}
.common_voice .cv_voice_content .slider_voice .prev-arrow.slick-arrow {
  transform: rotate(270deg);
  left: 0;
}
.common_voice .cv_voice_content .slider_voice .next-arrow.slick-arrow {
  transform: rotate(90deg);
  right: 0;
}
.common_voice .cv_voice_content .slider_voice .slide_dots {
  margin: 10px 0 0;
  padding: 0;
  text-align: center;
}
.common_voice .cv_voice_content .slider_voice .slide_dots li {
  display: inline-block;
  margin: 0 14px;
  position: relative;
}
.common_voice .cv_voice_content .slider_voice .slide_dots li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 5px;
  position: absolute;
  background-color: #fff;
  border: 2px solid #fff;
}
.common_voice .cv_voice_content .slider_voice .slide_dots li button {
  display: none;
}
.common_voice .cv_voice_content .slider_voice .slide_dots .slick-active::before {
  content: "";
  background-color: #D1161B;
  border: 2px solid #fff;
}
.common_voice .cv_voice_content .popup_contents {
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.4392156863);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}
.common_voice .cv_voice_content .popup_contents .popup_box {
  width: 1000px;
  max-width: 96%;
  height: 80vh;
  background-color: #D1161B;
  padding: 60px 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .popup_contents .popup_box {
    height: 90vh;
    padding: 50px 0;
  }
}
.common_voice .cv_voice_content .popup_contents .popup_box .popup_close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: block;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.common_voice .cv_voice_content .popup_contents .popup_box .popup_close:hover {
  opacity: 0.8;
  transition: 0.4s;
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .popup_contents .popup_box .popup_close {
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
  }
}
.common_voice .cv_voice_content .popup_contents .popup_box .popup_close .line01 {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #D1161B;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(45deg);
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .popup_contents .popup_box .popup_close .line01 {
    width: 15px;
    top: 15px;
  }
}
.common_voice .cv_voice_content .popup_contents .popup_box .popup_close .line02 {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #D1161B;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: rotate(135deg);
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .popup_contents .popup_box .popup_close .line02 {
    width: 15px;
    top: 15px;
  }
}
.common_voice .cv_voice_content .popup_contents .popup_box .info_box {
  width: 900px;
  max-width: 96%;
  height: 100%;
  display: block;
  margin: 0 auto 30px;
  background-color: #fff;
  border-radius: 10px;
  background-position: 100% 100%;
  background-size: 33%;
  overflow: scroll;
}
.common_voice .cv_voice_content .popup_contents .popup_box .info_box .img_box {
  text-align: center;
  margin: 40px 0 10px;
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .popup_contents .popup_box .info_box .img_box {
    margin: 0 0 10px;
  }
}
.common_voice .cv_voice_content .popup_contents .popup_box .info_box .img_box img {
  width: 400px;
  max-width: 100%;
}
@media (max-width: 480px) {
  .common_voice .cv_voice_content .popup_contents .popup_box .info_box .img_box img {
    width: 100%;
  }
}
.common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box {
  padding: 30px 30px;
  position: relative;
  width: 700px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box {
    padding: 20px 20px;
    max-width: 100%;
  }
}
.common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box .div {
  color: #D1161B;
  border: 1px solid;
  display: inline-block;
  padding: 2px 12px;
  font-size: 14px;
  border-radius: 10px;
  margin: 0 0 6px;
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box .div {
    font-size: 12px;
  }
}
.common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box .name {
  font-size: 28px;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin: 0 0 6px;
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box .name {
    font-size: 22px;
  }
}
.common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box .midashi {
  font-size: 22px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  display: inline;
  background: linear-gradient(transparent 75%, #D1161B 0%);
}
@media (max-width: 780px) {
  .common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box .midashi {
    font-size: 18px;
  }
  .common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box .midashi::before {
    height: 6px;
  }
}
@media (max-width: 480px) {
  .common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box .midashi {
    font-size: 16px;
  }
}
.common_voice .cv_voice_content .popup_contents .popup_box .info_box .text_box .text {
  letter-spacing: 0.04em;
  line-height: 1.75;
  margin: 10px 0 10px;
}

/* cv contact*/
.common_cta {
  padding: 150px 0 80px;
}
.common_cta .inner .toppagettl {
  text-align: center;
}
.common_cta .inner .toppagettl .en {
  color: #fff;
  left: 0;
  right: 0;
}
.common_cta .inner .text {
  color: #fff;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin: 0 0 30px;
}
.common_cta .inner .f_boxs {
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 780px) {
  .common_cta .inner .f_boxs {
    flex-direction: column;
  }
}
.common_cta .inner .f_boxs .line_box {
  width: 49%;
}
@media (max-width: 780px) {
  .common_cta .inner .f_boxs .line_box {
    width: 400px;
    max-width: 90%;
    margin: 0 auto 10px;
    text-align: center;
  }
}
.common_cta .inner .f_boxs .contact_boxs {
  width: 49%;
}
@media (max-width: 780px) {
  .common_cta .inner .f_boxs .contact_boxs {
    width: 400px;
    max-width: 90%;
    margin: 0 auto 10px;
    text-align: center;
  }
}
.common_cta .inner .f_boxs .contact_boxs .contact_box {
  margin: 0 0 20px;
}
@media (max-width: 780px) {
  .common_cta .inner .f_boxs .contact_boxs .contact_box {
    margin: 0 0 10px;
  }
}
/* form */
.form {
  width: 800px;
  max-width: 94%;
  margin: 0 auto;
  /* プライバシーボックス */
}
.form table {
  width: 100%;
  border-collapse: collapse;
}
.form table th {
  text-align: right;
  padding: 14px 20px 14px 0;
  vertical-align: baseline;
  letter-spacing: 0.05em;
  width: 20%;
}
.form table .radio td {
  display: flex;
  align-items: center;
}
.form table .radio td p {
  width: 100%;
}
.form table .radio td .wpcf7-form-control-wrap {
  margin: 0 0 20px;
  width: 100%;
}
@media (max-width: 780px) {
  .form table .radio td .wpcf7-form-control-wrap {
    margin: 0 0 10px;
  }
}
.form table .radio td .wpcf7-form-control-wrap .wpcf7-radio {
  line-height: 2;
  display: flex;
  flex-wrap: wrap;
}
.form table .radio td .wpcf7-form-control-wrap .wpcf7-radio .wpcf7-list-item {
  max-width: 100%;
}
.form table td {
  vertical-align: top;
}
.form table .wpcf7-form-control-wrap {
  margin: 0 0 20px;
  display: block;
}
@media (max-width: 780px) {
  .form table .wpcf7-form-control-wrap {
    margin: 0 0 10px;
  }
}
.form table input[type=text],
.form table input[type=email],
.form table input[type=tel],
.form table textarea {
  width: 100%;
  padding: 14px 10px;
  border-radius: 4px;
  background-color: #fff;
  letter-spacing: 0.05em;
  margin: 0 0 5px;
}
@media (max-width: 480px) {
  .form table input[type=text],
  .form table input[type=email],
  .form table input[type=tel],
  .form table textarea {
    padding: 10px 6px;
  }
}
.form table input[type=radio] {
  padding: 14px 10px;
  border-radius: 4px;
  background-color: #fff;
  letter-spacing: 0.05em;
  margin: 14px 10px;
  display: inline-block;
}
@media (max-width: 480px) {
  .form table input[type=radio] {
    margin: 10px 6px;
  }
}
.form table .wpcf7-form-control-wrap:has(select) {
  display: inline-block;
}
.form table .wpcf7-form-control-wrap:has(select) select {
  padding: 14px 10px;
  padding: 14px 20px 14px 10px;
  border-radius: 4px;
  background-color: #fff;
  letter-spacing: 0.05em;
  margin: 0 0 5px;
}
.form table textarea {
  resize: none;
  height: 100px;
}
@media (max-width: 780px) {
  .form table th {
    padding: 14px 0px 10px;
  }
  .form table th, .form table td {
    display: block;
    text-align: left;
    width: 100%;
  }
  .form table th:first-child, .form table td:first-child {
    width: 100%;
  }
  .form table th:last-child, .form table td:last-child {
    width: 100%;
  }
}
.form .privacy {
  margin-top: 10px;
  text-align: center;
}
.form .privacy label {
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .form .privacy label {
    font-size: 12px;
  }
}
.form .privacy label .link {
  text-decoration: underline;
}
.form .privacy label input[type=checkbox] {
  margin-right: 5px;
}
.form .policy-box {
  border-radius: 6px;
  margin: 24px 0 16px;
}
.form .policy-box__head {
  font-weight: 700;
  margin-bottom: 8px;
}
.form .policy-box__body {
  line-height: 1.75;
  max-height: 15em; /* 行高1.6 × 6行 = 約6行ぶんの高さ */
  overflow: auto;
  padding: 10px 10px 30px;
  background: #fff;
  letter-spacing: 0.05em;
  border-radius: 4px;
}
@media (max-width: 780px) {
  .form .policy-box__body {
    max-height: 20em;
  }
}
@media (max-width: 480px) {
  .form .policy-box__body {
    max-height: 24em;
  }
}
.form .policy-box__body p .bold {
  font-weight: 600;
  margin: 20px 0 0;
  display: inline-block;
}
.form .policy-box__body:focus {
  outline: 2px solid #b3d4fc; /* キーボード操作での可視フォーカス */
  outline-offset: 2px;
}
.form .policy-box__agree {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.95em;
}
.form .submit_btn {
  margin-top: 40px;
  text-align: center;
}
.form .submit_btn button {
  cursor: pointer;
}
.form .submit_btn span.wpcf7-spinner {
  display: none;
}

/* pagenation */
.pagenation .pager_num {
  display: flex;
  justify-content: center;
}
.pagenation .pager_num .nav-links {
  display: flex;
}
.pagenation .pager_num .nav-links .prev img {
  transform: rotate(180deg);
  width: 30px;
}
.pagenation .pager_num .nav-links .next img {
  width: 30px;
}
.pagenation .pager_num .nav-links .page-numbers {
  color: #D1161B;
  font-size: 20px;
  margin: 0 10px;
}
.pagenation .pager_num .nav-links .page-numbers.current {
  color: #191919;
  font-size: 20px;
  margin: 0 10px;
}/*# sourceMappingURL=common.css.map */