@charset "UTF-8";
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

input[type="button"] {
  -webkit-appearance: none;
}

html {
  height: 100%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  height: 100%;
}

img,
video {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

img a,
video a {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 1s;
  transition: 1s;
}

a:hover {
  opacity: 0.6;
  -webkit-transition: 1s;
  transition: 1s;
}

.u-Btm-XXXL {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .u-Btm-XXXL {
    margin-bottom: 60px;
  }
}

.u-Btm-XXL {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .u-Btm-XXL {
    margin-bottom: 50px;
  }
}

.u-Btm-XL {
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .u-Btm-XL {
    margin-bottom: 24px;
  }
}

.u-Btm-L {
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .u-Btm-L {
    margin-bottom: 14px;
  }
}

.u-Btm-M {
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  .u-Btm-M {
    margin-bottom: 6px;
  }
}

.u-Btm-S {
  margin-bottom: 6px;
}

@media screen and (max-width: 768px) {
  .u-Btm-S {
    margin-bottom: 3px;
  }
}

.u-Btm-XS {
  margin-bottom: 2px;
}

.scroll-fade {
  opacity: 0;
  -webkit-transition: all 2s;
  transition: all 2s;
  /*処理にかかる時間*/
}

.scroll-up {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  /*スクロールアップする距離*/
  -webkit-transition: all 2s;
  transition: all 2s;
  /*処理にかかる時間*/
}

.scroll-up.done,
.scroll-fade.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.load-fade {
  opacity: 0;
  -webkit-transition: all 2s;
  transition: all 2s;
  /*処理にかかる時間*/
}

.load-up {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  /*スクロールアップする距離*/
  -webkit-transition: all 2s;
  transition: all 2s;
  /*処理にかかる時間*/
}

.load-up.done,
.load-fade.done {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.l-Container {
  height: 100%;
}

.l-Contents {
  width: 100%;
}

.l-Contents-L {
  max-width: 1360px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .l-Contents-L {
    width: 92%;
  }
}

.l-Contents-M {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .l-Contents-M {
    width: 92%;
  }
}

.l-Contents-S {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .l-Contents-S {
    width: 92%;
  }
}

.u-Button {
  color: white;
  background-color: #daab00;
  display: inline-block;
  padding: 0.6em 0;
  border-radius: 1.6em;
  cursor: pointer;
}

.u-Button._Dark {
  background-color: #0f2532;
}

@media screen and (max-width: 960px) {
  .u-Button {
    padding: 0.4em 1.8em;
    border-radius: 1.8em;
  }
}

.u-Button_Animation {
  width: 120px;
  text-align: center;
  color: #333333;
  border: solid 1px #333333;
  background: #daab00;
  -webkit-transition: 0.3s cubic-bezier(0.37, 0, 0.63, 1);
  transition: 0.3s cubic-bezier(0.37, 0, 0.63, 1);
}

.u-Button_Animation:hover {
  border: solid 1px #daab00;
  background: white;
  color: #daab00;
  letter-spacing: 0.12em;
}

@media screen and (max-width: 768px) {
  .u-Button_Animation:hover {
    background: #daab00;
    color: white;
    letter-spacing: 0.05em;
  }
}

.u-Button_Animation._Dark {
  border: solid 1px #0f2532;
}

.u-Button_Animation._Dark:hover {
  color: #0f2532;
}

@media screen and (max-width: 768px) {
  .u-Button_Animation._Dark:hover {
    background: #0f2532;
    color: white;
  }
}

.u-Icon {
  border: solid 1px #daab00;
  color: #daab00;
  padding: 0.5em 1.0em;
  border-radius: 1.5em;
  background-color: white;
}

.u-Txt_Animation {
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

.u-Txt_Animation::after {
  position: absolute;
  bottom: .3em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: '';
  width: 60%;
  height: 2px;
  background-color: #0f2532;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.u-Txt_Animation:hover::after {
  bottom: -4px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .u-Txt_Animation:hover::after {
    bottom: .3em;
    opacity: 0;
  }
}

.u-Txt_Animation2 {
  padding-bottom: 3px;
  position: relative;
}

.u-Txt_Animation2::before {
  background-color: #0f2532;
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.u-Txt_Animation2:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

html {
  font-family: "Roboto", "M PLUS 1p", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Meiryo UI, "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
  color: #333333;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
  word-break: normal;
  letter-spacing: 0.1rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.c-Title1 {
  color: white;
  font-family: 'Cabin', sans-serif;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .c-Title1 {
    margin-bottom: 40px;
  }
}

.c-Title1::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background-color: #333333;
  margin: 24px auto 0 auto;
}

.c-Title2 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 40px;
  line-height: 4rem;
}

@media screen and (max-width: 768px) {
  .c-Title2 {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 36px;
    line-height: 3.6rem;
  }
}

.u-Gfont-Work {
  font-family: 'Cabin', sans-serif;
}

.u-Text-XXL {
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 58px;
  line-height: 5.8rem;
}

@media screen and (max-width: 960px) {
  .u-Text-XXL {
    font-size: 38px;
    font-size: 3.8rem;
    line-height: 48px;
    line-height: 4.8rem;
  }
}

.u-Text-XL {
  font-size: 30px;
  font-size: 3rem;
  line-height: 40px;
  line-height: 4rem;
}

@media screen and (max-width: 960px) {
  .u-Text-XL {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 34px;
    line-height: 3.4rem;
  }
}

.u-Text-L {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 34px;
  line-height: 3.4rem;
}

@media screen and (max-width: 960px) {
  .u-Text-L {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 28px;
    line-height: 2.8rem;
  }
}

.u-Text-M {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  line-height: 2.8rem;
}

@media screen and (max-width: 960px) {
  .u-Text-M {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    line-height: 2.6rem;
  }
}

.u-Text-N {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  line-height: 3rem;
}

@media screen and (max-width: 960px) {
  .u-Text-N {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 30px;
    line-height: 3rem;
  }
}

.u-Text-S {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 22px;
  line-height: 2.2rem;
}

@media screen and (max-width: 960px) {
  .u-Text-S {
    font-size: 10px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 2rem;
  }
}

.u-Text-XS {
  font-size: 10px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 2rem;
}

.u-Text-Bold {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .u-noBr_pc {
    display: none;
  }
}

.u-noBr_mb {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-noBr_mb {
    display: block;
  }
}

.c-Header_Branding {
  padding-left: 2%;
}

.c-Header_Logo-Img {
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  .c-Header_Logo-Img {
    max-width: 120px;
  }
}

.c-Footer {
  background-color: #0f2532;
  color: white;
  padding: 36px 2% 12px 2%;
  text-align: right;
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
  width: 100%;
}

.c-Footer_Menu_Link {
  color: white;
}

.c-Footer_Logo {
  text-align: center;
}

.c-Footer_Logo-Img {
  max-width: 180px;
}

@media screen and (max-width: 768px) {
  .c-Footer_Logo-Img {
    max-width: 140px;
  }
}

.c-Copyright {
  text-align: center;
}

.header {
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 18px 0;
}

.header__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: -18px;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #fff;
  -webkit-transition: ease .4s;
  transition: ease .4s;
}

@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    -webkit-transform: initial;
            transform: initial;
    background-color: inherit;
    height: inherit;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: end;
        -ms-flex-pack: end;
            justify-content: end;
    width: 50%;
    margin-right: 2%;
  }
}

@media screen and (min-width: 960px) {
  .nav__items {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: initial;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 0 36px;
  }
}

.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0;
  min-width: 260px;
}

@media screen and (min-width: 960px) {
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
    position: inherit;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

.nav-items__item a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 24px;
}

@media screen and (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
  }
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

.nav-items__item_button {
  text-align: center;
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  margin-right: 2%;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  -webkit-transition: ease .4s;
  transition: ease .4s;
  display: block;
}

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

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

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

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .nav-items {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 36px;
    line-height: 3.6rem;
  }
  .nav-items .nav-items__item {
    margin-bottom: 60px;
  }
  .nav-items .u-Button_Animation {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
    line-height: 3rem;
    width: auto;
  }
}

.c-MainImage {
  position: relative;
  z-index: 10;
}

.c-MainImage_Pict {
  background-image: url("../img/pict_home01.jpg");
  height: 480px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .c-MainImage_Pict {
    background-image: url("../img/pict_home01-sp.jpg");
  }
}

.c-MainImage_Text_Top {
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  line-height: 54px;
  line-height: 5.4rem;
}

@media screen and (max-width: 768px) {
  .c-MainImage_Text_Top {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 40px;
    line-height: 4rem;
  }
}

.c-MainImage_Text_Sub {
  padding-right: 240px;
}

@media screen and (max-width: 768px) {
  .c-MainImage_Text_Sub {
    padding-right: 0px;
  }
}

.c-MainImage_Text_Ill {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 280px;
}

@media screen and (max-width: 768px) {
  .c-MainImage_Text_Ill {
    position: static;
    width: 100%;
    text-align: right;
    margin-bottom: -30px;
  }
  .c-MainImage_Text_Ill-Img {
    width: 200px;
  }
}

.c-AboutUs {
  background-color: #d9d9d0;
  padding-top: 90px;
  padding-bottom: 180px;
}

.c-AboutUs_Pict-Img {
  border-radius: 18px;
}

.c-Page {
  margin-bottom: 180px;
}

@media screen and (max-width: 768px) {
  .c-Page {
    margin-bottom: 120px;
  }
}

.c-Page_MainImage {
  height: 420px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-Page_MainImage._About {
  background-image: url("../img/pict_about01-pc.jpg");
}

.c-Page_MainImage._Concept {
  background-image: url("../img/pict_concept01-pc.jpg");
}

.c-Page_Contents._Gray {
  background-color: #d9d9d0;
  padding-top: 60px;
  padding-bottom: 100px;
}

.c-Page_Title._Gray {
  background-color: #d9d9d0;
  padding: 60px 0 30px 0;
}

@media screen and (max-width: 768px) {
  .c-Page_Title._Gray {
    background-color: #d9d9d0;
    padding: 40px 0 12px 0;
  }
}

.c-About_Contents {
  position: relative;
}

.c-About_Contents_List_Item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: solid 1px #f5f1e6;
}

.c-About_Contents_List_Dt {
  width: 154px;
  color: white;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 34px;
  line-height: 3.4rem;
  font-weight: bold;
}

.c-About_Contents_List_Dd {
  width: calc(100% - 160px);
}

.c-About_Contents_Ill {
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 280px;
}

@media screen and (max-width: 768px) {
  .c-About_Contents_Ill {
    right: 0;
    bottom: -147px;
    width: 190px;
  }
}

@media screen and (max-width: 768px) {
  .c-About_Contents_List_Item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-About_Contents_List_Dt {
    width: 100%;
  }
  .c-About_Contents_List_Dd {
    width: 100%;
  }
}

.c-About_Company {
  text-align: center;
}

.c-About_Company-Img {
  max-width: 480px;
  display: inline-block;
}

.c-Concept .c-Page_Contents._Gray {
  padding-bottom: 110px;
}

.c-Concept_Contents {
  position: relative;
}

.c-Concept_Contents_Text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 28px;
  line-height: 2.8rem;
  padding-right: 160px;
}

@media screen and (max-width: 768px) {
  .c-Concept_Contents_Text {
    padding-right: 0px;
  }
}

.c-Concept_Contents_Ill {
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 280px;
}

@media screen and (max-width: 768px) {
  .c-Concept_Contents_Ill {
    right: 0;
    bottom: -160px;
    width: 190px;
  }
}

.c-Concept_Contents_List_Dt {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 30px;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.c-Concept_Contents_List_Dd {
  margin-bottom: 48px;
}

.c-Privacy {
  padding-Top: 120px;
}

@media screen and (max-width: 768px) {
  .c-Privacy {
    padding-Top: 100px;
  }
}

.c-Recruit {
  padding-Top: 79px;
}

@media screen and (max-width: 768px) {
  .c-Recruit {
    padding-Top: 62px;
  }
}

.c-Recruit_Note {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(228, 228, 228, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}

.c-Recruit_List {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 26px;
  line-height: 2.6rem;
  margin-right: 10%;
  margin-left: 10%;
}

.c-Recruit_List:not(:last-child) {
  margin-bottom: 30px;
}

.c-Recruit_List_Wrap {
  position: relative;
  padding-bottom: 30px;
  padding-top: 30px;
}

.c-Recruit_List dt {
  width: 20%;
  font-weight: bold;
}

.c-Recruit_List dd {
  width: 80%;
}

@media screen and (max-width: 768px) {
  .c-Recruit_List {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 24px;
    line-height: 2.4rem;
    margin-right: 2%;
    margin-left: 2%;
  }
  .c-Recruit_List:not(:last-child) {
    margin-bottom: 18px;
  }
  .c-Recruit_List_Wrap {
    margin-right: 4%;
    margin-left: 4%;
  }
  .c-Recruit_List dt {
    width: 100%;
  }
  .c-Recruit_List dd {
    width: 100%;
  }
}

.c-Recruit .c-Img_Mail {
  width: 160px;
}

@media screen and (max-width: 768px) {
  .c-Recruit .c-Img_Mail {
    width: 140px;
  }
}

.c-Contact {
  padding-Top: 79px;
}

@media screen and (max-width: 768px) {
  .c-Contact {
    padding-Top: 62px;
  }
}

.c-Form_Note {
  text-align: center;
}

.c-Form-Item {
  padding-bottom: 30px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -webkit-align-items: top;
      -ms-flex-align: top;
          align-items: top;
}

@media screen and (max-width: 768px) {
  .c-Form-Item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-Form-Item-Label {
  width: 100%;
  max-width: 240px;
  font-weight: bold;
  padding-top: 12px;
}

@media screen and (max-width: 768px) {
  .c-Form-Item-Label {
    max-width: inherit;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 6px;
  }
}

.c-Form-Item-Label-Required {
  display: inline-block;
  margin-top: 6px;
  margin-right: 6px;
  padding: 0 6px;
  line-height: 1.4em;
  background: #ff5a44;
  vertical-align: top;
  border-radius: 2px;
  color: white;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .c-Form-Item-Label-Required {
    margin-top: 0;
  }
}

.c-Form-Item-Input {
  border: solid 1px #c8c8c8;
  border-radius: 6px;
  padding: 1em;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
}

.c-Form-Item-Textarea {
  border: solid 1px #c8c8c8;
  border-radius: 6px;
  padding: 1em;
  height: 240px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  line-height: 3rem;
  letter-spacing: 0.1em;
}

.c-Form-CheckaArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-Form-Btn {
  text-align: center;
}

.c-Form-Btn input:disabled {
  opacity: 0.4;
  cursor: default;
}

.c-Form-Btn input:disabled:hover {
  pointer-events: none;
}

.c-Form-Btn .u-Button {
  width: 180px;
}

@media screen and (max-width: 768px) {
  .c-Form-Btn .u-Button {
    width: 200px;
  }
}
