@charset "UTF-8";
/*********************
**********************
定義・一般設定
**********************
*********************/
.skip-link {
  position: absolute;
}

.skip-link:not(:focus) {
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
  display: block;
  top: 5px;
  left: 5px;
  z-index: 9999;
  margin: 0;
  padding: 15px 20px;
  background-color: #64B4E6;
  color: #FFFFFF;
}

.body {
  color: #222222;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-style: normal;
}
.body.-fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease 0s;
}

.container {
  max-width: 1300px;
  width: 100%;
  margin: auto;
  padding-right: 60px;
  padding-left: 60px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 28px;
    padding-right: 28px;
  }
}
.container.-small {
  max-width: 1080px;
  width: 100%;
  margin: auto;
  padding-right: 60px;
  padding-left: 60px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .container.-small {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .container.-small {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*********************
**********************
レイアウト共通部分（header・footer・その他）
**********************
*********************/
.footer {
  background-image: url("../img/background_blue.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 20px 0;
  overflow: hidden;
}
.footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1500px;
  width: 100%;
  margin: auto;
  padding-right: 60px;
  padding-left: 60px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .footer_inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 768px) {
  .footer_inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 768px) {
  .footer_inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer_links {
  display: flex;
}
@media (max-width: 768px) {
  .footer_links {
    justify-content: center;
  }
}
.footer_link.-bLeft {
  position: relative;
}
.footer_link.-bLeft::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 1px;
  height: 18px;
  transform: translateY(-50%);
  background-color: #FFFFFF;
}
.footer_link.-bRight {
  position: relative;
}
.footer_link.-bRight::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 1px;
  height: 18px;
  transform: translateY(-50%);
  background-color: #FFFFFF;
}
.footer_link a {
  color: #FFFFFF;
  position: relative;
  padding-right: 40px;
  padding-left: 20px;
  font-size: 14px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 768px) {
  .footer_link a {
    font-size: 12px;
  }
}
.footer_link a:before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 52%;
  right: 26px;
}
.footer_link a:hover {
  opacity: 0.7;
}
.footer_copyright {
  font-size: 14px;
}
@media (max-width: 768px) {
  .footer_copyright {
    font-size: 12px;
  }
}

.mv {
  background-color: #64B4E6;
  margin-top: 125.86px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .mv {
    margin-top: 126.42px;
  }
}
@media (max-width: 768px) {
  .mv {
    margin-top: 110.54px;
  }
}
.mv_inner {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .mv_inner {
    display: block;
    padding: 20px 0;
  }
}
.mv_textWrapper {
  width: 50%;
  padding: 20px 40px 20px 0;
}
@media (max-width: 768px) {
  .mv_textWrapper {
    padding: 10px 0;
    width: 100%;
  }
}
.mv_imgWrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .mv_imgWrapper {
    width: 100%;
    text-align: center;
  }
  .mv_imgWrapper img {
    max-width: 400px;
  }
}
.mv_subtitleWrapper {
  padding: 10px 14px;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  display: inline-block;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .mv_subtitleWrapper {
    padding: 8px 12px;
  }
}
@media (max-width: 768px) {
  .mv_subtitleWrapper {
    padding: 6px 10px;
    margin-bottom: 10px;
  }
}
.mv_subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #64B4E6;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .mv_subtitle {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .mv_subtitle {
    font-size: 14px;
  }
}
.mv_title {
  font-size: 30px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 14px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .mv_title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .mv_title {
    font-size: 18px;
  }
}
.mv_text {
  font-size: 18px;
  color: #FFFFFF;
  line-height: 1.4;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .mv_text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .mv_text {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

.bgWrapper {
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIGlkPSJjIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIiB2aWV3Qm94PSIwIDAgMzAwIDMwMCI+PGRlZnM+PHN0eWxlPi5ke2ZpbGw6bm9uZTtzdHJva2U6I2ZmZjtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9LmV7ZmlsbDojZWZlZmVmO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iZSIgeT0iMCIgd2lkdGg9IjMwMCIgaGVpZ2h0PSIzMDAiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIvPjxsaW5lIGNsYXNzPSJkIiB5MT0iMjk5LjU0IiB4Mj0iMzAwIiB5Mj0iMjk5LjU0Ii8+PGxpbmUgY2xhc3M9ImQiIHgxPSIyOTkuNDciIHgyPSIyOTkuNDciIHkyPSIzMDAiIHZlY3Rvci1lZmZlY3Q9Im5vbi1zY2FsaW5nLXN0cm9rZSIvPjwvc3ZnPg==");
}
@media (max-width: 768px) {
  .bgWrapper {
    background-image: url("data:image/svg+xml;base64,PHN2ZyBpZD0iYyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iNzUiIGhlaWdodD0iNzUiIHZpZXdCb3g9IjAgMCA3NSA3NSI+PGRlZnM+PHN0eWxlPi5ke2ZpbGw6bm9uZTtzdHJva2U6I2ZmZjtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9LmV7ZmlsbDojZWZlZmVmO308L3N0eWxlPjwvZGVmcz48cmVjdCBjbGFzcz0iZSIgeT0iMCIgd2lkdGg9Ijc1IiBoZWlnaHQ9Ijc1Ii8+PGxpbmUgY2xhc3M9ImQiIHkxPSI3NC41NSIgeDI9Ijc1IiB5Mj0iNzQuNTUiLz48bGluZSBjbGFzcz0iZCIgeDE9Ijc0LjQ3IiB5MT0iMCIgeDI9Ijc0LjQ3IiB5Mj0iNzUiLz48L3N2Zz4=");
  }
}

.section {
  padding: 70px 0;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}
.section.-bgWhite {
  background-color: #FFFFFF;
}
.section.-sample {
  padding: 200px 0 1000px;
}
.section_title {
  position: relative;
  padding-left: 40px;
  font-size: 30px;
  font-weight: 700;
  color: #64B4E6;
  margin-bottom: 30px;
}
.section_title::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%) skewX(-20deg);
  width: 26px;
  height: 86%;
  background-color: #64B4E6;
}
@media (max-width: 768px) {
  .section_title::before {
    height: calc(100% + 6px);
    width: 24px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_title {
    font-size: 24px;
    margin-bottom: 22px;
  }
}
@media (max-width: 768px) {
  .section_title {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
.section_titleH3 {
  display: inline-block;
  position: relative;
  padding-right: 8px;
  padding-left: 4px;
  color: #64B4E6;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  z-index: 4;
  margin-bottom: 38px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_titleH3 {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .section_titleH3 {
    font-size: 16px;
    margin-bottom: 22px;
  }
}
.section_titleH3::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 80%;
  background-color: #C9CACA;
  z-index: -2;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_titleH3::before {
    height: 20px;
  }
}
@media (max-width: 768px) {
  .section_titleH3::before {
    height: 90%;
  }
}
.section_titleH3Num {
  font-size: 80px;
  line-height: 0.9;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_titleH3Num {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .section_titleH3Num {
    font-size: 40px;
  }
}
.section_titleH3fzMid {
  font-size: 40px;
  line-height: 1;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .section_titleH3fzMid {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .section_titleH3fzMid {
    font-size: 20px;
  }
}
.section_text {
  font-size: 16px;
}
@media (max-width: 768px) {
  .section_text {
    font-size: 14px;
  }
}
.section_text.-cMain {
  color: #64B4E6;
}

/*********************
**********************
ブロック一覧
**********************
*********************/
.btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 400px;
  border-radius: 8px;
  padding: 22px 80px;
  font-weight: 500;
  text-align: center;
  background: linear-gradient(to right, #64B4E6, #1487bd);
  background-size: 200% auto;
  transition: background-position 0.5s ease;
  border: 4px solid #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
}
.btn:hover {
  background-position: right center;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .btn {
    padding: 20px 20px;
    width: 310px;
  }
  .btn:hover {
    background-position: 0% 0%;
  }
}
@media (max-width: 768px) {
  .btn {
    width: 90%;
    padding: 18px 20px;
    margin: 0 auto;
  }
  .btn:hover {
    background-position: 0% 0%;
  }
}
.btn i {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: auto;
  height: auto;
}
@media (max-width: 768px) {
  .btn i {
    right: 20;
  }
}
.btn.-bgGray {
  background: #C9CACA;
}
.btn.-w300 {
  width: 300px;
}
@media (max-width: 768px) {
  .btn.-w300 {
    width: 90%;
  }
}
.btn.-disabled {
  background: #C9CACA;
  cursor: default;
}

.ball-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}

.ball {
  position: absolute;
  top: -20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #64B4E6;
  opacity: 0.8;
}

.opening {
  position: fixed;
  inset: 0;
  background: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
}
.opening__inner {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  line-height: 2.4rem;
}
.opening__text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  font-size: 24px;
}
@media (max-width: 768px) {
  .opening__text span {
    font-size: 14px;
  }
}

.main {
  position: relative;
  background-color: #EFEFEF;
}
.main_left {
  content: "";
  position: fixed;
  top: 50%;
  left: 12px;
  width: auto;
  height: auto;
  font-size: 13px;
  writing-mode: vertical-rl;
  color: #222222;
  transform: rotate(180deg) translateY(50%);
  z-index: 999;
}
@media (max-width: 768px) {
  .main_left {
    font-size: 10px;
    left: 3px;
    transform: rotate(180deg) translateY(50%);
  }
}
.main_right {
  content: "";
  position: fixed;
  top: 50%;
  right: 12px;
  width: auto;
  height: auto;
  font-size: 13px;
  writing-mode: vertical-rl;
  color: #222222;
  transform: translateY(-50%);
  z-index: 999;
}
@media (max-width: 768px) {
  .main_right {
    font-size: 10px;
    right: 3px;
  }
}

.card_list {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .card_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 46px;
  }
}
@media (max-width: 768px) {
  .card_list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px 10px;
    justify-content: center;
  }
}
.card_list.-three {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .card_list.-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 20px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .card_list.-three {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 14px 10px;
    justify-content: center;
  }
}
.card_item {
  background-color: #FFFFFF;
  padding: 16px 16px 40px 16px;
  border-radius: 50px;
  width: 24%;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .card_item {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  .card_item {
    width: 100%;
    height: 100%;
    padding: 16px 8px 32px 8px;
    border-radius: 20px;
  }
}
.card_item.-three {
  background-color: #FFFFFF;
  padding: 16px 16px 40px 16px;
  border-radius: 50px;
  width: 31%;
  height: 100%;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .card_item.-three {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  .card_item.-three {
    width: 100%;
    height: 100%;
    padding: 16px 8px 32px 8px;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.card_title {
  padding: 14px;
  background-color: #64B4E6;
  border-radius: 30px;
  margin-bottom: 30px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .card_title {
    margin-bottom: 24px;
    border-radius: 20px;
  }
}
@media (max-width: 768px) {
  .card_title {
    margin-bottom: 20px;
    padding: 8px 10px;
    border-radius: 20px;
  }
}
.card_title p {
  font-size: 16px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
}
@media (max-width: 768px) {
  .card_title p {
    font-size: 14px;
  }
}
.card_title p i {
  margin-right: 6px;
}
.card_text {
  font-size: 16px;
  color: #64B4E6;
  font-weight: 700;
}
@media (max-width: 768px) {
  .card_text {
    font-size: 14px;
  }
}

/*********************
**********************
総合TOPページ
**********************
*********************/
.hero {
  height: 100svh;
  width: 100svw;
  display: flex;
  justify-content: conter;
  align-items: center;
}
.hero_inner {
  width: 100%;
  height: 100%;
}
.hero_wrapper {
  background-color: #FFFFFF;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 0 25px #FFFFFF;
}
.hero_textWrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}
.hero_coming {
  text-align: center;
}
.hero_comingTitle {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .hero_comingTitle {
    font-size: 14px;
    margin-bottom: 34px;
  }
}
@media (max-width: 768px) {
  .hero_comingTitle {
    font-size: 12px;
    margin-bottom: 30px;
  }
}
.hero_comingCount {
  font-size: 40px;
}
.hero_title {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 4px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .hero_title {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .hero_title {
    font-size: 18px;
  }
}
.hero_text {
  font-weight: 500;
  font-size: 18px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .hero_text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .hero_text {
    font-size: 12px;
  }
}
.hero_logoWrapper {
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero_logoWrapper {
    margin-bottom: 20px;
  }
}
.hero_logo img {
  width: 100%;
  max-width: 400px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .hero_logo img {
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .hero_logo img {
    max-width: 160px;
  }
}
.hero_snsWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 0;
}
.hero_snsWrapper i {
  font-size: 32px;
}
@media (max-width: 768px) {
  .hero_snsWrapper i {
    font-size: 26px;
  }
}

/*********************
**********************
contactページ
**********************
*********************/
.contact_inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.contact_thanksTitle {
  font-size: 54px;
  text-align: center;
  font-weight: 700;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .contact_thanksTitle {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .contact_thanksTitle {
    font-size: 28px;
  }
}
.contact_thanksSubtitle {
  font-size: 24px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  color: #64B4E6;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .contact_thanksSubtitle {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .contact_thanksSubtitle {
    font-size: 14px;
    margin-bottom: 32px;
    margin-top: 40px;
  }
}
.contact_thanksTextWrapper {
  padding: 32px 40px;
  background: transparent;
  line-height: 1.5;
  border: 4px solid #64B4E6;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .contact_thanksTextWrapper {
    padding: 32px;
  }
}
@media (max-width: 768px) {
  .contact_thanksTextWrapper {
    padding: 20px;
    font-size: 14px;
  }
}
.contact_thanksBtnWrapper {
  display: flex;
  justify-content: center;
  gap: 140px;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .contact_thanksBtnWrapper {
    flex-direction: column;
    margin-top: 40px;
    gap: 30px;
  }
}
.contact_thanksBtnItem {
  text-align: center;
}
.contact_confirmWrapper {
  width: 100%;
  border: 4px solid #64B4E6;
  padding: 30px 40px;
  background: transparent;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .contact_confirmWrapper {
    padding: 24px 24px;
  }
}
@media (max-width: 768px) {
  .contact_confirmWrapper {
    padding: 20px 14px;
    margin-top: 40px;
  }
}
.contact_confirmText {
  font-size: 18px;
  color: #64B4E6;
}
@media (max-width: 768px) {
  .contact_confirmText {
    font-size: 16px;
  }
}

.contactContents [type=text], .contactContents [type=email], .contactContents [type=tel], .contactContents textarea {
  border: 3px solid #C9CACA !important;
  box-shadow: 0px 0px 15px -5px #C9CACA;
  border-radius: 6px;
}
.contactContents_top {
  font-size: 14px;
  margin-bottom: 50px;
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contactContents_top {
    font-size: 12px;
    margin-bottom: 30px;
  }
}
.contactContents_formWrapper {
  overflow: hidden;
}
.contactContents_formWrapper input[type=text] {
  width: 100%;
}
.contactContents_formWrapper input[type=textarea] {
  width: 100%;
}
.contactContents_formTitle {
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 4px;
  background-color: #64B4E6;
  color: #FFFFFF;
  padding: 10px 12px;
  text-align: center;
  border-radius: 8px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .contactContents_formTitle {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .contactContents_formTitle {
    font-size: 14px;
    padding: 4px 8px;
  }
}
.contactContents_formItem {
  display: flex;
  padding: 24px 0;
  flex-direction: column;
}
@media (max-width: 768px) {
  .contactContents_formItem {
    flex-direction: column;
    padding: 20px 0;
  }
}
.contactContents_dt {
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}
.contactContents_dt p {
  padding-left: 68px;
}
@media (max-width: 768px) {
  .contactContents_dt p {
    padding-left: 48px;
  }
}
.contactContents_dt.-requiredEn p {
  padding-left: 90px;
}
@media (max-width: 768px) {
  .contactContents_dt.-requiredEn p {
    padding-left: 60px;
  }
}
.contactContents_dt.-anyEn p {
  padding-left: 90px;
}
@media (max-width: 768px) {
  .contactContents_dt.-anyEn p {
    padding-left: 60px;
  }
}
.contactContents_dt.-requiredCs p {
  padding-left: 78px;
}
@media (max-width: 768px) {
  .contactContents_dt.-requiredCs p {
    padding-left: 56px;
  }
}
.contactContents_dt.-anyCs p {
  padding-left: 78px;
}
@media (max-width: 768px) {
  .contactContents_dt.-anyCs p {
    padding-left: 56px;
  }
}
@media (max-width: 768px) {
  .contactContents_dt {
    width: 100%;
    padding-top: 0;
    margin-bottom: 8px;
    font-size: 14px;
  }
}
.contactContents_dt.-file {
  margin-bottom: 14px;
}
.contactContents_dt.-pt0 {
  padding-top: 0;
}
.contactContents_dt.-required label:hover {
  cursor: default;
}
.contactContents_dt.-required label::after {
  content: "必須";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 2px 14px;
  background-color: #64B4E6;
  font-size: 14px;
  color: #FFFFFF;
  width: 60px;
  text-align: center;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .contactContents_dt.-required label::after {
    padding: 2px 8px;
    font-size: 11px;
    width: 42px;
  }
}
.contactContents_dt.-requiredCs label:hover {
  cursor: default;
}
.contactContents_dt.-requiredCs label::after {
  content: "必填";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 2px 14px;
  background-color: #64B4E6;
  font-size: 14px;
  color: #FFFFFF;
  width: 70px;
  text-align: center;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .contactContents_dt.-requiredCs label::after {
    padding: 2px 8px;
    font-size: 11px;
    width: 50px;
  }
}
.contactContents_dt.-requiredEn label:hover {
  cursor: default;
}
.contactContents_dt.-requiredEn label::after {
  content: "Required";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 2px 6px;
  background-color: #64B4E6;
  font-size: 14px;
  color: #FFFFFF;
  width: 82px;
  text-align: center;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .contactContents_dt.-requiredEn label::after {
    padding: 2px 4px;
    font-size: 10px;
    width: 54px;
  }
}
.contactContents_dt.-requiredCt label:hover {
  cursor: default;
}
.contactContents_dt.-requiredCt label::after {
  content: "必填";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 2px 14px;
  background-color: #64B4E6;
  font-size: 14px;
  color: #FFFFFF;
  width: 60px;
  text-align: center;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .contactContents_dt.-requiredCt label::after {
    padding: 2px 8px;
    font-size: 11px;
    width: 42px;
  }
}
.contactContents_dt.-any label:hover {
  cursor: default;
}
.contactContents_dt.-any label::after {
  content: "任意";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 2px 14px;
  background-color: #FFFFFF;
  font-size: 14px;
  color: #64B4E6;
  border: 2px solid #64B4E6;
  width: 60px;
  text-align: center;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .contactContents_dt.-any label::after {
    padding: 2px 8px;
    font-size: 11px;
    width: 42px;
  }
}
.contactContents_dd {
  width: 100%;
  padding-left: 0;
  font-size: 16px;
}
@media (max-width: 768px) {
  .contactContents_dd {
    width: 100%;
    padding-left: 0;
    font-size: 14px;
  }
}
.contactContents_dd [type=text], .contactContents_dd [type=email], .contactContents_dd [type=tel], .contactContents_dd textarea {
  border: 2px solid #C9CACA;
  box-shadow: 0px 0px 20px -5px #C9CACA;
  border-radius: 6px;
}
.contactContents_dd input[type=radio] {
  background-color: #C9CACA;
}
.contactContents_dd.-radio .wpcf7-list-item {
  display: block !important;
  margin-bottom: 10px !important;
  margin-left: 0 !important;
}
.contactContents_dd.-radio .wpcf7-list-item:last-child {
  margin-bottom: 0 !important;
}
.contactContents_dd.-radio input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.contactContents_dd.-radio span.wpcf7-list-item-label {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
}
.contactContents_dd.-radio span.wpcf7-list-item-label::before {
  display: block !important;
  content: "" !important;
  border-radius: 50% !important;
  border: 2px solid #222222 !important;
  width: 20px !important;
  height: 20px !important;
  margin-right: 10px !important;
}
.contactContents_dd.-radio span.wpcf7-list-item-label::after {
  display: block !important;
  position: absolute !important;
  content: "" !important;
  border-radius: 50% !important;
  width: 12px !important;
  height: 12px !important;
  background-color: #222222 !important;
  left: 4px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  display: none !important;
}
.contactContents_dd.-radio input[type=radio]:checked + span.wpcf7-list-item-label::after {
  display: block !important;
}
.contactContents_dd.-checkbox .wpcf7-list-item {
  margin: 4px 14px;
}
.contactContents_newsLinkText {
  font-size: 16px;
}
@media (max-width: 768px) {
  .contactContents_newsLinkText {
    font-size: 14px;
  }
}
.contactContents_newsLink {
  border-bottom: 1px solid #222222;
}
.contactContents_newsLink:hover {
  opacity: 0.7;
}
.contactContents_checkbox .wpcf7-list-item-label {
  display: none !important;
}
.contactContents_confirmBox {
  position: fixed;
  top: -100%;
  left: -50vw;
}
.contactContents_consent {
  text-align: center;
  margin-top: 20px;
  font-weight: 700;
  position: relative;
}
.contactContents_consent .privacyLink {
  margin-left: 8px;
  border-bottom: 1px solid #222222;
}
.contactContents_consent .privacyLink.-ml0 {
  margin-left: 0;
}
.contactContents_consent .privacySpace {
  margin-left: 8px;
}
.contactContents_consent .wpcf7-not-valid-tip {
  position: absolute !important;
  top: calc(100% + 4px) !important;
  left: 0 !important;
  width: 300px !important;
}
.contactContents_btn {
  text-align: center;
  margin-top: 60px;
  position: relative;
}
.contactContents_btn p {
  text-align: center;
  width: 100%;
  position: relative;
}
.contactContents_btn.-edit p {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .contactContents_btn.-edit p {
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .contactContents_btn {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .contactContents_btn {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.contactContents_btn .ajax-loader {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
.contactContents_recaptcha {
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
}
.contactContents_recaptcha .privacyLink {
  padding-left: 2px;
  padding-right: 2px;
  border-bottom: 1px solid #222222;
  transition: all 0.3s ease 0s;
  opacity: 0.7;
}
.contactContents_recaptcha .privacyLink:hover {
  opacity: 0.5;
}
.contactContents_recaptchaText {
  font-size: 16px;
}
@media (max-width: 768px) {
  .contactContents_recaptchaText {
    font-size: 14px;
  }
}

.wpcf7-back {
  float: none !important;
  margin-top: 0 !important;
}

.wpcf7-spinner {
  position: absolute !important;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
}

.wpcf7-submit {
  display: inline-block;
}

.wpcf7-response-output {
  border-color: #222222 !important;
}

input[type=checkbox] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #000;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 0px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 12px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: "";
}

/*********************
**********************
ユーティリティ
**********************
*********************/
.u-link {
  border-bottom: 1px solid #222222;
  transition: all 0.3s ease 0s;
}
.u-link:hover {
  opacity: 0.8;
  cursor: pointer;
}

.u-comingWrapper {
  position: relative;
  cursor: default;
  width: 100%;
  height: 100%;
}
.u-comingWrapper::after {
  position: absolute;
  content: "Coming Soon";
  left: 50%;
  top: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #FFFFFF;
  background-color: rgba(119, 113, 113, 0.7);
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-comingWrapper::after {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .u-comingWrapper::after {
    font-size: 16px;
    max-width: 400px;
  }
}

.u-mtSmall {
  margin-top: 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mtSmall {
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .u-mtSmall {
    margin-top: 20px;
  }
}

.u-mtHeader {
  margin-top: 90px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mtHeader {
    margin-top: 126.42px;
  }
}
@media (max-width: 768px) {
  .u-mtHeader {
    margin-top: 110.54px;
  }
}

.u-sectionPadding {
  padding: 70px 0 100px;
}
@media (max-width: 768px) {
  .u-sectionPadding {
    padding: 40px 0 80px;
  }
}

.u-borderTop {
  border-top: 1px solid #222222;
}

.u-cAccent {
  color: #64B4E6;
}

.u-dib {
  display: inline-block;
}

.u-dnone {
  display: none;
}

.u-mlr3 {
  margin-right: 2.5px;
  margin-left: 2.5px;
}

.u-colorWhite {
  color: #FFFFFF;
}

.u-pl28 {
  padding-left: 28px;
}

.u-pl14 {
  padding-left: 14px;
}

.u-fwb {
  font-weight: 700;
}

.u-fws {
  font-weight: 700;
}

.u-fwl {
  font-weight: 300;
}

.u-nowrap {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.u-mbLarge {
  margin-bottom: 140px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbLarge {
    margin-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .u-mbLarge {
    margin-bottom: 90px;
  }
}

.u-mbMedium {
  margin-bottom: 100px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbMedium {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .u-mbMedium {
    margin-bottom: 70px;
  }
}

.u-mbSmall {
  margin-bottom: 40px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbSmall {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .u-mbSmall {
    margin-bottom: 20px;
  }
}

.u-mbSmallest {
  margin-bottom: 30px;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-mbSmallest {
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .u-mbSmallest {
    margin-bottom: 16px;
  }
}

.u-nowrap {
  word-break: keep-all;
  overflow-wrap: break-word;
}

.u-mb4 {
  margin-bottom: 4px;
}

.u-mb6 {
  margin-bottom: 6px;
}

.u-mb8 {
  margin-bottom: 8px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb12 {
  margin-bottom: 12px;
}

.u-mb14 {
  margin-bottom: 14px;
}

.u-mb16 {
  margin-bottom: 16px;
}

.u-mb18 {
  margin-bottom: 18px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb24 {
  margin-bottom: 24px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mb36 {
  margin-bottom: 36px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mr10 {
  margin-right: 10px;
}

.u-mr14 {
  margin-right: 14px;
}

.u-mr16 {
  margin-right: 16px;
}

.u-mr20 {
  margin-right: 20px;
}
@media (max-width: 768px) {
  .u-mr20.-confirm {
    margin-right: 0;
  }
}

.u-ml10 {
  margin-left: 10px;
}

.u-mt72 {
  margin-top: 72px;
}

.u-mt16 {
  margin-top: 16px;
}

.u-pt20 {
  padding-top: 20px;
}

.u-fz16 {
  font-size: 16px;
}

.u-fz17 {
  font-size: 17px;
}

.u-fz18 {
  font-size: 18px;
}

.u-fz20 {
  font-size: 20px;
}

.u-fz24 {
  font-size: 24px;
}

.u-fz32 {
  font-size: 32px;
}

.u-fz40 {
  font-size: 40px;
}

.u-fz50 {
  font-size: 50px;
}

.u-tac {
  text-align: center;
}

@media (min-width: 769px) and (max-width: 1200px) {
  .u-onlyPc {
    display: none;
  }
}
@media (max-width: 768px) {
  .u-onlyPc {
    display: none;
  }
}

@media (max-width: 768px) {
  .u-onlyPcTab {
    display: none;
  }
}

@media (min-width: 1200px) {
  .u-onlySp {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-onlySp {
    display: none;
  }
}
@media (max-width: 768px) {
  .u-onlySp {
    display: block;
  }
}

@media (min-width: 1200px) {
  .u-onlyTabSp {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-onlyTabSp {
    display: block;
  }
}
@media (max-width: 768px) {
  .u-onlyTabSp {
    display: block;
  }
}

@media (min-width: 1200px) {
  .u-onlyPcSp {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .u-onlyPcSp {
    display: none;
  }
}
@media (max-width: 768px) {
  .u-onlyPcSp {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */