@charset "utf-8";
/* CSS Document */
@font-face {
  font-family: 'NotoSansJP';
  src: url("../font/NotoSansJP-Regular.otf");
}
@font-face {
  font-family: 'Anton';
  src: url("../font/Anton.ttf");
}
html {
  font-size: 62.5%;
/*
  scroll-behavior: smooth;
*/
}
body {
  font-family: "NotoSansJP", serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  color: #000000;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 103.8px; /*フッターの高さにより変更*/
}
main {
  overflow: hidden;
}
#switch, #switch02, .sp_logo, .display_sp {
  display: none;
}
img {
  width: 100%;
  height: auto;
}
a {
  display: block;
}
h1, h2, h3 {
  font-weight: bold;
}
/*ヘッダー------------------------------------------*/
header {
  position: relative;
  width: 100%;
  background: #fff;
  z-index: 99;
  transition: top .8s ease;
}
header .inner_header {
  position: relative;
  width: 100%;
  z-index: 999;
  background: #111111;
  padding: 10px 15px;
}
header .inner_header.fixedMenu {
  position: fixed;
  width: 100%;
  background: rgba(246, 247, 248, 0.9);
  z-index: 998;
	top: 0;
	left: 0;
}
header .inner_header .logo {
  opacity: 0;
}
header .inner_header.fixedMenu .logo {
  opacity: 1;
}
.header_nav {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
header .header_nav .logo {
  width: 10%;
  max-width: 96px;
}
header .fixedMenu .header_nav .header_menu li a {
  color: #111111;
}
header .header_nav .header_menu {
  display: flex;
  justify-content: flex-end;
  width: 70%;
  position: relative;
  z-index: 2;
}
header .header_nav .header_menu li {
  width: 20%;
  text-align: center;
}
header .header_nav .header_menu li a {
  display: block;
  padding: 20px 0;
  color: #fff;transition: .2s;
}
header .header_nav .header_menu li a:hover{
	color: #CC0012;
}
header .header_nav .page_contact_btn a {
  position: relative;
  z-index: 2;
  color: #fff;
  background: #CC0012;
  border-radius: 30px;
  padding: 10px 20px;
  transition: .2s;
}
header .header_nav .page_contact_btn a:hover {
  background: #111111;
}
header .NavWrap form {
  width: 100%;
  display: flex;
}
.header .inner_header form {
  padding: 9px 0 9px 10px;
}
.sp_menu_btn {
  display: none;
}
/*メイン------------------------------------------*/
section {
  position: relative;
  display: block;
}
.relative {
  position: relative;
}
.null {
  position: relative;
  top: -200px;
}
.w1200 {
  max-width: 1200px;
  margin: auto;
}
.flex_wrap {
  display: flex;
}
.text_center {
  text-align: center;
}
body .wpcf7-spinner {
  display: none;
}
@media screen and (max-width: 1230px) {
  .w1200 {
    padding: 0 15px;
  }
}
/*フッター------------------------------------------*/
footer {
  background: #111111;
  color: #fff;
  font-size: 1.2rem;
  padding: 70px 0 20px 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}
footer .flex_wrap {
  justify-content: space-between;
}
footer .footer_list {
  display: flex;
}
footer .footer_list p {
  margin-right: 28px;
}
footer .footer_list p span {
  margin-right: 24px;
}
footer .footer_policy {
  display: flex;
}
footer .footer_policy p {
  margin-right: 28px;
}
small {
  font-size: 10px;
}
select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 98%;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  color: #707070;
  font-weight: bold;
}
.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #111111;
}
.form-group .input_box, .form-group .select_box {
  height: 50px;
}
.form-group .select_box {
  display: flex;
  align-items: center;
}
.form-group .input_box input, .form-group .select_box {
  width: 100%;
  height: 50px;
  padding: 10px;
  box-sizing: border-box;
  font-weight: normal;
  background: #fff;
}
.form-group .input_box input:focus-visible {
  outline: none;
}
.form-group .text_box {
  box-sizing: border-box;
}
.form-group .text_box textarea {
  width: 100%;
  height: 300px;
  padding: 10px;
  box-sizing: border-box;
  font-weight: normal;
  background: #fff;
}
.form-group .text_box textarea:focus-visible {
  outline: none;
}
.form-group.center_item {
  justify-content: center;
  align-items: center;
  background: #EEEEEE;
  padding: 30px 0;
}
.form-group.center_item label {
  width: auto;
  line-height: 1;
}
.form-group .required {
  display: inline-block;
  color: #fff;
  background: #CC0012;
  font-size: 1.2rem;
  padding: 3px 7px;
  margin-left: 10px;
  transform: translateY(-2px);
  line-height: 1;
}
.form-group .checkbox {
  width: 30px;
  height: 30px;
  outline: none;
  margin-right: 20px;
}
.form-group.submit_btn {
  background: none;
  padding-top: 49px;
}
.form-group.submit_btn input {
  width: 288px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 30px;
  padding: 15px;
  background: #CC0012;
  transition: .3s;
}
.form-group.submit_btn input:hover {
  background: #111111;
}
button, input, optgroup, select, textarea {
  -webkit-appearance: auto;
  appearance: auto;
}
	input[type=submit], input[type=button] {
    -webkit-appearance: none;
}
@media screen and (max-width: 785px) {
  body {
    padding-bottom: 0;
  }
  /*ヘッダー--------------------------------------*/
  #switch ~ label, #switch02 ~ label {
    position: absolute;
    box-sizing: border-box;
    top: 0;
    right: 15px;
    z-index: 999;
  }
  #switch02 ~ label span {
    color: #fff;
  }
  #switch ~ label span, #switch02 ~ label span {
    line-height: 50px;
    font-family: 'Anton';
  }
  #switch ~ label span.close_menu, #switch02 ~ label span.close_menu {
    display: none;
  }
  #switch:checked ~ label span.close_menu, #switch02:checked ~ label span.close_menu {
    display: block;
  }
  #switch:checked ~ label span.open_menu, #switch02:checked ~ label span.open_menu {
    display: none;
  }
  .sp_menu_btn {
    position: relative;
    display: block;
  }
  .sp_menu_btn span {
    position: absolute;
    top: 0;
    right: 0;
  }
  #switch:checked ~ #NavWrap {
    display: block;
    right: 0;
  }
  #switch02:checked ~ #NavWrap02 {
    display: block;
    right: 0;
  }
  #NavWrap, #NavWrap02 {
    display: block;
    padding-top: 0;
    position: fixed;
    top: 50px;
    right: -200%;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.9);
    transition: all 0.4s;
    box-sizing: border-box;
  }
  header .header_nav .header_menu {
    flex-direction: column;
    padding: 0 15px;
    margin-bottom: 30px;
  }
  header .header_nav .logo {
    position: fixed;
    top: 12px;
    left: 15px;
    max-width: 63px;
  }
  header .header_nav .header_menu li {
    text-align: left;
    width: 100%;
  }
  header .header_nav .header_menu li a span {
    font-family: 'Anton';
    font-size: 3.2rem;
    display: block;
    width: 100%;
  }
  header .fixedMenu .header_nav .header_menu li a span {
    font-family: 'Anton';
    font-size: 3.2rem;
    display: block;
  }
  header .fixedMenu .header_nav .header_menu li a {
    color: #fff;
    font-size: 1.2rem;
  }
  header .fixedMenu .header_nav .header_menu li a span {
    font-family: 'Anton';
    font-size: 3.2rem;
    display: block;
  }
  header .inner_header {
    width: 100%;
    height: 50px;
  }
  header .header_nav .page_contact_btn a {
    background: none;
    color: #fff;
    font-size: 1.2rem;
    padding: 0 0 0 15px;
  }
  header .page_contact_btn a span {
    font-family: 'Anton';
    font-size: 3.2rem;
    display: block;
  }
  .scroll-prevent {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
  /*メイン--------------------------------------*/
  .display_pc {
    display: none;
  }
  .display_sp {
    display: block;
  }
  .null {
    position: relative;
    top: -150px;
  }
  /*フォーム--------------------------------------*/
  .form-group {
    font-size: 1.4rem;
  }
  .form-group label {
    margin-bottom: 10px;
  }
  .form-group.submit_btn {
    padding-bottom: 70px;
  }
  .form-group.submit_btn input {
    width: 168px;
  }

  /*フッター--------------------------------------*/
  footer {
    position: static;
    padding: 70px 0 26px 0;
  }
  footer .flex_wrap {
    flex-direction: column;
  }
  footer .footer_list {
    flex-wrap: wrap;
  }
  footer .footer_list p {
    font-size: 1.2rem;
  }
  footer .footer_list p:first-child {
    width: 100%;
    margin-bottom: 14px;
  }
  footer .footer_list p:last-child {
    margin-bottom: 20px;
  }
}
@media(min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.navigation {
    width: 100%;
    margin-top: 100px;
}
.wp-pagenavi {
    clear: both;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    margin: auto;
}
.navigation .pages {
    display: none;
}
.wp-pagenavi span.current {
    color: #FFF;
    background-color: #333333;
    border-color: #333333;
    font-weight: bold;
}
.wp-pagenavi a, .wp-pagenavi span {
    color: #999;
    background-color: #FFF;
    border: solid 1px #e0e0d2;
    padding: 8px 15px;
    margin: 0 2px;
    white-space: nowrap;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    text-align: center;
    text-decoration: none;
}

.slide-in {
	overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
	display: inline-block;

}


.leftAnime{
    opacity: 0;
}

.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.6s;
	animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
	transform: translateX(-100%);
  opacity: 0;
  }

  to {
	transform: translateX(0);
  opacity: 1;
  }
}

.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.6s;
	animation-fill-mode:forwards;
  opacity: 0;
}


@keyframes slideTextX-100 {
  from {
	transform: translateX(100%);
  opacity: 0;
  }

  to {
	transform: translateX(0);
  opacity: 1;
  }
}

.bgextend{
	animation-name:bgextendAnimeBase;
	animation-duration:.6s;
	animation-fill-mode:forwards;
	position: relative;
	overflow: hidden;
	opacity:0;
}
@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}
.bgappear{
	animation-name:bgextendAnimeSecond;
	animation-duration:.8s;
	animation-delay: 0.6s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes bgextendAnimeSecond{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
.bgLRextend::before{
	animation-name:bgLRextendAnime;
	animation-duration:.8s;
	animation-fill-mode:forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #CC0012;
}
@keyframes bgLRextendAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}