@charset "UTF-8";
/*============================================================
common
==============================================================*/
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  color: #033046;
  /*読み込み時ふわっと表示させる*/
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  margin: auto;
}

h1, h2, h3 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  /*-webkit-appearance: none;
  -moz-appearance: none;*/
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
a:link, a:visited, a:active {
  color: #033046;
}

.sp {
  display: inherit;
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (min-width: 769px) {
  .pc {
    display: inherit;
  }
}

.en {
  font-family: "Roboto", serif;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media (min-width: 769px) {
  .inner {
    width: 90%;
    max-width: 1040px;
  }
}

.flex_wrap {
  display: flex;
  display: -ms-flexbox;
  justify-content: normal;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal; /* Safari */
  flex-wrap: wrap;
}

.flex_wrap_between {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center; /* Safari */
  flex-wrap: wrap;
}

.flex_wrap_center {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center; /* Safari */
  flex-wrap: wrap;
}

.flex_wrap_middle {
  display: flex;
  display: -ms-flexbox;
  justify-content: normal;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center; /* Safari */
  flex-wrap: wrap;
}

.h2_ttl {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
}
.h2_ttl span {
  display: block;
  font-family: "Roboto", serif;
  font-size: 14px;
  font-size: 0.875rem;
  color: #0b80ae;
}
@media (min-width: 769px) {
  .h2_ttl {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .h2_ttl span {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.btn {
  display: inline-block;
  position: relative;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  background: #ff5f67;
  background-clip: padding-box;
  border-radius: 100vh;
  padding: 18px 60px;
  transition: all 0.3s ease-in-out 0s;
}
.btn span {
  font-size: 12px;
  font-size: 0.75rem;
  background: #fff;
  color: #ff5f67;
  padding: 0px 10px 1px;
  margin-right: 8px;
}
.btn:link, .btn:visited, .btn:active {
  color: #fff;
}
.btn:hover {
  opacity: 0.8;
}
@media (min-width: 769px) {
  .btn {
    width: 380px;
    font-size: 20px;
    font-size: 1.25rem;
    padding: 18px 80px;
  }
  .btn span {
    font-size: 16px;
    font-size: 1rem;
  }
}

/*============================================================
header
==============================================================*/
header {
  background: #f8fcfc;
}
header .header_inner {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  padding: 10px 15px;
}
header .navi ul {
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
header .btn {
  padding: 12px 30px 12px 20px;
}
header .btn span {
  font-size: 10px;
  font-size: 0.625rem;
  padding: 0 7px 1px;
}
header #g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.3s;
}
header #g-nav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header #g-nav li {
  list-style: none;
  text-align: center;
}
header #g-nav li a {
  font-size: 15px;
  font-size: 0.9375rem;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}
header #g-nav li .btn {
  width: 240px;
  padding: 12px 20px 12px 20px;
  margin-top: 10px;
}
header #g-nav li .btn::after {
  right: 20px;
  margin-top: -13px;
}
header #g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
header #g-nav.panelactive ul {
  display: block;
}
header .openbtn {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #0b80ae;
  border-radius: 0 0 4px 4px;
}
header .openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}
header .openbtn span:nth-of-type(1) {
  top: 15px;
}
header .openbtn span:nth-of-type(2) {
  top: 23px;
}
header .openbtn span:nth-of-type(3) {
  top: 31px;
}
header .openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
header .openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
header .openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
@media (min-width: 769px) {
  header .header_inner {
    height: 80px;
    padding: 0 20px;
  }
  header .navi ul {
    font-size: 1.300390117vw;
  }
  header .navi ul li {
    margin: 0 15px;
  }
  header .btn {
    width: auto;
    font-size: 1.300390117vw;
    padding: 12px 40px;
  }
  header .btn::after {
    right: 20px;
    margin-top: -12px;
  }
}
@media (min-width: 1040px) {
  header .navi ul {
    font-size: 14px;
    font-size: 0.875rem;
  }
  header .btn {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

/*============================================================
kv
==============================================================*/
#kv {
  background: url(../img/kv_bg_sp.jpg) no-repeat center/cover;
  padding: 20px 0 0;
}
#kv .kv_txt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#kv .subcopy {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #0b80ae;
  font-weight: bold;
  border-bottom: solid 3px #0b80ae;
  margin-bottom: 20px;
}
#kv .subcopy span {
  padding-top: 0.2em;
  background-position: top left -1px;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  background-image: radial-gradient(0.15em 0.15em at center center, #0b80ae, #0b80ae 100%, transparent, transparent);
}
#kv h1 {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
}
#kv ul {
  margin: -60px 0 20px;
}
#kv li {
  background: url(../img/kv_cir.png) no-repeat center/cover;
  width: 81px;
  height: 81px;
  font-size: 11px;
  font-size: 0.6875rem;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 1px;
}
#kv li span {
  font-size: 18px;
  font-size: 1.125rem;
}
#kv li .h-million {
  font-size: 16px;
  font-size: 1rem;
}
#kv .btn_wrap {
  text-align: center;
}

@media (min-width: 769px) {
  #kv {
    background: url(../img/kv_bg.jpg) no-repeat center/cover;
    padding: 0;
  }
  #kv .kv_txt {
    display: block;
  }
  #kv .subcopy {
    font-size: 28px;
    font-size: 1.75rem;
  }
  #kv h1 {
    font-size: 56px;
    font-size: 3.5rem;
  }
  #kv ul {
    margin: 30px 0 40px;
  }
  #kv li {
    width: 131px;
    height: 131px;
    font-size: 17px;
    font-size: 1.0625rem;
  }
  #kv li span {
    font-size: 35px;
    font-size: 2.1875rem;
  }
  #kv li .h-million {
    font-size: 28px;
    font-size: 1.75rem;
  }
  #kv .btn_wrap {
    text-align: left;
  }
}
/*============================================================
cta
==============================================================*/
.cta {
  text-align: center;
  background: url(../img/cta_bg.jpg) no-repeat center/cover;
  padding: 60px 0;
}
.cta h2 {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.cta h2 span {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  color: #0b80ae;
  border-bottom: solid 3px #0b80ae;
  padding: 0 20px;
  margin-bottom: 20px;
}
.cta .cta_wrap {
  margin-top: 30px;
}
.cta .cta_tel {
  position: relative;
  text-align: left;
  font-weight: bold;
  padding-left: 62px;
  margin-right: 35px;
  margin-bottom: 30px;
}
.cta .cta_tel::before {
  content: "";
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  content: url(../img/tel_ico.png);
  vertical-align: middle;
}
.cta .phone {
  font-family: "Roboto", serif;
  font-size: 30px;
  font-size: 1.875rem;
}
.cta .time {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: -4px;
}

@media (min-width: 769px) {
  .cta h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  .cta h2 span {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .cta .cta_tel {
    margin-bottom: 0;
  }
  .cta .phone {
    font-size: 36px;
    font-size: 2.25rem;
  }
}
/*============================================================
worry
==============================================================*/
#worry {
  background: #f2fbfc;
  padding: 30px 0 80px;
}
#worry h2 {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#worry ul {
  margin-top: 20px;
}
#worry li {
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  padding-left: 32px;
  margin-bottom: 22px;
}
#worry li span {
  background: linear-gradient(transparent 60%, #ffd63e 60%);
}
#worry li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  content: url(../img/check_ico.png);
  vertical-align: middle;
  margin-top: -10px;
}

@media (min-width: 769px) {
  #worry {
    padding: 30px 0 100px;
  }
  #worry h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  #worry ul {
    margin-top: 0;
    margin-left: 40px;
  }
}
/*============================================================
about
==============================================================*/
#about {
  padding: 0 0 10px;
}
#about ul {
  margin-top: 50px;
}
#about li {
  margin-bottom: 50px;
}
#about h2 {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
#about h2 span {
  display: block;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  color: #fff;
  background: #033046;
  border-radius: 100vh;
  padding: 20px 0;
  margin: -35px auto 30px;
}
#about h2 span::after {
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  content: "";
  margin: auto;
  left: 0;
  right: 0;
  border-right: 10px solid transparent;
  border-top: 16px solid #033046;
  border-left: 10px solid transparent;
  bottom: -16px;
}
#about h3 {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 20px;
}
#about h3 span {
  font-family: "Roboto", serif;
  font-size: 60px;
  font-size: 3.75rem;
  color: #0b80ae;
  margin-right: 25px;
}

@media (min-width: 769px) {
  #about {
    padding: 0 0 30px;
  }
  #about li:nth-child(even) {
    flex-direction: row-reverse;
  }
  #about .txt {
    width: 50%;
  }
  #about h2 {
    font-size: 36px;
    font-size: 2.25rem;
  }
  #about h2 span {
    width: 460px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  #about h3 {
    font-size: 24px;
    font-size: 1.5rem;
  }
  #about h3 span {
    font-size: 70px;
    font-size: 4.375rem;
  }
}
@media (min-width: 1060px) {
  #about .flex_wrap_between {
    display: flex;
    display: -ms-flexbox;
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
}
/*============================================================
reason
==============================================================*/
#reason {
  background: #f2fbfc;
  padding: 60px 0 0;
}
#reason ul {
  align-items: start;
}
#reason li {
  margin-bottom: 50px;
}
#reason li:last-child {
  margin-bottom: 0;
}
#reason h3 {
  text-align: center;
  font-weight: bold;
  margin: 10px 0;
}

@media (min-width: 769px) {
  #reason {
    padding: 80px 0 30px;
  }
  #reason h3 {
    margin: 10px 0 20px;
  }
  #reason li {
    width: 28%;
  }
  #reason li:last-child {
    margin-bottom: 50px;
  }
}
/*============================================================
comparison
==============================================================*/
#comparison {
  padding: 60px 0;
}
#comparison figure {
  margin-top: 50px;
}

@media (min-width: 769px) {
  #comparison {
    padding: 80px 0;
  }
}
/*============================================================
case
==============================================================*/
#case {
  position: relative;
  background-color: #f2fbfc;
  padding: 60px 0 20px;
  overflow: hidden;
}
#case .flex_wrap_center {
  align-items: flex-start;
  padding: 0 30px 20px;
}

.case_list {
  margin: 50px 0;
}

.case_item {
  width: 335px;
  max-width: 600px;
  background-color: #fff;
  margin: 0 20px;
  border-radius: 10px;
}
.case_item h3 {
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: #0b80ae;
  padding: 12px 0;
  margin-bottom: 10px;
  border-radius: 10px 10px 0 0;
}
.case_item .cm {
  border-top: solid 1px #d9d9d9;
  padding-top: 20px;
}

.case_img .job {
  text-align: center;
  font-weight: 700;
  margin-top: 10px;
}

.case_info {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  margin: 20px 0;
}
.case_info .price, .case_info .days {
  width: 33%;
  text-align: center;
  margin: 0 10px;
}
.case_info .label {
  display: block;
  color: #0b80ae;
  background-color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 4px;
  border: solid 1px #0b80ae;
  border-radius: 100vh;
}
.case_info .value {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0b80ae;
}
.case_info .price .label {
  color: #ff5f67;
  border-color: #ff5f67;
}
.case_info .price .value {
  color: #ff5f67;
}

.slick-dots {
  bottom: -35px;
}

.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  z-index: 10;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-prev:before, .slick-next:before {
  font-size: 40px;
  color: #0b80ae;
  opacity: 1;
}

@media (min-width: 769px) {
  #case {
    padding: 80px 0;
  }
  #case .inner {
    width: 80%;
  }
  .case_item {
    width: 80%;
    margin: 0 10px;
  }
  .case_item h3 {
    font-size: 22px;
    font-size: 1.375rem;
  }
  .case_img {
    padding: 10px 30px 10px 0;
  }
  .case_txt {
    width: 60%;
  }
  .slick-prev {
    left: -60px;
  }
  .slick-next {
    right: -60px;
  }
}
/*============================================================
data
==============================================================*/
#data {
  padding: 60px 0;
}
#data .txt {
  text-align: center;
  margin: 40px 0;
}

.data_list {
  display: flex;
  display: -ms-flexbox;
  justify-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: normal;
  -webkit-box-align: normal;
  -ms-flex-align: normal;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}

.data_item {
  display: flex;
  display: -ms-flexbox;
  justify-content: normal;
  -webkit-box-pack: normal;
  -ms-flex-pack: normal;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 15px;
  text-align: center;
  background-color: #d3ebf3;
  padding: 20px;
  border-radius: 10px;
}
.data_item h3 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
}
.data_item .num {
  font-size: 20px;
  font-size: 1.25rem;
}
.data_item .en {
  font-size: 36px;
  font-size: 2.25rem;
}
.data_item .ex {
  font-size: 10px;
  font-size: 0.625rem;
}
.data_item figure img {
  width: 40px;
  height: 40px;
}

.data_txt {
  text-align: left;
}

@media (min-width: 769px) {
  .data_list {
    flex-direction: row;
    gap: 20px;
  }
  .data_item {
    display: block;
    margin: 10px 0;
  }
  .data_item h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .data_item .en {
    font-size: 48px;
    font-size: 3rem;
  }
  .data_item .ex {
    text-align: right;
    font-size: 12px;
    font-size: 0.75rem;
  }
  .data_item figure img {
    width: 80px;
    height: 80px;
  }
  .data_txt {
    text-align: center;
  }
}
/*============================================================
flow
==============================================================*/
#flow {
  background: #f2fbfc;
  padding: 60px 0;
}

.flow_list {
  margin-top: 40px;
}

.flow_item {
  width: 280px;
  position: relative;
  background: #fff;
  border-radius: 4px;
  padding: 10px 15px 20px;
  margin: 0 5px;
}
.flow_item .num {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  text-align: center;
  color: #fff;
  line-height: 1;
  font-family: "Roboto", serif;
  background: #0b80ae;
  border-radius: 50vh;
  width: 80px;
  height: 80px;
  padding: 20px;
  margin: 0 auto;
}
.flow_item .num span {
  display: block;
  font-size: 36px;
  font-size: 2.25rem;
}
.flow_item .num_pc {
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
}
.flow_item h3 {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 15px;
}
.flow_item a {
  text-decoration: underline;
}

@media (min-width: 769px) {
  #flow {
    padding: 80px 0;
  }
  #flow .flex_wrap_between {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: normal;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
  }
  .flow_list {
    margin-top: 80px;
  }
  .flow_item {
    border: solid 2px #0b80ae;
    width: 22%;
    /*height: 240px;*/
    padding: 50px 15px 30px;
    margin: 0;
  }
  .flow_item h3 {
    margin-top: 0;
  }
  .flow_item a {
    text-decoration: none;
    pointer-events: none;
  }
}
/*============================================================
faq
==============================================================*/
#faq {
  padding: 60px 0;
}

.faq_box {
  width: 96%;
  max-width: 800px;
  margin: 60px auto 0;
}

.accordion {
  margin-bottom: 15px;
}

.toggle {
  display: none;
}

.accordion_ttl {
  display: block;
  position: relative;
  text-align: left;
  color: #033046;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4rem;
  background: #d3ebf3;
  padding: 10px 50px 10px 10px;
  z-index: 1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-radius: 5px;
}
.accordion_ttl p {
  display: flex;
  align-items: center;
}
.accordion_ttl span {
  flex-shrink: 0;
  display: inline-block;
  text-align: center;
  color: #0b80ae;
  font-size: 42px;
  font-size: 2.625rem;
  line-height: 4rem;
  font-family: "Roboto", serif;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion_ttl::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #033046;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}
.accordion_ttl::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #033046;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.5s;
}

.accordion_ttl,
.accordion_txt {
  font-weight: bold;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.accordion_txt {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}
.accordion_txt .answer {
  flex-shrink: 0;
  display: inline-block;
  text-align: center;
  color: #ff5f67;
  font-size: 42px;
  font-size: 2.625rem;
  font-family: "Roboto", serif;
  margin-right: 20px;
  margin-top: 10px;
}
.accordion_txt p {
  display: flex;
  align-items: center;
}

.toggle:checked + .accordion_ttl + .accordion_txt {
  height: auto;
  padding: 20px;
  transition: all 0.3s;
}

.toggle:checked + .accordion_ttl::after {
  transform: translateY(-50%) rotate(0);
}

@media (min-width: 769px) {
  .accordion_ttl {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 66px 0 15px;
  }
  .accordion_txt {
    font-size: 16px;
    font-size: 1rem;
  }
}
/*============================================================
form
==============================================================*/
#form .h2_ttl {
  margin-bottom: 20px;
}
#form .h2_ttl span {
  display: block;
  color: #033046;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}

.form_box {
  max-width: 800px;
  background: #fff;
  padding: 20px 0 0;
  margin: 0 auto 0;
}

.contact_item {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 10px;
}
.contact_item p {
  display: flex;
  font-size: 14px;
  font-size: 0.875rem;
  align-items: center;
  font-weight: bold;
  margin-bottom: 4px;
}
.contact_item .check {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 18px;
}

.contact_req {
  position: relative;
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  background: #ff5f67;
  padding: 2px 9px 3px;
  margin-left: 6px;
  border-radius: 100vh;
}

.contact_input, .contact_select {
  width: 100%;
  height: 40px;
  background: #e6f7f9;
  padding: 8px 16px 8px;
  border: 1px solid #cfd0cc;
  border-radius: 5px;
}

.input_wrap {
  position: relative;
}

.contact_input.ok {
  background: #fff;
}

.contact_req.ok::before, .contact_req.ok::after {
  display: block;
  content: "";
  position: absolute;
  margin: auto;
}

.contact_req.ok::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #25B432;
  top: 0;
  bottom: 0;
  right: -30px;
}

.contact_req.ok::after {
  width: 6px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  top: -2px;
  bottom: 0;
  transform: rotate(45deg);
  right: -23px;
}

.contact_box {
  height: 100px;
}

.radio_area {
  margin-bottom: 30px;
}
.radio_area label {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.radio_area label input {
  margin-right: 5px;
}

.contact_btn {
  width: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  padding: 16px 0;
}

h6.error {
  color: #ff5f67;
}

.form_box input[type=text].error, .form_box input[type=email].error, .form_box select.error {
  background: #FCE6E6 !important;
  border: solid 1px #ff5f67;
}

.center {
  text-align: center;
}

@media (min-width: 769px) {
  #form .h2_ttl {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .form_box {
    padding: 0;
  }
  .contact_btn {
    width: 50%;
  }
}
/*============================================================
privacypolicy
==============================================================*/
.policy {
  border-top: 1px solid #cfd0cc;
}

#privacypolicy {
  font-size: 14px;
  font-size: 0.875rem;
  width: 100%;
  background: #fff;
  border: 1px solid #cfd0cc;
  padding: 10px;
  height: 80px;
  overflow: auto;
  margin: 10px 0;
}
#privacypolicy h2 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
}
#privacypolicy h3 {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 20px;
  margin-bottom: 10px;
}
#privacypolicy p {
  font-weight: normal;
}

/*============================================================
company
==============================================================*/
#company {
  padding: 40px;
}
#company figure {
  margin-bottom: 20px;
}
#company h3 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#company p {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 10px;
}
#company a {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}

@media (min-width: 769px) {
  #company figure {
    margin-right: 50px;
    margin-bottom: 0;
  }
}
/*============================================================
thanks
==============================================================*/
#thanks {
  background: #fff;
  color: #033046;
  padding: 80px 0;
}
#thanks .txt_box {
  text-align: center;
  margin: 40px 0;
}
#thanks .btn_wrap {
  margin-top: 50px;
}

/*============================================================
footer
==============================================================*/
footer {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  font-family: "Roboto", serif;
  background: #033046;
  text-align: center;
  padding: 40px 0;
}

/*============================================================
page_wrap
==============================================================*/
@media (min-width: 769px) {
  .page_wrap {
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -ms-flex-pack: space-between;
    align-items: normal;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
  }
  .page_left {
    width: 75%;
  }
  #form {
    background-color: #fff;
    width: 25%;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    z-index: 10001;
    display: flex;
    display: -ms-flexbox;
    justify-content: normal;
    -webkit-box-pack: normal;
    -ms-flex-pack: normal;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
  }
  #form .inner {
    padding: 0;
  }
}
/*============================================================
cta_line
==============================================================*/
#cta_line {
  background: #f2fbfc;
  padding: 0 0 20px;
}

.line_btn {
  display: block;
  background: #00B900;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 769px) {
  .line_btn {
    width: 460px;
  }
}/*# sourceMappingURL=style.css.map */