@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 {
  counter-reset: count-step;
  word-wrap: break-word;
  background-color: #edeff0;
  padding-top: 140px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 100px;
  }
}

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-XXL {
  margin-bottom: 100px;
}

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

.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 {
    margin-right: 4%;
    margin-left: 4%;
  }
}

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

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

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

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

.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;
  }
}

.l-Footer {
  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;
}

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

.c-Footer_Menu_Link {
  color: white;
}

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

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

.header {
  background-color: rgba(255, 255, 255, 0.8);
  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: 0;
  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);
}

.u-Button {
  color: white;
  background-color: #ff5a44;
  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: 160px;
  text-align: center;
  letter-spacing: 0.05em;
  border: solid 1px #ff5a44;
  -webkit-transition: 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}

.u-Button_Animation:hover {
  background: white;
  color: #ff5a44;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .u-Button_Animation:hover {
    background: #ff5a44;
    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 #ff5a44;
  color: #ff5a44;
  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%;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
  word-break: normal;
  letter-spacing: 0.05rem;
}

p {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 24px;
  line-height: 2.4rem;
}

.c-Title1 {
  color: #ff5a44;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 32px;
  line-height: 3.2rem;
  margin-bottom: 18px;
}

@media screen and (max-width: 768px) {
  .c-Title1 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 30px;
    line-height: 3rem;
    margin-bottom: 12px;
  }
}

.c-Title1::before {
  content: "●";
  padding-right: 0.5em;
  font-size: 14px;
  font-size: 1.4rem;
  vertical-align: top;
}

.c-Title1-En {
  font-family: 'Cabin', sans-serif;
  color: #ff5a44;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 34px;
  line-height: 3.4rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .c-Title1-En {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 30px;
    line-height: 3rem;
    margin-bottom: 14px;
  }
}

.c-Title1-En::before {
  content: "●";
  padding-right: 0.5em;
  font-size: 14px;
  font-size: 1.4rem;
  vertical-align: top;
}

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

.c-Title2_Wrapper {
  text-align: center;
  position: relative;
  padding-bottom: 1.6em;
}

.c-Title2_Wrapper::after {
  background-color: #616161;
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
}

.c-Title2_Sub {
  font-family: 'Cabin', sans-serif;
  color: #ff5a44;
}

@media screen and (max-width: 768px) {
  .c-Title2 {
    font-size: 30px;
    font-size: 3rem;
    line-height: 40px;
    line-height: 4rem;
    margin-right: 4%;
    margin-left: 4%;
  }
}

.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-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-MainImage {
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, transparent), color-stop(50%, white)) no-repeat top left/100% 40%;
  background: -webkit-linear-gradient(top right, transparent 50%, white 50%) no-repeat top left/100% 40%;
  background: linear-gradient(to bottom left, transparent 50%, white 50%) no-repeat top left/100% 40%;
  background-position: center bottom;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .c-MainImage {
    padding-bottom: 60px;
  }
}

.c-MainImage_Inner {
  position: relative;
}

.c-MainImage_Text p {
  line-height: 22px;
  line-height: 2.2rem;
}

.c-MainImage_TextBox {
  display: inline-block;
  position: absolute;
  top: 3%;
  left: 0;
  background-color: #0f2532;
  color: white;
  padding: 36px 36px;
  margin-top: 30px;
}

@media screen and (max-width: 960px) {
  .c-MainImage_TextBox {
    padding: 18px 16px;
  }
}

@media screen and (max-width: 768px) {
  .c-MainImage_TextBox {
    position: static;
    width: 88%;
    margin-right: 6%;
    margin-left: 6%;
  }
  .c-MainImage_TextBox .u-Text-XXL {
    font-size: 40px;
    font-size: 4rem;
    line-height: 50px;
    line-height: 5rem;
  }
  .c-MainImage_TextBox .u-Btm-L {
    margin-bottom: 10px;
  }
  .c-MainImage_TextBox .u-Btm-XL {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 768px) {
  .c-MainImage_Link {
    text-align: right;
  }
}

.c-MainImage_Pict {
  margin-left: 20%;
}

@media screen and (max-width: 768px) {
  .c-MainImage_Pict {
    margin-left: 0;
    margin-bottom: -100px;
  }
}

.c-Service {
  background-color: white;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .c-Service {
    padding-bottom: 80px;
  }
}

.c-Service_Box {
  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;
  gap: 0 36px;
}

@media screen and (max-width: 768px) {
  .c-Service_Box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    padding-bottom: 42px;
  }
}

@media screen and (max-width: 768px) {
  .c-Service_Link {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

.c-Service_Text {
  margin-bottom: 30px;
}

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

.c-Service_Pict-Img {
  width: 360px;
}

@media screen and (max-width: 768px) {
  .c-Service_Pict {
    text-align: center;
  }
  .c-Service_Pict-Img {
    width: 75%;
    max-width: 360px;
  }
}

.c-News {
  background-color: white;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .c-News {
    padding-bottom: 60px;
  }
}

.c-News_Inner {
  background-color: #ffefec;
  border-radius: 18px;
  padding: 2% 6%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 36px;
}

@media screen and (max-width: 768px) {
  .c-News_Inner {
    padding: 4% 6%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 4%;
    margin-left: 4%;
  }
}

.c-News_Title {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 28px;
  line-height: 2.8rem;
}

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

.c-News_List_Item {
  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;
  gap: 0 18px;
}

.c-News_List_Item:not(:last-child) {
  margin-bottom: 18px;
}

.c-News_List_Item_Right {
  margin-top: 2px;
}

@media screen and (max-width: 768px) {
  .c-News_List_Item {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-About {
  padding-top: 48px;
  padding-bottom: 48px;
}

.c-About_Inner {
  background-color: white;
  padding: 2% 6%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 36px;
}

@media screen and (max-width: 768px) {
  .c-About_Inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4% 6%;
    margin-right: 4%;
    margin-left: 4%;
  }
}

.c-About_Img {
  max-width: 380px;
}

@media screen and (max-width: 768px) {
  .c-About_Img {
    max-width: 300px;
  }
}

.c-webService_main {
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, transparent), color-stop(50%, white)) no-repeat top left/100% 40%;
  background: -webkit-linear-gradient(top right, transparent 50%, white 50%) no-repeat top left/100% 40%;
  background: linear-gradient(to bottom left, transparent 50%, white 50%) no-repeat top left/100% 40%;
  background-position: center bottom;
  padding-bottom: 60px;
}

.c-webService_mainImages {
  background-image: url(../../assets/img/pict_webService.jpg);
  height: 460px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
}

.c-webService_mainImages_Text {
  padding: 36px 24px;
}

@media screen and (max-width: 768px) {
  .c-webService_mainImages {
    border-radius: 18px;
    height: 200px;
  }
}

.c-webService_mainText_Title {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 36px;
  line-height: 3.6rem;
}

.c-webService_mainText_Content {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 30px;
  line-height: 3rem;
}

.c-webService_content {
  background-color: white;
  padding-bottom: 60px;
}

.c-webService_Pict {
  text-align: right;
}

.c-webService .c-internetMarketing_mainImages {
  background-image: url(../../assets/img/pict_internetMarketing.jpg);
  height: 460px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .c-webService .c-internetMarketing_mainImages {
    border-radius: 18px;
    height: 200px;
  }
}

.c-recruit {
  margin-bottom: 60px;
}

.c-recruit_Note {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: rgba(255, 255, 255, 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: 180px;
}

.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.8);
}

.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.8);
  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: 300px;
}

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