@charset "UTF-8";
/* Global Remedies
******************/
/* Use border-box by default, globally */
*, ::before, ::after {
  box-sizing: border-box;
}

/*
* Consistent line spacing...
* CSS Inline Layout Module Level 3: https://drafts.csswg.org/css-inline-3/#line-sizing-property
*/
html {
  line-sizing: normal;
}

/* Remove the tiny space around the edge of the page */
body {
  margin: 0;
}

/* Headings
***********/
/* Switch to rem units for headings */
/* @@@ Initial values are based on existing browser defaults */
h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.17rem;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.83rem;
}

h6 {
  font-size: 0.67rem;
}

/* Keep h1 margins consistent, even when nested */
h1 {
  margin: 0.67em 0;
}

/* Typography
*************/
/* Overflow by default is bad */
pre {
  white-space: pre-wrap;
}

/*
* 1. Solid, thin horizontal rules
* 2. Remove Firefox `color: gray`
* 3. Remove default `1px` height, and common `overflow: hidden`
*/
hr {
  border-style: solid;
  border-width: 1px 0 0;
  color: inherit;
  height: 0;
  overflow: visible;
}

/* Embedded Elements
********************/
/*
* 1. Block display is usually what we want
* 2. Remove strange space-below when inline
* 3. Responsive by default
*/
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  vertical-align: middle;
  max-width: 100%;
}

/*
* Maintain intrinsic aspect ratios when `max-width` is applied
* (iframe, embed, and object have no intrinsic ratio, set height explicitly)
*/
img, svg, video, canvas {
  height: auto;
}

/*
* There is no good reason elements default to 300px,
* and audio files are unlikely to come with a width attribute
*/
audio {
  width: 100%;
}

/* Old Browsers
***************/
/* Remove the border on images inside links in IE 10 and earlier */
img {
  border-style: none;
}

/* Hide the overflow in IE 10 and earlier */
svg {
  overflow: hidden;
}

/* Default block display on HTML5 elements */
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

/*
* 1. Add the correct box sizing in IE 10
* 2. Remove the padding in IE 10
*/
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

body {
  font-size: 1.38rem;
}

/*ヘッダーまわりはサイトに合わせて調整してください*/
header {
  padding: 0;
  background: #FFFFFF;
}

footer {
  background-color: #1065b0;
  color: #FFFFFF;
}

.footerMain {
  width: 1080px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../images/ic_link.svg);
}
.footerMain p {
  text-align: center;
  margin: 0;
  padding: 20px 0;
}
.footerMain p a {
  display: inline-block;
  vertical-align: middle;
  color: #FFFFFF;
  text-decoration: none;
}
.footerMain p a:hover {
  text-decoration: underline;
}
.footerMain p a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  background-image: url(../images/arrow-blue.svg);
  background-size: contain;
}

.footerMenu {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.footerMenu ul, .footerMenu li {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 50px;
  padding: 0.5rem 10px 0 10px;
  overflow: hidden;
}
.footerMenu a {
  color: #FFFFFF;
  text-decoration: none;
}
.footerMenu a:hover {
  text-decoration: underline;
}
.footerMenu__list {
  display: block;
  font-size: 80%;
}
.footerMenu__list--left {
  position: relative;
  float: left;
}
.footerMenu__list--right {
  position: relative;
  float: right;
}
.footerMenu__list--small {
  font-size: 64%;
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown, .acd-check {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  display: inline-block;
  width: 30px;
  height: 22px;
  vertical-align: middle;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
  position: absolute;
  height: 3px;
  /*線の太さ*/
  width: 25px;
  /*長さ*/
  border-radius: 3px;
  background: #555;
  display: block;
  content: "";
  cursor: pointer;
}
#nav-open span:before {
  bottom: -8px;
}
#nav-open span:after {
  bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
  display: none;
  /*はじめは隠しておく*/
  position: fixed;
  z-index: 99;
  top: 0;
  /*全体に広がるように*/
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*中身*/
#nav-content {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  /*最前面に*/
  width: 100%;
  /*右側に隙間を作る（閉じるカバーを表示）*/
  height: 108px;
  background: #3F3F3F;
  /*背景色*/
  transition: 0.3s ease-in-out;
  /*滑らかに表示*/
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
  /*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
  display: block;
  /*カバーを表示*/
  opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*中身を表示（右へスライド）*/
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

#menu {
  float: left;
  position: absolute;
  top: 1px;
  left: 38px;
  margin: 0;
  cursor: pointer;
}

.panel {
  border: none;
  background-color: white;
  display: none;
}

.navBlock__outer {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.navBlock__main .box .btn {
  color: #FFFFFF;
}
.navBlock__list ul, .navBlock__list li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navBlock__list__item {
  display: block;
  float: left;
  width: 360px;
  color: #FFFFFF;
  text-align: center;
}
.navBlock__list__item__content {
  height: 107px;
}
.navBlock__list__item__content p, .navBlock__list__item__content a {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.navBlock__list__item__content a {
  padding-top: 2.5rem;
  color: #FFFFFF;
  text-decoration: none;
}
.navBlock__list__item__content a:before {
  content: "＞";
  margin-right: 0.5rem;
}
.navBlock__list__item__content:hover {
  background-color: #606060;
  border-bottom: 3px solid #FFFFFF;
}
.navBlock__co-list p, .navBlock__co-list a {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.navBlock__co-list__item {
  color: #111;
  border: 1px solid #111;
  border-top: none;
}
.navBlock__co-list__item a {
  color: #111;
  text-decoration: none;
  height: 3rem;
  padding-top: 0.5rem;
}
.navBlock__co-list__item a:hover {
  text-decoration: underline;
}
.navBlock__co-list__item--new a:before {
  content: "new!";
  margin-right: 0.5rem;
}

#menu__lang {
  width: 160px;
  text-align: center;
}
#menu__lang .menu-title a {
  display: block;
  cursor: pointer;
}
#menu__lang .sub-menu {
  display: none;
}
#menu__lang .sub-menu ul {
  list-style: none;
  padding-left: 0;
}
#menu__lang .sub-menu ul li {
  border-bottom: 1px solid #1065b0;
  display: block;
}
#menu__lang .sub-menu ul li:first-child {
  border-top: 1px solid #1065b0;
}
#menu__lang .sub-menu ul li a {
  text-decoration: none;
  display: block;
  font-size: 1.2rem;
  padding: 5px 10px;
  text-align: left;
}
#menu__lang .sub-menu ul li a:hover {
  text-decoration: underline;
}
#menu__lang:hover .sub-menu {
  display: block;
}

/*!
	Modaal - accessible modals - v0.4.4
	by Humaan, for all humans.
	http://humaan.com
 */
.modaal-noscroll {
  overflow: hidden;
}

.modaal-accessible-hide {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.modaal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  opacity: 0;
}

.modaal-wrapper {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 1;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  transition: all 0.3s ease-in-out;
}
.modaal-wrapper * {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
}
.modaal-wrapper .modaal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}
.modaal-wrapper.modaal-start_none {
  display: none;
  opacity: 1;
}
.modaal-wrapper.modaal-start_fade {
  opacity: 0;
}
.modaal-wrapper *[tabindex="0"] {
  outline: none !important;
}
.modaal-wrapper.modaal-fullscreen {
  overflow: hidden;
}

.modaal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}
.modaal-fullscreen .modaal-outer-wrapper {
  display: block;
}

.modaal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}
.modaal-fullscreen .modaal-inner-wrapper {
  padding: 0;
  display: block;
  vertical-align: top;
}

.modaal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  /* border-radius: $modaal-radius; */
  /* background: $modaal-main-bg; */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
}
.modaal-container.is_loading {
  height: 100px;
  width: 100px;
  overflow: hidden;
}
.modaal-fullscreen .modaal-container {
  max-width: none;
  height: 100%;
  overflow: auto;
}

.modaal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-close:focus, .modaal-close:hover {
  outline: none;
  background: #fff;
}
.modaal-close:focus:before, .modaal-close:focus:after, .modaal-close:hover:before, .modaal-close:hover:after {
  background: #b93d0c;
}
.modaal-close span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-close:before, .modaal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-close:before {
  transform: rotate(-45deg);
}
.modaal-close:after {
  transform: rotate(45deg);
}
.modaal-fullscreen .modaal-close {
  background: #afb7bc;
  right: 10px;
  top: 10px;
}

.modaal-content-container {
  padding: 30px;
}

.modaal-confirm-wrap {
  padding: 30px 0 0;
  text-align: center;
  font-size: 0;
}

.modaal-confirm-btn {
  font-size: 14px;
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  background: transparent;
}
.modaal-confirm-btn.modaal-ok {
  padding: 10px 15px;
  color: #fff;
  background: #555;
  border-radius: 3px;
  transition: background 0.2s ease-in-out;
}
.modaal-confirm-btn.modaal-ok:hover {
  background: #2f2f2f;
}
.modaal-confirm-btn.modaal-cancel {
  text-decoration: underline;
}
.modaal-confirm-btn.modaal-cancel:hover {
  text-decoration: none;
  color: #2f2f2f;
}

@keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes instaReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modaal-instagram .modaal-container {
  width: auto;
  background: transparent;
  box-shadow: none !important;
}
.modaal-instagram .modaal-content-container {
  padding: 0;
  background: transparent;
}
.modaal-instagram .modaal-content-container > blockquote {
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.modaal-instagram iframe {
  opacity: 0;
  margin: -6px !important;
  border-radius: 0 !important;
  width: 1000px !important;
  max-width: 800px !important;
  box-shadow: none !important;
  animation: instaReveal 1s linear forwards;
}

.modaal-image .modaal-inner-wrapper {
  padding-left: 140px;
  padding-right: 140px;
}
.modaal-image .modaal-container {
  width: auto;
  max-width: 100%;
}

.modaal-gallery-wrap {
  position: relative;
  color: #fff;
}

.modaal-gallery-item {
  display: none;
}
.modaal-gallery-item img {
  display: block;
}
.modaal-gallery-item.is_active {
  display: block;
}

.modaal-gallery-label {
  position: absolute;
  left: 0;
  width: 100%;
  margin: 20px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.modaal-gallery-label:focus {
  outline: none;
}

.modaal-gallery-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  cursor: pointer;
  color: #fff;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border: none;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
.modaal-gallery-control.is_hidden {
  opacity: 0;
  cursor: default;
}
.modaal-gallery-control:focus, .modaal-gallery-control:hover {
  outline: none;
  background: #fff;
}
.modaal-gallery-control:focus:before, .modaal-gallery-control:focus:after, .modaal-gallery-control:hover:before, .modaal-gallery-control:hover:after {
  background: #afb7bc;
}
.modaal-gallery-control span {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
.modaal-gallery-control:before, .modaal-gallery-control:after {
  display: block;
  content: " ";
  position: absolute;
  top: 16px;
  left: 25px;
  width: 4px;
  height: 18px;
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s ease-in-out;
}
.modaal-gallery-control:before {
  margin: -5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-control:after {
  margin: 5px 0 0;
  transform: rotate(45deg);
}

.modaal-gallery-next-inner {
  left: 100%;
  margin-left: 40px;
}
.modaal-gallery-next-outer {
  right: 45px;
}

.modaal-gallery-prev:before, .modaal-gallery-prev:after {
  left: 22px;
}
.modaal-gallery-prev:before {
  margin: 5px 0 0;
  transform: rotate(-45deg);
}
.modaal-gallery-prev:after {
  margin: -5px 0 0;
  transform: rotate(45deg);
}
.modaal-gallery-prev-inner {
  right: 100%;
  margin-right: 40px;
}
.modaal-gallery-prev-outer {
  left: 45px;
}

.modaal-video-wrap {
  margin: auto 50px;
  position: relative;
}

.modaal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.modaal-video-container iframe,
.modaal-video-container object,
.modaal-video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modaal-iframe .modaal-content {
  width: 100%;
  height: 100%;
}

.modaal-iframe-elem {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 1400px) {
  .modaal-video-container {
    padding-bottom: 0;
    height: 731px;
  }
}
@media only screen and (max-width: 1140px) {
  .modaal-image .modaal-inner-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }

  .modaal-gallery-control {
    top: auto;
    bottom: 20px;
    transform: none;
    background: rgba(0, 0, 0, 0.7);
  }
  .modaal-gallery-control:before, .modaal-gallery-control:after {
    background: #fff;
  }

  .modaal-gallery-next {
    left: auto;
    right: 20px;
  }

  .modaal-gallery-prev {
    left: 20px;
    right: auto;
  }
}
@media screen and (max-width: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }
}
@media screen and (max-height: 1100px) {
  .modaal-instagram iframe {
    width: 700px !important;
  }
}
@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .modaal-instagram iframe {
    width: 600px !important;
  }
}
@media screen and (max-height: 900px) {
  .modaal-instagram iframe {
    width: 500px !important;
  }

  .modaal-video-container {
    max-width: 900px;
    max-height: 510px;
  }
}
@media only screen and (max-width: 600px) {
  .modaal-instagram iframe {
    width: 280px !important;
  }
}
@media only screen and (max-height: 820px) {
  .modaal-gallery-label {
    display: none;
  }
}
.modaal-loading-spinner {
  background: none;
  position: absolute;
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  transform: scale(0.25);
}

@-ms-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-o-keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes modaal-loading-spinner {
  0% {
    opacity: 1;
    -ms-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
  }
  100% {
    opacity: 0.1;
    -ms-transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.modaal-loading-spinner > div {
  width: 24px;
  height: 24px;
  margin-left: 4px;
  margin-top: 4px;
  position: absolute;
}

.modaal-loading-spinner > div > div {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: #fff;
}

.modaal-loading-spinner > div:nth-of-type(1) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -webkit-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
}

.modaal-loading-spinner > div:nth-of-type(2) > div, .modaal-loading-spinner > div:nth-of-type(3) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(1) {
  -ms-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(45deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(2) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.12s;
  -moz-animation-delay: 0.12s;
  -webkit-animation-delay: 0.12s;
  -o-animation-delay: 0.12s;
  animation-delay: 0.12s;
}

.modaal-loading-spinner > div:nth-of-type(2) {
  -ms-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(90deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(3) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.25s;
  -moz-animation-delay: 0.25s;
  -webkit-animation-delay: 0.25s;
  -o-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

.modaal-loading-spinner > div:nth-of-type(4) > div, .modaal-loading-spinner > div:nth-of-type(5) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(3) {
  -ms-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(135deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(4) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.37s;
  -moz-animation-delay: 0.37s;
  -webkit-animation-delay: 0.37s;
  -o-animation-delay: 0.37s;
  animation-delay: 0.37s;
}

.modaal-loading-spinner > div:nth-of-type(4) {
  -ms-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(180deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(5) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
  -o-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.modaal-loading-spinner > div:nth-of-type(6) > div, .modaal-loading-spinner > div:nth-of-type(7) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
}

.modaal-loading-spinner > div:nth-of-type(5) {
  -ms-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(225deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(6) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.62s;
  -moz-animation-delay: 0.62s;
  -webkit-animation-delay: 0.62s;
  -o-animation-delay: 0.62s;
  animation-delay: 0.62s;
}

.modaal-loading-spinner > div:nth-of-type(6) {
  -ms-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(270deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(7) > div {
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.75s;
  -moz-animation-delay: 0.75s;
  -webkit-animation-delay: 0.75s;
  -o-animation-delay: 0.75s;
  animation-delay: 0.75s;
}

.modaal-loading-spinner > div:nth-of-type(7) {
  -ms-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(315deg) translate(70px, 0);
}

.modaal-loading-spinner > div:nth-of-type(8) > div {
  -ms-animation: modaal-loading-spinner 1s linear infinite;
  -moz-animation: modaal-loading-spinner 1s linear infinite;
  -webkit-animation: modaal-loading-spinner 1s linear infinite;
  -o-animation: modaal-loading-spinner 1s linear infinite;
  animation: modaal-loading-spinner 1s linear infinite;
  -ms-animation-delay: 0.87s;
  -moz-animation-delay: 0.87s;
  -webkit-animation-delay: 0.87s;
  -o-animation-delay: 0.87s;
  animation-delay: 0.87s;
}

.modaal-loading-spinner > div:nth-of-type(8) {
  -ms-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -moz-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -webkit-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  -o-transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
  transform: translate(84px, 84px) rotate(360deg) translate(70px, 0);
}

body {
  background-color: #111;
}

#boothHead {
  display: none;
}

.boothBlock--black {
  background-color: #111;
}
.boothBlock__outer {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.boothBlock__main {
  width: 1080px;
  height: 763px;
}
.boothBlock__main__map ul {
  margin: 0;
  padding: 0;
}
.boothBlock__main__map__item {
  position: absolute;
  top: 0;
  left: 0;
}
.boothBlock__main__map__item--lang {
  right: 0;
}

.generalBlock--white {
  background-color: #FFFFFF;
}
.generalBlock--blue {
  background-color: #1065b0;
}
.generalBlock--water {
  background-color: #C8E7F8;
}
.generalBlock--black {
  background-color: #111;
}
.generalBlock--gray {
  background-color: #f0f0f0;
}
.generalBlock__outer {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.generalBlock__main__messages {
  background-image: url("../images/banner-main-hikari.png");
  background-size: cover;
  padding: 15px;
}
.generalBlock__main__messages__h1 {
  margin: 0;
  padding: 0.5rem 0;
  text-align: center;
  /* font-family: Hiragino Mincho W7 JIS2004; */
  font-size: 2.88rem;
}
.generalBlock__main__messages__h1--cn {
  /* font-family: "ヒラギノ角ゴ 簡体中文 W6", "Hiragino Sans GB W6"; */
}
.generalBlock__main__messages__h1--tw {
  /* font-family: "ヒラギノ角ゴ 繁体中文 W6", "Hiragino Sans TC W6"; */
}
.generalBlock__main__messages__p {
  text-align: center;
  margin: 0;
  font-size: 1.2rem;
}
.generalBlock__main__messages--white {
  color: #FFFFFF;
}
.generalBlock__main__miyabi7 {
  background-image: url("../images/banner-main-miyabi7.png");
  background-size: cover;
  width: 1080px;
  height: 429px;
  position: relative;
}
.generalBlock__main__miyabi7__in {
  width: 40%;
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.generalBlock__main__miyabi7__in__img--logo {
  margin: 0 auto;
  margin-bottom: 20px;
}
.generalBlock__main__miyabi7__p {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
}
.generalBlock__main--link {
  background-color: #1065b0;
  border-radius: 20px;
  text-align: center;
  display: block;
  font-size: 1.2rem;
  width: 180px;
  margin: 20px auto 0;
}
.generalBlock__main--link a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.generalBlock__main--link a:hover {
  opacity: 0.5;
  transition: 0.2s;
}
.generalBlock__main--link a::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-left: 4px;
  background-image: url("../images/arrow-blue.svg");
  background-size: contain;
  vertical-align: middle;
}
.generalBlock__main__ledia6h {
  background-image: url("../images/banner-main-ledia.png");
  background-size: cover;
  width: 1080px;
  height: 429px;
  position: relative;
}
.generalBlock__main__ledia6h__in {
  width: 40%;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.generalBlock__main__ledia6h__in__img--logo {
  margin: 0 auto;
  margin-bottom: 20px;
  width: 298px;
}
.generalBlock__main__ledia6h__p {
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
}
.generalBlock__main__products {
  padding: 48px 48px 0 48px;
  height: 330px;
}
.generalBlock__main__products ul, .generalBlock__main__products li {
  list-style: none;
}
.generalBlock__main__products ul {
  margin: 0;
  padding: 0;
}
.generalBlock__main__products__item {
  position: relative;
  float: left;
  width: 295px;
  background-color: #FFFFFF;
  margin-right: 48px;
}
.generalBlock__main__products__item--image {
  height: 213px;
}
.generalBlock__main__products__item--image img {
  margin-left: auto;
  margin-right: auto;
}
.generalBlock__main__products__item--link {
  background-color: #7a9298;
}
.generalBlock__main__products__item--link a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px;
  letter-spacing: 4px;
}
.generalBlock__main__products__item--link a:hover {
  opacity: 0.5;
  transition: 0.2s;
}
.generalBlock__main__products__item--link a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 5px;
  margin-top: -5px;
  background-image: url("../images/arrow-blue.svg");
  background-size: contain;
  vertical-align: middle;
}
.generalBlock__main__products__item--link p {
  color: #FFFFFF;
  margin: 0;
  padding-left: 1em;
}
.generalBlock__main__products__item--link--other {
  font-size: 1rem;
}
.generalBlock__main__products__item:last-of-type {
  margin-right: 0;
}
.generalBlock__main__links {
  padding: 48px 48px 0 48px;
}
.generalBlock__main__links ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.generalBlock__main__links li {
  list-style: none;
  background-color: #7a9298;
  width: 49%;
  text-align: center;
  margin-bottom: 50px;
}
.generalBlock__main__links li a {
  color: #fff;
  text-decoration: none;
  padding: 20px;
  display: block;
  letter-spacing: 4px;
}
.generalBlock__main__links li a:hover {
  opacity: 0.5;
  transition: 0.2s;
}
.generalBlock__main__links .generalBlock__main__link a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 5px;
  margin-top: -5px;
  background-image: url("../images/arrow-blue.svg");
  background-size: contain;
  vertical-align: middle;
}
.generalBlock__main__links--other ul {
  display: block;
  padding: 50px 0;
}
.generalBlock__main__links--other--cn ul, .generalBlock__main__links--other--tw ul {
  padding: 20px 0 50px;
}
.generalBlock__main__links--other li {
  width: 100%;
  margin: 0;
}

.modaal__inline--in {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.modaal__inline--in__txt {
  text-align: center;
  width: 50%;
  margin-bottom: 50px;
}
.modaal__inline--in__txt--ledia {
  width: 40%;
}
.modaal__inline--in__txt--intxt {
  margin: 30px 0;
}
.modaal__inline--in__txt--btn {
  background-color: #8e278a;
  color: #fff;
  border-radius: 50px;
  width: 60%;
  margin: auto;
}
.modaal__inline--in__txt--btn a {
  color: #fff;
  display: block;
  text-decoration: none;
}
.modaal__inline--in__txt--btn a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  margin-top: -4px;
  background-image: url("../images/modaal_inline-arrow.svg");
  background-size: contain;
  vertical-align: middle;
}
.modaal__inline--in__img {
  width: 50%;
}
.modaal__inline--in__img--rintxt {
  width: 70%;
}
.modaal__inline--in__img--rinimg {
  width: 30%;
  margin-left: 20px;
}

.modaal__inline--in {
  border-radius: 20px;
  border: 5px solid #8e278a;
  background: linear-gradient(#fff, #fff, #fff, #777);
  padding: 20px;
}
.modaal__inline--in--rin {
  border: none;
  border-radius: 0;
  border-top: 30px solid #1065b0;
  border-bottom: 30px solid #1065b0;
  background: transparent;
  background-color: #fff;
}
.modaal__inline--in__txt--intxt--cn {
  font-size: 1.28rem;
}

.boothimg__arrow--lang {
  display: flex;
}
.boothimg__arrow--lang li a {
  background-color: #fff;
  text-decoration: none;
  color: #1065b0;
  padding: 2px 10px;
  display: block;
  width: 140px;
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
}
.boothimg__arrow--lang li a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 5px;
  margin-top: -5px;
  background-image: url("../images/arrow-white.svg");
  background-size: contain;
  vertical-align: middle;
}
.boothimg__arrow--lang li a:hover {
  opacity: 0.9;
  transition: 0.2s;
}

.boothBlock__main__map__items--img {
  position: relative;
}
.boothBlock__main__map__items--img li {
  width: 1080px;
}

.boothBlock__main__map__items--arrow__in {
  position: absolute;
}

.boothBlock__main__map__items--arrow {
  width: 45px;
  list-style: none;
  position: absolute;
}

.boothimg__arrow--sukuririn {
  top: 420px;
  left: 500px;
}
.boothimg__arrow--miyabi7 {
  top: 330px;
  left: 20px;
}
.boothimg__arrow--ledia6h {
  top: 330px;
  left: 130px;
}
.boothimg__arrow--fp9200 {
  top: 330px;
  left: 245px;
}
.boothimg__arrow--support {
  top: 330px;
  left: 695px;
}
.boothimg__arrow--iot {
  top: 330px;
  left: 795px;
}
.boothimg__arrow--iot--other {
  top: 320px;
  left: 730px;
}
.boothimg__arrow--trust {
  top: 300px;
  left: 900px;
}
.boothimg__arrow--trust--other {
  left: 845px;
}
.boothimg__arrow--miyabi {
  top: 580px;
  left: 45px;
}
.boothimg__arrow--ledia {
  top: 530px;
  left: 610px;
}
.boothimg__arrow--youtube {
  top: 345px;
  left: 380px;
}
.boothimg__arrow--lang {
  top: 0;
  left: 520px;
}

.boothimg__off {
  display: none;
  animation: fadeIn 0.3s ease-out;
}
.boothimg__on {
  display: block;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.headerBlock {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  z-index: 99;
}
.headerBlock.transform {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.75);
}
.headerBlock__outer {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.headerBlock__main {
  height: 85px;
  position: relative;
  /* margin: 20px 30px 3px 30px; */
  margin: 20px 0 0;
}
.headerBlock__menu {
  width: 200px;
  position: absolute;
  left: 0;
}
.headerBlock__logo {
  width: 400px;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
}
.headerBlock__link {
  width: 140px;
  position: absolute;
  right: 0;
  text-align: right;
}
.headerBlock__link--lang {
  width: 300px;
  right: 145px;
}
.headerBlock__link a {
  color: #1065b0;
  text-decoration: none;
}
.headerBlock__link a:hover {
  text-decoration: underline;
}
.headerBlock__link a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  background-image: url(../images/arrow-white.svg);
  background-size: contain;
  vertical-align: middle;
}

.generalBlock {
  overflow: hidden;
}
.generalBlock:first-of-type {
  margin-top: 105px;
}
.generalBlock--blue {
  background-color: #1065b0;
}
.generalBlock--white {
  background-color: #FFFFFF;
}
.generalBlock--water {
  background-color: #C8E7F8;
}
.generalBlock__outer {
  width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.generalBlock__main__h1 {
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  /* font-family: Hiragino Mincho W7 JIS2004; */
  font-size: 2.88rem;
}
.generalBlock__main__h1--blue {
  color: #1065b0;
}
.generalBlock__main__h1--cn {
  /* font-family: "ヒラギノ角ゴ 簡体中文 W6", "Hiragino Sans GB W6"; */
}
.generalBlock__main__h1--tw {
  /* font-family: "ヒラギノ角ゴ 繁体中文 W6", "Hiragino Sans TC W6"; */
}
.generalBlock__main__h2 {
  margin: 0;
  padding: 1rem 55px;
  font-size: 1.96rem;
}
.generalBlock__main__h2--blue {
  color: #1065b0;
}

.ledia6h__note__list--youtube, .fp9200__note__list--youtube, .miyabi7__note__list--youtube {
  top: 30px;
  left: 800px;
  width: 230px;
}

.miyabi7 {
  background-image: url("../images/lp-main.png");
  height: 501px;
  background-repeat: no-repeat;
  position: relative;
}
.miyabi7 ul {
  margin: 0;
  padding: 0;
}
.miyabi7 li {
  list-style: none;
}
.miyabi7__img {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.miyabi7__img--name {
  padding-top: 20px;
}
.miyabi7__img--logo {
  padding-top: 10px;
  width: 298px;
}
.miyabi7__img--image {
  margin-top: 46px;
  padding-top: 0px;
  width: 465px;
}
.miyabi7__img--catalogue {
  position: absolute;
  top: 154px;
  left: 0;
  width: 100%;
}
.miyabi7__img--catalogue a {
  color: #1065b0;
  text-decoration: none;
}
.miyabi7__img--catalogue a:hover {
  text-decoration: underline;
}
.miyabi7__img--catalogue a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  background-image: url(../images/arrow-white.svg);
  background-size: contain;
  vertical-align: middle;
}
.miyabi7__note {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.miyabi7__note__list {
  display: block;
  position: absolute;
  font-size: 75%;
}
.miyabi7__note__list--catalogue {
  top: 180px;
  left: 780px;
  width: 260px;
}
.miyabi7__note__list--catalogue a {
  color: #1065b0;
  text-decoration: none;
}
.miyabi7__note__list--catalogue::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  background-image: url(../images/arrow-white.svg);
  background-size: contain;
  vertical-align: middle;
}
.miyabi7__note__list--hole, .miyabi7__note__list--analytics {
  background-color: #1065b0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  width: 168px;
  padding: 4px 8px;
  left: 747px;
}
.miyabi7__note__list--hole a, .miyabi7__note__list--analytics a {
  color: #FFFFFF;
  text-decoration: none;
}
.miyabi7__note__list--hole a:hover, .miyabi7__note__list--analytics a:hover {
  text-decoration: underline;
}
.miyabi7__note__list--hole a::after, .miyabi7__note__list--analytics a::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-left: 4px;
  background-image: url(../images/arrow-blue.svg);
  background-size: contain;
  vertical-align: middle;
}
.miyabi7__note__list--hole {
  top: 288px;
}
.miyabi7__note__list--analytics {
  top: 410px;
}

.generalBlock__main.inspection ul {
  margin: 0;
  padding: 0 0 0 55px;
}
.generalBlock__main .inspection__list {
  color: #1065b0;
  list-style: none;
}
.generalBlock__main .inspection__list:before {
  content: "●";
  float: left;
  margin-right: 0.2rem;
}
.generalBlock__main .inspection__list__p {
  color: #111;
  margin: 0;
}
.generalBlock__main .inspection__img {
  padding-top: 0rem;
  padding-bottom: 1.5rem;
}
.generalBlock__main .inspection__img img {
  margin-left: auto;
  margin-right: auto;
}
.generalBlock__main .analyzer__p {
  font-size: 100%;
  padding: 0 0 0 55px;
  margin: 0rem;
}
.generalBlock__main .analyzer__img {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.generalBlock__main .analyzer__img img {
  margin-left: auto;
  margin-right: auto;
}

.ledia6h {
  background-image: url("../images/lp-main.png");
  height: 501px;
  background-repeat: no-repeat;
  position: relative;
}
.ledia6h ul {
  margin: 0;
  padding: 0;
}
.ledia6h li {
  list-style: none;
}
.ledia6h__img {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.ledia6h__img--name {
  padding-top: 20px;
}
.ledia6h__img--logo {
  position: absolute;
  width: 100%;
  top: 30px;
}
.ledia6h__img--logo img {
  width: 298px;
  margin-left: auto;
  margin-right: auto;
}
.ledia6h__img--image {
  position: absolute;
}
.ledia6h__img--image--1 {
  top: 163px;
  width: 100%;
}
.ledia6h__img--image--1 img {
  margin-left: auto;
  margin-right: auto;
}
.ledia6h__img--image--2 {
  top: 21px;
  left: 33px;
}
.ledia6h__img--catalogue {
  position: absolute;
  top: 169px;
  left: 0;
  width: 100%;
}
.ledia6h__img--catalogue a {
  color: #1065b0;
  text-decoration: none;
}
.ledia6h__img--catalogue a:hover {
  text-decoration: underline;
}
.ledia6h__img--catalogue a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  background-image: url(../images/arrow-white.svg);
  background-size: contain;
  vertical-align: middle;
}
.ledia6h__note {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.ledia6h__note__list {
  display: block;
  position: absolute;
  font-size: 75%;
}
.ledia6h__note__list--en {
  font-size: 70%;
}
.ledia6h__note__list--arrival, .ledia6h__note__list--optimal, .ledia6h__note__list--standard {
  background-color: #1065b0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  width: 200px;
  padding: 4px 8px;
  left: 747px;
}
.ledia6h__note__list--arrival a, .ledia6h__note__list--optimal a, .ledia6h__note__list--standard a {
  color: #FFFFFF;
  text-decoration: none;
}
.ledia6h__note__list--arrival a:hover, .ledia6h__note__list--optimal a:hover, .ledia6h__note__list--standard a:hover {
  text-decoration: underline;
}
.ledia6h__note__list--arrival a::after, .ledia6h__note__list--optimal a::after, .ledia6h__note__list--standard a::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-left: 4px;
  background-image: url(../images/arrow-blue.svg);
  background-size: contain;
  vertical-align: middle;
}
.ledia6h__note__list--arrival--cn, .ledia6h__note__list--arrival--tw, .ledia6h__note__list--optimal--cn, .ledia6h__note__list--optimal--tw, .ledia6h__note__list--standard--cn, .ledia6h__note__list--standard--tw {
  width: 160px;
  left: 777px;
}
.ledia6h__note__list--arrival--cn a::after, .ledia6h__note__list--arrival--tw a::after, .ledia6h__note__list--optimal--cn a::after, .ledia6h__note__list--optimal--tw a::after, .ledia6h__note__list--standard--cn a::after, .ledia6h__note__list--standard--tw a::after {
  margin-left: 10px;
}
.ledia6h__note__list--arrival {
  top: 240px;
}
.ledia6h__note__list--optimal {
  top: 314px;
}
.ledia6h__note__list--standard {
  top: 388px;
}

.generalBlock .high-power__p {
  margin-left: 3.3rem;
}
.generalBlock .high-power__img {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
}
.generalBlock .optimal__p {
  margin-left: 3.3rem;
}
.generalBlock .optimal__img {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
}
.generalBlock .standard__p {
  margin-left: 3.3rem;
}
.generalBlock .standard__img {
  width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
}

.fp9200 {
  background-image: url("../images/lp-main.png");
  height: 501px;
  background-repeat: no-repeat;
  position: relative;
}
.fp9200 ul {
  margin: 0;
  padding: 0;
}
.fp9200 li {
  list-style: none;
}
.fp9200__img {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.fp9200__img--name {
  padding-top: 20px;
}
.fp9200__img--logo {
  width: 313px;
}
.fp9200__img--image {
  position: absolute;
  top: 85px;
  left: 174px;
  width: 627px;
}
.fp9200__img--catalogue {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
}
.fp9200__img--catalogue a {
  color: #1065b0;
  text-decoration: none;
}
.fp9200__img--catalogue a:hover {
  text-decoration: underline;
}
.fp9200__img--catalogue a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  background-image: url(../images/arrow-white.svg);
  background-size: contain;
  vertical-align: middle;
}
.fp9200__note {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.fp9200__note__list {
  display: block;
  position: absolute;
  font-size: 75%;
}
.fp9200__note__list--prepare, .fp9200__note__list--optimal, .fp9200__note__list--standard {
  background-color: #1065b0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  width: 168px;
  padding: 4px 8px;
  left: 747px;
}
.fp9200__note__list--prepare a, .fp9200__note__list--optimal a, .fp9200__note__list--standard a {
  color: #FFFFFF;
  text-decoration: none;
}
.fp9200__note__list--prepare a:hover, .fp9200__note__list--optimal a:hover, .fp9200__note__list--standard a:hover {
  text-decoration: underline;
}
.fp9200__note__list--prepare a::after, .fp9200__note__list--optimal a::after, .fp9200__note__list--standard a::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-left: 4px;
  background-image: url(../images/arrow-blue.svg);
  background-size: contain;
  vertical-align: middle;
}
.fp9200__note__list--prepare {
  top: 260px;
}
.fp9200__note__list--standard {
  top: 340px;
}

.generalBlock .prepare__img {
  padding-bottom: 2rem;
}
.generalBlock .optimal__list {
  color: #1065b0;
  list-style: none;
}
.generalBlock .optimal__list:before {
  content: "●";
  float: left;
  margin-right: 0.2rem;
}
.generalBlock .optimal__list__p {
  color: #111;
  margin: 0;
}
.generalBlock .optimal__list--bare:before {
  content: "　";
  float: left;
  margin-right: 0.2rem;
}
.generalBlock .optimal__img {
  padding-bottom: 2rem;
}
.generalBlock .standard__img {
  padding-top: 0.5rem;
  padding-bottom: 2rem;
}

.support__bg--white {
  background-color: #fff;
}

.support__ttl {
  position: relative;
  height: 540px;
}
.support__ttl--img {
  margin: 0;
  margin-bottom: 20px;
  width: 60%;
  margin: 0 auto;
  padding: 50px 20px 20px;
}
.support__ttl--bg__img {
  position: absolute;
  top: 0;
  width: 100%;
  margin: 0 auto;
}
.support__ttl--sub__lead--txt {
  text-align: center;
  color: #1065b0;
  font-size: 1.96rem;
  font-weight: 600;
  margin: 0;
}
.support__ttl__in {
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.generalBlock--white.generalBlock--white__transparent {
  background-color: transparent;
}

.generalBlock__main__h1--en {
  font-size: 2.6rem;
}

#support__sec01 {
  margin-top: -100px;
}

.support__sec01 {
  position: relative;
  height: 900px;
  padding-top: 50px;
}
.support__sec01--img {
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.support__sec01--01 {
  position: absolute;
  top: 50px;
  left: 50px;
}
.support__sec01--01--en {
  font-size: 1.2rem;
}
.support__sec01--02 {
  position: absolute;
  top: 50px;
  right: 50px;
}
.support__sec01--02 img {
  width: 80%;
  margin: auto;
}
.support__sec01--02--en {
  font-size: 1.2rem;
  right: 0;
}
.support__sec01--03 {
  position: absolute;
  top: 700px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.support__sec01--03 img {
  width: 60%;
  margin: 0 auto;
}
.support__sec01--03--en {
  font-size: 1.2rem;
  top: 720px;
}

.support__sec03--bg {
  padding: 30px 0;
  background-image: url("../images/support_sec02-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  bottom: -1px;
}

.support__sec02 {
  padding-top: 20px;
}
.support__sec02--h1 {
  position: relative;
  background-color: #133886;
  color: #fff;
  padding: 5px 0 5px 10px;
  z-index: 1;
  width: 70%;
  margin: 15px auto;
  font-weight: 500;
  font-size: 2.3rem;
}
.support__sec02--h1::after {
  position: absolute;
  content: "";
  right: 0;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 35px #133886;
  border-bottom: solid 64px #fff;
  z-index: 2;
  top: 0;
}
.support__sec02--h1--en {
  font-size: 1.8rem;
}
.support__sec02--h1--en::after {
  border-bottom: solid 94px #fff;
}
.support__sec02--txt {
  width: 70%;
  margin: 0 auto;
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6;
}

.support__sec03--in {
  background-color: #C8E7F89a;
  padding: 20px;
}
.support__sec03--in h2 {
  font-size: 2.88rem;
  color: #133886;
  text-align: center;
  margin-top: 0;
}
.support__sec03--in--en h2 {
  font-size: 1.8rem;
}
.support__sec03--in__download {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.support__sec03--in__download--txt {
  font-size: 2.5rem;
  color: #133886;
  margin-right: 50px;
}
.support__sec03--in__download--btn {
  border: 3px solid #133886;
  box-shadow: 6px 6px 0px 0 #133886;
  width: 330px;
  background-color: #fff;
}
.support__sec03--in__download--btn:hover {
  opacity: 0.7;
  transition: 0.2s;
}
.support__sec03--in__download--btn a {
  color: #133886;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 8px;
  font-size: 1.8rem;
  font-weight: 500;
}
.support__sec03--in__download--en, .support__sec03--in__download--cn, .support__sec03--in__download--tw {
  display: block;
}
.support__sec03--in__download--en--txt, .support__sec03--in__download--cn--txt, .support__sec03--in__download--tw--txt {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
}
.support__sec03--in__download--en--btn, .support__sec03--in__download--cn--btn, .support__sec03--in__download--tw--btn {
  margin: auto;
}
.support__sec03--in__img {
  background-color: #aaa;
  width: 800px;
  height: 500px;
  margin: auto;
  margin-bottom: 50px;
}
.support__sec03--in--link {
  display: flex;
  width: 85%;
  justify-content: space-around;
  margin: 50px auto 100px;
}
.support__sec03--in--link01 {
  width: 100%;
}
.support__sec03--in--link__btn {
  background-color: #005ba3;
  border-radius: 10px;
}
.support__sec03--in--link__btn a {
  color: #fff;
  text-decoration: none;
  padding: 5px 20px;
  font-size: 2rem;
  display: block;
}
.support__sec03--in--link__btn a::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 5px;
  background-image: url("../images/arrow-blue.svg");
  background-size: contain;
}
.support__sec03--in--link__btn a:hover {
  opacity: 0.7;
}
.support__sec03--in--link__btn--en a {
  font-size: 1.6rem;
}

.generalBlock__main--youtube {
  padding-bottom: 50px;
}
.generalBlock__main--youtube iframe {
  margin: auto;
}

.support--video, .lediatwin--video {
  margin: auto;
  padding-bottom: 30px;
}

.contact__form {
  padding-bottom: 50px;
}
.contact__form--ttl {
  color: #1065b0;
  text-align: center;
  margin: 0;
  padding: 50px 0 20px 0;
  font-size: 2.5rem;
  font-weight: 600;
}
.contact__form--in {
  background-color: #fff;
  padding: 50px;
}
.contact__form--in table {
  margin: 0 auto;
  padding-bottom: 30px;
  width: 80%;
  border-collapse: separate;
  border-spacing: 20px;
}
.contact__form--in table tr.message {
  vertical-align: top;
}
.contact__form--in table tr.message td {
  height: 200px;
}
.contact__form--in table th {
  text-align: left;
  font-weight: 500;
  width: 30%;
}
.contact__form--in table td {
  border: solid 1px #333;
  color: #3333335a;
  width: 70%;
  padding: 10px;
}
.contact__form--in__send--btn {
  background-color: #1065b0;
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 25%;
}
.contact__form--in__send--btn a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px;
}
.contact__form--in__send--btn a:hover {
  opacity: 0.5;
  transition: 0.2s;
}

.lediatwin {
  background-image: url("../images/lediatwin_ttl-bg.svg");
  height: 501px;
  background-repeat: no-repeat;
  position: relative;
}
.lediatwin ul {
  margin: 0;
  padding: 0;
}
.lediatwin li {
  list-style: none;
}
.lediatwin__img {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.lediatwin__img--name {
  padding-top: 20px;
  color: #fff;
  padding-bottom: 10px;
  line-height: 1.2;
}
.lediatwin__img--logo {
  width: 30%;
}
.lediatwin__img--image {
  width: 45%;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.lediatwin__img--catalogue {
  position: absolute;
  top: 160px;
  left: 0;
  width: 100%;
}
.lediatwin__img--catalogue a {
  color: #fff;
  text-decoration: none;
}
.lediatwin__img--catalogue a:hover {
  text-decoration: underline;
}
.lediatwin__img--catalogue a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  background-image: url("../images/arrow-blue.svg");
  background-size: contain;
  vertical-align: middle;
}
.lediatwin__note--right {
  position: absolute;
  right: 80px;
  width: 17%;
  bottom: 50px;
}
.lediatwin__note--left {
  position: absolute;
  left: 80px;
  width: 17%;
  bottom: 50px;
}
.lediatwin__note__list {
  display: block;
  font-size: 75%;
}
.lediatwin__note__list--prepare, .lediatwin__note__list--optimal, .lediatwin__note__list--standard {
  background-color: #1065b0;
  border-radius: 8px;
  margin: 15px 0;
}
.lediatwin__note__list--prepare a, .lediatwin__note__list--optimal a, .lediatwin__note__list--standard a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 5px 8px;
}
.lediatwin__note__list--prepare a:hover, .lediatwin__note__list--optimal a:hover, .lediatwin__note__list--standard a:hover {
  text-decoration: underline;
}
.lediatwin__note__list--prepare a::after, .lediatwin__note__list--optimal a::after, .lediatwin__note__list--standard a::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-left: 15px;
  background-image: url("../images/arrow-blue.svg");
  background-size: contain;
  vertical-align: middle;
}
.lediatwin__note__list--youtube {
  margin-bottom: 100px;
}
.lediatwin__note__list--youtube--en {
  margin-bottom: 30px;
}

.generalBlock__main__h1--small {
  font-size: 30px;
}
.generalBlock__main__h1--small--en {
  font-size: 22px;
}

.generalBlock__outer--lediatwin {
  padding: 50px 0;
}
.generalBlock__outer--lediatwin .generalBlock__main__h2--lediatwin {
  padding: 1rem 0;
  font-weight: 600;
}
.generalBlock__outer--lediatwin__graph--img {
  margin-bottom: 20px;
}
.generalBlock__outer--lediatwin__graph--img img {
  width: 100%;
}
.generalBlock__outer--lediatwin__sec02--img {
  margin-bottom: 30px;
}
.generalBlock__outer--lediatwin__sec02--img img {
  width: 100%;
}
.generalBlock__outer--lediatwin__sec02 ul {
  padding: 0;
  margin: 20px 0 50px;
}

.lediatwin__main__sec01 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.lediatwin__main__sec01--img {
  width: 80%;
}
.lediatwin__main__sec01--txt {
  margin-left: 30px;
  width: 50%;
}

.dammy__img {
  /*   background-color: #fff;
    width: 1080px;
    height: 300px;
   */
  margin-bottom: 30px;
}

.miyabi {
  background-image: url("../images/miyabi_ttl-bg.svg");
  height: 501px;
  background-repeat: no-repeat;
  position: relative;
}
.miyabi ul {
  margin: 0;
  padding: 0;
}
.miyabi li {
  list-style: none;
}
.miyabi__img {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.miyabi__img--name {
  padding-top: 20px;
  color: #fff;
}
.miyabi__img--logo {
  width: 30%;
  padding-top: 5px;
}
.miyabi__img--image {
  width: 35%;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.miyabi__img--catalogue {
  position: absolute;
  top: 140px;
  left: 0;
  width: 100%;
}
.miyabi__img--catalogue a {
  color: #fff;
  text-decoration: none;
}
.miyabi__img--catalogue a:hover {
  text-decoration: underline;
}
.miyabi__img--catalogue a::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 4px;
  background-image: url("../images/arrow-blue.svg");
  background-size: contain;
  vertical-align: middle;
}
.miyabi__note--right {
  position: absolute;
  right: 80px;
  bottom: 50px;
  width: 17%;
}
.miyabi__note--left {
  position: absolute;
  left: 80px;
  bottom: 50px;
  width: 17%;
}
.miyabi__note__list {
  display: block;
  font-size: 75%;
}
.miyabi__note__list--en {
  font-size: 70%;
}
.miyabi__note__list--prepare, .miyabi__note__list--optimal, .miyabi__note__list--standard {
  background-color: #1065b0;
  border-radius: 8px;
  margin: 15px 0;
}
.miyabi__note__list--prepare a, .miyabi__note__list--optimal a, .miyabi__note__list--standard a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 5px 8px;
}
.miyabi__note__list--prepare a:hover, .miyabi__note__list--optimal a:hover, .miyabi__note__list--standard a:hover {
  text-decoration: underline;
}
.miyabi__note__list--prepare a::after, .miyabi__note__list--optimal a::after, .miyabi__note__list--standard a::after {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-left: 15px;
  background-image: url("../images/arrow-blue.svg");
  background-size: contain;
  vertical-align: middle;
}
.miyabi__main__sec01--img {
  width: 100%;
}
.miyabi__main__sec01__en {
  width: 1080px;
  height: 412px;
  overflow: hidden;
  position: relative;
}
.miyabi__main__sec01__en__bg--main, .miyabi__main__sec01__en__bg--dark {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.miyabi__main__sec01__en__bg--main {
  background-image: url("../images/miyabi-banner-background.jpg");
  width: 1200px;
  height: 1000px;
  background-size: cover;
  left: -50px;
  top: -280px;
}
.miyabi__main__sec01__en__bg--dark {
  background-color: #000000;
  opacity: 0.35;
}
.miyabi__main__sec01__en__bg--text p {
  position: absolute;
  margin: 0;
  padding-right: 2.5rem;
  width: 100%;
  font-style: italic;
  font-size: 355%;
  font-weight: bold;
  color: #FFFFFF;
  text-align: right;
  text-shadow: -4px 4px 15px rgba(0, 0, 0, 0.91);
}
.miyabi__main__sec01__en__bg--text p:nth-of-type(1) {
  top: 44px;
  font-size: 225%;
}
.miyabi__main__sec01__en__bg--text p:nth-of-type(2) {
  top: 91px;
}
.miyabi__main__sec01__en__bg--text p:nth-of-type(3) {
  top: 186px;
}
.miyabi__main__sec02__lights {
  position: relative;
  display: block;
  width: 100%;
  height: 576px;
  overflow: hidden;
}
.miyabi__main__sec02__lights ul {
  list-style: none;
  margin: 0;
  border: 0;
  padding: 0;
}
.miyabi__main__sec02__light {
  display: block;
  width: 281px;
}
.miyabi__main__sec02__light--red {
  float: left;
}
.miyabi__main__sec02__light--blue {
  position: absolute;
  margin-left: 399.5px;
  margin-right: 399.5px;
}
.miyabi__main__sec02__light--ir {
  float: right;
}
.miyabi__main__sec02__light--title {
  color: #1065b0;
}
.miyabi__main__sec02__light--title p {
  margin: 0;
}
.miyabi__main__sec02__light__image--mech img {
  margin: 0;
  margin-bottom: 0;
}
.miyabi__main__sec02__light__image--arrow {
  text-align: center;
  padding: 0;
  padding-top: 19px;
  padding-bottom: 19px;
}
.miyabi__main__sec02__light__image--arrow img {
  width: 39px;
  display: inline-block;
}
.miyabi__main__sec02__light__image--photo {
  margin: 0;
  margin-bottom: 0.5rem;
}
.miyabi__main__sec02__light__comment p {
  margin: 0;
  padding: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.miyabi__main__sec02__light__comment--blue {
  color: #FFFFFF;
  font-size: 81%;
  text-align: center;
  background-color: #1065b0;
}
.miyabi__main__sec06__image {
  float: left;
  margin: 0;
  margin-left: 20px;
}
.miyabi__main__sec06__image--1 {
  width: 424px;
  margin-left: 0;
}
.miyabi__main__sec06__image--2 {
  width: 301px;
}
.miyabi__main__sec06__image--3 {
  width: 315px;
}
.miyabi__main__sec06__images {
  width: 100%;
  height: 342px;
  overflow: hidden;
  font-weight: bold;
  text-align: center;
}
.miyabi__main__sec06__images > ul, .miyabi__main__sec06__images > ul > li {
  margin: 0;
  border: 0;
  padding: 0;
  list-style: none;
}
.miyabi__main__sec07__image {
  width: 521px;
  float: left;
}
.miyabi__main__sec07__image img {
  min-height: 420px;
}
.miyabi__main__sec07__image--last {
  float: right;
}
.miyabi__main__sec07__images {
  width: 100%;
  height: 479px;
  overflow: hidden;
  font-weight: bold;
  text-align: center;
}
.miyabi__main__sec07__images > ul, .miyabi__main__sec07__images > ul > li {
  margin: 0;
  border: 0;
  padding: 0;
  list-style: none;
}

.generalBlock__outer--miyabi {
  padding: 50px 0;
}
.generalBlock__outer--miyabi .generalBlock__main__h2--miyabi {
  padding: 1rem 0;
  font-weight: 600;
}
.generalBlock__outer--miyabi .generalBlock__main__h2--miyabi--cap {
  line-height: 1.8;
  font-size: 1.2rem;
}
.generalBlock__outer--miyabi__sec01 ul {
  padding: 0;
  margin: 20px 0 50px;
}
.generalBlock__outer--miyabi__sec02--img > img {
  width: 100%;
  margin-bottom: 50px;
}
.generalBlock__outer--miyabi__sec02 > ul {
  padding: 0;
  margin: 20px 0 50px;
}
.generalBlock__outer--miyabi__sec02 > ul > li > p {
  padding-left: 1em;
}
.generalBlock__outer--miyabi__sec03--in {
  display: flex;
  justify-content: space-between;
}
.generalBlock__outer--miyabi__sec03--in__arrow {
  display: flex;
}
.generalBlock__outer--miyabi__sec03--in__arrow img {
  width: 100px;
  margin-right: 20px;
}
.generalBlock__outer--miyabi__sec03--in__img {
  width: 50%;
}
.generalBlock__outer--miyabi__sec03--in__txt ul li {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 1em;
  text-indent: -1em;
}
.generalBlock__outer--miyabi__sec08--in {
  display: flex;
  align-items: center;
  margin: 20px 0 30px;
}
.generalBlock__outer--miyabi__sec08--in img {
  width: 350px;
  margin-right: 30px;
}

.miyabi__main__sec01__en ul {
  margin: 0;
  padding: 0;
  border: 100;
}

.gpj__bg--white {
  background-color: #fff;
}

.gpj__ttl {
  position: relative;
  height: 540px;
}
.gpj__ttl--bg__img {
  position: absolute;
  top: 0;
  width: 100%;
  margin: 0 auto;
}
.gpj__ttl__in {
  position: absolute;
  width: 100%;
  top: 140px;
  text-align: center;
}
.gpj__ttl__in__h1 {
  font-size: 3.48rem;
  /* font-family: Hiragino Mincho W7 JIS2004; */
  margin-top: 0rem;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  text-shadow: -4px 4px 15px rgba(0, 0, 0, 0.31);
}
.gpj__ttl__in__p {
  font-size: 1.02rem;
  /* font-family: Hiragino Mincho W7 JIS2004; */
  margin-top: 0.5rem;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}
.gpj__ttl__in--blue {
  color: #1065b0;
}

.generalBlock--white.generalBlock--white__transparent {
  background-color: transparent;
}

#gpj__sec01 {
  margin-top: -250px;
}

.gpj__sec01 {
  position: relative;
  padding-top: 50px;
}
.gpj__sec01--img {
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.gpj__in {
  border-bottom: 5px solid #133886;
  width: 80%;
  margin: auto;
  margin-top: 50px;
}
.gpj__in:nth-child(2) .gpj__in--name__logo img {
  height: 55px;
}
.gpj__in:nth-child(3) .gpj__in--name {
  width: 100%;
}
.gpj__in:nth-child(3) .gpj__in--name__txt {
  font-size: 1.9rem;
}
.gpj__in:nth-child(3) .gpj__in--name__logo {
  margin-right: 10px;
}
.gpj__in:nth-child(3) .gpj__in--name__logo img {
  height: 30px;
}
.gpj__in:nth-child(4) .gpj__in--name {
  width: 100%;
}
.gpj__in:last-child {
  border: none;
}
.gpj__in:last-child .gpj__in--name {
  width: 100%;
  align-items: start;
}
.gpj__in--name {
  display: flex;
  align-items: center;
  width: 90%;
  margin: auto;
  margin-bottom: 20px;
  justify-content: center;
}
.gpj__in--name__logo {
  margin-right: 20px;
}
.gpj__in--name__logo img {
  height: 40px;
}
.gpj__in--name__txt {
  font-size: 2rem;
  color: #005ba3;
  font-weight: 600;
}
.gpj__in--download__txt {
  color: #133886;
  text-align: center;
  font-size: 2rem;
}
.gpj__in--download__btn {
  border: 3px solid #133886;
  box-shadow: 6px 6px 0px 0 #133886;
  width: 400px;
  margin: 10px auto 50px;
  background-color: #fff;
}
.gpj__in--download__btn:hover {
  opacity: 0.7;
  transition: 0.2s;
}
.gpj__in--download__btn a {
  color: #133886;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 8px;
  font-size: 1.8rem;
  font-weight: 500;
}

.gpj__sec01--bg {
  padding: 30px 0;
  background-image: url("../images/support_sec02-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  bottom: -1px;
}

html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  background: #ffffff;
  background: #f0f0f0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  color: #000000;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  /* font-family: "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic W3 JIS2004", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, メイリオ, Meiryo, Verdana, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;;
}

* a {
  color: #444444;
  text-decoration: none;
}

* ul {
  padding: 0;
}

* li {
  list-style: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.inner {
  margin: auto;
  max-width: 80vw;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bold {
  font-weight: bold;
}

/* Loading背景画面設定　*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999999;
  text-align: center;
  color: #3cc9e0;
}

#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #3cc9e0;
}

#splash-logo {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 5px;
}

#modal_nepcon a {
  border: 6px solid #000000;
  display: block;
}
#modal_nepcon a:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#modal_nepcon span {
  padding-top: 4px;
  display: block;
  background: #ff0;
  text-align: center;
  font-weight: bold;
  color: #000000;
  font-size: 26px;
  letter-spacing: 4px;
}
#modal_nepcon .js-modal-close {
  padding-top: 60px;
  display: block;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  border: none;
}

/*========= 画面遷移のためのCSS ===============*/
body {
  background: white;
  /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: #f0f0f0;
  /*画面を開いた後の背景色を指定*/
}

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*右に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 50%;
  transform: scaleX(1);
  background-color: white;
  /*伸びる背景色の設定*/
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*左に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 50%;
  transform: scaleX(1);
  background-color: white;
  /*伸びる背景色の設定*/
}

@keyframes PageAnime2 {
  0% {
    transform-origin: right;
    transform: scaleX(1);
  }
  50% {
    transform-origin: left;
  }
  100% {
    transform-origin: left;
    transform: scaleX(0);
  }
}
/*
#container {
  opacity: 0;
}
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
} */

#bnr_nepcon {
  position: relative;
  font-size: 13px;
  padding: 10px 2px;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: #003983;
}
#bnr_nepcon span {
  font-size: 10px;
}
#bnr_nepcon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-bottom: 14px solid #f00;
  border-right: 14px solid transparent;
}

/* #top_page header {
  padding: 6px 30px;
  width: 100%;
  background: none;
}
#top_page header .flex {
  justify-content: space-between;
}
#top_page header ul {
  margin: 0;
  padding: 0;
}
#top_page header #left_nav {
  position: fixed;
  z-index: 777;
}
#top_page header #left_nav li {
  width: 35px;
  height: 64px;
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
  border: 1px solid #c8eeff;
  border-width: 1px 0px 1px 0px;
  transition: all 0.4s ease-in-out;
}
#top_page header #left_nav li:not(:nth-of-type(1)) {
  margin-top: -33px;
}
#top_page header #left_nav li:nth-of-type(even) {
  margin-left: 52px;
}
#top_page header #left_nav li:hover, #top_page header #left_nav li:hover::after, #top_page header #left_nav li:hover::before {
  background: #c8eeff;
}
#top_page header #left_nav li:hover a {
  color: #060622;
}
#top_page header #left_nav li a {
  height: 100%;
  font-size: 14px;
  color: #00b0ff;
  line-height: 1.2;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #000;
  z-index: 1;
}
#top_page header #left_nav li a.is-current {
  color: #000000;
  font-weight: bold;
  border-bottom: 2px solid #000000;
}
#top_page header #left_nav li::before,
#top_page header #left_nav li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 0;
  border: 1px solid #42c2fd;
  transition: all 0.2s ease-in-out;
}
#top_page header #left_nav li::before {
  transform: rotate(60deg);
  border-width: 1px 0px 1px 0px;
}
#top_page header #left_nav li::after {
  transform: rotate(-60deg);
  border-width: 1px 0px 1px 0px;
}
#top_page header #left_nav p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 12px;
}
#top_page header #right_nav {
  position: fixed;
  right: 40px;
  z-index: 777;
}
#top_page header #right_nav div {
  position: relative;
  margin-left: 60px;
}
#top_page header #right_nav div ul {
  padding-top: 10px;
  position: absolute;
  top: 24px;
  left: 0;
  height: 0;
  width: 420px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
#top_page header #right_nav div ul:hover {
  height: auto;
  cursor: pointer;
}
#top_page header #right_nav div ul li {
  line-height: 1.5;
}
#top_page header #right_nav div ul li a {
  margin-left: 20px;
  display: inline-block;
}
#top_page header #right_nav div > a:hover + ul {
  height: auto;
  cursor: pointer;
}
#top_page header #right_nav div:nth-of-type(1) li a {
  font-size: 12px;
}
#top_page header #right_nav a {
  position: relative;
  display: block;
  line-height: 2;
  color: #000000;
  font-size: 16px;
  letter-spacing: 2px;
}
#top_page header #right_nav a::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 4px;
  left: 0;
  background-color: #7ed6ff;
  transform-origin: bottom right;
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
#top_page header #right_nav a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
} */

#left_bnr {
  position: fixed;
  top: 290px;
  left: 8px;
  width: calc(63vh *0.22);
  z-index: 777;
}
#left_bnr a {
  display: block;
  margin: 8px 12px;
  border: 1px solid #42c2fd;
  transition: all 0.2s ease-in-out;
}
#left_bnr a:hover {
  border: 1px solid #000000;
  box-shadow: 0px 0px 10px 0px #71d2ff;
}
#left_bnr a img {
  width: 100%;
  height: auto;
}

#star_lights {
  position: fixed;
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  z-index: -1;
}

/* #first-view {
  margin-bottom: 500px;
  position: relative;
  height: 100vh;
  width: 100%;
} */

#ring {
  position: absolute;
  top: 28vh;
  right: 0px;
  z-index: 775;
  width: 22vw;
  height: auto;
  transition: all 0.4s ease-in-out;
}

#ring.hover {
  transform: rotate(-3deg) scale(0.96) translateZ(150vw);
}

#fukidashi {
  position: absolute;
  bottom: 4vh;
  right: -14px;
  display: block;
  width: 28vw;
  min-width: 460px;
  height: calc(28vw * 0.34);
  min-height: 106px;
  padding: 30px 52px 0;
  color: #000;
  background-image: url(../images/top/fukidashi@2x.png);
  background-size: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  z-index: 776;
}
#fukidashi p {
  margin: 0;
  font-size: 17px;
  letter-spacing: 1px;
  line-height: 1.5;
  display: none;
  opacity: 0;
}
#fukidashi .typing span {
  opacity: 0;
}

/* .modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.modal__bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal__content iframe {
  width: 50vw;
  height: calc(50vw * 0.5625);
} */

/* 上部パーツ*/
.ray_tops {
  position: relative;
  width: 100%;
  display: block;
  text-align: center;
  overflow: hidden;
}
.ray_tops img {
  margin-top: 2vh;
  display: inline-block;
  width: 29vw;
  height: auto;
}

/* 製品カルーセル */
.rat_middle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 888;
}
.rat_middle h2 {
  position: absolute;
  top: -12vh;
  left: -19vw;
  /* width: 50vw; */
  text-align: left;
  font-size: 40px;
  font-weight: normal;
  letter-spacing: 5px;
}
.rat_middle li {
  margin: 0;
  padding: 0;
  display: block;
  position: absolute;
  top: 35vh;
  height: auto;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
  animation: wobbling_x 6s ease-in-out infinite alternate, wobbling_y 1s ease-in-out infinite alternate;
}
.rat_middle li a {
  position: relative;
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  line-height: 1.4;
}
.rat_middle li a span {
  position: absolute;
  bottom: 42px;
  left: 0px;
  padding: 2px 0 2px 10px;
  background: #000000;
  color: #ffffff;
}
.rat_middle li.new::after {
  content: "NEW!!";
  position: absolute;
  display: inline-block;
  top: -37px;
  left: 0;
  height: auto;
  padding: 4px 10px;
  border: 1px solid rgba(255, 0, 89, 0.67);
  color: #ff5490;
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
  line-height: 1;
  text-align: left;
}
.rat_middle li:nth-of-type(1) {
  top: 27vh;
  left: 34vw;
  width: 24vw;
  transform: perspective(98px) rotateY(-5deg) rotateZ(-1deg);
  animation: wobbling_x 8s ease-in-out infinite alternate, wobbling_y 1.1s ease-in-out infinite alternate;
}
.rat_middle li:nth-of-type(2) {
  top: 19vh;
  left: 14vw;
  width: 14vw;
  transform: perspective(98px) rotateY(3deg) rotateZ(2deg);
  animation: wobbling_x 6s ease-in-out infinite alternate, wobbling_y 3s ease-in-out infinite alternate;
}
.rat_middle li:nth-of-type(3) {
  top: 62vh;
  left: 33vw;
  width: 20vw;
  transform: perspective(160px) rotateY(3deg);
  animation: wobbling_x 8s ease-in-out infinite alternate, wobbling_y 4s ease-in-out infinite alternate;
}
.rat_middle li:nth-of-type(4) {
  top: 53vh;
  left: 12vw;
  width: 18vw;
  transform: perspective(176px) rotateY(11deg) rotateZ(-4deg);
  animation: wobbling_x 4s ease-in-out infinite alternate, wobbling_y 6s ease-in-out infinite alternate;
}
.rat_middle li:nth-of-type(5) {
  top: 22vh;
  left: 61vw;
  width: 18vw;
  transform: perspective(98px) rotateY(-3deg);
  animation: wobbling_x 6s ease-in-out infinite alternate, wobbling_y 3s ease-in-out infinite alternate;
}
.rat_middle li:nth-of-type(6) {
  top: 57vh;
  left: 58vw;
  width: 16vw;
  transform: perspective(98px) rotateY(-5deg) rotateZ(1deg);
  animation: wobbling_x 8s ease-in-out infinite alternate, wobbling_y 5s ease-in-out infinite alternate;
}
.rat_middle li:hover {
  width: 20vw;
}
.rat_middle li:nth-of-type(1):hover {
  width: 26vw;
}
.rat_middle li:nth-of-type(3):hover {
  width: 24vw;
}

@keyframes wobbling_x {
  0% {
    transform: perspective(98px) rotateY(3deg) rotateZ(-1deg) scale(1);
  }
  50% {
    transform: perspective(98px) rotateY(0deg) rotateZ(1deg) scale(0.95);
  }
  100% {
    transform: perspective(98px) rotateY(3deg) rotateZ(-1deg) scale(1);
  }
}
@keyframes wobbling_y {
  0% {
    margin-top: 0px;
  }
  50% {
    margin-top: 0px;
  }
  100% {
    margin-top: 0px;
  }
}
/* 床のぐるぐる*/
.circlewrapp {
  margin: auto;
  position: absolute;
  bottom: 40vh;
  width: 100vw;
  height: auto;
  transform: rotateX(73deg);
}

.circlewrapp02 {
  position: absolute;
  top: -7vh;
  left: 36%;
  transform: perspective(7vw) rotateX(8deg) rotateY(4deg);
}

.h_circle {
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
  height: 82vw;
  width: 82vw;
  border: 8px solid #1290ea;
  border-top: 20px dashed #1184dd;
  border-right: 18px solid #1a88dd;
  border-bottom: 8px dashed #2089db;
  border-left: 31px dashed #278ddd;
  border-radius: 50%;
  z-index: 111;
  /* transform: perspective(125px) rotateX( 30deg ); */
  animation: 24s linear infinite rotation1;
}

#h_circle01 {
  animation: 90s linear infinite rotation1;
  top: 210px;
  width: 44vw;
  height: 44vw;
}

#h_circle02 {
  animation: 64s linear infinite rotation2;
  top: 290px;
  width: 33vw;
  height: 33vw;
  border: 2px solid #1a88dd;
}

#h_circle03 {
  animation: 30s linear infinite rotation1;
  top: 422px;
  width: 22vw;
  height: 22vw;
  border-right: 18px solid #2abfff;
  border-bottom: 8px dashed #42c2fd;
}

#h_circle04 {
  animation: 24s linear infinite rotation2;
  top: 268px;
  width: 28vw;
  height: 28vw;
  border: 2px solid #c6edff;
  border-bottom: 8px dashed #1a88dd;
}

#h_circle05 {
  animation: 38s linear infinite rotation1;
  top: 310px;
  width: 37vw;
  height: 37vw;
}

#h_circle06 {
  animation: 10s linear infinite rotation2;
  top: 380px;
  width: 18vw;
  height: 18vw;
  border: 2px solid #c6edff;
  border-bottom: 8px dashed #42c2fd;
}

#h_circle07 {
  animation: 28s linear infinite rotation1;
  top: 472px;
  width: 12vw;
  height: 12vw;
}

#h_circle08 {
  animation: 6s linear infinite rotation2;
  top: 548px;
  width: 7vw;
  height: 7vw;
  border: 20px solid #42c2fd;
  border-bottom: 8px dashed #42c2fd;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotation2 {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
#stickarrow {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#stickarrow p {
  position: relative;
}
#stickarrow p::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 46px;
  display: block;
  width: 8px;
  height: 48px;
  border-right: 4px solid #000000;
}
#stickarrow p::after {
  content: "";
  position: absolute;
  top: 65px;
  left: 48px;
  display: block;
  width: 24px;
  height: 8px;
  border-bottom: 4px solid #000000;
  transform: rotate(128deg);
}

#main_copy {
  padding-top: 50vh;
  position: relative;
  height: 180vh;
  text-align: center;
}
#main_copy h2 {
  margin: auto;
  display: inline-block;
  position: relative;
  font-size: 42px;
  letter-spacing: 18px;
  font-weight: normal;
}
#main_copy span.square {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  width: 27vw;
  height: 40vh;
  background: rgba(216, 255, 42, 0.4);
  border: 1px solid rgba(216, 255, 42, 0.4);
  z-index: -1;
}
#main_copy span.square02 {
  position: absolute;
  left: 27%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  width: 28vw;
  height: 283px;
  background: rgba(0, 243, 255, 0.4);
  border: 1px solid rgba(0, 243, 255, 0.4);
  z-index: -1;
}

/* #top_page .btn {
  margin: 7vh auto 0;
  padding: 12px 10px;
  display: block;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 4px;
  text-align: center;
  background: #000000;
  border: 1px solid #000000;
  transition: all 0.4s ease-in-out;
  z-index: 999;
}
#top_page .btn:hover {
  background: none;
  color: #000000;
} */

.top_products {
  padding-top: 18vh;
  position: relative;
  height: 180vh;
  background-size: 100%;
  background-attachment: fixed;
  background-position: center;
  overflow: hidden;
}
.top_products h2 span {
  margin-bottom: 40px;
  display: block;
  text-align: center;
  letter-spacing: 6px;
  font-weight: normal;
}
.top_products p.info {
  margin-top: 7vh;
  font-size: 18px;
  letter-spacing: 3px;
}
.top_products .inner {
  min-width: 1080px;
}
.top_products .deco {
  position: absolute;
}

#levina {
  background-image: url(../images/top/bg_levina.jpg);
}
#levina .deco02 {
  top: 50vw;
  left: 0vw;
}
#levina .deco03 {
  top: 1vw;
  left: 2vw;
}
#levina .deco04 {
  top: 0;
  left: 86vw;
}
#levina .deco05 {
  top: 62vw;
  left: 84vw;
}
#levina .flex > .right {
  padding-left: 5vw;
  width: 50%;
}
#levina .flex > .left {
  width: 50%;
  text-align: center;
}
#levina .flex > .left img {
  margin: 13vh auto;
  padding-left: 5vw;
  display: inline-block;
  width: 100%;
  filter: drop-shadow(2px 1px 28px #fff);
}

#ledia_7 {
  background-image: url(../images/top/bg_ledia7.jpg);
}
#ledia_7 .deco02 {
  top: 50vw;
  left: 0vw;
}
#ledia_7 .deco03 {
  top: 1vw;
  left: 2vw;
}
#ledia_7 .deco04 {
  top: 0;
  left: 86vw;
}
#ledia_7 .deco05 {
  top: 62vw;
  left: 84vw;
}
#ledia_7 .flex > .left {
  width: 50%;
  text-align: center;
}
#ledia_7 .flex > .left img {
  margin: 13vh auto;
  padding-left: 5vw;
  display: inline-block;
  width: 100%;
  filter: drop-shadow(2px 1px 28px #fff);
}
#ledia_7 .flex > .right {
  padding-left: 5vw;
  width: 50%;
}

#ledia_twin {
  background-image: url(../images/top/bg_lediatwin.jpg);
}
#ledia_twin .deco02 {
  top: 50vw;
  left: 0vw;
}
#ledia_twin .deco03 {
  top: 1vw;
  left: 2vw;
}
#ledia_twin .deco04 {
  top: 0;
  left: 86vw;
}
#ledia_twin .deco05 {
  top: 62vw;
  left: 84vw;
}
#ledia_twin .flex > .left {
  width: 50%;
  text-align: center;
}
#ledia_twin .flex > .left img {
  margin: 0 auto;
  padding-left: 5vw;
  display: inline-block;
  width: 100%;
  filter: drop-shadow(2px 1px 28px #fff);
}
#ledia_twin .flex > .right {
  padding-left: 5vw;
  width: 50%;
}

#ledia {
  background-image: url(../images/top/bg_ledia.jpg);
}
#ledia .deco02 {
  top: 50vw;
  left: 0vw;
}
#ledia .deco03 {
  top: 1vw;
  left: 2vw;
}
#ledia .deco04 {
  top: 0;
  left: 86vw;
}
#ledia .deco05 {
  top: 62vw;
  left: 84vw;
}
#ledia .flex > .left {
  width: 50%;
  text-align: center;
}
#ledia .flex > .left img {
  margin: 15vh auto;
  padding-left: 5vw;
  display: inline-block;
  width: 100%;
  filter: drop-shadow(2px 1px 28px #fff);
}
#ledia .flex > .right {
  padding-left: 5vw;
  width: 50%;
}

#miyabi {
  background-image: url(../images/top/bg_miyabi.jpg);
}
#miyabi .deco02 {
  top: 50vw;
  right: 0vw;
}
#miyabi .deco03 {
  top: 1vw;
  right: 2vw;
}
#miyabi .deco04 {
  top: 0;
  right: 86vw;
}
#miyabi .deco05 {
  top: 62vw;
  right: 84vw;
}
#miyabi .flex > .left {
  position: relative;
  padding-left: 60px;
  width: 50%;
}
#miyabi .flex > .left .btn {
  right: 0;
}
#miyabi .flex > .right {
  width: 50%;
  text-align: center;
}
#miyabi .flex > .right img {
  margin: 13vh auto;
  padding-left: 5vw;
  display: inline-block;
  width: 100%;
  filter: drop-shadow(2px 1px 28px #fff);
}

#fp9200 {
  background-image: url(../images/top/bg_fp9200.jpg);
}
#fp9200 .deco02 {
  top: 50vw;
  right: 0vw;
}
#fp9200 .deco03 {
  top: 1vw;
  right: 2vw;
}
#fp9200 .deco04 {
  top: 0;
  right: 86vw;
}
#fp9200 .deco05 {
  top: 62vw;
  right: 84vw;
}
#fp9200 .flex > .left {
  position: relative;
  padding-left: 68px;
  width: 50%;
}
#fp9200 .flex > .left .btn {
  right: 0;
}
#fp9200 .flex > .right {
  width: 50%;
  text-align: center;
}
#fp9200 .flex > .right img {
  margin: 13vh auto;
  margin-right: -5vw;
  padding-left: 0vw;
  display: inline-block;
  width: 100%;
  filter: drop-shadow(2px 1px 28px #fff);
}

/* #totop {
  position: fixed;
  bottom: 7vh;
  right: 3vw;
}
#totop a {
  display: block;
  width: 46px;
  height: 46px;
  background-color: #000;
}
#totop a::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 13px;
  display: block;
  width: 20px;
  height: 20px;
  border: 6px solid;
  border-color: #ffffff #ffffff transparent transparent;
  transform: rotate(-45deg);
  background: #000;
} */

footer {
  padding-bottom: 12px;
  background-color: inherit;
}
footer div.left {
  width: 69%;
}
footer div.left div {
  justify-content: start;
}
footer div.left div P {
  font-size: 14px;
  color: #444444;
}
footer div.left div a {
  margin-right: 100px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.1s ease-in-out;
}
footer div.left div a:hover {
  opacity: 0.6;
}
footer div.right {
  width: 30%;
}
footer div.right div a {
  font-weight: normal;
  font-size: 14px;
  transition: all 0.1s ease-in-out;
}
footer div.right div a:hover {
  opacity: 0.6;
}
footer div.right div a#trust {
  font-weight: bold;
  font-size: 18px;
}
footer p,
footer a {
  margin: 0;
  color: #444444;
  letter-spacing: 2px;
  line-height: 2.8;
  text-decoration: none;
}

@media screen and (max-width: 1080px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .headerBlock {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FFFFFF;
    z-index: 99;
  }

  .headerBlock.transform {
    box-shadow: none;
  }

  .headerBlock__outer {
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }

  .headerBlock__main {
    height: 85px;
    position: relative;
    /* margin: 20px 30px 3px 30px; */
    margin: 20px 0 0;
  }

  .headerBlock__menu {
    width: 200px;
    position: absolute;
    left: 0;
  }

  .headerBlock__logo {
    width: 400px;
    position: absolute;
    left: 0;
    right: 0;
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
  }

  .headerBlock__link {
    width: 140px;
    position: absolute;
    right: 0;
    text-align: right;
  }

  .headerBlock__link--lang {
    width: 300px;
    right: 145px;
  }

  .headerBlock__link a {
    color: #1065b0;
    text-decoration: none;
  }

  .headerBlock__link a:hover {
    text-decoration: underline;
  }

  .headerBlock__link a::before {
    content: "";
    display: inline-block;
    width: 19px;
    height: 19px;
    margin-right: 4px;
    background-image: url(../images/arrow-white.svg);
    background-size: contain;
    vertical-align: middle;
  }

  .headerBlock--center {
    width: 400px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }

  .headerBlock__nav {
    /*new*/
    height: 45px;
    position: relative;
    margin: 5px 0;
    color: #555;
    font-size: 1.2rem;
  }

  .headerBlock__nav a {
    color: #555;
  }

  .headerBlock__nav a::before {
    display: none;
  }

  .headerBlock__outer {
    width: 100%;
  }

  .headerBlock__nav {
    /*new*/
    display: flex;
    height: 2rem;
    margin: 5px 1.2rem;
    font-size: 16px;
  }

  .headerBlock__link {
    display: none;
  }

  .navBlock__outer {
    width: 100%;
  }

  .navBlock__list__item {
    background: #000000;
    width: 100%;
  }

  .navBlock__list__item__content {
    height: 4rem;
  }

  .navBlock__list__item__content a {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
  }

  .navBlock__list__item.navBlock__sp {
    display: block;
  }

  #nav-close {
    z-index: 9999;
  }

  #modal_nepcon span {
    font-size: 16px;
    letter-spacing: initial;
  }

  /* #first-view {
    margin-bottom: 0;
    padding-bottom: 260px;
    height: auto;
    overflow-x: hidden;
  } */

  .modaal-video-wrap {
    margin: 0;
  }

  .rat_middle {
    margin: auto;
    position: initial;
    width: 100vw;
    max-width: 480px;
  }
  .rat_middle li {
    position: initial;
    display: inline-block;
  }
  .rat_middle li.new::after {
    font-size: 16px;
    top: -23px;
    padding: 4px;
  }

  .rat_middle li:nth-of-type(1),
.rat_middle li:nth-of-type(2),
.rat_middle li:nth-of-type(3),
.rat_middle li:nth-of-type(4),
.rat_middle li:nth-of-type(5),
.rat_middle li:nth-of-type(6),
.rat_middle li:nth-of-type(3):hover,
.rat_middle li:nth-of-type(1):hover {
    width: 48vw;
    max-width: 230px;
  }

  .ray_bottoms {
    display: block;
  }

  .circlewrapp {
    margin-top: -62px;
    position: initial;
  }

  .top_products {
    height: auto;
  }

  .top_products .inner {
    min-width: 100vw;
  }

  #ledia_7 .flex > .right, #ledia_7 .flex > .left,
#ledia_twin .flex > .right, #ledia_twin .flex > .left,
#ledia .flex > .right, #ledia .flex > .left,
#miyabi .flex > .right, #miyabi .flex > .left,
#fp9200 .flex > .right, #fp9200 .flex > .left {
    padding: 0;
    max-width: 640px;
    width: 94%;
    margin: auto;
  }

  footer {
    padding: 20px 0;
    text-align: center;
  }
  footer div.left, footer div.right {
    width: 100%;
  }
  footer div.left div a {
    margin: 0;
  }
  footer div.left div P {
    font-size: 12px;
  }
  footer .flex {
    display: block;
  }
  footer a {
    margin: 0;
    display: block;
    line-height: 1.6;
  }
  footer p {
    line-height: 1.6;
  }
}
@media screen and (max-width: 767px) {
  #top_page .btn,
#levina .flex > .right, #levina .flex > .left,
#ledia_7 .flex > .right, #ledia_7 .flex > .left,
#ledia_twin .flex > .right, #ledia_twin .flex > .left,
#ledia .flex > .right, #ledia .flex > .left,
#miyabi .flex > .right, #miyabi .flex > .left,
#fp9200 .flex > .right, #fp9200 .flex > .left {
    padding: 0;
    max-width: 94%;
    width: 94%;
    margin: auto;
  }

  #fukidashi {
    display: none;
    padding: 6vw 10vw 0 10vw;
    width: 100vw;
    min-width: 100vw;
    height: calc(94vw * 0.26);
    bottom: 7vh;
  }
  #fukidashi p {
    font-size: 16px;
  }

  #ring {
    top: auto;
    right: auto;
    left: 50vw;
    bottom: -430px;
    width: 75vw;
    max-width: 268px;
    overflow: hidden;
  }

  .modal__content iframe {
    width: 94vw;
    max-width: 94vw;
    height: calc(94vw * 0.5625);
  }

  .inner {
    padding: 0;
    max-width: 94%;
    width: 94%;
    margin: auto;
  }

  .ray_tops {
    margin-top: 42px;
    height: auto;
  }
  .ray_tops img {
    width: 66vw;
    margin-top: 2vh;
    margin-bottom: 2vh;
  }

  #h_circle01 {
    top: 210px;
    width: 88vw;
    height: 88vw;
  }

  #h_circle02 {
    top: 290px;
    width: 66vw;
    height: 66vw;
  }

  #h_circle03 {
    top: 422px;
    width: 44vw;
    height: 44vw;
  }

  #h_circle04 {
    top: 268px;
    width: 56vw;
    height: 56vw;
  }

  #h_circle05 {
    top: 310px;
    width: 74vw;
    height: 74vw;
  }

  #h_circle06 {
    top: 380px;
    width: 36vw;
    height: 36vw;
  }

  #h_circle07 {
    top: 472px;
    width: 24vw;
    height: 24vw;
  }

  #h_circle08 {
    top: 548px;
    width: 14vw;
    height: 14vw;
  }

  #stickarrow {
    width: 20vw;
    bottom: -4vh;
  }

  #main_copy {
    padding-top: 50vh;
    padding-bottom: 50vh;
    height: 150vh;
  }
  #main_copy h2 {
    margin-left: 1em;
    font-size: 28px;
    letter-spacing: 8px;
  }
  #main_copy span.square {
    top: 30vh;
    left: 40%;
    width: 50vw;
  }
  #main_copy span.square02 {
    left: 10%;
    width: 50vw;
  }

  .top_products {
    background-size: cover;
  }

  #top_page .btn {
    padding: 10px;
  }

  #levina .flex > .left img,
#ledia_7 .flex > .left img,
#ledia_twin .flex > .left img,
#ledia .flex > .left img,
#miyabi .flex > .right img,
#fp9200 .flex > .right img {
    margin-top: 20vh;
  }

  .top_products h2 span {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .top_products p.info {
    margin-top: 5vh;
    font-size: 16px;
  }

  #totop {
    bottom: 1vh;
    right: 2vw;
  }
}
