html {
  overflow-y: scroll;
}

body {
  width: 100%;
  font-size: 1.05rem;
  color: #252525;
  background: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  overflow: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

p {
  margin: 0;
}

section .contents_inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 130px 110px 160px;
}

.cb {
  clear: both;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

h2 {
  font-size: 2.7rem;
  line-height: 1.1;
  margin-bottom: 60px;
  color: #0f3291;
  margin-top: 0;
  text-align: center;
}

h2 span {
  font-size: 1.7rem;
  color: #00aff0;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 13px;
}

/*header*/
.header {
  position: fixed;
  width: 100%;
  height: 100px;
  z-index: 10;
  background-color: #fff;
}

.header ul {
  width: 87%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header ul li {
  display: inline-block;
  margin: 35px 15px;
}

/*  */
.header ul .mail {
  margin: 0 0 0 10px;
  /* height: 110px; */
  background: #00aff0;
}

/*  */
.header .logo {
  width: 13%;
  /* max-width: 240px; */
  height: 100px;
  float: left;
  margin: 0;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.header .logo img {
  width: 10vw;
}

.pc li a {
  text-decoration: none;
  color: #1E2124;
  font-weight: 500;
  font-size: 1.1rem;
}

.pc .contents a:hover {
  color: #00aff0;
}

.sp {
  display: none;
}

.pc .tel {
  /* margin-left: 55px; */
  margin: 0 15px;
  position: relative;
  font-weight: 500;
  font-size: 1.45vw;
  color: #00aff0;
  line-height: 1.2;
  display: flex;
  align-items: flex-end;
  position: relative;
  top: -5px;
}

.pc .tel span {
  font-size: 0.8vw;
}

.pc .tel img {
  width: 40px;
  margin-right: 5px;
}

.pc .tel a {
  font-size: 1.45vw;
  color: #00aff0;
}

.sp_tel_mail {
  display: none;
}

.contact_btn_02 {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #EBF5FF;
}

.contact_btn_02 a {
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  padding: 20px 150px;
  /* border-radius: 10px; */
  color: #fff;
  background: #00AFF0;
}

.contact_btn_02 a:hover {
  opacity: 0.8;
}

.nav {
  height: 100px;
}

.pc .mail:hover {
  opacity: 0.8;
}

/*main*/
#main {
  padding-top: 100px;
  /* background: #F8FCFF; */
  height: 750px;
  /* position: relative; */
}

#main .copy {
  font-size: 3rem;
  font-weight: 600;
  margin: 20px 20px 40px 80px;
  color: #0a3291;
  text-align: left;
  line-height: 1.5;
  z-index: 2;
  position: absolute;
  top: 210px;
  left: 50%;
}

#main .copy span {
  background: linear-gradient(transparent 80%, #A0E1FF 80%);
}

#main .copy_text {
  font-size: 1.3rem;
  color: #000;
  text-align: left;
  line-height: 1.6;
  z-index: 2;
  position: absolute;
  right: 0;
  top: 475px;
  font-weight: 500;
  left: 50%;
  margin-left: 80px;
  margin-right: 40px;
}

#main .medal_area {
  width: 500px;
  margin-left: 80px;
  position: absolute;
  left: 50%;
  top: 562px;
}

#main .medal_area img {
  width: 100%;
}

.br_tb {
  display: none;
}

.pc li .contact_btn {
  color: #fff;
  padding: 0vw 1.2vw;
  font-size: 1.4rem;
  line-height: 100px;
  display: block;
}

.mv_area {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  height: 100%;
}

.main_image_anime {
  width: 50%;
  height: 750px;
}

.background_none_area {
  width: 50%;
  height: 750px;
  background: linear-gradient(90deg, #FFFFFF, #C6ECFF);
}


/* メインビジュアル　画像切り替わり */

.main_image_anime {
  overflow: hidden;
  position: relative;
}

/* アニメーション　スライドの中身 */
.image_anime {
  z-index: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 12s infinite; /* アニメーション遅延は個別に設定するので削除 */
  animation: anime 12s infinite;
}

.image_anime_01 {
  background-position: center top;
}

.image_anime_02 {
  background-position: center top;
}

.image_anime_03 {
  background-position: center top;
}


/* スライドショーを順番に出すCSS アニメーションの開始時間をずらす

↓4秒づつで切り替わるアニメーション*/
.image_anime:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.image_anime:nth-of-type(2) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.image_anime:nth-of-type(3) {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}
/* 
.image_anime:nth-of-type(4) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

.image_anime:nth-of-type(5) {
  -webkit-animation-delay: 16s;
  animation-delay: 16s;
}

.image_anime:nth-of-type(6) {
  -webkit-animation-delay: 20s;
  animation-delay: 20s;
} */

@keyframes anime {
0% {
  opacity: 0;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}
16.6% {
  /* 100% / 6 = 16.66% */
  opacity: 1;
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
}
33.32% {
  /* 16.66% + 16.66% = 33.32% */
  opacity: 1;
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
}
50% {
  opacity: 0;
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
}
100% {
  opacity: 0;
  -webkit-transform: scale(1.0);
  transform: scale(1.0);
}
}

/*  */
footer {
  margin: 0 auto 0;
  text-align: center;
  font-weight: 500;
}

.footer_contents {
  padding-right: 20px;
  padding-left: 20px;
}

.footer_policy {
  margin-bottom: 20px;
  font-weight: 600;
}

footer .logo {
  width: 200px;
  margin: 0 auto;
  margin-top: 30px;
}

footer .write {
  background-color: #E7F7FF;
  color: #00aff0;
  padding: 20px 0 120px;
  margin-top: 50px;
  font-weight: 600;
}

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 50px;
  z-index: 3;
}

#pagetop a {
  background: #00aff0;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  border: 1px solid #EBF8FF;
  display: inline-block;
  width: 60px;
  height: 60px;
  /* border-radius: 50px; */
}

#pagetop .arrow {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  line-height: 50px;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);
  position: relative;
  top: 14px;
}

.footer_policy a {
  text-decoration: none;
  color: #1E2124;
}

/* cta */

.cta_area {
  background-color: #0f3291;
  background: linear-gradient(90deg, #0F3291, #00AFF0);
  color: #fff;
  padding: 40px 40px 50px;
}

.cta_area p {
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.cta_area .contact_btn_01 {
  text-align: center;
  margin-top: 35px;
}

.cta_area .contact_btn_01 a {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 50px;
  border-radius: 50px;
  color: #0f3291;
  background-color: #fff;
}

.cta_area .contact_btn_01 a:hover {
  color: #fff;
  background: #0f3291;
  border: none;
}

/* 追従CTA */

.contact_btn_03 {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: 100px auto 50px;
}
.contact_btn_03 a {
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  padding: 20px 145px;
  border-radius: 50px;
  color: #F06A43;
  background: #fff;
  border: 2px solid #F06A43;
}
.contact_btn_03 a:hover {
  color: #fff;
  background: #F06A43;
  border: none;
  box-shadow: rgb(0 0 0 / 20%) 0px 0px 10px 0px;
  /* opacity: 0.95; */
}

/*issue*/

#issue {
  position: relative;
}

#issue::before {
  position: absolute;
  content: "";
  /* top: -50%;
  left: 50%; */
  background-color: #E7F7FF;
  background: linear-gradient(0deg, #A0E1FF, #D5F2FF);
  width: 100%;
  height: 80%;
  top: 20%;
  z-index: -1;
}

#issue .issue_contents_inner {
  padding: 50px 100px 50px;
}

#issue .assignment {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
  margin: 40px 0;
}

#issue .assignment .item {
  width: calc(100% / 2 - 10px);
  background-color: #fff;
  padding: 15px 20px;
  box-sizing: border-box;
  display: flex;
}

#issue .assignment .item p {
  font-weight: 500;
  width: 90%;
}

#issue .assignment .item img {
  width: 7%;
  margin-right: 3%;
}

#issue .assignment .item p span {
  color: #0f3291;
  font-weight: 600;
}

#issue .lead {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

#issue .lead span {
  background: linear-gradient(transparent 80%, #A0E1FF 80%);
}

#issue .balloon4 {
  position: relative;
  padding: 40px 80px 15px;
  background: #F6F6F6;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  box-shadow: 0px -5px 8px #e6e6e6;
}

#issue.balloon4 p {
  margin: 0;
  padding: 0;
}

#issue .triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 30px solid #F6F6F6;
  margin: auto;
}

#issue .issue_text {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin-top: 20px;
}

#issue .issue_text span {
  color: #0f3291;
}

/* reason */

#reason .number {
  font-size: 3.3rem;
  color: #0f3291;
  font-weight: 600;
  text-align: center;
}

#reason h3 {
  text-align: center;
  margin: 15px 0 40px;
  font-size: 1.8rem;
}

#reason h3 span {
  font-size: 3rem;
  color: #0f3291;
}

#reason .contents_inner.reason_inner {
  max-width: 1360px;
  margin: 0 auto;
}

#reason .contents_inner.reason_inner .point {
  max-width: 1360px;
  margin-top: 70px;
  padding: 0 0 50px;
  position: relative;
}

#reason .point_inner {
  padding: 0 30px;
  box-sizing: border-box;
}

#reason .contents_inner.reason_inner .point:first-of-type {
  margin-top: 0;
}

#reason .contents_inner.reason_inner .point::before {
  position: absolute;
  content: "";
  /* top: -50%;
  left: 50%; */
  background-color: #E7F7FF;
  width: 100%;
  /* height: 95%;
  top: 5%; */
  height: calc(100% - 50px);
  top: 42px;
  z-index: -1;
}

#reason .contents_inner.reason_inner .point .point_inner {
  max-width: 1140px;
  margin: 0 auto;
}

#reason .report_box {
  width: 40%;
  margin: 0 auto 50px;
  padding: 20px;
  color: #252525;
  background-color: #fff;
  /* border-radius: 6px; */
  box-sizing: border-box;
}
#reason .title02 {
  margin-top: 0;
  color: #00aff0;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
}
#reason .report_li {
  padding-left: 3rem;
}
#reason .report_li li::marker {
  font-weight: 600;
  color: #0f3291;
}
#reason .img {
  margin: 25px 0;
  text-align: center;
}
#reason .img img {
  width: 100%;
  height: auto;
}
#reason .img_box {
  display: flex;
}
#reason .img_box .img {
  margin: 25px 20px 20px 0;
}
#reason .img_box .img:last-child {
  margin: 25px 0 20px;
}
#reason .img_box.column_3 .img {
  width: calc(100% / 3);
}
#reason .img_box.column_2 .img {
  width: calc(100% / 2);
}

/*FLOW*/
#flow {
  /* color: #fff; */
  /* background-color: #fff; */
  background-color: #A0E1FF;
  text-align: center;
}

#flow p {
  color: #252525;
}
#flow ul {
  list-style: none;
  padding-left: 0;
  width: 100%;
}
.flow {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 65px;
}
.flow .flow02 {
  position: relative;
  text-align: center;
  font-weight: 600;
  padding: 100px 30px 30px;
  margin: 0;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.flow li {
  float: left;
}
.flow02 .num {
  color: #fff;
  background: #0f3291;
  display: table-cell;
  width: auto;
  height: 360px;
  border-radius: 0;
  position: relative;
  vertical-align: middle;
  padding: 0 20px;
}
.flow .triangle2 {
  width: 0;
  height: 0;
  border-left: 10px solid #00aff0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  position: relative;
  top: 270px;
  padding: 0;
  margin: 0;
}
.flow_box {
  display: flex;
}
.flow .basic_fee {
  position: absolute;
  top: -57px;
  left: 17%;
  width: 88px;
  height: 88px;
  margin-top: 40px;
  padding: 24px 18px 18px;
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 600;
  align-items: center;
  /* background-color: #0f3291; */
  background-color: #00aff0;
  border-radius: 50%;
  writing-mode: horizontal-tb;
  box-sizing: border-box;
}
.flow .basic_fee::before {
  position: absolute;
  content: "";
  top: 92px;
  left: 46%;
  margin: 0;
  padding: 4px 4px;
  /* background-color: #0f3291; */
  background-color: #00aff0;
  border-radius: 50%;
}
.flow .basic_fee::after {
  position: absolute;
  content: "";
  top: 103px;
  left: 46%;
  margin: 0;
  padding: 4px 4px;
  /* background-color: #0f3291; */
  background-color: #00aff0;
  border-radius: 50%;
}
.flow .success_fee {
  position: absolute;
  top: -57px;
  left: 17%;
  width: 88px;
  height: 88px;
  margin-top: 40px;
  padding: 33px 18px 30px;
  color: #fff !important;
  font-size: 0.8rem;
  font-weight: 600;
  align-items: center;
  background-color: #00aff0;
  border-radius: 50%;
  writing-mode: horizontal-tb;
  box-sizing: border-box;
}
.flow .success_fee::before {
  position: absolute;
  content: "";
  top: 92px;
  left: 46%;
  margin: 0;
  padding: 4px 4px;
  background-color: #00aff0;
  border-radius: 50%;
}
.flow .success_fee::after {
  position: absolute;
  content: "";
  top: 103px;
  left: 46%;
  margin: 0;
  padding: 4px 4px;
  background-color: #00aff0;
  border-radius: 50%;
}
.flow02 .pink {
  background: #fff;
  display: table-cell;
  width: auto;
  height: 360px;
  color: #0f3291;
  border: 2px solid #0f3291;
  border-radius: 0;
  position: relative;
  vertical-align: middle;
  padding: 0 20px;
}

/*PRICE*/

#price {
  background-color: #fff;
}

#price .text {
  margin-bottom: 10px;
}

#price .text02 {
  margin-top: 10px;
}

.lehman__illustration {
  background-color: #f1f1f1;
  padding: 34px 48px;
  padding-bottom: 54px;
  margin-top: 36px;
  color: #1E2124;
}
.lehman__illustration .row {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.lehman__illustration .lehman__result {
  margin-left: 90px;
  position: relative;
}
.lehman__illustration .lehman__result__item {
  background-color: #fff;
  padding: 15px 30px;
  /* border-radius: 10px; */
}
.lehman__illustration .lehman__result__item + .lehman__result__item {
  margin-left: 30px;
  /* border-radius: 10px; */
}
.lehman__illustration .lehman__result__ttl {
  font-weight: 600;
  margin-bottom: 10px;
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.lehman__illustration .lehman__result:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #1e2124;
  left: -54px;
  top: 0;
  bottom: 26px;
  margin: auto;
}
.lehman__illustration .lehman__result .note {
  text-align: right;
  font-size: 1rem;
  margin-top: 10px;
}
.lehman__illustration .lehman__result .row {
  margin-top: 0;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

/*interview*/

#interview {
  background-color: #fff;
}

#interview .interview_item:not(:first-of-type) {
  margin-top: 100px;
}

#interview .interview_01 {
  display: flex;
  width: 100%;
  gap: 40px;
}

#interview .interview_02 {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  gap: 40px;
}

#interview .interview_item .image_area {
  width: calc(50% - 20px);
}

#interview .interview_item .image_area img {
  width: 100%;
}

#interview .interview_item .text_area {
  width: calc(50% - 20px);
}

#interview .interview_item .text_area .title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.5;
  padding-bottom: 20px;
}

#interview .interview_01 .text_area .title {
  border-bottom: 4px solid #00aff0;
  border-image: linear-gradient(to right, #0F3291, #00AFF0) 1;
}

#interview .interview_02 .text_area .title {
  border-bottom: 4px solid #00aff0;
  border-image: linear-gradient(to right, #00aff0, #0F3291) 1;
}

#interview .interview_tag {
  padding: 0;
}

#interview .interview_tag li {
  display: inline-block;
  margin-right: 15px;
  color: #00aff0;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 3px;
}

/*COMPANY*/
#company .contact_btn_02 {
  position: absolute;
  bottom: 11%;
  margin: auto;
  left: 0;
  right: 0;
}
#company .company_dl {
  margin: 0 auto;
}
#company .company_dl dl {
  border-bottom: 1px solid #d7d7d7;
  margin: 0 auto;
  padding: 15px 10px 15px;
  width: 80%;
  box-sizing: border-box;
  display: flex;
}
#company .company_dl dt {
  width: 15%;
  /* float: left; */
  font-weight: 600;
}
#company .company_dl dd {
  width: 85%;
  /* margin-left: 15%; */
}
#company #company {
  position: relative;
  font-weight: 500;
  background-color: #fff;
}
#company .company_img {
  width: 40%;
  position: relative;
  z-index: 2;
}
#company .company_img img {
  width: 100%;
  position: absolute;
  top: 50px;
}
#company .img {
  margin: 65px 0 30px;
  border: 1px solid #0f3291;
}

#company .img img {
  width: 100%;
}


/*FAQ*/
#faq {
  background-color: #fff;
  position: relative;
}

.ac {
  position: relative;
}

.ac-child span {
  color: #0f3291;
  font-weight: 500;
}

.ac-parent {
  position: relative;
  border-bottom: 1px solid #00aff0;
  text-align: left;
  line-height: 50px;
  cursor: pointer;
  padding: 20px 0 20px 30px;
  font-weight: 500;
  color: #000;
}

.ac-parent:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 45%;
  right: 30px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #1E2124;
  border-bottom: 3px solid #1E2124;
  transform: translateY(-50%) rotate(45deg);
}

.ac-parent.open:after {
  top: 55%;
  transform: translateY(-50%) rotate(225deg);
}
/* 
.ac-parent:first-child {
  border-top: 1px solid #dbdbdb;
} */

.ac-parent:last-of-type {
  border-bottom: none;
}

.ac-child {
  display: none;
  padding: 20px 30px;
  border-bottom: 1px solid #A8D4FF;
  margin-left: 0;
}

.ac-child:last-of-type {
  border-bottom: none;
}

.ac-parent span {
  font-size: 1.5rem;
  margin-right: 20px;
  color: #00AFF0;
}

/*CONTACT*/
#contact {
  background: #E7F7FF;
}

blockquote {
  margin: 0 auto;
}

blockquote.step input.text,
blockquote.step textarea {
  float: left;
  width: 100%;
  margin: 0 0 10px;
  padding: 15px;
  background-color: #fff;
  border: solid 1px #dbdbda;
  border-radius: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 1rem;
}

blockquote.step label.item {
  margin: 0 20px 0 0;
  font-size: 1.1rem;
  text-align: left;
  clear: both;
  width: 100%;
}

blockquote.step label {
  display: block;
  padding: 10px 0;
  margin-right: 15px;
  border-radius: 0;
  box-sizing: border-box;
}

blockquote.step .text {
  display: block;
}

blockquote .w_fl {
  width: 48%;
  float: left;
}

blockquote .w_fr {
  width: 48%;
  float: right;
}

.select-os .check_box {
  clear: both;
}

input {
  display: none;
}

/* メルマガパーミッション */
input[type=checkbox] {
  display: block;
  clear: both;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  cursor: pointer;
  accent-color: #007AFF;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.checkbox-container .checkbox-label {
  border: none;
  background: none;
  padding: 0 !important;
  display: inline-block;
  float: none;
  margin-bottom: 0;
  line-height: 1.4;
  cursor: pointer;
}

/* オートコンプリート機能デザイン変更 */
input:-webkit-autofill {
	box-shadow: 0 0 0px 1000px #fff inset;
}

blockquote.step label {
  display: block;
  /* float: left; */
  padding: 15px 0;
  margin-right: 15px;
  border-radius: 0;
  box-sizing: border-box;
}

.select-os label {
  color: #1e2124;
  border: 1px solid #dbdbda;
  text-align: center;
  display: inline-block;
  padding: 9px 40px !important;
  background: #fff;
  float: left;
  margin-bottom: 10px;
  cursor: pointer;
}

.required {
  color: #f01423;
}

.button {
  font-family: 'Noto Sans JP', sans-serif;
}

.button button {
  color: #fff;
  background: #00aff0;
  padding: 10px;
  display: block;
  width: 250px;
  cursor: pointer;
  margin: 0 auto;
  clear: both;
  border: 0px;
  background-size: 7px;
  background-repeat: no-repeat;
  background-position: 95% 50%;
  font-weight: 600;
  position: relative;
  top: 50px;
  font-size: 1.1rem;
  font-family: inherit;
  /* border-radius: 10px; */
  padding: 15px 30px;
  box-sizing: border-box;
  /* 矢印のため */
  position: relative;
  border: 2px solid #00aff0;
}

.button button:hover {
  opacity: 0.8;
}

/* 矢印背景 */
/* #contact button::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 83.5%;
  width: 20px;
  横幅 height: 20px;
  高さ border-radius: 50%;
  角の丸み background: #fff;
} */

/* 矢印 */
#contact button::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 1px;
  bottom: 0;
  left: 85.5%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.select-os input[type="radio"]:checked.sell_buy+label {
  color: #fff;
  background-color: #00aff0;
}

.check_box:checked+.label {
  color: #fff;
  background-color: #00aff0;
}

.select-os input[type="radio"]:checked.icon+label {
  color: #fff;
  background-color: #00aff0;
}

.inquirytable {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
}

.inquirytable tr:first-child {
  border-top: 1px solid #dbdbdb;
}

.inquirytable tr {
  border-bottom: 1px solid #dbdbdb;
}

.inquirytable th {
  text-align: left;
  padding: 10px 20px;
  width: 25%;
  border-right: 1px solid #dbdbdb;
  background: #00aff0;
  border-left: 1px solid #dbdbdb;
  color: #fff;
}

.inquirytable td {
  width: 60%;
  padding: 0 20px;
  border-right: 1px solid #dbdbdb;
  background: #fff;
}

.inquirytable_title {
  color: #1E2124;
  border-bottom: none;
  padding-bottom: 10px;
}

.button .return {
  color: #00aff0;
  font-weight: 600;
  background: #fff;
  /* padding: 8px 10px; */
  display: block;
  border: 2px solid #00aff0;
  cursor: pointer;
  margin: 0 auto;
}

#contact .button .return::after {
  content: "";
  position: absolute;
  border-top: 2px solid #00aff0;
  border-right: 2px solid #00aff0;
}

.error {
  color: #f01423;
}

#contact .encourage {
  text-align: center;
  margin-bottom: 20px;
}

.tb_br {
  display: none;
}

.br_768 {
  display: none;
}

.br_sp {
  display: none;
}

.sp_br_sp {
  display: none;
}

button.disabled-button {
  background-color: #ccc;
  cursor: not-allowed;
  border: 2px solid #ccc;
}

@media screen and (max-width: 1300px) {

  /* GN */
  nav {
    height: 92px;
  }

  .header {
    height: 92px;
  }

  .sp {
    display: block;
  }

  .sp_tel_mail {
    display: block;
    position: fixed;
    z-index: 3;
    right: 80px;
    top: 15px;
    cursor: pointer;
    text-align: center;
    margin: 5px;
  }

  .sp .tel_sp_02 a::before {
    content: url(../svg/tel_icon_03.svg);
    width: 20px;
    height: auto;
    display: block;
    position: absolute;
    top: 4px;
    left: -20%;
  }

  .sp .mail_sp_02 a {
    background: #fff;
    color: #00aff0;
    padding: 10px 30px;
    /* border-radius: 30px; */
  }

  .sp_contact {
    width: 50%;
    display: block;
    margin: auto;
  }

  .sp_contact li {
    position: relative;
  }

  .sp_tel_mail .tel_sp {
    list-style: none;
    float: left;
    margin-right: 15px;
  }

  .sp_tel_mail .mail_sp {
    list-style: none;
    float: left;
  }

  .tel_sp img {
    float: left;
    display: block;
    width: 50px;
  }

  .mail_sp img {
    float: left;
    display: block;
    width: 50px;
  }

  .header {
    width: 100%;
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
  }

  .hamburger {
    display: block;
    position: fixed;
    z-index: 5;
    right: 15px;
    top: 25px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #00aff0;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 8px;
  }

  .hamburger span:nth-child(2) {
    top: 17px;
  }

  .hamburger span:nth-child(3) {
    top: 26px;
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 4;
    left: 50%;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 50%;
    height: 100vh;
    background: #00aff0;
  }

  nav.globalMenuSp.active {
    transform: translateX(0%);
  }

  .globalMenuSp ul {
    list-style: none;
    padding-left: 0;
    margin-top: 100px;
  }

  .globalMenuSp ul li {
    margin: 35px 0;
    font-size: 1.2rem;
  }

  .globalMenuSp ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
  }

  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background: #fff;
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
  }

  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #fff;
  }

  .header img {
    width: 100%;
  }

  .header .logo {
    width: 220px;
    padding: 0 20px;
    height: 95px;
  }

  .header .logo img {
    width: 100%;
  }

  .header .pc {
    display: none;
  }

  #main {
    margin-left: 0;
    padding-top: 92px;
  }

  #main .copy {
    margin-left: 50px;
  }

  #main .copy_text {
    margin-left: 50px;
  }

  #main .medal_area {
    width: 36vw;
    top: 580px;
    margin-left: 50px;
  }

}

@media screen and (max-width: 1200px) {
  body {
    font-size: calc(var(--vw) * 1.25);
  }

  .pc .tel {
    margin: 0 10px;
  }

  .pc li .contact_btn {
    padding: 0vw 1vw;
  }

  .header ul li {
    margin: 45px 10px;
  }

  .header ul li a {
    font-size: 1.2vw;
  }

  #main .copy {
    font-size: 2.8rem;
  }

}

@media screen and (max-width: 1024px) {
  nav.globalMenuSp {
    left: 25%;
    width: 75%;
  }

  .globalMenuSp ul li {
    font-size: 1rem;
  }

  section .contents_inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 90px 40px;
  }

  .sp .tel_sp_02 a::before {
    width: 15px;
  }

  .globalMenuSp ul li {
    margin: 25px 0;
  }

  /* KV */
  #main {
    height: 73vw;
  }

  .main_image_anime {
    height: 73vw;
  }

  .background_none_area {
    height: 73vw;
  }

  #main .copy {
    font-size: 4.3vw;
    top: 20vw;
  }

  #main .copy_text {
    font-size: 1.1rem;
    top: 44vw;
  }

  #main .medal_area {
    top: 54vw;
    width: 38vw;
  }

  /* issue */

  #issue .balloon4 {
    padding: 25px 30px;
  }

  #issue .assignment .item img {
    width: 10%;
  }

  #issue .assignment .item p {
    width: 87%;
  }

  /* reason */
   #reason .report_box {
    width: 70%;
  }

  /* flow */
  .flow .flow02 {
    padding: 100px 17px 30px;
  }
  .flow02 .num {
    padding: 0 20px;
    height: 320px;
  }
  .flow02 .pink {
    padding: 0 20px;
    height: 320px;
  }
  .flow p {
    left: 13%;
  }
  .flow .basic_fee {
    top: -55px;
    left: 6%;
  }
  .flow .success_fee {
    top: -55px;
    left: 7%;
  }

  /* price */
   .lehman__illustration {
    padding: 34px 35px;
    width: auto;
  }

  .tb_br {
    display: block;
  }

  blockquote .w_fl {
    width: 100%;
  }

  blockquote .w_fr {
    width: 100%;
  }

  /* interview */


  /* company */
  #company {
    height: auto;
  }
  
  .company_dl {
    background: #fff;
    position: relative;
    width: 100%;
    right: auto;
    top: -40px;
  }
  .company_img {
    width: 60%;
    position: relative;
    left: 20%;
  }
  .company_img img {
    width: 100%;
    position: relative;
    top: 0;
  }
  .company_dl dt {
    width: 25%;
  }
  .company_dl dd {
    width: 75%;
  }
  .company_dl dl {
    width: 85%;
  }
  #company .img {
    margin: 10px 0 30px;
  }

  /* contact */
  #contact .contents_inner {
    padding-bottom: 110px;
  }

}

@media screen and (max-width: 820px) {
  .flow02 .num {
    padding: 0 11px;
  }
  .flow02 .pink {
    padding: 0 11px;
  }
  .flow p {
    left: 10%;
  }
  .flow .basic_fee {
    top: -55px;
    left: -3%;
  }
  .flow .success_fee {
    top: -55px;
    left: -3%;
  }
}

@media screen and (max-width: 768px) {
  .open_btn {
    width: 29.9%;
  }

  .header .logo {
    width: 200px;
    padding: 0 20px;
    height: 95px;
  }

  #main {
    height: 800px;
  }

  .mv_area {
    display: block;
    height: 800px;
  }
  
  .main_image_anime {
    height: 400px;
    width: 100%;
  }
  
  .background_none_area {
    height: 400px;
    width: 100%;
  }

  #main .copy {
    font-size: 2rem;
    top: 153px;
    text-align: center;
    /* position: relative; */
    position: static;
    margin: 0;
    padding-top: 35px;
  }

  #main .copy_text {
    font-size: 1rem;
    top: 130px;
    text-align: center;
    /* position: relative; */
    position: static;
    padding-top: 20px;
  }

  #main .medal_area {
    position: static;
    margin: 0 auto;
    padding-top: 23px;
    width: 330px;
  }

  .br_tb {
    display: block;
  }

  .row img {
    width: 90%;
  }

  h2 {
    margin-bottom: 50px;
  }

  .contact_btn_02 a {
    font-size: 1.1rem;
    padding: 17px 50px;
  }

  .contact_btn_03 a {
    font-size: 1.2rem;
    padding: 20px 35px;
  }

  /* price */
  .lehman__illustration .lehman__result {
    margin-left: 50px;
  }
  .lehman__illustration .lehman__result__item + .lehman__result__item {
    margin-left: 15px;
  }
  .lehman__illustration .lehman__result:before {
    left: -45px;
  }
  .lehman__illustration .lehman__result__item {
    padding: 15px 10px;
    box-sizing: border-box;
  }

  /* issue */

  #issue .assignment {
    margin-bottom: 20px;
  }

  #issue .balloon4 {
    padding: 35px 15px;
  }

  #issue .issue_contents_inner {
    padding: 50px 40px 50px;
  }

  #issue .assignment .item {
    width: 100%;
  }

  #issue .assignment .item img {
    width: 7%;
  }

  #issue .assignment .item p {
    width: 90%;
  }

  /* reason */
  
  #reason .report_box {
    width: 100%;
  }
  #reason .report_li {
    padding-left: 1.5rem;
  }
  #reason .img_box {
    flex-direction: column;
  }
  #reason .img_box.column_3 .img {
    width: 100%;
  }
  #reason .img_box .img:last-child {
    margin: 20px 20px 20px 0;
  }
  #reason .img_box.column_2 .img {
    width: 100%;
  }

  #reason h3 {
    font-size: 1.4rem;
  }

  .br_768 {
    display: block;
  }

  #reason .contents_inner.reason_inner .point {
    margin-top: 15px;
  }


  /* flow */
  .flow .flow02 {
    padding: 100px 14px 30px;
  }
  .flow {
    display: block;
    margin-top: 0;
  }
  #flow .contents_inner {
    padding-bottom: 70px;
  }
  #flow ul {
    text-align: center;
    width: 100%;
  }
  .flow_box {
    display: block;
  }
  .flow .flow02 {
    writing-mode: horizontal-tb;
    padding: 100px 14px 0px;
  }
  .flow .triangle2 {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #00aff0;
    top: 20px;
    display: inline-block;
  }
  .flow .sp_triangle {
    margin-top: 40px;
  }
  .flow02 .num {
    height: auto;
    padding: 15px;
    display: block;
  }
  .flow .flow02 {
    float: none;
    padding-top: 20px;
  }
  .flow li {
    float: none;
  }
  .flow02 .pink {
    height: auto;
    padding: 15px;
    display: block;
  }
  .flow02.fee {
    /* margin: 0 0 120px 0; */
    margin: 0 0 60px 0;
  }
  .flow_box {
    text-align: center;
    padding-bottom: 0;
    float: none;
  }
  .flow p {
    left: 0;
    width: 100%;
  }
  .flow .basic_fee {
    top: 72px;
    left: 0;
    right: 0;
    margin: 40px auto 0;
    padding: 15px 15px 15px;
    font-size: 0.8rem;
    /* border-radius: 50%; */
    writing-mode: horizontal-tb;
    width: 130px;
    height: auto;
    border-radius: 50%;
  }
  .flow .basic_fee::before {
    top: -25px;
    left: 46%;
    margin: 0;
    padding: 4px 4px;
    border-radius: 50%;
  }
  .flow .basic_fee::after {
    top: -13px;
    left: 46%;
    margin: 0;
    padding: 4px 4px;
    border-radius: 50%;
  }
  .flow .success_fee {
    top: 72px;
    left: 0;
    right: 0;
    margin: 40px auto 0;
    padding: 15px 15px 15px;
    font-size: 0.8rem;
    /* border-radius: 50%; */
    writing-mode: horizontal-tb;
    width: 130px;
    height: auto;
    border-radius: 50%;
  }
  .flow .success_fee::before {
    top: -25px;
    left: 46%;
    margin: 0;
    padding: 4px 4px;
    border-radius: 50%;
  }
  .flow .success_fee::after {
    top: -13px;
    left: 46%;
    margin: 0;
    padding: 4px 4px;
    border-radius: 50%;
  }

  /* interview */
  #interview .interview_01 {
    display: block;
  }

  #interview .interview_item .image_area {
    width: 100%;
    margin-bottom: 30px;
  }

  #interview .interview_item .text_area {
    width: 100%;
  }

  #interview .interview_02 {
    display: block;
  }


   /* COMPANY */
  #company .company_dl dl {
    width: 100%;
  }

  #company .company_dl dt {
    width: 35%;
  }

  #company .company_dl dd {
    width: 65%;
  }

  /* FAQ */
  .ac-parent {
    padding-right: 55px;
  }

  footer {
    display: grid;
    grid-template-columns: 1fr;
  }

  footer .logo {
    margin-top: 50px;
  }

  .footer_policy {
    text-align: center;
    margin-top: 10px;
  }

  footer .write {
    text-align: center;
  }

  /* メルマガパーミッション */
   .checkbox-container .checkbox-label {
    flex: 1;
    width: calc(100% - 80px);
    cursor: pointer;
  }

}

@media screen and (max-width: 600px) {
  #contact .button .return {
    margin-bottom: 20px;
  }

  #contact .inquirytable th {
    font-size: 0.8rem;
  }
}


@media screen and (max-width: 500px) {
  .br_sp {
    display: block;
  }

  .br_pc {
    display: none;
  }

  .br_768 {
  display: none;
}

  .sp_tel_mail {
    right: 60px;
  }

  .sp_tel_mail .tel_sp {
    margin-right: 10px;
  }

  #main {
    height: 750px;
  }

  .mv_area {
    height: 750px;
  }

  .main_image_anime {
    height: 350px;
  }

  #main .copy {
    top: 135px;
  }

  #main .copy_text {
    top: 115px;
    font-size: 0.9rem;
  }

  .header .logo {
    width: 50%;
    height: 80px;
  }

  .nav {
    height: 80px;
  }

  .header {
    height: 80px;
  }

  section .contents_inner {
    padding: 80px 25px;
  }

  h2 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  h2 span {
    font-size: 1.1rem;
  }

  /* interview */
  #interview .interview_item .text_area .title {
    font-size: 1.3rem;
  }

  #interview .interview_tag li {
    font-size: 1.1rem;
  }

  /* price */
  .lehman__illustration .row {
    display: block;
  }

   .lehman__illustration .lehman__result:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4.036458333333334vw 2.278645833333333vw 0 2.278645833333333vw;
    border-color: #0a3291 transparent transparent transparent;
    left: 0;
    right: 0;
    top: -110vw;
    margin: auto;
  }
  .lehman__illustration .lehman__result .row {
    margin-top: 0;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .lehman__illustration .lehman__result {
    margin-left: 0;
    margin-top: 60px;
  }
  .lehman__illustration .lehman__result__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .lehman__illustration .lehman__result__item + .lehman__result__item {
    margin-left: 0;
  }

  .lehman__illustration .lehman__result__item {
    padding: 15px 20px;
    box-sizing: border-box;
  }

  /* issue */

  #issue .lead {
    font-size: 1.1rem;
  }

  #issue .issue_text {
    font-size: 1.1rem;
  }

  #issue .balloon4 {
    padding: 35px 15px;
  }

  /* reason */

  #reason .point_inner {
    padding: 0 15px;
  }
  #reason h3 {
    font-size: 1.2rem;
  }

  .point_01 {
    margin-top: -40px !important;
  }

  /* flow */
  .flow_box {
    width: 100%;
  }

  .flow .sp_triangle {
    margin-top: 25px;
  }

  /* COMPANY */

  .company_dl dt {
    width: 100%;
    float: none;
  }
  .company_dl dd {
    width: 100%;
    margin-left: 0;
  }
  .company_dl {
    padding: 20px 0 15px;
  }


  /* FAQ */
  .ac-parent span {
    font-size: 1.2rem;
    margin-right: 10px;
    display: inline-block;
    float: left;
    position: relative;
    top: -5px;
  }

  .ac-parent {
    line-height: 1.5;
    padding: 20px 0;
    padding-right: 35px;
  }

  .ac-parent:after {
    right: 10px;
    width: 8px;
    height: 8px;
  }

  .ac-child {
    padding: 20px 15px;
  }

  .footer_policy a {
    font-size: 0.8rem;
    text-decoration: none;
    color: #1E2124;
  }

  .button .return {
    margin: 0 7px;
    /* width: 170px; */
    margin-bottom: 20px;
  }

  /*  */
  #pagetop {
    right: 20px;
  }

  #pagetop .arrow {
    width: 14px;
    height: 14px;
    top: 0px;
  }

  #pagetop a {
    padding: 10px 5px;
  }

  #pagetop a {
    width: 50px;
    height: 50px;
  }

  .sp_contact {
    width: 55%;
    display: block;
    margin: auto;
  }

  .sp_contact {
    width: 55%;
    margin-top: 50px;
  }

  .sp_contact li {
    width: 100%;
    float: none;
  }

  .tel_sp img {
    width: 45px;
  }

  .mail_sp img {
    width: 45px;
  }

  /* CONTACT */
  blockquote.step input.text,
  blockquote.step textarea {
    padding: 10px;
  }

  #contact .encourage {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 500;
  }


}