@charset "UTF-8";
/* resetCSS
-----------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  background-repeat: no-repeat;
  font-weight: normal;
}

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block;
}

ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #000;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select, textarea {
  vertical-align: middle;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
}

input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  background-color: none !important;
  color: #fff !important;
}

input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

:focus {
  outline: none;
}

a, button {
  outline: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
}

a:hover, button:hover {
  outline: none;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  list-style: none;
  background-repeat: no-repeat;
  box-sizing: border-box;
  vertical-align: inherit;
  vertical-align: bottom;
}

em, i {
  font-style: normal;
}

svg {
  height: auto;
}

select::-ms-expand {
  display: none;
}

.selector::-webkit-scrollbar {
  display: none;
}

input {
  width: 100%;
}

picture {
  display: block;
}

label {
  display: block;
}

select {
  color: #000;
}

svg {
  display: block;
  height: 100%;
}

/* color設定
-----------------------------------------------------------------*/
:root {
  --primary-color-black: #333333;
}

/* フォント設定
-----------------------------------------------------------------*/
.dotgothic {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* common
-----------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  color: var(--primary-color-black);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
body img {
  width: 100%;
  vertical-align: middle;
}
body a {
  color: var(--primary-color-black);
  transition: 0.3s;
}
body a:hover {
  opacity: 0.7;
}

@media (min-width: 769px) {
  .pc {
    display: block;
  }
}
@media (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.scrollLock {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.no-link {
  text-decoration: none;
  color: inherit;
}

@media (min-width: 767px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-prev, .slick-next {
  display: none !important;
}

.slick-dots {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .slick-dots {
    margin-top: calc( 60 / 640 * 100vw );
    gap: 10px;
  }
}
@media (min-width: 769px) {
  .slick-dots {
    margin-top: calc( 80 / 1440 * 100vw );
    gap: 10px;
  }
}
@media (min-width: 1440px) {
  .slick-dots {
    margin-top: 80px;
  }
}
.slick-dots li {
  overflow: hidden;
}
@media (max-width: 768px) {
  .slick-dots li {
    width: 8px;
    height: 8px;
  }
}
@media (min-width: 769px) {
  .slick-dots li {
    width: 12px;
    height: 12px;
  }
}
.slick-dots li button {
  display: block;
}
.slick-dots li button:before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #fff;
  opacity: 1;
  color: transparent;
  font-size: 0;
  display: block;
}
@media (max-width: 768px) {
  .slick-dots li button:before {
    width: 8px;
    height: 8px;
  }
}
@media (min-width: 769px) {
  .slick-dots li button:before {
    width: 12px;
    height: 12px;
  }
}
.slick-dots li.slick-active button:before {
  background-color: #ED6D00;
  border: 1px solid #ED6D00;
}

/* footer
-----------------------------------------------------------------*/
.footer {
  position: relative;
  background-color: #3D4853;
  text-align: center;
  color: #fff;
  font-size: 10px;
}
@media (max-width: 768px) {
  .footer {
    padding: calc( 8 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .footer {
    padding: calc( 8 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .footer {
    padding: 8px;
  }
}

/* header
-----------------------------------------------------------------*/
.header {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 999;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .header {
    padding: calc( 18 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .header {
    padding: calc( 18 / 1440 * 100vw ) 0;
  }
}
@media (min-width: 1440px) {
  .header {
    padding: 18px 0;
  }
}
.header_inner {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 769px) {
  .header_inner {
    width: calc( 1136 / 1440 * 100vw );
    max-width: 1136px;
  }
}
.header_logoGroup {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header_logoGroup {
    gap: calc( 26 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .header_logoGroup {
    gap: calc( 30 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .header_logoGroup {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .header_logo {
    width: calc( 130 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .header_logo {
    width: calc( 165 / 1440 * 100vw );
    max-width: 165px;
  }
}
.header_copy {
  color: #3D4853;
}
.header_copy span {
  font-weight: 300;
  display: block;
}
@media (min-width: 769px) {
  .header_copy .large {
    font-size: clamp(10px,calc( 24 / 1440 * 100vw ),24px);
  }
}
@media (max-width: 768px) {
  .header_copy .large {
    font-size: clamp(10px,  24 / 640 * 100vw ,  24 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .header_copy .small {
    font-size: clamp(10px,calc( 16 / 1440 * 100vw ),16px);
  }
}
@media (max-width: 768px) {
  .header_copy .small {
    font-size: clamp(10px,  16 / 640 * 100vw ,  16 / 640 * 100vw );
  }
}

/* menu
-----------------------------------------------------------------*/
@media (max-width: 768px) {
  .menu {
    position: fixed;
    background-color: #fff;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    align-items: center;
    justify-content: center;
    display: flex;
    display: none;
  }
}
.menu_list {
  display: flex;
}
@media (max-width: 768px) {
  .menu_list {
    height: 100%;
    flex-direction: column;
    justify-content: center;
    font-size: clamp(10px,  45 / 640 * 100vw ,  45 / 640 * 100vw );
    gap: calc( 40 / 640 * 100vw );
    text-align: center;
  }
}
@media (min-width: 769px) {
  .menu_list {
    font-size: clamp(10px,calc( 24 / 1440 * 100vw ),24px);
    gap: calc( 30 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .menu_list {
    gap: 30px;
  }
}

/* menuBtn
-----------------------------------------------------------------*/
.menuBtn {
  position: fixed;
  width: calc( 40 / 640 * 100vw );
  height: calc( 40 / 640 * 100vw );
  top: calc( 30 / 640 * 100vw );
  right: calc( 20 / 640 * 100vw );
  z-index: 9999;
}
.menuBtn_node {
  width: 100%;
  height: calc( 3 / 640 * 100vw );
  background-color: #3D4853;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.open .menuBtn_node {
  background-color: transparent;
}
.menuBtn_node:before, .menuBtn_node:after {
  content: "";
  display: block;
  width: 100%;
  height: calc( 3 / 640 * 100vw );
  background-color: #3D4853;
  position: absolute;
  transform-origin: center;
  transition: all 0.3s;
}
.menuBtn_node:before {
  top: calc( 18 / 640 * 100vw );
}
.open .menuBtn_node:before {
  transform: rotate(45deg);
  top: 0;
}
.menuBtn_node:after {
  top: calc( -18 / 640 * 100vw );
}
.open .menuBtn_node:after {
  transform: rotate(-45deg);
  top: 0;
}

/* overlay
-----------------------------------------------------------------*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100vh;
  display: none;
  z-index: 9999;
}

/* chara
-----------------------------------------------------------------*/
.chara {
  position: relative;
  width: 80px;
  height: 123px;
  top: -80vh;
  left: 0;
}
.chara-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  overflow: hidden;
  z-index: 9999;
}
@media (max-width: 768px) {
  .chara-container {
    height: 53svh;
  }
}
@media (min-width: 769px) {
  .chara-container {
    height: 51%;
  }
}

/* instagram-widget
-----------------------------------------------------------------*/
.instagram-widget {
  margin: auto;
}
@media (max-width: 768px) {
  .instagram-widget {
    width: calc( 576 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .instagram-widget {
    width: calc( 1136 / 1440 * 100vw );
    max-width: 1136px;
  }
}
.instagram-widget iframe {
  width: 100%;
}

/* loadAnimation
-----------------------------------------------------------------*/
.loadAnimation {
  height: 200vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
}
.loadAnimation_svg {
  position: fixed;
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
@media (max-width: 768px) {
  .loadAnimation_svg {
    top: 52%;
  }
}
@media (min-width: 769px) {
  .loadAnimation_svg {
    top: 50%;
  }
}

/* .movie_slider
-----------------------------------------------------------------*/
.movie_slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .movie_slider {
    margin-top: calc( 60 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .movie_slider {
    margin-top: calc( 80 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .movie_slider {
    margin-top: 80px;
  }
}
.movie_slider_node {
  aspect-ratio: 1/0.556;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .movie_slider_node {
    width: calc( 220 / 640 * 100vw );
    margin-right: 10px;
  }
}
@media (min-width: 769px) {
  .movie_slider_node {
    width: 360px;
    margin-right: 10px;
  }
  .movie_slider_node:hover {
    opacity: 0.7;
  }
}
.movie_slider_node img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* movie_play
-----------------------------------------------------------------*/
.movie-play {
  display: none;
  aspect-ratio: 16/9;
  background-color: #fff;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
@media (max-width: 768px) {
  .movie-play {
    width: 80%;
    max-width: 500px;
  }
}
@media (min-width: 769px) {
  .movie-play {
    width: calc( 800 / 1440 * 100vw );
    max-width: 800px;
  }
}
.movie-play iframe, .movie-play video {
  width: 101%;
  height: 101%;
  vertical-align: middle;
}

/* section
-----------------------------------------------------------------*/
.section-header {
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  #about .section-header {
    margin-bottom: calc( 30 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  #about .section-header {
    margin-bottom: calc( 30 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  #about .section-header {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  #services .section-header {
    margin-bottom: calc( 60 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  #services .section-header {
    margin-bottom: calc( 100 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  #services .section-header {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  #company .section-header, #contact .section-header, #instagram .section-header {
    margin-bottom: calc( 60 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  #company .section-header, #contact .section-header, #instagram .section-header {
    margin-bottom: calc( 70 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  #company .section-header, #contact .section-header, #instagram .section-header {
    margin-bottom: 70px;
  }
}
.section-header_title {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .section-header_title {
    font-size: clamp(10px,  48 / 640 * 100vw ,  48 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .section-header_title {
    font-size: clamp(10px,calc( 48 / 1440 * 100vw ),48px);
  }
}
#modeling .section-header_title {
  color: #fff;
}
@media (max-width: 768px) {
  #modeling .section-header_title {
    font-size: clamp(10px,  40 / 640 * 100vw ,  40 / 640 * 100vw );
    margin-bottom: calc( 20 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  #modeling .section-header_title {
    font-size: clamp(10px,calc( 40 / 1440 * 100vw ),40px);
    margin-bottom: calc( 20 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  #modeling .section-header_title {
    margin-bottom: 20px;
  }
}
#contact .section-header_title {
  color: #fff;
}
.section-header_description {
  color: #ED6D00;
}
@media (max-width: 768px) {
  .section-header_description {
    font-size: clamp(10px,  20 / 640 * 100vw ,  20 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .section-header_description {
    font-size: clamp(10px,calc( 12 / 1440 * 100vw ),12px);
  }
}
#modeling .section-header_description {
  color: #fff;
}
@media (max-width: 768px) {
  #modeling .section-header_description {
    width: 90%;
    margin: auto;
  }
}
@media (min-width: 769px) {
  #modeling .section-header_description {
    font-size: clamp(10px,calc( 16 / 1440 * 100vw ),16px);
  }
}

/* about
-----------------------------------------------------------------*/
.about {
  background-image: url(../img/about/about_bgi.png);
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 768px) {
  .about {
    padding: calc( 130 / 640 * 100vw ) 0;
  }
}
@media (min-width: 769px) {
  .about {
    padding: calc( 140 / 1440 * 100vw ) 0;
  }
}
@media (min-width: 1440px) {
  .about {
    padding: 140px 0;
  }
}
.about_wrap {
  background-color: rgba(61, 72, 83, 0.85);
  color: #fff;
  margin: auto;
}
@media (max-width: 768px) {
  .about_wrap {
    width: calc( 540 / 640 * 100vw );
    padding-top: calc( 100 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .about_wrap {
    width: calc( 890 / 1440 * 100vw );
    max-width: 890px;
    padding-top: calc( 100 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .about_wrap {
    padding-top: 100px;
  }
}
@media (max-width: 768px) {
  .about_body {
    padding: 0 calc( 40 / 640 * 100vw ) calc( 80 / 640 * 100vw );
    font-size: clamp(10px,  24 / 640 * 100vw ,  24 / 640 * 100vw );
    line-height: 1.5;
  }
}
@media (min-width: 769px) {
  .about_body {
    padding: 0 calc( 158 / 1440 * 100vw ) calc( 100 / 1440 * 100vw );
    font-size: clamp(10px,calc( 16 / 1440 * 100vw ),16px);
    line-height: 1.5;
  }
}
@media (min-width: 1440px) {
  .about_body {
    padding: 0 158px 100px;
  }
}
.about_copy {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
}
.about_bottom {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .about_bottom {
    flex-direction: column;
    gap: calc( 30 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .about_bottom {
    font-size: clamp(10px,calc( 16 / 1440 * 100vw ),16px);
    margin-top: calc( 30 / 1440 * 100vw );
    text-align: right;
    gap: calc( 30 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .about_bottom {
    margin-top: 30px;
    gap: 30px;
  }
}
.about_illust {
  display: block;
}
@media (max-width: 768px) {
  .about_illust {
    width: calc( 53 / 640 * 100vw );
    margin: auto;
  }
}
@media (min-width: 769px) {
  .about_illust {
    width: calc( 53 / 1440 * 100vw );
    max-width: 53px;
  }
}

/* company
-----------------------------------------------------------------*/
.company {
  position: relative;
  background-color: #E6EFF8;
}
@media (max-width: 768px) {
  .company {
    padding: calc( 140 / 640 * 100vw ) 0 0;
  }
}
@media (min-width: 769px) {
  .company {
    padding: calc( 140 / 1440 * 100vw ) 0 0;
  }
}
@media (min-width: 1440px) {
  .company {
    padding: 140px 0 0;
  }
}

@media (max-width: 768px) {
  .company-overview {
    width: calc( 516 / 640 * 100vw );
    margin: auto;
  }
}
@media (min-width: 769px) {
  .company-overview {
    width: calc( 566 / 1440 * 100vw );
    max-width: 566px;
    margin: auto;
  }
}

@media (min-width: 769px) {
  .company-overview_list {
    display: grid;
    grid-template-columns: calc( 126 / 1440 * 100vw ) calc( 420 / 1440 * 100vw );
    gap: calc( 10 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .company-overview_list {
    grid-template-columns: 126px 420px;
    gap: 10px;
  }
}

.company-overview_term,
.company-overview_description {
  background-color: #fff;
  line-height: 1.8;
  text-decoration: none;
}
@media (max-width: 768px) {
  .company-overview_term,
  .company-overview_description {
    font-size: clamp(10px,  24 / 640 * 100vw ,  24 / 640 * 100vw );
    padding: calc( 2 / 640 * 100vw ) calc( 20 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .company-overview_term,
  .company-overview_description {
    font-size: clamp(10px,calc( 16 / 1440 * 100vw ),16px);
    padding: calc( 4 / 1440 * 100vw ) calc( 10 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .company-overview_term,
  .company-overview_description {
    padding: 4px 10px;
  }
}

@media (max-width: 768px) {
  .company-overview_term {
    width: calc( 173 / 640 * 100vw );
    display: inline-block;
    margin-bottom: calc( 8 / 640 * 100vw );
  }
}

@media (max-width: 768px) {
  .company-overview_description {
    margin-bottom: calc( 20 / 640 * 100vw );
  }
}

@media (max-width: 768px) {
  .company-client {
    padding: calc( 80 / 640 * 100vw ) 0;
  }
}
@media (min-width: 769px) {
  .company-client {
    padding: calc( 140 / 1440 * 100vw ) 0;
  }
}
@media (min-width: 1440px) {
  .company-client {
    padding: 140px 0;
  }
}

.company-client_wrap {
  background-color: #fff;
}
@media (max-width: 768px) {
  .company-client_wrap {
    width: calc( 516 / 640 * 100vw );
    margin: auto;
    padding: calc( 60 / 640 * 100vw ) calc( 40 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .company-client_wrap {
    width: calc( 1074 / 1440 * 100vw );
    max-width: 1074px;
    margin: auto;
    padding: calc( 50 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .company-client_wrap {
    padding: 50px;
  }
}

.company-client_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .company-client_list {
    gap: calc( 30 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .company-client_list {
    gap: calc( 30 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .company-client_list {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .company-client_item {
    width: calc( 200 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .company-client_item {
    width: calc( 170 / 1440 * 100vw );
    max-width: 170px;
  }
}

/* contact
-----------------------------------------------------------------*/
.contact {
  position: relative;
  background-color: #425261;
}
@media (max-width: 768px) {
  .contact {
    padding: calc( 140 / 640 * 100vw ) 0;
  }
}
@media (min-width: 769px) {
  .contact {
    padding: calc( 140 / 1440 * 100vw ) 0;
  }
}
@media (min-width: 1440px) {
  .contact {
    padding: 140px 0;
  }
}

.contact_list {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .contact_list {
    flex-direction: column;
    gap: calc( 30 / 640 * 100vw );
    align-items: center;
  }
}
@media (min-width: 769px) {
  .contact_list {
    gap: calc( 60 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .contact_list {
    gap: 60px;
  }
}

.contact_item {
  position: relative;
}
@media (max-width: 768px) {
  .contact_item {
    width: calc( 450 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .contact_item {
    width: calc( 300 / 1440 * 100vw );
    max-width: 300px;
  }
}

#character {
  position: absolute;
  left: -100px;
  bottom: 0;
  width: 70px;
  height: 105px;
}

/* fv
-----------------------------------------------------------------*/
.fv {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
}
@media (min-width: 769px) {
  .fv {
    background-image: url(../img/fv/fv_bg.png);
    background-repeat: repeat-x;
    background-position: bottom;
    background-color: #49bbfe;
    background-size: contain;
  }
}
.fv img, .fv video {
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-width: 500px;
}
@media (max-width: 768px) {
  .fv img, .fv video {
    height: calc(100svh - 60px);
  }
}
@media (min-width: 769px) {
  .fv img, .fv video {
    height: calc(100vh - 100px);
    max-height: 800px;
  }
}

/* instagram
-----------------------------------------------------------------*/
.instagram {
  position: relative;
  background-color: #fff;
}
@media (max-width: 768px) {
  .instagram {
    padding: calc( 140 / 640 * 100vw ) 0;
  }
}
@media (min-width: 769px) {
  .instagram {
    padding: calc( 140 / 1440 * 100vw ) 0;
  }
}
@media (min-width: 1440px) {
  .instagram {
    padding: 140px 0;
  }
}

@media (max-width: 768px) {
  .instagram-btn {
    width: calc( 63 / 640 * 100vw );
    margin: calc( 70 / 640 * 100vw ) auto 0;
  }
}
@media (min-width: 769px) {
  .instagram-btn {
    width: calc( 63 / 1440 * 100vw );
    max-width: 63px;
    margin: calc( 70 / 1440 * 100vw ) auto 0;
  }
}
@media (min-width: 1440px) {
  .instagram-btn {
    margin: 70px auto 0;
  }
}

/* modeling
-----------------------------------------------------------------*/
.modeling {
  background-color: #3D4853;
  position: relative;
}
@media (max-width: 768px) {
  .modeling {
    padding: calc( 140 / 640 * 100vw ) 0;
  }
}
@media (min-width: 769px) {
  .modeling {
    padding: calc( 140 / 1440 * 100vw ) 0;
  }
}
@media (min-width: 1440px) {
  .modeling {
    padding: 140px 0;
  }
}
.modeling:before {
  content: "";
  display: block;
  background-image: url(../img/modeling/modeling_bgi_top.png);
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .modeling:before {
    height: calc( 180 / 640 * 100vw );
    max-height: 180px;
  }
}
@media (min-width: 769px) {
  .modeling:before {
    height: calc( 180 / 1440 * 100vw );
    max-height: 180px;
  }
}
.modeling:after {
  content: "";
  display: block;
  background-image: url(../img/modeling/modeling_bgi_bottom.png);
  background-repeat: repeat-x;
  background-size: contain;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .modeling:after {
    height: calc( 130 / 640 * 100vw );
    max-height: 130px;
  }
}
@media (min-width: 769px) {
  .modeling:after {
    height: calc( 130 / 1440 * 100vw );
    max-height: 130px;
  }
}

/* services
-----------------------------------------------------------------*/
.services {
  position: relative;
  background-color: #fff;
}
@media (max-width: 768px) {
  .services {
    padding: calc( 140 / 640 * 100vw ) 0 calc( 100 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .services {
    padding: calc( 140 / 1440 * 100vw ) 0;
  }
}
@media (min-width: 1440px) {
  .services {
    padding: 140px 0;
  }
}

.service-block {
  background-color: #EFF5FA;
  margin: auto;
}
@media (max-width: 768px) {
  .service-block {
    width: calc( 576 / 640 * 100vw );
    padding: calc( 60 / 640 * 100vw ) calc( 40 / 640 * 100vw ) 0;
    margin-bottom: calc( 60 / 640 * 100vw );
    position: relative;
  }
  .service-block:last-child {
    margin-bottom: 0;
  }
  .service-block:after {
    content: "";
    display: block;
    width: 100%;
    height: calc( 40 / 640 * 100vw );
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
@media (min-width: 769px) {
  .service-block {
    width: calc( 1136 / 1440 * 100vw );
    max-width: 1136px;
    padding: 0 calc( 40 / 1440 * 100vw ) calc( 80 / 1440 * 100vw );
    display: flex;
    gap: calc( 47 / 1440 * 100vw );
    margin-bottom: calc( 100 / 1440 * 100vw );
  }
  .service-block:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1440px) {
  .service-block {
    padding: 0 40px 80px;
    gap: 47px;
    margin-bottom: 100px;
  }
}

.service-header {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .service-header {
    gap: calc( 20 / 640 * 100vw );
    margin-bottom: calc( 36 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .service-header {
    gap: calc( 20 / 1440 * 100vw );
    margin: calc( 100 / 1440 * 100vw ) 0 calc( 40 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .service-header {
    gap: 20px;
    margin: 100px 0 40px;
  }
}
.service-header_wrap {
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .service-icon {
    width: calc( 64 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .service-icon {
    width: calc( 56 / 1440 * 100vw );
    max-width: 56px;
  }
}

.service-title {
  line-height: 1;
}
@media (max-width: 768px) {
  .service-title {
    font-size: clamp(10px,  40 / 640 * 100vw ,  40 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .service-title {
    font-size: clamp(10px,calc( 32 / 1440 * 100vw ),32px);
    line-height: 1;
  }
}

.service-subtitle {
  display: block;
  color: #1879BD;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .service-subtitle {
    font-size: clamp(10px,  20 / 640 * 100vw ,  20 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .service-subtitle {
    font-size: clamp(10px,calc( 14 / 1440 * 100vw ),14px);
  }
}

@media (min-width: 769px) {
  .service-list {
    margin-bottom: calc( 50 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .service-list {
    margin-bottom: 50px;
  }
}

.service-items {
  display: grid;
  grid-template-columns: 1fr;
}
@media (max-width: 768px) {
  .service-items {
    gap: calc( 16 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .service-items {
    gap: calc( 8 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .service-items {
    gap: 8px;
  }
}

.service-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: white;
  z-index: 1;
}

.service-item {
  position: relative;
  overflow: hidden;
}

.service-content {
  display: flex;
  align-items: center;
  font-weight: 600;
  position: relative;
  z-index: 1;
  opacity: 0;
}
@media (max-width: 768px) {
  .service-content {
    font-size: clamp(10px,  24 / 640 * 100vw ,  24 / 640 * 100vw );
    padding: calc( 8 / 640 * 100vw ) calc( 20 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .service-content {
    font-size: clamp(10px,calc( 16 / 1440 * 100vw ),16px);
    padding: calc( 8 / 1440 * 100vw ) calc( 20 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .service-content {
    padding: 8px 20px;
  }
}
.service-content:before {
  content: "■";
  color: #ED6D00;
  margin-right: 0.3em;
}
@media (max-width: 768px) {
  .service-content:before {
    font-size: clamp(10px,  12 / 640 * 100vw ,  12 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .service-content:before {
    font-size: clamp(10px,calc( 12 / 1440 * 100vw ),12px);
  }
}

@media (max-width: 768px) {
  .service-right {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 769px) {
  .service-right {
    width: calc( 640 / 1440 * 100vw );
    max-width: 640px;
  }
}

@media (min-width: 769px) {
  .service-left {
    width: calc( 380 / 1440 * 100vw );
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .service-image-small {
    order: 2;
    width: calc( 200 / 640 * 100vw );
  }
}
@media (min-width: 769px) {
  .service-image-small {
    width: calc( 200 / 1440 * 100vw );
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .service-image-large {
    order: 3;
    width: calc( 340 / 640 * 100vw );
    margin-left: auto;
    margin-top: calc( -40 / 640 * 100vw );
    position: relative;
    z-index: 1;
  }
}
@media (min-width: 769px) {
  .service-image-large {
    margin-top: calc( -20 / 1440 * 100vw );
  }
}
@media (min-width: 1440px) {
  .service-image-large {
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  .service-description {
    order: 1;
    font-size: clamp(10px,  24 / 640 * 100vw ,  24 / 640 * 100vw );
    margin: clamp(10px,  50 / 640 * 100vw ,  50 / 640 * 100vw ) auto;
    width: 90%;
  }
}
@media (min-width: 769px) {
  .service-description {
    font-size: clamp(10px,calc( 16 / 1440 * 100vw ),16px);
    margin: calc( 40 / 1440 * 100vw ) auto 0;
    width: 70%;
  }
}
@media (min-width: 1440px) {
  .service-description {
    margin: 40px auto 0;
  }
}
/*# sourceMappingURL=style.css.map */
