@charset "UTF-8";
/*————————————————————————————————————————————

リセットCSS

———————————*/
div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

fieldset, img, abbr, acronym {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

/* for IE6 */
* {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
* html body, *:first-child + html body {
  font-size: 82%;
}
*:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* Box sizing rules */
/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  width: 100%;
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  border: none;
}

a {
  text-decoration: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  box-sizing: content-box;
}

picture {
  width: 100%;
  display: block;
}

/* 600px以上はPCデザイン PC基準で組む時はこれ使わない*/
/* 1200px以下はtabletデザイン*/
/* 599px以下はSPデザイン*/
/* 90%の幅で最大値1360px */
/* 90%の幅で最大値1920px */
/* 100%の幅で最大値1920px */
/*————————————————————————————————————————————

ベースとなるCSS 主にタグ

———————————*/
html {
  width: 100%;
}

.wrapper {
  overflow: hidden;
  width: 100%;
}

body {
  position: relative;
  background-color: #212121;
  font-size: 16px;
  line-height: 2;
  font-family: "Noto Sans", sans-serif;
  color: #FEFEFE;
}
@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
}

.body {
  padding: 40px 0 120px 0;
}
@media screen and (max-width: 600px) {
  .body {
    padding: 0px 0 160px 0;
  }
}

header {
  width: 100vw;
  position: fixed;
  top: 0;
  z-index: 20;
  display: flex;
  padding: 18px 88px;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.6196078431);
}
@media screen and (max-width: 1200px) {
  header {
    padding: 18px 20px;
  }
}
header .inner {
  width: min(100%, 1920px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  header .logo {
    width: 136px;
  }
}
header .globalNav {
  z-index: 20;
}
header .globalNav ul {
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  header .globalNav ul {
    gap: 18px;
  }
}
header .globalNav ul .item.FrameBorder {
  padding: 0;
  border: 1px solid #ffffff;
}
header .globalNav ul .item.FrameBorder a {
  color: #fff;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}
header .globalNav ul .item a {
  color: #FEFEFE;
}
@media screen and (min-width: 600px) {
  header .globalNav ul .item a {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  header .globalNav ul .item a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #ffffff;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  header .globalNav ul .item a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}

@media screen and (min-width: 600px) {
  header .globalNav ul .item.button a::after {
    content: none !important;
  }
}

footer.globalFoot {
  width: 100vw;
  padding: 30px 88px;
  text-align: center;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  footer.globalFoot {
    width: 100vw;
    padding: 28px 20px;
  }
}
footer.globalFoot .inner {
  margin: 0 auto;
  width: min(100%, 1920px);
  display: flex;
}
@media screen and (max-width: 600px) {
  footer.globalFoot .inner {
    flex-direction: column;
  }
}
footer.globalFoot .inner ul {
  margin: 0 0 0 54px;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1200px) {
  footer.globalFoot .inner ul {
    margin: 0 0 0 20px;
    display: flex;
    -moz-column-gap: 20px;
         column-gap: 20px;
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  footer.globalFoot .inner ul {
    width: 100%;
    margin: 0;
    display: flex;
    -moz-column-gap: 40px;
    column-gap: 20px;
  }
}
footer.globalFoot .inner ul li {
  color: #FEFEFE;
  font-size: 14px;
}
footer.globalFoot .inner ul li a {
  color: #FEFEFE;
}
@media screen and (min-width: 600px) {
  footer.globalFoot .inner ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  footer.globalFoot .inner ul li a::after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #ffffff;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  footer.globalFoot .inner ul li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
footer.globalFoot .inner .copy {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1200px) {
  footer.globalFoot .inner .copy {
    margin: 20px 0 0 0;
    width: 100%;
    font-size: 12px;
    font-weight: lighter;
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  footer.globalFoot .inner .copy {
    width: 100%;
    font-size: 10px;
    margin: 0;
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  footer.globalFoot .logo {
    max-width: 200px;
    width: 80%;
    margin-bottom: 12px;
  }
}

li.twitter a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  visibility: hidden;
  position: absolute !important;
}
li.twitter a::before {
  content: "";
  display: block;
  background-image: url(../img/Twitter-icon.svg);
  width: 26px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  li.twitter a::before {
    width: 22px;
    height: 24px;
  }
}
@media screen and (min-width: 600px) {
  li.twitter a::after {
    width: 34px !important;
    bottom: 20px !important;
    visibility: visible !important;
  }
}

@media screen and (max-width: 600px) {
  .main {
    margin-bottom: 40px;
  }
}

section {
  width: min(90%, 1200px);
  padding: 60px 0;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 600px) {
  section {
    max-width: none;
    padding: 24px 0;
  }
}

h1 {
  font-size: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 32px;
}
h1 span {
  font-weight: lighter;
}

h2 {
  font-size: 104px;
  color: #FEFEFE;
  font-family: "Noto Sans", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  h2 {
    font-size: 12vw;
    margin-bottom: 8px;
  }
}
h2 span {
  font-size: 120px;
}
@media screen and (max-width: 1200px) {
  h2 span {
    font-size: 17vw;
  }
}

h3 {
  font-size: 50px;
  color: #FEFEFE;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  position: relative;
  text-align: center;
  line-height: 1.8em;
  margin: 0px 0 60px 0px;
}
@media screen and (max-width: 1200px) {
  h3 .sp-only {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  h3 {
    font-size: 28px;
    margin: 0 0px 32px 0;
    line-height: 1.4em;
  }
}
h3 img {
  display: inline-block;
  width: 382px;
  margin: 0px 8px -4px 0px;
}
@media screen and (max-width: 600px) {
  h3 img {
    width: 194px;
    margin: 0 6px 0 0;
  }
}

h4 {
  font-size: 40px;
  color: #FEFEFE;
  font-family: "Noto Sans", sans-serif;
  letter-spacing: 0.1em;
  font-weight: 900;
}
@media screen and (max-width: 600px) {
  h4 {
    font-size: 24px;
    line-height: 1.4;
  }
}
h4 img {
  width: 13.6em;
}
@media screen and (max-width: 600px) {
  h4 img {
    max-width: 283px;
    width: 80%;
  }
}

h5 {
  font-size: 38px;
  color: #FEFEFE;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  h5 {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

h6 {
  color: #000000;
  font-size: 38px;
}
@media screen and (max-width: 600px) {
  h6 {
    font-size: 30px;
  }
}

p {
  color: #FEFEFE;
  font-family: "Noto Sans", sans-serif;
}

a {
  display: block;
  font-family: "Noto Sans", sans-serif;
  color: #000000;
}

dl {
  display: flex;
}

ul {
  display: flex;
  flex-wrap: wrap;
}

/*————————————————————————————————————————————

ベースとなるCSS 使い回しできるclass名

———————————*/
/*————————————レスポンシブ関連—————————————*/
@media screen and (min-width: 600px) {
  .pc-only {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .pc-only {
    display: none;
  }
}

@media screen and (min-width: 600px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .sp-only {
    display: block;
  }
}

/*————————————テキスト関連—————————————*/
.text {
  font-size: 16px;
  color: #FEFEFE;
  font-family: "Noto Sans", sans-serif;
  font-weight: 200;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .text {
    font-size: 14px;
    font-weight: lighter;
    text-align: left;
  }
}

.h-l {
  font-size: 30px;
  font-weight: 800;
}
@media screen and (max-width: 600px) {
  .h-l {
    font-size: 16px;
    text-align: left;
  }
}

.h-m {
  font-size: 28px;
  font-weight: 800;
}
@media screen and (max-width: 600px) {
  .h-m {
    font-size: 14px;
    text-align: left;
  }
}

.h-s {
  font-size: 24px;
  font-weight: 800;
}
@media screen and (max-width: 600px) {
  .h-s {
    font-size: 18px;
    text-align: left;
  }
}

.text-ll {
  font-size: 22px;
  font-weight: 800;
}
@media screen and (max-width: 600px) {
  .text-ll {
    font-size: 20px;
    text-align: left;
  }
}

.text-l {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .text-l {
    font-size: 18px;
    text-align: left;
  }
}

.text-m {
  font-size: 18px;
  font-weight: 300;
}
@media screen and (max-width: 600px) {
  .text-m {
    font-size: 16px;
    text-align: left;
  }
}

.text-s {
  font-size: 14px;
}
@media screen and (max-width: 600px) {
  .text-s {
    font-size: 14px;
    text-align: left;
  }
}

.text-ss {
  font-size: 12px;
}
@media screen and (max-width: 600px) {
  .text-ss {
    font-size: 12px;
    text-align: left;
  }
}

.w-bold {
  font-weight: bold;
}

.w-normal {
  font-weight: normal;
}

.w-lighter {
  font-weight: lighter;
}

.grd {
  background: rgb(21, 141, 228);
  background: linear-gradient(90deg, rgb(21, 141, 228) 0%, rgb(78, 191, 228) 100%);
  background: -webkit-linear-gradient(0deg, rgb(21, 141, 228) 0%, rgb(78, 191, 228) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.marker {
  background: rgb(21, 141, 228);
  background: linear-gradient(90deg, rgb(21, 141, 228) 0%, rgb(78, 191, 228) 100%);
  background: -webkit-linear-gradient(0deg, rgb(21, 141, 228) 0%, rgb(78, 191, 228) 100%);
  display: inline;
  padding: 0 12px;
  margin-right: 0.1em;
}

.bk-grd {
  background: rgb(21, 141, 228);
  background: linear-gradient(90deg, rgb(21, 141, 228) 0%, rgb(78, 191, 228) 100%);
  background: -webkit-linear-gradient(0deg, rgb(21, 141, 228) 0%, rgb(78, 191, 228) 100%);
}

.yellow {
  color: #EAFE3E;
}

.gray-light {
  color: #505050;
}

/*————————————レイアウト関連—————————————*/
.adulation {
  position: fixed;
  top: 50%;
  z-index: 20;
}

.HalfSplit {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .HalfSplit {
    flex-direction: column;
  }
}

.HalfSplit-k {
  width: 49%;
}
@media screen and (max-width: 600px) {
  .HalfSplit-k {
    width: 100%;
  }
}

.alternate {
  flex-direction: row-reverse;
}
@media screen and (max-width: 600px) {
  .alternate {
    flex-direction: column;
  }
}

.vertical {
  display: flex;
  flex-direction: column;
}

.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.TAright {
  text-align: right;
}

.TAleft {
  text-align: left;
}

/*————————————装飾関連—————————————*/
.pankuzu {
  padding: 22px 0 0 0;
  margin: 0 auto;
}

.pankuzu ol li {
  position: relative;
  display: inline-block;
  margin-left: 1em;
}

.pankuzu ol li:first-child {
  margin-left: 0;
}

.pankuzu ol li::before {
  content: "/";
  display: block;
  right: -1.3em;
  top: 60%;
  transform: translate(-50%, -50%);
  position: absolute;
  color: #000000;
  font-size: 0.8em;
}

.pankuzu ol li:last-child::before {
  display: none;
}

.button {
  background: rgb(21, 141, 228);
  background: linear-gradient(90deg, rgb(21, 141, 228) 0%, rgb(78, 191, 228) 100%);
  background: -webkit-linear-gradient(0deg, rgb(21, 141, 228) 0%, rgb(78, 191, 228) 100%);
  margin: 0 auto;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.button :hover {
  background: transparent;
}
@media screen and (max-width: 600px) {
  .button {
    font-size: 14px;
    position: absolute;
    width: 90%;
  }
}
.button a {
  width: 100%;
  height: 100%;
  color: #FEFEFE;
  bottom: 0;
  padding: 10px 34px;
}
@media screen and (max-width: 600px) {
  .button a {
    padding: 8px 20px;
    width: 100%;
  }
}

.caution {
  position: relative;
  font-size: 12px;
  color: #212121;
}

.caution::before {
  content: "※";
  margin-right: 0.2em;
}

.tel {
  position: relative;
}
.tel a {
  display: inline-block;
}
@media screen and (max-width: 600px) {
  .tel a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
  }
}

.arrow {
  position: relative;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::after {
  content: "";
  position: absolute;
  margin: auto;
  vertical-align: middle;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #363636;
  border-right: 2px solid #363636;
  transform: rotate(135deg) translate(-50%, 50%);
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 600px) {
  .arrow::after {
    right: 8px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #363636;
    border-right: 1px solid #363636;
  }
}

@media screen and (min-width: 600px) {
  .arrow:hover::before, .arrow:hover::after {
    top: 54%;
  }
}

.FrameBorder {
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 12px 16px;
  border-radius: 6px;
  width: 100%;
  margin: 60px 0 0 0;
}

.border-right {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 80px;
}
.border-right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: #666;
  transform: translate(6%, -50%);
}

/*————————————コンテンツ関連—————————————*/
.GoogleMap {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  padding: 0;
}

.GoogleMap iframe {
  width: 100vw;
  height: 400px;
}

.copyright {
  font-size: 12px;
  color: #FEFEFE;
}
@media screen and (max-width: 600px) {
  .copyright {
    font-size: 10px;
  }
}

/*————————————よく使うパーツ関連—————————————*/
.logo {
  width: 240px;
}
@media screen and (max-width: 1200px) {
  .logo {
    width: 200px;
  }
}

@media screen and (max-width: 600px) {
  .catch h4 {
    line-height: 1.8;
  }
}
ul.card {
  padding-top: 40px;
  gap: 40px;
}
@media screen and (max-width: 600px) {
  ul.card {
    gap: 16px;
    padding-top: 20px;
    flex-direction: column;
  }
}
ul.card li {
  width: calc(50% - 20px);
}
@media screen and (max-width: 600px) {
  ul.card li {
    width: 100%;
  }
}

/*————————————————————————————————————————————

その他CSS 使い回しできないクラス名など

———————————*/
.en-title {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin-bottom: 88px !important;
}
@media screen and (max-width: 600px) {
  .en-title {
    margin-bottom: 32px !important;
  }
}
.en-title::before {
  content: "";
  width: 230px;
  height: 1px;
  background: rgb(21, 141, 228);
  background: linear-gradient(90deg, rgb(21, 141, 228) 0%, rgb(78, 191, 228) 100%);
  background: -webkit-linear-gradient(0deg, rgb(21, 141, 228) 0%, rgb(78, 191, 228) 100%);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(102%, 0);
}
@media screen and (max-width: 600px) {
  .en-title::before {
    transform: translate(102%, 0);
    width: 114px;
  }
}

@media screen and (min-width: 600px) {
  /*==================================================
   線が伸びて枠線になる
  ===================================*/
  .globalNav {
    /*線の基点位置*/
    /*線の基点位置2 spanタグ*/
    /*現在地とhoverした際の線の変化*/
  }
  .globalNav .button {
    /*線の基点とするためrelativeを指定*/
    position: relative;
    margin: 0 10px;
  }
  .globalNav .button::before,
.globalNav .button::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    background: #fff;
    /*線の形状*/
    width: 0;
    height: 2px;
    /*アニメーションの指定*/
    transition: all 0.2s linear;
  }
  .globalNav .button::before {
    right: 0;
    bottom: 0;
  }
  .globalNav .button::after {
    left: 0;
    top: 0;
  }
  .globalNav .button span {
    display: block;
  }
  .globalNav .button span::before,
.globalNav .button span::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    background: #fff;
    /*線の形状*/
    width: 2px;
    height: 0;
    /*アニメーションの指定*/
    transition: all 0.1s linear;
  }
  .globalNav .button span::before {
    left: 0;
    bottom: 0;
  }
  .globalNav .button span::after {
    right: 0;
    top: 0;
  }
  .globalNav .button.current::before,
.globalNav .button.current::after,
.globalNav .button:hover::before,
.globalNav .button:hover::after {
    width: 100%;
  }
  .globalNav .button :hover::after {
    transition-delay: 0s; /*すぐ線を出現させる*/
  }
  .globalNav .button :hover::before {
    transition-delay: 0.3s; /*線の出現を0.3秒遅らせる*/
  }
  .globalNav .button.current span::before,
.globalNav .button.current span::after,
.globalNav .button:hover span::before,
.globalNav .button:hover span::after {
    height: 100%;
  }
  .globalNav .button:hover span::before {
    transition-delay: 0.3s; /*線の出現を0.5秒遅らせる*/
  }
  .globalNav .button:hover span::after {
    transition-delay: 0.2s; /*線の出現を0.2秒遅らせる*/
  }
}
/*————————————————————————————————————————————

メインビジュアル

———————————————————————————————————————————————*/
.mainVisual {
  position: relative;
  height: 100vh;
  max-height: 800px;
}
@media screen and (max-width: 1200px) {
  .mainVisual {
    height: 100vw;
  }
}
@media screen and (max-width: 600px) {
  .mainVisual {
    width: 90%;
    height: 100vh;
  }
}

.catch {
  margin-top: 100px;
  position: relative;
  z-index: 10;
  zoom: 0.8;
}
@media screen and (max-width: 1200px) {
  .catch {
    zoom: 0.8;
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .catch {
    zoom: 1;
    margin-top: 60px;
  }
}

.mainVisual-img {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 60%);
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 1200px) {
  .mainVisual-img {
    zoom: 0.6;
    right: 0;
    top: auto;
    bottom: 0;
    transform: translate(-10%, -10%);
  }
}
@media screen and (max-width: 600px) {
  .mainVisual-img {
    zoom: 1;
    width: 100vw;
    margin: 20px 0 0 0;
    position: relative;
    transform: translate(0, 0);
  }
}
.mainVisual-img .pc-img {
  width: 756px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .mainVisual-img .pc-img {
    width: 90%;
    transform: translate(-6%, 0%);
  }
}
.mainVisual-img .pc-img video {
  width: 596px;
  height: 375px;
  background-color: #000000;
  display: block;
  position: absolute;
  top: 18px;
  right: 80px;
  transform: translate(0, 0);
}
@media screen and (max-width: 600px) {
  .mainVisual-img .pc-img video {
    width: 79%;
    height: 86%;
    top: 4%;
    right: 11%;
  }
}
.mainVisual-img .sp-img {
  width: 210px;
  position: absolute;
  right: -90px;
  bottom: -26px;
}
@media screen and (max-width: 600px) {
  .mainVisual-img .sp-img {
    right: 0;
    bottom: 0;
    width: 24%;
    transform: translate(-30%, 10%);
  }
}
.mainVisual-img .sp-img::before {
  content: "";
  width: 139px;
  height: 233px;
  background-image: url(../movie/service1-img-01.gif);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 40px;
  right: 36px;
  transform: translate(0, 0);
}
@media screen and (max-width: 600px) {
  .mainVisual-img .sp-img::before {
    width: 67%;
    height: 72%;
    top: 20px;
    right: 16px;
  }
}
.mainVisual-img .mark {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .mainVisual-img .mark {
    transform: translate(0, 0%);
    right: 14vw;
    top: -4vw;
  }
}
@media screen and (max-width: 600px) {
  .mainVisual-img .mark .text-ll {
    font-size: 10px;
  }
}
.mainVisual-img .mark::before {
  content: "";
  width: 200px;
  height: 200px;
  position: absolute;
  background-image: url(../img/nationwide-support.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  right: 50%;
  top: 50%;
  transform: translate(50%, -51%);
  -webkit-animation: 10s linear infinite rotation1;
          animation: 10s linear infinite rotation1;
  opacity: 0.6;
}
@media screen and (max-width: 600px) {
  .mainVisual-img .mark::before {
    width: 25vw;
    height: 25vw;
  }
}
@-webkit-keyframes rotation1 {
  0% {
    transform: translate(50%, -51%) rotate(0);
  }
  100% {
    transform: translate(50%, -51%) rotate(360deg);
  }
}
@keyframes rotation1 {
  0% {
    transform: translate(50%, -51%) rotate(0);
  }
  100% {
    transform: translate(50%, -51%) rotate(360deg);
  }
}
.mainVisual-img .mark figure {
  width: 62px;
}
@media screen and (max-width: 600px) {
  .mainVisual-img .mark figure {
    width: 34px;
  }
}

/*————————————————————————————————————————————

追従バナー

———————————————————————————————————————————————*/
/*.banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #FEFEFE;
  padding: 14px 36px;
  border-radius: 6px;
  z-index: 10;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .banner {
    width: 90%;
    min-width: 300px;
    padding: 10px 20px;
    right: 50%;
    bottom: 12px;
    transform: translate(50%, 0);
  }
} 221031*/

.banner img{
  display:none;
}
@media screen and (max-width: 600px) {
  .banner {
    position: fixed;
    width: 46%;
    min-width: 180px;
    padding: 5px 5px;
    right: 2%;
    bottom: 0px;
    z-index: 10;
  }

.banner img{
	display:inherit;
}
}
.banner2 {
  position: fixed;
  width:415px;
  right: -10px;
  bottom: 10px;
  padding: 14px 36px;
  border-radius: 6px;
  z-index: 10;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .banner2 {
    width: 53%;
    min-width: 210px;
    padding: 10px 20px;
    left: -1%;
    bottom: -4px;
  }
}



.banner > .text-l {
  color: #000000;
  font-weight: 800;
}
@media screen and (max-width: 600px) {
  .banner > .text-l {
    text-align: center;
  }
}
.banner > .text-m {
  font-weight: 800;
  margin-bottom: 6px;
}
@media screen and (max-width: 600px) {
  .banner > .text-m {
    text-align: center;
    margin-bottom: 0;
    line-height: 1.4;
    margin-bottom: 2px;
  }
}
.banner > .text {
  font-weight: 800;
}
@media screen and (max-width: 600px) {
  .banner > .text {
    text-align: center;
  }
}
.banner .button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 600px) {
  .banner .button {
    text-align: center;
    position: relative;
  }
}

.banner .close {
  position: absolute;
  right: 16px;
  top: 16px;
}
.banner .close a {
  display: block;
  width: 16px;
  height: 16px;
  text-align: center;
}
.banner .close a span {
  display: block;
  overflow: hidden;
}
.banner .close a i {
  font-size: 20px;
  z-index: 888;
  color: #222;
}

.banner-hidden {
  visibility: hidden !important;
  opacity: 0 !important;
  transition-duration: 0.3s;
}

.batu {
  display: block;
  position: relative;
  width: 16px;
  height: 16px;
}

.batu::before, .batu::after {
  /* 共通設定 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px; /* 棒の幅（太さ） */
  height: 16px; /* 棒の高さ */
  background: #707070; /* バツ印の色 */
}

.batu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.batu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (min-width: 600px) {
  .banner .button {
    transition: ease 0.3s;
  }
  .banner .button:hover {
    opacity: 0.6;
  }
}
/*————————————————————————————————————————————

about

———————————————————————————————————————————————*/
.about {
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .about {
    margin: 60px auto 0 auto;
  }
}
.about .inner > .text-l {
  margin-bottom: 48px;
}
@media screen and (max-width: 600px) {
  .about .inner > .text-l {
    margin-bottom: 28px;
  }
}
.about .inner > .text {
  margin-bottom: 56px;
}
@media screen and (max-width: 600px) {
  .about .inner > .text {
    margin-bottom: 28px;
  }
}

.about-pickup.card {
  gap: 24px;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .about-pickup.card {
    gap: 20px;
    margin-bottom: 32px;
  }
}
.about-pickup.card li {
  width: calc(30% - 0px);
  background-image: url(../img/sp-half.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 48px 20px 0 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .about-pickup.card li {
    max-width: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .about-pickup.card li {
    background-image: none;
    width: 100%;
    max-width: none;
    padding: 0;
    margin-bottom: 20px;
  }
}
.about-pickup.card li > figure {
  order: 1;
  margin-bottom: 16px;
}
.about-pickup.card li > figure img {
  width: 100%;
}
.about-pickup.card li > p.grd {
  order: 2;
  margin-bottom: 16px;
}
@media screen and (max-width: 1200px) {
  .about-pickup.card li > p.grd {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 20px;
    margin-bottom: 6px;
  }
  .about-pickup.card li > p.grd .pc-only {
    display: none;
  }
}
.about-pickup.card li > p.text {
  order: 3;
  margin-bottom: 16px;
  text-align: left;
}

.about-examples {
  background-color: #FEFEFE;
  color: #000000;
  padding: 40px 54px 34px 54px;
  margin-bottom: 120px;
  border-radius: 6px;
}
@media screen and (max-width: 600px) {
  .about-examples {
    padding: 32px 20px 24px 20px;
    margin-bottom: 72px;
  }
}
.about-examples .text-l {
  color: #000000;
  font-weight: normal;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .about-examples .text-l {
    text-align: center;
  }
}
.about-examples ul {
  justify-content: space-around;
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .about-examples ul {
    row-gap: 24px;
  }
}
.about-examples ul li {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .about-examples ul li {
    width: calc(24% - 0px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 600px) {
  .about-examples ul li {
    width: 50%;
  }
}
.about-examples ul > li > p {
  color: #000000;
  order: 2;
  font-weight: 600;
}
.about-examples ul > li > figure {
  order: 1;
  margin-bottom: 6px;
}
@media screen and (max-width: 600px) {
  .about-examples p.gray-light {
    text-align: left;
  }
}

/*————————————————————————————————————————————

 merit メリット

———————————————————————————————————————————————*/
.card.merit-card {
  margin-bottom: 64px;
  gap: 14px;
}
.card.merit-card li {
  width: calc(25% - 15px);
  background-color: #FEFEFE;
  display: flex;
  flex-direction: column;
  padding: 20px 16px;
  align-items: center;
  border-radius: 6px;
  justify-content: space-between;
  line-height: 1.4;
  margin-top: 4px;
}
@media screen and (max-width: 1200px) {
  .card.merit-card li {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 600px) {
  .card.merit-card li {
    width: 100%;
  }
  .card.merit-card li figure {
    margin-bottom: 14px;
  }
}
.card.merit-card li > p {
  color: #000000;
  order: 2;
}
@media screen and (max-width: 600px) {
  .card.merit-card li > p {
    text-align: center;
  }
}

/*————————————————————————————————————————————

 service

———————————————————————————————————————————————*/
@media screen and (max-width: 600px) {
  .service > h3 {
    margin-bottom: 72px;
  }
}

.circle {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .circle {
    width: 60px;
    height: 60px;
  }
}
.circle > p {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
  transform: translate(0, 4px);
}
@media screen and (max-width: 600px) {
  .circle > p {
    font-size: 8px;
    transform: translate(0, 2px);
  }
}
.circle > p > span {
  font-size: 50px;
  display: block;
  line-height: 0.8em;
}
@media screen and (max-width: 600px) {
  .circle > p > span {
    font-size: 26px;
  }
}
.circle.service-option {
  background-color: #FEFEFE;
}

.service-contents .service-inner {
  margin-bottom: 56px;
}
@media screen and (max-width: 600px) {
  .service-contents .service-inner {
    margin-bottom: 32px;
  }
}
.service-contents .service-inner figure {
  width: 420px;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .service-contents .service-inner figure {
    width: 100%;
    margin: 0 auto 24px auto;
  }
  .service-contents .service-inner figure img {
    margin: 0 auto;
    max-width: 70%;
  }
}
.service-contents .service-inner figure img {
  margin-left: auto;
  width: 300px;
}
.service-contents .service-inner .figure {
  width: 420px;
  margin-left: auto;
}
.service-contents .service-inner .figure video {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .service-contents .service-inner .figure {
    width: 100%;
    margin: 0 auto 24px auto;
  }
}

.service-inner .HalfSplit-k .h-l {
  margin-bottom: 48px;
}
@media screen and (max-width: 600px) {
  .service-inner .HalfSplit-k .h-l {
    font-size: 18px;
    margin-bottom: 24px;
  }
}
.service-inner .HalfSplit-k:first-child {
  width: 60%;
}
@media screen and (max-width: 600px) {
  .service-inner .HalfSplit-k:first-child {
    width: 100%;
    order: 2;
  }
}

.parts1 {
  background: #404040;
  border-radius: 6px;
  padding: 60px;
  margin-bottom: 120px;
}
@media screen and (max-width: 1200px) {
  .parts1 {
    padding: 20px;
    margin-bottom: 72px;
  }
}
.parts1 .h-s {
  margin-bottom: 16px;
}
@media screen and (max-width: 1200px) {
  .parts1 .h-s {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.parts1 .HalfSplit-k:first-child {
  order: 2;
  width: 80%;
}
@media screen and (max-width: 1200px) {
  .parts1 .HalfSplit-k:first-child {
    width: 100%;
  }
}
.parts1 .text-m {
  margin-bottom: 24px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .parts1 .text-m {
    margin-bottom: 18px;
  }
}
.parts1 figure {
  width: 340px;
}
@media screen and (max-width: 1200px) {
  .parts1 figure {
    width: 100%;
    margin-bottom: 20px;
  }
}

.parts1 .FrameBorder {
  max-width: 482px;
}
@media screen and (max-width: 1200px) {
  .parts1 .FrameBorder {
    width: 100%;
    max-width: none;
  }
}
.parts1 .FrameBorder .text-list {
  display: block;
}
.parts1 .FrameBorder .text-list li {
  list-style: disc;
  margin-left: 1.4em;
}

.FrameBorder > .grd.text {
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .FrameBorder > .grd.text {
    margin: 0 auto 6px auto;
  }
}
@media screen and (max-width: 1200px) {
  .FrameBorder {
    margin: 30px 0 0 0;
    padding: 16px;
  }
}

.parts1 .FrameBorder > .grd.text {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 1200px) {
  .parts1 .FrameBorder > .grd.text {
    margin: 0 auto;
  }
}

.option-img {
  margin: 0 auto 72px auto;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  position: relative;
}
.option-img iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
}
@media screen and (max-width: 600px) {
  .option-img {
    width: 100%;
    margin: 0 auto 20px auto;
  }
}

.service-contents-option {
  text-align: center;
}
.service-contents-option > .FrameBorder {
  max-width: 800px;
  margin-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .service-contents-option > .FrameBorder {
    max-width: 90%;
    margin-bottom: 60px;
  }
  .service-contents-option > .FrameBorder.price {
    max-width: 100%;
  }
}
.service-contents-option .text-l {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .service-contents-option .text-l {
    margin-bottom: 20px;
  }
}

.circle > p.grd {
  display: block;
}

.FrameBorder.price {
  border: 2px solid #4FA3F8;
  border-radius: 0 6px 6px 6px;
  margin-bottom: 24px;
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
  padding: 30px;
}
@media screen and (max-width: 600px) {
  .FrameBorder.price {
    padding: 0 20px;
  }
}
.FrameBorder.price .circle {
  width: 84px;
  height: 84px;
}
@media screen and (max-width: 600px) {
  .FrameBorder.price .circle {
    width: 60px;
    height: 60px;
  }
}
.FrameBorder.price .circle > p > span {
  font-size: 36px;
  line-height: 0.8em;
}
@media screen and (max-width: 600px) {
  .FrameBorder.price .circle > p > span {
    font-size: 24px;
  }
}
.FrameBorder.price .HalfSplit-k {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .FrameBorder.price .HalfSplit-k {
    position: relative;
    align-items: flex-start;
    padding: 20px 0 20px 80px;
  }
}
.FrameBorder.price .HalfSplit-k:first-of-type {
  border-right: 1px solid #4FA3F8;
}
@media screen and (max-width: 600px) {
  .FrameBorder.price .HalfSplit-k:first-of-type {
    border-right: none;
    border-bottom: 1px solid #4FA3F8;
  }
}

@media screen and (max-width: 600px) {
  .FrameBorder.price .circle {
    position: absolute;
    left: 0;
    top: 0;
    padding: 0;
    align-items: center;
    transform: translate(0%, 50%);
  }
}
@media screen and (max-width: 600px) {
  .cost .h-m {
    font-size: 20px;
  }
  .cost .text-l {
    font-size: 14px;
  }
  .cost .text {
    font-size: 12px;
  }
}

.cost-title {
  display: inline-block;
  padding: 2px 60px;
  border-radius: 6px 6px 0 0;
  position: absolute;
  top: 0;
  left: -2px;
  transform: translate(0, -100%);
}

.cost-service {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .cost-service {
    flex-direction: row;
  }
}
.cost-service .circle {
  margin: 0;
}

.cost-service-title {
  margin: 0 0 0 30px;
}
@media screen and (max-width: 600px) {
  .cost-service-title {
    font-size: 24px;
    margin: 0;
    line-height: 1.4;
  }
}

.caption {
  font-weight: lighter;
}
@media screen and (max-width: 600px) {
  .caption {
    text-align: center;
    line-height: 1.4;
  }
}

/*————————————————————————————————————————————

 活用シーン CASE STUDY

———————————————————————————————————————————————*/
.UsageScenes.card {
  justify-content: center;
  margin-bottom: 160px;
}
.UsageScenes.card.pc-only {
  display: flex !important;
}
@media screen and (max-width: 600px) {
  .UsageScenes.card.pc-only {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .UsageScenes.card {
    margin-bottom: 80px;
  }
}
.UsageScenes.card li {
  width: calc(30% - 0px);
  text-align: center;
}
@media screen and (max-width: 600px) {
  .UsageScenes.card li {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .UsageScenes.card li .h-m {
    text-align: center;
    font-size: 20px;
  }
  .UsageScenes.card li .text {
    text-align: center;
  }
}

.UsageScenes.card li > figure {
  width: 280px;
  height: 438px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .UsageScenes.card li > figure {
    order: 2;
    margin-bottom: 18px;
  }
}
.UsageScenes.card li > figure::before {
  content: "";
  content: "";
  width: 300px;
  height: 468px;
  position: absolute;
  background-image: url(../img/sp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.UsageScenes.card li > figure img {
  width: 250px;
  z-index: 10;
  margin: 0 auto;
  position: relative;
  padding: 80px 20px 20px 20px;
}

.Vtour {
  text-align: center;
}
.Vtour > .h-l {
  margin-bottom: 54px;
}
@media screen and (max-width: 600px) {
  .Vtour > .h-l {
    margin-bottom: 20px;
    font-size: 20px;
    text-align: center;
    line-height: 1.4;
  }
}
.Vtour > .h-m {
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .Vtour > .h-m {
    font-size: 20px;
    margin-bottom: 12px;
    text-align: center;
  }
}
.Vtour > .text-l {
  font-weight: lighter;
}
@media screen and (max-width: 600px) {
  .Vtour .text {
    text-align: left;
  }
}
.Vtour .Vtour-img {
  margin: 160px auto 20px auto;
}
@media screen and (max-width: 600px) {
  .Vtour .Vtour-img {
    margin: 30px auto 20px auto;
  }
}
.Vtour .Vtour-img figure {
  width: 90%;
  max-width: 928px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .Vtour .Vtour-img figure {
    width: 100%;
  }
}
.Vtour .Vtour-img figure::before, .Vtour .Vtour-img figure ::after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .Vtour .Vtour-img figure::before, .Vtour .Vtour-img figure ::after {
    content: none;
  }
}
.Vtour .Vtour-img figure::before {
  width: 514px;
  height: 324px;
  background-image: url(../img/Vtour-view.png);
  right: 0;
  top: 0;
  transform: translate(30%, -40%);
}
.Vtour .Vtour-img figure::after {
  width: 618px;
  height: 324px;
  background-image: url(../img/Vtour-desc-01.png);
  top: 0;
  left: 0;
  transform: translate(0px, -34%);
}
.Vtour .Vtour-img span::before, .Vtour .Vtour-img span ::after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .Vtour .Vtour-img span::before, .Vtour .Vtour-img span ::after {
    content: none;
  }
}
.Vtour .Vtour-img span::before {
  background-image: url(../img/Vtour-desc-02.png);
  width: 225px;
  height: 155px;
  top: 44%;
  left: 0;
  transform: translate(-50%, 0%);
}
.Vtour .Vtour-img span::after {
  background-image: url(../img/Vtour-desc-03.png);
  width: 1022px;
  height: 174px;
  left: 0;
  bottom: 0;
  transform: translate(-9px, 40%);
}

.Vtour .Vtour-img figure::after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .Vtour .Vtour-img figure::after {
    content: none;
  }
}

/*————————————————————————————————————————————

 お問い合わせ contact

———————————————————————————————————————————————*/
.contact h5 {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 54px;
}
@media screen and (max-width: 600px) {
  .contact h5 {
    font-size: 20px;
  }
}
.contact h5 img {
  width: 318px;
  display: inline-block;
  margin-right: 8px;
}
@media screen and (max-width: 600px) {
  .contact h5 img {
    width: 182px;
  }
}
.contact figure {
  width: 722px;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 54px;
}
.contact .inner > .text {
  text-align: center;
}
@media screen and (max-width: 600px) {
  .contact .inner > .text {
    text-align: left;
  }
}

/* #contact .inner {
  margin-bottom: 60px;
} */


#contact .campaign-banner{
  width:70%;
  margin:50px auto 100px;
}
@media screen and (max-width: 600px) {
  #contact .campaign-banner {
    width:100%;
    margin:40px auto 60px;
  }
}


/*————————————————————————————————————————————

 セカンドページ

———————————————————————————————————————————————*/
.SecondWrapper {
  margin: 94px 0;
}
@media screen and (max-width: 600px) {
  .SecondWrapper {
    width: 90%;
    margin: 0 auto;
  }
}

.thanks-page {
  margin: 240px auto;
  text-align: center;
}
.thanks-page p {
  margin-bottom: 16px;
}
.thanks-page h5 {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .thanks-page {
    margin: 140px auto;
  }
  .thanks-page h5 {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

/*————————————————————————————————————————————

 ハンバーガーメニュー

———————————————————————————————————————————————*/
@media screen and (max-width: 1200px) {
  /*----------------------------
  * メニュー開閉ボタン
  *----------------------------*/
  .fa-bars {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 50;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  /*----------------------------
  * メニュー本体
  *----------------------------*/
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 40;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8862745098);
  }
  .menu__item {
    width: 100%;
    height: auto;
    padding: 0.5em 1em;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
  }
  .header .globalNav ul {
    gap: 20px;
  }
  .button.menu__item {
    position: relative;
    width: 90%;
  }
  .fa-bars {
    z-index: 50;
  }
  /*----------------------------
  * アニメーション部分
  *----------------------------*/
  /* アニメーション前のメニューの状態 */
  .menu {
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s linear;
  }
  /* アニメーション後のメニューの状態 */
  .menu.is-active {
    pointer-events: auto;
    opacity: 1;
  }
  /*ボタン内側*/
  .fa-bars span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 0px;
    height: 3px;
    background-color: #FEFEFE;
  }
  .fa-bars span:nth-of-type(1) {
    top: 4px;
    width: 100%;
  }
  .fa-bars span:nth-of-type(2) {
    top: 14px;
    width: 100%;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .fa-bars.active span:nth-of-type(1) {
    top: 0;
    left: 0;
    transform: translateY(5px) rotate(-45deg);
    width: 80%;
  }
  .fa-bars.active span:nth-of-type(2) {
    top: 10px;
    left: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 80%;
  }
}
/*————————————————————————————————————————————

ふわっとアニメーション

———————————————————————————————————————————————*/
.fade1 {
  opacity: 0;
  transition: all 0.5s;
}
@media screen and (max-width: 1200px) {
  .fade1 {
    transition: all 0.5s;
  }
}

/* 画面に入った時の動き */
.fade1.blockIn {
  opacity: 1;
}

/* 画面外 */
.fade2 {
  transform: translateY(100px);
  transition: all 0.5s ease-in;
}
@media screen and (max-width: 1200px) {
  .fade2 {
    transition: all 0.5s;
    transform: translateY(40px);
  }
}

/* 画面に入った時の動き */
.fade2.blockIn {
  transform: translateY(0);
}

/*————————————————————————————————————————————

スマホのみ　スライダー

———————————————————————————————————————————————*/
@media screen and (max-width: 1200px) {
  .slider-2 .slick-slide {
    width: 600px;
    height: 400px;
    margin: 0 40px;
    position: relative;
    overflow: hidden;
  }
  .slider-2 .slick-slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .slider-2 .slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 0;
    position: absolute;
    top: 180px;
    z-index: 1;
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  }
  .slider-2 .slick-arrow::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border: 1px solid #09000d;
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 24px;
    transform: rotate(45deg);
  }
  .slider-2 .slick-next {
    right: 0;
  }
  .slider-2 .slick-prev {
    left: 0;
  }
  .slider-2 .slick-next::before {
    left: 20px;
  }
  .slider-2 .slick-prev::before {
    border-width: 0 0 3px 3px;
    right: 22px;
  }
  .dots-2 .slick-dots {
    text-align: center;
  }
  .dots-2 .slick-dots li {
    display: inline-block;
  }
  .dots-2 .slick-dots button {
    display: block;
    width: 10px;
    height: 10px;
    margin: 6px;
    font-size: 0;
    padding: 0;
    border: 0;
    outline: none;
    cursor: pointer;
    background: #bcbcbc;
    border-radius: 50%;
  }
  .dots-2 .slick-dots .slick-active button {
    background: #0a467d;
  }
}
@media screen and (max-width: 1200px) {
  .slick-initialized .slick-slide {
    display: flex !important;
    justify-content: center !important;
    position: relative !important;
    align-items: center;
  }
  .slider-2 .slick-slide {
    height: 360px;
    margin: 0 12px;
    position: relative;
    overflow: hidden;
    max-width: 398px;
  }
  .slick-initialized .slick-slide > figure {
    z-index: 2;
    width: 210px;
    height: 330px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .slick-initialized .slick-slide > figure::before {
    content: "";
    width: 110%;
    height: 360px;
    position: absolute;
    background-image: url(../img/sp.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .slider-2 .slick-slide img {
    position: absolute;
    width: 70%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .slider-2 .slick-arrow {
    background-color: transparent;
    top: 70%;
    width: 22px;
    height: 22px;
    right: 8%;
    transform: translate(-100%, -100%);
  }
  .slider-2 .slick-arrow::before {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    border: 1px solid #fff;
    border-width: 3px 3px 0 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(45deg) translate(-50%, 0%);
    opacity: 1;
    right: auto;
  }
  .slider-2 .slick-prev {
    left: 8%;
    top: 70%;
    width: 22px;
    height: 22px;
    right: auto;
    transform: scale(-1, 1) translate(-100%, -100%);
    /* transform: scale(-1, 1); */
  }
  .slider-text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -100%);
    width: 100%;
    height: 160px;
  }
  .slider-text .h-m {
    font-size: 18px;
    text-align: center;
  }
  .slider-text .text {
    text-align: left;
  }
  .case-study .inner .sp-only {
    position: relative;
    margin-bottom: 80px;
  }
  .slick-initialized .slick-slide {
    display: block;
    overflow: inherit;
  }
  .dots-2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 200px;
    height: 20px;
    transform: translate(-50%, 50%);
  }
  .slick-track {
    padding-top: 160px;
  }
  .dots-2 .slick-dots button {
    background: #FEFEFE;
    width: 6px;
    height: 6px;
  }
  .dots-2 .slick-dots .slick-active button {
    background: #4FA3F8;
    width: 10px;
    height: 10px;
  }
}
/*————————————————————————————————————————————

// ハンバーガーメニュー

———————————————————————————————————————————————*/
@media screen and (max-width: 1100px) {
  body.is-drawerActive {
    overflow: hidden;
  }
}
.is-drawerActive .globalNav {
  display: block;
}

.is-drawerActive span.u-visuallyHidden {
  display: none;
}

.is-drawerActive span.u-visuallyHidden_2 {
  display: block;
}

/*————————————————————————————————————————————

sp時 メニューアクティブ

—————————————————————————————————————————————*/
@media screen and (max-width: 1200px) {
  header .globalNav ul .item a {
    font-size: 16px;
    font-weight: bold;
  }
  header .globalNav ul .item > a {
    color: #FEFEFE;
  }
  li.item.menu__item:active a {
    color: #4FA3F8;
  }
}
/*————————————————————————————————————————————

tb 調節

—————————————————————————————————————————————*/
@media screen and (max-width: 1200px) {
  .parts1 .HalfSplit {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
  }
  .parts1 .HalfSplit .HalfSplit-k {
    width: 100%;
  }
  .UsageScenes.card.pc-only {
    justify-content: space-around;
    gap: 20px;
  }
  .UsageScenes.card li > figure::before {
    content: "";
    width: 130%;
    height: 468px;
  }
  .UsageScenes.card li > figure {
    width: 100%;
  }
  /* .UsageScenes.card li > figure img {
    width: 100%;
    height: 340px;
    padding: 10px 10px 10px 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  } */
  .Vtour .Vtour-img span.pc-only {
    display: none;
  }
  .Vtour .Vtour-img span::before, .Vtour .Vtour-img span ::after {
    content: none;
  }
  .Vtour .Vtour-img figure {
    width: 100%;
    max-width: none;
  }
  .Vtour .Vtour-img figure::before, .Vtour .Vtour-img figure ::after {
    content: none;
  }
  .Vtour .Vtour-img figure::after {
    content: none;
  }
  footer.globalFoot .inner {
    flex-wrap: wrap;
  }
  footer.globalFoot .inner .logo {
    width: 50%;
    max-width: 200px;
  }
}
/*# sourceMappingURL=style.css.map */