@charset "UTF-8";
.ham {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.ham span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  transition: 0.3s;
}
.ham span:first-child {
  top: 0;
}
.ham span:nth-child(2) {
  top: calc(50% - 3px / 2);
}
.ham span:nth-child(3) {
  bottom: 0;
}

.ham.open span:first-child {
  top: 40%;
  transform: rotate(-45deg);
}
.ham.open span:nth-child(2) {
  opacity: 0;
}
.ham.open span:nth-child(3) {
  top: 40%;
  bottom: auto;
  transform: rotate(45deg);
}

.ac-btn {
  position: relative;
  width: 16px;
  height: 1px;
}
.ac-btn span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  transition: 0.3s;
}
.ac-btn span:nth-child(2) {
  transform: rotate(90deg);
}

.ac-btn.active span:nth-child(2) {
  transform: rotate(0);
}

/* 2等分カラムレイアウト $m2に余白を指定する 初期値は0 */
/* 3等分カラムレイアウト $m3に余白を指定する 初期値は0 */
/* 4等分カラムレイアウト $m4に余白を指定する 初期値は0 */
/* common */
html {
  font-size: 62.5%;
}

body {
  background-color: #fff;
  color: #000;
  text-align: center;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body.open {
  overflow-y: hidden;
}

a {
  color: #000;
}

img {
  width: 100%;
}

hr {
  background-color: #000;
  width: 100%;
  height: 1px;
}

h1,
h2,
h3,
h4 {
  font-weight: normal;
}

*:focus {
  outline: none;
}

.u-line {
  text-decoration: underline;
}

.xl-con {
  width: 90%;
  max-width: 1380px;
  margin: 0 auto;
}
.xl-con .l-con,
.xl-con .con {
  width: 100%;
}

.l-con {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.l-con .con {
  width: 100%;
}

.con {
  width: 90%;
  max-width: 1040px;
  margin: 0 auto;
}

.m-con {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.s-con {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.fw-b {
  font-weight: bold;
}

.w-b {
  background-color: #fff;
}

.w-t {
  color: #fff;
}

.b-b {
  background-color: #53efff;
}

.m-b {
  background-color: #e6f4fd;
}

.y-b {
  background-color: #f9be00;
}

.z2 {
  position: relative;
  z-index: 2;
}

.res-on {
  display: none;
}

.phone-on {
  display: none;
}

.backtop {
  position: fixed;
  right: 30px;
  bottom: 20px;
  width: 60px;
  z-index: 3000;
  opacity: 0;
  transition: 0.3s;
}

.backtop.active {
  opacity: 1;
}

.iconlist-wr {
  max-width: 235px;
}

.iconlist li a {
  width: 36px;
}

.icon-mail {
  padding-top: 5px;
}

.ham-wr {
  position: fixed;
  top: 35px;
  right: 60px;
  width: 30px;
  height: 30px;
  z-index: 6000;
}

.ham span {
  background-color: #000;
  height: 3px;
  border-radius: 2px;
}

.g-nav-wr {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: -10;
  opacity: 0;
  background-color: #53efff;
  transition: 0.2s;
}

.g-nav-wr.open {
  display: block;
  height: auto;
  z-index: 5000;
  opacity: 1;
}

.g-nav {
  opacity: 0;
  transition: 0.5s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-45%) translateX(-50%);
  display: block;
}
.g-nav li {
  margin-bottom: 60px;
}
.g-nav li:last-child {
  margin-bottom: 0;
}

.g-nav.open {
  opacity: 1;
  transform: translateY(-50%) translateX(-50%);
}

.h-iconlist-wr {
  position: fixed;
  top: 31px;
  right: 160px;
  z-index: 6000;
  width: 70%;
}

.h-iconlist li a {
  width: 36px;
}

.h-icon-mail {
  padding-top: 5px;
}

.footer {
  margin-top: 180px;
}

.f-text-wr {
  padding-top: 80px;
  padding-bottom: 50px;
  padding-left: 5%;
  padding-right: 20px;
}

.f-logo {
  width: 80%;
  max-width: 255px;
}

.f-text {
  margin-top: 20px;
  margin-bottom: 15px;
}

.map {
  width: 100%;
  height: 0;
  overflow: hidden;
  position: relative;
}
.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.flex-wr {
  display: flex;
}

.c3box-wr {
  display: flex;
  flex-wrap: wrap;
}

.c3box {
  width: 30%;
  margin-right: 5%;
}
.c3box:nth-child(3n) {
  margin-right: 0;
}

.c4box-wr {
  display: flex;
  flex-wrap: wrap;
}

.c4box {
  width: 25%;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #606060;
  border-radius: 15px;
  background-color: #606060;
  color: #fff;
  transition: 0.3s;
  width: 100%;
  max-width: 210px;
  height: 60px;
  font-size: 1.8rem;
}
.btn:hover {
  background-color: #fff;
  color: #606060;
}

.list-flex li {
  display: flex;
  justify-content: space-between;
}

.fs-70, .fs-48, .fs-30, .fs-24 {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.fs-72 {
  line-height: 1.2;
}

.fs-48, .fs-30 {
  line-height: 1.5;
}

.fs-72 {
  font-size: clamp(3.5rem, 5vw, 7.2rem);
}

.fs-48 {
  font-size: clamp(3rem, 4vw, 4.8rem);
}

.fs-30 {
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.fs-24 {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
}

.fs-21 {
  font-size: clamp(1.8rem, 2.1vw, 2.1rem);
}

.kv-wr {
  padding: 70px 0 100px;
  background-image: url(../img/common/kv-back.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.kv-logo {
  position: relative;
  margin-left: 7%;
  width: 60%;
  max-width: 510px;
  z-index: 2;
}

.kv-img {
  width: 85%;
  max-width: 950px;
  top: -5%;
  right: -3%;
  z-index: 1;
}

.kv-text {
  margin: 70px auto 80px;
}

.h2-uline-wr {
  position: relative;
  display: inline-block;
}
.h2-uline-wr h2 {
  position: relative;
  z-index: 2;
}

.h2-uline {
  position: absolute;
  width: calc(100% + 30px);
  height: 30px;
  background-color: #53efff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
  z-index: 1;
}

.troublebox {
  margin-bottom: 100px;
}

.trouble-img {
  position: relative;
  z-index: 1;
}
.trouble-img img {
  position: relative;
  z-index: 2;
}
.trouble-img::after {
  content: "";
  display: block;
  position: absolute;
  width: 140px;
  height: 140px;
  background-color: #fff;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  z-index: 1;
}

.trouble-title {
  margin-top: 25px;
}

.trouble-text {
  margin-top: 30px;
}

.bassaibox {
  margin-bottom: 90px;
}

.bassai-text-wr {
  margin-top: 70px;
  padding: 160px 30px 70px 60px;
  background-color: #fff;
  border-radius: 70px;
}

.check {
  display: inline-block;
  margin-left: -14px;
}

.bassai-img {
  width: 85%;
  bottom: 56%;
}

.bassai-img1 {
  max-width: 355px;
}

.bassai-img2 {
  max-width: 325px;
}

.bassai-img3 {
  max-width: 360px;
}

.bassai-img4 {
  max-width: 290px;
}

.bassai-img5 {
  max-width: 360px;
}

.bassai-img6 {
  max-width: 290px;
}

.introbox {
  padding: 70px 80px 80px;
  border-radius: 85px;
}

.introbox-text {
  margin-top: 60px;
}

.serifbox {
  padding: 35px 20px;
  margin-bottom: 70px;
  border: 3px solid #000;
  border-radius: 60px;
  position: relative;
}

.serif-arrow {
  bottom: -62px;
}
.serif-arrow img {
  width: auto;
  height: 62px;
}

.serif-arrow1 {
  left: 10%;
}

.serif-arrow2 {
  transform: scale(-1, 1);
  right: 25%;
}

.serif-arrow3 {
  left: 35%;
}

.lattice {
  background-size: 30px 30px;
  background-position: 50% 50%;
  background-image: repeating-linear-gradient(90deg, #dbd7d5, #dbd7d5 1px, transparent 1px, transparent 30px), repeating-linear-gradient(0deg, #dbd7d5, #dbd7d5 1px, #fff 1px, #fff 30px);
}

.flowbox {
  margin-bottom: 60px;
}

.flowbox-title-wr {
  display: inline-flex;
  align-items: center;
  padding-left: 35px;
  top: -30px;
  left: 0;
  width: 30%;
  height: 240px;
  border-radius: 70px;
  background-color: #1cbbef;
}
.flowbox-title-wr::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% - 1px);
  transform: translateY(-50%);
  border: 30px solid transparent;
  border-left: 30px solid #1cbbef;
}

.flowbox-text-wr {
  padding: 45px 0;
  padding-left: 15%;
  padding-right: 9%;
  border-radius: 70px;
  margin-left: 20%;
  width: 80%;
  min-height: 240px;
}

.form-title {
  margin-bottom: 5px;
}

.form-wr input, .form-wr textarea {
  width: 100%;
  height: 60px;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 8px;
}
.form-wr textarea {
  height: 180px;
}

.formbox {
  margin-bottom: 30px;
}

.linetitle {
  position: relative;
}
.linetitle::after {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #f9be00;
}

.telbox {
  padding: 55px 20px;
  border-radius: 85px;
}

.lineimg img {
  width: 72px;
}/*# sourceMappingURL=style.css.map */