@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alata&family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;700&display=swap");
* {
  font: inherit;
}

.feadin-elm {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: opacity 2s, visibility 2s, transform 2s;
}

.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.target-early {
  transform: translateX(-100%);
}
.target-early.is-animation {
  transition: 1.5s ease-in-out;
  transform: translateX(0px);
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.tab {
  display: none;
}
@media screen and (max-width: 1100px) {
  .tab {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .tab {
    display: none;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 1100px) {
  .pc {
    display: none;
  }
}

.pc_tab {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc_tab {
    display: none;
  }
}

body.active {
  height: 100%;
  overflow: hidden;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 999;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .hamburger {
    visibility: visible;
  }
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  background: #fff;
  transform: rotate(315deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 16px;
  background: #fff;
  transform: rotate(-315deg);
}

/* ナビ開いてる時のボタン */
.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
  /* このクラスを、jQueryで付与・削除する */
}
.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}
.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
.globalMenuSp ul li:last-child:hover {
  background: #ddd;
}
.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 2em 0;
  text-decoration: none;
}
.globalMenuSp.active {
  opacity: 100;
  height: 100vh;
  visibility: visible;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  z-index: -100;
  overflow-x: hidden;
  color: #fff;
  background: #1cadd0;
  display: none;
}

.cv_btn a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  line-height: 1;
  position: fixed;
  right: 10px;
  bottom: 50px;
  width: 230px;
  background: #0092d3;
  padding: 20px;
  border-radius: 20px 20px 0px 20px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  z-index: 10;
}
@media screen and (max-width: 1100px) {
  .cv_btn a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .cv_btn a {
    width: 160px;
    font-size: 10px;
    padding: 10px;
  }
}
.cv_btn a span {
  margin-right: 20px;
}
.cv_btn a:before {
  content: "";
  position: absolute;
  bottom: 15px;
  width: 80%;
  height: 2px;
  background: #fff;
  transition: all 1s ease;
  transform: scale(0, 1);
  transform-origin: left bottom;
}
@media screen and (max-width: 768px) {
  .cv_btn a:before {
    display: none;
  }
}
.cv_btn a:hover:before {
  transform: scale(1, 1);
}

.header {
  padding-top: 150px;
  background-image: url(../../../new47lp/library/images/mainbg.png);
  background-position: top 50px center;
  background-size: 800px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1100px) {
  .header {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .header {
    background-size: 500px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    background-size: 300px;
  }
}
.header .menu {
  position: fixed;
  z-index: 100;
  width: 100%;
  padding: 10px 0;
  top: 0;
  display: flex;
  justify-content: right;
  padding-right: 5%;
  transition: 1s;
}
.header .menu.hide {
  transform: translateY(-60px);
}
.header .menu ul {
  display: flex;
  justify-content: space-between;
  width: 400px;
}
@media screen and (max-width: 1100px) {
  .header .menu ul {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .header .menu ul {
    display: none;
  }
}
.header .menu ul a {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .header .menu ul a {
    font-size: 20px;
  }
}
.header_title {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.header_title img {
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .header_title {
    width: 80%;
  }
}
.header_text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.8888888889;
  max-width: 1100px;
  margin: auto;
  color: #fff;
  text-align: center;
  margin-top: 180px;
}
@media screen and (max-width: 1100px) {
  .header_text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header_text {
    font-size: 14px;
  }
}
@media screen and (max-width: 1100px) {
  .header_text {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .header_text {
    max-width: 90%;
  }
}
@media screen and (max-width: 1100px) {
  .header_text {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .header_text {
    margin-top: 100px;
  }
}
.header_images {
  max-width: 1100px;
  margin: auto;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0 80px;
}
@media screen and (max-width: 1100px) {
  .header_images {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .header_images {
    max-width: 90%;
  }
}
@media screen and (max-width: 1100px) {
  .header_images {
    align-items: flex-start;
    padding: 0;
  }
}
.header_images_item:nth-child(odd) {
  width: 250px;
  height: 250px;
}
@media screen and (max-width: 1100px) {
  .header_images_item:nth-child(odd) {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    flex: 2;
  }
}
.header_images_arrow {
  max-width: 70px;
}
@media screen and (max-width: 1100px) {
  .header_images_arrow {
    margin-top: -50px;
    align-self: center;
    flex: 1;
    padding: 0 10px;
  }
}
.header_images_arrow img:not(:first-child) {
  margin-top: 10px;
}
.header_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header_images p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4285714286;
  margin-top: 10px;
}
@media screen and (max-width: 1100px) {
  .header_images p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .header_images p {
    font-size: 11px;
  }
}

.main {
  position: relative;
  z-index: -10;
}
.main .text_en {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  position: relative;
  width: fit-content;
}
@media screen and (max-width: 1100px) {
  .main .text_en {
    font-size: 20px;
  }
}
.main .text_en:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 100%;
  transform: translate(10%, -50%);
}
.main .text_main {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 38px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4473684211;
  margin-top: 30px;
}
@media screen and (max-width: 1100px) {
  .main .text_main {
    font-size: 34px;
  }
}
@media screen and (max-width: 768px) {
  .main .text_main {
    font-size: 30px;
  }
}
.main .text_sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  margin-top: 10px;
}
@media screen and (max-width: 1100px) {
  .main .text_sub {
    font-size: 14px;
  }
}
.main .text_annotation {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4285714286;
}
@media screen and (max-width: 1100px) {
  .main .text_annotation {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .main .text_annotation {
    font-size: 11px;
  }
}
.main .sec1 {
  padding-top: 150px;
}
@media screen and (max-width: 1100px) {
  .main .sec1 {
    padding-top: 100px;
  }
}
.main .sec1_inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 1100px) {
  .main .sec1_inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_inner {
    max-width: 90%;
  }
}
.main .sec1_items {
  display: flex;
  justify-content: space-between;
  padding: 0 50px;
  margin: 50px auto 0;
}
@media screen and (max-width: 1100px) {
  .main .sec1_items {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_items {
    flex-wrap: wrap;
  }
}
.main .sec1_items_wrap {
  padding-bottom: 30px;
  border-bottom: 2px solid #fff;
  width: 300px;
}
@media screen and (max-width: 1100px) {
  .main .sec1_items_wrap {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_items_wrap {
    width: 100%;
  }
}
.main .sec1_items_wrap > :last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .main .sec1_items_wrap > :last-child {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_items_wrap:not(:first-child) {
    margin-top: 50px;
  }
}
.main .sec1_items_item {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1100px) {
  .main .sec1_items_item {
    width: 25vw;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_items_item {
    width: 60%;
    margin: auto;
  }
}
.main .sec1_items_item :nth-child(1) {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1.3571428571;
  color: #0092d3;
  position: absolute;
  top: 15%;
  word-wrap: normal;
}
@media screen and (max-width: 1100px) {
  .main .sec1_items_item :nth-child(1) {
    font-size: 12px;
  }
}
@media screen and (max-width: 1100px) {
  .main .sec1_items_item :nth-child(1) {
    font-size: 12px;
    text-align: center;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_items_item :nth-child(1) {
    top: 23%;
  }
}
.main .sec1_items_item :nth-child(2) {
  position: absolute;
  width: 150px;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1100px) {
  .main .sec1_items_item :nth-child(2) {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_items_item :nth-child(2) {
    top: 47%;
  }
}
.main .sec1_items_item :nth-child(3) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  color: #0092d3;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, 0%);
}
@media screen and (max-width: 1100px) {
  .main .sec1_items_item :nth-child(3) {
    font-size: 14px;
  }
}
@media screen and (max-width: 1100px) {
  .main .sec1_items_item :nth-child(3) {
    font-size: 14px;
    text-align: center;
    width: 30vw;
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_items_item :nth-child(3) {
    font-size: 11px;
    top: 68%;
  }
}
.main .sec1_bottom {
  padding: 50px;
  margin-top: 50px;
  border: 4px solid rgba(255, 255, 255, 0.5);
  position: relative;
}
@media screen and (max-width: 768px) {
  .main .sec1_bottom {
    padding: 20px;
  }
}
.main .sec1_bottom :nth-child(1) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.4166666667;
}
@media screen and (max-width: 1100px) {
  .main .sec1_bottom :nth-child(1) {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_bottom :nth-child(1) {
    font-size: 20px;
  }
}
.main .sec1_bottom :nth-child(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  margin-top: 20px;
}
@media screen and (max-width: 1100px) {
  .main .sec1_bottom :nth-child(2) {
    font-size: 14px;
  }
}
.main .sec1_bottom :nth-child(3) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4285714286;
  margin-top: 20px;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .main .sec1_bottom :nth-child(3) {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_bottom :nth-child(3) {
    font-size: 11px;
  }
}
.main .sec1_bottom :nth-child(4) {
  font-family: "Alata", sans-serif;
  font-size: 80px;
  letter-spacing: 0em;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 20px;
  right: 30px;
}
@media screen and (max-width: 1100px) {
  .main .sec1_bottom :nth-child(4) {
    font-size: clamp(40px, 5vw, 80px);
  }
}
@media screen and (max-width: 768px) {
  .main .sec1_bottom :nth-child(4) {
    top: 0px;
  }
}
.main .sec2 {
  padding-top: 150px;
}
@media screen and (max-width: 1100px) {
  .main .sec2 {
    padding-top: 100px;
  }
}
.main .sec2_inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 1100px) {
  .main .sec2_inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec2_inner {
    max-width: 90%;
  }
}
.main .sec2_items_wrap {
  margin-top: 50px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  .main .sec2_items_wrap {
    justify-content: space-between;
  }
}
.main .sec2_items_item {
  width: 490px;
  background-color: #fff;
  padding: 30px 45px 50px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1100px) {
  .main .sec2_items_item {
    width: 47%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec2_items_item {
    width: 100%;
    flex-wrap: wrap;
    padding: 20px 20px;
  }
}
.main .sec2_items_item :nth-child(1) {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1.3125;
  color: #0092d3;
}
@media screen and (max-width: 1100px) {
  .main .sec2_items_item :nth-child(1) {
    font-size: 14px;
  }
}
.main .sec2_items_item :nth-child(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.2142857143;
  color: #0092d3;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #0092d3;
}
@media screen and (max-width: 1100px) {
  .main .sec2_items_item :nth-child(2) {
    font-size: 20px;
  }
}
.main .sec2_items_item :nth-child(3) {
  width: 100%;
  height: 250px;
  margin-top: 30px;
}
@media screen and (max-width: 1100px) {
  .main .sec2_items_item :nth-child(3) {
    height: auto;
    aspect-ratio: 8/5;
  }
}
.main .sec2_items_item :nth-child(4) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  color: #0092d3;
  margin-top: 30px;
}
@media screen and (max-width: 1100px) {
  .main .sec2_items_item :nth-child(4) {
    font-size: 14px;
  }
}
.main .sec2_items_item:nth-child(n+3) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .main .sec2_items_item:nth-child(n+3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .main .sec2_items_item:not(:first-child) {
    margin-top: 50px;
  }
}
.main .sec3 {
  padding-top: 150px;
}
@media screen and (max-width: 1100px) {
  .main .sec3 {
    padding-top: 100px;
  }
}
.main .sec3_inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 1100px) {
  .main .sec3_inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec3_inner {
    max-width: 90%;
  }
}
.main .sec3_items_wrap {
  margin-top: 50px;
  display: flex;
  justify-content: space-evenly;
  padding: 130px 80px;
  border-radius: 25px;
  background-color: #fff;
  background-image: url(../images/sec3_bg_pc.svg);
  background-size: cover;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1100px) {
  .main .sec3_items_wrap {
    padding: 100px 20px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec3_items_wrap {
    flex-wrap: wrap;
    padding: 100px 0;
  }
}
.main .sec3_items_wrap .contents_items {
  position: relative;
}
.main .sec3_items_wrap .contents_items p {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1.3125;
  letter-spacing: 0.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1100px) {
  .main .sec3_items_wrap .contents_items p {
    font-size: 14px;
  }
}
.main .sec3_items_wrap .contents_items .draw-elm {
  opacity: 0;
  transform: scale(0, 0);
}
.main .sec3_items_wrap .contents_items .is-draw {
  opacity: 1;
  transform: scale(1, 1);
}
.main .sec3_items_wrap .contents_items ul {
  width: 300px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1100px) {
  .main .sec3_items_wrap .contents_items ul {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec3_items_wrap .contents_items ul {
    width: 200px;
  }
}
.main .sec3_items_wrap .contents_items ul li {
  opacity: 0;
  transform: scale(0, 0);
  transition: all 1s;
}
.main .sec3_items_wrap .contents_items ul [data-size] {
  aspect-ratio: 1/1;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4285714286;
}
@media screen and (max-width: 1100px) {
  .main .sec3_items_wrap .contents_items ul [data-size] {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec3_items_wrap .contents_items ul [data-size] {
    font-size: 11px;
  }
}
.main .sec3_items_wrap .contents_items ul [data-size=ll] {
  width: 57%;
  font-size: 13px;
}
@media screen and (max-width: 1100px) {
  .main .sec3_items_wrap .contents_items ul [data-size=ll] {
    font-size: 12px;
  }
}
.main .sec3_items_wrap .contents_items ul [data-size=l] {
  width: 45%;
  font-size: 12px;
}
@media screen and (max-width: 1100px) {
  .main .sec3_items_wrap .contents_items ul [data-size=l] {
    font-size: 11px;
  }
}
.main .sec3_items_wrap .contents_items ul [data-size=m] {
  width: 35%;
  font-size: 11px;
}
@media screen and (max-width: 1100px) {
  .main .sec3_items_wrap .contents_items ul [data-size=m] {
    font-size: 10px;
  }
}
.main .sec3_items_wrap .contents_items ul [data-size=s] {
  width: 27%;
  font-size: 11px;
}
@media screen and (max-width: 1100px) {
  .main .sec3_items_wrap .contents_items ul [data-size=s] {
    font-size: 10px;
  }
}
.main .sec3_items_wrap .contents_items svg {
  transform: rotate(-90deg);
  width: 300px;
  height: 300px;
}
@media screen and (max-width: 1100px) {
  .main .sec3_items_wrap .contents_items svg {
    width: 190px;
    height: 190px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec3_items_wrap .contents_items svg {
    width: 200px;
    height: 200px;
  }
}
.main .sec3_items_wrap .left_contents circle.circle-elm {
  fill: transparent;
}
.main .sec3_items_wrap .left_contents circle.is-drawcircle {
  stroke: #2a4d65;
  stroke-width: 0.5;
  animation: ease-in-out circle 2s 1;
}
@keyframes circle {
  from {
    stroke-dasharray: 0 366;
  }
  to {
    stroke-dasharray: 366 366;
  }
}
.main .sec3_items_wrap .left_contents p {
  color: rgb(42, 77, 101);
}
.main .sec3_items_wrap .left_contents li {
  background: rgba(42, 77, 101, 0.9);
}
.main .sec3_items_wrap .left_contents [data-index] {
  position: absolute;
}
.main .sec3_items_wrap .left_contents [data-index="1"] {
  top: -23%;
  left: 25%;
  z-index: 1;
  transition-delay: 0.4s;
}
.main .sec3_items_wrap .left_contents [data-index="2"] {
  top: -22%;
  left: 51%;
  transition-delay: 0.6s;
}
.main .sec3_items_wrap .left_contents [data-index="3"] {
  top: 19%;
  left: 84%;
  transition-delay: 0.5s;
}
.main .sec3_items_wrap .left_contents [data-index="4"] {
  top: 38%;
  left: 92%;
  z-index: 1;
  transition-delay: 0.8s;
}
.main .sec3_items_wrap .left_contents [data-index="5"] {
  top: 55%;
  left: 71%;
  transition-delay: 0.6s;
}
.main .sec3_items_wrap .left_contents [data-index="6"] {
  top: 81%;
  left: 71%;
  z-index: 1;
  transition-delay: 0.1s;
}
.main .sec3_items_wrap .left_contents [data-index="7"] {
  top: 75%;
  left: 41%;
  transition-delay: 0.3s;
}
.main .sec3_items_wrap .left_contents [data-index="8"] {
  top: 70%;
  left: -9%;
  transition-delay: 0.5s;
}
.main .sec3_items_wrap .left_contents [data-index="9"] {
  top: 42%;
  left: -30%;
  transition-delay: 1s;
}
.main .sec3_items_wrap .left_contents [data-index="10"] {
  top: 24%;
  left: -7%;
  transition-delay: 0.1s;
}
.main .sec3_items_wrap .left_contents [data-index="11"] {
  top: -12%;
  left: -5%;
  transition-delay: 0.1s;
}
.main .sec3_items_wrap .center_contents {
  width: 10%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main .sec3_items_wrap .center_contents {
    width: 100%;
    margin: 60px 0 70px;
  }
}
.main .sec3_items_wrap .center_contents:before, .main .sec3_items_wrap .center_contents:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 80px;
  background: #0092d3;
}
@media screen and (max-width: 1100px) {
  .main .sec3_items_wrap .center_contents:before, .main .sec3_items_wrap .center_contents:after {
    height: 40px;
  }
}
.main .sec3_items_wrap .center_contents:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.main .sec3_items_wrap .center_contents:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.main .sec3_items_wrap .right_contents circle.circle-elm {
  fill: transparent;
}
.main .sec3_items_wrap .right_contents circle.is-drawcircle {
  stroke: #03b8df;
  stroke-width: 0.5;
  animation: ease-in-out circle 2s 1;
}
@keyframes circle {
  from {
    stroke-dasharray: 0 366;
  }
  to {
    stroke-dasharray: 366 366;
  }
}
.main .sec3_items_wrap .right_contents p {
  color: rgb(3, 184, 223);
}
.main .sec3_items_wrap .right_contents li {
  background: rgba(3, 184, 223, 0.8);
}
.main .sec3_items_wrap .right_contents [data-index] {
  position: absolute;
}
.main .sec3_items_wrap .right_contents [data-index="1"] {
  top: -27.5%;
  left: 20%;
  transition-delay: 0.2s;
}
.main .sec3_items_wrap .right_contents [data-index="2"] {
  top: -9%;
  left: 43.5%;
  transition-delay: 0.7s;
}
.main .sec3_items_wrap .right_contents [data-index="3"] {
  top: -10%;
  left: 71.5%;
  transition-delay: 0.5s;
}
.main .sec3_items_wrap .right_contents [data-index="4"] {
  top: 3%;
  left: 84%;
  transition-delay: 0.3s;
}
.main .sec3_items_wrap .right_contents [data-index="5"] {
  top: 28%;
  left: 80%;
  transition-delay: 0.5s;
}
.main .sec3_items_wrap .right_contents [data-index="6"] {
  top: 71%;
  left: 73%;
  z-index: 1;
  transition-delay: 0.2s;
}
.main .sec3_items_wrap .right_contents [data-index="7"] {
  top: 82%;
  left: 46%;
  transition-delay: 0.5s;
}
.main .sec3_items_wrap .right_contents [data-index="8"] {
  top: 73.5%;
  left: 6.5%;
  transition-delay: 1s;
}
.main .sec3_items_wrap .right_contents [data-index="9"] {
  top: 58.5%;
  left: -16%;
  transition-delay: 0.9s;
}
.main .sec3_items_wrap .right_contents [data-index="10"] {
  top: 10.5%;
  left: -30%;
  transition-delay: 0.9s;
}
.main .sec3_items_wrap .right_contents [data-index="11"] {
  top: -3%;
  left: 9%;
  transition-delay: 0.3s;
}
.main .sec4 {
  padding-top: 150px;
}
@media screen and (max-width: 1100px) {
  .main .sec4 {
    padding-top: 100px;
  }
}
.main .sec4_inner {
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 1100px) {
  .main .sec4_inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec4_inner {
    max-width: 90%;
  }
}
.main .sec4_items_wrap {
  margin-top: 50px;
}
.main .sec4_items_item {
  width: 100%;
  padding: 25px 50px 0;
  background: #fff;
  color: #0092d3;
  position: relative;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1100px) {
  .main .sec4_items_item {
    padding: 25px 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .main .sec4_items_item {
    padding: 25px 30px 0;
  }
}
.main .sec4_items_item:not(:first-child) {
  margin-top: 30px;
}
.main .sec4_items_item > :nth-child(1) {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #0092d3;
  width: fit-content;
}
.main .sec4_items_item > :nth-child(1) :nth-child(1) {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1.3125;
  margin-right: 12px;
}
@media screen and (max-width: 1100px) {
  .main .sec4_items_item > :nth-child(1) :nth-child(1) {
    font-size: 14px;
  }
}
.main .sec4_items_item > :nth-child(1) :nth-child(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.2142857143;
}
@media screen and (max-width: 1100px) {
  .main .sec4_items_item > :nth-child(1) :nth-child(2) {
    font-size: 20px;
  }
}
.main .sec4_items_item > :nth-child(2) {
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .main .sec4_items_item > :nth-child(2) {
    height: 150px;
  }
}
.main .sec4_items_item > :nth-child(2) > :nth-child(1) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
}
@media screen and (max-width: 1100px) {
  .main .sec4_items_item > :nth-child(2) > :nth-child(1) {
    font-size: 14px;
  }
}
.main .sec4_items_item > :nth-child(2) > :nth-child(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4285714286;
}
@media screen and (max-width: 1100px) {
  .main .sec4_items_item > :nth-child(2) > :nth-child(2) {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec4_items_item > :nth-child(2) > :nth-child(2) {
    font-size: 11px;
  }
}
.main .sec4_items_item:nth-child(1) > :nth-child(2), .main .sec4_items_item:nth-child(2) > :nth-child(2), .main .sec4_items_item:nth-child(6) > :nth-child(2) {
  margin-top: -10px;
  padding: 5px 0;
}
@media screen and (max-width: 1100px) {
  .main .sec4_items_item:nth-child(1) > :nth-child(2), .main .sec4_items_item:nth-child(2) > :nth-child(2), .main .sec4_items_item:nth-child(6) > :nth-child(2) {
    margin-top: 0px;
  }
}
.main .sec4_items_item:before {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 80px;
  border: 30px solid transparent;
  border-top: 31px solid #fff;
  z-index: 1;
}
@media screen and (max-width: 1100px) {
  .main .sec4_items_item:before {
    bottom: -50px;
  }
}
.main .sec4_items_item:last-child::before {
  display: none;
}
.main .sec5 {
  padding-top: 150px;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .main .sec5 {
    padding-top: 100px;
  }
}
.main .sec5_inner {
  max-width: 1100px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .main .sec5_inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec5_inner {
    max-width: 90%;
  }
}
.main .sec5_items_wrap {
  margin-top: 50px;
}
.main .sec5_items_item {
  opacity: 1;
  transition: all 0.4s ease 0s;
  background: #0092d3;
}
.main .sec5_items_item:not(:first-child) {
  border-top: 2px solid #fff;
}
.main .sec5_items_item.bodernone {
  border: none;
}
.main .sec5_items_item .qa {
  display: flex;
  align-items: center;
  align-content: center;
  position: relative;
  height: 100px;
  padding: 0 25px;
  cursor: pointer;
}
@media screen and (max-width: 1100px) {
  .main .sec5_items_item .qa {
    padding-right: 60px;
  }
}
.main .sec5_items_item .qa > :nth-child(1) {
  font-family: "Alata", sans-serif;
  font-size: 80px;
  letter-spacing: 0em;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.2);
  font-size: 46px;
  line-height: 1.3913043478;
  color: #fff;
  margin-right: 40px;
}
@media screen and (max-width: 1100px) {
  .main .sec5_items_item .qa > :nth-child(1) {
    font-size: clamp(40px, 5vw, 80px);
  }
}
@media screen and (max-width: 1100px) {
  .main .sec5_items_item .qa > :nth-child(1) {
    font-size: 40px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec5_items_item .qa > :nth-child(1) {
    font-size: 36px;
  }
}
.main .sec5_items_item .qa > :nth-child(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.8888888889;
}
@media screen and (max-width: 1100px) {
  .main .sec5_items_item .qa > :nth-child(2) {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec5_items_item .qa > :nth-child(2) {
    font-size: 14px;
  }
}
.main .sec5_items_item .qa .icon_wrap {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translatey(-50%);
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1100px) {
  .main .sec5_items_item .qa .icon_wrap {
    right: 10px;
  }
}
.main .sec5_items_item .qa .icon_wrap .icon {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.main .sec5_items_item .qa .icon_wrap .icon:before, .main .sec5_items_item .qa .icon_wrap .icon:after {
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #fff;
  border-radius: 5px;
  right: 0;
  top: 50%;
  width: 50%;
  height: 5px;
  transform: translate(-50%, -50%);
}
.main .sec5_items_item .qa .icon_wrap .icon:before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.main .sec5_items_item .qa .icon_wrap .icon.open:before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.main .sec5_items_item .qa_a {
  display: none;
  background: #fff;
  cursor: pointer;
}
.main .sec5_items_item .qa_a .qa_a_box {
  display: flex;
  align-items: center;
  align-content: center;
  position: relative;
  padding: 25px 30px;
}
.main .sec5_items_item .qa_a .qa_a_box > :nth-child(1) {
  font-family: "Alata", sans-serif;
  font-size: 80px;
  letter-spacing: 0em;
  line-height: 1.375;
  color: rgba(255, 255, 255, 0.2);
  font-size: 46px;
  line-height: 1.3913043478;
  color: #0092d3;
  margin-right: 40px;
}
@media screen and (max-width: 1100px) {
  .main .sec5_items_item .qa_a .qa_a_box > :nth-child(1) {
    font-size: clamp(40px, 5vw, 80px);
  }
}
.main .sec5_items_item .qa_a .qa_a_box > :nth-child(2) {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4285714286;
  line-height: 2;
  color: #0092d3;
}
@media screen and (max-width: 1100px) {
  .main .sec5_items_item .qa_a .qa_a_box > :nth-child(2) {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec5_items_item .qa_a .qa_a_box > :nth-child(2) {
    font-size: 11px;
  }
}
.main .sec6 {
  padding-top: 150px;
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 1100px) {
  .main .sec6 {
    padding-top: 100px;
  }
}
.main .sec6 .mt-20 {
  margin-top: 20px;
}
.main .sec6 .pb-25 {
  padding-bottom: 25px;
}
.main .sec6_inner {
  max-width: 1100px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1100px) {
  .main .sec6_inner {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec6_inner {
    max-width: 90%;
  }
}
.main .sec6 .sec6_inner ul li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 2.125;
}
.main .sec6 .tel47 {
  border-bottom: 0.5px solid #fff;
  padding: 0 5px;
  pointer-events: none;
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .main .sec6 .tel47 {
    pointer-events: auto;
  }
}
.main .sec6 .mt50 {
  margin-top: 50px;
}
.main .sec6 .contact_wrap {
  margin-top: 20px;
}
.main .sec6 .contact_wrap .from_wrap {
  display: flex;
  row-gap: 30px;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}
.main .sec6 .contact_wrap .from_wrap:not(:first-child) {
  margin-top: 30px;
}
.main .sec6 .contact_wrap .from_wrap .contact_items {
  width: 100%;
  border-bottom: 2px solid #fff;
  position: relative;
}
.main .sec6 .contact_wrap .from_wrap .contact_items_45 {
  width: 45% !important;
}
@media screen and (max-width: 768px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items_45 {
    width: 100% !important;
  }
}
.main .sec6 .contact_wrap .from_wrap .contact_items_45.pb-0 {
  padding-bottom: 0 !important;
}
@media screen and (max-width: 768px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items:not(:first-child) {
    margin-top: 30px;
  }
}
.main .sec6 .contact_wrap .from_wrap .contact_items:last-child {
  padding-bottom: 32px;
}
.main .sec6 .contact_wrap .from_wrap .contact_items .input_title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.8888888889;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .input_title {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .input_title {
    font-size: 14px;
  }
}
.main .sec6 .contact_wrap .from_wrap .contact_items .input_title span {
  padding: 0 1em;
}
.main .sec6 .contact_wrap .from_wrap .contact_items .input_title_sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .input_title_sub {
    font-size: 14px;
  }
}
.main .sec6 .contact_wrap .from_wrap .contact_items .input_text {
  background: none;
  border: none;
  height: 65px;
  padding-left: 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .input_text {
    font-size: 14px;
  }
}
.main .sec6 .contact_wrap .from_wrap .contact_items .input_text::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  font-weight: normal;
  color: #fff;
  opacity: 0.5;
  line-height: 1;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .input_text::placeholder {
    font-size: 14px;
  }
}
.main .sec6 .contact_wrap .from_wrap .contact_items .input_text:focus {
  border: none;
  outline: 0;
}
.main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm_2 label {
  column-gap: 50px;
}
@media screen and (max-width: 768px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm_2 label {
    flex-direction: column;
    gap: 0;
  }
}
.main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm_2 label .mwform-checkbox-field {
  width: fit-content;
}
.main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm label {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}
.main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm .mwform-checkbox-field {
  width: 20%;
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm .mwform-checkbox-field {
    width: fit-content;
    padding: 8px 8px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm .mwform-checkbox-field {
    width: 50%;
    padding: 5px 0;
  }
}
.main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm .mwform-checkbox-field label {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}
.main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm .mwform-checkbox-field label span {
  margin-left: 10px;
}
.main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm input[type=checkbox] {
  display: none;
  appearance: none;
}
.main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm input[type=checkbox] + span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.8888888889;
  display: flex;
  position: relative;
  align-items: center;
  cursor: pointer;
  padding: 2px 0;
  padding-left: 1em;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm input[type=checkbox] + span {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm input[type=checkbox] + span {
    font-size: 14px;
  }
}
.main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm input[type=checkbox] + span:before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  border-radius: 2px;
  background: white;
}
.main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm input[type=checkbox]:checked + span:before {
  position: absolute;
  top: 50%;
  left: 0%;
  z-index: 1;
  font-family: "Material Icons";
  content: "\e876";
  font-weight: 400;
  line-height: 1;
  color: #0092d3;
  font-size: 0.8em;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .from_wrap .contact_items .checkbox_elm input[type=checkbox]:checked + span:before {
    font-size: 1em;
  }
}
.main .sec6 .contact_wrap .from_wrap input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #1cadd0 inset;
  -webkit-text-fill-color: #fff !important;
  padding: 0;
}
.main .sec6 .contact_wrap .from_wrap textarea {
  width: 100%;
  height: 250px;
  border: none;
  padding-left: 30px;
  padding-top: 20px;
  margin-top: 20px;
  line-height: 1;
  position: relative;
}
.main .sec6 .contact_wrap .from_wrap textarea::placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  font-weight: normal;
  opacity: 0.5;
  line-height: 1;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .from_wrap textarea::placeholder {
    font-size: 14px;
  }
}
.main .sec6 .contact_wrap .from_wrap textarea:focus:focus {
  border: none;
  outline: 0;
}
.main .sec6 .contact_wrap .from_wrap .error {
  position: absolute;
  bottom: -20px;
  left: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4285714286;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .from_wrap .error {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .main .sec6 .contact_wrap .from_wrap .error {
    font-size: 11px;
  }
}
.main .sec6 .contact_wrap .from_wrap .error:nth-of-type(2) {
  display: none;
}
.main .sec6 .contact_wrap .btn_last {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  display: block;
  background: #0092d3;
  color: #fff;
  padding: 22px 0;
  width: 300px;
  margin: 50px auto 0;
  border: none;
  line-height: 1;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .btn_last {
    font-size: 14px;
  }
}
.main .sec6 .contact_wrap .btn_last:hover {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
  line-height: 1;
  background: #fff;
  color: #0092d3;
  transition: all 0.5s;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .btn_last:hover {
    font-size: 14px;
  }
}
.main .sec6 .contact_wrap input[type=submit] {
  appearance: none;
}
.main .sec6 .contact_wrap .mw_wp_form_confirm {
  width: fit-content;
  margin: auto;
}
.main .sec6 .contact_wrap .mw_wp_form_confirm .required {
  display: none;
}
.main .sec6 .contact_wrap .mw_wp_form_confirm .input_title,
.main .sec6 .contact_wrap .mw_wp_form_confirm .input_title_sub {
  padding-bottom: 30px;
}
.main .sec6 .contact_wrap .mw_wp_form_confirm .contact_items {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .main .sec6 .contact_wrap .mw_wp_form_confirm .contact_items {
    width: 100%;
    margin-bottom: 30px;
  }
}
.main .sec6 .contact_wrap .mw_wp_form_confirm .contact_items:nth-child(1) .input_title,
.main .sec6 .contact_wrap .mw_wp_form_confirm .contact_items:nth-child(2) .input_title {
  padding-bottom: 0px;
}
.main .sec6 .contact_wrap .mw_wp_form_complete {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 2.125;
}
@media screen and (max-width: 1100px) {
  .main .sec6 .contact_wrap .mw_wp_form_complete {
    font-size: 14px;
  }
}
.footer {
  position: relative;
  padding-bottom: 30px;
}
.footer_inner {
  max-width: 90%;
  margin: auto;
}
.footer p {
  text-align: center;
}
.footer img {
  width: 90%;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer_wrap {
  padding: 170px 0;
}
.footer_wrap .tel47 {
  pointer-events: none;
  text-decoration: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.8888888889;
  font-weight: bold;
  font-size: 42px;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .footer_wrap .tel47 {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer_wrap .tel47 {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .footer_wrap .tel47 {
    pointer-events: auto;
  }
}
.footer_wrap p:last-child {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1.3125;
  letter-spacing: 0.1em;
  text-align: center;
  padding-left: 1em;
}
@media screen and (max-width: 1100px) {
  .footer_wrap p:last-child {
    font-size: 14px;
  }
}
.footer_info {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px 30px;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .footer_info {
    flex-wrap: wrap;
  }
}
.footer_info p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4285714286;
  text-align: left;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1100px) {
  .footer_info p {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer_info p {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .footer_info p {
    text-align: center;
  }
}
.footer_info ul {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer_info ul {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
}
.footer_info ul li {
  list-style: none;
}
.footer_info ul li:not(:first-child) {
  margin-left: 40px;
}
.footer_info ul li a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4285714286;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1100px) {
  .footer_info ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer_info ul li a {
    font-size: 11px;
  }
}
.footer > :last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0em;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1100px) {
  .footer > :last-child {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .footer > :last-child {
    font-size: 11px;
  }
}/*# sourceMappingURL=style.css.map */