@charset "UTF-8";
/**
 * Custom media queries
 * @example
 * @media (--mobile) {
 *    styles for mobile viewport
 * }
 */
/**
 * for mobile viewoport
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/**
 * for tablet and Pc. large viewport
 */
/** http://bourbon.io/docs/#timing-functions */
/** example @include transition(all 5s $ease-in-circ);*/
/**
transition timing-function:
ease - cubic-bezier(0.25, 0.1, 0.25, 1.0) を指定したのと同じ（開始と完了を滑らかにする）（初期値）
linear - cubic-bezier(0.0, 0.0, 1.0, 1.0) を指定したのと同じ（一定）
ease-in - cubic-bezier(0.42, 0, 1.0, 1.0) を指定したのと同じ（ゆっくり始まる）
ease-out - cubic-bezier(0, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり終わる）
ease-in-out - cubic-bezier(0.42, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり始まってゆっくり終わる）
*/
/**
 * text ellipsis for block multiline
 */
/*
 unsupport IE, Edge, Fx

@mixin text-ellipsis-block($rows) {
  display: box;
  box-orient: vertical;
  line-clamp: $rows;
  overflow: hidden;
}
*/
/**
 * element size
 */
/**
 * position layout
 */
/**
 * images
 */
/**
* Variables
*/
/** extend */
/* == @import "../node_modules/normalize.css/normalize.css"; */
[v-cloak] {
  display: none; }
html {
  font-size: 62.5%; }
body {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.0rem;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt"; }
a {
  color: #000000;
  text-decoration: none; }
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
h1, h2, h3, h4, h5, h6, div, dl, dt, dd, p {
  margin: 0;
  padding: 0; }
ul, ol, li {
  padding: 0;
  margin: 0; }
li {
  list-style: none; }
img {
  vertical-align: bottom; }
figure {
  margin: 0;
  padding: 0; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }
input[type="number"] {
  -moz-appearance: textfield; }
.l-main {
  line-height: 1.2; }
.l-footer {
  width: 100%;
  padding: 75px 0;
  background-color: #2c2c2c; }
.l-footer__copy {
    text-align: center;
    color: #8e8e8e;
    font-size: 1.2rem; }
.l-header {
  height: 100px;
  width: 100%;
  position: relative; }
.l-header__inner, .l-header__inner--blackbg, .l-header__inner--whitebg {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: none; }
.l-header__inner--blackbg {
      background-color: #fae6eb;
      border-bottom: 3px solid #c10230; }
.l-header__inner--whitebg {
      background-color: #fff;
      border-bottom: 3px solid #c10230; }
.l-header__logo {
    height: 63px; }
.l-header__logo img {
      height: 100%; }
.l-header__prevbtn {
    display: none; }
.l-form .l-header__inner--whitebg,
.l-entry .l-header__inner--whitebg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.l-thanks .l-header__inner--blackbg,
.l-comfimation .l-header__inner--blackbg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.l-comfimation .l-header__prevbtn {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16%;
  z-index: 10;
  -webkit-transition: opacity .2s ease-out;
  transition: opacity .2s ease-out;
  cursor: pointer; }
/**
 * main.scss
 */
.career, .career--white {
  color: #525252; }
.career--white {
    color: #fff;
    opacity: 0.6; }
.career__txt {
    font-size: 1.4rem;
    text-align: left; }
.career__txt--small {
      text-align: center;
      font-size: 1.1rem;
      margin-top: 10px;
      line-height: 1.6; }
.career__txt--left {
      -moz-text-align-last: left;
           text-align-last: left; }
.career__list, .career__list--left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 25px; }
.career__list--left {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; }
.career__list-item + .career__list-item {
    margin-left: 25px; }
.career__list-link {
    display: block;
    position: relative;
    padding-left: 25px;
    color: inherit;
    -webkit-transition: opacity .2s;
    transition: opacity .2s; }
.career__list-link::before {
      content: url("../images/icon-career.png");
      position: absolute;
      top: 2px;
      left: 0; }
.career--white .career__list-link:before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("../images/icon-career-white.png");
    background-size: cover;
    top: 5px; }
.l-comfimation__top {
  padding-top: 22px;
  padding-bottom: 58px;
  background-color: #fae6eb;
  color: #000;
  position: relative; }
.l-comfimation__pic {
  position: relative;
  margin-top: 30px;
  max-width: 540px;
  margin: 30px auto 0; }
.l-comfimation__pic img {
    z-index: 10;
    position: relative; }
.l-comfimation__pic--src {
    width: 100%; }
.l-comfimation__top-data {
  margin-top: 35px;
  text-align: center; }
.l-comfimation__top-data-item {
  font-size: 1.4rem; }
.l-comfimation__top-data-item + .l-comfimation__top-data-item {
    margin-top: 20px; }
.l-comfimation__bottom {
  background-color: #fff;
  padding: 40px 0 130px;
  color: #030404; }
.l-comfimation__bottom-inner {
  max-width: 870px;
  width: 100%;
  margin: 0 auto; }
.l-comfimation__section {
  font-size: 1.5rem;
  line-height: 1.6; }
.l-comfimation__section + .l-comfimation__section {
    margin-top: 45px; }
.l-comfimation__section-inner {
  margin-top: 30px; }
.l-comfimation__section-inner--designer {
    margin-top: 20px; }
.l-comfimation__section-inner--assistant {
    margin-top: 15px; }
.l-comfimation__section-inner--model {
    margin-top: 18px; }
.l-comfimation__section-inner--product {
    margin-top: 20px; }
.l-comfimation__section-inner--question {
    margin-top: 13px; }
.l-comfimation__section-inner--privacy {
    margin-top: 42px; }
.l-comfimation__section-inner--privacy a {
      text-decoration: underline; }
.l-comfimation__ttl {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 400; }
.l-comfimation__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #b2b2b2;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; }
.l-comfimation__dl dt {
    width: 150px;
    padding: 13px 0; }
.l-comfimation__dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 13px 0;
    -ms-flex-item-align: end;
        align-self: flex-end;
    width: 31%; }
.l-comfimation__textarea {
  line-height: 1.2857; }
.l-comfimation__3item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  position: relative; }
.l-comfimation__3item--top {
    padding: 20px 0 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    border-bottom: 1px solid #b2b2b2; }
.l-comfimation__3item--top dt {
      width: 150px; }
.l-comfimation__3item--top dd + dt {
      margin-left: 85px; }
.l-comfimation__3item--bottom {
    padding: 12px 0;
    width: calc(100% - 150px);
    margin-left: 150px;
    border-bottom: 1px solid #b2b2b2; }
.l-comfimation__2item {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #b2b2b2; }
.l-comfimation__2item dt {
    width: 150px; }
.l-comfimation__2item dd + dt {
    margin-left: 95px; }
.l-comfimation__list li {
  padding: 18px 0 11px;
  border-bottom: 1px solid #b2b2b2; }
.l-comfimation__list-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
.l-comfimation__list-dl dt {
    width: 150px; }
.l-comfimation__list-dl dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
.l-comfimation__bottom-small-inner {
  max-width: 650px;
  width: 100%;
  margin: 120px auto 0; }
.l-comfimation__2ndcat-txt {
  margin-top: 30px; }
.l-comfimation__a {
  width: 100%;
  padding: 13px 0;
  border-bottom: 1px solid #b2b2b2; }
.l-comfimation__a--name {
    display: inline-block;
    width: 31%; }
.l-comfimation__agree-item {
  padding-left: 50px;
  position: relative; }
.l-comfimation__agree-item + .l-comfimation__agree-item {
    margin-top: 20px; }
.l-comfimation__checkbox {
  width: 25px;
  height: 25px;
  border: 1px solid #525252;
  position: absolute;
  top: 3px;
  left: 0; }
.l-comfimation__checkbox a {
    text-decoration: underline; }
.l-comfimation__checkbox::before {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: #525252;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%; }
.l-comfimation__checkbox::after {
    content: "";
    display: block;
    width: 20px;
    height: 1px;
    background-color: #525252;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
    position: absolute;
    top: 50%;
    left: 50%; }
.l-comfimation__privacy-txt {
  line-height: 1.8; }
.l-comfimation__agree-privacy {
  margin-top: 20px; }
.l-comfimation__agree-box {
  border: 1px solid #b2b2b2;
  margin-top: 30px;
  padding: 18px 20px;
  font-size: 1.4rem;
  font-weight: bold; }
.l-comfimation__agree-box--blue {
    color: darkcyan; }
.l-comfimation__career {
  margin-top: 32px; }
.l-comfimation__btn {
  margin-top: 75px; }
.entry {
  text-align: center; }
.entry__section {
    width: 100%;
    padding: 50px 0 35px; }
.entry__section:nth-of-type(odd) {
      background-color: #f2f2f2; }
.entry__section:last-of-type {
      padding-bottom: 80px; }
.entry__section-inner {
    max-width: 635px;
    margin: 0 auto;
    font-size: 1.4rem; }
.entry__section-inner--big {
      max-width: 860px;
      margin: 0 auto;
      font-size: 1.4rem; }
.entry__section-ttl {
    font-size: 1.8rem;
    line-height: 1.333;
    font-weight: 400; }
.entry__section-txt, .entry__section-txt--left {
    margin-top: 15px;
    line-height: 1.7142; }
.entry__section-txt--underbar {
      text-decoration: underline; }
.entry__section-txt--big {
      font-size: 1.8rem; }
.entry__section-txt--left {
      text-align: left; }
.entry__section-link {
    display: inline-block;
    position: relative;
    color: inherit;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
    margin-top: 15px; }
.entry__section-link::before {
      content: url("../images/icon-career.png");
      position: absolute;
      top: 1px;
      left: -25px; }
.entry__main-ttl {
    color: #c10230;
    font-size: 1.8rem;
    line-height: 1.333;
    margin-top: 40px; }
.entry__mail-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
    position: relative; }
.entry__mail-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 180px;
    font-size: 1.6rem;
    line-height: 1.5; }
.entry__mail-input {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: none;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    color: #030404;
    font-family: inherit;
    padding: 12px;
    margin: 0;
    font-size: 1.6rem;
    width: 100%;
    border: 1px solid #f2f2f2; }
.entry__mail-input:focus {
      border: 1px solid #bababa;
      -webkit-box-shadow: none;
              box-shadow: none;
      outline: none; }
.entry__sent-txt {
    margin-top: 10px; }
.entry__sent-txt p {
      display: none;
      font-size: 1.8rem;
      font-weight: bold;
      color: #c10230; }
.entry__err {
    margin-top: 5px;
    text-align: left;
    font-size: 1.4rem;
    color: red;
    display: none;
    position: absolute;
    left: 180px;
    bottom: -10px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
.entry__mail-btn {
    margin-top: 40px; }
.entry__mail-btn--entry {
      margin-top: 30px; }
.err .entry__err {
  display: block; }
.err .entry__mail-input {
  border: 1px solid red; }
.sent.entry__sent-txt p {
  display: block; }
.form__category {
  padding: 45px 0;
  background-color: #f2f2f2; }
.form__category .form__err {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    padding-left: 0; }
.form__category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px; }
.form__category-item + .form__category-item {
  margin-left: 20px; }
.form__category-btn {
  font-size: 1.6em;
  display: block;
  background-color: #fff;
  color: #bababa;
  text-transform: uppercase;
  width: 280px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
  border: 1px solid #fff;
  cursor: pointer; }
.form__category-radio {
  display: none; }
.form__category-radio:checked + .form__category-btn {
  background-color: #D80E4C;
  color: #fff; }
.form__category-item:first-child .form__category-radio:checked + .form__category-btn {
  background-color: #000;
  color: #fff; }
.form__category-err {
  color: red;
  text-align: center;
  line-height: 2;
  margin-top: 5px;
  top: 0;
  right: 0;
  font-size: 1.5rem;
  margin-top: 15px; }
.form__category-err-txt {
  display: none; }
.form__section {
  padding: 45px 0; }
.form__section + .form__section {
    border-top: 1px solid #b2b2b2; }
.form__section-inner {
  max-width: 875px;
  margin: 0 auto; }
.form__top-txt {
  font-size: 1.4rem;
  line-height: 1.7;
  text-align: center;
  margin-top: 30px;
  color: darkcyan;
  font-weight: bold; }
.form__top-txt-important {
    color: #c10230; }
.form__item-wrap, .form__item-wrap--designer, .form__item-wrap--model {
  margin-top: 25px; }
.form__item-wrap--file {
    margin-top: 40px; }
.form__item-wrap + .form__ttl, .form__item-wrap--designer + .form__ttl, .form__item-wrap--model + .form__ttl {
  margin-top: 45px; }
.form__item, .form__item + .form__item--twocol,
.form__item--twocol + .form__item--twocol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%; }
.form__item + .form__item, .form__item + .form__item--twocol + .form__item, .form__item--twocol + .form__item--twocol + .form__item, .form__item + .form__item--twocol,
  .form__item + .form__item--twocol + .form__item--twocol,
  .form__item--twocol + .form__item--twocol + .form__item--twocol {
    margin-top: 27px; }
.form__item + .form__item--twocol, .form__item + .form__item--twocol + .form__item--twocol, .form__item--twocol + .form__item--twocol + .form__item--twocol,
  .form__item--twocol + .form__item--twocol {
    margin-top: 45px; }
.form__name, .form__name--sex, .form__name--double {
  width: 150px;
  font-size: 1.8rem;
  color: #000;
  padding-top: 12px; }
.form__name--sex {
    padding-top: 0; }
.form__name--double {
    padding-top: 0;
    line-height: 1.333; }
.form__agree-radio-wrap .form__name, .form__agree-radio-wrap .form__name--sex, .form__agree-radio-wrap .form__name--double {
  padding-top: 10px; }
.form__input, .form__input--year, .form__input--textarea, .form__input--file, .form__input--small {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
.form__input--year {
    position: relative; }
.form__input--year::before {
      content: "歳";
      font-size: 1.8rem;
      position: absolute;
      top: 19px;
      left: 53%; }
.form__input-txt, .form__input-txt--big, .form__input-txt--small, .form__input-txt--twocol {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
  background-color: #eee;
  border: none;
  border-radius: 5px;
  color: #030404;
  font-family: inherit;
  padding: 12px;
  margin: 0;
  font-size: 1.6rem;
  width: 100%;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  border: 1px solid #fff; }
.form__input-txt:focus, .form__input-txt--big:focus, .form__input-txt--small:focus, .form__input-txt--twocol:focus {
    border: 1px solid #bababa;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none; }
.form__input-txt--big {
    width: 100%; }
.form__input-txt--small {
    width: calc(50% - 10px); }
.form__input-twocol {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100% - 150px); }
.form__input-twocol-item {
  width: calc(50% - 10px);
  position: relative; }
.form__input-twocol-label {
  font-size: 1.8rem;
  color: #000;
  position: absolute;
  top: -25px; }
.form__select, .form__select--qa {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  background-image: url("../images/icon-select.png");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 90% 50%;
  background-color: #eee;
  border: none;
  border-radius: 5px;
  color: #030404;
  font-family: inherit;
  cursor: pointer;
  padding: 12px;
  margin: 0;
  font-size: 1.6rem;
  width: calc(50% - 10px);
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  border: 1px solid #fff; }
.form__select::-ms-expand, .form__select--qa::-ms-expand {
    display: none; }
.form__select:focus, .form__select--qa:focus {
    border: 1px solid #bababa;
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none; }
.form__select--qa {
    width: 270px; }
.form__radio, .form__radio--sex, .form__radio--2ndstg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }
.form__radio--sex {
    padding: 0; }
.form__radio--2ndstg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 12px 0 80px;
    max-width: 580px;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    margin: 0 auto;
    margin-top: 15px; }
.form__radio-item + .form__radio-item {
  margin-left: 20px; }
.form__radio--2ndstg .form__radio-item {
  display: block;
  width: 35%;
  margin: 0 auto;
  text-align: center; }
.form__radio--2ndstg .form__radio-item:not(:first-of-type) {
    margin-top: 10px; }
.form__radio-btn {
  display: none; }
.form__radio-btn + .form__radio-txt, .form__radio-btn + .form__radio-txt--en {
    cursor: pointer;
    display: inline-block;
    margin: 0 0.2em 0;
    padding: 0 0 0 1.2em;
    position: relative; }
.form__radio-btn + .form__radio-txt::before, .form__radio-btn + .form__radio-txt--en::before {
    background-image: -webkit-gradient(linear, left top, right bottom, color-stop(5%, #d8d8d8), to(#f1f0f0));
    background-image: linear-gradient(to right bottom, #d8d8d8 5%, #f1f0f0);
    border: 1px solid #b2b2b2;
    border-radius: 50%;
    content: "";
    display: block;
    height: 16px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 16px; }
.form__radio-btn + .form__radio-txt::after, .form__radio-btn + .form__radio-txt--en::after {
    background: #757778;
    border: 1px solid transparent;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 4px;
    opacity: 0;
    padding: 2px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 8px; }
.form__radio-btn:checked + .form__radio-txt::after, .form__radio-btn:checked + .form__radio-txt--en::after {
    opacity: 1; }
.form__radio-txt, .form__radio-txt--en {
  font-size: 1.8rem;
  color: #000;
  padding-left: 10px; }
.form__radio-txt--en {
    text-transform: uppercase; }
.form__txtarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #eee;
  background-image: none;
  border-radius: 5px;
  border: none;
  color: #030404;
  font-family: inherit;
  padding: 12px;
  margin: 0;
  width: 100%;
  font-size: 1.6rem;
  height: 140px;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  border: 1px solid #fff; }
.form__txtarea:focus {
    -webkit-box-shadow: none;
            box-shadow: none;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.16); }
.form__textarea-txt {
  padding-top: 20px;
  font-size: 1.2rem;
  line-height: 1.5; }
.form__textarea-txt p + p {
    margin-top: 20px; }
.form__file {
  display: none; }
.form__file-label {
  background: #eee;
  border: none;
  color: pointer;
  padding: 2rem;
  display: block;
  width: 100%;
  font-size: 1.4rem;
  padding-left: 100px;
  position: relative;
  cursor: pointer; }
.form__file-label::before {
    content: "";
    display: block;
    width: 75px;
    height: 35px;
    background-image: url("../images/btn-fileup.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    left: 10px;
    top: 12px; }
.form__file-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 0;
  color: inherit;
  display: inline-block;
  font-family: inherit;
  font-size: 1em;
  width: 100%;
  pointer-events: none; }
.form__file-clearbtn {
  background-color: transparent;
  background-image: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  display: inline-block;
  width: 15px;
  height: 16px;
  text-decoration: none;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 0; }
.form__file-clearbtn:focus, .form__file-clearbtn:hover {
    outline: none; }
.form__file-clearbtn::-moz-foucus-inner {
    border: none;
    padding: 0; }
.form__file-clearbtn::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("../images/icon-file-clear-active.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0; }
.form__file-clearbtn img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
.form__err {
  width: 225px;
  padding-left: 20px;
  line-height: 1.7;
  color: red;
  font-size: 1.5rem; }
.form__radio--sex + .form__err {
  padding-top: 0; }
.form__err-txt {
  display: none; }
.form__example, .form__example--box {
  padding-top: 5px;
  font-size: 1.2rem;
  color: #030404; }
.form__example--box {
    border: 1px solid #000;
    margin-top: 20px;
    padding: 23px;
    font-size: 1.4rem;
    line-height: 1.5; }
.form__example--bold {
    font-weight: bold; }
.form__example--important {
    color: #c10230; }
.form__voluntarily {
  position: relative; }
.form__voluntarily::after {
    content: "任意";
    font-size: 1.2rem;
    position: absolute;
    bottom: -1em;
    left: 0;
    display: inline-block;
    -webkit-transform: translateY(7px);
            transform: translateY(7px); }
.form__qa {
  max-width: 580px;
  margin: 40px auto 0; }
.form__qa-item {
  margin-top: 30px; }
.form__q {
  font-size: 1.8rem;
  color: #000;
  margin-top: 30px; }
.form__qa-rdio-wrap {
  margin-top: 30px; }
.form__qa-radio {
  display: inline-block;
  padding: 10px 0;
  position: relative; }
.form__qa-radio--input {
    padding: 10px 0;
    position: relative;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.form__qa-radio--input::before {
      content: "";
      display: block;
      width: 17px;
      height: 17px;
      border: 2px solid #686868;
      position: absolute;
      top: 50%;
      left: 5px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
.form__qa-radio::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 2px solid #686868;
    position: absolute;
    top: 50%;
    left: 5px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
.form__qa-radio-item {
  display: none; }
.form__qa-radio-other {
  display: inline-block; }
.form__qa-radio-txt {
  font-size: 1.6rem;
  padding-left: 30px;
  display: block; }
.form__qa-radio-txt::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    left: 7px;
    content: "";
    width: 12px;
    height: 2px;
    background-color: #686868;
    display: block;
    opacity: 0;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out; }
.form__qa-radio-txt::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
    left: 7px;
    content: "";
    width: 12px;
    height: 2px;
    background-color: #686868;
    display: block;
    opacity: 0;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out; }
.form__qa-radio-item:checked + .form__qa-radio-txt::before {
  opacity: 1; }
.form__qa-radio-item:checked + .form__qa-radio-txt::after {
  opacity: 1; }
.form__qa-radio--input .form__qa-radio-txt {
  display: block;
  width: 120px; }
.form__agree {
  max-width: 580px;
  margin: 0 auto; }
.form__agree-head {
  color: #c10230;
  margin-bottom: 10px;
  text-align: center; }
.form__agree-txt, .form__agree-txt--privacy {
  max-width: 590px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.5; }
.form__agree-txt--privacy {
    margin-top: 40px; }
.form__agree-txt--privacy a {
      text-decoration: underline; }
.form__agree-content {
  margin-top: 45px; }
.form__agree-ttl {
  line-height: 3; }
.form__agree-ttl--rowheight {
    line-height: 1.6; }
.form__privacy-ttl {
  margin-top: 50px; }
.form__agree-radio-wrap {
  max-width: 870px;
  margin: 0 auto;
  padding: 10px 0; }
.form__agree-radio {
  display: inline-block;
  padding: 10px 0;
  position: relative;
  margin-top: 15px;
  cursor: pointer; }
.form__agree-radio::before {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    border: 2px solid #686868;
    position: absolute;
    top: 50%;
    left: 5px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
.form__agree-radio:nth-last-of-type(2n) {
    margin-left: 20px; }
.form__agree-radio-item {
  display: none; }
.form__agree-radio-txt {
  font-size: 1.4rem;
  display: block;
  padding-left: 50px; }
.form__agree-radio-txt::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    left: 7px;
    content: "";
    width: 20px;
    height: 2px;
    background-color: #686868;
    display: block;
    opacity: 0;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out; }
.form__agree-radio-txt::after {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
    left: 7px;
    content: "";
    width: 20px;
    height: 2px;
    background-color: #686868;
    display: block;
    opacity: 0;
    -webkit-transition: opacity .2s ease-out;
    transition: opacity .2s ease-out; }
.form__agree-radio-item:checked + .form__agree-radio-txt::before {
  opacity: 1; }
.form__agree-radio-item:checked + .form__agree-radio-txt::after {
  opacity: 1; }
.form__agree-box {
  border: 1px solid #525252;
  padding: 20px;
  margin-top: 40px;
  font-weight: bold; }
.form__agree-box--bold {
    font-weight: bold; }
.form__agree-box--blue {
    color: darkcyan; }
.form__btn {
  margin-top: 50px;
  padding-bottom: 25px; }
#js-file-clearbtn.active.form__file-clearbtn::before {
  opacity: 1; }
.err .form__err-txt {
  display: block; }
.err .form__input, .err .form__input--year, .err .form__input--textarea, .err .form__input--file, .err .form__input--small,
.err.form__input-twocol-item {
  position: relative; }
.err .form__input::after, .err .form__input--year::after, .err .form__input--textarea::after, .err .form__input--file::after, .err .form__input--small::after,
  .err.form__input-twocol-item::after {
    content: "";
    display: block;
    width: 23px;
    height: 21px;
    background-image: url("../images/icon-alert.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    top: 12px; }
.err .form__input--small::after {
  left: calc(50% - 50px); }
.err .form__input--textarea::after,
.err .form__input--file::after {
  content: "";
  display: none; }
.err .form__input-txt, .err .form__input-txt--big, .err .form__input-txt--small, .err .form__input-txt--twocol,
.err .form__select,
.err .form__select--qa,
.err .form__txtarea,
.err .form__file-label,
.err .form__category-btn,
.err .form__radio-btn + .form__radio-txt::before,
.err .form__radio-btn + .form__radio-txt--en::before,
.err .form__agree-radio::before {
  border: 1px solid red; }
.err .form__qa-radio-other {
  border: none; }
.err .form__category-err-txt {
  display: block; }
.form-head__inner {
  max-width: 870px;
  margin: 0 auto;
  padding: 45px 0 65px; }
.form-head__ttl {
  max-width: 740px;
  margin: 0 auto; }
.form-head__ttl--src {
    display: block;
    width: 100%; }
.form-head__subttl, .form-head__subttl--entry {
  text-align: center;
  font-weight: 300;
  margin-top: 20px; }
.form-head__subttl--big {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    font-family: "Roboto", sans-serif; }
.form-head__subttl--small {
    display: block;
    font-size: 1.8rem;
    color: #c10230;
    margin-top: 15px; }
.form-head__subttl--black {
    color: #000; }
.form-head__subttl--entry {
    margin-top: 20px; }
.form-head__txt {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-top: 35px; }
.form-head__txt--career {
    margin-top: 45px; }
.form-head__txt--err {
    margin-top: 30px;
    color: red;
    font-size: 1.5rem;
    text-align: center;
    display: none; }
.form-head__txt--blue {
    color: darkcyan;
    font-weight: bold; }
.form-head__txt--blue a {
      color: inherit;
      text-decoration: underline; }
.form-head__txt--red {
    color: #c10230;
    font-weight: bold; }
.form-head__txt--red a {
      color: inherit;
      text-decoration: underline; }
.form-head__txt--err.err {
    display: block; }
.form-head__entryttl {
  text-align: center;
  font-weight: 300; }
.l-thanks {
  background-color: #fae6eb;
  color: #000;
  text-align: center; }
.l-thanks__inner {
    position: relative;
    min-width: 580px;
    margin: 0 auto;
    padding: 32px 0 70px;
    min-height: calc(100vh); }
.l-thanks__num {
    display: inline-block;
    background-color: #fff;
    color: #000;
    padding: 14px 10px;
    text-align: center;
    font-size: 1.4rem;
    margin: 40px auto 0;
    min-width: 322px; }
.l-thanks__data {
    margin-top: 44px;
    font-size: 1.4rem; }
.l-thanks__data-item + .l-thanks__data-item {
    margin-top: 20px; }
.l-thanks__txt-top {
    font-size: 1.6rem;
    line-height: 2.5;
    max-width: 580px;
    margin: 57px auto 0; }
.l-thanks__txt {
    font-size: 1.6rem;
    line-height: 2.5;
    max-width: 620px;
    margin: 57px auto 0; }
.l-thanks__txt--small {
      font-size: 1.2rem;
      margin-top: 10px; }
.l-thanks__txt--link {
      color: inherit;
      font-size: inherit; }
.l-thanks__small-txt {
    max-width: 580px;
    margin: 58px auto 0;
    text-align: left;
    color: #bababa;
    font-size: 1.4rem;
    line-height: 1.7; }
.l-thanks__close {
    margin-top: 45px; }
.l-thanks__close-btn {
    display: block;
    width: 60px;
    height: 70px;
    margin: 0 auto;
    position: relative;
    color: #fff;
    padding-top: 70px;
    font-size: 1.2rem;
    cursor: pointer; }
.l-thanks__close-btn::before {
      content: "";
      display: block;
      width: 48px;
      height: 1px;
      position: absolute;
      -webkit-transform: translate(-50%) rotate(45deg);
              transform: translate(-50%) rotate(45deg);
      top: 50%;
      left: 50%;
      background-color: #fff; }
.l-thanks__close-btn::after {
      content: "";
      display: block;
      width: 48px;
      height: 1px;
      position: absolute;
      -webkit-transform: translateX(-50%) rotate(-45deg);
              transform: translateX(-50%) rotate(-45deg);
      top: 50%;
      left: 50%;
      background-color: #fff; }
.c-btn {
  display: block;
  width: 100%; }
.c-btn__item {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: none;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    cursor: pointer;
    margin: 0;
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 16px 0;
    background-color: #c10230;
    font-size: 2.1rem;
    color: #fff;
    text-align: center;
    -webkit-transition: background-color .2s ease-out;
    transition: background-color .2s ease-out; }
.c-btn__item:hover, .c-btn__item:focus {
      outline: none; }
.c-btn__item::-moz-foucus-inner {
      border: none;
      padding: 0; }
.c-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.c-google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden; }
.c-google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; }
.c-ttl {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 300; }
.c-page-ttl {
  text-align: center;
  font-family: "Roboto", sans-serif; }
.c-page-ttl__logo {
    max-width: 740px;
    margin: 0 auto; }
.c-page-ttl__logo img {
      width: 100%; }
.c-page-ttl__small {
    display: block;
    font-size: 3rem;
    font-weight: 300;
    font-weight: 300;
    margin-top: 5px; }
.c-page-ttl__big {
    display: block;
    text-transform: uppercase;
    font-size: 3.6rem; }
/**
* wordpress
* WYSIWYG compatchble style
*/
.c-wp-post_article strong {
  font-weight: bold; }
.c-wp-post_article em {
  font-style: italic; }
.c-wp-post_article ul {
  margin-left: 1em;
  display: block;
  list-style-type: disc !important;
  margin-before: 1em;
  margin-after: 1em;
  margin-start: 0px;
  margin-end: 0px;
  padding-start: 40px; }
.c-wp-post_article ol {
  display: block;
  list-style-type: decimal !important;
  margin-before: 1em;
  margin-after: 1em;
  margin-start: 0px;
  margin-end: 0px;
  padding-start: 40px; }
.c-wp-post_article li {
  display: list-item;
  text-align: match-parent; }
.c-wp-post_article img {
  width: auto; }
.c-wp-post_article .alignleft {
  display: inline;
  float: left; }
.c-wp-post_article .alignright {
  display: inline;
  float: right; }
.c-wp-post_article .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto; }
.c-wp-post_article blockquote.alignleft,
.c-wp-post_article .wp-caption.alignleft,
.c-wp-post_article img.alignleft {
  margin: 0.4em 1.6em 1.6em 0; }
.c-wp-post_article blockquote.alignright,
.c-wp-post_article .wp-caption.alignright,
.c-wp-post_article img.alignright {
  margin: 0.4em 0 1.6em 1.6em; }
.c-wp-post_article blockquote.aligncenter,
.c-wp-post_article .wp-caption.aligncenter,
.c-wp-post_article img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em; }
.c-wp-post_article .wp-caption.alignleft,
.c-wp-post_article .wp-caption.alignright,
.c-wp-post_article .wp-caption.aligncenter {
  margin-bottom: 1.2em; }
/**
 * clearfix micro
 */
.clearfix:after {
  content: "";
  clear: both;
  display: block; }
/**
 * text ellipsis., text...
 */
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
.u-hide {
  display: none; }
.u-click {
  cursor: pointer; }
/**
 * BrowserSync
 */
#__bs_notify__ {
  display: none !important;
  font-size: 8px !important;
  opacity: .25;
  max-height: 50px; }
.__debug_mihon__ {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto 0 auto;
  z-index: 100000;
  pointer-events: none;
  cursor: none;
  width: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-animation: __debug_mihon__ 1s infinite;
          animation: __debug_mihon__ 1s infinite; }
.__debug_mihon__ {
  padding-top: 0px;
  margin-top: 0px; }
@-webkit-keyframes __debug_mihon__ {
  0% {
    opacity: 0; }
  60% {
    opacity: .5; }
  100% {
    opacity: .5; } }
/*
@example
 <div class="mihon">
  <img src="./images/sample1.png" alt="" class="type_pc">
  <img src="./images/sample2.png" alt="" class="type_sp">
</div>
*/
@media (min-width: 768px) {
  .ex-link {
    opacity: 1;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear; }
    .ex-link:hover {
      opacity: .5; }
    .l-comfimation .l-header__prevbtn:hover {
      opacity: .7; }
      .career__list-link:hover {
        opacity: .7; }
      .entry__section-link:hover {
        opacity: .7; }
    .form__category-btn:hover {
      color: #fff;
      background-color: #D80E4C; }
    .form__category-item:first-child .form__category-btn:hover {
      background-color: #000; }
    .form__input-txt:hover, .form__input-txt--big:hover, .form__input-txt--small:hover, .form__input-txt--twocol:hover {
      background-color: #f3f3f3; }
    .form__select:hover, .form__select--qa:hover {
      background-color: #f3f3f3; }
    .form__txtarea:hover {
      background-color: #f3f3f3; }
    .form__qa-rdio-wrap:first-of-type .form__qa-radio:nth-last-of-type(2n) {
      margin-right: 20px; }
    .form__qa-rdio-wrap:last-of-type .form__qa-radio:nth-last-of-type(2n+1) {
      margin-right: 20px; }
    .form__qa-radio.for-rsa {
      margin-right: 20px; }
  .form__qa-radio:hover .form__qa-radio-txt::before {
    opacity: 1; }
  .form__qa-radio:hover .form__qa-radio-txt::after {
    opacity: 1; }
    .form__agree-radio:hover .form__agree-radio-txt::before {
      opacity: 1; }
    .form__agree-radio:hover .form__agree-radio-txt::after {
      opacity: 1; }
        .l-thanks__txt--link:hover {
          text-decoration: underline; }
      .c-btn__item:hover {
        background-color: #c10230; }
  .for-mobile {
    display: none; } }
@media (max-width: 767px) {
  html, body {
    width: 100%;
    height: 100%; }
  h1, h2, h3, h4, h5, h6, div, dl, dt, dd, p {
    margin: 0;
    padding: 0; }
  img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto; }
      .l-footer__copy {
        font-size: 1rem; }
    .l-header {
      height: 70px; }
      .l-header__logo {
        height: 38px; }
    .l-comfimation .l-header__prevbtn {
      left: 20px; }
        .career__txt--small {
          -moz-text-align-last: left;
               text-align-last: left;
          margin-top: 15px; }
      .career__list, .career__list--left {
        margin-top: 15px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        grid-gap: 12px;
        gap: 12px; }
      .career__list-item + .career__list-item {
        margin-left: 0px; }
      .career__list-link {
        display: inline-block; }
    .l-comfimation__pic {
      max-width: 66vw; }
    .l-comfimation__bottom {
      padding-bottom: 60px; }
    .l-comfimation__bottom-inner {
      max-width: initial;
      width: 100%;
      padding: 0 20px; }
    .l-comfimation__section {
      font-size: 1.4rem; }
      .l-comfimation__section-inner--designer {
        margin-top: 23px; }
      .l-comfimation__section-inner--assistant {
        margin-top: 35px; }
      .l-comfimation__section-inner--model {
        margin-top: 29px; }
      .l-comfimation__section-inner--product {
        margin-top: 34px; }
      .l-comfimation__section-inner--question {
        margin-top: 26px; }
      .l-comfimation__dl dt {
        width: 31%;
        padding: 14px 0; }
      .l-comfimation__dl dd {
        padding: 14px 0; }
      .l-comfimation__3item--top {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 0;
        border-bottom: initial; }
        .l-comfimation__3item--top dt {
          width: 31%;
          padding: 14px 0;
          border-bottom: 1px solid #b2b2b2; }
      .l-comfimation__3item--top dd {
        width: 69%;
        padding: 14px 0;
        border-bottom: 1px solid #b2b2b2; }
        .l-comfimation__3item--top dd + dt {
          margin-left: initial; }
      .l-comfimation__3item--bottom {
        display: inline-block;
        border-bottom: initial;
        position: absolute;
        top: 2px;
        right: -13px;
        width: 33%; }
    .l-comfimation__2item {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      border: initial;
      padding: 0; }
      .l-comfimation__2item dt {
        width: 31%;
        border-bottom: 1px solid #b2b2b2;
        padding: 20px 0;
        padding: 12px 0; }
    .l-comfimation__2item dd {
      width: 69%;
      border-bottom: 1px solid #b2b2b2;
      padding: 20px 0;
      padding: 12px 0; }
      .l-comfimation__2item dd + dt {
        margin-left: initial; }
    .l-comfimation__list li {
      font-size: 1.5rem; }
    .l-comfimation__list-dl {
      font-size: 1.4rem; }
      .l-comfimation__list-dl dt {
        width: 31%; }
    .l-comfimation__bottom-small-inner {
      max-width: initial;
      width: 100%;
      padding: 0 20px;
      margin: 50px auto 0; }
      .l-comfimation__agree-item + .l-comfimation__agree-item {
        margin-top: 15px; }
    .l-comfimation__agree-box {
      padding: 20px; }
      .entry__section-inner {
        padding: 0 20px; }
        .entry__section-inner--big {
          padding: 0 20px; }
      .entry__section-txt, .entry__section-txt--left {
        margin-top: 10px; }
      .entry__main-ttl {
        margin-top: 30px; }
      .entry__mail-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; }
      .entry__mail-label {
        width: 100%; }
      .entry__mail-input {
        margin-top: 10px; }
      .entry__err {
        position: initial;
        -webkit-transform: initial;
                transform: initial; }
      .entry__mail-btn {
        margin-top: 20px; }
    .form__category-wrap {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
    .form__category-item + .form__category-item {
      margin-left: 0;
      margin-top: 30px; }
    .form__category-btn {
      font-size: 1.8rem; }
    .form__section {
      padding: 45px 20px; }
    .form__top-txt {
      margin-top: 20px;
      text-align: left;
      line-height: 1.2857; }
    .form__item-wrap, .form__item-wrap--designer, .form__item-wrap--model {
      margin-top: 50px; }
    .form__item-wrap--designer {
      margin-top: 20px; }
    .form__item-wrap--model {
      margin-top: 20px; }
      .form__item-wrap--file {
        margin-top: 0; }
  .form__ttl--red {
    display: block; }
    .form__item, .form__item + .form__item--twocol,
    .form__item--twocol + .form__item--twocol {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column; }
      .form__item + .form__item, .form__item + .form__item--twocol + .form__item, .form__item--twocol + .form__item--twocol + .form__item, .form__item + .form__item--twocol,
      .form__item + .form__item--twocol + .form__item--twocol,
      .form__item--twocol + .form__item--twocol + .form__item--twocol {
        margin-top: 20px; }
    .form__name, .form__name--sex, .form__name--double {
      font-size: 1.6rem;
      padding: 0 0 10px;
      width: 100%; }
      .form__input-txt--small {
        width: 100%; }
        .form__input--year .form__input-txt--small {
          width: 50%; }
    .form__input-twocol {
      width: 100%; }
    .form__input-twocol-label {
      position: initial;
      padding-bottom: 10px;
      display: block;
      font-size: 1.6rem; }
      .form__input-twocol-label span {
        display: inline-block;
        margin-right: 0.5em; }
    .form__select, .form__select--qa {
      background-position: 96% 50%;
      width: 100%; }
    .form__radio, .form__radio--sex, .form__radio--2ndstg {
      padding: 5px 0; }
      .form__radio--2ndstg {
        padding: 12px 0 40px; }
    .form__radio-item + .form__radio-item {
      margin-left: 50px; }
    .form__radio--2ndstg .form__radio-item {
      width: 67%;
      margin-left: auto; }
    .form__radio-txt, .form__radio-txt--en {
      font-size: 1.6rem; }
    .form__textarea-txt {
      padding-top: 5px; }
    .form__err {
      width: 100%;
      padding-left: 0; }
      .form__example--box {
        padding: 20px;
        margin-top: 10px; }
      .form__voluntarily::after {
        position: initial;
        margin-top: 5px;
        margin-left: 10px;
        padding-bottom: 10px;
        -webkit-transform: initial;
                transform: initial; }
    .form__q {
      text-align: left;
      font-size: 1.6rem; }
    .form__qa-rdio-wrap {
      margin-top: 20px; }
      .form__qa-radio--input {
        display: block;
        padding-top: 0; }
        .form__qa-radio--input::before {
          -webkit-transform: initial;
                  transform: initial;
          top: 10px;
          left: 5px; }
    .form__qa-radio {
      margin-left: 0;
      display: block; }
    .form__qa-radio-txt {
      font-size: 1.4rem;
      padding: 10px 0 10px 30px;
      height: 37px; }
      .form__qa-radio-txt::before {
        top: 28px; }
      .form__qa-radio-txt::after {
        top: 28px; }
    .form__qa-radio-txt.-other::after, .form__qa-radio-txt.-other::before {
      top: 18px; }
    .form__agree-radio-txt {
      font-size: 1.6rem; }
    .form__agree-box {
      margin-top: 20px; }
    .form__btn {
      margin-top: 30px; }
    .err .form__err-txt {
      display: none; }
      .err .form__input::after, .err .form__input--year::after, .err .form__input--textarea::after, .err .form__input--file::after, .err .form__input--small::after,
      .err.form__input-twocol-item::after {
        display: none; }
    .form-head__inner {
      padding: 28px 20px 45px; }
    .form-head__ttl {
      padding: 0 10px; }
    .form-head__subttl, .form-head__subttl--entry {
      margin-top: 7px; }
      .form-head__subttl--big {
        font-size: 1.8rem; }
      .form-head__subttl--small {
        font-size: 1.6rem;
        margin-top: 5px; }
      .form-head__subttl--entry {
        margin-top: 20px; }
      .form-head__txt--career {
        margin-top: 60px; }
      .l-thanks__inner {
        width: 100%;
        min-width: initial;
        padding: 25px 20px 70px; }
      .l-thanks__num {
        margin: 22px auto 0;
        max-width: 100%;
        min-width: 66.666vw; }
      .l-thanks__data {
        margin: 30px auto 0; }
      .l-thanks__txt-top {
        margin: 45px auto 0; }
      .l-thanks__txt {
        margin: 45px auto 0; }
        .l-thanks__txt--small {
          margin-top: 8px;
          line-height: 1.8; }
      .l-thanks__small-txt {
        margin-top: 12px; }
      .l-thanks__close {
        margin-top: 60px; }
      .c-page-ttl__small {
        font-size: 1.8rem; }
      .c-page-ttl__big {
        font-size: 2.8rem; }
  .for-large {
    display: none; } }

/*# sourceMappingURL=../../_cache/_maps/styles.css.map */
