@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cambay:wght@400;700&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: 'Cambay', 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
  */
  /*
      email
  */
  /*
      password
  */
  /*
      checkbox
  */
  /*
      radio
  */
}
input[type=text] {
  padding: 15px;
  font-size: 17px;
  width: 410px;
  background-color: #fff;
  border: 1px solid #604C3F;
}
@media (max-width: 750px) {
  input[type=text] {
    font-size: 14px;
    font-size: 3.7333333333vw;
    padding: 1.667vw;
  }
}
input[type=text].short {
  width: 270px;
}
input[type=text].middle {
  width: 380px;
}
input[type=text].large {
  width: 630px;
}
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 #604C3F;
}
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 #F4BF79;
  border-bottom: 3px solid #F4BF79;
}
input[type=radio] {
  display: none;
}
input[type=radio] + label {
  display: inline-block;
  padding: 3px 10px 3px 35px;
  position: relative;
}
input[type=radio] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  background-color: #fff;
  border: 1px solid #604C3F;
}
input[type=radio]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 7px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  background-color: #F4BF79;
}

/*
    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: 150px;
  padding: 7px;
  font-size: 17px;
  background-color: #fff;
  border: 1px solid #604C3F;
}
@media (max-width: 750px) {
  textarea {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}

/*
    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: 225px;
  height: 55px;
  font-size: 20px;
  color: #fff;
  background-color: #604C3F;
  border-radius: 30px;
}
@media (max-width: 750px) {
  button[name=submit] {
    width: 58.667vw;
    height: 13.333vw;
    font-size: 18px;
    font-size: 4.8vw;
  }
}

p.error {
  color: #d20513;
  font-size: 15px;
}
@media (max-width: 750px) {
  p.error {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}

/*
    Page Top
*/
#pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 51px;
  height: 51px;
}

/*
    Button
*/
a.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 38px;
  border-radius: 5px;
  border: 1px solid #4D4D4D;
  background-color: #fff;
  font-size: 16px;
}
@media (max-width: 750px) {
  a.button {
    width: 32vw;
    height: 8.10667vw;
    font-size: 30px;
    font-size: 8vw;
  }
}
a.button.recruit {
  width: 254px;
  height: 44px;
  color: #4D4D4D;
  border-radius: 10px;
}
a.disabled {
  pointer-events: none;
}

/*
    Etc
*/
.container_pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  z-index: 2;
}

.anime {
  opacity: 1;
}
.anime.animated {
  animation: fadeIn 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s forwards;
}

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

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

.d-demo__list--left {
  animation: infinity-scroll-left 50s linear 0s infinite normal;
}

@keyframes slideTitle {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(20px, 0);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@keyframes slideIn2 {
  0% {
    opacity: 0;
    transform: translate(-20px, 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);
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
/*
    common
*/
html,
body {
  width: 100%;
  height: auto;
  font-size: 100%;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  word-wrap: break-word;
  text-align: center;
  letter-spacing: 0.05em;
  color: #4D4D4D;
  background-image: url("../images/common/groovepaper.png");
  background-repeat: repeat;
  background-position: center center;
  background-size: auto;
}
html.hidden,
body.hidden {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

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

ul,
ol {
  list-style: none;
}

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

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;
  }
}
/*
    loader
*/
/*
    header
*/
header#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-image: url("../images/common/groovepaper.png");
  background-repeat: repeat;
  background-position: center center;
  background-size: auto;
  z-index: 5;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
}
header#header > .inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1130px;
  padding: 10px 40px;
  text-align: right;
}
@media (max-width: 750px) {
  header#header > .inner {
    position: relative;
    z-index: 1;
    padding: 2.1333vw 16vw;
  }
}
header#header > .inner img {
  width: 30px;
}
@media (max-width: 750px) {
  header#header > .inner img {
    width: 8vw;
  }
}
header#header > .container_header_navigation {
  background-color: #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.2);
}
header#header > .container_header_navigation > .container_header_navigation_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1080px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner {
    padding: 0;
  }
}
header#header > .container_header_navigation > .container_header_navigation_inner > .logo {
  width: 180px;
  position: relative;
  z-index: 1;
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner > .logo {
    position: absolute;
    top: 2.1333vw;
    left: 4vw;
  }
}
header#header > .container_header_navigation > .container_header_navigation_inner > .container_humberger_menu {
  display: none;
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner > .container_humberger_menu {
    display: block;
    position: absolute;
    top: 2.1333vw;
    right: 4vw;
    width: 8vw;
    height: 8vw;
    z-index: 1;
  }
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner > .container_humberger_menu > div {
    height: 100%;
    position: relative;
  }
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner > .container_humberger_menu > div > span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #604C3F;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner > .container_humberger_menu > div > span:nth-of-type(1) {
    top: 25%;
  }
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner > .container_humberger_menu > div > span:nth-of-type(3) {
    top: 75%;
  }
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner > .container_humberger_menu.active > div > span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #604C3F;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
    transition: all 0.3s ease-in-out;
  }
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner > .container_humberger_menu.active > div > span:nth-of-type(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner > .container_humberger_menu.active > div > span:nth-of-type(2) {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (max-width: 750px) {
  header#header > .container_header_navigation > .container_header_navigation_inner > .container_humberger_menu.active > div > span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
  }
}

/*
    footer
*/
footer#footer {
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
}
footer#footer .container_footer_wrapper {
  background-color: #F4BF79;
}
footer#footer .container_footer_wrapper > .inner {
  margin: 0 auto;
  max-width: 1110px;
  padding: 55px 30px 30px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner {
    display: block;
    padding: 6.6667vw 4vw 4vw;
  }
}
footer#footer .container_footer_wrapper > .inner > .container_footer_link {
  margin-top: 30px;
  max-width: 50%;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner > .container_footer_link {
    margin-top: 0;
    max-width: 100%;
  }
}
footer#footer .container_footer_wrapper > .inner > .container_footer_link > ul {
  display: flex;
  flex-wrap: wrap;
}
footer#footer .container_footer_wrapper > .inner > .container_footer_link > ul > li {
  width: 180px;
  text-align: left;
  font-size: 20px;
  padding: 10px 0;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner > .container_footer_link > ul > li {
    width: 50%;
    font-size: 16px;
    font-size: 4.2666666667vw;
    padding: 2.6667vw 0;
  }
}
footer#footer .container_footer_wrapper > .inner > .container_footer_link > ul > li a {
  display: block;
  color: #fff;
  padding: 0 0 0 35px;
  position: relative;
  line-height: 1;
}
footer#footer .container_footer_wrapper > .inner > .container_footer_link > ul > li a:before {
  content: "";
  display: block;
  position: absolute;
  top: 25%;
  left: 0;
  transform: translate(0, -50%);
  width: 21px;
  height: 8px;
  background-image: url("../images/common/icon_footer_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name {
  text-align: right;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner > .container_footer_name {
    margin-top: 5.3333vw;
    text-align: center;
  }
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name > h2 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.48em;
  margin-bottom: 35px;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner > .container_footer_name > h2 {
    font-size: 14px;
    font-size: 3.7333333333vw;
    text-align: center;
    margin-bottom: 6.6667vw;
  }
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name > ul {
  font-size: 14px;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner > .container_footer_name > ul {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name > ul > li {
  padding: 0.1em 0;
  line-height: 1.3;
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name > ul > li span {
  display: block;
  font-size: 12px;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner > .container_footer_name > ul > li span {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name > ul > li.address {
  margin-bottom: 0.5em;
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name > ul > li a {
  color: #4D4D4D;
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name > .content_footer_gmap {
  margin-top: 10px;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner > .container_footer_name > .content_footer_gmap {
    margin-top: 2.6667vw;
  }
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name > .content_footer_gmap img {
  margin: 0 auto;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner > .container_footer_name > .content_footer_gmap img {
    width: 50vw;
  }
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name > .content_footer_sns {
  margin-top: 20px;
  text-align: center;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner > .container_footer_name > .content_footer_sns {
    margin-top: 2.6667vw;
  }
}
footer#footer .container_footer_wrapper > .inner > .container_footer_name > .content_footer_sns img {
  margin: 0 auto;
  width: 160px;
}
@media (max-width: 750px) {
  footer#footer .container_footer_wrapper > .inner > .container_footer_name > .content_footer_sns img {
    width: 50vw;
  }
}
footer#footer .container_copyright {
  margin: 0 auto;
  max-width: 1050px;
  padding: 20px 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  border-bottom: 1px solid;
}

/*
    Navigation
*/
#nav {
  display: flex;
  background-color: #fff;
  align-items: center;
}
@media (max-width: 750px) {
  #nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: block;
    padding-top: 24vw;
    display: none;
  }
}
#nav > ul {
  display: flex;
}
@media (max-width: 750px) {
  #nav > ul {
    margin-top: 4vw;
    display: block;
  }
}
#nav > ul > li {
  padding: 0 24px;
}
@media (max-width: 750px) {
  #nav > ul > li {
    padding: 0;
  }
}
#nav > ul > li a {
  color: #604C3F;
  display: block;
  font-size: 14px;
  letter-spacing: 0.22em;
  position: relative;
  font-weight: 600;
}
@media (max-width: 750px) {
  #nav > ul > li a {
    font-size: 16px;
    font-size: 4.2666666667vw;
    padding: 2.1333vw 0;
  }
}
#nav > ul > li a > span {
  position: relative;
  display: block;
  position: relative;
  z-index: 1;
}
#nav > ul > li a > span > span {
  margin-top: 0.25em;
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #4D4D4D;
}
@media (max-width: 750px) {
  #nav > ul > li a > span > span {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
#nav > ul > li a.active:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #F4BF79;
  transform: translate(-50%, -50%);
}
#nav > ul > li img {
  width: 91px;
}
@media (max-width: 750px) {
  #nav > ul > li img {
    width: 32vw;
  }
}
#nav > ul > li p {
  margin-top: 0.25em;
  font-size: 12px;
  color: #F4BF79;
}
@media (max-width: 750px) {
  #nav > ul > li p {
    font-size: 12px;
    font-size: 3.2vw;
  }
}

/*
    Style
*/
#main {
  padding-top: 145px;
}
@media (max-width: 750px) {
  #main {
    padding-top: 13.8667vw;
  }
}
#main > section.section > .inner {
  margin: 0 auto;
  max-width: 1020px;
  padding: 15px;
}
@media (max-width: 750px) {
  #main > section.section > .inner {
    padding: 4vw;
  }
}
#main > section.section > .inner > h2 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  #main > section.section > .inner > h2 {
    font-size: 15px;
    font-size: 4vw;
    margin-bottom: 5.3333vw;
  }
}
#main > section.section > .inner > p {
  font-size: 10px;
  line-height: 2.1;
}
@media (max-width: 750px) {
  #main > section.section > .inner > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
    line-height: 1.875;
  }
}
#main > section.section#fv > .inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 750px) {
  #main > section.section#fv > .inner {
    display: block;
  }
}
#main > section.section#fv > .inner > .content_fv_text {
  width: 30%;
  text-align: right;
  padding: 0 15px;
  line-height: 1.72;
  font-size: 20px;
  color: #604C3F;
}
@media (max-width: 750px) {
  #main > section.section#fv > .inner > .content_fv_text {
    padding: 0;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    font-size: 18px;
    font-size: 4.8vw;
  }
}
#main > section.section#fv > .inner > .content_fv_text h1 {
  position: relative;
  padding: 0 15px 60px 0;
  display: inline-block;
  letter-spacing: 0.5em;
}
@media (max-width: 750px) {
  #main > section.section#fv > .inner > .content_fv_text h1 {
    padding: 4vw 0;
  }
}
#main > section.section#fv > .inner > .content_fv_text h1:before {
  content: "";
  display: block;
  width: 51px;
  height: 51px;
  background-image: url("../images/index/icon_01.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -55px;
  right: 10px;
}
@media (max-width: 750px) {
  #main > section.section#fv > .inner > .content_fv_text h1:before {
    width: 10.6667vw;
    height: 10.6667vw;
    top: auto;
    bottom: 2vw;
    right: -13vw;
  }
}
#main > section.section#fv > .inner > .content_fv_text h1:after {
  content: "";
  display: block;
  width: 54px;
  height: 45px;
  background-image: url("../images/index/icon_02.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: 5px;
  left: 10px;
}
@media (max-width: 750px) {
  #main > section.section#fv > .inner > .content_fv_text h1:after {
    width: 10.6667vw;
    height: 10.6667vw;
    bottom: 2vw;
    left: -13vw;
  }
}
#main > section.section#fv > .inner > .content_fv_image {
  width: 70%;
}
@media (max-width: 750px) {
  #main > section.section#fv > .inner > .content_fv_image {
    width: 100%;
  }
}
#main > section.section#top_concept {
  background-color: #fff;
}
#main > section.section#top_concept > .inner {
  padding: 25px 15px;
}
#main > section.section#top_concept > .inner > h2 {
  color: #F4BF79;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  #main > section.section#top_concept > .inner > h2 {
    font-size: 15px;
    font-size: 4vw;
    margin-bottom: 5.3333vw;
  }
}
#main > section.section#top_concept > .inner > h2 + p {
  font-size: 15px;
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  #main > section.section#top_concept > .inner > h2 + p {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
#main > section.section#top_concept > .inner > p {
  letter-spacing: 0.46em;
}
#main > section.section#top_service > .inner {
  max-width: 890px;
  padding: 30px 15px 20px;
}
#main > section.section#top_service > .inner > h2 {
  color: #604C3F;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  #main > section.section#top_service > .inner > h2 {
    font-size: 15px;
    font-size: 4vw;
    margin-bottom: 5.3333vw;
  }
}
#main > section.section#top_service > .inner > h2 > span {
  margin-top: 0.5em;
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #4D4D4D;
}
@media (max-width: 750px) {
  #main > section.section#top_service > .inner > h2 > span {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
#main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -13px;
}
@media (max-width: 750px) {
  #main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists {
    margin: 0 -2.6667vw;
  }
}
#main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists > li {
  padding: 13px;
  color: #604C3F;
  font-weight: 700;
  letter-spacing: 0.22em;
  font-size: 20px;
}
@media (max-width: 750px) {
  #main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists > li {
    padding: 2.6667vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
    width: 50%;
  }
}
#main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists > li img {
  width: 150px;
  margin-bottom: 0.5em;
  border-radius: 10px;
}
@media (max-width: 750px) {
  #main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists > li img {
    width: 100%;
  }
}
#main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists > li a {
  transition: opacity 0.5s ease-in-out;
}
#main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists > li a:hover {
  opacity: 0.5;
}
#main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists > li > h3 {
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
}
#main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists > li > p {
  margin-top: 0.3em;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
}
@media (max-width: 750px) {
  #main > section.section#top_service > .inner .container_service_lists_wrapper ul.container_service_lists > li > p {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
#main > section.section#top_service > .inner > h3 {
  margin: 30px auto 15px;
  width: 130px;
  height: 30px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #604C3F;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #604C3F;
  font-size: 11px;
  letter-spacing: 0.48em;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
}
@media (max-width: 750px) {
  #main > section.section#top_service > .inner > h3 {
    margin: 5.3333vw auto 2.6667vw;
    width: 34.6667vw;
    height: 8vw;
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
#main > section.section#top_service > .inner > p {
  font-size: 11px;
  line-height: 2.18;
  color: #604C3F;
}
@media (max-width: 750px) {
  #main > section.section#top_service > .inner > p {
    font-size: 11px;
    font-size: 2.9333333333vw;
    line-height: 1.9;
  }
}

/*
    Contact
*/
#main > section.section#contact > .inner {
  padding-top: 50px;
  padding-bottom: 20px;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner {
    padding-top: 10.6667vw;
    padding-bottom: 5.3333vw;
  }
}
#main > section.section#contact > .inner > h1 {
  font-size: 15px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  color: #F4BF79;
  letter-spacing: 0.22em;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner > h1 {
    font-size: 15px;
    font-size: 4vw;
  }
}
#main > section.section#contact > .inner > h1 > span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-top: 0.5em;
  color: #4D4D4D;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner > h1 > span {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
#main > section.section#contact > .inner .section_wrapper {
  margin: 30px auto 0;
  max-width: 950px;
  background-color: #F7F7F4;
  border-radius: 25px;
  padding: 30px;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .section_wrapper {
    margin: 5.3333vw auto 0;
    border-radius: 5.3333vw;
    padding: 4vw;
  }
}
#main > section.section#contact > .inner .section_wrapper > p {
  font-size: 13px;
  line-height: 1.969;
  position: relative;
  padding-top: 50px;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .section_wrapper > p {
    padding-top: 10.6667vw;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
#main > section.section#contact > .inner .section_wrapper > p:before {
  content: "";
  display: block;
  width: 35px;
  height: 25px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/contact/icon_mail.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#main > section.section#contact > .inner .container_form {
  margin-top: 30px;
  padding: 20px 40px;
  text-align: left;
  color: #604C3F;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .container_form {
    margin-top: 4.2667vw;
    padding: 2.667vw 0;
  }
}
#main > section.section#contact > .inner .container_form .table_recruit {
  font-size: 17px;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .container_form .table_recruit {
    font-size: 15px;
    font-size: 4vw;
  }
}
#main > section.section#contact > .inner .container_form .table_recruit > .tr {
  display: flex;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .container_form .table_recruit > .tr {
    display: block;
  }
}
#main > section.section#contact > .inner .container_form .table_recruit > .tr > div.th {
  width: 120px;
  padding: 20px 0 0;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .container_form .table_recruit > .tr > div.th {
    width: 100%;
    padding: 2.667vw 0 0;
  }
}
#main > section.section#contact > .inner .container_form .table_recruit > .tr > div.td {
  width: calc(100% - 120px);
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .container_form .table_recruit > .tr > div.td {
    width: 100%;
  }
}
#main > section.section#contact > .inner .container_form .table_recruit > .tr > div.td .required {
  font-size: 15px;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .container_form .table_recruit > .tr > div.td .required {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .container_form .table_recruit > .tr > div.td input {
    width: 100%;
  }
}
#main > section.section#contact > .inner .container_form .table_recruit > .tr > div ul.column_2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#main > section.section#contact > .inner .container_form .table_recruit > .tr > div ul.column_2 > li {
  padding: 8px;
  line-height: 1.2;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .container_form .table_recruit > .tr > div ul.column_2 > li {
    padding: 1vw;
  }
}
#main > section.section#contact > .inner .container_form .table_recruit > .tr > div ul.column_2 > li input + p {
  margin-top: 0.3em;
}
#main > section.section#contact > .inner .container_form .table_recruit > .tr > div ul.column_radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#main > section.section#contact > .inner .container_form .table_recruit > .tr > div ul.column_radio > li {
  padding: 8px;
  line-height: 1.2;
  width: 245px;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .container_form .table_recruit > .tr > div ul.column_radio > li {
    padding: 1vw;
    width: 100%;
  }
}
#main > section.section#contact > .inner .container_form .table_recruit > .tr > div ul.column_radio + p {
  padding: 8px;
}
@media (max-width: 750px) {
  #main > section.section#contact > .inner .container_form .table_recruit > .tr > div ul.column_radio + p {
    padding: 1vw;
  }
}
#main > section.section#contact > .inner .container_form .table_recruit > .title {
  padding: 8px 0;
}
#main > section.section#contact > .inner .submit {
  margin-top: 20px;
}
#main > section.section .container_contact_thanks {
  padding: 100px 0;
  line-height: 1.5;
  font-size: 14px;
}
@media (max-width: 750px) {
  #main > section.section .container_contact_thanks {
    padding: 13.3333vw 0;
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}

/*
    Company
*/
#main > section.section#company > .inner {
  padding-top: 50px;
  padding-bottom: 20px;
  max-width: 1080px;
}
@media (max-width: 750px) {
  #main > section.section#company > .inner {
    padding-top: 10.6667vw;
    padding-bottom: 5.3333vw;
  }
}
#main > section.section#company > .inner > h1 {
  font-size: 15px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  color: #F4BF79;
  letter-spacing: 0.22em;
}
@media (max-width: 750px) {
  #main > section.section#company > .inner > h1 {
    font-size: 15px;
    font-size: 4vw;
  }
}
#main > section.section#company > .inner > p {
  font-size: 13px;
  line-height: 1.75;
  position: relative;
  margin-top: 0.25em;
  letter-spacing: 0.48em;
}
@media (max-width: 750px) {
  #main > section.section#company > .inner > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
#main > section.section#company > .inner .container_company_upper {
  margin-top: 50px;
  padding-top: 25px;
  position: relative;
}
@media (max-width: 750px) {
  #main > section.section#company > .inner .container_company_upper {
    margin-top: 6.6667vw;
    padding-top: 3.4667vw;
  }
}
#main > section.section#company > .inner .container_company_upper:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 420px;
  height: 1px;
  background-color: #604C3F;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
#main > section.section#company > .inner .container_company_upper > h2 {
  font-size: 17px;
  font-weight: 700;
  position: relative;
  padding-top: 50px;
}
@media (max-width: 750px) {
  #main > section.section#company > .inner .container_company_upper > h2 {
    font-size: 15px;
    font-size: 4vw;
    padding-top: 10.6667vw;
  }
}
#main > section.section#company > .inner .container_company_upper > h2:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 34px;
  height: 39px;
  background-image: url("../images/company/icon_build.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  #main > section.section#company > .inner .container_company_upper > h2:before {
    width: 6.6667vw;
    height: 7.647vw;
  }
}
#main > section.section#company > .inner .container_company_upper > p {
  margin-top: 25px;
  font-size: 11px;
  line-height: 2.63;
  letter-spacing: 0.48em;
}
@media (max-width: 750px) {
  #main > section.section#company > .inner .container_company_upper > p {
    margin-top: 5.3333vw;
    font-size: 11px;
    font-size: 2.9333333333vw;
    line-height: 2;
  }
}
#main > section.section#outline {
  padding: 35px 0;
}
@media (max-width: 750px) {
  #main > section.section#outline {
    padding: 4.8vw 4vw;
  }
}
#main > section.section#outline > .inner {
  max-width: 950px;
  background-color: #fff;
  border-radius: 25px;
  padding: 40px;
}
@media (max-width: 750px) {
  #main > section.section#outline > .inner {
    border-radius: 5.3333vw;
    padding: 5.3333vw;
  }
}
#main > section.section#outline > .inner > h2 {
  padding-top: 85px;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}
@media (max-width: 750px) {
  #main > section.section#outline > .inner > h2 {
    padding-top: 13.3333vw;
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
#main > section.section#outline > .inner > h2:before {
  content: "";
  display: block;
  width: 77px;
  height: 48px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/company/logo_nekoyama.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  #main > section.section#outline > .inner > h2:before {
    width: 14.972vw;
    height: 9.3333vw;
  }
}
#main > section.section#outline > .inner .container_outline_wrapper {
  margin: 0 auto 0;
  width: 100%;
  max-width: 845px;
}
#main > section.section#outline > .inner .content_outline_table {
  width: 100%;
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
}
#main > section.section#outline > .inner .content_outline_table > .tr {
  display: table-row;
}
#main > section.section#outline > .inner .content_outline_table > .tr > div {
  display: table-cell;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
  padding: 15px 0;
  letter-spacing: 0.2em;
}
@media (max-width: 750px) {
  #main > section.section#outline > .inner .content_outline_table > .tr > div {
    font-size: 14px;
    font-size: 3.7333333333vw;
    padding: 2.1333vw 0;
  }
}
#main > section.section#outline > .inner .content_outline_table > .tr > div.th {
  width: 140px;
}
@media (max-width: 750px) {
  #main > section.section#outline > .inner .content_outline_table > .tr > div.th {
    width: 24vw;
  }
}
#main > section.section#outline > .inner .content_outline_table > .tr > div.td {
  width: calc(100% - 140px);
}
@media (max-width: 750px) {
  #main > section.section#outline > .inner .content_outline_table > .tr > div.td {
    width: 57.3333vw;
  }
}
#main > section.section#outline > .inner .content_outline_block {
  margin-top: 30px;
  border-top: 1px solid #604C3F;
}
@media (max-width: 750px) {
  #main > section.section#outline > .inner .content_outline_block {
    margin-top: 4vw;
  }
}
#main > section.section#outline > .inner .content_outline_block .content_outline_block_inner {
  margin: 0 auto;
  width: 100%;
  max-width: 765px;
  text-align: left;
  line-height: 2;
  padding: 15px 0;
}
@media (max-width: 750px) {
  #main > section.section#outline > .inner .content_outline_block .content_outline_block_inner {
    padding: 2.1333vw 0;
  }
}
#main > section.section#outline > .inner .content_outline_block .content_outline_block_inner > h3 {
  font-size: 17px;
  font-weight: 600;
}
@media (max-width: 750px) {
  #main > section.section#outline > .inner .content_outline_block .content_outline_block_inner > h3 {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
#main > section.section#outline > .inner .content_outline_block .content_outline_block_inner > .content_outline_block_lists {
  font-size: 13px;
  letter-spacing: 0.18em;
}
@media (max-width: 750px) {
  #main > section.section#outline > .inner .content_outline_block .content_outline_block_inner > .content_outline_block_lists {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
#main > section.section#map {
  padding: 35px 0;
}
@media (max-width: 750px) {
  #main > section.section#map {
    padding: 4.8vw 4vw;
  }
}
#main > section.section#map > .inner {
  max-width: 950px;
  background-color: #fff;
  border-radius: 25px;
  padding-bottom: 40px;
  color: #604C3F;
}
@media (max-width: 750px) {
  #main > section.section#map > .inner {
    border-radius: 5.3333vw;
    padding-bottom: 5.3333vw;
  }
}
#main > section.section#map > .inner > h2 {
  padding-top: 60px;
  font-size: 19px;
  position: relative;
}
@media (max-width: 750px) {
  #main > section.section#map > .inner > h2 {
    padding-top: 13.3333vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
#main > section.section#map > .inner > h2:before {
  content: "";
  display: block;
  width: 22px;
  height: 34px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/company/icon_map.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
#main > section.section#map > .inner > p {
  font-size: 15px;
  line-height: 1.7333;
}
@media (max-width: 750px) {
  #main > section.section#map > .inner > p {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
#main > section.section#map > .inner .container_map_box {
  margin: 15px auto 0;
  width: 100%;
  max-width: 767px;
  position: relative;
}
@media (max-width: 750px) {
  #main > section.section#map > .inner .container_map_box {
    margin: 4vw auto 0;
  }
}
#main > section.section#map > .inner .container_map_box:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 68.448%;
}
#main > section.section#map > .inner .container_map_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
    Privacy
*/
#main > section.section#privacy > .inner {
  padding-top: 50px;
  padding-bottom: 60px;
}
@media (max-width: 750px) {
  #main > section.section#privacy > .inner {
    padding-top: 10.6667vw;
    padding-bottom: 10.6667vw;
  }
}
#main > section.section#privacy > .inner > h1 {
  font-size: 15px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  color: #F4BF79;
  letter-spacing: 0.22em;
}
@media (max-width: 750px) {
  #main > section.section#privacy > .inner > h1 {
    font-size: 15px;
    font-size: 4vw;
  }
}
#main > section.section#privacy > .inner > h1 > span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin-top: 0.5em;
  color: #4D4D4D;
}
@media (max-width: 750px) {
  #main > section.section#privacy > .inner > h1 > span {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
#main > section.section#privacy > .inner > p {
  font-size: 11px;
  line-height: 1.75;
  position: relative;
  margin-top: 25px;
}
@media (max-width: 750px) {
  #main > section.section#privacy > .inner > p {
    margin-top: 4vw;
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
#main > section.section#privacy > .inner .container_privacy_wrapper {
  margin: 35px auto 0;
  max-width: 950px;
  border-radius: 25px;
  background-color: #F7F7F4;
  padding: 15px;
}
@media (max-width: 750px) {
  #main > section.section#privacy > .inner .container_privacy_wrapper {
    margin: 5.3333vw auto 0;
    border-radius: 5.3333vw;
  }
}
#main > section.section#privacy > .inner .container_privacy_wrapper .content_privacy_box {
  margin: 0 auto;
  max-width: 815px;
  text-align: left;
  padding: 10px 0;
}
@media (max-width: 750px) {
  #main > section.section#privacy > .inner .container_privacy_wrapper .content_privacy_box {
    padding: 2.1333vw 0;
  }
}
#main > section.section#privacy > .inner .container_privacy_wrapper .content_privacy_box > h2 {
  font-size: 12px;
  margin-bottom: 0.3em;
}
@media (max-width: 750px) {
  #main > section.section#privacy > .inner .container_privacy_wrapper .content_privacy_box > h2 {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
#main > section.section#privacy > .inner .container_privacy_wrapper .content_privacy_box > p {
  font-size: 10px;
  line-height: 2.333;
}
@media (max-width: 750px) {
  #main > section.section#privacy > .inner .container_privacy_wrapper .content_privacy_box > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}

/*
    Service
*/
#main > section.section#service > .inner {
  padding-top: 50px;
  padding-bottom: 20px;
}
@media (max-width: 750px) {
  #main > section.section#service > .inner {
    padding-top: 10.6667vw;
    padding-bottom: 5.3333vw;
  }
}
#main > section.section#service > .inner > h1 {
  font-size: 15px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  color: #F4BF79;
  letter-spacing: 0.22em;
}
@media (max-width: 750px) {
  #main > section.section#service > .inner > h1 {
    font-size: 15px;
    font-size: 4vw;
  }
}
#main > section.section#service > .inner > p {
  margin-top: 1.5em;
  font-size: 12px;
  line-height: 1.75;
  position: relative;
  letter-spacing: 0.48em;
}
@media (max-width: 750px) {
  #main > section.section#service > .inner > p {
    margin-top: 1em;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
#main > section.section#service > .inner .container_service_lists_wrapper {
  margin: 20px auto 0;
  max-width: 630px;
}
@media (max-width: 750px) {
  #main > section.section#service > .inner .container_service_lists_wrapper {
    margin: 4vw auto 0;
  }
}
#main > section.section#service > .inner .container_service_lists_wrapper > ul > li {
  padding: 15px 0 15px 50px;
  text-align: left;
}
@media (max-width: 750px) {
  #main > section.section#service > .inner .container_service_lists_wrapper > ul > li {
    padding: 3.2vw 0 3.2vw 10.6667vw;
  }
}
#main > section.section#service > .inner .container_service_lists_wrapper .content_service_list {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  padding: 0.6em 0 0.9em;
  border-bottom: 1px dashed #4D4D4D;
}
@media (max-width: 750px) {
  #main > section.section#service > .inner .container_service_lists_wrapper .content_service_list {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
#main > section.section#service > .inner .container_service_lists_wrapper .content_service_list:before {
  content: "";
  display: block;
  width: 42px;
  height: 35px;
  position: absolute;
  top: 0;
  left: -50px;
  background-image: url("../images/service/icon_check.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  #main > section.section#service > .inner .container_service_lists_wrapper .content_service_list:before {
    left: -10.6667vw;
    width: 9.3333vw;
    height: 7.7775vw;
  }
}
#main > section.section#service > .inner .container_service_lists_wrapper + p {
  margin-top: 15px;
  padding-top: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5em;
  position: relative;
}
@media (max-width: 750px) {
  #main > section.section#service > .inner .container_service_lists_wrapper + p {
    margin-top: 2.6667vw;
    padding-top: 10.6667vws;
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
#main > section.section#service > .inner .container_service_lists_wrapper + p:before {
  content: "";
  display: block;
  width: 23px;
  height: 41px;
  background-image: url("../images/service/icon_light.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
@media (max-width: 750px) {
  #main > section.section#service > .inner .container_service_lists_wrapper + p:before {
    width: 5.2356vw;
    height: 9.3333vw;
  }
}
#main > section.section#service_list {
  margin-top: 70px;
  margin-bottom: 25px;
}
@media (max-width: 750px) {
  #main > section.section#service_list {
    margin-top: 9.3333vw;
    margin-bottom: 4vw;
  }
}
#main > section.section#service_list ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  #main > section.section#service_list ul {
    flex-wrap: wrap;
  }
}
#main > section.section#service_list ul > li {
  padding: 8px;
}
@media (max-width: 750px) {
  #main > section.section#service_list ul > li {
    padding: 0.3333vw;
  }
}
#main > section.section#service_list ul > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background-color: #fff;
  border: 1px solid #604C3F;
  border-radius: 30px;
  width: 130px;
  height: 40px;
  color: #604C3F;
  font-size: 20px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  line-height: 1;
  padding-top: 0.1em;
}
@media (max-width: 750px) {
  #main > section.section#service_list ul > li a {
    font-size: 16px;
    font-size: 4.2666666667vw;
    width: 29.3333vw;
    height: 9.0256vw;
  }
}
#main > section.section#service_list ul > li a > span {
  margin-top: -1em;
  display: block;
  width: 100%;
  font-size: 10px;
  font-weight: 400;
}
@media (max-width: 750px) {
  #main > section.section#service_list ul > li a > span {
    margin-top: -0.7em;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
#main > section.section#service_list > .inner {
  margin-top: 25px;
  max-width: 100%;
  background-color: #fff;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner {
    margin-top: 4vw;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_wrapper {
  margin: 0 auto;
  max-width: 1050px;
  padding: 10px 0;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_wrapper {
    padding: 2.1333vw 0;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_box {
  padding: 25px 0;
  display: flex;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_box {
    padding: 4vw 0;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_box.reserve {
  flex-direction: row-reverse;
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner {
  width: 100%;
  max-width: 750px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner {
    display: block;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .thumbnail {
  width: 300px;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .thumbnail {
    width: 100%;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .thumbnail img {
  width: 100%;
  border-radius: 10px;
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text {
  width: calc(100% - 320px);
  padding-bottom: 40px;
  position: relative;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text {
    margin-top: 4vw;
    width: 100%;
    padding-bottom: 0;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > h2 {
  font-size: 18px;
  border-bottom: 3px solid #604C3F;
  text-align: left;
  padding: 0 0.2em 0.4em;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > h2 {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > p {
  margin-top: 1em;
  font-size: 10px;
  line-height: 2;
  letter-spacing: 0.4em;
  text-align: left;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > .link {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > .link {
    margin-top: 4vw;
    position: static;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > .link > div {
  margin-left: 1em;
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > .link a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F4BF79;
  width: 100px;
  height: 40px;
  border-radius: 30px;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > .link a {
    width: 26.6667vw;
    height: 10.6667vw;
    border-radius: 8vw;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > .link a > span {
  display: block;
  padding: 0 0 0 25px;
  position: relative;
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > .link a > span {
    padding: 0 0 0 6.6667vw;
  }
}
#main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > .link a > span:before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-image: url("../images/service/icon_search.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
@media (max-width: 750px) {
  #main > section.section#service_list > .inner .container_service_list_detail_box .container_service_list_detail_inner > .text > .link a > span:before {
    width: 4.8vw;
    height: 4.8vw;
  }
}

/*
    Work
*/
#main {
  overflow: hidden;
}
#main > section.section#works_list > .inner {
  padding-top: 50px;
  padding-bottom: 20px;
  max-width: 1080px;
}
@media (max-width: 750px) {
  #main > section.section#works_list > .inner {
    padding-top: 10.6667vw;
    padding-bottom: 5.3333vw;
  }
}
#main > section.section#works_list > .inner > h1 {
  font-size: 15px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  color: #F4BF79;
  letter-spacing: 0.22em;
}
@media (max-width: 750px) {
  #main > section.section#works_list > .inner > h1 {
    font-size: 15px;
    font-size: 4vw;
  }
}
#main > section.section#works_list > .inner > p {
  margin-top: 1.5em;
  font-size: 12px;
  line-height: 1.75;
  position: relative;
  letter-spacing: 0.48em;
}
@media (max-width: 750px) {
  #main > section.section#works_list > .inner > p {
    margin-top: 1em;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
#main > section.section#works_list > .inner .container_works_lists_wrapper {
  margin: 10px 0 0;
}
#main > section.section#works_list > .inner .container_works_lists_wrapper > ul > li {
  display: flex;
  padding: 20px 0;
}
@media (max-width: 750px) {
  #main > section.section#works_list > .inner .container_works_lists_wrapper > ul > li {
    padding: 2.6667vw 0;
  }
}
#main > section.section#works_list > .inner .container_works_lists_wrapper > ul > li.reverse {
  flex-direction: row-reverse;
}
#main > section.section#works_list > .inner .content_works_box {
  position: relative;
  width: 100%;
  max-width: 800px;
  background-color: #FDF9F1;
}
#main > section.section#works_list > .inner .content_works_box:before {
  content: "";
  width: 195px;
  height: 135px;
  position: absolute;
  top: 10px;
  left: 10px;
  background-image: url("../images/works/number_1.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
@media (max-width: 750px) {
  #main > section.section#works_list > .inner .content_works_box:before {
    width: 34.6667vw;
    height: 24vw;
    top: 2.6667vw;
    left: 2.6667vw;
  }
}
#main > section.section#works_list > .inner .content_works_box > .content_works_box_inner {
  position: relative;
  z-index: 1;
  padding: 60px 25px 25px 100px;
  text-align: left;
  color: #604C3F;
}
@media (max-width: 750px) {
  #main > section.section#works_list > .inner .content_works_box > .content_works_box_inner {
    padding: 8vw 3.4667vw 3.4667vw 13.3333vw;
  }
}
#main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > h2 {
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #05414B;
  line-height: 1.4;
  padding-bottom: 0.9em;
  margin-bottom: 1em;
}
@media (max-width: 750px) {
  #main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > h2 {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
#main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > p {
  font-size: 13px;
  line-height: 1.4;
}
@media (max-width: 750px) {
  #main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > p {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
#main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > .content_works_construction {
  margin-top: 35px;
}
@media (max-width: 750px) {
  #main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > .content_works_construction {
    margin-top: 5.3333vw;
  }
}
#main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > .content_works_construction > ul {
  display: flex;
  justify-content: space-between;
}
#main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > .content_works_construction > ul > li {
  width: 44.444%;
  position: relative;
}
#main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > .content_works_construction > ul > li:nth-of-type(1):after {
  content: "";
  display: block;
  width: 51px;
  height: 33px;
  position: absolute;
  top: 50%;
  right: -65px;
  transform: translate(0, -50%);
  background-image: url("../images/works/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media (max-width: 750px) {
  #main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > .content_works_construction > ul > li:nth-of-type(1):after {
    width: 6.6667vw;
    height: 4.313vw;
    right: -7.6vw;
  }
}
#main > section.section#works_list > .inner .content_works_box > .content_works_box_inner > .content_works_construction > ul > li img {
  border-radius: 10px;
}
#main > section.section#works_list > .inner .content_works_box.no1:before {
  background-image: url("../images/works/number_1.svg");
}
#main > section.section#works_list > .inner .content_works_box.no2:before {
  background-image: url("../images/works/number_2.svg");
}
#main > section.section#works_list > .inner .content_works_box.no3:before {
  background-image: url("../images/works/number_3.svg");
}
#main > section.section#works_list > .inner .content_works_box.no4:before {
  background-image: url("../images/works/number_4.svg");
}
#main > section.section#works_list > .inner .content_works_box.no5:before {
  background-image: url("../images/works/number_5.svg");
}/*# sourceMappingURL=style.css.map */