<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

* {
  box-sizing: border-box;
}
/* Typography */
html {
  color: #151515;
  font-family: "Noto Sans JP", sans-serif, "Poppins", sans-serif, Helvetica,
    "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
/* Layout &amp; Container Styles */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

section {
  padding: 6% 7%;
}

.cols-inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
}


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


ul {
  display: flex;
  justify-content: center;
}

li {
  list-style: none;
  padding: 0.6rem;
}

.sp_br {
  display: none;
}


.pdtop-30,
.pdtop-small {
  padding-top: 30px !important;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* サイト名 */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.logo h1 {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.logo img {
  width: 160px;
  display: inline-block;
  background-repeat: no-repeat;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ナビゲーションメニュー */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */

.header {
  background-color: #fff;
  width: 100%;
  height: 65px;
  position: fixed;
  z-index: 999;
  justify-content: space-between;
  -webkit-box-shadow: 0 0 6px rgb(94 135 178 / 40%);
  box-shadow: 0 0 6px rgb(94 135 178 / 40%);
  /* 画面の高さが低くてメニューが隠れてしまった場合に、縦スクロールが出るよう設定 */
  overflow-y: auto;
}

.header-container {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 3%;
  padding-right: 3%;
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
}

#navi {
  padding-left: 1%;
  max-width: 800px;
  margin: 0 0 0 auto;
}

.menu {
  display: flex;
  padding: 8px;
  list-style: none;
  color: #f4f5f7;
}

.menu li a {
  display: block;
  padding: 3px;
  color: #151515;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}

.menu li a:hover {
  color: #737373;
}

.contact {
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  width: 170px;
  margin-left: 1%;
  background: #40d872;
  border-radius: 5px;
  box-shadow: 4px 4px 8px 0px rgb(0 0 0 / 30%);
}

.contact:hover {
  opacity: 0.8;
}

.contact a {
  margin: 0 auto;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-family: "Hiragino Sans";
  font-weight: 700;
}


/*-------------------------------------------
Mainvisual
-------------------------------------------*/

.mainvisual {
  padding-top: 95px;
  background-color:#f9fbff;
  padding-bottom: 30px;
  padding-left: 3%;
  padding-right: 3%;
}

.hero {
  display: flex;
  background: white;
  position: relative;
  overflow: hidden;
  background-image: url(../img/topb-8.png);
  align-items: center;
  background-size: cover;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 20px;
  background-position: center right;
  height: 600px;
  padding: 3% 5%;
  box-shadow: 0px 5px 30px 0px rgb(0 0 0 / 25%);
}

.hero-content {
  flex: 1;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}

.hero-image-container {
  flex: 1;
  position: relative;
  z-index: 2;
}
.hero-image-heading {
  line-height: 1.2;
  margin-bottom: 1rem;
  border-bottom: solid 3px #dadeec;
  padding-bottom: 20px;
  font-weight: 500;
  position: relative;
}

.hero-cp {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}



.hero-image-heading::before {
  position: absolute;
  content: " ";
  border-bottom: solid 3px #b82638;
  bottom: -3px;
  width: 60%;
}

.hero-icon {
  display: grid;
  width: 80%;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  margin-top: 1rem;
}

.start-btn {
  display: inline-block;
  background: #f44336;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.start-btn:hover {
  opacity: 0.8;
} 

.device-preview {
  width: 100%;
  margin: 1rem auto 2rem;
  max-width: 600px;
}

.device-preview img {
  width: 100%;
  height: auto;
  display: block;
}


@media screen and (max-width:1200px){
  .hero-cp {
    font-size: 28px;
  }
}

@media screen and (min-width:1021px){
  .hero-image-content {
    display: none;
  }
}

@media screen and (max-width:1020px){
  .hero {
    flex-direction: column;
    padding:2rem 1rem 1rem;
    background-image: none;
    height: auto;
  }
  
  .hero::before {
      content: "";
      width: 100%;
      height: 46%;
      position: absolute;
      left: 0;
      bottom: 0;
      background-color: #17337d;
      clip-path: polygon(0% 95%, 100% 0%, 100% 100%, 0% 100%);
  }

  .hero-cp {
    font-size: 34px;
  }

  .hero-content {
    text-align: center;
    padding-right: 0;
  }

  .hero-image-heading {
    margin-bottom: 0;
    font-size: 1.2rem;
  }

  .hero-image-heading::before {
    width: 60%;
    left: 0;
  }

  .hero-icon {
    width: 100%;
  }
}

@media (max-width: 768px) {



  .hero-cp {
      font-size:clamp(1.5rem, 1.071rem + 2.14vw, 1.875rem);
  }

  .hero-cp:before {
      bottom: 108px;
  }

  .hero-image-heading {
      margin-bottom: 1rem;
  }


  .diagonal-decoration {
    background: linear-gradient(0deg, #f9fbff, #f9fbff,#f9fbff,#2A62CB, #122C6F);
  }


  .start-btn {
      width: 100%;
      text-align: center;
      margin-top: 1rem;
  }

  .diagonal-decoration {
      bottom: -30%;
      height: 70%;
  }
}

@media screen and (max-width: 540px) {
  .hero-cp {
    font-size: 22px;
    /*-
    font-size:clamp(1rem, 0.273rem + 3.64vw, 1.5rem);++ */
}
  .hero-image-heading {
    font-size: 18px;/*
    font-size: clamp(0.875rem, 0.148rem + 3.64vw, 1.375rem);++ */
  }

}


.content {
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 5%;
  height: 100%;
  box-sizing: border-box;
}


.btn-cl {
  background-color: #f13b1c;
  border: none;
  color: #fff;
  font-weight: 600;
}

.btn-cl:hover {
  opacity: 0.8;
}


.topix-btn {
  border-radius: 20px;
  width: 120px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 7%;
}

.topix-btn img {
  height: 24px;
  padding-left: 15px;
}

.content .right {
  max-width: 600px;
  width: 50%;
  min-width: 430px;
}

.text-area {
  line-height: 1.2;
}

.descriptionTxt {
  text-align: center;
  margin: 20px auto 40px;
}

#bg-cl {
  background-color: #f9fbff;
  margin: 0 calc(50% - 50vw);
  padding-top: 50px;
  padding-bottom: 0;
}

.content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

h3 {
  font-size: 28px;
  font-size: clamp(26px, 1.5vw, 28px);
  line-height: 1.5;
  padding-bottom: 30px;
  margin: 0 auto;
}

.marker {
  background-color: rgba(253, 238, 75, 81%);
}

.descriptionTxt p {
  font-size: 20px;
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.2;
  padding: 0 20vw;
  margin: 0 auto;
}

.featuresTl {
  font-size: 28px;
  text-align: center;
  font-weight: 600;
  color: #121212;
  position: relative;
}

.commerce {
  color: #fff;
}

.pointTl {
  font-size: 36px;
}
.futureTl {
  font-size: 44px;
}

.featuresTl {
  height: 70px;
}

.features-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 60px auto 40px;
}

.commerceTl {
  justify-content: flex-start;
  color: #fff;
  margin: 0 auto 35px;
}
.commerceTl img {
  max-width: 400px;
}

.commerceTl span {
  font-size: 20px;
  font-weight: 400;
  padding-left: 5px;
}

.future-txt {
  line-height: 1.7;
  padding-bottom: 5%;
}

.future-txt1 {
  padding: 25px 0 15px;
  border-bottom: solid;
  font-size: 18px;
}

.future-txt2 {
  padding: 25px 0 15px;
  border-bottom: solid;
  font-size: 18px;
}
.features-wrapper {
  width: 100%;
  padding: 35px 0;
}

.features-wrapperTop {
  padding: 30px 0 25px;
}

.features-wrapper2 .button {
  margin-left: 0;
}

.features {
  display: flex;
  margin: 0 auto;
  position: relative;
  z-index: 3;
  align-items: center;
  justify-content: space-around;
}

.features-bg {
  font-family: "Noto Sans JP", sans-serif;
}

.features-left {
  width: 50%;
  min-width: 320px;
}

.features-right {
  width: 45%;
}

.features-wrapper2 {
  padding: 25px 0;
  width: 100%;
}

.features2 {
  flex-direction: row-reverse;
}

*/ .subTl {
  font-size: 1.75em;
  font-weight: 500;
  margin-bottom: 0.8em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  display: flex;
}

.features-wrapper2 .subTl {
  justify-content: flex-end;
}

h5 {
  font-size: 26px;
  color: #231815;
  font-weight: 700;
  display: inline;
  box-sizing: border-box;
  line-height: 1.2;
}

.border {
  border: solid 1px #f13b1c;
  margin-top: 6%;
  max-width: 450px;
}

.text {
  padding-top: 20px;
  line-height: 1.8;
  font-weight: 400;
  color: #231815;
  font-size: 16px;
}

.text2 {
  padding-top: 5px;
}

.commerce-wrapper {
  max-width: 1280px;
  box-sizing: border-box;
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 3fr;
  margin: 0 auto;
  column-gap: 11%;
  align-items: center;
}

.commerce-img {
  border-radius: 15px;
  box-shadow: 8px 8px 16px 0px rgb(0 0 0 / 20%);
}

.function-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-column-gap: 20px;
  grid-template-rows: auto auto;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding: 0 4%;
}

.card-wrapper {
  display: flex;
  margin: 30px auto;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 4%;
}

.solution-grid {
  margin-top: 10px;
}

#function {
  margin: 0 calc(50% - 50vw);
  background-color: #122c6f;
  margin-top: 50px;
}

.mainFun-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1vw 5vw 4vw;
}

.mainFun {
  display: flex;
  padding: 80px 3vw;
  justify-content: space-evenly;
  background: #eeeeee;
}

.document {
  width: 48%;
  background-color: #fff;
  height: 35vw;
  box-shadow: rgb(0 0 0) 0px 0px 0px 3px inset;
  border-radius: 10px;
  max-height: 450px;
  padding: 1.5vw 1vw 0;
  box-sizing: border-box;
  min-height: 350px;
}

.compare {
  width: 48%;
  background-color: #fff;
  height: 35vw;
  box-shadow: rgb(0 0 0) 0px 0px 0px 3px inset;
  border-radius: 10px;
  max-height: 450px;
  padding: 1.5vw 1vw 0;
  box-sizing: border-box;
  min-height: 350px;
}

.mainFun p {
  font-size: 22px;
  text-align: center;
  height: 60px;
  padding: 10px 10px 5px;
  line-height: 1.3;
  font-weight: 500;
}

.mainfunTl {
  text-align: center;
  font-size: 28px;
  color: #0093d3;
}

.function {
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 25%);
  border-radius: 0.75rem;
}

.card {
  background-color: #fff;
  box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  width: 30%;
}

.function-img img {
  border-radius: 0.75rem 0.75rem 0 0;
}

.card-img img {
  border-radius: 0.75rem 0.75rem 0 0;
}

h6 {
  font-size: 18px;
  color: #121212;
  font-weight: 600;
  padding: 20px 0 15px;
  line-height: 1.3;
}

.function p {
  line-height: 1.4;
  font-family: "Noto Sans JP";
  font-size: 15px;
}

.card p {
  line-height: 1.4;
  font-family: "Noto Sans JP";
  font-size: 15px;
}

.btn-wrapper {
  text-align: end;
  padding-top: 10px;
}

.btn-wrapper a {
  text-decoration: none;
}

.topix h3 {
  text-align: center;
  padding-top: 40px;
}


.topix-txt {
  box-sizing: border-box;
  padding: 5%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 540px) {
  

  h5 {
    font-size: 20px;
  }

  .future-txt1,.future-txt2 {
    border-bottom: 1px solid;
  }
}



/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* FAQ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
.faq-section h3 {
  text-align: center;
}

/* FAQパーツ */
.pageSubTitle2 {
  line-height: 1.7;
  font-weight: 600;
  font-style: normal;
  color: #4d4d4d;
  width: 80%;
}
.contentText {
  line-height: 1.7;
  font-weight: 600;
  font-style: normal;
  color: #4d4d4d;
}


.qa__box1 {
  border-top: solid 1px;
}

.qa__box {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  border-bottom: solid 1px;
}

.qa__box &gt; dl &gt; dt {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 30px;
  position: relative;
}
.qa__box &gt; dl &gt; dt .crossBar {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
.qa__box &gt; dl &gt; dt .crossBar::before {
  content: "";
  display: inline-block;
  width: 1.6px;
  height: 100%;
  background-color: #4d4d4d;
  position: absolute;
  top: 0;
  left: 50%;
  transform-origin: center center; /* 中心を基準にtransform */
  transform: translateX(-50%) rotate(0deg);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.qa__box &gt; dl &gt; dt .crossBar::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1.6px;
  background-color: #4d4d4d;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.qa__box &gt; dl &gt; dt &gt; span {
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
  font-style: normal;
  color: #122c6f;
  margin-right: 15px;
}

.qa__box &gt; dl &gt; dd {
  margin: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0px 30px; /* paddingの上下を0にする */
  max-height: 0; /* max-heightを0にする、レスポンシブ対応 */
  overflow: hidden; /* overflow: hidden;を付けるのがポイント */
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.qa__box &gt; dl &gt; dd &gt; span {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500;
  font-style: normal;
  color: #122c6f;
  margin-right: 15px;
}

/* アニメーション後のスタイル */
.qa__box &gt; dl &gt; dd.is-open {
  /* heightとpaddingをアニメーション */
  max-height: 150px;
  padding: 10px 30px 20px;
}
/* ＋ボタンのアニメーション */
.qa__box &gt; dl &gt; dt.is-open .crossBar::before {
  transform: translateX(-50%) rotate(90deg); /* 90度回転 */
}

#Cta-box {
  padding: 5% 7%;
}

.h7 {
  color: #fff;
  font-weight: 600;
  line-height: 36px;
  font-size: 26px;
  font-size: clamp(20px, 1.5vw, 26px);
  margin: 15px auto;
}

.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5%;
  width: 100%;
  padding: 50px;
  color: #fff;
  text-decoration: none;
  background: #40d872;
  box-shadow: 0px 4px 16px 0px rgb(0 0 0 / 25%);
  border-radius: 14px;
  transition: all 0.6s ease;
}

.cta-txt {
  display: grid;
  align-items: center;
}
.cta-button-main {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.4s, border 0.4s, color 0.4s;
  background: #2b8147;
  border: 2px solid transparent;
  border-radius: 30px;
  display: inline-block;
  padding: 0 40px;
  border-width: 2px;
  height: 48px;
  line-height: 44px;
  position: relative;
  text-decoration: none;
}

.cta-button-main:hover {
  opacity: 0.8;
}

@media screen and (max-width: 840px) {
  .featuresTl,
  .functionTl {
    font-size: 28px;
    text-align: center;
    font-weight: 700;
    color: #121212;
    position: relative;
  }

  .cta-button-main {
    padding: 0 24px;
    font-size: 14px;
  }
}

@media screen and (max-width: 540px) {
  .Cta-box .cta_button.free-trial,
  .Cta-box .cta_button.meeting-qrcode {
    margin: 0 6%;
  }

  .h4 {
    line-height: 30px;
  }

  .u-alignCenter,
  .tac {
    font-size: 16px;
    padding-top: 10px;
  }

  .sp_br {
    display: block;
  }
}


@media screen and (max-width: 540px) {

  .sp {
    display: none;
  }

  .function-wrapper {
    grid-template-rows: auto auto auto auto;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .tab-content {
    flex-direction: column;
  }
  .tab-img {
    width: 100%;
  }
  .tab-txt {
    width: 100%;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* フッター */
/* ++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


.footer {
  background-color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer a {
  color: #00000099;
  text-decoration: none;
  line-height: 1.9;
}

.footer a:hover {
  color: #076097;
  opacity: 0.8;
}

.footer h4 {
  font-size: 14px;
  font-weight: 600;
  color: #121212;
  padding: 15px 0 0 15px;
  line-height: 1.9;
}

.footer .copy {
  font-size: 12px;
  font-weight: bold;
  color: #ccc;
  text-align: center;
}

.footer_common {
  padding: 0px 15px 15px 15px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
}

.product-pb1 {
  display: flex;
}

.product-pb2 {
  padding-left: 50px;
}

.footer-inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.footer-cnt {
  display: flex;
  justify-content: center;
}

.title-inr {
  padding: 0 15px;
}


/*----------ウィンドウ幅が最大1200pxまでの場合に適用----------*/
@media screen and (max-width: 1200px) {
  .subTl {
    font-size: 1.8em;
    font-weight: 500;
    margin-bottom: 0;
  }

  .pc-br {
    display: none;
  }
}


/*----------ウィンドウ幅が最小821pxまでの場合に適用----------*/
@media screen and (min-width: 821px) {
  .openbtn,
  #g-nav {
    display: none;
  }
}

@media screen and (min-width: 471px) {
  .sp-br {
    display: none;
  }
}

/*----------ウィンドウ幅が最大820pxまでの場合に適用----------*/
@media screen and (max-width: 820px) {
  #navi,
  .contact {
    display: none;
  }


  .content {
    flex-direction: column-reverse;
  }

  .main-cp {
    font-size: 26px;
  }


  .copy {
    margin: 20px 0 5px;
    font-size: 18px;
  }

  .content .right {
    max-width: 560px;
    width: auto;
    min-width: initial;
  }

  .text-area {
    margin: 20px 0 35px;
  }

  .wrap-btn.blue-btn a {
    font-size: 16px;
    padding: 15px 38px 15px 24px;
  }

  section {
    padding-top: 50px;
    margin: 0 calc(50% - 50vw);
  }


  h3 {
    font-size: 24px;
  }

  .descriptionTxt p {
    font-size: 16px;
    line-height: 1.4;
    padding: 0;
  }

  .features-wrapper {
    padding: 40px 0;
  }

  .features {
    display: block;
  }

  .featuresTl {
    margin: 20px auto 25px;
  }

  .border {
    margin-top: 22%;
    margin-bottom: 7%;
    max-width: 800px;
  }

  .features-top {
    margin: 50px auto 30px;
  }

  .button {
    margin: 4vw auto 2vw;
  }

  .features-wrapper2 .button {
    margin-left: auto;
  }

  .features-wrapper::before {
    width: 100%;
  }

  .features-left {
    width: 100%;
    box-sizing: border-box;
    min-width: auto;
  }

  .features-right {
    max-width: inherit;
    box-sizing: border-box;
    padding: 20px 5vw 0;
    width: 100%;
  }

  .subTl {
    margin: 0;
  }

  .features-wrapper2 .subTl {
    margin: 0;
    justify-content: flex-start;
  }

  .subTl-color {
    padding: 0;
  }

  .features-wrapper2 .subTl-color {
    justify-content: flex-start;
  }

  .text {
    max-width: inherit;
    padding-left: 0;
    line-height: 1.5;
  }

  .features-wrapper2 .text {
    padding-right: 0;
  }

  #function {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  h6 {
    font-size: 16px;
  }
  .contentText {
    font-size: 16px;
  }
  

  .qa__box &gt; dl &gt; dt &gt; span {
    font-size: 18px;
  }

  .commerce-wrapper {
    grid-template-columns: auto;
  }
  .commerce-img {
    display: none;
  }

  .commerceTl img {
    width: 70%;
    min-width: 200px;
  }

  .futureTl {
    font-size: 36px;
  }

  .pointTl {
    margin-top: 25px;
  }

  .mainFun-wrapper {
    padding: 1vw 2vw 9vw;
  }

  .mainfunTl {
    font-size: 24px;
    font-size: clamp(20px, 3.5vw, 26px);
  }

  .mainFun p {
    font-size: 18px;
    font-size: clamp(16px, 3.5vw, 20px);
    height: auto;
  }

  .function-wrapper {
    padding: 0px 15px;
  }

  .logo {
    position: absolute;
    top: 20px;
  }

  .cta-wrapper {
    display: block;
  }

  .u-alignCenter {
    text-align: center;
  }

  @media screen and (max-width: 430px) {
  h3 {
    font-size: 22px;
  }

}

  /*========= ナビゲーションのためのCSS ===============*/

  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    /*
top:-120%;
  left:0;*/
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #fff;
    /*動き*/
    transition: all 0.6s;
    transform: translate(0, -120%);
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    /* top: 65px;*/
    transform: translate(-3%, 52%);
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    /*
  position: absolute;
  z-index: 999;
  top:10%;
  left:50%;
  transform: translate(-50%,-50%);
  */
    display: block;
    text-align: center;
  }

  /*リストのレイアウト設定*/

  #g-nav li {
    border-bottom: 2px solid #fff;
    background-color: #ffffff;
    padding: 0.8em;
  }

  #g-nav li a {
    color: #121212;
  }

  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #42526e;
    width: 45%;
  }

  .openbtn span:nth-of-type(1) {
    top: 15px;
  }

  .openbtn span:nth-of-type(2) {
    top: 23px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }

  .footer-cnt {
    display: block;
  }

  .sitemap {
    display: block;
    padding-left: 15px;
  }

  .sitemap li {
    padding: 0;
  }

  .footer-nav {
    display: none;
  }
}

@media screen and (max-width: 420px) {
  #g-nav.panelactive {
    /* top: 65px;*/
    transform: translate(-3%, 52%);
  }

  .main-cp {
    text-align: center;
  }

  .hero-image-heading {
    text-align: center;
  }

  .copy {
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
  }
}

/*========= タブのためのCSS ===============*/

.tab-content {
  display: flex;
  justify-content: space-evenly;
  padding-top: 5%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  line-height: 1.3;
  align-items: center;
  padding-bottom: 5%;
}

.tab-img {
  width: 45%;
}
.tab-txt {
  width: 40%;
}

.tabs button {
  font-size: 18px;
  font-weight: bold;
}

.tabcontent {
  display: none;
  background-color: #fff;
  margin: 0 calc(50% - 50vw);
  border-bottom: solid 1px #ccc;
}

.tablist {
  margin: 0 calc(50% - 50vw);
  box-shadow: inset 0 -1px 0px #dddddd;
  display: flex;
  justify-content: center;
  position: relative;
}

.tabs {
  display: flex;
  /* justify-content: center; */
  background: linear-gradient(rgb(255 255 255 / 0%) 60%, rgb(249 249 249));
  position: relative;
  overflow-x: scroll;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.horazontal-arrow {
  width: 50px;
  background-color: #f9fbff;
  border: none;
  height: 100%;
  z-index: 100;
  display: block;
}

.horazontal-arrow.disable {
  display: none;
}

.left-arrow {
  box-shadow: 8px 0 3px -3px #7a7a7a;
  position: absolute;
  left: 0%;
}
.left-arrow img {
  transform: rotate(180deg);
}

.right-arrow {
  box-shadow: -8px 0 3px -3px #8f8f8f;
  position: absolute;
  right: 0%;
}

.tablinks {
  background-color: #f1f1f1;
  padding: 14px 16px 12px;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
  border-radius: 4px 4px 0 0;
  border: 1px solid transparent;
  border-bottom: 1px solid #ccc;
  color: #717171;
}

.tablinks.active {
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom: none;
  border-radius: 4px 4px 0 0;
  color: #000;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

.tabTl {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5%;
}

@media screen and (min-width: 600px) {
  .tabs.radio div[role="tablist"] .tab-list-container {
    flex-direction: row;
    align-items: center;
    border-radius: 40px;
    padding-block: 0;
    padding-inline: var(--spacing-s);
    inline-size: auto;
    max-inline-size: var(--grid-container-width);
    margin: 0;
    gap: var(--spacing-s);
  }

  .tabs.radio .tab-list-container::before {
    margin-block-end: 0;
    margin-inline-end: -8px;
  }

  .tabs.radio div[role="tablist"] button {
    white-space: normal;
    text-align: start;
  }

  .tabs.radio div[role="tablist"] button,
  .tabs.radio div[role="tablist"] button:last-of-type {
    padding-block: var(--spacing-xs);
    padding-inline: 0;
    min-block-size: 56px;
  }
}

@media screen and (min-width: 1200px) {
  [role="tabpanel"] &gt; .section[class*="-up"] &gt; .content,
  [role="tabpanel"] &gt; .section[class*="grid-width-"] &gt; .content {
    width: auto;
  }

  .tabs div[role="tablist"] button {
    padding: 24px 32px 18px;
    line-height: 18px;
  }

  .tabs.quiet div[role="tablist"] button {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .tabs .tab-paddles .paddle {
    height: 62px;
  }

  .tabs .tab-paddles .paddle svg {
    top: 24px;
  }
}

@media screen and (max-width: 540px) {
  .tab-content {
    flex-direction: column;
  }
  .tab-img {
    width: 100%;
  }
  .tab-txt {
    width: 100%;
  }

  .tabTl {
    margin-top: 5%;
    font-size: 22px;
  
  }

}

</pre></body></html>