@font-face {
    font-family: "LINE Seed JP";
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url("/assets/fonts/LINESeedJP_OTF_Rg.woff2") format("woff2");
  }
  @font-face {
    font-family: "LINE Seed JP";
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url("/assets/fonts/LINESeedJP_OTF_Bd.woff2") format("woff2");
  }
  @font-face {
    font-family: "LINE Seed";
    font-style: normal;
    font-display: swap;
    src: url("assets/fonts/LINESeedSans_W_Rg.woff2") format("woff2");
  }
  @font-face {
    font-family: "LINE Seed B";
    font-style: bold;
    font-display: swap;
    src: url("/assets/fonts/LINESeedSans_W_Bd.woff2") format("woff2");
  }
:root {
    --font-heading: "UD新丸ゴ M";
    --font-heading-light: "UD新丸ゴ L";
    --font-basic: "LINE Seed JP", serif;
    --font-b: "LINE Seed JP", serif;
    --font-en: "LINE Seed", serif;
    --font-en-b: "LINE Seed B", serif;
  }

  body {
    text-rendering: optimizelegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
    -webkit-font-feature-settings: "palt" on;
    font-feature-settings: "palt" on;
    font-family: var(--font-basic);
    font-weight: normal;
}

h1, .h1 {
    font-size: 3.28rem; /* 元4.375rem → 約25%減 */
    line-height: 3.72rem;
  }
  
  h2, .h2 {
    font-size: 2.58rem; /* 元 3.438rem → 約25%減 */
    line-height: 2.813rem;
  }
  
  h3, .h3 {
    font-size: 2.11rem; /* 元2.813rem → 約25％減 */
    line-height: 2.344rem; /* 元3.125rem → 約25％減 */
  }
  
  h4 {
    font-size: 1.78rem; /* 元2.375rem → 約25％減 */
    line-height: 1.781rem; /* 約25％減 */
  }
  
  h5 {
    font-size: 1.58rem; /* 元2rem → 約25％減 */
    line-height: 1.688rem;
  }
  
  h6 {
    font-size: 1.313rem; /* 元1.75rem → 約25％減 */
    line-height: 1.463rem; /* 元1.95rem → 約25％減 */
  }
  

  #top .image {
    background: linear-gradient(150deg, #42934F, #39848E);
    padding-bottom: 7.8125rem;
    padding-top: 8.75rem;
}

/* bg color */
.bg-seashell-white {
  background-color: var(--seashell-white);
}
.bg-chablis-red {
  background-color: var(--chablis-red);
}
.bg-gradient-very-light-gray {
  background-image: linear-gradient(to bottom, #f7f7f7, #f7f7f7, #fbfbfc, #fdfdfd, #ffffff);
}
.bg-gradient-very-light-gray {
  background-image: linear-gradient(to bottom, #f7f7f7, #f7f7f7, #fbfbfc, #fdfdfd, #ffffff);
}
.bg-gradient-blue-ocean {
  background: linear-gradient(227deg, #65d7ff 5.29%, #008ad2 40.68%, #204483 84.46%);
}

.header-top-bar:before {
    content: " ";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(235, 235, 235, .35);
    mix-blend-mode: soft-light;
}

/* breadcrumb */
.breadcrumb ul {
    display: flex;
    align-items: center;
}
.breadcrumb ul li:first-child::before {
    content: "";
    display: block;
    width: 9px;
    height: 9px;
    background: linear-gradient(to right, #125ead 40%, #008ad2 100%);
    border-radius: 50%;
    margin-right: 8px;
}
.breadcrumb ul li:not(:last-child)::after {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    /* background: #fff; */
    background: var(--base-color);
    margin-left: 10px;
}
.breadcrumb ul li {
    font-size: 13px;
    font-feature-settings: "palt";
    letter-spacing: 0.07em;
    display: flex
;
    align-items: center;
    line-height: 1;
}
.breadcrumb ul li:not(:last-child) {
    margin-right: 10px;
}



table {
    border-collapse: collapse;
    width: 100%;
    /* max-width: 860px; */
    font-size: 15px;
    margin: 0 auto;
}

th {
    background-color: #1d51a0;
    color: #fff;
    border: solid 1px #ccc;
    padding: 1em;
    text-align: left;
    width: 10em;
}
td {
    border: solid 1px #ccc;
    padding: 1em;
    text-align: left;
}

.table-blue thead th {
    background: var(--base-color);
    color: white;
  
  }
.table-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 60px; /* PCの縦間隔 */
}

.table-scroll-container .table-item table {
    width: 100%;
    height: auto;
    /* display: block; */
}
    

/* PC表示では非表示にする */
@media (min-width: 768px) {
    .table-item::after {
        display: none;
    }
    }

    /* スマホ横スクロール調整 */
    @media screen and (max-width: 767px) {
        .table-scroll-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .table-scroll-container .table-item {
            width: 100%;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
        }

        .table-scroll-container .table-item table {
            width: 600px; /* 画像の横幅を小さく調整（600px程度） */
            max-width: none;
            scroll-snap-align: center;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(    0,0,0,0.1);
        }
    }
        
    /* 横スクロール（スワイプ）を示すアニメーション */
    @keyframes swipeHint {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-20px);
    }
    }

/* .section-header */
.section-header1:before {
    content: " ";
    width: 100%;
    height: 80px;
    position: absolute;
    bottom: 0;
    left: 0;
    /* margin-left: 5%;
    margin-right: 5%; */
    /* border-radius: 50px 0 0; */
    background: linear-gradient(to right, #125ead 40%, #008ad2 100%);
    /* background-color: #fff; */
    z-index: 1;
}



.box-with-arrow {
    position: relative;
  }

  .box-with-arrow::before {
    content: "";
    position: absolute;
    z-index: 2;
    bottom: -20px; /* 矢印の位置 */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 40px solid #fff; /* ボックスと同じ色 */
  }


/* radius */
.border-radius-bottom-50px{
    border-radius: 0 0 50px 50px;
}
.border-radius-top-50px{
    border-radius: 50px 50px 0 0;
}

.border-radius-rightbottom-6px{
    border-radius: 0 0 6px 0;
}

/* radius */
.bg-left-blue:before {
    background-color: #f7f9fa;
    content: "";
    display: block;
    height: 150%;
    position: absolute;
    right: 16%;
    top: 52%;
    transform: translate(0, -50%);
    width: 100vw;
    z-index: -1;
}
.bg-right-blue:before {
    /* background-color: #f7f9fa;
    content: "";
    display: block;
    height: 150%;
    left: 12%;
    position: absolute;
    top: 54%;
    transform: translate(0, -50%);
    width: 100vw;
    z-index: -1; */


    background-color: #f7f9fa;
    content: "";
    display: block;
    height: 150%;
    left: 12%;
    position: absolute;
    top: 54%;
    transform: translate(0, -50%);
    width: 100vw;
    z-index: -1;


}
@media only screen and (max-width: 767px) {
    .bg-left1:before {
        display: none;
    }
}



.bg-left-gradation::before {
    background: linear-gradient(to left, #125ead 40%, #008ad2 100%);
    content: "";
    height: 100%;
    border-radius: 6px;
    left: -2em;
    position: absolute;
    top: 2em;
    width: 90%;
    z-index: -1;
}
.bg-right-gradation::before {
    background: linear-gradient(to left, #125ead 40%, #008ad2 100%);
    content: "";
    height: 100%;
    width: 80%;
    border-radius: 6px;
    left: 2em;
    position: absolute;
    top: 2em;
    width: 90%;
    z-index: -1;
    
}


/* bg color */ 
.bg-nero-grey {
    background-color: #1F1F1F;
}
.bg-dark-gray-transparent {
    background-color:rgba(25, 25, 25,.7);
}
.bg-charcoal-grey {
    background-color: #3E3E3E;
}
.bg-base-color-transparent {
    background-color: rgba(239, 255, 2,.2);
}
.bg-gradient-dark-transparent {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(-4%, #101010), to(transparent));
    background: linear-gradient(to top, #101010 -4%, transparent 100%);
}
.bg-gradient-dark-gray-transparent {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(25, 25, 25, 1)), to(transparent));
    background-image: linear-gradient(to top, rgba(25, 25, 25, .9) 20%, transparent 90%);
}




/* box layout */
.box-layout {
    padding: 0 40px;
}




/* table layout */

/*------------------------------------*/

.dl-table {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
  
  .dl-table :nth-child(1), .dl-table :nth-child(2) {
    border: none
  }
  
  .dl-table dt {
    padding: 15px 0 15px;
    margin-bottom: 0;
    width: 27%;
    max-width: 27%;
    -ms-flex: 0 1 27%;
    -webkit-box-flex: 0 1 27%;
    flex: 0 1 27%;
    border-top: 1px solid #ddd;
    box-sizing: border-box;
    background-color: #efefef;
  }



  @media (max-width:767px) {
    .dl-table dt {
      padding: 10px 0;
      border: none;
      border-bottom: 1px solid #ddd!important;
      width: 100%;
      max-width: 100%;
      -ms-flex: 100%;
      -webkit-box-flex: 100%;
      flex: 100%
    }
  }
  
  .dl-table dd {
    padding: 15px 0 15px;
    margin-bottom: 0;
    width: 70%;
    max-width: 70%;
    -ms-flex: 0 1 70%;
    -webkit-box-flex: 0 1 70%;
    flex: 0 1 70%;
    border-top: 1px solid #ddd;
    box-sizing: border-box;
  }
  
  @media (max-width:767px) {
    .dl-table dd {
      padding: 10px 0;
      border: none;
      width: 100%;
      max-width: 100%;
      -ms-flex: 100%;
      -webkit-box-flex: 100%;
      flex: 100%
    }
  }
  
  
.dl-table {
    line-height: 1.7;
}
.dl-table dt {

    padding-left: 3%;
    padding-right: 1%;
    font-weight: 400;
}
.dl-table dd {
    padding-left: 5%;
    padding-right: 5%;
    border-left: 1px solid #ddd;
}
.dl-table :nth-child(1) {
    border-top: 1px solid #ddd;
}
.dl-table :nth-child(2) {
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}
.dl-table dt:nth-child(13) {
    border-bottom: 1px solid #ddd;
}
.dl-table dd:nth-child(14) {
    border-bottom: 1px solid #ddd;
}


@media only screen and (max-width: 767px) {
    .requirements-header .section-title {
        font-size: 2.4rem;
    }
    .requirements-header {
        padding: 75px 0 35px 0;
        background-color: #001871;
    }
    .dl-table :nth-child(1) {
        border-top: 0px solid #001E6E;
    }
    .dl-table dd {
    border-left: 0px solid #ddd;
}
    .dl-table :nth-child(2) {
    border-left: 0px solid #ddd;
}

}





.fs-320 {
    font-size: 20rem;
    line-height: 20rem;
}
.fs-21 {
    font-size: 21px;
}
header .btn.btn-dark-gray {
    background-color: #292c36;
}
header .btn.btn-box-shadow.btn-dark-gray:hover, 
header .btn.btn-box-shadow.btn-dark-gray:active {
    background: #292c36; 
    border-color: #292c36;
}
.header-demo.navbar .navbar-nav .nav-link {
    font-weight: 400;
}
.navbar .navbar-nav .dropdown .dropdown-menu a .label {
    font-weight: 500;
}
.navbar .navbar-nav .submenu-content ul .sub-title {
    font-weight: 400;
}
.header-demo.navbar .navbar-nav .dropdown .dropdown-menu a {
    font-weight: 400;
}
.header-demo.navbar.header-dark .navbar-nav .nav-item:first-child .dropdown-menu a {
    color: var(--light-gray);
    font-size: 16px;
}
.header-demo.navbar.header-dark .navbar-nav .nav-item:first-child .dropdown-menu a:hover {
    color: var(--white);
}
.header-demo.navbar .navbar-nav .premium-element .sub-title {
    color: #15171c;
    font-weight: 600;
}
.navbar .navbar-nav .dropdown .dropdown-menu {
    box-shadow: 0 95px 75px 0 rgba(0, 0, 0, 0.8);
}
.navbar .bg-solitude-blue {
    background-color: #253384;
}
.navbar .text-cornflower-blue {
    color: #909ff7;
}
.navbar .bg-light-red {
    background-color: #892828;
}
.navbar .text-red {
    color: #ef999f;
}
.navbar .bg-white-ice {
    background-color: #2a6e39;
}
.navbar .text-jade {
    color: #a7c8ae;
}
.navbar .bg-light-majorelle-blue {
    background-color: #423282;
}
.navbar .text-majorelle-blue {
    color: #a58cf5;
}
.navbar .navbar-nav .nav-link {
    font-size: 17px;
}
.btn {
    font-weight: 600;
    text-transform: none;
}
.btn.btn-small {
    font-size: 13px;
}
.btn.btn-large {
    font-size: 15px; 
}
.btn.btn-medium {
    font-size: 15px;
}
.btn.btn-extra-large {
    font-size: 17px;
}
.btn.btn-switch-text.btn-large > span {
    padding: 16px 34px;
}
.btn.btn-switch-text.btn-extra-large > span {
    padding: 18px 40px;
}
.btn.btn-big {
    font-size: 22px;
    background: linear-gradient(60deg,#e77d13,#fa4722,#ee2370,#a23cb3,#2c5cba,#007dab);
    background-size: 200% 200%;
    color: var(--white);
    -webkit-animation: footeranimatedgradient 10s ease infinite alternate;
    animation: footeranimatedgradient 10s ease infinite alternate;
}
.btn.btn-big:active{
    border-color: transparent;
    color: #fff;
}
@-webkit-keyframes footeranimatedgradient {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    to {
        background-position: 0 50%
    }
}
.btn.btn-switch-text.btn-big > span {
    padding: 16px 32px;
}
.btn.btn-transparent-light-gray {
    color: var(--white);
    border-color: rgba(255,255,255,.15);
}
.btn.btn-transparent-light-gray:hover,
.btn.btn-transparent-light-gray:active {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.2);
}
/* text gradient color */
.text-gradient-light-blue-dark-black,
.text-gradient-dark-blue-dark-black,
.text-gradient-light-gray-white {
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
}
.text-gradient-dark-blue-dark-black {
    background: linear-gradient(to bottom, #363a46 38%, #0a0b0d 100%);
}
.text-gradient-light-blue-dark-black {
    background: linear-gradient(to bottom, #2e3148 38%, #15161d 105%);
}
.text-gradient-light-gray-white {
    background: linear-gradient(to bottom, #d8dbe7 38%, #f0f2f8 95%);
}
.text-light-blue{
    color: #ebeef5;
}
.top-45 {
    top: 45%!important;
}
.demo.container-fluid {
    max-width: 1900px;
}
/* bg gradient color */
.bg-gradient-dark-green-light-green {
    background: linear-gradient(to right, #4c9100 40%, #8cb453 100%);
}
.bg-gradient-dark-green-light-blue {
  background: linear-gradient(to right, #125ead 40%, #008ad2 100%);
}
.bg-gradient-dark-green-light-yellow {
  background: linear-gradient(to right, #ffc107 40%, #fff000 100%);
}
.bg-gradient-top-very-light-gray { 
    background-image:linear-gradient(to top, #ffffff, #fefefe, #f3f2f8, #f3f4f9, #f4f5fa);
}
.bg-gradient-very-light-gray-transparent {
    background: linear-gradient(to right, #dddfeb 15%, transparent 100%); 
}
.bg-gradient-light-pink-transparent {
    background: linear-gradient(to right, #d6cad6 15%, transparent 100%); 
}
.bg-gradient-extra-very-light-gray-transparent {
    background: linear-gradient(to right, #ecf0f6 15%, transparent 100%); 
}
.bg-dark-red{
    background: #d1372a;
}
.bg-light-pink{
    background: #eee2ef;
}
.border-color-transparent-white-very-light {
    border-color: rgba(255, 255, 255, 0.2) !important;
}
/* margin */
.mb-minus-90px {
    margin-bottom: -90px;
}
.mb-minus-100px {
    margin-bottom: -100px;
}
.p-14px {
    padding: 14px !important;
}
.vertical-align-text-top {
    vertical-align: text-top;
}
/* counter style 04 */
.elements-social ul li {
    margin: 0 15px;
}
/* icon with text style */
.icon-with-text-style-03 p {
    width: 180px;
}
/* overlay slider bottom */
.bg-overlay-slider-bottom {
    background: linear-gradient(180deg,rgba(255,255,255,0) 14.87%,rgba(255,255,255,0.831169) 55.17%,#FFFFFF 75.13%);
    opacity: 1;
    height: 400px; 
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    content: "";  
    z-index: 9;
}
/* bg overlay light */
.bg-overlay-light {
    background: linear-gradient(180deg,rgba(255,255,255,0) 10%,#FFFFFF 80%);
    opacity: 1;
    height: 280px;
    bottom: 50px; 
    position: absolute;
    left: 0;
    width: 100%;
    content: "";
    z-index: 9;
}
.counter-style-04 .vertical-counter:after {
    font-size: 2.2rem;
    top: -10px;
    position: relative;
    margin-left: 1px;
}
/* trusted customers */
.trusted-customers {
    height: 900px;
    overflow: hidden;
    transition: height .15s ease-out;
    position: relative;
}
.trusted-customers.show-trusted-customers {
    height: auto;
}
.show-trusted-customers .bg-more-trusted {
    display: none;
}
.bg-trusted-customers.show-full .trusted-customers {
    height: auto;
    transition: height .25s ease-in;
}
.bg-more-trusted {
    background: linear-gradient(180deg,rgba(255,255,255,0) 0%,#FFFFFF 70%);
    border-radius: 0 0 5px 5px;
    display: flex;
    justify-content: center;
    padding-top: 150px; 
    transition: all .3s;
    z-index: 11;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}
@media (min-width: 992px) {
    .header-demo.navbar .navbar-nav .premium-element a, .header-demo.navbar .navbar-nav .premium-element a:hover {
        color: #15171c;
        font-size: 16px;
    }
}
@media (max-width: 1450px) {
    .navbar .navbar-nav .nav-link {
        font-size: 16px;
    }
    .header-button .btn.btn-switch-text.purchase-envato.btn-small > span {
        padding: 11px 24px;
    }
    .header-button .btn.btn-small {
        font-size: 12px;
    }
}
@media (max-width: 1400px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 10px;
    }
    .header-button .btn.btn-switch-text.purchase-envato.btn-small > span {
        padding: 11px 15px;
    }
}
@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link {
        font-size: 15px;
    }
    .header-demo.navbar .navbar-nav .nav-link {
        padding-left: 7px;
        padding-right: 7px;
    }
    .lg-mb-minus-40px {
        margin-bottom: -40px;
    }
    .lg-mb-minus-80px {
        margin-bottom: -80px;
    }
    footer h1 {
        font-size: 3.5rem;
        line-height: 3.5rem;
    }
    .header-button .btn.btn-switch-text.purchase-envato.btn-small > span {
        padding: 11px 15px;
    }
    .header-button .btn.btn-small {
        font-size: 11px;
    }
    .fs-320 {
        font-size: 15.625rem;
        line-height: 15.625rem;
    }
}
@media (max-width: 991px) {
    .lg-mb-minus-80px {
        margin-bottom: -70px;
    }
    .md-mb-minus-50px {
        margin-bottom: -50px;
    } 
    .navbar .navbar-nav .dropdown .dropdown-menu {
        box-shadow: none;
    }
    .fs-320 {
        font-size: 12.5rem;
        line-height: 12.5rem;
    }
}
@media (max-width: 767px) {
    .lg-mb-minus-80px {
        margin-bottom: -60px;
    }
    .lg-mb-minus-40px {
        margin-bottom: -30px;
    }
    .md-mb-minus-50px {
        margin-bottom: -40px;
    } 
    .fs-320 {
        font-size: 8.75rem;
        line-height: 8.75rem;
    }
    .bg-overlay-light {
        height: 120px;
    }
    .feature-box-slider .feature-box {
        padding: 20px 30px;
    }
}
@media (max-width: 575px) {
    .lg-mb-minus-80px {
        margin-bottom: -50px;
    }
    .lg-mb-minus-40px {
        margin-bottom: -30px;
    }
    .icon-with-text-style-03 p {
        width: 150px;
    }
}









