html {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  word-wrap: break-word;
}
@media print, screen and (min-width: 768px) and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.8rem;
  }
}

header,
main,
section,
aside,
footer {
  width: 100%;
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
a:hover {
  opacity: 0.7;
}

figure img {
  width: 100%;
  height: auto;
}
figure img[src$=".svg"] {
  max-width: 100%;
}

th {
  font-weight: normal;
}

#wrapper {
  overflow: hidden;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.noFind {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .noFind {
    margin-top: 2rem;
  }
}

.scrollbar {
  overflow: hidden scroll;
  padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
  width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #e6e6e6;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #b3b3b3;
}

.flowLink {
  position: relative;
  padding-bottom: 0.4rem;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #29abe2;
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease 0.3s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}

.marker {
  display: inline;
  background: linear-gradient(transparent 70%, #fdd8d8 0%);
  padding: 0 0.4rem;
}

.scrollAnim {
  position: absolute;
  text-align: center;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-weight: bold;
  font-size: 1.2rem;
}
.scrollAnim a {
  position: relative;
  display: inline-block;
  padding-bottom: 8rem;
}
.scrollAnim a::before, .scrollAnim a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.3rem;
}
.scrollAnim a::before {
  height: 8rem;
  background-color: #29abe2;
  bottom: 0;
}
.scrollAnim a::after {
  height: 0rem;
  background-color: #fff;
  bottom: 8rem;
  animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
.scrollItem,
.scrollListItem {
  opacity: 0;
  transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive,
.scrollListItem.scrollActive {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.fadein {
  opacity: 0;
}
.fadein.scrollActive {
  opacity: 1;
}

.fadeTop {
  transform: translateY(5rem);
}
.fadeTop.scrollActive {
  transform: translate(0);
}

.fadeRight {
  transform: translateX(5rem);
}
.fadeRight.scrollActive {
  transform: translate(0);
}

.fadeBottom {
  transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
  transform: translate(0);
}

.fadeLeft {
  transform: translateX(-5rem);
}
.fadeLeft.scrollActive {
  transform: translate(0);
}

.fadeInLeft,
.fadeInRight {
  position: relative;
}
.fadeInLeft::after,
.fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all ease-in-out 0.6s;
  transform-origin: center right;
}
.fadeInLeft.scrollActive::after,
.fadeInRight.scrollActive::after {
  transform: scaleX(0);
}

.fadeInRight::after {
  transform-origin: center left;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: gray;
  height: 8rem;
  width: 100%;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  .header {
    height: 10rem;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 96%;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    width: 92%;
  }
}
.header__logo {
  width: 24rem;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    position: relative;
    z-index: 2;
    width: 36rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    background-color: #29abe2;
    padding: 14rem 6rem 6rem;
    overflow: hidden scroll;
    transition: all ease-in-out 0.6s;
    transform: translateX(100%);
    z-index: -1;
  }
  .header .gnav.active {
    transform: translateX(0);
  }
}
.header .gnav__list {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .header .gnav__list {
    display: block;
  }
}
.header .gnav__item a {
  display: block;
  position: relative;
  font-weight: bold;
  text-align: center;
  padding: 0 3rem 0.4rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item a {
    display: flex;
    align-items: center;
    padding: 4rem 0;
  }
}
.header .gnav__item .en {
  display: block;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item .en {
    margin-right: 2.6rem;
    font-size: 4.4rem;
  }
}
.header .gnav__item .ja {
  display: block;
  font-size: 1.2rem;
  margin-top: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item .ja {
    font-size: 2.2rem;
    margin-top: 0;
  }
}
.header__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__btn.active .bar:first-of-type {
  transform: translateY(1.5rem) rotate(30deg);
}
.header__btn.active .bar:nth-child(2) {
  transform: translateY(-50%);
  opacity: 0;
}
.header__btn.active .bar:last-of-type {
  transform: translateY(-1.2rem) rotate(-30deg);
  width: 100%;
}
.header__btn.active .menu {
  display: none;
}
.header__btn.active .close {
  display: block;
}
.header__btn .mark {
  position: relative;
  cursor: pointer;
  height: 3rem;
  width: 7.5rem;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar {
  position: absolute;
  left: 0;
  background-color: #fff;
  height: 0.2rem;
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar:first-of-type {
  top: 0;
}
.header__btn .bar:nth-child(2) {
  top: 1.4rem;
}
.header__btn .bar:last-of-type {
  bottom: 0;
}
.header__btn .menu,
.header__btn .close {
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
}
.header__btn .menu {
  display: block;
}
.header__btn .close {
  display: none;
}

.main {
  line-height: 1.6;
}

.mw_wp_form .mwform-checkbox-field input[type=checkbox] {
  display: none;
}
.mw_wp_form .mwform-checkbox-field input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
}
.mw_wp_form .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding-left: 5rem;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .mw_wp_form .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text {
    padding-left: 8rem;
  }
}
.mw_wp_form .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
  border: 1px solid #cccccc;
  display: block;
  height: 3.5rem;
  width: 3.5rem;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .mw_wp_form .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::before {
    height: 6rem;
    width: 6rem;
  }
}
.mw_wp_form .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 1rem;
  transform: translateY(-50%) rotate(45deg);
  border-right: 0.4rem solid #29abe2;
  border-bottom: 0.4rem solid #29abe2;
  height: 2.3rem;
  width: 1.3rem;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  z-index: 4;
}
@media only screen and (max-width: 767px) {
  .mw_wp_form .mwform-checkbox-field input[type=checkbox] + .mwform-checkbox-field-text::after {
    left: 2rem;
    border-right: 0.6rem solid #29abe2;
    border-bottom: 0.6rem solid #29abe2;
    height: 4.2rem;
    width: 2.2rem;
  }
}
.mw_wp_form .mwform-radio-field input[type=radio] {
  display: none;
}
.mw_wp_form .mwform-radio-field input[type=radio]:checked + .mwform-radio-field-text::after {
  opacity: 1;
}
.mw_wp_form .mwform-radio-field input[type=radio] + .mwform-radio-field-text {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0.6rem 0 0.6rem 5rem;
}
@media only screen and (max-width: 767px) {
  .mw_wp_form .mwform-radio-field input[type=radio] + .mwform-radio-field-text {
    padding: 0.9rem 0 0.9rem 8rem;
  }
}
.mw_wp_form .mwform-radio-field input[type=radio] + .mwform-radio-field-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  border-radius: 50%;
  background: #fff;
  height: 3.5rem;
  width: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .mw_wp_form .mwform-radio-field input[type=radio] + .mwform-radio-field-text::before {
    height: 6rem;
    width: 6rem;
  }
}
.mw_wp_form .mwform-radio-field input[type=radio] + .mwform-radio-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.7rem;
  left: 0.6rem;
  border-radius: 50%;
  background: #29abe2;
  height: 2.4rem;
  width: 2.4rem;
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .mw_wp_form .mwform-radio-field input[type=radio] + .mwform-radio-field-text::after {
    top: 1.2rem;
    left: 1.1rem;
    height: 4rem;
    width: 4rem;
  }
}

.contact__process {
  margin: 5rem 0 7rem;
}
@media only screen and (max-width: 767px) {
  .contact__process {
    margin: 8rem 0 10rem;
  }
}
.contact__process figure {
  display: none;
}
.contact__privacy .text {
  border: 1px solid #b5b5b5;
  line-height: 1.6;
  padding: 3rem;
  height: 16rem;
  overflow: hidden scroll;
  margin-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .contact__privacy .text {
    height: 30rem;
  }
}
.contact__privacy .text::-webkit-scrollbar {
  width: 1rem;
}
.contact__privacy .text::-webkit-scrollbar-trac {
  background-color: #e6e6e6;
}
.contact__privacy .text::-webkit-scrollbar-thumb {
  background-color: #b3b3b3;
}
.contact__privacy .text h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  .contact__privacy .text h2 {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
}
.contact__privacy .text p {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact__privacy .text p {
    margin-bottom: 3rem;
  }
}
.contact__privacy .checkbox {
  text-align: center;
  margin-top: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact__privacy .checkbox {
    margin-top: 4rem;
  }
}
.contact__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4rem;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .contact__btn {
    margin-top: 6rem;
    gap: 4rem;
  }
}
.contact__btn .btnType01 {
  display: none;
  transition: all ease-in-out 0.3s;
}
@media only screen and (max-width: 767px) {
  .contact__btn .btnType01 {
    padding: 3rem 0;
    width: 40rem;
  }
}
.contact__btn .btnType01.gray {
  background: #6b6b6b;
}
.contact__btn .btnType01.gray:hover {
  color: #6b6b6b;
  background: #fff;
}
.contact__btn .btnType01.gray:hover span::before {
  color: #6b6b6b;
}
.contact__btn .btnType01.gray span::after {
  display: none;
}
.contact__btn input {
  position: absolute;
  inset: 0 0 0 0;
  margin: 0;
  padding-left: 4rem;
}
@media only screen and (max-width: 767px) {
  .contact__btn input {
    padding-left: 6rem;
  }
}
.contact .mw_wp_form_input .contact__process figure:first-child {
  display: block;
}
.contact .mw_wp_form_input .contact__btn .btnType01.confirm {
  display: block;
}
.contact .mw_wp_form_confirm .contact__process figure:nth-child(2) {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .contact .mw_wp_form_confirm .contact__content .answer {
    padding-top: 1.2rem;
  }
}
.contact .mw_wp_form_confirm .contact__wrapper .attention {
  display: none;
}
.contact .mw_wp_form_confirm .contact__btn .btnType01.back,
.contact .mw_wp_form_confirm .contact__btn .btnType01.submit {
  display: block;
}
.contact .mw_wp_form_complete .contact__process figure {
  display: block;
}
.contact .mw_wp_form_complete .thanks {
  margin-top: 5rem;
  text-align: center;
  line-height: 1.6;
}
.contact .mw_wp_form_complete .thanks h2 {
  color: #29abe2;
  font-weight: bold;
  font-size: 1.4em;
  margin-bottom: 1rem;
}
.contact .mw_wp_form_complete .thanks .btnType01 {
  margin: 3rem auto 0;
}
@media only screen and (max-width: 767px) {
  .contact .mw_wp_form_complete .thanks .btnType01 {
    margin-top: 5rem;
  }
}