@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
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, 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: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  -webkit-tap-highlight-color: transparent;
}

body {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

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

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

ul, ol {
  margin: 0;
  padding: 0;
}

/*
    font-family: 'Mulish', sans-serif;
    font-family: 'Noto Sans JP', sans-serif;
*/
/* automatic size vw */
/* automatic size vh */
/* text clamp */
/* anime In order */
/*
    Form Parts
*/
input {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  /*
      text
  */
  /*
      checkbox
  */
  /*
      radio
  */
}
input[type=text] {
  padding: 14px;
  font-size: 14px;
  width: 410px;
  background-color: #fff;
  border: 1px solid #808080;
}
@media (max-width: 750px) {
  input[type=text] {
    font-size: 13px;
    font-size: 3.4666666667vw;
    padding: 1.667vw;
    width: 100%;
  }
}
input[type=text].short {
  width: 270px;
}
@media (max-width: 750px) {
  input[type=text].short {
    width: 50vw;
  }
}
input[type=text].middle {
  width: 380px;
}
@media (max-width: 750px) {
  input[type=text].middle {
    width: 70vw;
  }
}
input[type=text].middle2 {
  width: 415px;
}
@media (max-width: 750px) {
  input[type=text].middle2 {
    width: 70vw;
  }
}
input[type=text].large {
  width: 630px;
}
@media (max-width: 750px) {
  input[type=text].large {
    width: 100%;
  }
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + label {
  display: inline-block;
  padding: 3px 10px 3px 20px;
  position: relative;
}
@media (max-width: 750px) {
  input[type=checkbox] + label {
    text-align: left;
    font-size: 15px;
    font-size: 4vw;
  }
}
input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 12px;
  margin-top: -7px;
  background-color: #fff;
  border: 1px solid #274b89;
}
input[type=checkbox]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  width: 3px;
  height: 6px;
  transform-origin: center; /* y-offset-keyword | x-offset-keyword | z-offset */
  transform: rotate(45deg) translate(-50%, -60%);
  border-right: 3px solid #274b89;
  border-bottom: 3px solid #274b89;
}
input[type=radio] {
  display: none;
}
input[type=radio] + label {
  display: inline-block;
  padding: 3px 10px 3px 40px;
  position: relative;
}
input[type=radio] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  margin-top: -16px;
  background-color: #fff;
  border: 1px solid #808080;
}
input[type=radio]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 11px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background-color: #4D6381;
}

/*
    select
*/
.box_select {
  display: inline-block;
  line-height: 1;
  position: relative;
}
.box_select select {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  min-width: 270px;
  height: 50px;
  font-size: 17px;
  padding: 0 0 0 15px;
}
@media (max-width: 750px) {
  .box_select select {
    height: 9.333vw;
    width: 100%;
    min-width: 170px;
    max-width: 500px;
    font-size: 28px;
    font-size: 7.4666666667vw;
  }
}
.box_select:before {
  content: "";
  display: block;
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 750px) {
  .box_select:before {
    width: 9.333vw;
  }
}

/*
    textarea
*/
textarea {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
  width: 100%;
  max-width: 630px;
  height: 270px;
  padding: 7px;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid #808080;
}
@media (max-width: 750px) {
  textarea {
    font-size: 14px;
    font-size: 3.7333333333vw;
    height: 34.6667vw;
  }
}

/*
    button
*/
button {
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0;
}
button[name=submit] {
  width: 154px;
  height: 40px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 20px;
  color: #fff;
  background-color: #274b89;
  border-radius: 30px;
}
@media (max-width: 750px) {
  button[name=submit] {
    width: 58.667vw;
    height: 13.333vw;
    font-size: 15px;
    font-size: 4vw;
  }
}
button[name=submit] > span {
  display: inline-block;
  padding: 0 30px 0 0;
  position: relative;
  line-height: 1;
}
button[name=submit] > span:after {
  content: "";
  display: lock;
  width: 22px;
  height: 26px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-image: url("../images/contact/icon_hand.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
button[name=submit].entry {
  background-color: #6E7B96;
}

p.error {
  color: #EB6F68;
  font-size: 14px;
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  p.error {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}

/*
    Button
*/
a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  letter-spacing: 0.16em;
  width: 118px;
  height: 31px;
  border-radius: 20px;
  font-size: 14px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-weight: 600;
}
a.btn > span {
  display: block;
  position: relative;
}
a.btn.fulltime {
  background-color: #4D6381;
}
a.btn.contract {
  background-color: #EB6F68;
}
a.btn.faq {
  background-color: #E6DCDC;
}
a.button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #4D4D4D;
  letter-spacing: 0.16em;
}
a.button.gmap {
  width: 177px;
  height: 40px;
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid #4D4D4D;
  font-size: 15px;
  font-weight: 600;
}
a.button.gmap > span {
  display: block;
  padding: 0 0 0 25px;
  position: relative;
}
a.button.gmap > span:before {
  content: "";
  display: block;
  width: 13px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/icon_mappin.svg");
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
}
a.button.recruit {
  width: 118px;
  height: 31px;
  border-radius: 25px;
  background-color: #fff;
  border: 1px solid #4D4D4D;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
}
@media (max-width: 750px) {
  a.button.recruit {
    width: 26.6667vw;
    height: 7.2vw;
    border-radius: 4vw;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
a.button.recruit > span {
  display: block;
  padding: 0 0 0 25px;
  position: relative;
}
@media (max-width: 750px) {
  a.button.recruit > span {
    padding: 0 0 0 5.3333vw;
  }
}
a.button.recruit > span:before {
  content: "";
  display: block;
  width: 18px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/icon_person.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  a.button.recruit > span:before {
    width: 4vw;
    height: 5.333vw;
  }
}
a.button.recruit.active {
  border: 1px solid #EB6F68;
  color: #EB6F68;
}
a.button.recruit.active > span:before {
  background-image: url("../images/common/icon_person2.svg");
}

/*
    Table
*/
.anime {
  opacity: 0;
}
.anime.animated {
  animation: slideTitle 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

.anime2 {
  opacity: 0;
}
.anime2.animated {
  animation: fadeIn 1.2s linear 0.2s forwards;
}

.anime3 {
  opacity: 0;
}
.anime3.animated {
  animation: slideTitle2 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

.animeleft {
  opacity: 0;
}
.animeleft.animated {
  animation: slideIn 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

.animeright {
  opacity: 0;
}
.animeright.animated {
  animation: slideIn2 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

#header.init {
  transform: translate(0, -100%);
}
#header.fixed {
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
  transform: translate(0, 0);
}

@keyframes slideTitle {
  0% {
    opacity: 0;
    transform: translate(0, -30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideTitle2 {
  0% {
    opacity: 0;
    transform: translate(0, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideIn2 {
  0% {
    opacity: 0;
    transform: translate(30px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInEnlarge {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleXwidth {
  0% {
    transform: scaleX(0);
    transform-origin: top left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: top left;
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInLoop {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95);
  }
  60% {
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(1, 1, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInCenter {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1.3, 1.3, 1.3) translate(-50%, -50%);
  }
  20% {
    transform: scale3d(1.03, 1.03, 1.03) translate(-50%, -50%);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01) translate(-50%, -50%);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99) translate(-50%, -50%);
  }
  to {
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes bounceOut {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.8, 0.8, 0.8);
  }
  20% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  40% {
    transform: scale3d(0.95, 0.95, 0.95) rotate(0deg);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.01, 1.01, 1.01);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
  to {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
@keyframes bounceInroll {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(0, 50px);
  }
  20% {
    opacity: 1;
    transform: translate(0, -10px);
  }
  40% {
    transform: translate(0, 0);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes rotateDownLeft {
  0% {
    opacity: 0;
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -20deg);
  }
  20% {
    opacity: 1;
    transform: rotate3d(0, 0, 1, 10deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 2deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -1deg);
  }
  to {
    opacity: 1;
    transform-origin: left bottom;
    transform: none;
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
    opacity: 1;
  }
}
@keyframes shadowSlide {
  from, 20%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-15px, -15px);
  }
  20% {
    opacity: 1;
    transform: translate(-15px, -15px);
  }
  80% {
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes shadowSlide_sp {
  from, 20%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate(-7px, -7px);
  }
  20% {
    opacity: 1;
    transform: translate(-7px, -7px);
  }
  80% {
    transform: translate(0, 0);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes blurInTitle {
  from, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale(1);
    filter: blur(30px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}
@keyframes Turnboard {
  from {
    transform: perspective(300px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in-out;
    opacity: 0;
  }
  40% {
    transform: perspective(300px) rotate3d(0, 1, 0, -10deg);
    animation-timing-function: ease-in-out;
  }
  60% {
    transform: perspective(300px) rotate3d(0, 1, 0, 5deg);
    opacity: 1;
  }
  80% {
    transform: perspective(300px) rotate3d(0, 1, 0, -2deg);
  }
  to {
    opacity: 1;
    transform: perspective(300px);
  }
}
@keyframes fuwafuwa {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fadeOutAnime {
  0%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: scale(1, 1);
  }
  60% {
    transform: scale(1.2, 1.2);
  }
  100% {
    transform: scale(0, 0);
  }
}
@keyframes fadeOutAnimeBtn {
  0%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-100%, -80%) scale(1, 1);
  }
  60% {
    transform: translate(-100%, -80%) scale(1.2, 1.2);
  }
  100% {
    transform: translate(-50%, -40%) scale(0, 0);
  }
}
@keyframes bounceInDown {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(1, 1, 1) translate(0, -40px);
  }
  20% {
    transform: scale3d(1, 1, 1);
  }
  40% {
    transform: scale3d(1.1, 0.9, 1) translate(0, 5px);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.95, 1.05, 1) translate(0, -2px);
  }
  80% {
    transform: scale3d(1, 1, 1) translate(0, 0);
  }
  to {
    transform: scale3d(1, 1, 1) translate(0, 0);
    opacity: 1;
  }
}
@keyframes bounceOutUp {
  from, to {
    animation-timing-function: cubic-bezier(0.915, 0.03, 0.91, 0.35);
  }
  0% {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate(0, 0);
  }
  to {
    transform: scale3d(0, 0, 1) translate(0, 120px);
    opacity: 0;
  }
}
@keyframes kujiOpen1step {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    height: 50%;
  }
  to {
    height: 0;
  }
}
@keyframes kujiOpen2step {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    height: 0;
  }
  to {
    height: 50%;
  }
}
@keyframes rotationInner {
  0%, 100% {
    animation-timing-function: linear;
  }
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes kujiOpen3step {
  0%, 40%, 60%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    top: 15%;
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
  }
  60% {
    opacity: 1;
    top: -13%;
  }
  to {
    opacity: 1;
    top: -10%;
    transform: scale3d(1, 1, 1) translate(-50%, -50%);
  }
}
@keyframes kujifadeout {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    top: 48.5%;
    opacity: 0;
    transform: scale(0.9, 0.9);
  }
  50% {
    top: 48.5%;
    opacity: 0;
    transform: scale(0.9, 0.9);
  }
  to {
    top: 48.5%;
    width: 67.33vw;
    opacity: 1;
    transform: scale(1, 1);
  }
}
/*
    個別にアニメーション
*/
@keyframes lottery_fuwa01 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -20%) rotate(-20deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@keyframes lottery_fuwa02 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
  50% {
    transform: translate(-40%, -80%) rotate(25deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
}
@keyframes lottery_fuwa03 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-35deg);
  }
  50% {
    transform: translate(-60%, 10%) rotate(-79deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-35deg);
  }
}
@keyframes lottery_fuwa04 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-133deg);
  }
  50% {
    transform: translate(-40%, -40%) rotate(-133deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-133deg);
  }
}
@keyframes lottery_fuwa05 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-66deg);
  }
  50% {
    transform: translate(-50%, -90%) rotate(-66deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-66deg);
  }
}
@keyframes lottery_fuwa08 {
  0%, 50%, 100% {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    transform: translate(-50%, -50%) rotate(-192deg);
  }
  50% {
    transform: translate(-50%, 10%) rotate(-192deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-192deg);
  }
}
/*
    common
*/
html,
body {
  width: 100%;
  height: auto;
  font-size: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  word-wrap: break-word;
  text-align: center;
  background-image: url("../images/common/groovepaper.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: auto auto;
}
html.hidden,
body.hidden {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  -webkit-touch-callout: none;
}

ul,
ol {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
  opacity: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  opacity: 0.5;
}

sup {
  vertical-align: super;
  font-size: 80%;
}

.util_sp {
  display: none !important;
}
@media (max-width: 750px) {
  .util_sp {
    display: block !important;
  }
}

.util_pc {
  display: block !important;
}
@media (max-width: 750px) {
  .util_pc {
    display: none !important;
  }
}

@media print {
  img {
    display: none;
  }
}
/*
    Error
*/
/*
    PageTop
*/
#pagetop {
  position: fixed;
  bottom: 5px;
  right: 5px;
  width: 51px;
  height: 51px;
  z-index: 2;
}
#pagetop > a > img {
  max-width: 51px;
  max-height: 51px;
}

/*
    loader
*/
/*
    header
*/
header#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transform: translate(0, 0);
  background-color: #FAF5F5;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 750px) {
  header#header {
    position: fixed;
    background-color: #FAF5F5;
  }
}
header#header > .inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1130px;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
@media (max-width: 750px) {
  header#header > .inner {
    padding: 2.6667vw 4vw;
    height: 16vw;
  }
}
header#header > .inner > .container_logo {
  width: 202px;
}
@media (max-width: 750px) {
  header#header > .inner > .container_logo {
    width: 32vw;
    position: relative;
    z-index: 1;
  }
}
header#header > .inner > .container_logo img.default {
  display: none;
}
header#header > .inner > .container_logo img.fixedviewer {
  display: block;
}
header#header > .inner > .container_navigation {
  display: flex;
  align-items: center;
}
header#header > .inner > .container_navigation ul.nav_recruit {
  margin-left: 100px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
@media (max-width: 1060px) {
  header#header > .inner > .container_navigation ul.nav_recruit {
    margin-left: 30px;
  }
}
@media (max-width: 750px) {
  header#header > .inner > .container_navigation ul.nav_recruit {
    margin-left: 5.3333vw;
    position: relative;
    z-index: 1;
    flex-direction: unset;
  }
}
header#header > .inner > .container_navigation ul.nav_recruit > li {
  position: relative;
}
header#header > .inner > .container_navigation ul.nav_recruit > li img.icon_insta_white {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 750px) {
  header#header > .inner > .container_navigation ul.nav_recruit > li img.icon_insta_white {
    opacity: 0;
  }
}
header#header > .inner > .container_navigation ul.nav_recruit > li:nth-of-type(2) {
  width: 35px;
  margin-right: 10px;
}
@media (max-width: 750px) {
  header#header > .inner > .container_navigation ul.nav_recruit > li:nth-of-type(2) {
    width: 8vw;
    margin-right: 0;
    margin-left: 2.6666666667vw;
  }
}
header#header > .inner > .container_navigation > .container_sp_hamburger {
  display: none;
}
@media (max-width: 750px) {
  header#header > .inner > .container_navigation > .container_sp_hamburger {
    margin-left: 4vw;
    display: block;
    width: 9.3333vw;
    height: 9.3333vw;
    background-color: #EB6F68;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    cursor: pointer;
  }
}
@media (max-width: 750px) {
  header#header > .inner > .container_navigation > .container_sp_hamburger > span {
    display: block;
    width: 60%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 750px) {
  header#header > .inner > .container_navigation > .container_sp_hamburger > span:nth-of-type(1) {
    top: 35%;
  }
}
@media (max-width: 750px) {
  header#header > .inner > .container_navigation > .container_sp_hamburger > span:nth-of-type(3) {
    top: 65%;
  }
}
@media (max-width: 750px) {
  header#header > .inner > .container_navigation > .container_sp_hamburger.open > span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@media (max-width: 750px) {
  header#header > .inner > .container_navigation > .container_sp_hamburger.open > span:nth-of-type(2) {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (max-width: 750px) {
  header#header > .inner > .container_navigation > .container_sp_hamburger.open > span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
  }
}

.index header#header {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
}
@media (max-width: 750px) {
  .index header#header {
    position: fixed;
    background-color: #FAF5F5;
  }
}
.index header#header > .inner > .container_logo {
  width: 202px;
}
@media (max-width: 750px) {
  .index header#header > .inner > .container_logo {
    width: 32vw;
    position: relative;
    z-index: 1;
  }
}
.index header#header > .inner > .container_logo img.default {
  display: block;
}
@media (max-width: 750px) {
  .index header#header > .inner > .container_logo img.default {
    display: none;
  }
}
.index header#header > .inner > .container_logo img.fixedviewer {
  display: none;
}
@media (max-width: 750px) {
  .index header#header > .inner > .container_logo img.fixedviewer {
    display: block;
  }
}
.index header#header.fixed {
  position: fixed;
  background-color: #FAF5F5;
}
.index header#header.fixed > .inner > .container_logo img.fixedviewer {
  display: block;
}
.index header#header.fixed > .inner > .container_logo img.default {
  display: none;
}
.index header#header.fixed > .inner .container_navigation ul.nav_recruit > li img.icon_insta_white {
  opacity: 0;
}
.index header#header.fixed #nav ul.nav_global > li a {
  color: #4D4D4D;
}

/*
    footer
*/
footer#footer {
  margin-top: 60px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  footer#footer {
    margin-top: 8vw;
  }
}
footer#footer > .inner {
  background-color: #FFD5C9;
}
footer#footer > .inner > .container_footer_wrapper {
  margin: 0 auto;
  max-width: 990px;
  padding: 20px 15px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper {
    display: block;
    padding: 4vw;
  }
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_address {
    margin-top: 5.3333vw;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .logo {
  width: 156px;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .logo {
    margin: 0 auto;
    width: 32vw;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text {
  margin-top: 35px;
  line-height: 1.36;
  text-align: left;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text {
    margin-top: 5.3333vw;
    text-align: center;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > p.company_name {
  letter-spacing: 0.3em;
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > p.company_name {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > p.company_address {
  letter-spacing: 0.3em;
  font-size: 12px;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > p.company_address {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > p.company_address > span {
  font-size: 82%;
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > p.company_phone {
  margin-top: 0.5em;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > p.company_phone {
    font-size: 15px;
    font-size: 4vw;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > .link {
  margin-top: 15px;
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > .link {
    margin-top: 2.6667vw;
    text-align: center;
    display: block;
  }
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > .link a {
    margin: 0 auto;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > .link a.icon_insta {
  margin-left: 1em;
  display: block;
  width: 38px;
  line-height: 0;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_address > .container_footer_text > .link a.icon_insta {
    margin: 2.6667vw auto 0;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_link {
  margin-top: 25px;
  width: 65.625%;
  border-left: 1px solid #4D4D4D;
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0.12em;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_link {
    margin-top: 2.6667vw;
    border: none;
    width: 100%;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_link > ul {
  margin-left: 60px;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_link > ul {
    margin-left: 0;
    width: 100%;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_link > ul > li {
  padding: 20px 0;
  text-align: left;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-weight: 600;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_link > ul > li {
    padding: 0;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_link > ul > li a {
  color: #4D4D4D;
  display: block;
  position: relative;
  padding: 0 0 0 15px;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_link > ul > li a {
    padding: 4vw 0 4vw 4vw;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_link > ul > li a:before {
  content: "";
  display: block;
  width: 5px;
  height: 9px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/icon_arrow.svg");
  background-repeat: repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  footer#footer > .inner > .container_footer_wrapper > .container_footer_link > ul > li a:before {
    width: 1.3333vw;
    height: 2.6667vw;
  }
}
footer#footer > .inner > .container_footer_wrapper > .container_footer_link > ul > li a.arrow2:before {
  background-image: url("../images/common/icon_arrow2.svg");
}
footer#footer > .copyright {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 1em;
}
@media (max-width: 750px) {
  footer#footer > .copyright {
    padding: 2em 1em;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}

/*
    Navigation
*/
@media (max-width: 750px) {
  nav#nav {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #FAF5F5;
    display: none;
  }
}
nav#nav > .inner {
  display: flex;
}
@media (max-width: 750px) {
  nav#nav > .inner {
    padding-top: 24vw;
    display: block;
  }
}
nav#nav ul.nav_global {
  display: flex;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.12em;
}
@media (max-width: 750px) {
  nav#nav ul.nav_global {
    display: block;
  }
}
nav#nav ul.nav_global > li {
  padding: 0 22px;
}
@media (max-width: 1060px) {
  nav#nav ul.nav_global > li {
    padding: 0 10px;
  }
}
@media (max-width: 750px) {
  nav#nav ul.nav_global > li {
    padding: 0;
  }
}
nav#nav ul.nav_global > li a {
  display: block;
  color: #4D4D4D;
  font-size: 10px;
}
@media (max-width: 750px) {
  nav#nav ul.nav_global > li a {
    font-size: 10px;
    font-size: 2.6666666667vw;
    padding: 3.2vw 0;
    color: #4D4D4D;
  }
}
nav#nav ul.nav_global > li a > span {
  margin-bottom: 0.3em;
  display: block;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 750px) {
  nav#nav ul.nav_global > li a > span {
    font-size: 15px;
    font-size: 4vw;
  }
}
nav#nav ul.nav_global > li a:hover {
  opacity: 1;
}
nav#nav ul.nav_global > li a:hover > span {
  color: #EB6F68;
}
nav#nav ul.nav_global > li a.active > span {
  color: #EB6F68;
}

.index nav#nav ul.nav_global > li a {
  color: #fff;
}
@media (max-width: 750px) {
  .index nav#nav ul.nav_global > li a {
    color: #4D4D4D;
  }
}
.index nav#nav ul.nav_global > li a:hover > span {
  color: #EB6F68;
}

/*
    Style
*/
#main {
  padding-top: 100px;
  overflow: hidden;
}
@media (max-width: 750px) {
  #main {
    padding-top: 16vw;
  }
}

section.section#fv > .inner {
  position: relative;
}
section.section#fv > .inner h1 {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  max-width: 1096px;
}
@media (max-width: 750px) {
  section.section#fv > .inner h1 {
    bottom: 5.3333vw;
  }
}
section.section#fv > .inner .container_fv_slider img {
  width: 100%;
}
section.section#top_concept > .inner {
  padding: 50px 15px 65px;
}
@media (max-width: 750px) {
  section.section#top_concept > .inner {
    padding: 8vw 4vw 9.3333vw;
  }
}
section.section#top_concept > .inner > h2 {
  font-size: 20px;
  font-weight: 600;
  line-height: 2.3;
  letter-spacing: 0.5em;
  margin-bottom: 1.5em;
}
@media (max-width: 750px) {
  section.section#top_concept > .inner > h2 {
    font-size: 15px;
    font-size: 4vw;
    line-height: 1.875;
  }
}
section.section#top_concept > .inner > p {
  font-size: 16px;
  line-height: 2.3;
  letter-spacing: 0.46em;
}
@media (max-width: 750px) {
  section.section#top_concept > .inner > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
    line-height: 1.875;
  }
}
section.section#top_service {
  background-color: #F2F2F2;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
section.section#top_service > .inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1500px;
  padding: 35px 0;
}
@media (max-width: 750px) {
  section.section#top_service > .inner {
    padding: 5.3333vw 0;
  }
}
section.section#top_service > .inner > h2 {
  margin-bottom: 10px;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > h2 {
    margin-bottom: 2.6667vw;
  }
}
section.section#top_service > .inner > h2 img {
  width: 520px;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > h2 img {
    width: 42.6667vw;
  }
}
section.section#top_service > .inner > h2 > span {
  margin-top: 20px;
  display: block;
  font-size: 12px;
  letter-spacing: 0.46em;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > h2 > span {
    margin-top: 4vw;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#top_service > .inner > .container_service_box {
  padding: 15px 0;
  display: flex;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box {
    padding: 2.6667vw 0;
  }
}
section.section#top_service > .inner > .container_service_box.reverse {
  flex-direction: row-reverse;
}
section.section#top_service > .inner > .container_service_box .content_service_box {
  width: 66.6667%;
  max-width: 1000px;
  position: relative;
  overflow: hidden;
  padding: 20px;
  text-align: right;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box {
    width: 100%;
    padding: 5.3333vw 2.6667vw;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.section#top_service > .inner > .container_service_box .content_service_box .content_service_text {
  width: 400px;
  min-height: 350px;
  background-color: #274b89;
  color: #fff;
  position: relative;
  z-index: 1;
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box .content_service_text {
    width: 80%;
    min-height: 1vh;
    padding: 4vw;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box .content_service_text > .title > h3 {
  font-size: 22px;
  font-weight: 500;
  height: 75px;
  letter-spacing: 0.14em;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box .content_service_text > .title > h3 {
    font-size: 18px;
    font-size: 4.8vw;
    height: auto;
    margin-bottom: 1em;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box .content_service_text > .title > p {
  text-align: right;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6111;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box .content_service_text > .title > p {
    text-align: left;
    font-size: 15px;
    font-size: 4vw;
    margin-bottom: 1em;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box .content_service_text > p {
  font-size: 11px;
  line-height: 2.09;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box .content_service_text > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box .content_service_copy {
  margin-top: 25px;
  position: relative;
  z-index: 1;
  display: inline-block;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box .content_service_copy {
    margin-top: 4vw;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box .content_service_copy a {
  display: flex;
  align-items: center;
  padding: 0 60px 0 0;
  position: relative;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box .content_service_copy a {
    padding: 0 10.6667vw 0 0;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box .content_service_copy a:after {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background-image: url("../images/common/icon_arrow3.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box .content_service_copy a:after {
    width: 8vw;
    height: 8vw;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box .content_service_copy a > span {
  display: block;
  white-space: nowrap;
  margin: 0 8px 0 70px;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box .content_service_copy a > span {
    margin: 0 1.0667vw 0 8vw;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box .content_service_copy a > img {
  width: auto;
  height: 75px;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box .content_service_copy a > img {
    height: 8vw;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box.no1 .content_service_text {
  margin-left: 14%;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box.no1 .content_service_text {
    margin: 0 auto;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box.no2 .content_service_text {
  margin: 0 18.9% 0 auto;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box.no2 .content_service_text {
    margin: 0 auto;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box.no2 .content_service_copy {
  margin-right: 18%;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box.no2 .content_service_copy {
    margin: 4vw auto 0;
  }
}
section.section#top_service > .inner > .container_service_box .content_service_box.no3 .content_service_text {
  margin: 0 0 0 auto;
}
@media (max-width: 750px) {
  section.section#top_service > .inner > .container_service_box .content_service_box.no3 .content_service_text {
    margin: 0 auto;
  }
}

.index #main {
  padding-top: 0;
}
@media (max-width: 750px) {
  .index #main {
    padding-top: 16vw;
  }
}

/*
    About
*/
section.section#about {
  margin-top: 50px;
}
@media (max-width: 750px) {
  section.section#about {
    margin-top: 6.6667vw;
  }
}
section.section#about > .inner {
  margin: 0 auto;
  max-width: 1130px;
  padding: 0 15px 15px;
}
@media (max-width: 750px) {
  section.section#about > .inner {
    padding: 4vw;
  }
}
section.section#about > .inner > h1 {
  display: flex;
  align-items: center;
}
section.section#about > .inner > h1 img {
  width: 180px;
}
@media (max-width: 750px) {
  section.section#about > .inner > h1 img {
    width: 37.0667vw;
  }
}
section.section#about > .inner > h1 > span {
  display: block;
  margin-left: 20px;
  color: #808080;
  font-size: 12px;
}
@media (max-width: 750px) {
  section.section#about > .inner > h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
    margin-left: 4vw;
  }
}
section.section#about > .inner .container_about_anchor {
  display: flex;
  margin: 50px -23px 0;
}
@media (max-width: 750px) {
  section.section#about > .inner .container_about_anchor {
    flex-wrap: wrap;
    margin: 6.6667vw 0 0;
  }
}
section.section#about > .inner .container_about_anchor > li {
  padding: 0 23px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 10px;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#about > .inner .container_about_anchor > li {
    padding: 3.2vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#about > .inner .container_about_anchor > li a {
  display: block;
  color: #333;
  letter-spacing: 0.32em;
}
section.section#about > .inner .container_about_anchor > li a > span {
  display: block;
  border-bottom: 1px solid #333;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-bottom: 0.25em;
  margin-bottom: 0.4em;
}
@media (max-width: 750px) {
  section.section#about > .inner .container_about_anchor > li a > span {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
section.section#message {
  position: relative;
}
section.section#message:before {
  content: "";
  display: block;
  width: 100%;
  height: 85%;
  position: absolute;
  top: 100px;
  left: 0;
  background-color: #D5DFE7;
}
section.section#message > .inner {
  position: relative;
  z-index: 1;
}
section.section#message .container_message_image {
  margin: 20px auto 0;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 750px) {
  section.section#message .container_message_image {
    margin: 0 auto;
  }
}
section.section#message .container_message_image > .container_message_image_inner {
  margin: 0 0 0 355px;
  width: calc(100% - 400px);
  height: 400px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#message .container_message_image > .container_message_image_inner {
    margin: 0;
    width: 100%;
    height: auto;
  }
}
section.section#message .container_message_image > .container_message_image_inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 900px;
  max-width: 900px;
  border-radius: 0 0 0 60px;
}
@media (max-width: 750px) {
  section.section#message .container_message_image > .container_message_image_inner img {
    position: static;
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 0 8vw;
  }
}
section.section#message .container_message_text {
  margin: -90px auto 0;
  width: 100%;
  max-width: 1130px;
  padding: 0 15px 50px 55px;
}
@media (max-width: 750px) {
  section.section#message .container_message_text {
    margin: 4vw auto 0;
    padding: 4vw;
  }
}
section.section#message .container_message_text > h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#message .container_message_text > h2 {
    font-size: 15px;
    font-size: 4vw;
  }
}
section.section#message .container_message_text > h2 > span {
  display: inline-block;
  position: relative;
  padding: 0 0 0.3em;
  border-bottom: 1px solid #333;
}
section.section#message .container_message_text > h2 > span:after {
  content: "";
  display: block;
  width: 11px;
  height: 100px;
  position: absolute;
  top: 40px;
  left: 3px;
  background-image: url("../images/about/vertical_title01.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#message .container_message_text > h2 > span:after {
    width: 3.2vw;
    height: 20vw;
    top: 9.3333vw;
  }
}
section.section#message .container_message_text .container_message_inner {
  margin: 110px 0 0 90px;
}
@media (max-width: 750px) {
  section.section#message .container_message_text .container_message_inner {
    margin: 3.4667vw 0 0 13.6vw;
  }
}
section.section#message .container_message_text .container_message_inner > h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9333;
  letter-spacing: 0.3em;
  text-align: left;
  margin-bottom: 1em;
}
@media (max-width: 750px) {
  section.section#message .container_message_text .container_message_inner > h3 {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#message .container_message_text .container_message_inner > p {
  text-align: left;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.2em;
  max-width: 790px;
}
@media (max-width: 750px) {
  section.section#message .container_message_text .container_message_inner > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#message .container_message_text .container_message_inner > p.name {
  margin-top: 1.5em;
  text-align: right;
  font-weight: 600;
}
section.section#message .container_message_text .container_message_inner > p.name > span {
  font-size: 13px;
}
section.section#philosophy > .inner {
  margin: 0 auto;
  max-width: 1130px;
  padding: 50px 15px 50px 55px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner {
    padding: 4vw;
  }
}
section.section#philosophy > .inner > h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner > h2 {
    font-size: 15px;
    font-size: 4vw;
  }
}
section.section#philosophy > .inner > h2 > span {
  display: inline-block;
  position: relative;
  padding: 0 0 0.3em;
  border-bottom: 1px solid #333;
}
section.section#philosophy > .inner > h2 > span:after {
  content: "";
  display: block;
  width: 11px;
  height: 100px;
  position: absolute;
  top: 40px;
  left: 3px;
  background-image: url("../images/about/vertical_title02.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner > h2 > span:after {
    width: 3.2vw;
    height: 20vw;
    top: 9.3333vw;
  }
}
section.section#philosophy > .inner .container_philosophy_wrapper {
  margin: 40px 0 0 90px;
  max-width: 870px;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner .container_philosophy_wrapper {
    margin: 3.4667vw 0 0 13.6vw;
  }
}
section.section#philosophy > .inner .container_philosophy_wrapper > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner .container_philosophy_wrapper > ul {
    display: block;
    margin: 0;
  }
}
section.section#philosophy > .inner .container_philosophy_wrapper > ul > li {
  width: 50%;
  padding: 10px 15px;
  display: flex;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner .container_philosophy_wrapper > ul > li {
    width: 100%;
    padding: 1.3333vw 0;
  }
}
section.section#philosophy > .inner .container_philosophy_wrapper > ul > li:last-of-type {
  width: 100%;
}
section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box {
  padding: 20px;
  background-color: #fff;
  width: 100%;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box {
    padding: 2.6667vw;
  }
}
section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > h3 {
  text-align: left;
  letter-spacing: 0.08em;
}
section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > h3 > span {
  display: inline-block;
  border-bottom: 1px solid #333;
  font-size: 25px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > h3 > span {
    font-size: 22px;
    font-size: 5.8666666667vw;
  }
}
section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > h3 > span > span {
  position: absolute;
  top: 40px;
  left: 0;
  width: 1em;
  font-size: 10px;
  display: inline-block;
  line-height: 1.2;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > h3 > span > span {
    top: 8vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > h3 > span > span > span {
  display: inline-block;
  transform: rotate(90deg);
}
section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > .content_philosophy_inner {
  margin: 40px 0 0 60px;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > .content_philosophy_inner {
    margin: 5.3333vw 0 0 8vw;
  }
}
section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > .content_philosophy_inner > h4 {
  font-size: 16px;
  letter-spacing: 0.22em;
  margin-bottom: 0.8em;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > .content_philosophy_inner > h4 {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.3;
  }
}
section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > .content_philosophy_inner > h4.center {
  text-align: center;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > .content_philosophy_inner > h4.center {
    text-align: left;
  }
}
section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > .content_philosophy_inner > p {
  font-size: 10px;
  line-height: 2;
  letter-spacing: 0.2em;
}
@media (max-width: 750px) {
  section.section#philosophy > .inner .container_philosophy_wrapper .content_philosophy_box > .content_philosophy_inner > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
    line-height: 1.75;
  }
}
section.section#company {
  position: relative;
}
section.section#company:before {
  content: "";
  display: block;
  width: 100%;
  height: 84%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E6DCDC;
}
section.section#company > .inner {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1130px;
  padding: 45px 15px 15px 55px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#company > .inner {
    padding: 4vw;
  }
}
section.section#company > .inner > h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#company > .inner > h2 {
    font-size: 15px;
    font-size: 4vw;
  }
}
section.section#company > .inner > h2 > span {
  display: inline-block;
  position: relative;
  padding: 0 0 0.3em;
  border-bottom: 1px solid #333;
}
section.section#company > .inner > h2 > span:after {
  content: "";
  display: block;
  width: 11px;
  height: 100px;
  position: absolute;
  top: 40px;
  left: 3px;
  background-image: url("../images/about/vertical_title03.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#company > .inner > h2 > span:after {
    width: 3.2vw;
    height: 20vw;
    top: 9.3333vw;
  }
}
section.section#company > .inner .container_company_wrapper {
  margin: 50px 0 0 90px;
  max-width: 835px;
  background-color: #fff;
  padding: 40px;
}
@media (max-width: 750px) {
  section.section#company > .inner .container_company_wrapper {
    margin: 3.4667vw 0 0 13.6vw;
    padding: 5.3333vw;
  }
}
section.section#company > .inner .table_outline {
  margin: 0 auto;
  width: 100%;
  max-width: 540px;
  text-align: left;
  letter-spacing: 0.28em;
  border-top: 1px solid #B3B3B3;
}
@media (max-width: 750px) {
  section.section#company > .inner .table_outline {
    max-width: 100%;
  }
}
section.section#company > .inner .table_outline > .tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #B3B3B3;
  padding: 15px 0;
  line-height: 1.72;
}
@media (max-width: 750px) {
  section.section#company > .inner .table_outline > .tr {
    padding: 2.6667vw 0;
    display: block;
  }
}
section.section#company > .inner .table_outline > .tr > .th {
  width: 125px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#company > .inner .table_outline > .tr > .th {
    width: 100%;
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
section.section#company > .inner .table_outline > .tr > .td {
  width: 415px;
  font-size: 14px;
}
@media (max-width: 750px) {
  section.section#company > .inner .table_outline > .tr > .td {
    width: 100%;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#company > .inner .table_outline > .tr > .td > span {
  display: block;
  font-size: 10px;
}
@media (max-width: 750px) {
  section.section#company > .inner .table_outline > .tr > .td > span {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#company > .inner .table_outline > .tr > .td > p {
  margin-top: 1em;
  color: #274b89;
}
section.section#company > .inner .table_outline > .tr > .td > p:nth-of-type(1) {
  margin-top: 0;
}
section.section#company > .inner .table_outline > .tr > .td a img {
  margin: 0.3em auto auto 0;
  width: 130px;
  vertical-align: middle;
}
@media (max-width: 750px) {
  section.section#company > .inner .table_outline > .tr > .td a img {
    width: 18.1333vw;
  }
}
section.section#accessmap {
  margin-top: 10px;
}
section.section#accessmap > .inner {
  margin: 0 auto;
  max-width: 1130px;
  padding: 15px 15px 15px 55px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#accessmap > .inner {
    padding: 4vw;
  }
}
section.section#accessmap > .inner > h2 {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#accessmap > .inner > h2 {
    font-size: 15px;
    font-size: 4vw;
  }
}
section.section#accessmap > .inner > h2 > span {
  display: inline-block;
  position: relative;
  padding: 0 0 0.3em;
  border-bottom: 1px solid #333;
}
section.section#accessmap > .inner > h2 > span:after {
  content: "";
  display: block;
  width: 16px;
  height: 100px;
  position: absolute;
  top: 40px;
  left: 0;
  background-image: url("../images/about/vertical_title04.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#accessmap > .inner > h2 > span:after {
    width: 3.2vw;
    height: 20vw;
    top: 9.3333vw;
  }
}
section.section#accessmap > .inner .container_accessmap_wrapper {
  margin-top: 25px;
  padding-left: 90px;
}
@media (max-width: 750px) {
  section.section#accessmap > .inner .container_accessmap_wrapper {
    margin-top: 3.4667vw;
    padding-left: 13.6vw;
  }
}
section.section#accessmap > .inner .container_accessmap_box {
  text-align: left;
  padding: 25px 0 25px 25px;
  letter-spacing: 0.32em;
}
@media (max-width: 750px) {
  section.section#accessmap > .inner .container_accessmap_box {
    padding: 3.4667vw 0 3.4667vw 3.4667vw;
  }
}
section.section#accessmap > .inner .container_accessmap_box > p {
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 750px) {
  section.section#accessmap > .inner .container_accessmap_box > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#accessmap > .inner .container_accessmap_box > p.name {
  font-size: 15px;
  font-weight: 600;
  color: #274b89;
  position: relative;
}
@media (max-width: 750px) {
  section.section#accessmap > .inner .container_accessmap_box > p.name {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#accessmap > .inner .container_accessmap_box > p.name:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -25px;
  width: 14px;
  height: 22px;
  background-image: url("../images/about/icon_mappin.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#accessmap > .inner .container_accessmap_box > p.name:before {
    left: -5.3333vw;
    width: 3.2vw;
    height: 5.0286vw;
  }
}
section.section#accessmap > .inner .container_accessmap_box .container_accessmap_body {
  margin-top: 20px;
  width: 100%;
  position: relative;
}
@media (max-width: 750px) {
  section.section#accessmap > .inner .container_accessmap_box .container_accessmap_body {
    margin-top: 2.6667vw;
  }
}
section.section#accessmap > .inner .container_accessmap_box .container_accessmap_body:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 44.919%;
}
@media (max-width: 750px) {
  section.section#accessmap > .inner .container_accessmap_box .container_accessmap_body:before {
    padding-top: 80%;
  }
}
section.section#accessmap > .inner .container_accessmap_box .container_accessmap_body iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
    Contact
*/
section.section#contact {
  padding-top: 45px;
}
@media (max-width: 750px) {
  section.section#contact {
    padding-top: 6.6667vw;
  }
}
section.section#contact > .inner {
  margin: 0 auto;
  max-width: 1030px;
  padding: 15px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.18em;
}
@media (max-width: 750px) {
  section.section#contact > .inner {
    padding: 4vw;
  }
}
section.section#contact > .inner > h1 img {
  width: 191px;
}
@media (max-width: 750px) {
  section.section#contact > .inner > h1 img {
    width: 40vw;
  }
}
section.section#contact > .inner > h1 > span {
  display: block;
  font-size: 12px;
  margin-top: 1em;
}
@media (max-width: 750px) {
  section.section#contact > .inner > h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#contact > .inner > h1 + p {
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.968;
  letter-spacing: 0.4em;
}
@media (max-width: 750px) {
  section.section#contact > .inner > h1 + p {
    margin-top: 4vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#contact > .inner > p {
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.9;
}
@media (max-width: 750px) {
  section.section#contact > .inner > p {
    margin-top: 4vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#contact > .inner > .container_contact_phone {
  margin-top: 30px;
}
@media (max-width: 750px) {
  section.section#contact > .inner > .container_contact_phone {
    margin-top: 4vw;
  }
}
section.section#contact > .inner > .container_contact_phone > h2 {
  font-weight: 600;
  letter-spacing: 0.36em;
}
section.section#contact > .inner > .container_contact_phone > p.phone {
  margin-top: 20px;
  color: #4D6381;
  font-size: 30px;
  font-weight: 600;
  padding: 20px 0 0;
  position: relative;
}
@media (max-width: 750px) {
  section.section#contact > .inner > .container_contact_phone > p.phone {
    margin-top: 5.3333vw;
    font-size: 24px;
    font-size: 6.4vw;
    padding: 2.6667vw 0 0;
  }
}
section.section#contact > .inner > .container_contact_phone > p.phone:before {
  content: "";
  display: block;
  width: 26px;
  height: 9px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/contact/icon_phone.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#contact > .inner > .container_contact_phone > p.phone:before {
    width: 5.3333vw;
    height: 1.846vw;
  }
}
section.section#contact > .inner > .container_contact_phone > p.time {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
}
@media (max-width: 750px) {
  section.section#contact > .inner > .container_contact_phone > p.time {
    margin-top: 2.6667vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#form_contact {
  margin-top: 45px;
  position: relative;
  padding: 1px 0;
}
@media (max-width: 750px) {
  section.section#form_contact {
    margin-top: 6.6667vw;
  }
}
section.section#form_contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background-color: #D5DFE7;
}
section.section#form_contact:after {
  content: "";
  display: block;
  width: 29px;
  height: 21px;
  position: absolute;
  top: 65px;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("../images/contact/icon_mail.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#form_contact:after {
    top: 8.5333vw;
    width: 6.6667vw;
    height: 4.8276vw;
  }
}
section.section#form_contact > .inner {
  margin: 120px auto 0;
  max-width: 1030px;
  padding: 15px;
  position: relative;
  z-index: 1;
}
@media (max-width: 750px) {
  section.section#form_contact > .inner {
    margin: 16vw auto 0;
    padding: 4vw;
  }
}
section.section#form_contact > .inner .container_form {
  width: 100%;
  padding: 30px 0;
  background-color: #fff;
}
@media (max-width: 750px) {
  section.section#form_contact > .inner .container_form {
    padding: 4vw;
  }
}
section.section#form_contact > .inner .table_form {
  margin: 0 auto;
  width: 100%;
  max-width: 830px;
  color: #333;
}
section.section#form_contact > .inner .table_form > .title {
  margin-top: 20px;
  padding: 40px 0 20px;
  display: block;
  text-align: center;
  border-top: 1px dashed #274b89;
  font-size: 14px;
  color: #274b89;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#form_contact > .inner .table_form > .title {
    margin-top: 5.3333vw;
    padding: 5.3333vw 0 2.6667vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#form_contact > .inner .table_form > .tr {
  display: flex;
}
@media (max-width: 750px) {
  section.section#form_contact > .inner .table_form > .tr {
    display: block;
  }
}
section.section#form_contact > .inner .table_form > .tr > div {
  padding: 0;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 750px) {
  section.section#form_contact > .inner .table_form > .tr > div {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#form_contact > .inner .table_form > .tr > div.th {
  width: 150px;
  padding: 28px 0 0;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#form_contact > .inner .table_form > .tr > div.th {
    width: 100%;
    padding: 0 0 2.6667vw;
  }
}
section.section#form_contact > .inner .table_form > .tr > div.td {
  width: calc(100% - 150px);
}
@media (max-width: 750px) {
  section.section#form_contact > .inner .table_form > .tr > div.td {
    width: 100%;
  }
}
section.section#form_contact > .inner .table_form > .tr > div.td ul.column_2 {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}
@media (max-width: 750px) {
  section.section#form_contact > .inner .table_form > .tr > div.td ul.column_2 {
    margin: 0 -1.3333vw;
    display: block;
  }
}
section.section#form_contact > .inner .table_form > .tr > div.td ul.column_2 > li {
  padding: 10px;
  line-height: 1.3;
}
@media (max-width: 750px) {
  section.section#form_contact > .inner .table_form > .tr > div.td ul.column_2 > li {
    padding: 1.3333vw;
  }
}
section.section#form_contact > .inner .table_form > .tr > div.td p {
  margin-top: 0.5em;
}
section.section#form_contact > .inner .table_form > .tr > div.td span.required {
  color: #274b89;
  font-size: 11px;
}
@media (max-width: 750px) {
  section.section#form_contact > .inner .table_form > .tr > div.td span.required {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
section.section#form_contact > .inner .table_form > .tr.center > div.td {
  width: 100%;
  text-align: center;
}
section.section#form_contact .authentication {
  margin-top: 25px;
  font-size: 10px;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#form_contact .authentication {
    margin-top: 4vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#form_contact .authentication > p {
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  section.section#form_contact .authentication > p {
    margin-bottom: 2.6667vw;
  }
}
section.section#form_contact .submit {
  margin-top: 25px;
}
@media (max-width: 750px) {
  section.section#form_contact .submit {
    margin-top: 4vw;
  }
}

/*
    Recruit
*/
section.section#recruit {
  padding-top: 45px;
}
@media (max-width: 750px) {
  section.section#recruit {
    padding-top: 6.6667vw;
  }
}
section.section#recruit > .inner {
  margin: 0 auto;
  max-width: 1030px;
  padding: 15px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.18em;
}
@media (max-width: 750px) {
  section.section#recruit > .inner {
    padding: 4vw;
  }
}
section.section#recruit > .inner > h1 img {
  width: 161px;
}
@media (max-width: 750px) {
  section.section#recruit > .inner > h1 img {
    width: 33.7172vw;
  }
}
section.section#recruit > .inner > h1 > span {
  display: block;
  font-size: 12px;
  margin-top: 1em;
}
@media (max-width: 750px) {
  section.section#recruit > .inner > h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#recruit > .inner > h1 + p {
  margin-top: 25px;
  padding: 75px 0 0;
  position: relative;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 750px) {
  section.section#recruit > .inner > h1 + p {
    margin-top: 5.3333vw;
    padding: 10.6667vw 0 0;
    font-size: 13px;
    font-size: 3.4666666667vw;
    line-height: 1.75;
  }
}
section.section#recruit > .inner > h1 + p:before {
  content: "";
  display: block;
  width: 92px;
  height: 52px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/recruit/icon_recruit.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#recruit > .inner > h1 + p:before {
    width: 18.6667vw;
    height: 10.55vw;
  }
}
section.section#recruit > .inner > p {
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.9;
}
@media (max-width: 750px) {
  section.section#recruit > .inner > p {
    margin-top: 4vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#recruit > .inner ul.container_recruit_anchor {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  section.section#recruit > .inner ul.container_recruit_anchor {
    margin-top: 6.6667vw;
  }
}
section.section#recruit > .inner ul.container_recruit_anchor > li {
  padding: 0 30px;
  font-size: 15px;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#recruit > .inner ul.container_recruit_anchor > li {
    padding: 0 4vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#recruit > .inner ul.container_recruit_anchor > li a {
  color: #4D4D4D;
  text-decoration: underline;
}
section.section#recruit1 {
  margin-top: 15px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#recruit1 {
    margin-top: 4vw;
  }
}
section.section#recruit1:before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background-color: #D5DFE7;
  position: absolute;
  top: 0;
  left: 0;
}
section.section#recruit1 > .inner {
  margin: 0 auto;
  max-width: 1030px;
  position: relative;
  z-index: 1;
  padding: 50px 15px 15px;
}
@media (max-width: 750px) {
  section.section#recruit1 > .inner {
    padding: 8vw 4vw 4vw;
  }
}
section.section#recruit1 > .inner .container_detail {
  padding: 35px 15px 65px;
  background-color: #fff;
  position: relative;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#recruit1 > .inner .container_detail {
    padding: 10.6667vw 4vw;
  }
}
section.section#recruit1 > .inner .container_detail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 91px 69px 0 0;
  border-color: #4D6381 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 750px) {
  section.section#recruit1 > .inner .container_detail:before {
    border-width: 13.3333vw 10.1098vw 0 0;
  }
}
section.section#recruit1 > .inner .container_detail > h2 {
  margin: 0 auto;
  max-width: 820px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  section.section#recruit1 > .inner .container_detail > h2 {
    font-size: 15px;
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
section.section#recruit2 {
  margin-top: 40px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#recruit2 {
    margin-top: 6.6667vw;
  }
}
section.section#recruit2:before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background-color: #FFEEE9;
  position: absolute;
  top: 0;
  left: 0;
}
section.section#recruit2 > .inner {
  margin: 0 auto;
  max-width: 1030px;
  position: relative;
  z-index: 1;
  padding: 50px 15px 15px;
}
@media (max-width: 750px) {
  section.section#recruit2 > .inner {
    padding: 8vw 4vw 4vw;
  }
}
section.section#recruit2 > .inner .container_detail {
  padding: 35px 15px 65px;
  background-color: #fff;
  position: relative;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#recruit2 > .inner .container_detail {
    padding: 10.6667vw 4vw;
  }
}
section.section#recruit2 > .inner .container_detail:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 91px 69px 0 0;
  border-color: #EB6F68 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 750px) {
  section.section#recruit2 > .inner .container_detail:before {
    border-width: 13.3333vw 10.1098vw 0 0;
  }
}
section.section#recruit2 > .inner .container_detail > h2 {
  margin: 0 auto;
  max-width: 820px;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  section.section#recruit2 > .inner .container_detail > h2 {
    font-size: 15px;
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
section.section#entry {
  margin-top: 135px;
  position: relative;
}
section.section#entry:before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  background-color: #E6E6E6;
  position: absolute;
  top: 0;
  left: 0;
}
section.section#entry > .inner {
  margin: 0 auto;
  max-width: 1030px;
  position: relative;
  z-index: 1;
  padding: 50px 15px 15px;
}
section.section#entry > .inner > h2 img {
  width: 125px;
}
section.section#entry > .inner > h2 > span {
  display: block;
  font-size: 12px;
  margin-top: 1em;
  color: #274b89;
}
@media (max-width: 750px) {
  section.section#entry > .inner > h2 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#entry > .inner .container_detail {
  margin: 50px auto 0;
  padding: 35px 15px;
  max-width: 1000px;
  background-color: #F2F2F2;
}
section.section#entry > .inner .container_detail .table_form {
  margin: 0 auto;
  width: 100%;
  max-width: 830px;
  color: #333;
}
section.section#entry > .inner .container_detail .table_form > .title {
  margin-top: 20px;
  padding: 0 0 20px;
  display: block;
  text-align: center;
  font-size: 14px;
  color: #274b89;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form > .title {
    margin-top: 5.3333vw;
    padding: 0 0 2.6667vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#entry > .inner .container_detail .table_form > .tr {
  display: flex;
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form > .tr {
    display: block;
  }
}
section.section#entry > .inner .container_detail .table_form > .tr > div {
  padding: 0;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form > .tr > div {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#entry > .inner .container_detail .table_form > .tr > div.th {
  width: 150px;
  padding: 28px 0 0;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form > .tr > div.th {
    width: 100%;
    padding: 0 0 2.6667vw;
  }
}
section.section#entry > .inner .container_detail .table_form > .tr > div.th.center {
  padding: 0;
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form > .tr > div.th.center {
    padding: 0 0 2.6667vw;
  }
}
section.section#entry > .inner .container_detail .table_form > .tr > div.td {
  width: calc(100% - 150px);
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form > .tr > div.td {
    width: 100%;
  }
}
section.section#entry > .inner .container_detail .table_form > .tr > div.td ul.column_2 {
  display: flex;
  align-items: center;
  margin: 0 -10px;
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form > .tr > div.td ul.column_2 {
    margin: 0 -1.3333vw;
    display: block;
  }
}
section.section#entry > .inner .container_detail .table_form > .tr > div.td ul.column_2 > li {
  padding: 10px;
  line-height: 1.3;
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form > .tr > div.td ul.column_2 > li {
    padding: 1.3333vw;
  }
}
section.section#entry > .inner .container_detail .table_form > .tr > div.td ul.column_2.list {
  display: flex;
  flex-wrap: wrap;
}
section.section#entry > .inner .container_detail .table_form > .tr > div.td p {
  margin-top: 0.5em;
}
section.section#entry > .inner .container_detail .table_form > .tr > div.td span.required {
  color: #274b89;
  font-size: 11px;
  display: inline-block;
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form > .tr > div.td span.required {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form > .tr:nth-of-type(1) {
    padding-bottom: 2.6667vw;
  }
}
section.section#entry > .inner .container_detail .table_form > .tr.center > div.td {
  width: 100%;
  text-align: center;
}
section.section#entry > .inner .container_detail .table_form > .tr.middle {
  align-items: center;
}
section.section#entry > .inner .container_detail .table_form.line {
  margin-top: 30px;
  border-top: 1px dashed #274b89;
}
section.section#entry > .inner .container_detail .table_form.line > .tr:nth-of-type(1) {
  padding: 20px 0;
}
section.section#entry > .inner .container_detail .table_form.line > .tr:nth-of-type(1) > .th {
  padding-top: 15px;
}
@media (max-width: 750px) {
  section.section#entry > .inner .container_detail .table_form.line > .tr:nth-of-type(1) > .th {
    padding: 0 0 2.6667vw;
  }
}
section.section#entry > .inner .container_detail .table_form.line > .tr:nth-of-type(1) > .td ul.column_2 {
  margin-bottom: 10px;
}
section.section#entry > .inner .container_detail .table_form.line > .tr:nth-of-type(1) > .td input[name=etc] {
  margin-right: 1em;
}
section.section#entry > .inner .authentication {
  margin-top: 25px;
  font-size: 10px;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#entry > .inner .authentication {
    margin-top: 4vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#entry > .inner .authentication > p {
  margin-bottom: 20px;
}
@media (max-width: 750px) {
  section.section#entry > .inner .authentication > p {
    margin-bottom: 2.6667vw;
  }
}
section.section#entry > .inner .submit {
  margin-top: 25px;
}
@media (max-width: 750px) {
  section.section#entry > .inner .submit {
    margin-top: 4vw;
  }
}
section.section .table {
  margin: 0 auto;
  max-width: 775px;
  border-top: 1px solid;
}
section.section .table > .tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid;
}
section.section .table > .tr > div {
  padding: 15px 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.75;
}
@media (max-width: 750px) {
  section.section .table > .tr > div {
    padding: 2.6667vw 0;
    font-size: 12px;
    font-size: 3.2vw;
    letter-spacing: 0.15em;
  }
}
section.section .table > .tr > div.th {
  width: 175px;
  padding-left: 25px;
}
@media (max-width: 750px) {
  section.section .table > .tr > div.th {
    width: 26.6667vw;
    padding-left: 0;
  }
}
section.section .table > .tr > div.td {
  width: calc(100% - 175px);
  padding-left: 25px;
}
@media (max-width: 750px) {
  section.section .table > .tr > div.td {
    width: 57.3333vw;
    padding-left: 0;
  }
}
section.section .table.fulltime {
  border-color: #6E7B96;
}
section.section .table.fulltime > .tr {
  border-color: #6E7B96;
}
section.section .table.contract {
  border-color: #FFD5C9;
}
section.section .table.contract > .tr {
  border-color: #FFD5C9;
}
section.section .link_entry {
  margin-top: 15px;
}
@media (max-width: 750px) {
  section.section .link_entry {
    margin-top: 4vw;
  }
}
section.section .link_entry > p {
  font-size: 10px;
  margin-bottom: 1em;
}
@media (max-width: 750px) {
  section.section .link_entry > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section .link_entry a {
  margin: 0 auto;
}

/*
    Privacy
*/
section.section#privacy {
  padding-top: 45px;
}
@media (max-width: 750px) {
  section.section#privacy {
    padding-top: 6.6667vw;
  }
}
section.section#privacy > .inner {
  margin: 0 auto;
  max-width: 1030px;
  padding: 15px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.18em;
}
@media (max-width: 750px) {
  section.section#privacy > .inner {
    padding: 4vw;
  }
}
section.section#privacy > .inner > h1 img {
  width: 243px;
}
@media (max-width: 750px) {
  section.section#privacy > .inner > h1 img {
    width: 33.7172vw;
  }
}
section.section#privacy > .inner > h1 > span {
  display: block;
  font-size: 12px;
  margin-top: 1em;
}
@media (max-width: 750px) {
  section.section#privacy > .inner > h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#privacy > .inner > h1 + p {
  margin-top: 25px;
  position: relative;
  font-size: 13px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 750px) {
  section.section#privacy > .inner > h1 + p {
    margin-top: 5.3333vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
    line-height: 1.75;
  }
}
section.section#privacy > .inner .container_privacy_wrapper {
  margin-top: 45px;
  background-color: #fff;
  padding: 40px 0;
  letter-spacing: 0.14em;
}
@media (max-width: 750px) {
  section.section#privacy > .inner .container_privacy_wrapper {
    margin-top: 5.3333vw;
    padding: 5.3333vw 2.6667vw;
  }
}
section.section#privacy > .inner .container_privacy_wrapper .content_privacy_box {
  margin: 0 auto;
  max-width: 750px;
  text-align: left;
  padding: 20px 0;
  font-size: 10px;
  line-height: 2;
}
@media (max-width: 750px) {
  section.section#privacy > .inner .container_privacy_wrapper .content_privacy_box {
    padding: 2.6667vw 0;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#privacy > .inner .container_privacy_wrapper .content_privacy_box > h2 {
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 750px) {
  section.section#privacy > .inner .container_privacy_wrapper .content_privacy_box > h2 {
    font-size: 12px;
    font-size: 3.2vw;
  }
}

/*
    Voice
*/
section.section#voice {
  padding-top: 45px;
}
@media (max-width: 750px) {
  section.section#voice {
    padding-top: 6.6667vw;
  }
}
section.section#voice > .inner {
  margin: 0 auto;
  max-width: 1030px;
  padding: 15px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.18em;
}
@media (max-width: 750px) {
  section.section#voice > .inner {
    padding: 4vw;
  }
}
section.section#voice > .inner > h1 {
  text-align: left;
  display: flex;
  align-items: center;
}
section.section#voice > .inner > h1 img {
  width: 190px;
}
@media (max-width: 750px) {
  section.section#voice > .inner > h1 img {
    width: 39.79vw;
  }
}
section.section#voice > .inner > h1 > span {
  display: block;
  margin-left: 20px;
  color: #808080;
  font-size: 12px;
}
@media (max-width: 750px) {
  section.section#voice > .inner > h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#voice > .inner > h1 + p {
  margin-top: 25px;
  text-align: left;
  font-size: 13px;
}
@media (max-width: 750px) {
  section.section#voice > .inner > h1 + p {
    margin-top: 4vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#voice > .container_voice_wrapper {
  margin-top: 30px;
  background-color: #fff;
  padding: 65px 0 35px;
}
@media (max-width: 750px) {
  section.section#voice > .container_voice_wrapper {
    margin-top: 5.3333vw;
    padding: 10.6667vw 0 5.3333vw;
  }
}
section.section#voice > .container_voice_wrapper > p {
  font-size: 13px;
}
@media (max-width: 750px) {
  section.section#voice > .container_voice_wrapper > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#voice > .container_voice_wrapper > .content_constraction_img {
  margin: 25px auto 0;
  max-width: 258px;
}
@media (max-width: 750px) {
  section.section#voice > .container_voice_wrapper > .content_constraction_img {
    margin: 4vw auto 0;
  }
}

/*
    Faq
*/
section.section#faq {
  padding-top: 45px;
}
@media (max-width: 750px) {
  section.section#faq {
    padding-top: 6.6667vw;
  }
}
section.section#faq > .inner {
  margin: 0 auto;
  max-width: 1030px;
  padding: 15px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  letter-spacing: 0.18em;
}
@media (max-width: 750px) {
  section.section#faq > .inner {
    padding: 4vw;
  }
}
section.section#faq > .inner > h1 {
  text-align: left;
  display: flex;
  align-items: center;
}
section.section#faq > .inner > h1 img {
  width: 138px;
}
@media (max-width: 750px) {
  section.section#faq > .inner > h1 img {
    width: 28.9vw;
  }
}
section.section#faq > .inner > h1 > span {
  display: block;
  margin-left: 20px;
  color: #808080;
  font-size: 12px;
}
@media (max-width: 750px) {
  section.section#faq > .inner > h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#faq > .inner > h1 + p {
  margin-top: 25px;
  text-align: left;
  font-size: 13px;
  line-height: 2.4;
}
@media (max-width: 750px) {
  section.section#faq > .inner > h1 + p {
    margin-top: 4vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
    line-height: 2;
  }
}
section.section#faq > .inner .container_faq_wrapper {
  overflow: hidden;
}
section.section#faq > .inner .container_faq_wrapper .container_faq_items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
@media (max-width: 750px) {
  section.section#faq > .inner .container_faq_wrapper .container_faq_items {
    margin: 0;
  }
}
section.section#faq > .inner .container_faq_wrapper .container_faq_items > .container_faq_item {
  padding: 25px 20px;
  width: 50%;
  display: flex;
}
@media (max-width: 750px) {
  section.section#faq > .inner .container_faq_wrapper .container_faq_items > .container_faq_item {
    padding: 3.2vw 0;
    width: 100%;
  }
}
section.section#faq > .inner .container_aboutus_wrapper {
  margin-top: 40px;
}
@media (max-width: 750px) {
  section.section#faq > .inner .container_aboutus_wrapper {
    margin-top: 5.3333vw;
  }
}
section.section#faq > .inner .container_aboutus_wrapper > h2 {
  position: relative;
  padding: 0 0 60px 0;
  margin-bottom: 30px;
}
@media (max-width: 750px) {
  section.section#faq > .inner .container_aboutus_wrapper > h2 {
    padding: 0 0 13.3333vw 0;
    margin-bottom: 4vw;
  }
}
section.section#faq > .inner .container_aboutus_wrapper > h2 img {
  width: 150px;
}
@media (max-width: 750px) {
  section.section#faq > .inner .container_aboutus_wrapper > h2 img {
    width: 40vw;
  }
}
section.section#faq > .inner .container_aboutus_wrapper > h2:before {
  content: "";
  display: block;
  width: 31px;
  height: 37px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/faq/icon_about.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#faq > .inner .container_aboutus_wrapper > h2:before {
    width: 6.6667vw;
    height: 7.957vw;
  }
}
section.section#faq > .inner .container_aboutus_wrapper > h2 + p {
  font-size: 14px;
  line-height: 1.75;
  color: #EB6F68;
  margin-bottom: 2em;
  letter-spacing: 0.32em;
}
@media (max-width: 750px) {
  section.section#faq > .inner .container_aboutus_wrapper > h2 + p {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#faq > .inner .container_aboutus_wrapper > p {
  font-size: 12px;
  line-height: 2.5;
}
@media (max-width: 750px) {
  section.section#faq > .inner .container_aboutus_wrapper > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#faq > .inner .container_aboutus_wrapper > p:nth-of-type(3) {
  margin-top: 2em;
  font-size: 15px;
  color: #EB6F68;
  letter-spacing: 0.42em;
}
@media (max-width: 750px) {
  section.section#faq > .inner .container_aboutus_wrapper > p:nth-of-type(3) {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
section.section#recruitfaq {
  position: relative;
}
section.section#recruitfaq:before {
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #E6DCDC;
}
section.section#recruitfaq > .inner {
  position: relative;
  z-index: 1;
  padding: 40px 15px 15px;
  margin: 0 auto;
  max-width: 1030px;
}
@media (max-width: 750px) {
  section.section#recruitfaq > .inner {
    padding: 6.6667vw 4vw 4vw;
  }
}
section.section#recruitfaq > .inner > h2 {
  display: flex;
  align-items: center;
}
@media (max-width: 750px) {
  section.section#recruitfaq > .inner > h2 {
    flex-wrap: wrap;
  }
}
section.section#recruitfaq > .inner > h2 img {
  width: 313px;
}
@media (max-width: 750px) {
  section.section#recruitfaq > .inner > h2 img {
    width: 57.3333vw;
  }
}
section.section#recruitfaq > .inner > h2 > span {
  display: block;
  margin-left: 20px;
  color: #808080;
  font-size: 12px;
}
@media (max-width: 750px) {
  section.section#recruitfaq > .inner > h2 > span {
    font-size: 12px;
    font-size: 3.2vw;
    margin: 4vw 0 0;
  }
}
section.section#recruitfaq > .inner > h2 + p {
  margin-top: 20px;
  text-align: left;
  font-size: 13px;
  line-height: 2.4;
}
@media (max-width: 750px) {
  section.section#recruitfaq > .inner > h2 + p {
    margin-top: 4vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
    line-height: 2;
  }
}
section.section#recruitfaq > .inner .container_faq_wrapper {
  overflow: hidden;
}
section.section#recruitfaq > .inner .container_faq_wrapper .container_faq_items {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -20px;
}
@media (max-width: 750px) {
  section.section#recruitfaq > .inner .container_faq_wrapper .container_faq_items {
    margin: 0;
  }
}
section.section#recruitfaq > .inner .container_faq_wrapper .container_faq_items > .container_faq_item {
  padding: 25px 20px;
  width: 50%;
}
@media (max-width: 750px) {
  section.section#recruitfaq > .inner .container_faq_wrapper .container_faq_items > .container_faq_item {
    padding: 3.2vw 0;
    width: 100%;
  }
}
section.section .content_faq_box {
  background-color: #fff;
  padding: 20px 20px 60px;
  text-align: left;
  position: relative;
}
@media (max-width: 750px) {
  section.section .content_faq_box {
    padding: 4vw 4vw 3.2vw;
  }
}
section.section .content_faq_box > .content_faq_q {
  position: relative;
  padding: 7px 0 0 60px;
  font-size: 15px;
  min-height: 50px;
}
@media (max-width: 750px) {
  section.section .content_faq_box > .content_faq_q {
    padding: 1.6667vw 0 0 13.3333vw;
    line-height: 1.2;
  }
}
section.section .content_faq_box > .content_faq_q > span {
  position: absolute;
  top: 0;
  left: 0;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 30px;
  font-weight: 600;
  width: 45px;
  border-bottom: 2px solid #333;
  text-align: center;
  padding-bottom: 0.25em;
}
@media (max-width: 750px) {
  section.section .content_faq_box > .content_faq_q > span {
    font-size: 26px;
    font-size: 6.9333333333vw;
    width: 10.6667vw;
  }
}
section.section .content_faq_box > .content_faq_q > span:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 9px;
  height: 50px;
  background-image: url("../images/faq/vertical_company.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section .content_faq_box > .content_faq_q > span:after {
    width: 2.1333vw;
    height: 11.8516vw;
  }
}
section.section .content_faq_box > .content_faq_q.service > span:after {
  background-image: url("../images/faq/vertical_service.svg");
}
section.section .content_faq_box > .content_faq_q.recruit > span:after {
  background-image: url("../images/faq/vertical_recruit.svg");
}
section.section .content_faq_box > .content_faq_a {
  padding: 0 0 0 100px;
}
@media (max-width: 750px) {
  section.section .content_faq_box > .content_faq_a {
    padding: 0 0 0 20.8vw;
  }
}
section.section .content_faq_box > .content_faq_a > span {
  display: block;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 30px;
  font-weight: 600;
  width: 45px;
  border-bottom: 2px solid #333;
  text-align: center;
  padding-bottom: 0.25em;
}
@media (max-width: 750px) {
  section.section .content_faq_box > .content_faq_a > span {
    font-size: 26px;
    font-size: 6.9333333333vw;
    width: 10.6667vw;
  }
}
section.section .content_faq_box > .content_faq_a > p {
  margin-top: 15px;
  font-size: 12px;
  line-height: 2;
  min-height: 120px;
}
@media (max-width: 750px) {
  section.section .content_faq_box > .content_faq_a > p {
    margin-top: 4vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
    min-height: 1px;
  }
}
section.section .content_faq_box > .content_number {
  text-align: right;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

/*
    Service
*/
section.section#service {
  padding-top: 45px;
}
@media (max-width: 750px) {
  section.section#service {
    padding-top: 6.6667vw;
  }
}
section.section#service > .inner {
  margin: 0 auto;
  max-width: 1130px;
  padding: 5px 15px 15px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
@media (max-width: 750px) {
  section.section#service > .inner {
    display: block;
    padding: 1.3333vw 4vw 0;
  }
}
section.section#service > .inner > .container_text {
  width: 500px;
}
@media (max-width: 750px) {
  section.section#service > .inner > .container_text {
    margin-top: 4vw;
    width: 100%;
  }
}
section.section#service > .inner > .container_text > h1 {
  display: flex;
  align-items: center;
}
section.section#service > .inner > .container_text > h1 img {
  width: 161px;
}
@media (max-width: 750px) {
  section.section#service > .inner > .container_text > h1 img {
    width: 42.9333vw;
  }
}
section.section#service > .inner > .container_text > h1 > span {
  display: block;
  margin-left: 20px;
  color: #808080;
  font-size: 12px;
}
@media (max-width: 750px) {
  section.section#service > .inner > .container_text > h1 > span {
    font-size: 12px;
    font-size: 3.2vw;
    margin-left: 4vw;
  }
}
section.section#service > .inner > .container_text > p {
  font-size: 13px;
  letter-spacing: 0.3em;
  line-height: 2;
  padding: 30px 0 0 40px;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#service > .inner > .container_text > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
    padding: 5.3333vw 0 0 0;
  }
}
section.section#service > .inner > .container_text > ul {
  margin: 0 0 0 40px;
}
@media (max-width: 750px) {
  section.section#service > .inner > .container_text > ul {
    margin: 5.3333vw 0 0 0;
  }
}
section.section#service > .inner > .container_text > ul > li {
  text-align: left;
  padding: 20px 0;
  line-height: 1.3;
  letter-spacing: 0.14em;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 12px;
}
@media (max-width: 750px) {
  section.section#service > .inner > .container_text > ul > li {
    padding: 2.6667vw 0;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#service > .inner > .container_text > ul > li a {
  display: block;
  color: #333;
  padding: 0 0 0 15px;
  position: relative;
}
section.section#service > .inner > .container_text > ul > li a:before {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-image: url("../images/service/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
section.section#service > .inner > .container_text > ul > li a > span {
  display: block;
  color: #6E7B96;
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#service > .inner > .container_text > ul > li a > span {
    font-size: 18px;
    font-size: 4.8vw;
  }
}
section.section#service > .inner > .container_image {
  width: 600px;
  height: 400px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#service > .inner > .container_image {
    margin: 0 -4vw;
    width: auto;
    height: auto;
  }
}
section.section#service > .inner > .container_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 800px;
  max-width: 800px;
}
@media (max-width: 750px) {
  section.section#service > .inner > .container_image img {
    position: static;
    width: auto;
    max-width: 100%;
  }
}
section.section#itsolution {
  margin-top: 110px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#itsolution {
    margin-top: 10.6667vw;
  }
}
section.section#itsolution:before {
  content: "";
  display: block;
  width: 100%;
  height: 84%;
  position: absolute;
  top: 100px;
  left: 0;
  background-color: #EEF2F5;
}
section.section#itsolution > .inner {
  margin: 0 auto;
  max-width: 1130px;
  padding: 15px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner {
    padding: 4vw;
  }
}
section.section#itsolution > .inner .container_section_title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_section_title {
    display: block;
  }
}
section.section#itsolution > .inner .container_section_title .container_image {
  width: 700px;
  height: 400px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_section_title .container_image {
    width: auto;
    margin: 0 -4vw;
    height: auto;
  }
}
section.section#itsolution > .inner .container_section_title .container_image img {
  position: absolute;
  top: 0;
  right: 0;
  width: 900px;
  max-width: 900px;
  border-radius: 0 0 60px;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_section_title .container_image img {
    position: static;
    width: auto;
    max-width: 100%;
  }
}
section.section#itsolution > .inner .container_section_title .container_text {
  width: 400px;
  padding: 0 0 0 20px;
  text-align: left;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_section_title .container_text {
    width: 100%;
    padding: 4vw 0 0 0;
  }
}
section.section#itsolution > .inner .container_section_title .container_text > h2 {
  font-size: 13px;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_section_title .container_text > h2 {
    font-size: 13px;
    font-size: 3.4666666667vw;
    margin-bottom: 4vw;
  }
}
section.section#itsolution > .inner .container_section_title .container_text > h2 > span {
  display: block;
}
section.section#itsolution > .inner .container_section_title .container_text > h2 > span.line {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-bottom: 0.2em;
  margin-bottom: 0.25em;
  position: relative;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_section_title .container_text > h2 > span.line {
    font-size: 30px;
    font-size: 8vw;
    padding-top: 10.6667vw;
  }
}
section.section#itsolution > .inner .container_section_title .container_text > h2 > span.line:before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 73px;
  height: 66px;
  background-image: url("../images/service/icon_title2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_section_title .container_text > h2 > span.line:before {
    top: -2.6667vw;
    width: 13.3333vw;
    height: 12.0547vw;
    transform: translate(-50%, 0);
  }
}
section.section#itsolution > .inner .container_section_title .container_text > p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.6667;
  color: #4D4D4D;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_section_title .container_text > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#itsolution > .inner .container_itsolution_wrapper {
  margin-top: 50px;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_itsolution_wrapper {
    margin-top: 9.3333vw;
  }
}
section.section#itsolution > .inner .container_itsolution_wrapper .content_itsolution_lists {
  margin: 70px auto 0;
  max-width: 920px;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_itsolution_wrapper .content_itsolution_lists {
    margin: 9.3333vw auto 0;
  }
}
section.section#itsolution > .inner .container_itsolution_wrapper .content_itsolution_lists > ul > li {
  padding: 11px 0;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .container_itsolution_wrapper .content_itsolution_lists > ul > li {
    padding: 1.6vw 0;
  }
}
section.section#itsolution > .inner .content_itsolution_list {
  width: 100%;
  height: 156px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.4);
  padding: 20px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .content_itsolution_list {
    height: auto;
    padding: 2.6667vw;
  }
}
section.section#itsolution > .inner .content_itsolution_list > .number {
  width: 130px;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .content_itsolution_list > .number {
    width: 13.3333vw;
    font-size: 30px;
    font-size: 8vw;
  }
}
section.section#itsolution > .inner .content_itsolution_list > .text {
  border-left: 1px solid #333;
  text-align: left;
  padding: 0.9em 0 0.7em 20px;
  width: calc(100% - 130px);
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .content_itsolution_list > .text {
    width: 71.6667vw;
    padding: 0.9em 0 0.7em 2.6667vw;
  }
}
section.section#itsolution > .inner .content_itsolution_list > .text > h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.3em;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .content_itsolution_list > .text > h3 {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.3;
  }
}
section.section#itsolution > .inner .content_itsolution_list > .text > p {
  font-size: 12px;
  line-height: 2.25;
}
@media (max-width: 750px) {
  section.section#itsolution > .inner .content_itsolution_list > .text > p {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
section.section#oa {
  margin-top: 45px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#oa {
    margin-top: 10.6667vw;
  }
}
section.section#oa:before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  position: absolute;
  top: 100px;
  left: 0;
  background-color: #FAF5F5;
}
section.section#oa > .inner {
  margin: 0 auto;
  max-width: 1130px;
  padding: 15px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#oa > .inner {
    padding: 4vw;
  }
}
section.section#oa > .inner .container_section_title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row-reverse;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_section_title {
    display: block;
  }
}
section.section#oa > .inner .container_section_title .container_image {
  width: 700px;
  height: 400px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_section_title .container_image {
    width: auto;
    height: auto;
    margin: 0 -4vw;
  }
}
section.section#oa > .inner .container_section_title .container_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 900px;
  max-width: 900px;
  border-radius: 0 0 0 60px;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_section_title .container_image img {
    position: static;
    width: auto;
    max-width: 100%;
  }
}
section.section#oa > .inner .container_section_title .container_text {
  width: 400px;
  text-align: left;
  padding-bottom: 60px;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_section_title .container_text {
    margin-top: 4vw;
    width: 100%;
    padding-bottom: 0;
  }
}
section.section#oa > .inner .container_section_title .container_text > h2 {
  font-size: 13px;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_section_title .container_text > h2 {
    font-size: 13px;
    font-size: 3.4666666667vw;
    margin-bottom: 4vw;
  }
}
section.section#oa > .inner .container_section_title .container_text > h2 > span {
  display: block;
}
section.section#oa > .inner .container_section_title .container_text > h2 > span.line {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-bottom: 0.2em;
  margin-bottom: 0.25em;
  position: relative;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_section_title .container_text > h2 > span.line {
    font-size: 30px;
    font-size: 8vw;
    padding-top: 10.6667vw;
  }
}
section.section#oa > .inner .container_section_title .container_text > h2 > span.line:before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 73px;
  height: 66px;
  background-image: url("../images/service/icon_title3.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_section_title .container_text > h2 > span.line:before {
    top: -2.6667vw;
    width: 13.3333vw;
    height: 12.0547vw;
    transform: translate(-50%, 0);
  }
}
section.section#oa > .inner .container_section_title .container_text > p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.6667;
  color: #4D4D4D;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_section_title .container_text > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#oa > .inner .container_oa_wrapper {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper {
    margin-top: 4vw;
    display: block;
  }
}
section.section#oa > .inner .container_oa_wrapper .container_oa_service {
  width: 66.545%;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.4);
  padding: 25px;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .container_oa_service {
    width: 100%;
    padding: 3.2vw;
  }
}
section.section#oa > .inner .container_oa_wrapper .container_oa_service > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
section.section#oa > .inner .container_oa_wrapper .container_oa_service > ul > li {
  padding: 15px;
  width: 50%;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .container_oa_service > ul > li {
    width: 100%;
    padding: 2.6667vw 0;
  }
}
section.section#oa > .inner .container_oa_wrapper .container_oa_service > ul > li.title {
  text-align: center;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
section.section#oa > .inner .container_oa_wrapper .container_oa_service > ul > li.title > h3 {
  display: inline-block;
  font-size: 11px;
  padding: 30px 0 50px;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .container_oa_service > ul > li.title > h3 {
    padding: 4vw 0 6.6667vw;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#oa > .inner .container_oa_wrapper .container_oa_service > ul > li.title > h3 > span {
  display: block;
}
section.section#oa > .inner .container_oa_wrapper .container_oa_service > ul > li.title > h3 > span.line {
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-bottom: 0.2em;
  margin-bottom: 0.25em;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .container_oa_service > ul > li.title > h3 > span.line {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box {
  border-left: 3px solid #D5DFE7;
  text-align: left;
  padding: 0 0 0 8px;
  line-height: 1.625;
  min-height: 50px;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .content_oa_service_box {
    min-height: 1px;
    padding: 0 0 0 1.6vw;
  }
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box > h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  position: relative;
  padding: 0 0 0 25px;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .content_oa_service_box > h3 {
    font-size: 12px;
    font-size: 3.2vw;
    padding: 0 0 0 5.3333vw;
  }
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box > h3:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 22px;
  height: 22px;
  background-image: url("../images/service/icon_service01.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .content_oa_service_box > h3:before {
    width: 4.5333vw;
    height: 4.5333vw;
  }
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box > p {
  font-size: 10px;
  letter-spacing: 0.14em;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .content_oa_service_box > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no1 > h3:before {
  background-image: url("../images/service/icon_service01.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no2 > h3:before {
  background-image: url("../images/service/icon_service02.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no3 > h3:before {
  background-image: url("../images/service/icon_service03.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no4 > h3:before {
  background-image: url("../images/service/icon_service04.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no5 > h3:before {
  background-image: url("../images/service/icon_service05.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no6 > h3:before {
  background-image: url("../images/service/icon_service06.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no7 > h3:before {
  background-image: url("../images/service/icon_service07.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no8 > h3:before {
  background-image: url("../images/service/icon_service08.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no9 > h3:before {
  background-image: url("../images/service/icon_service09.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no10 > h3:before {
  background-image: url("../images/service/icon_service10.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no11 > h3:before {
  background-image: url("../images/service/icon_service11.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no12 > h3:before {
  background-image: url("../images/service/icon_service12.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no13 > h3:before {
  background-image: url("../images/service/icon_service13.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no14 > h3:before {
  background-image: url("../images/service/icon_service14.png");
}
section.section#oa > .inner .container_oa_wrapper .content_oa_service_box.no15 > h3:before {
  background-image: url("../images/service/icon_service15.png");
}
section.section#oa > .inner .container_oa_wrapper .container_oa_etc {
  margin-top: 70px;
  width: 29.818%;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .container_oa_etc {
    margin-top: 9.3333vw;
    width: 100%;
  }
}
section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box {
  padding: 30px 0;
  text-align: left;
  letter-spacing: 0.32em;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box {
    padding: 4vw 0;
  }
}
section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box > h3 {
  font-size: 15px;
  font-weight: 600;
  color: #EB6F68;
  border-bottom: 1px solid #EB6F68;
  display: flex;
  align-items: center;
  padding-bottom: 0.5em;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box > h3 {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box > h3 img {
  margin-right: 1em;
}
section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box > h4 {
  font-size: 13px;
  font-weight: 600;
  color: #EB6F68;
  padding: 1em 0 0.5em;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box > h4 {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box > p {
  font-size: 10px;
  line-height: 2;
}
@media (max-width: 750px) {
  section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box.no1 > h3 img {
  width: 67px;
}
section.section#oa > .inner .container_oa_wrapper .content_oa_etc_box.no2 > h3 img {
  width: 48px;
}
section.section#alliance {
  margin-top: 115px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#alliance {
    margin-top: 10.6667vw;
  }
}
section.section#alliance:before {
  content: "";
  display: block;
  width: 100%;
  height: 80%;
  position: absolute;
  top: 100px;
  left: 0;
  background-color: #BAC2CC;
}
section.section#alliance > .inner {
  margin: 0 auto;
  max-width: 1130px;
  padding: 15px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#alliance > .inner {
    padding: 4vw;
  }
}
section.section#alliance > .inner .container_section_title {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_section_title {
    display: block;
  }
}
section.section#alliance > .inner .container_section_title .container_image {
  width: 700px;
  height: 400px;
  position: relative;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_section_title .container_image {
    margin: 0 -4vw;
    width: auto;
    height: auto;
  }
}
section.section#alliance > .inner .container_section_title .container_image img {
  position: absolute;
  top: 0;
  right: 0;
  width: 900px;
  max-width: 900px;
  border-radius: 0 0 60px;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_section_title .container_image img {
    position: static;
    width: auto;
    max-width: 100%;
  }
}
section.section#alliance > .inner .container_section_title .container_text {
  width: 400px;
  padding: 0 0 0 20px;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_section_title .container_text {
    width: 100%;
    padding: 4vw 0 0 0;
  }
}
section.section#alliance > .inner .container_section_title .container_text > h2 {
  font-size: 13px;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_section_title .container_text > h2 {
    font-size: 13px;
    font-size: 3.4666666667vw;
    margin-bottom: 4vw;
  }
}
section.section#alliance > .inner .container_section_title .container_text > h2 > span {
  display: block;
}
section.section#alliance > .inner .container_section_title .container_text > h2 > span.line {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  border-bottom: 1px solid #333;
  padding-bottom: 0.2em;
  margin-bottom: 0.25em;
  position: relative;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_section_title .container_text > h2 > span.line {
    font-size: 30px;
    font-size: 8vw;
    padding-top: 10.6667vw;
  }
}
section.section#alliance > .inner .container_section_title .container_text > h2 > span.line:before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 73px;
  height: 66px;
  background-image: url("../images/service/icon_title6.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_section_title .container_text > h2 > span.line:before {
    top: -2.6667vw;
    width: 13.3333vw;
    height: 12.0547vw;
    transform: translate(-50%, 0);
  }
}
section.section#alliance > .inner .container_section_title .container_text > p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3em;
  line-height: 1.6667;
  color: #4D4D4D;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_section_title .container_text > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#alliance > .inner .container_alliance_wrapper {
  margin-top: 40px;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_alliance_wrapper {
    margin-top: 9.3333vw;
  }
}
section.section#alliance > .inner .container_alliance_wrapper .content_alliance_lists {
  margin: 70px auto 0;
  max-width: 920px;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_alliance_wrapper .content_alliance_lists {
    margin: 9.3333vw auto 0;
  }
}
section.section#alliance > .inner .container_alliance_wrapper .content_alliance_lists > ul > li {
  padding: 11px 0;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .container_alliance_wrapper .content_alliance_lists > ul > li {
    padding: 1.6vw 0;
  }
}
section.section#alliance > .inner .content_alliance_list {
  width: 100%;
  height: 156px;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.4);
  padding: 20px;
  font-family: Avenir Next, "Mulish", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .content_alliance_list {
    height: auto;
    padding: 2.6667vw;
  }
}
section.section#alliance > .inner .content_alliance_list > .number {
  width: 130px;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  color: #274b89;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .content_alliance_list > .number {
    width: 13.3333vw;
    font-size: 30px;
    font-size: 8vw;
  }
}
section.section#alliance > .inner .content_alliance_list > .text {
  border-left: 1px solid #333;
  text-align: left;
  padding: 0.9em 0 0.7em 20px;
  width: calc(100% - 130px);
}
@media (max-width: 750px) {
  section.section#alliance > .inner .content_alliance_list > .text {
    width: 71.6667vw;
    padding: 0.9em 0 0.7em 2.6667vw;
  }
}
section.section#alliance > .inner .content_alliance_list > .text > h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0.3em;
  color: #274b89;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .content_alliance_list > .text > h3 {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.3;
  }
}
section.section#alliance > .inner .content_alliance_list > .text > p {
  font-size: 12px;
  line-height: 2.25;
}
@media (max-width: 750px) {
  section.section#alliance > .inner .content_alliance_list > .text > p {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}/*# sourceMappingURL=style.css.map */