@charset "UTF-8";
/*====================================================================================
1. START COMMON BASE.
====================================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");
* {
  box-sizing: border-box;
}

:root {
  --blue: #00a0e9;
  --blue-royal: #386dd0;
  --yellow: #fff100;
  --light_yellow: #fffbee;
  --pink: #e4007f;
  --purple: #a04674;
  --dark_purple: #755ba7;
  --black: #000;
  --gray: #f2f2f2;
  --dark_gray: #666;
  --bg-linear-gradient: linear-gradient( to right, rgba(56,109,208,0.99608) 0%, rgb(117,91,167) 50%, rgb(179,74,128) 100%);
  --font-Gothic-en: "Poppins", sans-serif;
  --font-Noto-jp: "Noto Sans JP", sans-serif;
}

html {
  font-size: 62.5%;
  overflow-y: auto;
  line-height: 1.6;
}

:where(html:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

:where(figure:not(.sg-cms *)) {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "Noto Sans JP", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #222;
  font-weight: 500;
}
body.lb-disable-scrolling {
  position: fixed;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body img {
    width: auto;
    height: auto;
    max-width: 100%;
  }
}
@media only screen and (max-width: 47.9375em) {
  body {
    line-height: 1.4;
  }
}

.l-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 32rem;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  body {
    min-width: 120rem;
  }
  body .l-header {
    width: 120rem;
  }
  body .l-wrapper {
    max-width: 120rem;
  }
}
.w-brall {
  word-break: break-all;
}

/* ---------- START ANCHORLINK ---------- */
a {
  color: #000;
  text-decoration: underline;
  background-color: transparent;
}
a:hover, a:active, a:focus {
  outline: none;
}
@media only screen and (min-width: 768px) {
  a {
    transition: all 0.3s ease;
  }
  a:hover {
    text-decoration: none;
    transition: all 0.3s ease;
  }
  a:hover img {
    opacity: 0.8;
  }
}

a[href*="tel:"] {
  cursor: default;
  text-decoration: none;
  color: #222;
}
@media only screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}
@media only screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

/*---------- START HOVER IMG  ----------*/
.ov-hover:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70)";
}

/* ----------  START code set ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  color: #000;
}

pre,
code,
kbd,
samp,
var,
.font_mono {
  font-size: 1.3rem;
  line-height: 1.6;
}

pre {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f4f4f4;
  overflow-x: auto;
}

img {
  vertical-align: top;
  margin: 0px;
  padding: 0px;
  border: 0px;
  transition: All 0.3s ease;
}

button,
input[type=submit],
input[type=button] {
  transition: all 0.3s ease;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "Noto Sans JP", "ヒラギノ角ゴシック ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

picture {
  display: block;
  line-height: 1.6;
}

figure {
  margin: 0;
  padding: 0;
}

.white-space_pre-wrap {
  display: grid;
  width: 100%;
  white-space: pre-line;
}

/*====================================================================================
2. START COMMON CONTAINER.
====================================================================================*/
.l-container {
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-container {
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 768px) {
  .l-container {
    max-width: 115.2rem;
    padding: 0 2.4rem;
  }
}

/*====================================================================================
3. START COMMON HEADER
====================================================================================*/
.lock-scroll {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.l-header {
  position: fixed;
  width: 100%;
  background: #fff;
  top: 0;
  left: 0;
  transition: all 0.5s;
  z-index: 99;
}
.l-header.fixed {
  -webkit-transition: all linear 0.3s;
  transition: all linear 0.3s;
}
.l-header:after {
  position: absolute;
  content: "";
  width: 10rem;
  height: 2px;
  background: linear-gradient(to right, #00AEEF 0% 25%, #EC008C 25% 50%, #FFF200 50% 75%, #000000 75% 100%);
  top: 0;
  left: 0;
}
.l-header a {
  text-decoration: none !important;
}
.l-header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo {
  width: calc(100% - 6rem) !important;
}
.l-header__logo a {
  padding: 0 1rem;
}
.l-header__right {
  width: 5rem;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (min-width: 768px) {
  .l-header:after {
    width: 18rem;
    height: 3px;
  }
  .l-header__logo a {
    padding: 0 1.5rem;
  }
  .l-header__right {
    width: 30%;
  }
}

.logo {
  width: 70%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo .logo-txt {
  font-weight: bold;
  font-size: 0.9rem;
}
@media only screen and (max-width: 767px) {
  .logo img {
    width: 8rem;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .logo {
    gap: 2rem;
  }
  .logo .logo-txt {
    font-size: 1.6rem;
  }
}

/*---------- START HAMBURGER ----------*/
.trigger-menu {
  background: var(--gray);
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-flow: column;
  width: 5rem;
  height: 5rem;
  gap: 0.5rem;
  border: none;
  z-index: 9999;
}
.trigger-menu .icon {
  position: relative;
  display: block;
  width: 3rem;
  height: 2.2rem;
}
.trigger-menu .icon span {
  display: block;
  position: absolute;
  width: 3rem;
  height: 0.2rem;
  background: #000;
  opacity: 1;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  font-weight: 500;
}
.trigger-menu .icon span:nth-child(1) {
  top: 0;
}
.trigger-menu .icon span:nth-child(2) {
  top: 0;
  bottom: 0;
}
.trigger-menu .icon span:nth-child(3) {
  bottom: 0;
}
.trigger-menu .txt {
  font-weight: bold;
  font-size: 1rem;
}
.trigger-menu.active .icon span:nth-child(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  left: 0rem;
  top: 1rem;
}
.trigger-menu.active .icon span:nth-child(2) {
  opacity: 0;
}
.trigger-menu.active .icon span:nth-child(3) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  left: -0.3rem;
  top: 0.1rem;
}
@media only screen and (min-width: 768px) {
  .trigger-menu {
    width: 7.2rem;
    height: 7.2rem;
  }
  .trigger-menu .icon {
    width: 3rem;
    height: 2.2rem;
  }
}

/*---------- START GNAV ----------*/
.l-menu_contents {
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  max-width: 40rem;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  border: none;
  padding: 3rem 3rem 10rem;
  overflow: auto;
  z-index: 9999;
}
.l-menu_contents.is-visible {
  opacity: 1;
  visibility: visible;
  height: 100vh;
  right: 0;
}
.l-menu_contents .c-btn {
  text-align: center;
  margin: 2rem auto 0;
}
.l-menu_contents .c-btn__link .icon.icon-mail {
  background-size: 2rem !important;
  background-position: top 0.2rem left;
  padding-left: 3.5rem;
}
@media only screen and (max-width: 767px) {
  .l-menu_contents .c-btn_contact {
    max-width: 22rem;
    margin: 2rem auto 0;
  }
  .l-menu_contents .c-btn_contact__link {
    padding: 1.5rem;
  }
}

.gnav__link {
  position: relative;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  font-size: 1.6rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray);
}
.gnav__link:before {
  position: absolute;
  content: "";
  background: url("../images/common_img/gnav-arr.webp") no-repeat;
  width: 3rem;
  height: 1.1rem;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
}
@media only screen and (min-width: 768px) {
  .gnav__link:hover:before {
    background: url("../images/common_img/gnav-arr_purple.webp") no-repeat;
  }
}

/*---------- START c-btn_contact ----------*/
.c-btn_contact__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--purple);
  z-index: 3;
}
.c-btn_contact__link:after {
  position: absolute;
  content: "";
  background-image: var(--bg-linear-gradient);
  width: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s;
}
.c-btn_contact__link span {
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .c-btn_contact__link {
    width: 17.5rem;
    height: 7.2rem;
  }
  .c-btn_contact__link:hover:after {
    width: 100%;
  }
}

/*---------- START infor-contact ----------*/
.nav-link {
  position: relative;
  text-decoration: none !important;
  z-index: 3;
}
.nav-link:after {
  position: absolute;
  content: "";
  background-image: var(--bg-linear-gradient);
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all 0.5s;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .nav-link:hover {
    color: transparent;
    background-image: var(--bg-linear-gradient);
    background-size: 200% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: slide-gradient 1s forwards;
  }
  .nav-link:hover:after {
    width: 100%;
  }
}

/*====================================================================================
4. START COMMON FOOTER
====================================================================================*/
.l-footer {
  position: relative;
  background: var(--gray);
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}
.l-footer__copyright {
  background: var(--bg-linear-gradient);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  padding: 1.3rem;
}
@media only screen and (max-width: 767px) {
  .l-footer__inner {
    gap: 1rem;
  }
  .l-footer__logo {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .l-footer .c-link {
    margin-left: auto;
  }
}
@media only screen and (min-width: 768px) {
  .l-footer__inner {
    padding: 3rem 0;
  }
}

.page-up {
  display: none;
  position: fixed;
  right: 2%;
  bottom: 1rem;
  z-index: 9;
}
.page-up a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background: var(--gray);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s;
  z-index: 2;
}
.page-up a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: var(--purple);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s;
  z-index: -1;
}
.page-up a:after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform: rotate(45deg);
  top: 1.2rem;
}
@media only screen and (min-width: 768px) {
  .page-up {
    bottom: 5rem;
  }
  .page-up a {
    width: 4rem;
    height: 4rem;
  }
  .page-up a:after {
    top: 1.7rem;
  }
  .page-up a:hover:before {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
  }
  .page-up a:hover:after {
    border-color: #fff;
  }
}

/*====================================================================================
5. START COMMON CSS
====================================================================================*/
.l-wrapper {
  position: relative;
}

.l-main {
  margin-top: var(--headerH);
}

.a-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
}

.l-inner-txt p + p {
  margin-top: 2rem;
}
.l-inner-txt--m p + p {
  margin-top: 1.5rem;
}
.l-inner-txt--s p + p {
  margin-top: 1rem;
}
@media only screen and (min-width: 768px) {
  .l-inner-txt p + p {
    margin-top: 4rem;
  }
  .l-inner-txt--m p + p {
    margin-top: 3rem;
  }
  .l-inner-txt--s p + p {
    margin-top: 2rem;
  }
}

/*---------- START ICON ZOOM  ----------*/
.icon-zoom {
  position: relative;
  display: block;
  overflow: hidden;
}
.icon-zoom:before {
  position: absolute;
  display: inline-block;
  content: "";
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  width: 4rem;
  height: 4rem;
  background-image: url("../common_img/lightbox/icon-zoom.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.6rem 1.6rem;
  background-color: var(--bg-yellow);
}
@media only screen and (min-width: 768px) {
  .icon-zoom img {
    transition: transform 0.5s ease;
  }
  .icon-zoom:hover img {
    transform: scale(1.06);
  }
}

/*---------- START PADDING SECTION ----------*/
.u-padding_top {
  padding-top: 6rem;
}
@media only screen and (min-width: 768px) {
  .u-padding_top {
    padding-top: 12rem;
  }
}

/*---------- START list-indent01 ----------*/
.list-indent01 li {
  text-indent: -1.7rem;
  padding-left: 1.7rem;
}

/*---------- START list-indent02 ----------*/
.list-indent02 li {
  text-indent: -2.2rem;
  padding-left: 2.2rem;
}
@media only screen and (min-width: 768px) {
  .list-indent02 li {
    text-indent: -2.6rem;
    padding-left: 2.6rem;
  }
}

/*---------- START ARROW   ----------*/
.c-arr {
  position: relative;
  background: var(--dark_gray) url("../images/common_img/arr-white.webp") no-repeat center bottom 60%;
  background-size: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
}
@media only screen and (min-width: 768px) {
  .c-arr {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 1.9rem;
  }
}

/*---------- START BUTTON  ----------*/
.c-btn__link {
  position: relative;
  display: inline-block;
  background: var(--purple);
  border: 1px solid transparent;
  border-radius: 4rem;
  text-decoration: none;
  font-weight: 500;
  padding: 1rem 3.5rem;
  min-width: 20rem;
  margin-top: 2rem;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  z-index: 9;
}
.c-btn__link:before {
  position: absolute;
  content: "";
  background: url("../images/common_img/btn-arr.webp") no-repeat;
  background-size: 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  top: 0;
  bottom: 0;
  left: 1rem;
  margin: auto;
}
.c-btn__link:after {
  position: absolute;
  content: "";
  background-image: var(--bg-linear-gradient);
  border-radius: 4rem;
  width: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  margin: auto;
  transition: all 0.5s;
  z-index: -1;
}
.c-btn__link--larger {
  min-width: 25rem;
  font-size: 1.8rem;
}
.c-btn__link.btn-white {
  background: #fff;
  color: var(--dark_purple);
}
.c-btn__link.btn-white:before {
  background: url(../images/common_img/btn-arr-purple.webp) no-repeat;
  background-size: 100%;
  width: 3.2rem;
  height: 3.2rem;
}
.c-btn__link.btn-blue {
  background: var(--blue-royal);
}
.c-btn__link.btn-back:before {
  transform: scale(-1, 1);
}
@media only screen and (min-width: 768px) {
  .c-btn__link {
    min-width: 32rem;
    margin-top: 4rem;
    font-size: 1.8rem;
  }
  .c-btn__link--larger {
    min-width: 48rem;
    font-size: 2.4rem;
  }
  .c-btn__link:before {
    background-size: 2.4rem;
    width: 2.4rem;
    height: 2.4rem;
    left: 1.5rem;
  }
  .c-btn__link:hover:after {
    width: 100%;
  }
  .c-btn__link:hover.btn-white:before {
    background: url(../images/common_img/btn-arr-white.webp) no-repeat;
  }
}

/*---------- START LINK  ----------*/
.c-link a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.7rem;
  font-weight: bold;
  font-size: 1.4rem;
}
@media only screen and (min-width: 768px) {
  .c-link a {
    font-size: 1.6rem;
  }
  .c-link a:hover {
    color: transparent;
    background-image: var(--bg-linear-gradient);
    background-size: 200% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: slide-gradient 1s forwards;
  }
  .c-link a:hover .c-arr {
    background: var(--purple) url("../images/common_img/arr-white.webp") no-repeat center bottom 60%;
  }
}

@keyframes slide-gradient {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}
/*---------- START TITLE  ----------*/
.c-title01 {
  margin-bottom: 2.5rem;
}
.c-title01 span {
  display: block;
  width: 100%;
  text-align: center;
}
.c-title01 .txt-en {
  font-size: 4rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}
.c-title01 .txt-jp {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--blue-royal);
}
@media only screen and (min-width: 768px) {
  .c-title01 {
    margin-bottom: 5rem;
  }
  .c-title01 .txt-en {
    font-size: 6rem;
    letter-spacing: 0.6rem;
  }
  .c-title01 .txt-jp {
    font-size: 1.8rem;
  }
}

.c-title_line {
  background: url("../images/top/line-title.webp") no-repeat bottom center;
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  padding-bottom: 2rem;
  margin-bottom: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .c-title_line {
    font-size: 3.2rem;
    padding-bottom: 4rem;
    margin-bottom: 3rem;
  }
}

/*---------- START TEXT  ----------*/
.u-txt--gradient {
  display: inline-block;
  width: 100%;
  color: transparent;
  background-image: var(--bg-linear-gradient);
  background-clip: text;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
.u-txt--m {
  font-size: 1.5rem;
}
.u-txt--en {
  font-family: var(--font-Gothic-en);
}
@media only screen and (min-width: 768px) {
  .u-txt--gradient {
    font-size: 3.6rem;
    margin-bottom: 3rem;
  }
  .u-txt--m {
    font-size: 1.6rem;
  }
}

/*---------- START list-dot ----------*/
.list-dot {
  width: 100%;
  border: 1px solid #ccc;
  padding: 1rem;
  margin: 2rem 0;
}
.list-dot li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.list-dot li:after {
  position: absolute;
  content: "";
  background: #000;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  top: 0.7rem;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .list-dot {
    padding: 2rem;
  }
}

/*---------- START form ----------*/
.c-form {
  display: block;
  width: 100%;
  max-width: 97rem;
}
.c-form__content-dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
}
.c-form__content-dt {
  position: relative;
  background: var(--gray);
  display: flex;
  align-items: flex-start;
  font-weight: bold;
}
.c-form__content-dd {
  position: relative;
  background: #fff;
  box-sizing: border-box;
  font-size: 1.4rem;
}
.c-form__content-title {
  position: relative;
  width: 100%;
  font-weight: bold;
  color: #000;
  padding-right: 5rem;
}
.c-form__content-title:after {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  text-align: center;
  width: 4.4rem;
  height: 2.4rem;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  padding-top: 0.2rem;
}
.c-form__content-title.hissu:after {
  background: var(--blue-royal);
  content: "必須";
}
.c-form__content .error {
  color: #ff0000;
  font-size: 1.2rem;
  font-weight: normal;
}
.c-form .selectable {
  width: 50%;
  appearance: auto;
}
.c-form__format {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}
.c-form__format-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.c-form__format-item {
  width: 12rem;
  display: flex;
  flex-flow: column;
  background: var(--gray);
  text-align: center;
  color: var(--purple);
  font-weight: bold;
  font-size: 1.2rem;
  padding: 0.7rem;
  gap: 0.4rem;
}
.c-form__format-item span {
  display: block;
  width: 100%;
}
.c-form__group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem auto 0;
  gap: 2rem;
}
.c-form__group-btn .contact-btn {
  position: relative;
  display: inline-block;
  width: auto;
  max-width: 100%;
  text-align: center;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  padding: 0;
  border-radius: 4rem;
  margin-top: 0;
  z-index: 3;
}
.c-form__group-btn .contact-btn input {
  outline: none;
  border: none;
  display: inline-block;
  width: 100%;
  background: none !important;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  padding: 1rem 3.5rem;
}
.c-form__group-btn .contact-btn .c-btn__link {
  width: 100%;
  padding: 0;
}
.c-form__group-btn .contact-btn .c-btn__link.btn-white input {
  color: var(--dark_purple);
}
.c-form__group-btn .c-btn__link {
  margin-top: 0;
}
.c-form__group-btn .disabled#submitButton {
  pointer-events: none;
  overflow: hidden;
}
.c-form__group-btn .disabled#submitButton .c-btn__link {
  background: #ccc !important;
}
@media only screen and (max-width: 767px) {
  .c-form {
    margin: 2rem auto 0;
  }
  .c-form__content-dl {
    position: relative;
  }
  .c-form__content-dt, .c-form__content-dd {
    display: block;
    width: 100% !important;
    padding: 1rem;
  }
  .c-form__content-dd {
    font-size: 1.6rem;
  }
  .c-form__content-title {
    display: block;
    width: 100%;
    font-size: 1.4rem;
  }
  .c-form__end {
    margin-top: 3rem;
  }
  .c-form__format-list {
    width: 100%;
    gap: 0.2rem;
  }
  .c-form__format-item {
    width: calc((100% - 0.6rem) / 4);
    font-size: 1rem;
  }
  .c-form__format-item img {
    width: auto;
    height: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-form {
    margin: 5rem auto 0;
  }
  .c-form__content-dt, .c-form__content-dd {
    padding: 2rem;
  }
  .c-form__content-dt {
    width: 32%;
  }
  .c-form__content-dd {
    width: 68%;
  }
  .c-form__content-title {
    font-size: 1.6rem;
  }
  .c-form__end {
    margin-top: 5rem;
  }
  .c-form__group-btn {
    margin: 4rem auto 0;
  }
  .c-form .contact-btn .c-btn__link.btn-white:hover input {
    color: #fff;
  }
  .c-form__format {
    gap: 2rem;
  }
}