@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inconsolata&display=swap");
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

html {
  font-size: 10px;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ol,
ul {
  list-style: none;
}

img,
video {
  max-width: 100%;
}

img {
  border-style: none;
}

button {
  border: 0;
  padding: 0;
  outline: none;
  cursor: pointer;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
}

[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

.hide {
  display: none;
}

.show {
  display: initial;
}

.tablet {
  display: none !important;
}

.sp {
  display: none !important;
}

.pc {
  display: block !important;
}

.fadein {
  transition: all 0.25s ease-out 0.25s;
  opacity: 0;
}
.fadein.scrollin {
  opacity: 1;
}

.fadein_up {
  transition: all 0.25s ease-out 0.25s;
  transform: translate(0, 10%);
  opacity: 0;
}
.fadein_up.scrollin {
  transform: translate(0, 0);
  opacity: 1;
}

.fadein_left {
  transition: all 0.5s ease-out 0.25s;
  transform: translateX(10%);
  opacity: 0;
}
.fadein_left.scrollin {
  transform: translateX(0);
  opacity: 1;
}

.fadein_right {
  transition: all 0.5s ease-out 0.25s;
  transform: translateX(-10%);
  opacity: 0;
}
.fadein_right.scrollin {
  transform: translateX(0);
  opacity: 1;
}

.fadein_order > * {
  transition: all 0.25s ease-out 0.25s;
  transform: translateY(10%);
  opacity: 0;
}
.fadein_order > *.scrollin {
  transform: translateY(0);
  opacity: 1;
}

.fadein_order_right > * {
  transition: all 0.5s ease-out 0.25s;
  transform: translateX(10%);
  opacity: 0;
}
.fadein_order_right > *.scrollin {
  transform: translateX(0);
  opacity: 1;
}

.fadein_order_left > * {
  transition: all 0.5s ease-out 0.25s;
  transform: translateX(10%);
  opacity: 0;
}
.fadein_order_left > *.scrollin {
  transform: translateX(0);
  opacity: 1;
}

html {
  min-height: 100vh;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "Roboto", sans-serif;
  color: #404040;
}
body.user {
  background-color: #EFEAE5;
}
body.vets {
  background-color: #E1E4EA;
}
body.corp {
  background-color: #F4F6F9;
}

a {
  text-decoration: none;
  color: blue;
  transition: 0.25s ease-out;
}
a:hover {
  opacity: 0.5;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFF;
  width: 100%;
  height: 80px;
  padding-left: 32px;
  padding-right: 32px;
  border-bottom: 1px solid #E1E4EA;
  z-index: 6;
}
.l-header_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  img{
    width: 170px;
  }
}
.l-header_logo a {
  display: block;
}
.l-header_btn_list {
  display: flex;
  margin: 16px 0;
}
.l-header_btn_list > * {
  position: relative;
  margin-right: 16px;
}
.l-header_btn_list > *:nth-last-child(1) {
  margin-right: 0;
}
.l-header_nav {
  position: fixed;
  top: 65px;
  right: 0;
  z-index: 7;
  transform: translateX(120%);
  transition: 0.5s ease-in-out;
}
.open .l-header_nav {
  transform: translateX(0);
}

.l-footer {
  padding-top: 48px;
}
.l-footer__corp {
  padding: 24px 0;
}
.l-footer__corp > * {
  display: flex;
  align-items: center;
}
.l-footer__corp .corp_copyright {
  font-size: 14px;
  font-size: 1.4rem;
  max-width: 33.33%;
  flex-basis: 33.33%;
}
.l-footer__corp .corp_menu {
  font-size: 12px;
  font-size: 1.2rem;
  max-width: 66.66%;
  flex-basis: 66.66%;
}
.l-footer__corp .corp_menu > * {
  display: inline-block;
  margin-right: 1em;
}
.l-footer__corp .corp_menu > * a {
  color: #404040;
}
.l-footer_column {
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  margin-bottom: 100px;
}
.l-footer_left {
  max-width: 50%;
  flex-basis: 50%;
}
.l-footer_right {
  display: flex;
  max-width: 50%;
  flex-basis: 50%;
}
.l-footer_logo {
  padding-bottom: 10px;
}
.l-footer_description {
  padding-top: 8px;
  line-height: 1.75;
}
.l-footer_menu {
  flex: 1;
}
.l-footer_menu a {
  display: block;
  text-decoration: none;
  font-weight: bold;
  color: #4d4d4d;
  padding: 8px 0;
  transition: 0.25s ease-out;
}
.l-footer_menu a:hover {
  opacity: 0.5;
}
.l-footer_copyright {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: center;
  padding: 16px 0;
  border-top: 1px solid rgba(77, 77, 77, 0.1);
}

.l-main {
  padding-bottom: 160px;
}

.l-page {
  padding-top: 80px;
  min-height: 70vh;
  background-color: #FFF;
}
.vets .l-page {
  background-color: #F4F6F9;
}

.l-form_group {
  display: flex;
  margin-bottom: 24px;
}
.l-form_group:last-child {
  margin-bottom: 0;
}
.l-form_group-label {
  padding-top: 0.8em;
  max-width: 40%;
  flex-basis: 40%;
  font-weight: bold;
}
.l-form_group-label p {
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  padding-top: 4px;
}
.l-form_group-field {
  max-width: 60%;
  flex-basis: 60%;
}
.l-form_group-sub {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #e6e6e6;
  padding-top: 20px;
  padding-bottom: 4px;
}
.l-form_group-sub > * {
  margin-bottom: 8px;
}
.l-form_group-sub:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.l-form_group-sub__block {
  display: block;
}
.l-form_group-sub__block > * {
  max-width: 100% !important;
  flex-basis: 100% !important;
}
.l-form_group-sub-label {
  font-size: 14px;
  font-size: 1.4rem;
  padding-top: 1.25em;
  max-width: 25%;
  flex-basis: 25%;
}
.l-form_group-sub-field {
  max-width: 75%;
  flex-basis: 75%;
}

.form_set {
  display: flex;
  flex-wrap: wrap;
}
.form_set > * {
  max-width: 100%;
  flex-basis: 100%;
}
.form_set .text {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.75;
  max-width: 100%;
  flex-basis: 100%;
  padding-top: 8px;
}
.form_set .text__mini {
  font-size: 12px;
  font-size: 1.2rem;
}
.form_set__image {
  align-items: center;
}
.form_set__image > * {
  max-width: initial;
  flex-basis: initial;
  margin-right: 10px;
}
.form_set__image .uploader {
  max-width: calc(100% - 74px);
  flex-basis: calc(100% - 74px);
  margin-right: 0;
}
.form_set__inline {
  align-items: center;
}
.form_set__inline > * {
  max-width: initial !important;
  flex-basis: initial !important;
  width: auto !important;
  margin-right: 1em;
}
.form_set__inline > *:last-child {
  margin-right: 1em;
}
.form_set__inlinelist {
  align-items: center;
}
.form_set__inlinelist > * {
  max-width: initial !important;
  flex-basis: initial !important;
  width: auto !important;
  margin-right: 1em;
}
.form_set__inlinelist > *:last-child {
  margin-right: 1em;
}
.form_set__half > * {
  max-width: calc(50% - 5px);
  flex-basis: calc(50% - 5px);
  margin-right: 10px;
}
.form_set__birth > * {
  max-width: initial;
  flex-basis: initial;
  margin-right: 8px;
}
.form_set__change_account {
  justify-content: space-between;
  align-items: center;
}
.form_set__change_account .txt {
  max-width: calc(100% - 100px);
  flex-basis: calc(100% - 100px);
}
.form_set__change_account a {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: right;
  max-width: 100px;
  flex-basis: 100px;
}

.parts {
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px;
}
.parts > *:nth-last-child(1) {
  margin-bottom: 0;
}
.parts-section {
  border: 1px solid #bfbfbf;
  background-color: #808080;
  border-radius: 4px;
  margin-bottom: 30px;
  overflow: hidden;
}
.parts-section_name {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 400;
  margin-top: 60px;
  padding: 28px 0;
  border-top: 1px solid #000;
}
.parts-section_name:first-child {
  margin-top: 0;
  border-top: 0;
  padding-top: 16px;
}
.parts-ttl {
  color: #FFF;
  background-color: #000;
  border-bottom: 1px solid #bfbfbf;
  font-family: "Inconsolata", monospace;
  padding: 20px 16px;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.parts-body {
  padding: 12px;
  background-color: #FFF;
}

.mock_index {
  max-width: 1040px;
  margin: 0 auto;
  padding: 30px;
}
.mock_index > *:nth-last-child(1) {
  margin-bottom: 0;
}
.mock_index-section {
  background-color: #FFF;
  border: 1px solid #bfbfbf;
  border-radius: 4px;
  margin-bottom: 30px;
}
.mock_index-ttl {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 12px;
  font-weight: normal;
  letter-spacing: 0.1em;
}
.mock_index-list {
  font-size: 14px;
  font-size: 1.4rem;
  width: 100%;
  table-layout: fixed;
}
.mock_index-list tr　:nth-last-child(1) th,
.mock_index-list tr　:nth-last-child(1) td {
  border-bottom: 0;
}
.mock_index-list th,
.mock_index-list td {
  font-weight: normal;
  border-right: 1px solid #bfbfbf;
  border-top: 1px solid #bfbfbf;
  padding: 0 12px;
}
.mock_index-list th:last-child,
.mock_index-list td:last-child {
  border-right: 0;
}
.mock_index-list th {
  text-align: left;
}
.mock_index-list th a {
  display: block;
  text-decoration: none;
  padding: 12px 0;
  transition: 0.25s ease-out;
}
.mock_index-list th a::before {
  content: ">";
  margin-right: 0.25em;
}
.mock_index-list th a:hover {
  opacity: 0.25;
}
.mock_index-list td {
  width: 80px;
  text-align: center;
}
.user .mock_index-ttl {
  color: #FFF;
  background-color: #EA6464;
}
.user .mock_index-list a {
  color: #EA6464;
}
.vets .mock_index-ttl {
  color: #FFF;
  background-color: #37A6AD;
}
.vets .mock_index-list a {
  color: #37A6AD;
}
.common .mock_index-ttl {
  color: #1a1a1a;
  background-color: #e6e6e6;
}
.common .mock_index-list a {
  color: royalblue;
}

.l-complete {
  padding-top: 100px;
  text-align: center;
}
.l-complete-title {
  font-size: 20px;
  font-size: 2rem;
  padding-top: 40px;
}
.l-complete-lead {
  font-size: 16px;
  font-size: 1.6rem;
  padding-top: 20px;
}

.static {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75em;
}
.static > * {
  padding-top: 1em;
}
.static > *:first-child {
  padding-top: 0;
}
.static h3 {
  font-size: 20px;
  font-size: 2rem;
  padding-top: 3em;
}
.static ol,
.static ul {
  padding-top: 1.5em;
}
.static ol li,
.static ul li {
  padding-bottom: 0.5em;
  margin-left: 1.5em;
}
.static ul li {
  list-style-type: disc;
}
.static ol li {
  list-style-type: decimal;
}
.static .signature {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: right;
}

.top_vets > * {
  padding: 110px 0;
}
.top_vets > * .ttl {
  font-size: 28px;
  font-size: 2.8rem;
  padding-bottom: 40px;
  text-align: center;
  color: #37A6AD;
  font-weight: bold;
}
.top_vets > * .button {
  padding-top: 48px;
  text-align: center;
}
.top_vets .sec01 {
  background-color: #DEEEEF;
  color: #37A6AD;
}
.top_vets .sec01 .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top_vets .sec01 .picture img {
  vertical-align: bottom;
}
.top_vets .sec01 .copy {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  padding-left: 40px;
  line-height: 1.75;
}
.top_vets .sec02 {
  background-color: #FFF;
}
.top_vets .sec02 .lead {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.75;
  padding-bottom: 40px;
}
.top_vets .sec02 .sample {
  display: flex;
  justify-content: center;
}
.top_vets .sec02 .sample > * {
  max-width: calc(33.33% - 70px);
  flex-basis: calc(33.33% - 70px);
  margin: 0 35px;
  text-align: center;
  line-height: 1.75;
}
.top_vets .sec02 .sample .picture {
  padding-bottom: 32px;
}
.top_vets .sec02 .sample .name {
  padding-bottom: 12px;
  font-weight: bold;
}
.top_vets .sec02 .sample .desc {
  font-size: 12px;
  font-size: 1.2rem;
}
.top_vets .sec03 {
  background-color: #F4F6F9;
}
.top_vets .sec03 .feature {
  display: flex;
  justify-content: center;
}
.top_vets .sec03 .feature > * {
  max-width: calc(33.33% - 70px);
  flex-basis: calc(33.33% - 70px);
  margin: 0 35px;
  text-align: center;
  line-height: 1.75;
}
.top_vets .sec03 .feature .picture {
  padding-bottom: 32px;
}
.top_vets .sec03 .feature .name {
  padding-bottom: 12px;
  font-weight: bold;
}
.top_vets .sec03 .feature .desc {
  font-size: 12px;
  font-size: 1.2rem;
}
.top_vets .sec04 {
  position: relative;
  background-color: #FFF;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.top_vets .sec04::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #DEEEEF;
  z-index: 1;
  transform: skew(30deg) translate(-50%, 0);
}
.top_vets .sec04 > * {
  max-width: 50%;
  flex-basis: 50%;
}
.top_vets .sec04 .left {
  position: relative;
  order: 1;
  z-index: 2;
}
.top_vets .sec04 .right {
  position: relative;
  order: 2;
  z-index: 2;
}
.top_vets .sec04 .picture {
  margin-right: 10%;
}
.top_vets .sec04 .ttl {
  text-align: left;
}
.top_vets .sec04 .point > * {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.top_vets .sec04 .point .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 40px;
  flex-basis: 40px;
  height: 40px;
  border-radius: 20px;
  margin-right: 20px;
  background-color: #DEEEEF;
}
.top_vets .sec06 {
  background-color: #FFF;
}
.top_vets .sec06 .lead {
  font-size: 14px;
  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 40px;
}
.top_vets .sec06 .schedule {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}
.top_vets .sec06 .schedule dt {
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 130px;
  flex-basis: 130px;
  padding: 4px 0;
  margin-bottom: 16px;
  font-weight: bold;
  color: #37A6AD;
  background-color: #DEEEEF;
}
.top_vets .sec06 .schedule dd {
  font-size: 16px;
  font-size: 1.6rem;
  max-width: calc(100% - 130px);
  flex-basis: calc(100% - 130px);
  padding-left: 12px;
  margin-bottom: 16px;
}

.corp_message {
  padding-bottom: 80px;
}
.corp_about {
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
}
.corp_about-title {
  max-width: 33.33%;
  flex-basis: 33.33%;
}
.corp_about-title > * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.corp_about-body {
  max-width: 66.66%;
  flex-basis: 66.66%;
}
.corp_about-table {
  display: flex;
  flex-wrap: wrap;
  align-items: top;
  line-height: 1.75;
  border-bottom: 1px solid #E1E4EA;
  margin-bottom: 1.5em;
}
.corp_about-table > * {
  border-top: 1px solid #E1E4EA;
  max-width: 33.33%;
  flex-basis: 33.33%;
  color: #B5B8BF;
  padding: 20px 0;
}
.corp_about-table > *:nth-child(2n) {
  max-width: 66.66%;
  flex-basis: 66.66%;
  color: #404040;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 24px;
  color: #FFF;
  background-color: #EA6464;
  border: 1px solid #EA6464;
  text-decoration: none;
  cursor: pointer;
}
.btn--active {
  background-color: #FFF !important;
}
.btn--active.pink {
  color: #EA6464 !important;
  border-color: #EA6464;
}
.btn--active.green {
  color: #37A6AD !important;
  border-color: #37A6AD;
}
.btn--disable {
  border: 1px solid #E1E4EA !important;
  background-color: #FFF !important;
  background-color: #E1E4EA !important;
}
.btn__block {
  width: 100%;
}
.btn.pink {
  background-color: #EA6464;
  border-color: #EA6464;
}
.btn.green {
  background-color: #37A6AD;
  border-color: #37A6AD;
}
.btn:hover {
  opacity: 0.8;
}
.btn_list {
  padding-top: 40px;
}
.btn_list > * {
  margin: 24px auto 0;
  width: 33.33%;
}
.btn_list > *:first-child {
  margin-top: 0;
}
.btn_agree {
  font-size: 14px;
  font-size: 1.4rem;
  margin-top: 32px;
  text-align: center;
}
.btn_agree + * {
  padding-top: 16px;
}
.btn_agree > * {
  display: inline-block !important;
  width: initial !important;
}
.btn_agree a {
  color: #37A6AD;
}

.link {
  text-decoration: underline;
  cursor: pointer;
}
.link__noline {
  text-decoration: none;
}
.link__noline:hover {
  opacity: 0.5;
}
.link.green {
  color: #37A6AD;
}
.link.pink {
  color: #EA6464;
}
.link.darkBlue {
  color: #0C255E;
}
.link:hover {
  text-decoration: none;
  opacity: 1;
}

.flow {
  display: flex;
  justify-content: space-between;
  counter-reset: amount;
}
.l-main .flow {
  margin-top: 80px;
}
.flow > * {
  position: relative;
  flex: 1;
  text-align: center;
}
.flow > *::after {
  position: absolute;
  top: 17px;
  left: -50%;
  display: block;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #E1E4EA;
  z-index: 1;
}
.flow > *::before {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 16px;
  counter-increment: amount;
  content: counter(amount);
  font-family: Roboto, sans-serif;
  font-weight: bold;
  background-color: #E1E4EA;
  z-index: 2;
}
.flow > *:first-child::after {
  content: none;
}
.flow > *.active::before {
  color: #FFF;
}
.flow.green > *.active::after {
  background-color: #37A6AD;
}
.flow.green > *.active::before {
  background-color: #37A6AD;
}
.flow.pink > *.active::after {
  background-color: #EA6464;
}
.flow.pink > *.active::before {
  background-color: #EA6464;
}
.flow_name {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
  margin-top: 48px;
  color: #4d4d4d;
}
.green .active .flow_name {
  color: #37A6AD;
}
.pink .active .flow_name {
  /*color: #EA6464;*/
  color: #0C255E;
}
.flow__text {
  font-size: 12px;
  font-size: 1.2rem;
  display: none;
  color: #37A6AD;
  font-weight: bold;
  text-align: center;
}
.flow__text .step {
  font-size: 16px;
  font-size: 1.6rem;
  margin-left: 0.25em;
}
.flow__text .state {
  font-size: 16px;
  font-size: 1.6rem;
}

input[type=email],
input[type=password],
input[type=text] {
  font-size: 14px;
  font-size: 1.4rem;
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  border: 1px solid #E1E4EA;
  border-radius: 4px;
}
input[type=email].error,
input[type=password].error,
input[type=text].error {
  border-color: #DB4D4D;
  background-color: #FFF1EE;
}
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder {
  color: #bfbfbf;
}
input[type=email]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=text]:-moz-placeholder {
  opacity: 1;
  color: #bfbfbf;
}
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=text]::-moz-placeholder {
  opacity: 1;
  color: #bfbfbf;
}
input[type=email]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder {
  color: #bfbfbf;
}

.uploader {
  display: flex;
  align-items: center;
}
.uploader_toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  max-width: 150px;
  min-width: 150px;
  flex-basis: 150px;
  height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 4px;
  font-size: 12px;
  font-size: 1.2rem;
  color: #37A6AD;
  background-color: #FFF;
  border: 1px solid #37A6AD;
  text-decoration: none;
  transition: 0.25s ease-out;
  cursor: pointer;
}
.uploader_toggle input[type=file] {
  display: none;
}
.uploader_toggle:hover {
  opacity: 0.5;
}
.uploader_label {
  font-size: 14px;
  font-size: 1.4rem;
  color: #808080;
  padding-left: 12px;
  max-width: calc(100% - 100px);
  flex-basis: calc(100% - 100px);
}

textarea {
  font-size: 14px;
  font-size: 1.4rem;
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 150px;
  line-height: 1.75;
  padding: 12px;
  border: 1px solid #E1E4EA;
  border-radius: 4px;
}
textarea.small {
  min-height: 100px;
}
textarea.large {
  min-height: 300px;
}
textarea.error {
  border-color: #DB4D4D;
  background-color: #FFF1EE;
}
textarea::-webkit-input-placeholder {
  color: #bfbfbf;
}
textarea:-moz-placeholder {
  opacity: 1;
  color: #bfbfbf;
}
textarea::-moz-placeholder {
  opacity: 1;
  color: #bfbfbf;
}
textarea:-ms-input-placeholder {
  color: #bfbfbf;
}

.radio {
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  line-height: 48px;
  cursor: pointer;
}
.radio input {
  margin: 0 0.5em 0 0;
  cursor: pointer;
  display: none;
}
.radio input + * {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background-image: url(../images/common/icon_radio_off.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.radio input:checked + * {
  background-image: url(../images/common/icon_radio_on.svg);
}

.checkbox {
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  line-height: 48px;
  color: #4d4d4d;
  cursor: pointer;
}
.checkbox input {
  margin: 0 0.5em 0 0;
  cursor: pointer;
  display: none;
}
.checkbox input + * {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background-image: url(../images/common/icon_checkbox_off.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
.checkbox input:checked + * {
  background-image: url(../images/common/icon_checkbox_on.svg);
}

select {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  border: 1px solid #E1E4EA;
  height: 48px;
  line-height: 48px;
  padding-right: 32px;
  padding-left: 16px;
  border-radius: 4px;
  background-image: url(../images/common/icon_select.svg);
  background-repeat: no-repeat;
  background-position: right 10px top 22px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select.error {
  border-color: #DB4D4D;
  background-color: #FFF1EE;
}

.ttl-page {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  padding-top: 1.25em;
  padding-bottom: 1.75em;
  margin-top: 64px;
}
.ttl-page .en {
  font-size: 12px;
  font-size: 1.2rem;
  display: block;
  font-weight: normal;
  padding-top: 12px;
}
.corp .ttl-page .en {
  /*color: #EA6464;*/
  color: #0C255E;

}
.ttl-fill {
  font-size: 24px;
  font-size: 2.4rem;
  /*background-color: #EA6464;*/
  background-color: #0C255E;
  color: #FFF;
  padding: 60px 0;
}
.ttl-content {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0.75em 32px;
  background-color: #E1E4EA;
}

.container {
  background-color: #FFF;
  border-radius: 8px;
  margin-top: 32px;
  overflow: hidden;
}

.contents {
  padding: 32px;
}
.contents > *:first-child {
  margin-top: 0;
}

.list {
  padding: 8px 0;
}
.list > * {
  text-indent: -1em;
  margin-left: 1.5em;
  margin-top: 8px;
}
.list > *:first-child {
  margin-top: 0;
}
.list__error {
  color: #DB4D4D;
}

.wrap {
  width: 100%;
  max-width: 1040px;
  padding: 0 30px;
  margin: 0 auto;
}

.tag {
  font-size: 10px;
  font-size: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 16px;
  border-radius: 8px;
  padding: 0.25em 0.75em;
  margin: 0 0.75em;
  vertical-align: 0.15em;
  font-weight: normal;
}
.tag__required {
  color: #DB4D4D;
  background-color: rgba(219, 77, 77, 0.2);
}

.avatar {
  position: relative;
  background-color: #e6e6e6;
  background-image: url(../images/common/icon_user.svg);
  background-size: 50% auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.avatar > * {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.avatar.pink, .avatar.green {
  border: 3px solid #FFF;
}
.avatar.pink > *, .avatar.green > * {
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
.avatar.green {
  background-color: #CFE5E7;
}
.avatar.pink {
  background-color: #FFE7E1;
}

.plan input[type=radio] {
  display: none;
}
.plan input[type=radio]:checked + label {
  border-color: #37A6AD;
}
.plan input[type=radio]:disabled + label {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}
.plan_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
}
.plan_list > * {
  max-width: calc(25% - 12px);
  flex-basis: calc(25% - 12px);
  margin-right: 16px;
}
.plan_list > *:last-child {
  margin-right: 0;
}
.plan_block {
  position: relative;
  background-color: #FFF;
  border: 2px solid #FFF;
  border-radius: 4px;
  padding: 24px 16px 70px;
  text-align: center;
  cursor: pointer;
  transition: 0.5s ease-out;
}
.plan_block:hover {
  border-color: #37A6AD;
}
.plan_name {
  font-size: 14px;
  font-size: 1.4rem;
}
.plan_desc {
  font-size: 12px;
  font-size: 1.2rem;
  margin-top: 1em;
  min-height: 3.5em;
}
.plan_price {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: bold;
  margin-top: 4px;
}
.plan_price__del {
  text-decoration: line-through;
}
.plan_price > * {
  font-size: 14px;
  font-size: 1.4rem;
}
.plan_discont {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin-top: 8px;
  height: 1.25em;
  color: #37A6AD;
}
.plan_feature {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
  margin-top: 32px;
}
.plan_feature > * {
  position: relative;
  margin-top: 8px;
  padding-left: 1.5em;
}
.plan_feature > *:first-child {
  margin-top: 0;
}
.plan_feature > *::before {
  position: absolute;
  display: inline-block;
  content: url("../images/common/icon_check.svg");
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
}
.plan_preview {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  width: 100%;
  height: 40px;
  color: #37A6AD;
}
.plan > .list {
  margin-top: 32px;
  line-height: 1.75;
}

.txt {
  overflow-wrap: break-word;
}
.txt__small {
  font-size: 14px;
  font-size: 1.4rem;
}
.txt.left {
  text-align: left;
}
.txt.right {
  text-align: left;
}
.txt.center {
  text-align: center;
}
.txt.disabled {
  color: #B5B8BF;
}
.txt__conf {
  font-size: 14px;
  font-size: 1.4rem;
  display: block;
  padding: 16px 0;
  line-height: 1.5;
}
.txt__conf del {
  margin-right: 0.5em;
}

.icon__loading {
  -webkit-animation: rotation 1s 0s linear infinite normal;
  animation: rotation 1s 0s linear infinite normal;
}

@-webkit-keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sub_navi {
  border-bottom: 1px solid #E1E4EA;
}
.sub_navi > * {
  display: flex;
}
.sub_navi > * > * {
  margin: 0 10px;
}
.sub_navi > * > * a {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  display: block;
  padding: 20px 24px;
  color: #404040;
  border-bottom: 2px solid transparent;
}
.sub_navi.pink .current a {
  border-color: #EA6464;
}
.sub_navi.green .current a {
  border-color: #37A6AD;
}

.menu-trigger {
  z-index: 8;
}
.menu-trigger * {
  display: inline-flex;
  transition: all 0.4s;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.menu-trigger * span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 16px;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background-color: #404040;
}
.menu-trigger * span:nth-of-type(1) {
  top: 17px;
}
.menu-trigger * span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-trigger * span:nth-of-type(3) {
  bottom: 17px;
}
.min .menu-trigger * span {
  background-color: #0E3B5E;
}
.open .min .menu-trigger * span {
  background-color: #000;
}
.menu-trigger i {
  font-size: 24px;
  font-size: 2.4rem;
  color: #B5B8BF;
  transition: 0.25s ease-out;
}
.menu-trigger.active > * span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
}
.menu-trigger.active > * span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active > * span:nth-of-type(3) {
  transform: translateY(-6px) rotate(45deg);
}
.menu-trigger.active--back > * b.name--menu {
  opacity: 0;
}
.menu-trigger.active--back > * b.name--close {
  opacity: 0;
}
.menu-trigger.active--back > * b.name--back {
  opacity: 1;
}
.menu-trigger.active--back > * span {
  width: 14px;
}
.menu-trigger.active--back > * span:nth-of-type(1) {
  transform: translateX(6px) translateY(9px) rotate(-45deg);
}
.menu-trigger.active--back > * span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 0.8s forwards;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active--back > * span:nth-of-type(3) {
  transform: translateY(-6px) translateX(6px) rotate(45deg);
}
.menu-trigger:hover i {
  opacity: 0.5;
}

/*click後のスタイル*/
@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.pulldown_menu {
  visibility: hidden;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 7;
  box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translate(0, -10px);
  transition: 0.25s ease-out;
}
.over .pulldown_menu {
  visibility: visible;
  transform: translate(0, 0);
  opacity: 1;
}
.pulldown_menu > * {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
  background-color: #FFF;
  border: 1px solid #E1E4EA;
  border-radius: 4px;
}
.pulldown_menu > *::after, .pulldown_menu > *::before {
  position: absolute;
  right: 16px;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 8px 8px;
}
.pulldown_menu > *::before {
  top: -8px;
  border-color: transparent transparent #E1E4EA transparent;
}
.pulldown_menu > *::after {
  top: -6px;
  border-color: transparent transparent #FFF transparent;
}
.pulldown_menu a {
  display: block;
}
.pulldown_menu a:hover {
  opacity: 1;
  background-color: #F4F6F9;
}
.pulldown_menu-list {
  padding: 16px 0;
}
.pulldown_menu-list a {
  padding: 12px 24px;
  color: #4d4d4d;
}
.pulldown_menu-list a i {
  color: #B5B8BF;
  margin-right: 0.5em;
}
.pulldown_menu-box {
  padding: 8px 0;
}
.pulldown_menu-box_list {
  max-height: 346px;
  overflow-y: scroll;
}
.pulldown_menu-box_list > *.unread a::before {
  position: absolute;
  top: 16px;
  left: 16px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #EA6464;
}
.pulldown_menu-box .msg {
  line-height: 1.5em;
}
.pulldown_menu-box .ttl {
  display: inline-block;
  width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  text-decoration: underline;
}
.pulldown_menu-box .time-stamp {
  font-size: 12px;
  font-size: 1.2rem;
  color: #B5B8BF;
  padding-top: 4px;
}
.pulldown_menu-box a {
  position: relative;
  padding: 12px 16px 12px 40px;
  color: #4d4d4d;
}
.pulldown_menu-box a:hover .ttl {
  text-decoration: none;
}
.pulldown_menu__navi {
  width: 246px;
}
.pulldown_menu__notification {
  width: 346px;
}

.gnavi {
  width: 300px;
  height: calc(100vh - 65px);
  background-color: #FFF;
  overflow-y: scroll;
}
.gnavi > * {
  border-bottom: 1px solid #E1E4EA;
}
.gnavi > *:last-child {
  border-bottom: 0;
}
.gnavi-menu {
  width: 100%;
  padding: 12px 0;
}
.gnavi-menu_item {
  font-size: 16px;
  font-size: 1.6rem;
}
.gnavi-menu_item a {
  position: relative;
  display: block;
  padding: 16px 34px 16px 68px;
  color: #404040;
}
.gnavi-menu_item a i {
  position: absolute;
  top: 18px;
  left: 34px;
  color: #B5B8BF;
}
.gnavi-headding {
  display: flex;
  align-items: center;
  padding: 24px;
}
.gnavi-headding .account {
  margin-left: 16px;
}
.gnavi-headding .name {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.gnavi-headding .store_name {
  font-size: 10px;
  font-size: 1rem;
  padding-top: 4px;
}

.breadcrumb {
  background-color: #E1E4EA;
}
.breadcrumb a {
  color: #404040;
}
.breadcrumb a *:hover {
  text-decoration: none;
}
.breadcrumb .wrap > * {
  font-size: 14px;
  font-size: 1.4rem;
  display: flex;
  padding: 8px 0;
}
.breadcrumb .wrap > * > * {
  margin-right: 0.5em;
}
.breadcrumb .wrap > * > *::after {
  display: inline-block;
  content: ">";
  margin-left: 0.5em;
}
.breadcrumb .wrap > * > *:last-child::after {
  display: none;
}

.modal {
  position: relative;
  min-width: 300px;
  max-width: 486px;
  width: 100%;
  margin: 80px auto;
}
.modal-wrap {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto auto auto;
  z-index: 10;
  overflow-y: scroll;
}
.modal-wrap.open {
  display: flex;
  align-items: flex-start;
}
.modal-figure {
  padding: 40px 0;
}
.modal-title {
  font-size: 24px;
  font-size: 2.4rem;
  padding-bottom: 24px;
}
.modal-btn {
  font-size: 14px;
  font-size: 1.4rem;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  color: #B5B8BF;
  font-weight: 500;
  transition: 0.25s ease-out;
  cursor: pointer;
  z-index: 12;
}
.modal-btn i {
  font-size: 24px;
  font-size: 2.4rem;
}
.modal-btn:hover {
  opacity: 0.5 !important;
}
.modal-container {
  display: none;
  opacity: 0;
  text-align: center;
}
.modal-container > * {
  display: block;
  position: relative;
  z-index: 11;
}
.modal-container > * .inner {
  background-color: #FFF;
  border-radius: 4px;
  padding: 48px;
}
.modal-container .btn_list {
  padding-top: 24px;
}
.modal-container .btn_list > * {
  width: 100%;
}
.modal-form > * {
  margin-bottom: 0.5em;
}
.modal-form > *:nth-child(2n) {
  margin-bottom: 1.5em;
}
.modal-form > *:last-child {
  margin-bottom: 0;
}
.modal-form > * > * {
  margin-bottom: 0.5em;
}
.modal-form > * > *:last-child {
  margin-bottom: 0;
}
.modal-content {
  display: none;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9;
  opacity: 0;
}

@media screen and (max-width: 1024px) {
  .tablet {
    display: block !important;
  }
  .tablet_hide {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .l-header {
    height: 56px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .l-header_logo img {
    width: 146px;
    height: 40px;
  }
  .l-header_btn_list {
    margin: 0;
  }
  .l-header_btn_list > * {
    margin-right: 4px;
  }
  .l-header_btn_list > *:nth-last-child(1) {
    margin-right: 0;
  }
  .l-header_btn_list .btn {
    font-size: 12px;
    font-size: 1.2rem;
    height: 32px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .l-header_nav {
    top: 56px;
  }
  .l-footer_column {
    display: block;
    margin-bottom: 80px;
  }
  .l-footer_left {
    max-width: 100%;
    flex-basis: 100%;
    padding-bottom: 40px;
  }
  .l-footer_right {
    max-width: 100%;
    flex-basis: 100%;
  }
  .l-page {
    padding-top: 56px;
  }
  .top_vets > * {
    padding: 45px 0 55px;
  }
  .top_vets > * .ttl {
    font-size: 24px;
    font-size: 2.4rem;
    padding-bottom: 32px;
  }
  .top_vets .sec01 .picture img {
    width: 80px;
  }
  .top_vets .sec01 .copy {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.5;
    padding-left: 20px;
  }
  .top_vets .sec02 .lead {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: left;
    max-width: 768px;
    flex-basis: 768px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
  }
  .top_vets .sec02 .lead br {
    display: none;
  }
  .top_vets .sec04 {
    display: block;
  }
  .top_vets .sec04 > * {
    max-width: 100%;
    flex-basis: 100%;
  }
  .top_vets .sec04::before {
    transform: skew(15deg) translate(-50%, 0);
  }
  .top_vets .sec04 .left {
    padding: 30px 0;
  }
  .top_vets .sec04 .right {
    max-width: 1400px;
    padding: 30px 48px;
    margin: 0 auto;
  }
  .top_vets .sec04 .point .icon {
    background-color: transparent;
  }
  .top_vets .sec06 .lead {
    font-size: 14px;
    font-size: 1.4rem;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 40px;
  }
  .top_vets .sec06 .schedule {
    text-align: center;
  }
  .top_vets .sec06 .schedule dt {
    font-size: 12px;
    font-size: 1.2rem;
    display: inline-flex;
    margin-bottom: 12px;
  }
  .top_vets .sec06 .schedule dd {
    font-size: 14px;
    font-size: 1.4rem;
    max-width: 100%;
    flex-basis: 100%;
    padding-left: 0;
    margin-bottom: 20px;
  }
  .corp_about {
    display: block;
    padding-top: 80px;
  }
  .corp_about-title {
    max-width: 100%;
    flex-basis: 100%;
  }
  .corp_about-body {
    max-width: 100%;
    flex-basis: 100%;
  }
  .sub_navi {
    border-top: 1px solid #E1E4EA;
    border-bottom: 0;
  }
  .sub_navi > * {
    flex-wrap: wrap;
  }
  .sub_navi > * > * {
    max-width: calc(33.33% - 10px);
    flex-basis: calc(33.33% - 10px);
    margin-left: 0;
    margin-right: 15px;
    border-bottom: 1px solid #E1E4EA;
  }
  .sub_navi > * > *:nth-child(3n) {
    margin: 0;
  }
  .sub_navi > * > * a {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 24px 20px;
  }
  .menu-trigger {
    display: block;
  }
  .gnavi {
    height: calc(100vh - 56px);
  }
}

@media screen and (max-width: 640px) {
  .sp {
    display: block !important;
  }
  .sp_hide {
    display: none !important;
  }
  .l-footer__corp {
    padding: 24px 0;
  }
  .l-footer__corp > * {
    display: block;
  }
  .l-footer__corp .corp_copyright {
    max-width: 100%;
    flex-basis: 100%;
  }
  .l-footer__corp .corp_menu {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    flex-basis: 100%;
    padding-top: 32px;
  }
  .l-footer__corp .corp_menu > * {
    max-width: 50%;
    flex-basis: 50%;
    margin-right: 0;
  }
  .l-footer__corp .corp_menu > * a {
    display: block;
    padding: 12px 0;
  }
  .l-footer_left {
    padding-bottom: 100px;
  }
  .l-footer_logo {
    padding-bottom: 10px;
  }
  .l-footer_description {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .l-footer_description br {
    display: none;
  }
  .l-footer_menu a {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 5px 0;
  }
  .l-main {
    padding-bottom: 80px;
  }
  .l-form_group {
    display: block;
  }
  .l-form_group-label {
    font-size: 14px;
    font-size: 1.4rem;
    padding-top: 0;
    max-width: 100%;
    flex-basis: 100%;
  }
  .l-form_group-field {
    padding-top: 8px;
    max-width: 100%;
    flex-basis: 100%;
  }
  .l-form_group-sub {
    display: block;
    padding-top: 8px;
    padding-bottom: 4px;
    border-top: 0;
  }
  .l-form_group-sub > *:last-child {
    margin-bottom: 0;
  }
  .l-form_group-sub-label {
    font-size: 12px;
    font-size: 1.2rem;
    padding-top: 1.25em;
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 8px;
    border-top: 1px solid #f2f2f2;
  }
  .l-form_group-sub-field {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 1.25em;
  }
  .form_set__half > * {
    max-width: 100%;
    flex-basis: 100%;
    margin-right: 0;
  }
  .form_set__inlinelist > * {
    max-width: calc(50% - 5px) !important;
    flex-basis: calc(50% - 5px) !important;
    width: 100% !important;
    padding-right: 0;
    margin-right: 10px;
  }
  .form_set__inlinelist > *:nth-child(2n) {
    margin-right: 0;
  }
  .l-complete {
    padding-top: 40px;
  }
  .l-complete-figure img {
    width: 80px;
  }
  .l-complete-title {
    font-size: 20px;
    font-size: 2rem;
    padding-top: 40px;
  }
  .l-complete-lead {
    font-size: 14px;
    font-size: 1.4rem;
    padding-top: 16px;
  }
  .static {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .static h3 {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .static .signature {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .top_vets > * {
    padding: 32px 0 32px;
  }
  .top_vets > * .ttl {
    font-size: 20px;
    font-size: 2rem;
  }
  .top_vets > * .button {
    padding: 24px 12px 0;
  }
  .top_vets > * .button .btn {
    width: 100%;
  }
  .top_vets .sec01 .picture img {
    width: 50px;
  }
  .top_vets .sec01 .copy {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5;
    padding-left: 12px;
  }
  .top_vets .sec02 .sample {
    display: block;
  }
  .top_vets .sec02 .sample > * {
    max-width: 300px;
    flex-basis: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .top_vets .sec02 .sample .picture {
    padding-bottom: 32px;
  }
  .top_vets .sec02 .sample .name {
    padding-bottom: 12px;
    font-weight: bold;
  }
  .top_vets .sec02 .sample .desc {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .top_vets .sec03 .feature {
    display: block;
  }
  .top_vets .sec03 .feature > * {
    max-width: 300px;
    flex-basis: 100%;
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 16px;
  }
  .top_vets .sec03 .feature .picture {
    padding-bottom: 16px;
  }
  .top_vets .sec03 .feature .name {
    padding-bottom: 8px;
    font-weight: bold;
  }
  .top_vets .sec03 .feature .desc {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .top_vets .sec04 .left {
    padding: 30px 0;
  }
  .top_vets .sec04 .right {
    max-width: 1400px;
    padding: 30px 24px;
    margin: 0 auto;
  }
  .corp_message {
    padding-bottom: 40px;
  }
  .corp_about {
    padding-top: 40px;
  }
  .corp_about-table {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .corp_about-table > * {
    padding: 12px 0;
  }
  .btn_list {
    padding-top: 28px;
  }
  .btn_list > * {
    margin: 12px auto 0;
    width: 100%;
  }
  .btn_agree {
    margin-top: 16px;
  }
  .btn_agree + * {
    padding-top: 12px;
  }
  .flow {
    display: none;
  }
  .flow > *::after {
    top: 8px;
  }
  .flow > *::before {
    font-size: 12px;
    font-size: 1.2rem;
    width: 18px;
    height: 18px;
    border-radius: 9px;
  }
  .flow > *.active::after {
    background-color: #37A6AD;
  }
  .flow > *.active::before {
    color: #FFF;
    background-color: #37A6AD;
  }
  .flow_name {
    font-size: 10px;
    font-size: 1rem;
    margin-top: 28px;
  }
  .flow__text {
    display: block;
    margin-top: 40px;
  }
  .uploader {
    flex-wrap: wrap;
  }
  .uploader_toggle {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
  .uploader_label {
    padding-left: 0;
    padding-top: 12px;
    max-width: 100%;
    flex-basis: 100%;
  }
  .uploader_label:empty {
    display: none;
  }
  .ttl-page {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 24px;
  }
  .ttl-page .en {
    font-size: 10px;
    font-size: 1rem;
    padding-top: 4px;
  }
  .ttl-content {
    padding: 0.75em 16px;
  }
  .container {
    margin-top: 24px;
  }
  .contents {
    padding: 16px;
  }
  .list > * {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .wrap {
    padding: 0 12px;
  }
  .plan_list {
    display: block;
  }
  .plan_list > * {
    max-width: 100%;
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }
  .plan_block {
    display: flex;
    flex-wrap: wrap;
    padding: 16px 16px 0;
  }
  .plan .title {
    max-width: 75%;
    flex-basis: 75%;
  }
  .plan .price {
    max-width: 25%;
    flex-basis: 25%;
    text-align: right;
  }
  .plan_name {
    font-size: 16px;
    font-size: 1.6rem;
    text-align: left;
  }
  .plan_desc {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 4px;
    min-height: initial;
    text-align: left;
  }
  .plan_feature {
    font-size: 11px;
    font-size: 1.1rem;
    max-width: 100%;
    flex-basis: 100%;
    margin-top: 24px;
  }
  .plan_feature > * {
    margin-top: 4px;
  }
  .plan_preview {
    position: relative;
    font-size: 12px;
    font-size: 1.2rem;
    height: 32px;
    text-align: right;
  }
  .plan_price {
    font-size: 20px;
    font-size: 2rem;
    margin-top: 0;
  }
  .plan_price > * {
    font-size: 10px;
    font-size: 1rem;
  }
  .plan_discont {
    font-size: 14px;
    font-size: 1.4rem;
    margin-top: 4px;
  }
  .plan_discont > * {
    color: #404040;
  }
  .plan_discont:empty {
    display: none;
  }
  .plan > .list {
    margin-top: 8px;
  }
  .txt__small {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .sub_navi > * {
    display: block;
  }
  .sub_navi > * > * {
    max-width: 100%;
    flex-basis: 100%;
    margin: 0;
  }
  .sub_navi > * > * a {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 16px 4px;
  }
  .gnavi {
    width: 100vw;
  }
  .breadcrumb .wrap > * {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .modal {
    margin: 80px 12px;
  }
  .modal-container > * .inner {
    padding: 32px;
  }
}