@charset "UTF-8";
@font-face {
  font-family: "AlteHaasGroteskRegular";
  src: url(./AlteHaasGroteskRegular.ttf);
}
*, *::before, *::after {
  box-sizing: border-box;
}

ul[class], ol[class] {
  padding: 0;
}

body, h1, h2, h3, h4, p, ul[class], ol[class], figure, blockquote, dl, dd {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class], ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  margin: 0;
  padding: 0;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}
.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

/* autoprefixer grid: autoplace */
/* A Modern CSS Reset */
html {
  font-size: 0.5208333333vw;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.3333333333vw;
  }
}

a img:hover {
  -webkit-animation: zoom 0.3s;
  animation: zoom 0.3s;
}

@-webkit-keyframes zoom {
  50% {
    -webkit-transform: scale(1.05);
  }
}
@keyframes zoom {
  50% {
    transform: scale(1.05);
  }
}
body {
  /* 游ゴシック体 */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.71;
  color: #184765;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 2.8rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

img {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.roboto {
  font-family: "Roboto Condensed", sans-serif;
}

.center {
  text-align: center;
}

.b {
  font-weight: bold;
}

.wrapper {
  max-width: 120rem;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .wrapper {
    max-width: 100%;
    padding: 0 2rem;
  }
}

.header__logo {
  position: absolute;
  z-index: 500;
  left: 3.5rem;
  top: 3.5rem;
}
.header__logo img {
  margin: 0;
}

@media screen and (max-width: 750px) {
  .header__logo {
    top: 2.5rem;
    max-width: 23.5rem;
  }
}
.header__btn {
  cursor: pointer;
  width: 4.6rem;
  height: 3.6rem;
  position: fixed;
  right: 2.5rem;
  top: 3.5rem;
  z-index: 10000;
  transition: 0.4s;
  background: #fff;
  color: #000;
  padding: 1.3rem;
  width: 6rem;
  height: 6rem;
}

@media screen and (max-width: 750px) {
  .header__btn {
    top: 2.5rem;
    width: 7.4rem;
    height: 6.6rem;
  }
}
.header__btn.is-active span:nth-child(1) {
  transform: translate(0rem, 1.5rem) rotate(45deg);
}

@media screen and (max-width: 750px) {
  .header__btn.is-active span:nth-child(1) {
    transform: translate(0rem, 2.1rem) rotate(45deg);
  }
}
.header__btn.is-active span:nth-child(2) {
  opacity: 0;
}

.header__btn.is-active span:nth-child(3) {
  transform: translate(0rem, -1.5rem) rotate(-45deg);
}

.header__btn span {
  border-bottom: 3px solid;
  display: block;
  width: 100%;
  margin-bottom: 1.2rem;
}

.header__btn-menu {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  color: #fff;
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  transform: translate(100%, 0);
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 750px) {
  .header__btn-menu {
    font-size: 2.8rem;
  }
}
.header__btn-menu a {
  display: block;
  margin-bottom: 3rem;
  text-align: left;
  margin-left: 6rem;
}

@media screen and (max-width: 750px) {
  .header__btn-menu a {
    margin-bottom: 6rem;
  }
}
.header__btn-menu-items {
  color: #0eae71;
  border-left: 5px solid;
  transition: 0.5s;
  transform: translate(100%, 0);
  width: 57rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: auto;
  height: 100%;
  padding: 6% 0 73%;
  background: #fff;
}

@media screen and (max-width: 750px) {
  .header__btn-menu-items {
    flex: 0 0 60%;
    padding: 30% 0 80%;
  }
}
.header__btn-menu-item--small {
  font-size: 2.4rem;
}

.header__btn-menu-items > * {
  flex: 0 0 100%;
}

.header__btn-menu-l {
  width: 100%;
  height: 100%;
}

.header__btn.is-active + .header__btn-menu {
  transform: translate(0, 0);
  opacity: 1;
}

.header__btn.is-active + .header__btn-menu .header__btn-menu-items {
  transform: translate(0, 0);
}

.float-button {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 112;
}
.float-button_item {
  position: relative;
  display: block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 750px) {
  .float-button_item {
    margin-bottom: 0;
   
  }
}
.float-button_item_conetnts {
  width: 4.3rem;
}
@media screen and (max-width: 750px) {
  .float-button_item_conetnts {
    width: 100%;
  }
}
.float-button .tel {
  margin-bottom: 11.5rem;
}
@media screen and (max-width: 750px) {
  .float-button .tel {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  .float-button .to-top img {
    width: 8rem;
  }
}

@media screen and (max-width: 750px) {
  .to-top {
    position: absolute;
    right: 2rem;
    bottom: 12rem;
  }

  .float-button {
    position: sticky;
    transform: none;
    top: auto;
    bottom: 0;
    width: 100%;
    display: flex;
    height: auto;
    left: 0;
    text-align: center;
  }
}

.float-button_item_popup {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-80%, -35%);
  width: 10rem;
}

@media screen and (max-width: 750px) {
  .float-button_item_popup {
    width: 28rem;
    top: 0;
    left: 50%;
    transform: translate(-50%, -60%);
  }
}


/*
* form
*---------------------------------*/

.form {
	padding: 60px 0;
	background: #F6F6F6;
}

.form_inner {
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
}

.form_head {
	padding: 40px 0;
  text-align: center;
}

.form_title {
	color: #ca0010;
	font-size: 18px;
	line-height: 1.5;
	font-weight: normal;
	margin: 0 0 3%;
}

.form_title span {
	font-size: 46px;
	font-weight: bold;
}

.form_head_text {
	font-size: 14px;
	line-height: 1.4;
}

.form_bottom {
	padding: 3% 0 0;
}

.form_bottom_text {
	font-size: 11px;
  text-align: center;
	line-height: 1.5;
}

.praivacy_poricy {
	color: #fff;
	display: inline-block;
	margin: 0 0 10px;
}

@media screen and (max-width: 769px) {
	.form_inner {
		padding: 0 4%;
	}
	.form_head {
		padding: 5% 0;
	}
	.form_title {
		font-size: 3vw;
	}
	.form_title span {
		font-size: 7vw;
	}
	.form_head_text {
		font-size: 2.8vw;
	}
	.form_bottom_text {
		font-size: 2.4vw;
	}
	.praivacy_poricy {
		margin: 0 0 3%;
	}
}
