:root {
  --color-key: rgb(var(--color-key-rgb));
  --color-sub: rgb(var(--color-sub-rgb));
  --color-sub-: rgb(var(--color-sub-rgb-));

  --fade-from-offset: 5rem;

  --bs-body-font-family: Inter, 'Noto Sans JP', sans-serif;
  --bubble: url("data:image/svg+xml,%3Csvg viewBox='0 0 766 376' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M763.005 193.7c0 78-34.63 99.93-66.83 122.103-7.669 5.28-.93 20.523 20.215 45.728-19.46-6.436-34.557-12.621-45.29-18.555-19.5-10.7-29.88-1.9-37.08 0C584.22 355.776 446.7 372.9 383 372.9c-230.9 0-380-57.097-380-179.2C3 71.597 152.1 2.55 383 2.55S763.005 55.1 763.005 193.7z' fill='none' stroke='%23000' stroke-width='3' stroke-linejoin='round'/%3E%3C/svg%3E");
}

body.loaded > * {
  opacity: 1;
}

body.loaded > .loader {
  opacity: 0;
}

/*
|-------------------------------------------------------------------------------
|   font color
|-------------------------------------------------------------------------------
*/

a,
a:hover,
a:active,
a:active:hover {
  color: inherit;
}

img {
  color: transparent;
}


.bg-key,
.bg-primary {
  color: #fff;
}

.color-key,
.cta,
.cta:hover,
.cta:active,
.cta:active:hover {
  color: var(--color-key);
}

.color-danger {
  color: var(--bs-danger);
}

.color-success {
  color: var(--bs-success);
}

.color-warn {
  color: var(--bs-warning);
}

/*
|-------------------------------------------------------------------------------
|   font size
|-------------------------------------------------------------------------------
*/

/* html    { font-size: 20px; } */

/*
|-------------------------------------------------------------------------------
|   font weight
|-------------------------------------------------------------------------------
*/

.fw-100 { font-weight: 100; }
.fw-200 { font-weight: 200; }
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

/*
|-------------------------------------------------------------------------------
|   font feature settings
|-------------------------------------------------------------------------------
*/

.tnum {
  font-feature-settings: 'tnum' 1, 'salt' 1;
}

/*
|-------------------------------------------------------------------------------
|   animation
|-------------------------------------------------------------------------------
*/

@keyframes fade-in {
  to {
    opacity: 1;
    transform: none;
  }
}

/*
|-------------------------------------------------------------------------------
|   common
|-------------------------------------------------------------------------------
*/

[style*="--size"] {
  width: var(--width, auto);
  height: auto;
  height: calc(var(--width) / var(--size));
}

a,
.cta,
#form span {
  text-decoration: none;
  transition: all .25s ease-out;
}

a:hover,
button:hover {
  filter: brightness(var(--brightness, 1.2));
}

a:active,
a:active:hover,
button:active,
button:active:hover {
  filter: brightness(.9);
}

header,
img {
  /*opacity: 0;*/
  transition: all .25s ease-out;
}

/* .loaded, */
.loaded > img:not(.lazy),
header .phone.loaded {
  animation-name: fade-in;
  animation-duration: 0s;
  animation-fill-mode: forwards;
  /*animation-timing-function: ease-out;*/
}

label {
  cursor: pointer;
}

.arrow-to-next {
  pointer-events: none;
  user-select: none;
  bottom: -1.5rem;
  left: calc(50% - 1.25em);
  width: 2.5em;
  height: 2.5em;
  background-image: linear-gradient(transparent 50%, #fff 50%);
}

.bg-white {
  background-color: #fff;
}

.bg-key {
  background-color: var(--color-key);
}

.cta,
.bg-sub {
  --brightness: 1.05;
  background-color: var(--color-sub);
}

.bg-sub- {
  background-color: var(--color-sub-);
}

.icon-stack {

}

[class*="fade-from"] {
  /*opacity: 0;*/
}

.fade-from-top {
  transform: translateY(calc(var(--fade-from-offset) * -1));
}

.fade-from-right {
  transform: translateX(var(--fade-from-offset));
}

.fade-from-bottom {
  transform: translateY(var(--fade-from-offset));
}

.fade-from-left {
  transform: translateX(calc(var(--fade-from-offset) * -1));
}

.fade-from-top-right {
  transform: translate(var(--fade-from-offset),calc(var(--fade-from-offset) * -1));
}

.fade-from-top-left {
  transform: translate(calc(var(--fade-from-offset) * -1),calc(var(--fade-from-offset) * -1));
}

.fade-from-bottom-right {
  transform: translate(var(--fade-from-offset),var(--fade-from-offset));
}

.fade-from-bottom-left {
  transform: translate(calc(var(--fade-from-offset) * -1),var(--fade-from-offset));
}

.pos.icon-stack .bi {
  transform: translateY(.2em);
}

.pos.icon-stack .bi-display {
  top: -.51em;
  left: calc(50% - .5em);
}

.pos.icon-stack .bi-hdd {
  top: .2em;
}

.ai-scanner.icon-stack .bread {
  --width: 1em;
  top: calc(50% - var(--width) / 2);
  left: calc(50% - var(--width) / 2);
  width: var(--width);
}

.inset-border {
  position: relative;
}

.inset-border::after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid rgba(0,0,0,.2);
  z-index: 1;
}

.logo-text {
  --width: 3.6em;
  display: inline-block;
  background-image: linear-gradient(to top, var(--color-sub) 31.8%, transparent 31.8%);
  vertical-align: sub;
}

.pos-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: var(--sticky-top, 0);
}

.ratio::before {
  transition: all .25s ease-out;
}

.rounded-4,
.rounded-4.inset-border::after {
  border-radius: .4rem !important;
}

.rounded-5,
.rounded-5.inset-border::after {
  border-radius: .5rem !important;
}

.rounded-6,
.rounded-6.inset-border::after {
  border-radius: .6rem !important;
}

.video-toggle .close,
.video-toggle.video-opened .play {
  display: none;
}

.video-toggle.video-opened .close {
  display: inline;
}

.video-toggle + .ratio-16x9 {
  --bs-aspect-ratio: 0;
}

.video-toggle.video-opened + .ratio-16x9 {
  --bs-aspect-ratio: calc(100% / 16 * 9);
}

/*
|-------------------------------------------------------------------------------
|   header
|-------------------------------------------------------------------------------
*/

.pc-image 
{ 
  display: block !important;
  width: 100vw;
  max-width:none;
  padding-top: 110px;
}
.sp-image 
{ 
  display: none !important;
  width: 100vw;
  max-width:none;
  padding-top: 79px;
}
 
@media only screen and (max-width: 750px) {
  .pc-image 
  { 
    display: none !important; 
  }
  .sp-image 
  { 
    display: block !important; 
  }
}

header.row {
  --bs-gutter-x: 0;
}

header .logo {
  --width: 7em;
}

header .phone img {
  --width: 2em;
  vertical-align: sub;
}

.navbar-ex {
  padding-bottom: 0;
}

.nav {
  background: #ffffff;
}

.nav_item {
  color: #000000 !important;
  font-size: 100%;
}

.navbar-toggler-ex {
  background: #E0E0E0;
  margin-top:15px;
}

@media (min-width: 724px)
{
  .navbar-iphone-area {
    display: none !important;
  }
}

.navbar-iphone-area {
  display: flex;
  width: 100vw;
  padding-left: 0;
  margin-top: 0px;
  margin-bottom: 0 !important;
  list-style: none;
}

.navbar-iphone-area li {
  width: calc(100% / 3);
  text-align: center;
}

.nav-phone-button {
  margin-top:13px;
  background-color: #795548;
  border-color: #795548;
}

button[aria-expanded="true"]::after {
  content: "Close";
}

.modal-body2, .modal-footer2 {
  background: #000000
}

.nav_item_phone_top {
color: #ffffff !important;
  font-size: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ffffff;
  text-align: center;
}

.nav_item_phone {
  color: #ffffff !important;
  font-size: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid #ffffff;
  text-align: center;
}

.nav_item_phone_bottom {
  color: #ffffff !important;
  font-size: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid #ffffff;
  text-align: center;
}

/*
|-------------------------------------------------------------------------------
|   first view
|-------------------------------------------------------------------------------
*/

@media (max-width: 724px)
{
  .main-image {
    background: url("images/top2.png");
    height: 1546px;
  }
}

@media (min-width: 724px)
{
  .main-image {
    background: url("images/top.png");
  }
}

.main-image {
  width: 100vw;
  background-size: cover;
  background-position: center;
  max-width:none;
}

#first-view {
  /*background-image: linear-gradient(9deg,transparent 50%, #fff 50%), linear-gradient(150deg, transparent 55%, var(--color-sub-) 55%);*/
}

#first-view h1 img {
  transform: scale(2);
}

#first-view h1 .logo-text {
  --width: 10rem;
}

#first-view ul {
  --bs-gutter-x: 2.5rem;
}

#first-view ul > li + li {
  border-left: 1px dashed;
}

#first-view ul sub {
  bottom: 0;
}

#first-view .product {
  width: 72%;
  margin-left: 36%;
  margin-bottom: -12%;
}

/*
|-------------------------------------------------------------------------------
|   intro
|-------------------------------------------------------------------------------
*/

#intro ul {
  max-width: 50em;
}

#intro li {
  /* --width: 7em;
  width: var(--width);
  height: var(--width);
  border: 2px solid;
  border-radius: var(--width); */
}
#intro a {
  text-decoration: underline;
  color: #0000FF;
}

#intro a.btn_01 {
	display: block;
	width: 100%;
	max-width: 600px;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	padding: 1rem 3rem;
	font-weight: bold;
	border: 2px solid #D32F2F;
	background: #D32F2F;
	color: #FFF;
	font-size: 15pt;
	transition: 0.5s;
	border-radius:15px;
}

#intro a.btn_01:hover {
	color: #D32F2F;
	background: #fff;
}
/*
|-------------------------------------------------------------------------------
|   manga
|-------------------------------------------------------------------------------
*/

.manga,
#import-schedule .schedule-chart,
/* #import-schedule .schedule-chart + div, */
#import-schedule .manga + .grid {
  width: 100%;
  max-width: 50rem;
}

#manga ul li,
#resolution .border-bottom {
  border-bottom-width: 0 !important
}

.owner-saying p {
  display: inline-block;
}

.owner-saying p::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: var(--bubble);
  background-size: 100% 100%;
}

.owner-saying p span {
  z-index: 1;
}

.owner {
  width: 17rem;
  max-width: 32vw;
}

/*
|-------------------------------------------------------------------------------
|   ai process
|-------------------------------------------------------------------------------
*/

#ai-porcess .case .image-wrap {
  width: calc((100% - 3rem) * .346);
}

#ai-porcess .case .image-wrap + .bi {
  width: 3rem;
}


#ai-porcess .case .image-wrap ~ .image-wrap {
  width: calc((100% - 3rem) * .654);
}

/*
|-------------------------------------------------------------------------------
|   resolution
|-------------------------------------------------------------------------------
*/

#resolution .owner {
  max-width: 15rem;
}

#resolution .badge {
  --bs-bg-opacity: .15;
}

#resolution .owner-saying p {
  padding: 3em 3em 3.5em;
}

/*
|-------------------------------------------------------------------------------
|   movie
|-------------------------------------------------------------------------------
*/
#movie a {
  text-decoration: underline;
  color: #0000FF;
}

#movie a.btn_01 {
	display: block;
	width: 100%;
	max-width: 600px;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	padding: 1rem 3rem;
	font-weight: bold;
	border: 2px solid #D32F2F;
	background: #D32F2F;
	color: #FFF;
	font-size: 15pt;
	transition: 0.5s;
	border-radius:15px;
}

#movie a.btn_01:hover {
	color: #D32F2F;
	background: #fff;
}

/*
|-------------------------------------------------------------------------------
|   import schedule
|-------------------------------------------------------------------------------
*/

#import-schedule .schedule-chart .col-6 {
  width: calc(50% - 1rem);
}

#import-schedule .schedule-chart > *::after {
  content: '';
  position: absolute;
  top: 100%;
  left: calc(50% - .4rem);
  width: .8rem;
  height: 1.5rem;
  background-color: #f4b288;
}

#import-schedule .schedule-chart > :nth-child(2)::after,
#import-schedule .schedule-chart > :last-child::after {
  content: none;
}

#import-schedule .schedule-chart div {
  background-color: #fbe5d8;
}

#import-schedule .schedule-chart div:nth-child(2) {
  color: #fff;
  background-color: #4372c1;
}

#import-schedule .schedule-chart div:nth-child(1) {
  color: #fff;
  background-color: #c35b20;
}

#import-schedule a {
  text-decoration: underline;
  color: #0000FF;
}

#import-schedule a.btn_01 {
	display: block;
	width: 100%;
	max-width: 600px;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	padding: 1rem 3rem;
	font-weight: bold;
	border: 2px solid #D32F2F;
	background: #D32F2F;
	color: #FFF;
	font-size: 15pt;
	transition: 0.5s;
	border-radius:15px;
}

#import-schedule a.btn_01:hover {
	color: #D32F2F;
	background: #fff;
}
/*
|-------------------------------------------------------------------------------
|   configuration
|-------------------------------------------------------------------------------
*/

#configuration .price {
  max-width: 10rem;
}

#configuration .price.inquery-needed {
  max-width: 14rem;
}

#configuration .list li::before,
#linkage .ai-server-wrap li::before {
  content: '-';
  margin-left: -1rem;
  display: inline-block;
  width: 1rem;
  opacity: .75;
}

#configuration .sets .product {
  max-width: 80vw;
  transform: translate(2rem,2rem);
}

#configuration .set {
  background-image: linear-gradient(9deg,transparent 40%, #fff 40%), linear-gradient(150deg, transparent 55%, var(--color-sub-) 55%)
}

#configuration .option {
  border-bottom-width: 0 !important;
}

#configuration .option .product {
  max-width: 75%;
}

/*
|-------------------------------------------------------------------------------
|   linkage
|-------------------------------------------------------------------------------
*/

#linkage .internet-wrap .bi-arrow-left-right {
  top: 7.35rem;
  left: -2.7rem;
}

#linkage .internet-wrap .bi-arrow-left-right ~ .bi-arrow-left-right {
  left: auto;
  right: -2.7rem;
}

/*
|-------------------------------------------------------------------------------
|   support
|-------------------------------------------------------------------------------
*/

#support .grid > :not(.bi-arrow-repeat) {
  padding-bottom: 17rem;
}

#support .image-wrap {
  left: 50%;
  bottom: 0;
  max-width: 19rem;
  max-height: 16rem;
  transform: translateX(-50%);
}

#support .call-wrap {
  animation: spin 4s infinite linear;
  z-index: 1;
}

/*
|-------------------------------------------------------------------------------
|   form
|-------------------------------------------------------------------------------
*/

#form form {
  max-width: 42rem;
}

#form :focus ~ .text-muted,
#form :valid ~ .text-muted {
  /* color: var(--bs-body-color) !important; */
}

#form .col-form-label.d-flex {
  justify-content: space-between;
}

#form [required] ~ span::after {
  content: '\2022';
  color: var(--bs-danger);
}

#form :valid ~ span::after {
  color: var(--bs-success);
}

#form .form-sent {
  display: none;
}

#form .d-none ~ .form-sent {
  display: block;
}

.form-sent .bi {
  width: 1.618em;
  height: 1.618em;
}

/*
|-------------------------------------------------------------------------------
|   fixed banner
|-------------------------------------------------------------------------------
*/

.fixed-banner {
  --bs-gap: .5em;
  font-size: calc(1vw * 16 * 100 / 375);
  position: fixed;
  bottom: 0;
  left: 0;
  padding: .5em;
  width: 100%;
  height: 3.6em;
  background-clip: padding-box;
  border-top: 1px solid rgba(0,0,0,.15);
  z-index: 1;

  transform: translateY(100%);
  opacity: 0;
  transition: all .25s ease-out;
}

body.viewport-out-of-first-view .fixed-banner {
  transform: none;
  opacity: 1;
}

.fixed-banner img {
  width: 1.8em;
  vertical-align: -.15em
}

.fixed-banner .note {
  font-size: .85em;
}

/*
|-------------------------------------------------------------------------------
|   responsive
|-------------------------------------------------------------------------------
*/

@media (min-width: 992px) {
  .container-lg.rounded-4 {
    border-radius: 0 !important;
  }
}

@media (min-width: 724px) and (max-width: 880px) {
  html { font-size: calc(1vw * 16 * 100 / 880); }
}

@media (max-width: 723px) {
  /* html { font-size: calc(1vw * 16 * 100 / 767); } */

  #intro ul {
    text-align: left;
    max-width: 16rem;
  }

  #intro ul li {
    white-space: nowrap;
  }

  #manga .border-bottom.border-end,
  #configuration .border-bottom.border-end {
    border-right-width: 0 !important;
    border-bottom-width: 1px !important;
  }

  #linkage .internet-wrap .bi-arrow-left-right:not(:last-child) {
    top: 1rem;
    left: calc(50% - 1rem);
    transform: rotate(90deg);
  }

  #form form > .grid {
    --bs-gap: 0;
  }

  #form .col-form-label.d-flex {
    justify-content: unset;
  }

  #form [required] ~ span::after {
    margin-left: .5rem;
  }
}

@media (max-width: 575px) {
  #resolution .border-bottom.border-end {
    border-right-width: 0 !important;
    border-bottom-width: 1px !important;
  }

  .fs-5:not(.tel-num),
  .btn-lg {
    font-size: 1rem !important
  }

  #first-view .product {
    margin-top: 5rem;
    margin-left: 18%;
    width: 92%;
  }

  #support .grid > :not(.bi-arrow-repeat) {
    padding-bottom: 11rem;
  }

  #support .image-wrap {
    max-height: 11rem;
  }

  #import-schedule .manga + .grid .image-wrap {
    max-width: 61.8vw;
  }

  #configuration .sets .product {
    transform: translateY(2rem);
  }
}

@media (max-width: 438px) {
  #intro > .content > p,
  #manga .manga + div p,
  #resolution .owner-saying p {
    font-size: calc(1vw * 16 * 100 / 438) !important;
  }

  #manga > h3 {
    font-size: calc(1vw * 23 * 100 / 438) !important;
  }

  #ai-porcess ol > * {
    width: 100% !important;
  }

  #ai-porcess ol > .bi {
    transform: rotate(90deg);
  }

  #ai-porcess .icon-stack {
    font-size: 20vw;
  }

  /* #manga .manga + div p, */
  #resolution h3 {
    font-size: calc(1vw * 20.5 * 100 / 438) !important;
  }

  #resolution .owner-saying p {
    padding: 2em 2em 2.5em;
  }
}

/*
|-------------------------------------------------------------------------------
|   voice image
|-------------------------------------------------------------------------------
*/

#voice .img_area {
  max-width: 50rem;
}

/*
|-------------------------------------------------------------------------------
|   qa
|-------------------------------------------------------------------------------
*/
.accordion-001 {
    max-width: 100%;
    margin-bottom: 7px;
    border: 1px solid #d6dde3;
    background-color: #FFFAF0;
}

.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    font-size: 20px;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::before,
.accordion-001 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #333333b3;
    content: '';
}

.accordion-001 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.accordion-001 summary::after {
    transition: rotate .3s;
}

.accordion-001[open] summary::after {
    rotate: 90deg;
}

.accordion-001 p {
   display: flex;
    justify-content: space-between;
    margin: 0;
    position: relative;
    padding: 1em 2em;
    color: #8B4513;
    background-color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    font-size: 20px;
    border-top: 1px solid #d6dde3;
}

.accordion-001[open] p {
    transform: none;
    opacity: 1;
    align-items: left;
}
#qa a {
  text-decoration: underline;
  color: #0000FF;
}

#qa a.btn_01 {
	display: block;
	width: 100%;
	max-width: 600px;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	padding: 1rem 3rem;
	font-weight: bold;
	border: 2px solid #D32F2F;
	background: #D32F2F;
	color: #FFF;
	font-size: 15pt;
	transition: 0.5s;
	border-radius:15px;
}

#qa a.btn_01:hover {
	color: #D32F2F;
	background: #fff;
}
