@charset "UTF-8";
/*
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input, button, textarea, select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../img/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

@keyframes bg_01 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -99px -99px;
  }
}
@keyframes points_slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2027px 0;
  }
}
@keyframes points_slide_ms {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1013.5px 0;
  }
}
:root {
  --color-primary: #eb5f1b;
  --color-primary-hover: #ee7818;
}

html {
  min-height: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", Helvetica, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "游ゴシック体", 'Yu Gothic", YuGothic', "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.04em;
  max-width: 100%;
  font-weight: 400;
}

#container {
  max-width: 100%;
  overflow: hidden;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8122065728rem + 0.234741784vw, 1rem);
}

a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 0.2s;
}
a img {
  transition: opacity 0.2s;
}
a:hover {
  color: var(--color-primary-hover);
}
a:hover img {
  opacity: 0.9;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

sup {
  font-size: 60%;
  vertical-align: top;
}

input,
textarea {
  padding: 0.1em 0.8em;
  background-color: #fff;
  border: 1px solid #e3e3e0;
  font-weight: 500;
  border-radius: 5px;
  outline: none;
}
input.form-error,
textarea.form-error {
  background-color: #fce5e5;
  transition: background-color 0.2s;
}

input {
  height: 50px;
}

input[type=checkbox] {
  appearance: none;
  position: relative;
  padding: 0;
  width: 16px;
  height: 16px;
  border-color: #b0aeae;
  border-radius: 3px;
}
input[type=checkbox]:checked {
  background-color: #eb5f1b;
  border-color: #eb5f1b;
}
input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 6px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
input[type=checkbox]:hover {
  cursor: pointer;
}

textarea {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

::placeholder {
  color: #aaa;
}

br.sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  br.sp-only {
    display: inline;
  }
}

.inwrap {
  max-width: 100%;
  max-width: min(1280px, 100%);
  padding-left: 3.3333333333%;
  padding-left: min(3.125%, 40px);
  padding-right: 3.125%;
  padding-right: min(3.125%, 40px);
  margin-left: auto;
  margin-right: auto;
}

.button-area button:disabled
{
  background-color: grey;
  pointer-events: none;
}
.c-btn a,
.button-area button
{
  position: relative;
  display: block;
  width: 100%;
//  padding-bottom: 19.0909090909%;
  padding:40px 0;
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem;
  font-size: clamp(0.9375rem, 0.6549295775rem + 1.0563380282vw, 1.5rem);
  font-weight: 900;
  text-align: center;
  border-radius: 9999px;
  transition: background-color 0.2s;
  border: none;
}
.button-area button {
  padding:20px 0;
}
.c-btn a:hover, .c-btn a:active {
  background-color: var(--color-primary-hover);
}
.c-btn a span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.c-btn .fa-envelope,
.c-btn .fa-paper-plane {
  margin-left: -0.4em;
  margin-right: 0.5em;
}
.c-btn .fa-angle-right {
  position: absolute;
  top: 50%;
  left: auto;
  right: 1.5em;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.4991197183rem + 0.7042253521vw, 1.0625rem);
  transform: translateY(-50%);
}

.c-balloon {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 11.953125%;
  width: clamp(100px, 11.953125%, 153px);
  transform: translateX(-50%);
}
.c-balloon svg {
  width: 100%;
  height: 100%;
}

.c-subheading {
  font-feature-settings: "palt";
  padding: 0 0.2em 0.1em;
  display: inline-block;
  font-size: 1rem;
  font-size: clamp(1rem, 0.183685446rem + 3.0516431925vw, 2.625rem);
  font-weight: 900;
  line-height: 1.2em;
  letter-spacing: 0.07em;
  background-color: #072163;
  color: #fff;
}

.c-heading {
  position: relative;
  margin-top: 0.78125%;
  margin-bottom: 1.2em;
  font-feature-settings: "palt";
  font-size: 1.875rem;
  font-size: clamp(1.875rem, 0.8075117371rem + 3.9906103286vw, 4rem);
  font-weight: 900;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  color: #072163;
}
.c-heading::before, .c-heading::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -0.7em;
  left: 0;
  display: block;
  width: 44px;
  aspect-ratio: 44/5;
  background-color: #56d1dc;
  border-radius: 9999px;
}
.c-heading::after {
  width: 22px;
  aspect-ratio: 22/5;
  background-color: #072163;
}
.c-heading strong {
  color: #36bcc8;
}

.c-about {
  font-size: 1.0625rem;
  font-size: clamp(1.0625rem, 0.8427230047rem + 0.8215962441vw, 1.5rem);
  letter-spacing: 0.04em;
}

.c-cv {
  background-color: #4b495a;
  color: #fff;
}
.c-cv .inwrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10%;
  padding-top: min(10%, 62px);
  padding-bottom: 10%;
  padding-bottom: min(10%, 62px);
}
@media screen and (max-width: 960px) {
  .c-cv .inwrap {
    display: block;
    text-align: center;
  }
}
.c-cv__text-area {
  margin-left: 3.3333333333%;
}
@media screen and (max-width: 1280px) {
  .c-cv__text-area {
    margin-left: 0;
  }
}
.c-cv__title {
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 0.9354460094rem + 1.6431924883vw, 2.25rem);
  font-weight: 500;
}
.c-cv__text {
  margin-top: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6555164319rem + 0.5868544601vw, 1.125rem);
}
.c-cv .c-btn {
  margin-right: 3.3333333333%;
  width: 440px;
  max-width: 100%;
}
@media screen and (max-width: 1280px) {
  .c-cv .c-btn {
    margin-right: 0;
  }
}
@media screen and (max-width: 960px) {
  .c-cv .c-btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.c-cv .c-btn a {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .c-cv .c-btn a {
    margin-top: 2rem;
  }
}

.c-point {
  position: absolute;
  text-align: center;
  width: 90px;
  height: 90px;
  font-size: 0.8125rem;
  font-weight: 700;
}
.c-point::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../img/points_icon_01.svg") center center no-repeat transparent;
  background-size: 100% auto;
}
.c-point > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  margin-top: 4%;
  white-space: nowrap;
  line-height: 1.1;
}
.c-point > span span {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
}

.logo {
  position: absolute;
  z-index: 100;
  margin-top: 2.0833333333%;
  margin-top: min(2.0833333333%, 20px);
  left: 33px;
  width: 21%;
  max-width: 179px;
  min-width: 120px;
}
@media screen and (max-width: 1280px) {
  .logo {
    left: 2.0833333333%;
    left: min(2.0833333333%, 20px);
  }
}

.menu {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
}
.menu__btn {
  position: fixed;
  z-index: 110;
  margin-top: 2.0833333333%;
  margin-top: min(2.0833333333%, 20px);
  right: 2.0833333333%;
  right: min(2.0833333333%, 20px);
  display: block;
  background-color: #000;
  padding: 0 17px 0 55px;
  width: 12.5%;
  width: min(12.5%, 120px);
  aspect-ratio: 120/60;
  padding-bottom: 6.25%;
  padding-bottom: min(6.25%, 60px);
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
  font-size: 0.5625rem;
  font-size: clamp(0.5625rem, 0.4055164319rem + 0.5868544601vw, 0.875rem);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-radius: 9999px;
  transition-property: background-color;
}
.menu__btn::before, .menu__btn::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 20%;
  display: block;
  width: 16.6666666667%;
  height: 1px;
  height: max(1px, 3.3333333333%);
  background-color: #fff;
  transition: all 0.5s;
}
.menu__btn::after {
  top: 56.6666666667%;
  width: 10.8333333333%;
}
.menu__btn:hover {
  color: #fff;
  background-color: #36bcc8;
}
.menu__btn span {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30.8333333333%;
  right: 0;
  text-align: center;
  white-space: nowrap;
}
.menu__contents {
  position: fixed;
  z-index: 105;
  top: 0;
  left: calc(100% + 40px);
  bottom: 0;
  background-color: #efefef;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  transition: left 0.5s;
  padding: 130px 8% 0;
  padding: 130px min(8%, 50px) 0 min(8%, 60px);
}
.menu__contents ul {
  max-height: 100%;
  overflow-y: auto;
  list-style-type: none;
  padding-left: 0;
}
.menu__contents li {
  margin-bottom: 25px;
  margin-bottom: max(25px, 0.95em);
  font-size: 1.0625rem;
  font-size: clamp(1.0625rem, 0.2775821596rem + 2.9342723005vw, 2.625rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
}
.menu__contents li.on-scroll a {
  color: #fddd00;
}
.menu__contents a {
  display: inline-block;
  padding: 0.1em 0.2em 0.2em;
  color: #fff;
  text-decoration: none;
  background-color: #072163;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  white-space: nowrap;
}
.menu__contents a:hover, .menu__contents a:active {
  background-color: #36bcc8;
}
.menu.active .menu__btn::before, .menu.active .menu__btn::after {
  top: 48.3333333333%;
}
.menu.active .menu__btn::before {
  transform: rotate(45deg);
}
.menu.active .menu__btn::after {
  width: 16.6666666667%;
  transform: rotate(-45deg);
}

.stick-btn {
  display: flex;
  position: fixed;
  top: 0;
  margin-top: 18%;
  margin-top: min(18%, 120px);
  right: 0;
  z-index: 50;
}
.stick-btn a {
  display: inline-block;
  padding: 1.3em 0 1.1em;
  width: 3.6em;
  line-height: 3.6em;
  background-color: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.625rem;
  font-size: clamp(0.625rem, 0.3738262911rem + 0.9389671362vw, 2.125rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  border-radius: 20px 0 0 20px;
  writing-mode: vertical-rl;
  transition: background-color 0.2s;
}
.stick-btn a:hover {
  background-color: var(--color-primary-hover);
}
.stick-btn a .fa-paper-plane {
  margin-top: 0.3em;
}

.mv {
  position: relative;
  padding-top: 60px;
  background: rgb(1, 37, 130);
  background: linear-gradient(180deg, #012582 0%, #072163 23%);
}
.mv__top-wrap {
  position: relative;
  overflow: hidden;
}
.mv__lead {
  position: absolute;
  top: 2.5%;
  width: 64.1666666667%;
  max-width: 770px;
}
@media screen and (max-width: 600px) {
  .mv__lead {
    position: relative;
//    width: calc(100% - 45px);
    top: 10px;
		}
}
.mv__laurel {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 9.2%;
  right: 0;
  width: 58.25%;
  max-width: 699px;
}
@media screen and (max-width: 600px) {
  .mv__laurel {
    position: relative;
    width: 100%;
	margin: 20px 0 0 0;
	z-index: 1;
		}
}
.mv__photo {
  float: right;
  width: 38.0833333333%;
  max-width: 457px;
}
@media screen and (max-width: 600px) {
  .mv__photo {
//    float: none;
//    margin: 0 auto;
	position: absolute;
	top: 0;
	right: 20px;
		}
}
.mv__cv {
  position: absolute;
  top: auto;
  left: 1.3%;
  bottom: 11%;
  width: 36.6666666667%;
  width: min(36.6666666667%, 440px);
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .mv__cv {
    position: relative;
    margin: 0 auto;
    left: auto;
    bottom: auto;
    width: 440px;
  }
}
.mv__cv .c-btn a {
  font-size: 1.875vw;
  font-size: min(1.875vw, 1.5rem);
}
@media screen and (max-width: 600px) {
  .mv__cv .c-btn a {
    font-size: 0.9375rem;
    font-size: 1.3375rem;
    font-size: clamp(1.3375rem, 0.6549295775rem + 1.0563380282vw, 1.5rem);
  }
}
.mv__cv .c-btn a .fa-angle-right {
  font-size: 1.328125vw;
  font-size: min(1.328125vw, 1.0625rem);
}
@media screen and (max-width: 600px) {
  .mv__cv .c-btn a .fa-angle-right {
    font-size: 0.6875rem;
    font-size: clamp(0.6875rem, 0.4991197183rem + 0.7042253521vw, 1.0625rem);
  }
}
.mv__copy {
  position: relative;
  margin-bottom: 4.3%;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .mv__copy {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 600px) {
  .mv__copy {
    font-size: 0.625rem;
    font-size: 0.825rem;
    font-size: clamp(0.825rem, 0.4366197183rem + 0.7042253521vw, 1rem);
  margin-top: 4.3%;
  }
}
.mv__copy::before, .mv__copy::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.8em;
  left: 50%;
  margin-left: calc(-12.3em - 14px);
  width: 1em;
  height: 0.1em;
  height: max(0.1em, 1px);
  background: #fff;
  transform: rotate(52deg);
}
.mv__copy::after {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: calc(-12.1em - 14px);
  transform: rotate(-52deg);
}
.mv__slider {
  overflow: hidden;
  position: relative;
  margin: -20px auto 0;
  padding-bottom: 8px; 
  width: 1700px;
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .mv__slider {
    margin-top: 12px;
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 1701px) {
  .mv__slider::before, .mv__slider::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, rgb(7, 33, 99) 0%, rgba(7, 33, 99, 0) 100%);
    z-index: 1;
  }
}
@media screen and (min-width: 1701px) {
  .mv__slider::after {
    left: auto;
    right: 0;
    transform: scale(-1, 1);
  }
}
.mv__slide {
  width: 25.9375vw;
  width: min(25.9375vw, 332px);
  margin-right: 1.484375vw;
  margin-right: min(1.484375vw, 19px);
  float: left;
}
@media screen and (max-width: 767px) {
  .mv__slide {
    width: 200px;
    margin-right: 12px;
  }
}
.mv__notice { 	
width: 1700px; 	
max-width: 100%; 	
margin-left: auto; 	
margin-right: auto; 	
padding-right: 1em; 	
padding-bottom: 8px; 	
text-align: right; 	
font-size: 0.5625rem; 	
font-size: clamp(0.5625rem, 0.4683098592rem + 0.3521126761vw, 0.75rem); 	
color: #fff; 	
text-shadow: 0 0 2px #000; 	
} 

.feature {
  padding-top: 14%;
  padding-top: min(14%, 86px);
  padding-bottom: 5.9375%;
  padding-bottom: min(5.9375%, 76px);
  position: relative;
  background: url("../img/feature_bg.jpg") right 84% no-repeat #efefef;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .feature {
    background-image: url("../img/feature_bg@2x.jpg");
    background-size: 517px auto;
  }
}
.feature .c-balloon {
  fill: #072163;
}
.feature__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 5%;
  grid-row-gap: 50px;
  list-style-type: none;
  margin-top: 5%;
  padding-left: 0;
}
@media screen and (max-width: 960px) {
  .feature__list {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 600px) {
  .feature__list {
    grid-template-columns: 1fr;
  }
}
.feature__item {
  padding: 14.4444444444% 7.2222222222% 11.9444444444%;
  background-color: #fff;
  border-radius: 26px;
}
@media screen and (max-width: 600px) {
  .feature__item {
    padding: 5% 5%;
  }
}
.feature__item:nth-child(1) {
  border-bottom-right-radius: 0;
}
.feature__item:nth-child(2) {
  border-top-right-radius: 0;
}
.feature__item:nth-child(3) {
  border-bottom-left-radius: 0;
}
.feature__item:nth-child(4) {
  border-bottom-left-radius: 0;
}
.feature__item:nth-child(5) {
  border-top-left-radius: 0;
}
.feature__item:nth-child(6) {
  border-bottom-right-radius: 0;
}
.feature__item-title {
  padding-left: 4.625rem;
  position: relative;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 1.1244131455rem + 0.4694835681vw, 1.5rem);
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .feature__item-title {
    padding-top: 4.625rem;
    padding-left: 0;
    text-align: center;
  }
}
.feature__item-title img {
  width: 3.75rem;
  height: 3.75rem;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1280px) {
  .feature__item-title img {
    left: 50%;
    transform: translateX(-50%);
  }
}
.feature__item-title--en {
  margin-top: 0.2em;
  display: block;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.6247065728rem + 0.234741784vw, 0.8125rem);
  letter-spacing: 0.14em;
  color: #56d1dc;
}
.feature__item-text {
  margin: 10% 3% 0;
  letter-spacing: 0.07em;
  line-height: 1.875;
}
@media screen and (max-width: 600px) {
  .feature__item-text {
    margin-top: 4%;
  }
}

.tag {
  padding-bottom: 20px;
  background: #0f1f49;
  background: linear-gradient(90deg, #0f1f49 46%, #314e98 100%);
  color: #fff;
}
.tag ul {
  overflow: hidden;
  list-style-type: none;
  padding-left: 0;
  font-weight: 300;
  font-style: italic;
}
.tag li {
  letter-spacing: 0.04em;
}
.tag li:nth-child(1) {
  float: left;
  margin-top: 2.5833333333%;
  margin-top: min(2.5833333333%, 31px);
}
.tag li:nth-child(2) {
  float: right;
  margin-top: 1%;
  margin-top: min(1%, 12px);
  margin-right: 0.5%;
  margin-right: min(0.5%, 6px);
}
.tag li:nth-child(3) {
  clear: both;
  float: left;
  margin-left: 1.75%;
  margin-left: min(1.75%, 21px);
  margin-top: 0.4166666667%;
  margin-top: min(0.4166666667%, 5px);
}
.tag li:nth-child(4) {
  float: right;
  margin-top: -0.5%;
  margin-top: min(-0.5%, -6px);
}
@media screen and (max-width: 600px) {
  .tag li:nth-child(4) {
    margin-top: 0.4166666667%;
    margin-top: min(0.4166666667%, 5px);
  }
}
.tag li:nth-child(1), .tag li:nth-child(4) {
  font-size: 2.8125vw;
  font-size: min(2.8125vw, 36px);
}
@media screen and (max-width: 600px) {
  .tag li:nth-child(1), .tag li:nth-child(4) {
    font-size: 4vw;
  }
}
.tag li:nth-child(2), .tag li:nth-child(3) {
  font-size: 3.28125vw;
  font-size: min(3.28125vw, 42px);
}
@media screen and (max-width: 600px) {
  .tag li:nth-child(2), .tag li:nth-child(3) {
    font-size: 5vw;
  }
}
.tag strong {
  color: #56d1dc;
  font-weight: 300;
}

.rank {
  position: relative;
}
.rank .c-balloon {
  fill: #11224e;
}
.rank__wrapper {
  margin: 0 auto;
  padding-bottom: 4.5555555556%;
  position: relative;
  overflow: hidden;
  width: 1800px;
  max-width: 100%;
}
.rank__wrapper::before, .rank__wrapper::after {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100px;
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media screen and (min-width: 1801px) {
  .rank__wrapper::before, .rank__wrapper::after {
    display: block;
  }
}
.rank__wrapper::after {
  left: auto;
  right: 0;
  transform: scale(-1, 1);
}
.rank__photo-wrap {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 50%;
  padding-bottom: 47.7777777778%;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .rank__photo-wrap {
    position: relative;
    transform: none;
    width: 64%;
    padding-bottom: 61.1555555556%;
    margin-top: 5%;
  }
}
.rank__photo-wrap--02 {
  left: auto;
  right: 0;
}
@media screen and (max-width: 960px) {
  .rank__photo-wrap--02 {
    margin-top: -56%;
    margin-left: auto;
    margin-bottom: 5%;
  }
}
.rank__photo {
  display: block;
  position: absolute;
  width: 37.5%;
  aspect-ratio: 1;
  overflow: hidden;
}
.rank__photo--01 {
  margin-top: 0%;
  left: 12.03125%;
  border-top-right-radius: 26px;
}
.rank__photo--02 {
  margin-top: 29.6875%;
  left: -16.328125%;
  border-top-right-radius: 26px;
}
.rank__photo--03 {
  margin-top: 58.125%;
  left: 12.03125%;
  border-top-left-radius: 26px;
}
.rank__photo--04 {
  margin-top: 29.6875%;
  left: 38.90625%;
  border-bottom-left-radius: 26px;
}
.rank__photo--05 {
  margin-top: 59.140625%;
  left: 78.046875%;
  border-bottom-right-radius: 26px;
}
.rank__photo--06 {
  margin-top: 1.015625%;
  left: 22.265625%;
  border-top-left-radius: 26px;
}
.rank__photo--07 {
  margin-top: 29.375%;
  left: 50.625%;
  border-bottom-right-radius: 26px;
}
.rank__photo--08 {
  margin-top: 1.015625%;
  left: 77.578125%;
  border-bottom-left-radius: 26px;
}
.rank__photo img {
  display: block;
  width: 100%;
  height: auto;
}
.rank__box {
  position: relative;
  padding: 2.4% 5.1% 4.6%;
  background-color: #efefef;
  border-radius: 26px;
  width: 41.6666666667%;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .rank__box {
    position: relative;
    width: auto;
    margin-left: 3.125% !important;
    margin-right: 3.125% !important;
  }
}
.rank__box--01 {
  margin-top: 50px;
  margin-left: 16.6%;
}
.rank__box--02 {
  margin-top: 2%;
  margin-left: auto;
  margin-right: 16.6%;
}
.rank__icon {
  display: block;
  margin: 0 auto;
  width: 46px;
  aspect-ratio: 1;
}
.rank__title {
  display: inline-block;
  position: relative;
  margin-top: 0.3rem;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.5610328638rem + 1.1737089202vw, 1.5rem);
  text-align: center;
  color: #333;
  line-height: 1.3;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
}
.rank__title::before, .rank__title::after {
  content: url("../img/rank_laurel.svg");
  position: absolute;
  top: auto;
  bottom: 0;
  left: auto;
  right: 107%;
}
.rank__title::after {
  left: 107%;
  right: auto;
  transform: scale(-1, 1);
}
.rank__title span {
  font-size: 1.375rem;
  font-size: clamp(1.375rem, 0.8726525822rem + 1.8779342723vw, 2.375rem);
}
.rank__title span strong {
  color: #dd2501;
}
.rank__text {
  margin-top: 8%;
  text-align: left;
  line-height: 1.9;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.5616197183rem + 0.7042253521vw, 1.125rem);
  letter-spacing: 0.06em;
}
.rank__notice {
  margin-top: 3.2%;
  font-size: 0.5625rem;
  font-size: clamp(0.5625rem, 0.4683098592rem + 0.3521126761vw, 0.75rem);
  text-align: right;
}

.points {
  padding-top: 12%;
  padding-top: min(12%, 80px);
  padding-bottom: 12%;
  padding-bottom: min(12%, 50px);
  background: url("../img/c_bg_01.png") 0 0 repeat #efefef;
  background-size: 99px 99px;
  animation: bg_01 10s infinite linear;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .points {
    background-image: url("../img/c_bg_01@2x.png");
  }
}
.points__slide {
  margin-top: 5.78125%;
  margin-top: min(5.78125%, 74px);
  height: 300px;
  background: url("../img/points_slide.jpg") 0 0 repeat-x #5b5a68;
  background-size: 2027px 100%;
  animation: points_slide 50s infinite linear;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .points__slide {
    background-image: url("../img/points_slide@2x.jpg");
  }
}
@media screen and (max-width: 600px) {
  .points__slide {
    height: 150px;
    background-size: 1013.5px 100%;
    animation-name: points_slide_ms;
  }
}
.points__list {
  list-style-type: none;
  margin-top: -165px;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 5%;
  grid-column-gap: min(5%, 60px);
  grid-row-gap: 36px;
}
@media screen and (max-width: 767px) {
  .points__list {
    grid-template-columns: auto;
  }
}
@media screen and (max-width: 600px) {
  .points__list {
    margin-top: -50px;
  }
}
.points__box {
  position: relative;
  background-color: #efefef;
  border-top-left-radius: 26px;
  padding: 7.0175438596%;
}
@media screen and (max-width: 767px) {
  .points__box--02 {
    background-color: #f7f6f5;
  }
}
.points__box--03, .points__box--04 {
  background-color: #f7f6f5;
}
.points .c-point {
  top: 0;
  margin-top: -14px;
  left: auto;
  right: 6.5%;
}
@media screen and (max-width: 1280px) {
  .points .c-point {
    margin-top: -56px;
  }
}
.points__title {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.1860328638rem + 1.1737089202vw, 2.125rem);
  font-weight: 700;
  line-height: 1.3;
  color: #071f6d;
}
.points__title strong {
  color: #35b7c9;
}
.points__photo {
  margin-top: 6.9387755102%;
  margin-left: auto;
  margin-right: auto;
  max-width: 490px;
}
.points__text {
  margin-top: 6.5306122449%;
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6555164319rem + 0.5868544601vw, 1.125rem);
  line-height: 2.1;
}
.points__text strong {
  color: #f87608;
  font-weight: 400;
}
.points__customize {
  padding: 0 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  align-content: flex-start;
  column-gap: 1em;
}
.points__customize ul {
  margin-top: 16px;
  margin-bottom: -0.96875rem;
  list-style-type: none;
  padding-left: 0;
}
.points__customize li {
  margin-bottom: 1em;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6558098592rem + 0.3521126761vw, 0.9375rem);
}

.evaluated {
  padding: min(8vw, 80px) 0;
  background: #efefef;
}
.evaluated__br-xl {
  display: none;
}
@media screen and (max-width: 1280px) {
  .evaluated__br-xl {
    display: inline;
  }
}
@media screen and (max-width: 428px) {
  .evaluated__br-gt-s {
    display: none;
  }
}
.evaluated__row {
  display: flex;
  gap: 5vw min(5vw, 50px);
  align-items: end;
}
@media screen and (max-width: 960px) {
  .evaluated__row {
    flex-direction: column;
    align-items: center;
  }
}
.evaluated__row--01 {
  flex-direction: row-reverse;
  margin-top: min(6vw, 70px);
  margin-right: -117px;
}
@media screen and (max-width: 1500px) {
  .evaluated__row--01 {
    margin-right: 0;
  }
}
@media screen and (max-width: 960px) {
  .evaluated__row--01 {
    flex-direction: column;
  }
}
.evaluated__row--01__box {
  border-bottom-left-radius: 0;
}
.evaluated__row--02 {
  margin-top: min(5vw, 42px);
  margin-left: -117px;
}
@media screen and (max-width: 1500px) {
  .evaluated__row--02 {
    margin-left: 0;
  }
}
.evaluated__row--02__box {
  border-bottom-right-radius: 0;
}
.evaluated__box {
  flex: 1;
  padding: min(8vw, 93px) 0 min(8vw, 86px);
  background-color: #fff;
  border-radius: 26px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .evaluated__box {
    width: 100%;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
.evaluated__title {
  font-size: 1rem;
  font-size: clamp(1rem, 0.6546361502rem + 1.2910798122vw, 1.6875rem); /* 16px @428px - 27px @1280px */
  line-height: 1.407;
  letter-spacing: 0.04em;
  color: #333;
  font-weight: bold;
}
.evaluated__title--small {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.5610328638rem + 1.1737089202vw, 1.5rem); /* 14px @428px - 24px @1280px */
}
.evaluated__title--large {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.4970657277rem + 2.3474178404vw, 2.375rem); /* 18px @428px - 38px @1280px */
  line-height: 1.2;
  display: inline-block;
  position: relative;
}
.evaluated__title--large::before, .evaluated__title--large::after {
  content: url("../img/evaluated_laurel.svg");
  position: absolute;
  bottom: 0;
  left: auto;
  right: calc(100% + 0.4em);
}
.evaluated__title--large::after {
  left: calc(100% + 0.4em);
  right: auto;
  transform: scale(-1, 1);
}
.evaluated__desc {
  margin-top: min(4vw, 33px);
  font-size: 0.8125rem;
  font-size: clamp(0.8125rem, 0.6555164319rem + 0.5868544601vw, 1.125rem); /* 13px @428px - 18px @1280px */
  line-height: 1.889;
  letter-spacing: 0.04em;
}
.evaluated__img {
  width: min(39.3318147304%, 518px);
}
@media screen and (max-width: 960px) {
  .evaluated__img {
    width: 518px;
    max-width: 100%;
  }
}
.works {
  padding-top: 12%;
  padding-top: min(12%, 80px);
}
.works__tag {
  list-style-type: none;
  margin-top: 31px;
  padding-left: 0;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px 8px;
}
.works__tag li {
  padding: 0 0.875em 0.125em;
  line-height: 1.75;
  border-radius: 9999px;
  color: #fff;
  background-color: #49475f;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6244131455rem + 0.4694835681vw, 1rem);
}
.works__slider {
  position: relative;
  margin-top: 4%;
  margin-top: min(4%, 54px);
  padding-top: calc(4% + 30px);
  padding-top: min(4% + 30px, 90px);
  padding-bottom: 4%;
  padding-bottom: min(4%, 80px);
  background: #d4d5d7;
}
.works .c-balloon {
  fill: #fff;
}
@keyframes works_slide {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -4000px 0;
  }
}
@keyframes works_slide_sp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2000px 0;
  }
}
.works__slide {
  height: 914px;
  background: url("../img/works.png") 0 0 repeat-x transparent;
  background-size: 4000px 914px;
  animation: works_slide 50s infinite linear;
}
@media screen and (max-width: 767px) {
  .works__slide {
    height: 457px;
    background-size: 2000px 457px;
    animation-name: works_slide_sp;
  }
}

.price {
  padding-top: 12%;
  padding-top: min(12%, 80px);
  padding-bottom: 12%;
  padding-bottom: min(12%, 80px);
  background-color: #efefef;
}
.price__list {
  list-style-type: none;
  margin: 4% auto 0;
  margin: min(4%, 48px) auto 0;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 100%;
}
@media screen and (max-width: 1280px) {
  .price__list {
    justify-content: space-around;
    column-gap: 2%;
    row-gap: 15px;
    flex-wrap: wrap;
    width: 850px;
  }
}
.price__item {
  padding: 0 7% 7%;
  padding: 0 min(7%, 30px) min(7%, 30px);
  background-color: #fff;
  width: 31.9166666667%;
  max-width: 100%;
  border-radius: 26px 26px 0 26px;
}
@media screen and (max-width: 1280px) {
  .price__item {
    width: 49%;
  }
}
@media screen and (max-width: 600px) {
  .price__item {
    width: 300px;
  }
}
.price__title {
  margin: 48px 0;
  color: #072068;
  font-size: 1.3125rem;
  font-size: clamp(1.3125rem, 0.9671361502rem + 1.2910798122vw, 2rem);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .price__title {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.price__table {
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
  line-height: 47px;
}
.price__table dt,
.price__table dd {
  height: 47px;
  text-align: center;
  font-weight: 500;
}
.price__table dt {
  float: left;
  clear: left;
  width: 6em;
  background-color: #f5f5f4;
  font-size: 1rem;
  font-size: clamp(1rem, 0.9372065728rem + 0.234741784vw, 1.125rem);
  letter-spacing: 0.075em;
}
.price__table dd {
  position: relative;
  padding-left: 6em;
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1.0622065728rem + 0.234741784vw, 1.25rem);
}
.price__table dd::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e0e0e0;
}
.price__table dd span {
  font-size: 1.625rem;
  font-size: clamp(1.625rem, 1.4366197183rem + 0.7042253521vw, 2rem);
}

.maintenance {
  padding-top: 12%;
  padding-top: min(12%, 70px);
  padding-bottom: 12%;
  padding-bottom: min(12%, 70px);
  background-color: #56d1dc;
}
.maintenance__headline-wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .maintenance__headline-wrap {
    justify-content: center;
  }
}
.maintenance .c-point {
  margin-left: -6px;
  position: relative;
  float: left;
  width: 6.3em;
  height: 6.3em;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.6238262911rem + 0.9389671362vw, 1.375rem);
}
.maintenance .c-point::before {
  transform: scale(-1, 1);
}
.maintenance .c-point > span {
  transform: translate(-53%, -72%) rotate(-19deg);
}
.maintenance .c-point > span span {
  font-size: 1.0625rem;
  font-size: clamp(1.0625rem, 0.7799295775rem + 1.0563380282vw, 1.625rem);
  font-weight: 700;
}
.maintenance__headline {
  padding-left: 1.2%;
  margin: 20px 0;
  font-size: 1.4375rem;
  font-size: clamp(1.4375rem, 0.6525821596rem + 2.9342723005vw, 3rem);
  font-weight: 900;
  letter-spacing: 0.045em;
  color: #072068;
  line-height: 1.2;
  white-space: nowrap;
}
.maintenance__headline strong {
  color: #fff;
}
.maintenance__headline br {
  display: none;
}
@media screen and (max-width: 960px) {
  .maintenance__headline br {
    display: inline;
  }
}
.maintenance__box {
  margin-top: 0.4%;
  padding: 30px;
  background-color: #cdf1f5;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7494131455rem + 0.4694835681vw, 1.125rem);
  letter-spacing: 0;
  line-height: 1.7;
  border-radius: 0 26px 26px 26px;
}
.maintenance__box p {
  margin-top: 0.8rem;
}
.maintenance__box p:first-child {
  margin-top: 0;
}
.maintenance__box strong {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.8732394366rem + 1.4084507042vw, 2rem);
  font-weight: 400;
}

.flow {
  position: relative;
  padding-top: 12%;
  padding-top: min(12%, 80px);
  padding-bottom: 12%;
  padding-bottom: min(12%, 80px);
  background: url("../img/c_bg_02.png") 0 0 repeat #fff;
  background-size: 99px 99px;
  animation: bg_01 10s infinite linear;
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .flow {
    background-image: url("../img/c_bg_02@2x.png");
  }
}
.flow__list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10%;
  margin-top: min(10%, 76px);
  width: 740px;
  max-width: 100%;
}
@media screen and (max-width: 1280px) {
  .flow__list {
    width: auto;
  }
}
.flow__item {
  position: relative;
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.3080985915rem + 3.5211267606vw, 3.125rem);
  padding-left: 2.7em;
  padding-bottom: 6%;
  padding-bottom: min(6%, 40px);
}
.flow__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.9em;
  top: 0;
  bottom: 0;
  width: 0.1em;
  height: 100%;
  background-color: #072068;
}
.flow__item:last-child {
  padding-bottom: 0;
}
.flow__item:last-child::before {
  content: none;
}
.flow__number {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1;
  width: 1.9em;
  line-height: 1.9em;
  background-color: #072068;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", "メイリオ", Meiryo, "游ゴシック体", 'Yu Gothic", YuGothic', "ＭＳ Ｐゴシック", sans-serif;
}
.flow__title {
  font-size: 1.5rem;
  font-size: clamp(1.5rem, 1.1860328638rem + 1.1737089202vw, 2.125rem);
  font-weight: 500;
  color: #072068;
}
.flow__desc {
  margin-top: 8px;
  line-height: 1.8;
  letter-spacing: 0;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7494131455rem + 0.4694835681vw, 1.125rem);
}
.flow__img {
  position: absolute;
  left: 54.5%;
  top: auto;
  bottom: 80px;
  width: 778px;
  max-width: 42%;
}
@media screen and (max-width: 1280px) {
  .flow__img {
    position: relative;
    margin: 8% auto 0;
    margin: min(8%, 60px) auto 0;
    left: 0;
    bottom: auto;
    max-width: 85%;
  }
}

.form {
  padding-top: 12%;
  padding-top: min(12%, 96px);
  padding-bottom: 12%;
  padding-bottom: min(12%, 90px);
  background-color: #efefef;
}
.form__heading {
  text-align: center;
  font-size: 1.5625rem;
  font-size: clamp(1.5625rem, 0.338028169rem + 4.5774647887vw, 4rem);
  font-weight: 900;
  color: #072068;
}
.form__input {
  --dt-width: 290px;
  margin-top: 12%;
  margin-top: min(12%, 110px);
}
@media screen and (max-width: 960px) {
  .form__input {
    --dt-width: 220px;
  }
}
.form__input dt {
  float: left;
  clear: left;
  width: var(--dt-width);
  margin-top: 0.7em;
  padding-left: 10px;
  line-height: 20px;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7494131455rem + 0.4694835681vw, 1.125rem);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .form__input dt {
    float: none;
    width: auto;
    padding-right: 10px;
  }
}
.form__input dt:last-of-type {
  margin-top: 4.2em;
}
@media screen and (max-width: 767px) {
  .form__input dt:last-of-type {
    margin-top: 0.7em;
  }
}
.form__input dd {
  border-bottom: 1px solid #dedede;
  margin-bottom: 14px;
  padding: 0 10px 14px 0;
}
@media screen and (max-width: 767px) {
  .form__input dd {
    margin-top: 10px;
    padding-left: 10px;
  }
}
.form__input dd input,
.form__input dd textarea {
  width: calc(100% - var(--dt-width));
}
@media screen and (max-width: 767px) {
  .form__input dd input,
  .form__input dd textarea {
    width: 100%;
  }
}
.form__required {
  display: inline-block;
  background-color: #fc462d;
  margin-right: 1em;
  padding: 0 0.3em;
  font-size: 0.75rem;
  color: #fff;
  border-radius: 3px;
}
.form__privacy {
  margin-top: 5%;
  margin-top: min(5%, 40px);
  padding: 1.4em 1.8em;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  height: 23.5em;
  overflow-y: scroll;
  color: #333;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6872065728rem + 0.234741784vw, 0.875rem);
  line-height: 1.7142857143;
  letter-spacing: 0;
}
.form__privacy-title {
  font-size: 1rem;
}
.form__privacy p,
.form__privacy dl {
  margin-top: 0.8em;
}
.form__privacy p:first-child,
.form__privacy dl:first-child {
  margin-top: 0;
}
.form__privacy dt,
.form__privacy dd {
  padding-left: 1em;
}
.form__privacy dt {
  position: relative;
}
.form__privacy dt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.8em;
  left: 0.3em;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #333;
}
.form__check ,
.agree{
  margin-top: 6%;
  margin-top: min(6%, 53px);
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6872065728rem + 0.234741784vw, 0.875rem);
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
  color: #333;
}
.form__check input ,
.agree input {
  vertical-align: middle;
}
.form__check label ,
.agree label {
  padding-left: 10px;
  vertical-align: middle;
}
.form__check label:hover ,
.agree label:hover {
  cursor: pointer;
}
.form__check-box ,
.agree .check {
  margin-top: 0.9em;
  padding: 0.8em 4em;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #e7e7e7;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7494131455rem + 0.4694835681vw, 1.125rem);
}
.agree span.agreecheck {
  margin-left: 0.9em;
}

.form .c-btn ,
.button-area{
  margin: 40px auto 0;
  width: 440px;
  max-width: 100%;
}
.fa-paper-plane::before{
	margin-right: 0.9em;
}
.footer {
  padding-top: 35px;
  padding-bottom: 24px;
  background-color: #575564;
  color: #fff;
  font-size: 0.75rem;
  font-size: clamp(0.75rem, 0.6872065728rem + 0.234741784vw, 0.875rem);
}
@media screen and (max-width: 767px) {
  .footer {
    text-align: center;
  }
}
.footer .inwrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .footer .inwrap {
    display: block;
  }
}
.footer__logo img {
  display: inline-block;
}
.footer__company {
  margin-top: 1.8em;
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.8122065728rem + 0.234741784vw, 1rem);
}
.footer__address {
  margin-top: 0.9em;
}
.footer__copyright-area {
  margin-top: 3em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer__copyright-area {
    text-align: center;
  }
}
.footer__notice {
  letter-spacing: 0;
}
.footer__copyright {
  margin-top: 0.8em;
  font-size: 0.6875rem;
  font-size: clamp(0.6875rem, 0.6247065728rem + 0.234741784vw, 0.8125rem);
  letter-spacing: 0;
}

.formErrorContent{
	color:#ff0000;
}
