@charset "UTF-8";
/* CSS Document */
/*■全体■*/
body {
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
}

#header.scrolled {
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

#logo {
  flex-grow: 3;
  z-index: 150;
  /*重ね順　数値が大きい方が上になる*/
  text-align: left;
}

#fv {
  height: 100vh;
}

.sp-show {
  display: none;
}
@media (max-width: 768px) {
  .sp-show {
    display: block;
  }
}

.yellow-bg-line {
  margin: auto;
  text-align: center;
  display: inline;
  background: linear-gradient(transparent 80%, #eab308 0%);
  line-height: 2.5rem;
  padding-left: 12px;
  padding-right: 12px;
}

.heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.heading::before {
  background-color: #1e90ff;
  /* 線の色 */
  content: "";
  height: 2px;
  /* 線の高さ */
  width: 30px;
  /* 線の長さ */
  margin-right: 10px;
  /* 文字との余白 */
  transform: rotate(60deg);
  /* 傾ける */
}
.heading::after {
  background-color: #1e90ff;
  /* 線の色 */
  content: "";
  height: 2px;
  /* 線の高さ */
  width: 30px;
  /* 線の長さ */
  margin-left: 10px;
  /* 文字との余白 */
  transform: rotate(-60deg);
  /* 傾ける */
}

.baloon {
  position: relative;
}
.baloon::after {
  position: absolute;
  top: -50px;
  left: 20px;
  height: 0;
  width: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 12px;
  border-bottom: 40px solid #BFDBFE;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  content: "";
  transform: skewX(40deg);
}

.speechBubble {
  position: relative;
  display: block;
  margin-top: 20px;
  padding: 16px;
  border: 2px solid #a8d0ff;
  background-color: #f1f5f9;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
}
.speechBubble::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  border-style: solid;
  border-width: 0 0 20px 20px;
  border-color: transparent transparent #93c5fd;
  translate: -50% -100%;
}
.speechBubble::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  border-style: solid;
  border-width: 0 0 15.2px 15.2px;
  border-color: transparent transparent #f1f5f9;
  translate: -50% -100%;
}

.cta-button {
  position: relative;
  box-shadow: 2px 6px 6px rgba(0, 0, 0, 0.4);
  transition: all 0.2s;
}
.cta-button .triangle {
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg) translateY(calc(-50% - 1px));
  top: 50%;
  right: 35px;
  transition: all 0.2s;
  margin-bottom: 2px;
}
.cta-button .triangle.small {
  right: 20px;
}
.cta-button .triangle.black {
  border-top: 2px solid black;
  border-right: 2px solid black;
}
.cta-button .triangle.blue {
  border-top: 2px solid #479CFF;
  border-right: 2px solid #479CFF;
}
.cta-button:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.cta-button:hover .triangle {
  right: 32px;
}
.cta-button:hover .triangle.small {
  right: 17px;
}

.benefit-bg {
  background-image: linear-gradient(309deg, rgb(139, 92, 246), rgb(26, 172, 245) 72%, rgb(48, 213, 221));
}

.accordion-title {
  cursor: pointer;
}

.accordion-content {
  display: none;
  padding: 10px 20px;
}

/* 矢印 */
.accordion-title {
  position: relative;
}

.accordion-title::after {
  border-right: solid 3px #000;
  border-top: solid 3px #000;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  right: 25px;
  top: 30%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  width: 10px;
}

.accordion-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

.white-svg svg {
  fill: white;
}

.swiper * {
  min-height: 0;
  min-width: 0;
}

.paper-drop-shadow {
  position: relative;
  float: left;
  width: 40%;
  padding: 1em;
  margin: 2em 10px 4em;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.paper-drop-shadow:before,
.paper-drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -2;
}

.bg-paper {
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  /* 以下任意のスタイル */
  padding: 20px;
}

.user-voice-container > * {
  flex: 0 0 auto;
}

* {
  min-width: 0;
  min-height: 0;
}

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
  position: absolute;
  right: 8px;
  top: 4px;
  padding: 26px 11px;
  z-index: 5;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#overlay-button span {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: black;
  position: relative;
  display: block;
  transition: all 0.2s ease-in-out;
}

#overlay-button span:before {
  top: -10px;
  visibility: visible;
}

#overlay-button span:after {
  top: 10px;
}

#overlay-button span:before,
#overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: black;
  position: absolute;
  content: "";
  transition: all 0.2s ease-in-out;
}

#overlay-button:hover span,
#overlay-button:hover span:before,
#overlay-button:hover span:after {
  background: black;
}

#overlay.active {
  opacity: 1;
  display: block;
}

#overlay-button.active:hover span,
#overlay-button.active span {
  background: transparent;
}

#overlay-button.active span:before {
  transform: rotate(45deg) translate(7px, 7px);
}

#overlay-button.active span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}

#overlay {
  background-color: rgba(59, 130, 246, 0.95);
  height: 100vh;
  width: 100vw;
  z-index: 1000;
  opacity: 0;
  display: none;
  position: fixed;
  transition: all 0.2s ease-in-out;
}

#overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  height: 100vh;
  padding-left: 0;
  list-style-type: none;
}

#overlay ul li {
  padding: 1em;
}

#overlay ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
}

#overlay ul li a:hover {
  color: #000 !important;
}

/***************************************************
 * Generated by SVG Artista on 1/12/2024, 12:02:21 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
/***************************************************
 * Generated by SVG Artista on 1/12/2024, 12:32:46 AM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
svg .svg-elem-1 {
  stroke-dashoffset: 1868px;
  stroke-dasharray: 1868px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0s;
}

svg.active .svg-elem-1 {
  stroke-dashoffset: 0;
}

svg .svg-elem-2 {
  stroke-dashoffset: 1868px;
  stroke-dasharray: 1868px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.1s;
}

svg.active .svg-elem-2 {
  stroke-dashoffset: 0;
}

svg .svg-elem-3 {
  stroke-dashoffset: 2102px;
  stroke-dasharray: 2102px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.24s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.2s;
}

svg.active .svg-elem-3 {
  stroke-dashoffset: 0;
  fill: rgba(0, 0, 0, 0);
}

svg .svg-elem-4 {
  stroke-dashoffset: 1868px;
  stroke-dasharray: 1868px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.36s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.3s;
}

svg.active .svg-elem-4 {
  stroke-dashoffset: 0;
}

svg .svg-elem-5 {
  stroke-dashoffset: 339px;
  stroke-dasharray: 339px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.48s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.4s;
}

svg.active .svg-elem-5 {
  stroke-dashoffset: 0;
}

svg .svg-elem-6 {
  stroke-dashoffset: 339px;
  stroke-dasharray: 339px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.5s;
}

svg.active .svg-elem-6 {
  stroke-dashoffset: 0;
}

svg .svg-elem-7 {
  stroke-dashoffset: 339px;
  stroke-dasharray: 339px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.72s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.6s;
}

svg.active .svg-elem-7 {
  stroke-dashoffset: 0;
}

svg .svg-elem-8 {
  stroke-dashoffset: 339px;
  stroke-dasharray: 339px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.84s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.7s;
}

svg.active .svg-elem-8 {
  stroke-dashoffset: 0;
}

svg .svg-elem-9 {
  stroke-dashoffset: 339px;
  stroke-dasharray: 339px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 0.96s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s;
}

svg.active .svg-elem-9 {
  stroke-dashoffset: 0;
}

svg .svg-elem-10 {
  stroke-dashoffset: 339px;
  stroke-dasharray: 339px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.08s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s;
}

svg.active .svg-elem-10 {
  stroke-dashoffset: 0;
}

svg .svg-elem-11 {
  stroke-dashoffset: 339px;
  stroke-dasharray: 339px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s;
}

svg.active .svg-elem-11 {
  stroke-dashoffset: 0;
}

svg .svg-elem-12 {
  stroke-dashoffset: 339px;
  stroke-dasharray: 339px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.32s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s;
}

svg.active .svg-elem-12 {
  stroke-dashoffset: 0;
}

svg .svg-elem-13 {
  stroke-dashoffset: 339px;
  stroke-dasharray: 339px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.44s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s;
}

svg.active .svg-elem-13 {
  stroke-dashoffset: 0;
}

svg .svg-elem-14 {
  stroke-dashoffset: 1868px;
  stroke-dasharray: 1868px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.56s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s;
}

svg.active .svg-elem-14 {
  stroke-dashoffset: 0;
}

svg .svg-elem-15 {
  stroke-dashoffset: 598px;
  stroke-dasharray: 598px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.68s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s;
}

svg.active .svg-elem-15 {
  stroke-dashoffset: 0;
}

svg .svg-elem-16 {
  stroke-dashoffset: 339px;
  stroke-dasharray: 339px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s;
}

svg.active .svg-elem-16 {
  stroke-dashoffset: 0;
}

svg .svg-elem-17 {
  stroke-dashoffset: 1573.5181884766px;
  stroke-dasharray: 1573.5181884766px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 1.92s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s;
}

svg.active .svg-elem-17 {
  stroke-dashoffset: 0;
  fill: rgb(33, 114, 187);
}

svg .svg-elem-18 {
  stroke-dashoffset: 679.9702148438px;
  stroke-dasharray: 679.9702148438px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.04s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s;
}

svg.active .svg-elem-18 {
  stroke-dashoffset: 0;
}

svg .svg-elem-19 {
  stroke-dashoffset: 27.1364059448px;
  stroke-dasharray: 27.1364059448px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.16s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s;
}

svg.active .svg-elem-19 {
  stroke-dashoffset: 0;
  fill: rgb(33, 114, 187);
}

svg .svg-elem-20 {
  stroke-dashoffset: 27.1364307404px;
  stroke-dasharray: 27.1364307404px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.28s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s;
}

svg.active .svg-elem-20 {
  stroke-dashoffset: 0;
  fill: rgb(33, 114, 187);
}

svg .svg-elem-21 {
  stroke-dashoffset: 27.1364707947px;
  stroke-dasharray: 27.1364707947px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s;
}

svg.active .svg-elem-21 {
  stroke-dashoffset: 0;
  fill: rgb(33, 114, 187);
}

svg .svg-elem-22 {
  stroke-dashoffset: 27.1364154816px;
  stroke-dasharray: 27.1364154816px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.52s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s;
}

svg.active .svg-elem-22 {
  stroke-dashoffset: 0;
  fill: rgb(33, 114, 187);
}

svg .svg-elem-23 {
  stroke-dashoffset: 27.1364154816px;
  stroke-dasharray: 27.1364154816px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.64s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s;
}

svg.active .svg-elem-23 {
  stroke-dashoffset: 0;
  fill: rgb(33, 114, 187);
}

svg .svg-elem-24 {
  stroke-dashoffset: 27.1364059448px;
  stroke-dasharray: 27.1364059448px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.76s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s;
}

svg.active .svg-elem-24 {
  stroke-dashoffset: 0;
  fill: rgb(33, 114, 187);
}

svg .svg-elem-25 {
  stroke-dashoffset: 27.1364154816px;
  stroke-dasharray: 27.1364154816px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 2.88s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s;
}

svg.active .svg-elem-25 {
  stroke-dashoffset: 0;
  fill: rgb(33, 114, 187);
}

svg .svg-elem-26 {
  stroke-dashoffset: 27.136428833px;
  stroke-dasharray: 27.136428833px;
  fill: transparent;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s;
}

svg.active .svg-elem-26 {
  stroke-dashoffset: 0;
  fill: rgb(33, 114, 187);
}

svg .svg-elem-27 {
  stroke-dashoffset: 318px;
  stroke-dasharray: 318px;
  transition: stroke-dashoffset 1s cubic-bezier(0.47, 0, 0.745, 0.715) 3.12s, fill 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s;
}

svg.active .svg-elem-27 {
  stroke-dashoffset: 0;
}

/* アニメーションの定義 */
@keyframes revealFromLeft {
  0% {
    -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
            clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
/* アニメーションを適用する要素 */
.fadein-left {
  -webkit-clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
          clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
  animation: revealFromLeft 1.5s ease-out forwards 1s;
}

.zoom-img {
  cursor: zoom-in;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  height: 100%;
  max-width: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-content img {
  width: 100%;
  height: auto;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

#overlay .overlay-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  height: 60px;
  z-index: 1001;
}

#overlay .close-overlay-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 1001;
  line-height: 1;
  padding: 5px;
}

#overlay-button.active {
  display: none;
}

body.no-scroll {
  overflow: hidden;
}/*# sourceMappingURL=style.css.map */