@import url("fonts.css");
@import url("swiper.css");
@import url("materialdesignicons.css");
/**
  * Modern CSS Reset Tweaks
  * ================================================== */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100vh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

/* Box sizing normalization */
*,
::after,
::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/**
  * CSS Reset Tweaks
  *
  * http://meyerweb.com/eric/tools/css/reset/
  * v2.0-modified | 20110126
  * License: none (public domain)
  */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  line-height: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

/**
  * Input Reset
  */
input:required,
input {
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
  box-shadow: 0 0 0 30px white inset;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

/**
  * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
  */
audio,
canvas,
video {
  display: inline-block;
  max-width: 100%;
}

/**
  * Prevent modern browsers from displaying `audio` without controls.
  * Remove excess height in iOS 5 devices.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
  */
[hidden] {
  display: none;
}

/**
  * Improve readability when focused and also mouse hovered in all browsers.
  */
a:active,
a:hover {
  outline: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/* Make pictures easier to work with */
picture {
  display: inline-block;
}

/**
  * Address Firefox 3+ setting `line-height` on `input` using `!important` in
  * the UA stylesheet.
  */
button,
input {
  line-height: normal;
}

/**
  * Address inconsistent `text-transform` inheritance for `button` and `select`.
  * All other form control elements do not inherit `text-transform` values.
  * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
  * Correct `select` style inheritance in Firefox 4+ and Opera.
  */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
  * Re-set default cursor for disabled elements.
  */
button[disabled],
html input[disabled] {
  cursor: default;
}

[disabled] {
  pointer-events: none;
}

/**
  * 1. Address box sizing set to content-box in IE 8/9.
  */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
  * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
  * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
  *    (include `-moz` to future-proof).
  */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/**
  * Remove inner padding and search cancel button in Safari 5 and Chrome
  * on OS X.
  */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * Remove inner padding and border in Firefox 3+.
  */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
  * Remove most spacing between table cells.
  */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
  * Based on normalize.css v8.0.1
  * github.com/necolas/normalize.css
  */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
  * 1. Remove the bottom border in Chrome 57-
  * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 75%;
}

/**
  * Prevent `sub` and `sup` elements from affecting the line height in
  * all browsers.
  */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
  * 1. Change the font styles in all browsers.
  * 2. Remove the margin in Firefox and Safari.
  */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  border-radius: 0;
}

/**
  * Show the overflow in IE.
  * 1. Show the overflow in Edge.
  */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
  * Remove the inheritance of text transform in Edge, Firefox, and IE.
  * 1. Remove the inheritance of text transform in Firefox.
  */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
  * Correct the inability to style clickable types in iOS and Safari.
  */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
  * Remove the inner border and padding in Firefox.
  */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
  * Add the correct vertical alignment in Chrome, Firefox, and Opera.
  */
progress {
  vertical-align: baseline;
}

/**
  * Correct the cursor style of increment and decrement buttons in Chrome.
  */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
  * 1. Correct the odd appearance in Chrome and Safari.
  * 2. Correct the outline style in Safari.
  */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
  * Remove the inner padding in Chrome and Safari on macOS.
  */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style clickable types in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
    ========================================================================== */
/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/*
  * Misc
  * ========================================================================== */
/**
  * Add the correct display in IE 10+.
  */
template {
  display: none;
}

@-webkit-keyframes line1 {
  0% {
    width: 0;
    background-color: rgba(var(--foreground-rgb), 0.2);
  }
  100% {
    width: 100%;
    background-color: rgba(var(--foreground-rgb), 1);
  }
}

@keyframes line1 {
  0% {
    width: 0;
    background-color: rgba(var(--foreground-rgb), 0.2);
  }
  100% {
    width: 100%;
    background-color: rgba(var(--foreground-rgb), 1);
  }
}
@-webkit-keyframes line2 {
  0% {
    width: 100%;
    background-color: rgba(var(--foreground-rgb), 1);
  }
  100% {
    width: 0;
    background-color: rgba(var(--foreground-rgb), 0.2);
  }
}
@keyframes line2 {
  0% {
    width: 100%;
    background-color: rgba(var(--foreground-rgb), 1);
  }
  100% {
    width: 0;
    background-color: rgba(var(--foreground-rgb), 0.2);
  }
}
@-webkit-keyframes drop {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@keyframes drop {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
.w-10 {
  width: calc(10% - 0px);
}

.w-20 {
  width: calc(20% - 0px);
}

.w-30 {
  width: calc(30% - 0px);
}

.w-40 {
  width: calc(40% - 0px);
}

.w-50 {
  width: calc(50% - 0px);
}

.w-60 {
  width: calc(60% - 0px);
}

.w-70 {
  width: calc(70% - 0px);
}

.w-80 {
  width: calc(80% - 0px);
}

.w-90 {
  width: calc(90% - 0px);
}

.w-100 {
  width: calc(100% - 0px);
}

:root {
  --nav-size: 100px;
  --font-visual: "poppins", sans-serif;
  --font: "noto-sans-r", sans-serif;
  --font-b: "noto-sans-b", sans-serif;
  --font-eb: "noto-sans-eb", sans-serif;
  --font-i: "mdi", sans-serif;
  --font-h1: "Philosopher", sans-serif;
  /* text */
  --text-light: #ffffff;
  --text-gray: #8b8b8b;
  --text-dark: #333333;
  --placeholder-text-light: #aaaaaa;
  /* text - rgb */
  --text-light-rgb: 255, 255, 255;
  --text-gray-rgb: 139, 139, 139;
  --text-dark-rgb: 51, 51, 51;
  --placeholder-text-light-rgb: 70, 170, 170;
  /* bg */
  --foreground: #ffffff;
  --background: #1b1b1b;
  /* bg - rgb */
  --foreground-rgb: 255, 255, 255;
  --background-rgb: 0, 0, 0;
  /* border */
  --border-light: #ffffff;
  --border-gray-light: #eeeeee;
  --border-gray: #d1d1d1;
  --border-dark: #333333;
  /* border - rgb */
  --border-light-rgb: 255, 255, 255;
  --border-gray-rgb: 209, 209, 209;
  --border-dark-rgb: 51, 51, 51;
  /* color */
  --primary-color: #f7d86f;
  /* color - rgb */
  --primary-color-rgb: 235, 0, 43;
}

/* Base */
:root {
  scroll-behavior: initial;
}

::-webkit-input-placeholder {
  color: var(--placeholder-text-light);
}

::-moz-placeholder {
  color: var(--placeholder-text-light);
}

:-ms-input-placeholder {
  color: var(--placeholder-text-light);
}

::-ms-input-placeholder {
  color: var(--placeholder-text-light);
}

::placeholder {
  color: var(--placeholder-text-light);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(var(--background-rgb), 0.2);
  border-radius: 5px;
}

::-webkit-scrollbar-track {
  background-color: rgba(var(--foreground-rgb), 0.1);
}

html {
  height: 100%;
  width: 100%;
  margin: 0;
  font-size: 16px;
}

body {
  width: 100%;
  margin: 0;
  font-family: var(--font);
  color: var(--text-dark);
  font-size: 100%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--foreground-dark-rgb), 0.6);
  z-index: 1001;
}

.blind, caption {
  display: block;
  position: absolute;
  left: -9999px;
  overflow: hidden;
  width: 1px;
  height: 1px;
  font-size: 0.1em;
  line-height: 0.01em;
  text-indent: -9999px;
}

.a-l {
  text-align: left !important;
}

.a-c {
  text-align: center !important;
}

.a-r {
  text-align: right !important;
}

.bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--foreground);
  border-left: 1px solid var(--border-gray-light);
  overflow: hidden;
  z-index: -1;
}
.bg > div {
  width: 25%;
  height: 100%;
  border-right: 1px solid var(--border-gray-light);
  background-color: var(--text-light);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.bg > div:first-child, .bg > div:last-child {
  width: 50px;
}
.bg.is-loaded > div {
  position: relative;
  height: 100%;
}
.bg.is-loaded > div:nth-child(1) {
  -webkit-transition: all 0.3s ease 0.25s;
  transition: all 0.3s ease 0.25s;
}
.bg.is-loaded > div:nth-child(2) {
  -webkit-transition: all 0.3s ease 0.5s;
  transition: all 0.3s ease 0.5s;
}
.bg.is-loaded > div:nth-child(3) {
  -webkit-transition: all 0.3s ease 0.75s;
  transition: all 0.3s ease 0.75s;
}
.bg.is-loaded > div:nth-child(4) {
  -webkit-transition: all 0.3s ease 1s;
  transition: all 0.3s ease 1s;
}
.bg.is-loaded > div:nth-child(5) {
  -webkit-transition: all 0.3s ease 1.25s;
  transition: all 0.3s ease 1.25s;
}
.bg.is-loaded > div:nth-child(6) {
  -webkit-transition: all 0.3s ease 1.5s;
  transition: all 0.3s ease 1.5s;
}

@media (max-width: 768px) {
  .bg > div {
    width: 50%;
  }
}
.scroll-y {
  overflow-y: auto;
}

.scroll-x {
  overflow-x: auto;
}

#skip-navi-info {
  font-size: 0;
  text-indent: -99999px;
}

#skip-navi {
  height: 0;
}
#skip-navi a {
  position: absolute;
  left: -9999px;
  width: 100%;
  height: 30px;
  text-align: center;
  line-height: 30px;
  opacity: 0.6;
  z-index: 20000;
}
#skip-navi a:focus {
  left: 0;
}

/* locomotive */
/*! locomotive-scroll v3.5.4 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
html.has-scroll-smooth body {
  overflow: hidden;
}
html.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}
html.has-scroll-dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100vh;
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  opacity: 0;
}
.c-scrollbar:hover {
  -webkit-transform: scaleX(1.45);
          transform: scaleX(1.45);
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
  opacity: 1;
}
.has-scroll-scrolling .c-scrollbar_thumb, .has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grab;
  cursor: grab;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-b);
  color: var(--text-dark);
}

p {
  font-family: var(--font);
}

strong, em {
  font-family: var(--font-sb);
}

a {
  color: inherit;
}

/* header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  padding: 50px;
  z-index: 99;
}

h1.logo {
  font-family: var(--font-h1);
  font-size: 36px;
  cursor: pointer;
}

.btn_contact {
  display: block;
  margin: 0.825em 0;
  width: 64px;
  height: 64px;
  background-color: var(--foreground);
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-size: auto 28px;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 139.4 96.2' style='enable-background:new 0 0 139.4 96.2;' xml:space='preserve'%3E%3Cpolygon fill='%23333333' points='0,35 24.2,59.2 131.3,5.2 34.4,64.9 34.4,94.8 46.9,81.9 61.3,96.2 139.4,0 '/%3E%3C/svg%3E%0A");
}
.btn_contact:hover {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 139.4 96.2' style='enable-background:new 0 0 139.4 96.2;' xml:space='preserve'%3E%3Cpolygon fill='%23009993' points='0,35 24.2,59.2 131.3,5.2 34.4,64.9 34.4,94.8 46.9,81.9 61.3,96.2 139.4,0 '/%3E%3C/svg%3E%0A");
}

@media (max-width: 1700px) {
  #header {
    padding: 1em 50px;
    position: relative;
  }
  #header h1.logo {
    font-family: var(--font-h1);
    font-size: 24px;
  }
  #header h1.logo br {
    display: none;
  }
}
@media (max-width: 1200px) {
  #header {
    padding: 1em;
  }
  .btn_contact {
    width: 44px;
    height: 44px;
    background-size: auto 20px;
  }
}
/* contents */
#container {
  padding-top: 5em;
  padding-bottom: 3em;
  margin-bottom: 5em;
  overflow-x: hidden;
}
#container .inner {
  width: 1400px;
  margin: 0 auto;
  max-width: 100%;
  min-height: 100vh;
}

.visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  width: 100%;
  height: 80vh;
  color: var(--text-light);
}
.visual .swiper-pagination {
  position: absolute;
  top: inherit;
  left: 50px;
  bottom: -50px;
  width: calc(100% - 100px);
}
.visual .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: var(--background);
}

.swiper-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease 0.5s;
  transition: all 0.5s ease 0.5s;
  background-color: var(--background);
}
.swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.swiper-container .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.swiper-container .swiper-slide.swiper-slide-active > div .caption p {
  -webkit-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
  opacity: 1;
  -webkit-transition: all 0.7s ease 0.5s;
  transition: all 0.7s ease 0.5s;
}
.swiper-container .swiper-slide > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.swiper-container .swiper-slide > div .caption p {
  font-size: 70px;
  line-height: 1.2;
  font-family: var(--font-visual);
  position: absolute;
  top: 50%;
  left: 100px;
  opacity: 0;
  -webkit-transform: translate(30%, calc(-50% + 50px));
          transform: translate(30%, calc(-50% + 50px));
}
.swiper-container .swiper-slide > div .caption p:first-child {
  color: transparent;
  -webkit-text-stroke: 1px var(--text-light);
  z-index: 2;
}
.swiper-container .swiper-slide > div .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  width: 600px;
  height: 600px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-transform: translateX(30%);
          transform: translateX(30%);
  z-index: 1;
}
.swiper-container .swiper-button-next i,
.swiper-container .swiper-button-prev i {
  color: var(--text-light);
  font-size: 3em;
}

.scroll {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s ease;
  transition: opacity 0.5s, -webkit-transform 0.5s ease;
  transition: opacity 0.5s, transform 0.5s ease;
  transition: opacity 0.5s, transform 0.5s ease, -webkit-transform 0.5s ease;
}
.scroll.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

h2 {
  font-family: var(--font-h1);
  font-size: 5em;
  text-align: center;
}

.portfolio {
  padding: 1em 6.5em;
}
.portfolio .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 1em;
  font-size: 1.25rem;
}
.portfolio h3 {
  font-size: 4em;
  letter-spacing: -0.05em;
  margin-right: 1em;
  white-space: nowrap;
}
.portfolio .group {
  position: relative;
  border-radius: 2em;
  padding: 3em;
  margin-bottom: 10em;
}
.portfolio .group .swiper-pagination {
  position: absolute;
  top: inherit;
  left: 50px;
  bottom: -50px;
  width: calc(100% - 100px);
}
.portfolio .group .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #b4eaff;
}
.portfolio .group_1 .swiper-container {
  background: url("../images/portfolio/bg_pp_1.jpg") no-repeat;
  background-size: cover;
}
.portfolio .group_2 .swiper-container {
  background: url("../images/portfolio/bg_pp_2.jpg") center no-repeat;
}
.portfolio .group_2 .swiper-container .swiper-slide > div .detail {
  color: var(--text-light);
}
.portfolio .group_2 .swiper-pagination-progressbar-fill {
  background-color: #103a30 !important;
}
.portfolio .group_3 .swiper-container {
  background: url("../images/portfolio/bg_pp_3.jpg") center no-repeat;
}
.portfolio .group_3 .swiper-pagination-progressbar-fill {
  background-color: #444254 !important;
}
.portfolio .group_4 .swiper-container {
  background: url("../images/portfolio/bg_pp_4.jpg") center no-repeat;
}
.portfolio .group_4 .swiper-container .swiper-slide > div .detail {
  color: var(--text-light);
}
.portfolio .group_4 .swiper-pagination-progressbar-fill {
  background-color: #686b6f !important;
}
.portfolio .swiper-container {
  width: 100%;
  height: 600px;
  overflow: inherit;
}
.portfolio .swiper-container.is-inview {
  width: 100%;
}
.portfolio .swiper-container .swiper-slide > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 3em;
}
.portfolio .swiper-container .swiper-slide > div .detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  color: var(--text-dark);
}
.portfolio .swiper-container .swiper-slide > div .detail em {
  font-size: 0.875rem;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  text-underline-position: under;
}
.portfolio .swiper-container .swiper-slide > div .detail strong {
  font-size: 2rem;
  line-height: 1.2;
  font-family: var(--font-eb);
  word-break: keep-all;
}
.portfolio .swiper-container .swiper-slide > div .detail strong i {
  margin-left: 0.25em;
  font-size: 0.5em;
}
.portfolio .swiper-container .swiper-slide > div .detail .hashtag ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 0.875rem;
  gap: 0.5em;
}
.portfolio .swiper-container .swiper-slide > div .detail .hashtag ul li {
  background-color: rgba(var(--text-light-rgb), 0.4);
  padding: 0.25em 1em;
  border-radius: 1em;
}
.portfolio .swiper-container .swiper-slide > div .img {
  min-width: 450px;
  width: 450px;
  height: 450px;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  margin-right: 2em;
}
.portfolio .swiper-container .swiper-slide > div .img a img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.portfolio .swiper-container .swiper-slide > div .img a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.portfolio .swiper-container .swiper-slide > div.multiple {
  width: 100%;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}
.portfolio .swiper-container .swiper-slide > div.multiple > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1em;
}
.portfolio .swiper-container .swiper-slide > div.multiple > div .img {
  min-width: 300px;
  width: 300px;
  height: 300px;
}
.portfolio .swiper-container .swiper-slide > div.multiple > div .detail {
  gap: 0.75em;
}
.portfolio .swiper-container .swiper-slide > div.multiple > div .detail > * {
  width: 100%;
  text-align: center;
}
.portfolio .swiper-container .swiper-slide > div.multiple > div .detail em {
  font-size: 0.625rem;
}
.portfolio .swiper-container .swiper-slide > div.multiple > div .detail strong {
  font-size: 1.25rem;
  line-height: 1.2;
}
.portfolio .swiper-container .swiper-slide > div.multiple > div .detail .hashtag ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 0.625rem;
  gap: 0.5em;
}

.contact {
  position: relative;
  margin-top: 5em;
}
.contact .contact_bg {
  width: 100%;
  height: 500px;
  background: url("../images/main/img_map.jpg") center no-repeat;
  background-size: cover;
}

footer {
  padding: 3em 1em 0;
  text-align: center;
}
footer i {
  margin-right: 0.25em;
}

@media (max-width: 1700px) {
  #container {
    padding-top: 0;
  }
  #container .inner {
    padding: 0em 50px;
    width: 100%;
  }
}
@media (max-width: 1200px) {
  #container .inner {
    padding: 0 1em;
  }
  #container .swiper-container {
    min-height: 80vh;
  }
  #container .swiper-container .swiper-slide {
    overflow: hidden;
  }
  #container .swiper-container .swiper-slide.swiper-slide-active > div .caption p {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
  }
  #container .swiper-container .swiper-slide > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #container .swiper-container .swiper-slide > div .caption p {
    font-size: 45px;
    left: 50px;
    -webkit-transform: translate(0%, calc(-50% + 50px));
            transform: translate(0%, calc(-50% + 50px));
  }
  #container .swiper-container .swiper-slide > div .img {
    width: 400px;
    height: 400px;
  }
  h2 {
    font-size: 3.5em;
  }
  h2.phrase {
    font-size: 10em;
  }
  .portfolio {
    padding: 0em;
  }
  .portfolio .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1em;
    font-size: 0.925rem;
  }
  .portfolio h3 {
    font-size: 2.5em;
    margin-right: 0em;
    margin-bottom: 0.5em;
    text-align: center;
  }
  .portfolio .group {
    border-radius: 1em;
    padding: 1.25em;
    margin-bottom: 5em;
  }
  .portfolio .swiper-container {
    height: auto;
  }
  .portfolio .swiper-container .swiper-slide {
    margin: auto;
  }
  .portfolio .swiper-container .swiper-slide > div {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    padding: 2em;
    gap: 2em;
  }
  .portfolio .swiper-container .swiper-slide > div .detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
    color: var(--text-dark);
  }
  .portfolio .swiper-container .swiper-slide > div .detail em {
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }
  .portfolio .swiper-container .swiper-slide > div .detail a {
    width: 100%;
    display: block;
  }
  .portfolio .swiper-container .swiper-slide > div .detail strong {
    font-size: 2rem;
    display: block;
    width: 100%;
    text-align: center;
  }
  .portfolio .swiper-container .swiper-slide > div .detail strong i {
    margin-left: 0.25em;
    font-size: 0.5em;
  }
  .portfolio .swiper-container .swiper-slide > div .detail .hashtag ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 0.875rem;
    gap: 0.5em;
  }
  .portfolio .swiper-container .swiper-slide > div .detail .hashtag ul li {
    background-color: rgba(var(--text-light-rgb), 0.4);
    padding: 0.25em 1em;
    border-radius: 1em;
  }
  .portfolio .swiper-container .swiper-slide > div .img {
    min-width: 250px !important;
    width: 250px !important;
    height: 250px !important;
    margin: 0 !important;
  }
  .portfolio .swiper-container .swiper-slide > div.multiple {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    gap: 3em;
  }
  .portfolio .swiper-container .swiper-slide > div.multiple .img {
    min-width: 200px !important;
    width: 200px !important;
    height: 200px !important;
    margin: 0 !important;
  }
}