@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 */
/*
    Button
*/
a.button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #B30E60;
  letter-spacing: 0.16em;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
a.button.mail {
  width: 91px;
  height: 39px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid #B30E60;
}
a.button.mail > span {
  padding: 15px 0 0;
  position: relative;
  display: block;
}
a.button.mail > span:before {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/icon_mail.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
a.button.mail:hover {
  background-color: #B30E60;
  color: #fff;
  opacity: 1;
}
a.button.mail:hover > span:before {
  background-image: url("../images/icon_mail_wh.svg");
}
a.button.recruit {
  width: 118px;
  height: 39px;
  background-color: #B30E60;
  border-radius: 30px;
  border: 1px solid #B30E60;
  color: #fff;
}
a.button.recruit > span {
  padding: 15px 0 0;
  position: relative;
  display: block;
}
a.button.recruit > span:before {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-image: url("../images/icon_mail_wh.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
a.button.recruit:hover {
  background-color: #fff;
  color: #B30E60;
  opacity: 1;
}
a.button.recruit:hover > span:before {
  background-image: url("../images/icon_mail.svg");
}

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

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

@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 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", "ヒラギノ角ゴ 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/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;
  }
}
/*
    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%;
  background-image: url("../images/groovepaper.png");
  background-repeat: repeat;
  background-position: center top;
  background-size: auto auto;
  z-index: 1;
}
header#header > .inner {
  margin: 0 auto;
  max-width: 1080px;
  padding: 25px 15px;
  position: relative;
}
@media (max-width: 750px) {
  header#header > .inner {
    padding: 4vw;
    background-color: #fff;
  }
}
header#header > .inner h1 a {
  display: inline-block;
  position: relative;
  z-index: 2;
}
header#header > .inner h1 img {
  margin: 0 auto;
  width: 200px;
}
@media (max-width: 750px) {
  header#header > .inner h1 img {
    width: 40vw;
  }
}
header#header > .inner > .container_hamburger {
  display: none;
}
@media (max-width: 750px) {
  header#header > .inner > .container_hamburger {
    display: block;
    position: absolute;
    top: 4vw;
    right: 4vw;
    width: 8vw;
    height: 8vw;
    z-index: 1;
  }
}
@media (max-width: 750px) {
  header#header > .inner > .container_hamburger > .container_hamburger_inner {
    width: 8vw;
    height: 8vw;
    position: relative;
  }
}
header#header > .inner > .container_hamburger > .container_hamburger_inner > span {
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0);
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
header#header > .inner > .container_hamburger > .container_hamburger_inner > span:nth-of-type(1) {
  top: 25%;
}
header#header > .inner > .container_hamburger > .container_hamburger_inner > span:nth-of-type(3) {
  top: 75%;
}
header#header > .inner > .container_hamburger.open > .container_hamburger_inner > span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header#header > .inner > .container_hamburger.open > .container_hamburger_inner > span:nth-of-type(2) {
  opacity: 0;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
header#header > .inner > .container_hamburger.open > .container_hamburger_inner > span:nth-of-type(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
header#header .container_header_contact {
  position: absolute;
  top: 27px;
  right: 50%;
  transform: translate(50%, 0);
  width: 100%;
  max-width: 1080px;
  text-align: right;
  z-index: 1;
}
@media (max-width: 750px) {
  header#header .container_header_contact {
    margin-top: 8vw;
    position: static;
    transform: translate(0, 0);
    text-align: center;
  }
}
header#header .container_header_contact a {
  margin: 0 0 0 auto;
}
@media (max-width: 750px) {
  header#header .container_header_contact a {
    margin: 0 auto;
  }
}

/*
    footer
*/
footer#footer {
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
footer#footer > .inner {
  background-color: #69B890;
  padding: 20px 15px 8px;
}
@media (max-width: 750px) {
  footer#footer > .inner {
    padding: 5.3333vw 4vw;
  }
}
footer#footer > .inner > .logo img {
  width: 145px;
}
@media (max-width: 750px) {
  footer#footer > .inner > .logo img {
    width: 34.6667vw;
  }
}
footer#footer > .inner > ul.container_footer_link {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}
@media (max-width: 750px) {
  footer#footer > .inner > ul.container_footer_link {
    margin-top: 5.3333vw;
    display: block;
  }
}
footer#footer > .inner > ul.container_footer_link > li {
  padding: 12px;
  font-size: 15px;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-weight: 600;
  letter-spacing: 0.22em;
}
@media (max-width: 750px) {
  footer#footer > .inner > ul.container_footer_link > li {
    padding: 0;
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
footer#footer > .inner > ul.container_footer_link > li a {
  color: #fff;
}
@media (max-width: 750px) {
  footer#footer > .inner > ul.container_footer_link > li a {
    display: block;
    padding: 4vw 0;
  }
}
footer#footer > .copyright {
  padding: 25px 0;
  font-size: 11px;
  letter-spacing: 0.22em;
}
@media (max-width: 750px) {
  footer#footer > .copyright {
    padding: 3.2vw 0;
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}

/*
    Navigation
*/
nav#nav {
  background-color: #fff;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.3);
}
@media (max-width: 750px) {
  nav#nav {
    height: 100vh;
    display: none;
  }
}
nav#nav > ul {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}
@media (max-width: 750px) {
  nav#nav > ul {
    display: block;
    padding: 4vw 0;
  }
}
nav#nav > ul > li {
  padding: 15px;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 15px;
}
@media (max-width: 750px) {
  nav#nav > ul > li {
    padding: 0;
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
nav#nav > ul > li a {
  color: #333;
  letter-spacing: 0.22em;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 750px) {
  nav#nav > ul > li a {
    display: block;
    padding: 4vw 0;
  }
}
nav#nav > ul > li a > span {
  margin-top: 0.5em;
  display: block;
  color: #69B890;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.26em;
}
@media (max-width: 750px) {
  nav#nav > ul > li a > span {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
nav#nav > ul > li a:hover {
  color: #B30E60;
  opacity: 1;
}

/*
    Style
*/
#main {
  padding-top: 180px;
}
@media (max-width: 750px) {
  #main {
    padding-top: 17.3333vw;
  }
}

section.section#fv {
  margin-top: 20px;
  line-height: 0;
}
@media (max-width: 750px) {
  section.section#fv {
    margin-top: 4vw;
  }
}
section.section#concept > .inner {
  margin: 0 auto;
  max-width: 1080px;
  padding: 25px 15px;
  letter-spacing: 0.22em;
}
@media (max-width: 750px) {
  section.section#concept > .inner {
    padding: 6.6667vw 4vw;
  }
}
section.section#concept > .inner > h2 {
  font-size: 15px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #69B890;
}
@media (max-width: 750px) {
  section.section#concept > .inner > h2 {
    font-size: 15px;
    font-size: 4vw;
  }
}
section.section#concept > .inner > p {
  margin-top: 0.5em;
  font-size: 18px;
  line-height: 1.889;
  letter-spacing: 0.5em;
}
@media (max-width: 750px) {
  section.section#concept > .inner > p {
    font-size: 17px;
    font-size: 4.5333333333vw;
  }
}
section.section#aboutus {
  background-color: #fff;
}
section.section#aboutus > .inner {
  margin: 0 auto;
  max-width: 945px;
  padding: 15px;
  letter-spacing: 0.22em;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#aboutus > .inner {
    padding: 4vw;
  }
}
section.section#aboutus > .inner > h2 {
  font-size: 20px;
  font-weight: 600;
  color: #B30E60;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
}
@media (max-width: 750px) {
  section.section#aboutus > .inner > h2 {
    font-size: 18px;
    font-size: 4.8vw;
  }
}
section.section#aboutus > .inner > p {
  margin-top: 1em;
  font-size: 12px;
  line-height: 1.5333;
}
@media (max-width: 750px) {
  section.section#aboutus > .inner > p {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#aboutus > .inner > .link {
  margin-top: 0.5em;
  text-align: right;
  letter-spacing: 0.22em;
}
section.section#aboutus > .inner > .link a {
  display: inline-block;
  padding: 0 20px 0 0;
  position: relative;
  color: #B30E60;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}
section.section#aboutus > .inner > .link a:after {
  content: "";
  display: block;
  width: 16px;
  height: 10px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -0.1em;
  background-image: url("../images/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
section.section#service {
  margin-top: 25px;
  background-color: #F2F2F2;
}
@media (max-width: 750px) {
  section.section#service {
    margin-top: 4vw;
  }
}
section.section#service > .inner {
  margin: 0 auto;
  max-width: 1015px;
  padding: 15px 15px 30px;
}
@media (max-width: 750px) {
  section.section#service > .inner {
    padding: 4vw 4vw 8vw;
  }
}
section.section#service > .inner > h2 {
  margin-top: -0.1em;
  font-size: 100px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 0.6;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#service > .inner > h2 {
    margin-top: -0.2em;
    font-size: 50px;
    font-size: 13.3333333333vw;
  }
}
section.section#service > .inner > h2 > span {
  margin-top: 0.5em;
  display: block;
  color: #666;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 750px) {
  section.section#service > .inner > h2 > span {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
section.section#service > .inner > ul {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 750px) {
  section.section#service > .inner > ul {
    margin-top: 4vw;
    display: block;
  }
}
section.section#service > .inner > ul > li {
  width: 48.223%;
  padding: 15px 0;
}
@media (max-width: 750px) {
  section.section#service > .inner > ul > li {
    width: 100%;
    padding: 3.3333vw 0;
  }
}
section.section#service > .inner .container_service_box {
  display: flex;
  justify-content: space-between;
}
section.section#service > .inner .container_service_box > .thumbnail {
  width: 42.105%;
}
@media (max-width: 750px) {
  section.section#service > .inner .container_service_box > .thumbnail {
    width: 30%;
  }
}
section.section#service > .inner .container_service_box > .text {
  width: 54.736%;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#service > .inner .container_service_box > .text {
    width: 65%;
  }
}
section.section#service > .inner .container_service_box > .text > h3 {
  font-size: 13px;
  letter-spacing: 0.46em;
  border-bottom: 1px solid #69B890;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
@media (max-width: 750px) {
  section.section#service > .inner .container_service_box > .text > h3 {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
section.section#service > .inner .container_service_box > .text > h3 span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #69B890;
  letter-spacing: 0.12em;
  margin-bottom: 0.3em;
}
@media (max-width: 750px) {
  section.section#service > .inner .container_service_box > .text > h3 span {
    font-size: 13px;
    font-size: 3.4666666667vw;
  }
}
section.section#service > .inner .container_service_box > .text > p {
  font-size: 10px;
  line-height: 1.84;
  letter-spacing: 0.3em;
}
@media (max-width: 750px) {
  section.section#service > .inner .container_service_box > .text > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#office {
  margin-top: 70px;
  background-color: #F2F2F2;
}
@media (max-width: 750px) {
  section.section#office {
    margin-top: 9.3333vw;
  }
}
section.section#office > .inner {
  margin: 0 auto;
  max-width: 1015px;
  padding: 15px 15px 30px;
}
@media (max-width: 750px) {
  section.section#office > .inner {
    padding: 4vw 4vw 8vw;
  }
}
section.section#office > .inner > h2 {
  margin-top: -0.1em;
  font-size: 100px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 0.9;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#office > .inner > h2 {
    margin-top: -0.3em;
    font-size: 50px;
    font-size: 13.3333333333vw;
  }
}
section.section#office > .inner > h2 > span {
  margin-top: 0.5em;
  display: block;
  color: #666;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 750px) {
  section.section#office > .inner > h2 > span {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
section.section#office > .inner > .container_office_wrapper {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 750px) {
  section.section#office > .inner > .container_office_wrapper {
    display: block;
    margin-top: 5.3333vw;
  }
}
section.section#office > .inner > .container_office_wrapper > .thumbnail {
  width: 30.4568%;
}
@media (max-width: 750px) {
  section.section#office > .inner > .container_office_wrapper > .thumbnail {
    width: 100%;
    text-align: center;
  }
}
section.section#office > .inner > .container_office_wrapper > .text {
  width: 62.4365%;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#office > .inner > .container_office_wrapper > .text {
    margin-top: 4vw;
    width: 100%;
  }
}
section.section#office > .inner > .container_office_wrapper > .text > h3 {
  font-size: 13px;
  letter-spacing: 0.44em;
  line-height: 1.877;
  margin-bottom: 0.9em;
}
@media (max-width: 750px) {
  section.section#office > .inner > .container_office_wrapper > .text > h3 {
    font-size: 13px;
    font-size: 3.4666666667vw;
    line-height: 1.667;
    letter-spacing: 0.3em;
  }
}
section.section#office > .inner > .container_office_wrapper > .text > p {
  font-size: 11px;
  letter-spacing: 0.42em;
  line-height: 2;
}
@media (max-width: 750px) {
  section.section#office > .inner > .container_office_wrapper > .text > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
    line-height: 1.75;
    letter-spacing: 0.25em;
  }
}
section.section#recruit > .inner {
  padding: 50px 15px 15px;
}
@media (max-width: 750px) {
  section.section#recruit > .inner {
    padding: 6.6667vw 4vw 4vw;
  }
}
section.section#recruit > .inner > h2 {
  font-size: 50px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #999;
  letter-spacing: 0.18em;
}
@media (max-width: 750px) {
  section.section#recruit > .inner > h2 {
    font-size: 50px;
    font-size: 13.3333333333vw;
  }
}
section.section#recruit > .inner > h2 > span {
  display: block;
  color: #B30E60;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.26em;
  line-height: 1.382;
}
@media (max-width: 750px) {
  section.section#recruit > .inner > h2 > span {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
section.section#recruit > .inner > .container_recruit_wrapper {
  margin: 20px auto 0;
  max-width: 990px;
  background-color: #fff;
  padding: 40px 15px 15px;
  border-radius: 10px;
}
@media (max-width: 750px) {
  section.section#recruit > .inner > .container_recruit_wrapper {
    margin: 4vw auto 0;
    padding: 5.3333vw 4vw 4vw;
    border-radius: 2.6667vw;
  }
}
section.section#recruit > .inner > .container_recruit_wrapper > p {
  font-size: 13px;
  line-height: 1.875;
  letter-spacing: 0.42em;
  color: #666;
}
@media (max-width: 750px) {
  section.section#recruit > .inner > .container_recruit_wrapper > p {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.6667;
  }
}
section.section#recruit > .inner .container_recruit_table {
  margin: 0 auto;
  max-width: 860px;
}
section.section#recruit > .inner .container_recruit_table > .tr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-align: left;
  line-height: 1.85;
}
@media (max-width: 750px) {
  section.section#recruit > .inner .container_recruit_table > .tr {
    font-size: 10px;
    font-size: 2.6666666667vw;
    letter-spacing: 0.25em;
  }
}
section.section#recruit > .inner .container_recruit_table > .tr > .th {
  width: 126px;
  padding: 25px 0 10px;
  border-bottom: 1px solid #B3B3B3;
}
@media (max-width: 750px) {
  section.section#recruit > .inner .container_recruit_table > .tr > .th {
    width: 24vw;
    padding: 3.4667vw 0 2.1333vw;
  }
}
section.section#recruit > .inner .container_recruit_table > .tr > .td {
  width: calc(100% - 145px);
  padding: 25px 0 10px;
  border-bottom: 1px solid #B3B3B3;
}
@media (max-width: 750px) {
  section.section#recruit > .inner .container_recruit_table > .tr > .td {
    width: 54.6667vw;
    padding: 3.4667vw 0 2.1333vw;
  }
}
section.section#recruit > .inner .container_recruit_table > .tr.line {
  border-bottom: 1px solid #B3B3B3;
}
section.section#recruit > .inner .container_recruit_table > .tr.line > .td {
  margin-bottom: -1px;
}
@media (max-width: 750px) {
  section.section#recruit > .inner .container_recruit_table > .tr.line_sp {
    border-bottom: 1px solid #B3B3B3;
  }
}
@media (max-width: 750px) {
  section.section#recruit > .inner .container_recruit_table > .tr.line_sp > .td {
    margin-bottom: -1px;
  }
}
section.section#recruit > .inner .container_recruit_link {
  margin-top: 30px;
}
@media (max-width: 750px) {
  section.section#recruit > .inner .container_recruit_link {
    margin-top: 5.3333vw;
  }
}
section.section#recruit > .inner .container_recruit_link > p {
  color: #B30E60;
  font-size: 11px;
  letter-spacing: 0.26em;
}
@media (max-width: 750px) {
  section.section#recruit > .inner .container_recruit_link > p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#recruit > .inner .container_recruit_link a {
  margin: 10px auto;
}
@media (max-width: 750px) {
  section.section#recruit > .inner .container_recruit_link a {
    margin: 2.1333vw auto;
  }
}
section.section#recruit > .inner .container_recruit_link a + p {
  font-size: 10px;
}
@media (max-width: 750px) {
  section.section#recruit > .inner .container_recruit_link a + p {
    font-size: 10px;
    font-size: 2.6666666667vw;
  }
}
section.section#infinityloop {
  margin-top: 25px;
}
section.section#infinityloop > .inner {
  overflow: hidden;
  position: relative;
}
section.section#infinityloop > .inner ul.sliderContainer {
  display: flex;
}
section.section#company {
  margin-top: 65px;
  background-color: #F2F2F2;
}
@media (max-width: 750px) {
  section.section#company {
    margin-top: 9.3333vw;
  }
}
section.section#company > .inner {
  margin: 0 auto;
  max-width: 1015px;
  padding: 15px 15px 30px;
}
@media (max-width: 750px) {
  section.section#company > .inner {
    padding: 4vw 4vw 8vw;
  }
}
section.section#company > .inner > h2 {
  margin-top: -0.3em;
  font-size: 100px;
  font-weight: 600;
  font-family: "Cambay", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ ゴシック", sans-serif;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 0.7;
  text-align: left;
}
@media (max-width: 750px) {
  section.section#company > .inner > h2 {
    margin-top: -0.3em;
    font-size: 50px;
    font-size: 13.3333333333vw;
  }
}
section.section#company > .inner > h2 > span {
  margin-top: 0.5em;
  display: block;
  color: #69B890;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 750px) {
  section.section#company > .inner > h2 > span {
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
}
section.section#company > .inner > .container_company_wrapper {
  margin: 20px auto 0;
  max-width: 845px;
}
@media (max-width: 750px) {
  section.section#company > .inner > .container_company_wrapper {
    margin: 2.6667vw auto 0;
  }
}
section.section#company > .inner .container_company_table {
  width: 100%;
}
section.section#company > .inner .container_company_table > .tr {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #69B890;
  font-size: 11px;
  text-align: left;
  letter-spacing: 0.28em;
  line-height: 1.49;
}
@media (max-width: 750px) {
  section.section#company > .inner .container_company_table > .tr {
    font-size: 11px;
    font-size: 2.9333333333vw;
    letter-spacing: 0.2em;
  }
}
section.section#company > .inner .container_company_table > .tr > .th {
  width: 26.05%;
  max-width: 220px;
  padding: 20px 0 20px 25px;
  font-weight: 600;
}
@media (max-width: 750px) {
  section.section#company > .inner .container_company_table > .tr > .th {
    padding: 4vw 0 4vw 2vw;
  }
}
section.section#company > .inner .container_company_table > .tr > .td {
  width: 73.95%;
  padding: 20px 0;
}
@media (max-width: 750px) {
  section.section#company > .inner .container_company_table > .tr > .td {
    padding: 4vw 0;
  }
}/*# sourceMappingURL=style.css.map */