/* ----------------------------------------
 	reset
 ---------------------------------------- */
html,
body,
div,
span,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
dl,
dt,
dd,
ol,
ul,
li,
strong,
sub,
sup,
i,
small,
address,
time,
fieldset,
form,
label,
legend,
hr,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
header,
footer,
nav,
section,
article,
aside,
figure,
figcaption,
canvas,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  vertical-align: baseline;
}

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

*,
*::before,
*::after {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
ol,
li {
  list-style: none;
}

input,
textarea,
button {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

input[type="submit"],
input[type="button"],
button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

html {
  font-size: 10px;
}

body {
  position: relative;
  width: 100%;
  color: #000;
  font-family: "Rethink Sans", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  word-break: break-all;
}

.f-rethink-sans {
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f-old-standard-tt-regular {
  font-family: "Old Standard TT", serif;
  font-style: normal;
  font-weight: 400;
}

.f-old-standard-tt-bold {
  font-family: "Old Standard TT", serif;
  font-style: normal;
  font-weight: 700;
}

.f-old-standard-tt-regular-italic {
  font-family: "Old Standard TT", serif;
  font-style: italic;
  font-weight: 400;
}

.f-noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  outline: none;
  text-decoration: none;
  transition: 0.2s all ease-in-out;
}

a {
  color: #000;
}

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.hinge {
  animation-duration: 2s;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation-name: bounce;
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}

.shake {
  animation-name: shake;
}

@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  0% {
    transform: translateY(-2000px);
    opacity: 0;
  }
  60% {
    transform: translateY(30px);
    opacity: 1;
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  0% {
    transform: translateX(-2000px);
    opacity: 0;
  }
  60% {
    transform: translateX(30px);
    opacity: 1;
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  0% {
    transform: translateX(2000px);
    opacity: 0;
  }
  60% {
    transform: translateX(-30px);
    opacity: 1;
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  0% {
    transform: translateY(2000px);
    opacity: 0;
  }
  60% {
    transform: translateY(-30px);
    opacity: 1;
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(0.3);
    opacity: 0;
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(2000px);
    opacity: 0;
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(20px);
    opacity: 1;
  }
  100% {
    transform: translateX(-2000px);
    opacity: 0;
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-20px);
    opacity: 1;
  }
  100% {
    transform: translateX(2000px);
    opacity: 0;
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(20px);
    opacity: 1;
  }
  100% {
    transform: translateY(-2000px);
    opacity: 0;
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  0% {
    transform: translateY(-2000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  0% {
    transform: translateX(-2000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  0% {
    transform: translateX(20px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  0% {
    transform: translateX(2000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  0% {
    transform: translateY(2000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(2000px);
    opacity: 0;
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-20px);
    opacity: 0;
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-2000px);
    opacity: 0;
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(20px);
    opacity: 0;
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(2000px);
    opacity: 0;
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-2000px);
    opacity: 0;
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutX;
}

@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    transform-origin: center center;
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-90deg);
    transform-origin: left bottom;
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    transform-origin: left bottom;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform: rotate(90deg);
    transform-origin: right bottom;
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    transform-origin: right bottom;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform: rotate(90deg);
    transform-origin: left bottom;
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    transform-origin: left bottom;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    transform-origin: right bottom;
    opacity: 0;
  }
  100% {
    transform: rotate(0);
    transform-origin: right bottom;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1;
  }
  100% {
    transform: rotate(200deg);
    transform-origin: center center;
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform: rotate(0);
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform: rotate(90deg);
    transform-origin: left bottom;
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform: rotate(0);
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform: rotate(-90deg);
    transform-origin: right bottom;
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform: rotate(0);
    transform-origin: left bottom;
    opacity: 1;
  }
  100% {
    transform: rotate(-90deg);
    transform-origin: left bottom;
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform: rotate(0);
    transform-origin: right bottom;
    opacity: 1;
  }
  100% {
    transform: rotate(90deg);
    transform-origin: right bottom;
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes slideInDown {
  0% {
    transform: translateY(-2000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-2000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  0% {
    transform: translateX(2000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2000px);
    opacity: 0;
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(2000px);
    opacity: 0;
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-2000px);
    opacity: 0;
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  0% {
    transform: translateX(-100%) rotate(-120deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0px) rotate(0deg);
    opacity: 1;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  0% {
    transform: translateX(0px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) rotate(120deg);
    opacity: 0;
  }
}

.rollOut {
  animation-name: rollOut;
}

.slick-slider {
  -webkit-user-select: none;
  -ms-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.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 {
  display: block;
  position: relative;
  top: 0;
  left: 0;
}

.slick-track::before,
.slick-track::after {
  display: table;
  content: '';
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  min-height: 1px;
  float: left;
}

[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: flex;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* @font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('./fonts/slick.eot');
    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
} */
/* Arrows */
.slick-prev,
.slick-next {
  display: block;
  z-index: 3;
  position: absolute;
  bottom: -60px;
  width: 50px;
  height: 50px;
  padding: 0;
  transform: translate(0, -50%);
  border: none;
  border-radius: 50%;
  outline: none;
  background: #7bd5f2;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.p-user_listUser .slick-prev,
.p-user_listUser .slick-next {
  bottom: -100px;
  background: #fc9932;
}

.slick-prev:hover::before,
.slick-prev:focus::before,
.slick-next:hover::before,
.slick-next:focus::before {
  opacity: 1;
}

.slick-prev.slick-disabled::before,
.slick-next.slick-disabled::before {
  opacity: 0.25;
}

.slick-prev::before,
.slick-next::before {
  display: block;
  position: absolute;
  top: 50%;
  width: 13px;
  height: 13px;
  transform-origin: 50% 0;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: '';
  transition: all 0.4s ease-in-out;
}

.slick-prev {
  left: 25px;
}

[dir='rtl'] .slick-prev {
  right: 25px;
  left: auto;
}

.slick-prev::before {
  right: 17px;
  transform: rotate(135deg) translateY(-50%);
}

[dir='rtl'] .slick-prev::before {
  transform: rotate(135deg) translateY(-50%);
}

.slick-next {
  right: 25px;
}

.slick-next::before {
  right: 21px;
  transform: rotate(-45deg) translateY(-50%);
}

[dir='rtl'] .slick-next::before {
  transform: rotate(-45deg) translateY(-50%);
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  display: block;
  position: absolute;
  bottom: -25px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.p-user_listUser .slick-dots {
  bottom: -65px;
}

.slick-dots li {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover::before,
.slick-dots li button:focus::before {
  opacity: 1;
}

.slick-dots li button::before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e4e4e4;
  color: #e4e4e4;
  content: '';
}

.slick-dots li.slick-active button::before {
  background: #7bd5f2;
}

.p-user_listUser .slick-dots li.slick-active button::before {
  background: #fc9932;
}

@media screen and (max-width: 570px) {
  .slick-prev,
  .slick-next {
    bottom: -46px;
    width: 35px;
    height: 35px;
  }
  .slick-prev::before,
  .slick-next::before {
    top: 49%;
    width: 11px;
    height: 11px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .slick-prev::before {
    right: 10px;
  }
  .slick-next::before {
    right: 14px;
  }
  .p-user_listUser .slick-prev,
  .p-user_listUser .slick-next {
    bottom: -86px;
  }
}

.c-title {
  color: #000;
  font-family: "Rethink Sans";
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
}

.c-arrowScroll {
  display: flex;
  justify-content: center;
}

.c-arrowScroll_click {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  border-radius: 50px;
  background: #b9b3ad;
  filter: drop-shadow(2px 3px 10px rgba(0, 0, 0, 0.16));
}

.c-arrowScroll_click::before {
  position: absolute;
  right: 0;
  left: 0;
  width: 26px;
  height: 11px;
  margin: 0 auto;
  background: url("../images/i_up.svg") center no-repeat;
  background-size: contain;
  content: " ";
}

.c-arrowScroll_click.is-down {
  transform: rotate(180deg);
}

.c-arrowScroll_click:hover {
  opacity: 1 !important;
}

.l-riga {
  overflow: hidden;
}

.l-riga a:hover {
  outline: none;
  text-decoration: none;
  opacity: 0.75;
}

.l-riga .l-container {
  max-width: 1046px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .l-riga .l-container {
    min-width: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-riga .l-topSection {
  display: inline-block;
  position: relative;
  min-width: 100%;
  background-color: #fff;
}

.l-riga .p-header {
  z-index: 2;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 44px 0 21px 0;
}

.l-riga .p-header.bg {
  background: #fff;
}

@media screen and (max-width: 960px) {
  .l-riga .p-header {
    display: flex;
    position: fixed;
    align-items: center;
    height: 8rem;
    padding: 10px 0;
    background: #fff;
  }
}

.l-riga .p-header_top {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1181px) and (min-width: 961px) {
  .l-riga .p-header_top {
    padding: 0 16px;
  }
}

@media screen and (max-width: 960px) {
  .l-riga .p-header_top {
    align-items: center;
    width: 100%;
    padding-right: 0;
  }
}

.l-riga .p-header_top_logo {
  margin-left: -60px;
}

@media screen and (max-width: 1181px) and (min-width: 961px) {
  .l-riga .p-header_top_logo {
    margin-left: 0;
  }
}

.l-riga .p-header_top_logo a {
  display: flex;
}

@media screen and (max-width: 960px) {
  .l-riga .p-header_top_logo {
    margin-left: 14px;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .p-header_top_logo {
    max-width: 180px;
  }
}

.l-riga .p-header_top_nav {
  display: flex;
  margin-top: -4px;
  margin-right: -54px;
}

@media screen and (max-width: 1181px) and (min-width: 961px) {
  .l-riga .p-header_top_nav {
    margin-right: 0;
  }
}

.l-riga .p-header_top_nav .p-menu {
  display: flex;
  padding-right: 16px;
}

@media screen and (max-width: 960px) {
  .l-riga .p-header_top_nav .p-menu {
    flex-wrap: wrap;
    border-top: 1px solid #b7b7b7;
  }
}

.l-riga .p-header_top_nav .p-menu_itm {
  padding-right: 44px;
}

@media screen and (max-width: 960px) {
  .l-riga .p-header_top_nav .p-menu_itm {
    width: 100%;
    padding-right: 0;
  }
}

.l-riga .p-header_top_nav .p-menu_itm_link {
  color: #000;
  font-family: "Rethink Sans";
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.231;
  text-align: center;
  text-transform: uppercase;
}

@media screen and (max-width: 960px) {
  .l-riga .p-header_top_nav .p-menu_itm_link {
    display: block;
    padding-left: 37px;
    border-bottom: 1px solid #b7b7b7;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 3.934;
    text-align: left;
  }
}

.l-riga .p-header_top_nav .p-menu_itm:last-child .p-menu_itm_link {
  border-bottom: none;
}

.l-riga .p-header_top_nav .p-language {
  display: flex;
}

@media screen and (max-width: 960px) {
  .l-riga .p-header_top_nav .p-language {
    gap: 30px;
    padding: 30px 0 30px 38px;
  }
}

.l-riga .p-header_top_nav .p-language_set:last-child {
  margin-right: 7px;
}

.l-riga .p-header_top_nav .p-language_set_lang {
  padding: 0 9px;
  color: #000;
  font-family: "Rethink Sans";
  font-size: 13px;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.231;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .l-riga .p-header_top_nav .p-language_set_lang {
    padding: 0 10px;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 0.942;
  }
}

.l-riga .p-header_top_nav .p-language_set_lang.is-active {
  background: #b9b3ad;
}

@media screen and (max-width: 960px) {
  .l-riga .p-header_top_nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    flex-direction: column-reverse;
    transform: translateX(-100%);
    background-color: #fff;
    transition: transform .3s ease;
  }
}

@media screen and (min-width: 961px) {
  .l-riga .p-header_top .hamburger {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .l-riga .p-header_top .hamburger {
    position: relative;
    width: 8rem;
    height: 8rem;
    border-left: 1px solid #b7b7b7;
    cursor: pointer;
  }
  .l-riga .p-header_top .hamburger span {
    position: absolute;
    top: calc(50% - 4px);
    right: 0;
    left: 0;
    width: 4rem;
    height: 1px;
    margin: 0 auto;
    background-color: #151515;
    transition: all .3s ease;
  }
  .l-riga .p-header_top .hamburger span:last-child {
    top: calc(50% - -4px);
    bottom: 0;
  }
}

@media screen and (max-width: 960px) {
  .l-riga .p-header.open .hamburger span:first-child {
    top: 50%;
    transform: rotate(-160deg);
  }
  .l-riga .p-header.open .hamburger span:last-child {
    top: 50%;
    transform: rotate(160deg);
  }
  .l-riga .p-header.open .p-header_top_nav {
    transform: translateX(0);
    transition: transform .3s ease;
  }
}

.l-riga .l-topBody .p-mainVisual {
  display: flex;
  position: fixed;
  top: 0;
  align-items: center;
  width: 100%;
  height: 100vh;
  word-break: break-word;
}

.l-riga .l-topBody .p-mainVisual .p-media {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.l-riga .l-topBody .p-mainVisual .p-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(-50%) translateY(-50%);
}

.l-riga .l-topBody .p-mainVisual_scroll {
  position: absolute;
  right: 0;
  bottom: 37px;
  left: 0;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topBody .p-mainVisual_scroll {
    bottom: 70px;
  }
}

.l-riga .l-topMain {
  z-index: 1;
  position: relative;
  margin-top: 100vh;
  background-color: #fff;
}

.l-riga .l-topMain .p-building {
  margin: 0 0 51px 0;
  padding-top: 181px;
  padding-right: 24px;
  padding-left: 24px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-building {
    margin: 0 0 33px 0;
    padding-top: 78px;
    padding-right: 0;
    padding-bottom: 8px;
    padding-left: 0;
  }
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-building_heading {
    padding-left: 31px;
  }
}

.l-riga .l-topMain .p-building_heading_title {
  position: relative;
  color: #000;
  font-family: "Old Standard TT";
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.867;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-building_heading_title {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.616;
  }
}

@media screen and (max-width: 391px) {
  .l-riga .l-topMain .p-building_heading_title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.955;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-building_heading_title {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.334;
  }
}

.l-riga .l-topMain .p-building_heading_title::before {
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 1.5px;
  border-bottom: 1.5px solid #8d3c00;
  content: " ";
  opacity: 0;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-building_heading_title::before {
    bottom: -17px;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-building_heading_title::before {
    bottom: -11px;
  }
}

@media screen and (max-width: 500px) {
  .l-riga .l-topMain .p-building_heading_title::before {
    width: 342px;
  }
}

@media screen and (max-width: 391px) {
  .l-riga .l-topMain .p-building_heading_title::before {
    width: 302px;
  }
}

@media screen and (max-width: 376px) {
  .l-riga .l-topMain .p-building_heading_title::before {
    width: 288px;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-building_heading_title::before {
    width: 250px;
  }
}

.l-riga .l-topMain .p-building_heading_title::after {
  position: absolute;
  right: 100%;
  bottom: -14px;
  width: 100%;
  height: 1.5px;
  border-bottom: 1.5px solid #8d3c00;
  content: " ";
  opacity: 0;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-building_heading_title::after {
    bottom: -17px;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-building_heading_title::after {
    bottom: -11px;
  }
}

.l-riga .l-topMain .p-brands {
  padding: 63px 24px 60px 24px;
  background: #B9B3AD;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-brands {
    padding: 42px 0 107px 0;
  }
}

.l-riga .l-topMain .p-brands_title {
  padding-bottom: 46px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-brands_title {
    padding-bottom: 39px;
    padding-left: 31px;
  }
}

.l-riga .l-topMain .p-brands_list {
  gap: 34px;
  display: flex;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-brands_list {
    gap: 40px;
    flex-wrap: wrap;
  }
}

.l-riga .l-topMain .p-brands_list .p-site {
  padding: 19px 19px 23px 19px;
  background: #fff;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-brands_list .p-site {
    width: 100%;
    padding: 15px 13px 12px 13px;
  }
  .l-riga .l-topMain .p-brands_list .p-site_img img {
    width: 100%;
  }
}

.l-riga .l-topMain .p-brands_list .p-site_desc {
  position: relative;
  text-align: center;
}

.l-riga .l-topMain .p-brands_list .p-site_desc_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 144px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-brands_list .p-site_desc_logo {
    height: 118px;
  }
  .l-riga .l-topMain .p-brands_list .p-site_desc_logo img {
    max-width: 170px;
  }
}

.l-riga .l-topMain .p-brands_list .p-site_desc_link {
  display: flex;
  justify-content: center;
  margin-top: -13px;
  margin-left: -13px;
}

.l-riga .l-topMain .p-brands_list .p-site_desc_link_label {
  position: relative;
  padding-left: 20px;
  color: #000;
  font-family: "Rethink Sans";
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.03em;
  line-height: 30px;
  text-align: center;
}

.l-riga .l-topMain .p-brands_list .p-site_desc_link_label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 13px;
  height: 13px;
  transform: translateY(-50%);
  background: url("../images/i_link.svg") center no-repeat;
  content: "";
}

.l-riga .l-topMain .p-mtmodelist {
  padding: 141px 0 157px 0;
  background: #e5e5e5;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-mtmodelist {
    padding: 59px 0 0 0;
  }
}

.l-riga .l-topMain .p-mtmodelist_inner {
  position: relative;
}

.l-riga .l-topMain .p-mtmodelist_head {
  position: absolute;
  right: 56px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-mtmodelist_head {
    position: relative;
    right: 0;
    padding-left: 30px;
  }
}

@media screen and (max-width: 391px) {
  .l-riga .l-topMain .p-mtmodelist_head {
    padding-left: 10px;
  }
}

.l-riga .l-topMain .p-mtmodelist_head_lg {
  padding-bottom: 36px;
}

.l-riga .l-topMain .p-mtmodelist_head_text {
  color: #2b2b2b;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  line-height: 1.765;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-mtmodelist_head_text {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.765;
  }
}

@media screen and (max-width: 391px) {
  .l-riga .l-topMain .p-mtmodelist_head_text {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.867;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-mtmodelist_head_text {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.924;
  }
}

.l-riga .l-topMain .p-mtmodelist_photo {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 50px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-mtmodelist_photo {
    margin: 0;
    padding-top: 46px;
  }
}

.l-riga .l-topMain .p-mtmodelist_photo .p-image {
  position: relative;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(1) {
    width: 81%;
    margin-left: -20px;
  }
}

.l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(2) {
  margin-top: -39.6%;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(2) {
    width: 64%;
    margin-top: 9%;
  }
}

.l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(3) {
  margin-top: -19%;
  margin-left: 18%;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(3) {
    width: 55%;
    margin-top: 14%;
    margin-right: auto;
    margin-left: 30px;
  }
}

.l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(4) {
  margin-top: 77px;
  margin-right: 35px;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(4) {
    width: 73%;
    margin-top: 5%;
    margin-right: -20px;
    margin-left: auto;
  }
}

.l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(5) {
  z-index: 1;
  margin-top: -28.5%;
  padding-left: 12px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(5) {
    width: 75%;
    margin-top: 17%;
    margin-right: auto;
    margin-left: -20px;
    padding-left: 0;
  }
}

.l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(6) {
  margin-top: -11%;
  margin-left: auto;
  padding-right: 33px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-mtmodelist_photo .p-image:nth-child(6) {
    width: calc(100% + 40px);
    margin: 17% -20px 0 -20px;
    padding-right: 0;
  }
}

.l-riga .l-topMain .p-border,
.l-riga .l-topMain .p-line {
  position: absolute;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.l-riga .l-topMain .p-border.line01,
.l-riga .l-topMain .p-line.line01 {
  top: 2.8%;
  left: 0;
  transform: skewY(0deg);
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-border.line01,
  .l-riga .l-topMain .p-line.line01 {
    top: 1.02%;
    transform: skewY(0deg);
  }
}

@media screen and (max-width: 769px) {
  .l-riga .l-topMain .p-border.line01,
  .l-riga .l-topMain .p-line.line01 {
    top: 1.07%;
  }
}

@media screen and (max-width: 618px) {
  .l-riga .l-topMain .p-border.line01,
  .l-riga .l-topMain .p-line.line01 {
    top: 1.6%;
  }
}

@media screen and (max-width: 530px) {
  .l-riga .l-topMain .p-border.line01,
  .l-riga .l-topMain .p-line.line01 {
    top: 1.9%;
  }
}

@media screen and (max-width: 440px) {
  .l-riga .l-topMain .p-border.line01,
  .l-riga .l-topMain .p-line.line01 {
    top: 2%;
  }
}

@media screen and (max-width: 391px) {
  .l-riga .l-topMain .p-border.line01,
  .l-riga .l-topMain .p-line.line01 {
    top: 2.1%;
  }
}

@media screen and (max-width: 366px) {
  .l-riga .l-topMain .p-border.line01,
  .l-riga .l-topMain .p-line.line01 {
    top: 2.8%;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-border.line01,
  .l-riga .l-topMain .p-line.line01 {
    top: 2.2%;
  }
}

.l-riga .l-topMain .p-border.line1,
.l-riga .l-topMain .p-line.line1 {
  top: 15.4%;
  transform: skewY(155.3deg);
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-border.line1,
  .l-riga .l-topMain .p-line.line1 {
    top: 32%;
    transform: skewY(125.4deg);
  }
}

.l-riga .l-topMain .p-border.line2,
.l-riga .l-topMain .p-line.line2 {
  top: 72.6%;
  transform: skewY(24.7deg);
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-border.line2,
  .l-riga .l-topMain .p-line.line2 {
    top: 69.2%;
    transform: skewY(54.7deg);
  }
}

.l-riga .l-topMain .p-border .border,
.l-riga .l-topMain .p-line .border {
  z-index: -1;
  position: absolute;
  right: 0;
  border-top: 1.5px solid #fff;
}

.l-riga .l-topMain .p-border .border.border01,
.l-riga .l-topMain .p-line .border.border01 {
  width: 100%;
  border-top: 1.5px solid #d1d1d1;
  opacity: 1;
}

.l-riga .l-topMain .p-border .border.border1,
.l-riga .l-topMain .p-line .border.border1 {
  width: 100%;
  opacity: .254;
}

.l-riga .l-topMain .p-border .border.border2,
.l-riga .l-topMain .p-line .border.border2 {
  width: 0;
  border-top: 1.5px solid #8d3c00;
  opacity: 1;
  transition: width 0.1s linear;
}

.l-riga .l-topMain .p-cassy {
  padding: 123px 0 114px 0;
  background: #b9b3ad;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy {
    padding: 61px 0 90px 0;
  }
}

.l-riga .l-topMain .p-cassy_inner {
  position: relative;
}

.l-riga .l-topMain .p-cassy_head {
  position: absolute;
  left: 118px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy_head {
    position: relative;
    left: 15px;
    padding-left: 18px;
  }
}

@media screen and (max-width: 391px) {
  .l-riga .l-topMain .p-cassy_head {
    padding-left: 10px;
  }
}

.l-riga .l-topMain .p-cassy_head_lg {
  padding-bottom: 33px;
}

.l-riga .l-topMain .p-cassy_head_text {
  color: #2b2b2b;
  font-size: 17px;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  line-height: 1.765;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy_head_text {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.765;
  }
}

@media screen and (max-width: 391px) {
  .l-riga .l-topMain .p-cassy_head_text {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.867;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-cassy_head_text {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.924;
  }
}

.l-riga .l-topMain .p-cassy_photo {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 50px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy_photo {
    margin: 0;
  }
}

.l-riga .l-topMain .p-cassy_photo .p-image {
  position: relative;
}

.l-riga .l-topMain .p-cassy_photo .p-image:nth-child(1) {
  margin-right: -23px;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy_photo .p-image:nth-child(1) {
    width: 63%;
    margin-top: 15%;
    margin-right: -20px;
    margin-left: auto;
  }
}

.l-riga .l-topMain .p-cassy_photo .p-image:nth-child(2) {
  z-index: 1;
  margin-top: -31%;
  margin-left: 67px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy_photo .p-image:nth-child(2) {
    width: 66%;
    margin-top: 10%;
    margin-left: -20px;
  }
}

.l-riga .l-topMain .p-cassy_photo .p-image:nth-child(3) {
  margin-top: -8.5%;
  margin-left: 37%;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy_photo .p-image:nth-child(3) {
    margin-top: -10%;
    margin-right: -20px;
    margin-left: 22%;
  }
}

.l-riga .l-topMain .p-cassy_photo .p-image:nth-child(4) {
  z-index: 1;
  margin-top: 114px;
  margin-left: 52px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy_photo .p-image:nth-child(4) {
    width: 76%;
    margin-top: 15%;
    margin-right: auto;
    margin-left: 17px;
  }
}

.l-riga .l-topMain .p-cassy_photo .p-image:nth-child(5) {
  margin-top: -53.5%;
  margin-left: auto;
  padding-right: 129px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy_photo .p-image:nth-child(5) {
    width: 69%;
    margin-top: 11%;
    margin-left: auto;
    padding-right: 23px;
  }
}

.l-riga .l-topMain .p-cassy_photo .p-image:nth-child(6) {
  margin-top: 8%;
  margin-right: 52px;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy_photo .p-image:nth-child(6) {
    width: 47%;
    margin-top: -7%;
    margin-right: auto;
    margin-left: 32px;
    padding-left: 21px;
  }
}

.l-riga .l-topMain .p-cassy_photo .p-image:nth-child(7) {
  margin-top: -15.6%;
  margin-right: 2%;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy_photo .p-image:nth-child(7) {
    margin-top: 14%;
    margin-right: 6%;
    margin-left: 7%;
  }
}

.l-riga .l-topMain .p-cassy .p-line.line1 {
  top: 19.4%;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy .p-line.line1 {
    top: 34.7%;
  }
}

.l-riga .l-topMain .p-cassy .p-line.line2 {
  top: 69.3%;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-cassy .p-line.line2 {
    top: 77.3%;
  }
}

.l-riga .l-topMain .p-company {
  background: #e5e5e5;
}

.l-riga .l-topMain .p-company .p-info {
  padding: 151px 160px 90px 160px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info {
    padding: 71px 20px 79px 20px;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-company .p-info {
    padding: 71px 10px 79px 10px;
  }
}

.l-riga .l-topMain .p-company .p-info_about_groups {
  padding-top: 8px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_about_groups {
    padding-top: 0;
  }
}

.l-riga .l-topMain .p-company .p-info_about_groups .p-itm {
  display: flex;
  padding: 32px 0 15px 0;
  border-bottom: 1px solid #a5a5a5;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_about_groups .p-itm {
    flex-wrap: wrap;
    padding: 23px 0 5px 0;
  }
}

.l-riga .l-topMain .p-company .p-info_about_groups .p-itm.is-itemMap {
  padding: 33px 0 16px 0;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_about_groups .p-itm.is-itemMap {
    padding: 28px 0 20px 0;
  }
}

.l-riga .l-topMain .p-company .p-info_about_groups .p-itm_label {
  width: 224px;
  color: #2b2b2b;
  font-family: "Rethink Sans";
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0.03em;
  line-height: 30px;
  text-align: left;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_about_groups .p-itm_label {
    width: 100%;
    font-size: 16px;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-company .p-info_about_groups .p-itm_label {
    font-size: 15px;
  }
}

.l-riga .l-topMain .p-company .p-info_about_groups .p-itm_txt {
  width: calc(100% - 224px);
  color: #2b2b2b;
  font-family: "Rethink Sans";
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0.03em;
  line-height: 30px;
  text-align: left;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_about_groups .p-itm_txt {
    width: 100%;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-company .p-info_about_groups .p-itm_txt {
    font-size: 15px;
  }
}

.l-riga .l-topMain .p-company .p-info_about_groups .p-itm_txt.is-map {
  display: flex;
  align-items: end;
  justify-content: space-between;
  line-height: 1.7;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_about_groups .p-itm_txt.is-map {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: start;
    line-height: 1.8;
  }
}

.l-riga .l-topMain .p-company .p-info_about_groups .p-itm_txt_mapHref {
  padding: 2px 13px;
  background: #fff;
  color: #000;
  font-family: "Rethink Sans";
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.03em;
  line-height: 20px;
  text-align: left;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_about_groups .p-itm_txt_mapHref {
    margin-top: 14px;
  }
}

.l-riga .l-topMain .p-company .p-info_link {
  padding-top: 76px;
}

.l-riga .l-topMain .p-company .p-info_link_comment {
  color: #2b2b2b;
  font-size: 17px;
  letter-spacing: 0.02em;
  line-height: 30px;
  text-align: left;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_link_comment {
    padding-top: 11px;
    font-size: 16px;
    line-height: 26px;
  }
}

@media screen and (max-width: 500px) {
  .l-riga .l-topMain .p-company .p-info_link_comment {
    font-size: 15px;
    word-break: break-word;
  }
}

@media screen and (max-width: 376px) {
  .l-riga .l-topMain .p-company .p-info_link_comment {
    font-size: 15px;
    word-break: break-word;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-company .p-info_link_comment {
    font-size: 13px;
  }
}

.l-riga .l-topMain .p-company .p-info_link_columns {
  gap: 25px;
  display: flex;
  margin-bottom: 30px;
  padding: 37px 0;
  border-bottom: 1px solid #a5a5a5;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_link_columns {
    gap: 29px;
    flex-wrap: wrap;
    padding: 29px 0 32px 0;
  }
}

.l-riga .l-topMain .p-company .p-info_link_columns_tab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 110px;
  border-radius: 10px;
  background: #354852;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_link_columns_tab {
    width: 100%;
  }
}

.l-riga .l-topMain .p-company .p-info_link_columns_tab:last-child {
  background: #2b2d3b;
}

.l-riga .l-topMain .p-company .p-info_link_sheng {
  color: #000;
  font-family: "Rethink Sans";
  font-size: 19px;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-align: left;
  text-decoration: underline;
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-company .p-info_link_sheng {
    font-size: 16px;
  }
}

.l-riga .l-topMain .p-company .p-info_contact {
  padding-top: 73px;
  padding-bottom: 105px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_contact {
    padding-bottom: 80px;
  }
}

.l-riga .l-topMain .p-company .p-info_contact_cmt {
  color: #2b2b2b;
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 0.02em;
  line-height: 30px;
  text-align: left;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_contact_cmt {
    padding-top: 12px;
    font-size: 16px;
    line-height: 26px;
  }
}

@media screen and (max-width: 500px) {
  .l-riga .l-topMain .p-company .p-info_contact_cmt {
    font-size: 15px;
    word-break: break-word;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .l-topMain .p-company .p-info_contact_cmt {
    font-size: 13px;
  }
}

.l-riga .l-topMain .p-company .p-info_contact_form {
  padding-top: 36px;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_contact_form {
    padding-top: 23px;
  }
}

.l-riga .l-topMain .p-company .p-info_contact_form_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 354px;
  height: 60px;
  border-radius: 5px;
  background: #4b463b;
  color: #fff;
  font-family: "Rethink Sans";
  font-size: 21px;
  font-weight: normal;
  letter-spacing: 0.03em;
  line-height: 35px;
  text-align: center;
}

@media screen and (max-width: 960px) {
  .l-riga .l-topMain .p-company .p-info_contact_form_btn {
    width: 100%;
    max-width: 354px;
  }
}

.l-riga .p-footer {
  z-index: 2;
  position: relative;
  padding: 51px 0;
  background: #4b463b;
}

@media screen and (max-width: 960px) {
  .l-riga .p-footer {
    padding: 40px 0;
  }
}

.l-riga .p-footer_wrap {
  display: flex;
  justify-content: space-between;
  padding: 0 84px 0 59px;
}

@media screen and (max-width: 960px) {
  .l-riga .p-footer_wrap {
    flex-wrap: wrap;
    padding: 0 0px 0 32px;
  }
}

@media screen and (max-width: 321px) {
  .l-riga .p-footer_wrap {
    padding: 0 0px 0 12px;
  }
}

.l-riga .p-footer_wrap_riga {
  padding-top: 8px;
}

.l-riga .p-footer_center {
  display: flex;
  padding-left: 45px;
}

@media screen and (max-width: 960px) {
  .l-riga .p-footer_center {
    flex-wrap: wrap;
    padding-left: 0;
  }
}

.l-riga .p-footer_center .p-menuFooter {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 960px) {
  .l-riga .p-footer_center .p-menuFooter {
    width: 217px;
    padding-top: 19px;
  }
}

.l-riga .p-footer_center .p-menuFooter_nav {
  width: 50%;
}

.l-riga .p-footer_center .p-menuFooter_nav a {
  color: #ededed;
  font-family: "Rethink Sans";
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
  text-transform: uppercase;
}

@media screen and (max-width: 960px) {
  .l-riga .p-footer_center .p-menuFooter_nav a {
    line-height: 33px;
  }
}

@media screen and (max-width: 960px) {
  .l-riga .p-footer_center .p-footerLink {
    width: 100%;
    padding: 20px 0 60px 0;
  }
}

.l-riga .p-footer_center .p-footerLink_ref {
  display: flex;
  color: #ededed;
  font-family: "Rethink Sans";
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.8;
  text-align: left;
}

.l-riga .p-footer_copyright {
  line-height: 1.3;
}

.l-riga .p-footer_copyright_rg {
  color: #fff;
  color: #ededed;
  font-family: "Rethink Sans";
  font-size: 10px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
}

@media screen and (max-width: 960px) {
  .l-riga .p-footer_copyright_rg {
    display: block;
    padding-left: 0;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 834px) {
  .u-pc-only {
    display: none !important;
  }
}

@media (min-width: 835px) {
  .u-sp-only {
    display: none !important;
  }
}
