@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500;700&display=swap");
:root {
  --green1: #3DB134;
  --blue1: #006AB6;
  --red1: #FF3950;
  --border: #D5D7DD;
  --black1: #1F1E1E;
  --black2: #1A1A1A;
  --gray1: #737B8C;
  --white1: #FFFFFF;
  --white2: #F4F4F4;
  --boxshadow: rgba(0,0,0,0.031);
}
body{
  margin:0;
  padding:0;
  font-family: 'Noto Sans JP',sans-serif;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  min-width: 1280px;
  font-size: 16px;
  color: var(--black1);
  /* overflow: hidden; */
}
::-webkit-scrollbar{
  width: 2px;
}
::-webkit-scrollbar-track{
  background-color: #fff;
}
._sticky:hover::-webkit-scrollbar-track{
  background-color: #ccc;
}
::-webkit-scrollbar-thumb{
  background-color: #fff;
  border-radius: 15px;
}
a {
  color: inherit;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
select {
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  font-size: inherit;
  background-color: inherit;
  color: inherit;
}
iframe {
  max-width: 100%;
}
.hide {
  display: none;
}
.text {
  line-height: 2;
}
.text + .text{
  margin-top: 1em;
}
.text-red {
  color: var(--red1);
}
.text-gray {
  color: #777;
}
.cursor-normal {
  cursor: inherit !important;
}
:focus {
    outline: none;
}
.sp,
.sp-inline {
  display: none !important;
}
.inner {
  width: 1280px;
  margin: 0 auto;
}
.inner2 {
  padding: 0 60px;
}
* + .text {
  margin-top: 1em;
}
.text-line {
  text-decoration: underline;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.bold {
  font-weight: bold;
}
.mt05 {
  margin-top: 0.5em;
}
.mt1 {
  margin-top: 1em;
}
.mt2 {
  margin-top: 2em;
}
.mt3 {
  margin-top: 3em;
}
.mt4 {
  margin-top: 4em;
}
.mb1 {
  margin-bottom: 1em;
}
.mb2 {
  margin-bottom: 2em;
}
.mb3 {
  margin-bottom: 3em;
}
.mb4 {
  margin-bottom: 4em;
}
.input-text, .input-textarea {
	width: 100%;
	font-size: inherit;
	font-family: inherit;
	height: 50px;
	padding: 0 20px;
	border-radius: 8px;
	border: 1px solid var(--border);
	background-color: #F4F4F4;
}
.input-size4 {
  width: 4em;
}
.input-size5 {
  width: 5em;
}
.input-size6 {
  width: 6em;
}
.input-size7 {
  width: 7em;
}
.input-size10 {
  width: 10em;
}
.input-size20 {
  width: 20em;
}
.text-indent--2 {
  padding-left: 1em;
  text-indent: -1em;
}
.text-indent--4 {
  padding-left: 2em;
  text-indent: -2em;
}
.text-line1 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.text-line2 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.text-line3 {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.input-textarea {
  height: 10em;
  padding: 10px 20px;
}
.input-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 50px;
  padding: 0 34px 0 20px;
  font-size: inherit;
  font-family: inherit;
  position: relative;
  background-image: url(../img/icon_select.svg);
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-color: #F4F4F4;
  border-radius: 8px;
  border: 1px solid var(--border);
  background-size: 10px;
  max-width: 100%;
}
.select-wrap {
  position: relative;
}
.select-wrap .input-select {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  height: 100%;
  width: 100%;
}
.input-checkbox,
.input-radio {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.input-checkbox + label {
	cursor: pointer;
	padding-left: 34px;
	vertical-align: top;
	position: relative;
	display: inline-block;
	line-height: 1.8;
}
.input-checkbox + label::before,
.input-checkbox + label::after {
  content: "";
  display: block; 
  position: absolute;
}
.input-checkbox + label::before {
  background-color: #F0F3F5;
  border-radius: 0%;
  border: 1px solid var(--border);
  width: 24px;
  height: 24px;
  top: 2px;
  left: 0;
  border-radius: 4px;
}
/* .input-checkbox:checked + label::before {
  background-color: var(--blue1);
} */
.input-checkbox + label::after {
  border-bottom: 3px solid var(--green1);
  border-left: 3px solid var(--green1);
  /* border-radius: 2px; */
  opacity: 0;
  height: 6px;
  width: 12px;
  transform: rotate(-45deg);
  top: 8px;
  left: 5px;
}
.type-support .input-checkbox + label::after {
  border-bottom: 3px solid var(--blue1);
  border-left: 3px solid var(--blue1);
}
.input-checkbox:checked + label::after {
  opacity: 1;
}
.input-radio + label::before, .input-radio:checked + label::before {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  left: 0;
  background-color: #EBEBEB;
  border: 1px solid var(--border);
  border-radius: 50%;
  /* top: 0.3em; */
  top: -0.1em;
}
.input-radio:checked + label::after {
	content: "";
	width: 14px;
	height: 14px;
	display: block;
	position: absolute;
	left: 6px;
	background-color: var(--green1);
	border-radius: 50%;
	top: 4px;
}
.type-support .input-radio:checked + label::after {
  background-color: var(--blue1);
}
.input-radio + label {
	position: relative;
	display: inline-block;
	min-height: 26px;
	padding-left: 34px;
}
.link {
  text-decoration: underline;
  color: #006AB6;
}
.button {
	cursor: pointer;
	text-align: center;
	padding: 0;
}
.button1 {
	background-image: url(../img/icon_arrow_right_green.svg);
	background-repeat: no-repeat;
	background-position: 40px center;
	border-radius: 40px;
	width: 400px;
	height: 80px;
	background-color: #fff;
	color: var(--green1);
	font-size: 20px;
	font-weight: bold;
}
.type-support .button1 {
	background-image: url(../img/icon_arrow_right_blue.svg);
  color: var(--blue1);
}
.button2 {
	background-image: url(../img/icon_link.svg);
	background-position: 0 center;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	background-repeat: no-repeat;
	padding-left: 30px;
}
.type-support .button2 {
  background-image: url(../img/icon_link_blue.svg);
}
.button3 {
	background-image: url(../img/icon_arrow_right_white.svg);
	background-repeat: no-repeat;
	background-position: 40px center;
	border-radius: 40px;
	width: 400px;
	height: 80px;
	background-color: var(--green1);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
}
.type-support .button3 {
	background-color: var(--blue1);
}
.error-wrap {
  margin-top: 1em;
}
.error-top {
  color: var(--red1);
  margin-top: 1em;
}
.error {
  color: var(--red1);
  margin-top: 0.5em;
}
.error2 {
  color: var(--red1);
  margin-bottom: 0.5em;
}
.before-text {
  color: #1950da;
}
.header {
	height: 60px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
}
.header-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 20px;
	height: 100%;
}
.header-logo {
	width: 258px;
}
.header-logo1{
	width: 35px;
}
.header-logo2{
	width: 43px;
}

.type-support .header-logo {
	width: 344px;
}
.type-support .header-logo1{
	width: 57px;
}

.footer {
	margin-top: 80px;
  padding: 20px 0;
}
.footer-inner{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 20px;
}
.footer-logo{
	width: 258px;
}
.footer-logo1{
	width: 35px;
}
.footer-logo2{
	width: 43px;
}

.type-support .footer-logo {
	width: 344px;
}
.type-support .footer-logo1{
	width: 57px;
}

.title-wrap {
	padding: 30px 0 35px;
	border-bottom: 1px solid var(--border);
}
.title1 {
	font-size: 36px;
	font-weight: bold;
}
.content-wrap {
	padding-top: 60px;
}
.title2 {
	font-size: 28px;
	border-left: 8px solid var(--green1);
	padding: 2px 0 2px 20px;
}
.type-support .title2 {
	border-left: 8px solid var(--blue1);
}
.title3 {
  font-size: 21px;
  font-weight: bold;
  color: var(--green1);
}
.type-support .title3 {
  color: var(--blue1);
}
.frame {
	box-shadow: 7px 7px 7px rgba(0, 0, 0, 0.0314);
	border: 1px solid var(--border);
	border-radius: 24px 24px 0 0;
	padding: 90px 200px 80px 200px;
}
.frame2 {
  padding-bottom: 90px;
  border-radius: 24px;
}
.table1 {
	width: 100%;
}
.th1 {
	border-top: 1px solid var(--border);
	padding: 25px 25px 25px 0;
	text-align: left;
	font-size: 14px;
	vertical-align: top;
}
.th1-inner {
	position: relative;
	padding-right: 47px;
}
.th1-small {
	display: block;
	font-size: 12px;
	font-weight: normal;
}
.required {
	background-color: var(--green1);
	border-radius: 4px;
	color: #fff;
	font-size: 11px;
	padding: 2px 8px;
	position: absolute;
	right: 0;
}
.type-support .required {
	background-color: var(--blue1);
}
.required-star-wrap {
  display: inline;
  position: absolute;
  right: 0;
}

.required-star {
  color: var(--green1);
}

.required-star__label {
  background-color: var(--green1);
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
}

.type-support .required-star {
  color: var(--blue1);
}
.type-support .required-star__label {
	background-color: var(--blue1);
}

.td1 {
	border-top: 1px solid var(--border);
	padding: 10px 0;
	width: 510px;
}
.td1-title {
	font-weight: bold;
	font-size: 14px;
}
.flex1 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 10px;
}
.flex2 {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px 40px;
}
.flex3 {
	display: flex;
	flex-direction: column;
	gap: 20px 0;
}
.flex__center {
  justify-content: center;
}
.btn-wrap {
	background: rgb(61,177,52);
	background: linear-gradient(65deg, rgba(61,177,52,1) 0%, rgba(85,200,221,1) 100%);
	padding: 60px 0;
	border-radius: 0 0 24px 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.type-support .btn-wrap {
  background: rgb(0,106,182);
  background: linear-gradient(65deg, rgba(0,106,182,1) 0%, rgba(85,200,221,1) 100%);
}
.btn-wrap2 {
	flex-direction: column;
}
.btn-wrap2 .button:nth-child(n + 2) {
  margin-top: 40px;
}

.text-small {
  font-size: 12px;
}

@media screen and (max-width:560px) {
  
  body{
    -webkit-text-size-adjust: 100%;
    text-decoration-skip-ink: none;
    min-width: initial;
    min-width: auto;
    font-size: 2.86vw;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp-inline {
    display: inline !important;
  }
  .sp-left {
    text-align: left;
  }
  .input-text, .input-textarea {
    width: 100%;
    height: 8.93vw;
    padding: 0 2.68vw;
    border-radius: 1.07vw;
  }
  .input-textarea {
    height: 10em;
    padding: 1.79vw 3.57vw;
  }
  .input-select {
    height: 8.93vw;
    padding: 0 5.36vw 0 2.68vw;
    background-position: calc(100% - 1.79vw) center;
    border-radius: 1.07vw;
    background-size: 1.79vw;
  }

  .input-checkbox + label {
    padding-left: 6.07vw;
  }
  .input-checkbox + label::before {
    width: 4.29vw;
    height: 4.29vw;
    top: 0.36vw;
    border-radius: 0.71vw;
  }
  .input-checkbox + label::after {
    border-bottom: 0.54vw solid var(--green1);
    border-left: 0.54vw solid var(--green1);
    /* border-radius: 0.36vw; */
    height: 1.07vw;
    width: 2.14vw;
    top: 1.43vw;
    left: 0.89vw;
  }
  .type-support .input-checkbox + label::after {
    border-bottom: 0.54vw solid var(--blue1);
    border-left: 0.54vw solid var(--blue1);
  }
  .input-radio + label::before, .input-radio:checked + label::before {
    width: 4.29vw;
    height: 4.29vw;
  }
  .input-radio:checked + label::after {
    width: 2.5vw;
    height: 2.5vw;
    left: 1.07vw;
    top: 0.71vw;
  }
  .input-radio + label {
    min-height: 4.64vw;
    padding-left: 6.07vw;
  }
  .button1 {
    background-position: 7.14vw center;
    border-radius: 7.14vw;
    background-size: 1.25vw auto;
    width: 71.43vw;
    height: 14.29vw;
    font-size: 3.57vw;
  }
  .button2 {
    font-size: 2.86vw;
    padding-left: 5.36vw;
    background-size: 3.57vw;
    min-height: 3.57vw;
  }
  .button3 {
    background-position: 7.14vw center;
    border-radius: 7.14vw;
    width: 71.43vw;
    height: 14.29vw;
    font-size: 3.57vw;
  }
  .inner {
    width: 100%;
  }
  .inner2 {
    padding: 0 6.25vw;
  }
  .header {
    height: 15.18vw;
    box-shadow: 0vw 0.54vw 1.07vw rgba(0, 0, 0, 0.25);
  }
  .header-inner {
    gap: 0 3.57vw;
  }
  .header-logo {
    width: 54.64vw;
  }
  .header-logo1 {
    width: 7.5vw;
  }
  .header-logo2 {
    width: 9.11vw;
  }
  .type-support .header-logo {
    width: 68.75vw;
  }
  .type-support .header-logo1{
    width: 10.18vw;
  }
  .footer {
    margin-top: 14.29vw;
    padding: 3.57vw 0;
  }
  .footer-inner {
    gap: 0 3.57vw;
  }
  .footer-logo {
    width: 54.64vw;
  }
  .footer-logo1 {
    width: 7.5vw;
  }
  .footer-logo2 {
    width: 9.11vw;
  }
  .type-support .footer-logo {
    width: 68.75vw;
  }
  .type-support .footer-logo1{
    width: 10.18vw;
  }
  .content-wrap {
    padding-top: 7.14vw;
  }
  .title-wrap {
    padding: 6.25vw 0 6.25vw;
  }
  .title1 {
    font-size: 5vw;
  }
  .title2 {
    font-size: 4.29vw;
    border-left: 1.43vw solid var(--green1);
    padding: 0.36vw 0 0.36vw 3.57vw;
  }
  .type-support .title2 {
    border-left: 1.43vw solid var(--blue1);
  }
  .title3 {
    font-size: 3.75vw;
  }
  .frame {
    box-shadow: 0.71vw 0.71vw 0.71vw rgba(0, 0, 0, 0.0314);
    border-radius: 2.86vw 2.86vw 0 0;
    padding: 10.71vw 3.57vw;
  }
  .frame2 {
    border-radius: 2.86vw;
  }
  .th1 {
    padding: 4.46vw 4.46vw 4.46vw 0;
    font-size: 2.5vw;
  }
  .required {
    border-radius: 0.71vw;
    font-size: 1.96vw;
    padding: 0.36vw 1.43vw;
  }
  .required-star__label {
    border-radius: 0.71vw;
    font-size: 1.96vw;
    padding: 0.36vw 1.43vw;
  }
  .td1 {
    border-top: 0.18vw solid var(--border);
    padding: 1.79vw 0;
    width: 50vw;
  }
  .td1 .input-size10 {
    width: calc(50% - 0.89vw);
  }
  .td1 .input-size20 {
    width: 100%;
  }
  .th1-inner {
    padding-right: 0;
  }
  .td1-title {
    font-size: 2.5vw;
  }
  .flex1 {
    gap: 1.79vw 0.5vw;
  }
  .flex1--2 {
    gap: 1.79vw 0.5vw;
  }
  .flex1 .input-size5 {
    width: 5em;
  }
  .flex2 {
    gap: 1.79vw 7.14vw;
  }
  .flex3 {
    gap: 3.57vw 0;
  }
  .btn-wrap {
    padding: 7.14vw 0;
    border-radius: 0 0 2.86vw 2.86vw;
  }
  .btn-wrap2 .button:nth-child(n+2) {
    margin-top: 7.14vw;
  }
  .text-small {
    font-size: 2.5vw;
  }
}