@charset "UTF-8";
/*--------------------------------------------
	 サイト基本設定　ここの設定はサイト依存
--------------------------------------------*/
body,
html {
  font-family: "Shippori Mincho", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  position: relative;
  width: 100%;
  line-height: 1.8;
  letter-spacing: 1.2px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  word-break: break-all;
  color: #020202;
  font-size: 16px;
  font-weight: 500;
  scroll-behavior: smooth; }

body img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast; }

html.fixed {
  overflow: hidden; }

a {
  color: #020202;
  text-decoration: none;
  word-wrap: break-word; }
  a:hover {
    color: #020202;
    transition: 0.7s; }

p,
li p,
address,
table {
  font-size: 16px;
  line-height: 1.875;
  font-style: normal; }

li {
  font-size: 16px;
  line-height: 1.425; }
  @media (max-width: 896px) {
    li {
      font-size: 16px; } }

a img:hover {
  opacity: 0.7;
  transition: 0.7s; }

a[href^="tel:"] {
  pointer-events: none; }
  @media (max-width: 896px) {
    a[href^="tel:"] {
      pointer-events: none; } }

[id] {
  scroll-margin-top: 87px; }
  @media (max-width: 896px) {
    [id] {
      scroll-margin-top: 60px; } }

#wrapper {
  position: relative; }

/*--------------------------------------------
	Header / ヘッダー
--------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFF;
  width: 100%;
  height: 87px;
  z-index: 3;
  box-sizing: border-box; }
  @media (max-width: 896px) {
    header {
      width: 100%;
      height: 60px;
      padding: 0; } }
  header .hd_inner {
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 0 0 40px;
    box-sizing: border-box; }
    @media (max-width: 896px) {
      header .hd_inner {
        display: flex;
        padding: 0 0 0 20px; } }
    header .hd_inner .hd_logo {
      width: 49px;
      height: 56px; }
      @media (max-width: 896px) {
        header .hd_inner .hd_logo {
          width: 30px;
          height: 35px;
          line-height: 1; } }
    header .hd_inner .hd_menu {
      display: flex;
      align-items: center;
      height: 100%; }
      header .hd_inner .hd_menu .hd_gnav {
        height: 100%; }
        header .hd_inner .hd_menu .hd_gnav li {
          position: relative;
          display: flex;
          align-items: center;
          height: 100%;
          padding: 0 15px; }
          header .hd_inner .hd_menu .hd_gnav li a {
            position: relative;
            font-size: 16px;
            font-family: "Noto Sans JP", sans-serif;
            font-optical-sizing: auto;
            font-weight: 600;
            color: #020202;
            z-index: 1; }
          header .hd_inner .hd_menu .hd_gnav li:hover::after {
            position: absolute;
            content: "";
            width: 100%;
            height: 4px;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            background: #C9FF33;
            transition: 1.2s;
            z-index: 0; }

.hd_download {
  padding: 0 !important; }
  .hd_download a {
    display: flex;
    align-items: center;
    height: 100%;
    background: #C9FF33;
    padding: 0 22px; }
    .hd_download a:hover {
      background: #020202;
      color: #FFF !important;
      transform: 1.2s; }

.hd_contact {
  padding: 0 !important; }
  .hd_contact a {
    display: flex;
    align-items: center;
    height: 100%;
    background: #020202;
    padding: 0 22px;
    color: #FFF !important; }
    .hd_contact a:hover {
      background: #C9FF33;
      color: #020202 !important;
      transform: 1.2s; }

/*--------------------------------------------
	ハンバーガーメニュー
--------------------------------------------*/
.sp_nav {
  pointer-events: none;
  position: fixed;
  overflow: scroll;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100%;
  transform: translateX(100vw);
  transition: all .3s linear;
  background: #FFF; }

.sp_nav.active {
  pointer-events: auto;
  transform: translateX(0); }

.nav-inner {
  height: 100%;
  padding: 2.75em 2.2em 0;
  box-sizing: border-box;
  overflow: scroll; }
  .nav-inner .form_area {
    margin-bottom: 1.2em; }
  .nav-inner address {
    font-size: 0.825rem;
    line-height: 1.625; }

.menu-btn {
  position: fixed;
  top: 12px;
  right: 12px;
  display: flex;
  width: 46px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: #FFF;
  z-index: 9999;
  pointer-events: auto;
  /* 必要に応じてクリック有効 */ }

.menu-btn span {
  position: absolute;
  top: 1.225em;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  transition: 0.3s ease transform, 0.3s ease opacity; }

.menu-btn span:first-child {
  transform: translate(-50%, -10px); }

.menu-btn span:last-child {
  transform: translate(-50%, 9px); }

.menu-btn.active span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
  background: #000; }

.menu-btn.active span:nth-child(2) {
  opacity: 0; }

.menu-btn.active span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
  background: #000; }

.sp_logo {
  width: 25px;
  margin: 0 auto; }

.sp_nav_list {
  margin-bottom: 1.725em; }
  .sp_nav_list li {
    vertical-align: middle;
    font-size: 0.8rem;
    border-bottom: 1px solid #c9c8c8;
    color: #FFF;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    font-weight: 900; }
    .sp_nav_list li a {
      display: block;
      padding: 1.725em 1.2em;
      font-weight: 900; }
  .sp_nav_list .hd_download,
  .sp_nav_list .hd_contact {
    margin-top: 12px;
    border-bottom: none; }

/*--------------------------------------------
	Contents / コンテンツ共通
--------------------------------------------*/
main {
  position: relative;
  margin-top: 87px; }
  @media (max-width: 896px) {
    main {
      margin-top: 60px; } }

.s_inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 62px 0;
  box-sizing: border-box; }
  @media (max-width: 896px) {
    .s_inner {
      max-width: 100%;
      padding: 70px 15px; } }

.viewPC {
  display: block; }
  @media (max-width: 896px) {
    .viewPC {
      display: none !important; } }

.viewSP {
  display: none !important; }
  @media (max-width: 896px) {
    .viewSP {
      display: block !important; } }

.flexbox {
  display: flex;
  flex-wrap: nowrap; }
  @media (max-width: 896px) {
    .flexbox {
      display: block; } }

.titleLeft {
  position: relative;
  margin-bottom: 30px;
  font-size: 24px; }
  @media (max-width: 896px) {
    .titleLeft {
      font-size: 20px; } }
  .titleLeft::before {
    position: absolute;
    top: 50%;
    left: -110px;
    transform: translateY(-50%);
    content: "";
    background-color: #C9FF33;
    width: 100px;
    height: 4px; }
    @media (max-width: 896px) {
      .titleLeft::before {
        left: -65px;
        width: 50px; } }
  .titleLeft span {
    margin-left: 30px;
    font-size: 20px;
    font-weight: 400; }

.mainTitle {
  margin-bottom: 48px;
  font-size: 30px;
  text-align: center; }
  @media (max-width: 896px) {
    .mainTitle {
      margin-bottom: 30px;
      font-size: 24px;
      line-height: 1.725; } }
  .mainTitle span {
    display: block;
    font-size: 16px;
    font-family: "Cardo", serif;
    font-weight: 400;
    font-style: normal; }

/*-------------------------------------
	メインコンテンツ
--------------------------------------*/
.circle {
  position: absolute;
  top: 187px;
  left: -250px;
  width: 1200px;
  height: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: visible;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.5s ease;
  pointer-events: none; }
  @media (max-width: 896px) {
    .circle {
      display: none; } }
  .circle .inner {
    position: relative;
    width: 1200px;
    height: 1200px;
    border-radius: 50%;
    animation: rotateAnim 120s linear infinite; }
  .circle .text {
    position: relative;
    width: 100%;
    height: 100%;
    font-size: 20px;
    font-weight: 700;
    color: #C9FF33; }
    .circle .text span {
      position: absolute;
      transform-origin: center center;
      white-space: pre; }

.circle.visible {
  opacity: 1;
  pointer-events: auto; }

@keyframes rotateAnim {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
#s_mv {
  position: relative;
  background: #fff;
  overflow: hidden;
  height: 100vh;
  margin-top: -87px; }
  @media (max-width: 896px) {
    #s_mv {
      height: 100dvh;
      margin-top: -60px; } }
  #s_mv .mv_loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    animation: fadeOut 1s ease 2s forwards;
    /* 2秒後に1秒かけて消える */ }
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden; } }
  #s_mv .mv_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: logoFadeIn 2s ease forwards, logoFadeOut 1s ease 2s forwards; }
    #s_mv .mv_logo img {
      width: 49px; }
@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.95); }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); } }
@keyframes logoFadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
  #s_mv .mv_img {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
    background: #020202;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 2s;
    transform: translateZ(0); }
@keyframes fadeIn {
  to {
    opacity: 1; } }
    #s_mv .mv_img .flexbox {
      gap: 0;
      animation: scrollLoop 60s linear infinite;
      width: max-content; }
      @media (max-width: 896px) {
        #s_mv .mv_img .flexbox {
          display: flex !important; } }
    #s_mv .mv_img li {
      flex-shrink: 0;
      height: 100%;
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
      background: #020202;
      will-change: transform, opacity;
      backface-visibility: hidden;
      transform-style: preserve-3d; }
      #s_mv .mv_img li img {
        height: 100%;
        width: auto;
        object-fit: contain;
        object-fit: contain;
        will-change: transform, opacity;
        backface-visibility: hidden; }
        @media (max-width: 896px) {
          #s_mv .mv_img li img {
            width: auto;
            height: 100vh; } }
    #s_mv .mv_img li.show {
      opacity: 1;
      transform: translateY(0); }
@keyframes scrollLoop {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
  #s_mv .mv_text {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 1; }
    @media (max-width: 896px) {
      #s_mv .mv_text {
        top: 42%;
        margin-right: 15px;
        z-index: 0; } }
    #s_mv .mv_text span {
      opacity: 0;
      transition: opacity 1s ease; }
    #s_mv .mv_text .mv_text_small {
      display: inline-block;
      background: #C9FF33;
      padding: 3px 15px 3px 83px; }
      @media (max-width: 896px) {
        #s_mv .mv_text .mv_text_small {
          padding: 3px 15px 3px 25px; } }
      #s_mv .mv_text .mv_text_small span {
        font-size: 35px; }
        @media (max-width: 896px) {
          #s_mv .mv_text .mv_text_small span {
            font-size: 20px; } }
    #s_mv .mv_text .mv_text_large {
      display: inline-block;
      background: #C9FF33;
      padding: 3px 15px 3px 83px; }
      @media (max-width: 896px) {
        #s_mv .mv_text .mv_text_large {
          padding: 3px 15px 3px 25px; } }
      #s_mv .mv_text .mv_text_large span {
        font-size: 45px; }
        @media (max-width: 896px) {
          #s_mv .mv_text .mv_text_large span {
            font-size: 26px; }
            #s_mv .mv_text .mv_text_large span:nth-child(11) {
              display: contents !important; }
              #s_mv .mv_text .mv_text_large span:nth-child(11)::after {
                content: '\A';
                white-space: pre;
                display: inline; } }
  #s_mv .mv_scroll_btn {
    opacity: 0;
    transition: opacity 1s ease;
    position: absolute;
    left: 48px;
    bottom: 5px;
    z-index: 1; }
    @media (max-width: 896px) {
      #s_mv .mv_scroll_btn {
        bottom: 0; } }
    #s_mv .mv_scroll_btn img {
      width: 14px; }
      @media (max-width: 896px) {
        #s_mv .mv_scroll_btn img {
          width: 13px; } }
  #s_mv .mv_scroll_btn.visible {
    opacity: 1; }

#s_head {
  position: relative;
  padding: 0 100px;
  z-index: 2; }
  @media (max-width: 896px) {
    #s_head {
      padding: 0 15px; } }
  @media (max-width: 896px) {
    #s_head .s_inner {
      padding: 70px 15px 70px 50px; } }
  @media (max-width: 896px) {
    #s_head .s_head_textArea {
      margin-bottom: 30px; } }
  #s_head .s_head_textArea p {
    font-size: 20px; }
    @media (max-width: 896px) {
      #s_head .s_head_textArea p {
        font-size: 16px; } }
    #s_head .s_head_textArea p .highlight {
      background-image: linear-gradient(transparent 60%, #C9FF33 60%);
      background-repeat: no-repeat;
      background-size: 100% 100%;
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone; }
  #s_head .s_head_imgArea img {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform; }
  #s_head .s_head_imgArea figcaption {
    margin-top: 35px;
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: "600";
    text-align: center; }
  #s_head .s_head_imgArea.img-visible img {
    opacity: 1;
    transform: translateY(0); }

#s_problem {
  background-color: #EEEEEE; }
  #s_problem .s_inner {
    width: 993px; }
    #s_problem .s_inner .problem_list {
      position: relative;
      flex-wrap: wrap;
      margin-bottom: 144px; }
      #s_problem .s_inner .problem_list::after {
        position: absolute;
        left: 50%;
        bottom: -100px;
        transform: translateX(-50%);
        content: "";
        background-image: url(../img/icon_arrow.png);
        width: 140px;
        height: 94px; }
      #s_problem .s_inner .problem_list li {
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100% / 3 - 20px);
        height: 182px;
        margin: 0 10px 18px;
        background-color: #FFF;
        text-align: center;
        transition: all 0.8s ease;
        text-align: center; }
        @media (max-width: 896px) {
          #s_problem .s_inner .problem_list li {
            margin: 0 0 20px;
            width: 100%;
            height: 165px; } }
        #s_problem .s_inner .problem_list li:hover {
          background-color: #C9FF33;
          transition: 1.25s; }
        #s_problem .s_inner .problem_list li p {
          font-family: "Noto Sans JP", sans-serif;
          font-optical-sizing: auto;
          font-weight: "600";
          font-size: 20px; }
          @media (max-width: 896px) {
            #s_problem .s_inner .problem_list li p {
              font-size: 18px; } }
    #s_problem .s_inner .problem_bottom_text p {
      font-size: 25px;
      font-weight: 600;
      text-align: center; }
      @media (max-width: 896px) {
        #s_problem .s_inner .problem_bottom_text p {
          font-size: 18px; } }

#s_value .s_inner {
  width: 1116px; }
  #s_value .s_inner .valueList {
    flex-wrap: wrap;
    justify-content: space-between; }
    #s_value .s_inner .valueList li {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 261px;
      height: 259px;
      background: url(../img/value_bg01.svg);
      background-repeat: no-repeat;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
      transition-delay: 0s; }
      @media (max-width: 896px) {
        #s_value .s_inner .valueList li {
          margin: 0 auto 20px; } }
      #s_value .s_inner .valueList li.is-visible {
        opacity: 1;
        transform: translateY(0); }
      #s_value .s_inner .valueList li:nth-child(2) {
        background: url(../img/value_bg02.svg);
        background-repeat: no-repeat; }
      #s_value .s_inner .valueList li:nth-child(3) {
        background: url(../img/value_bg03.svg);
        background-repeat: no-repeat; }
      #s_value .s_inner .valueList li:nth-child(4) {
        background: url(../img/value_bg04.svg);
        background-repeat: no-repeat; }
      #s_value .s_inner .valueList li::before {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        background-image: url(../img/icon_check.svg);
        background-repeat: no-repeat;
        width: 71px;
        height: 71px; }
      #s_value .s_inner .valueList li img {
        display: block;
        margin: 0 auto;
        width: 42px;
        height: 44px; }
      #s_value .s_inner .valueList li p {
        font-family: "Noto Sans JP", sans-serif;
        font-optical-sizing: auto;
        font-size: 14px;
        text-align: center; }

#s_process {
  background: #EEEEEE; }
  #s_process .s_inner {
    width: 1073px; }
    #s_process .s_inner .processList {
      flex-wrap: wrap; }
      #s_process .s_inner .processList li {
        position: relative;
        margin: 0 197px 60px 0;
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
        transition-delay: var(--delay, 0s); }
        #s_process .s_inner .processList li.is-visible {
          opacity: 1;
          transform: translateY(0); }
        @media (max-width: 896px) {
          #s_process .s_inner .processList li {
            margin: 0 0 130px 0; } }
        #s_process .s_inner .processList li::after {
          position: absolute;
          top: 50%;
          right: -150px;
          transform: translateY(-50%);
          content: "";
          background-image: url(../img/icon_arrow.svg);
          background-repeat: no-repeat;
          width: 120px;
          height: 298px; }
          @media (max-width: 896px) {
            #s_process .s_inner .processList li::after {
              top: auto;
              right: auto;
              bottom: -120px;
              left: 50%;
              transform: translateX(-50%);
              width: 140px;
              height: 94px;
              background: url(../img/icon_arrow.png); } }
        #s_process .s_inner .processList li:nth-child(1) {
          width: 325px; }
          @media (max-width: 896px) {
            #s_process .s_inner .processList li:nth-child(1) {
              width: auto; } }
        #s_process .s_inner .processList li:nth-child(2) {
          width: 382px;
          margin-right: 0; }
          @media (max-width: 896px) {
            #s_process .s_inner .processList li:nth-child(2) {
              width: auto; } }
        #s_process .s_inner .processList li:nth-child(3) {
          width: 391px;
          margin-left: 120px; }
          @media (max-width: 896px) {
            #s_process .s_inner .processList li:nth-child(3) {
              width: auto;
              margin-left: 0; } }
        #s_process .s_inner .processList li:nth-child(4) {
          width: 327px;
          margin-right: 0; }
          @media (max-width: 896px) {
            #s_process .s_inner .processList li:nth-child(4) {
              width: auto;
              margin-bottom: 0; } }
          #s_process .s_inner .processList li:nth-child(4)::after {
            display: none; }
        #s_process .s_inner .processList li .number {
          position: relative;
          font-family: "Cardo", serif;
          font-weight: 400;
          font-style: italic; }
          @media (max-width: 896px) {
            #s_process .s_inner .processList li .number {
              margin-left: 20px; } }
          #s_process .s_inner .processList li .number span {
            position: relative;
            font-size: 40px;
            z-index: 1; }
          #s_process .s_inner .processList li .number::after {
            position: absolute;
            top: 20px;
            left: -20px;
            content: "";
            background-color: #C9FF33;
            width: 66px;
            height: 66px;
            border-radius: 50%; }
        #s_process .s_inner .processList li .processListTitle {
          margin-bottom: 22px;
          font-size: 30px; }
          @media (max-width: 896px) {
            #s_process .s_inner .processList li .processListTitle {
              font-size: 20px; } }
        #s_process .s_inner .processList li p {
          margin-bottom: 25px;
          font-size: 16px;
          font-family: "Noto Sans JP", sans-serif;
          font-optical-sizing: auto;
          font-weight: "600"; }
          @media (max-width: 896px) {
            #s_process .s_inner .processList li p {
              font-size: 16px; } }
        #s_process .s_inner .processList li .support p {
          margin-bottom: 8px;
          font-size: 15px;
          font-family: "Noto Sans JP", sans-serif;
          font-optical-sizing: auto;
          font-weight: "500"; }
        #s_process .s_inner .processList li .support .supportList {
          flex-wrap: wrap; }
          @media (max-width: 896px) {
            #s_process .s_inner .processList li .support .supportList {
              display: flex; } }
          #s_process .s_inner .processList li .support .supportList li {
            width: auto;
            margin: 0 16px 8px 0;
            background: #FFF;
            border: 1px solid #ABABAB;
            border-radius: 30px;
            padding: 8px 16px;
            font-size: 12px;
            font-family: "Noto Sans JP", sans-serif;
            font-optical-sizing: auto;
            font-weight: "500";
            opacity: 1 !important;
            transform: none !important;
            transition: none !important; }
            #s_process .s_inner .processList li .support .supportList li::after {
              display: none; }
    #s_process .s_inner .processList li.is-visible {
      opacity: 1;
      transform: translateY(0); }

#s_works .s_inner {
  max-width: 1180px;
  margin: 0 auto; }
  #s_works .s_inner .works_list {
    display: flex; }
    #s_works .s_inner .works_list .slick-slide {
      height: auto !important; }
    #s_works .s_inner .works_list .slick-track {
      display: flex !important; }
    #s_works .s_inner .works_list li {
      position: relative;
      background: #e7e9e7;
      margin: 0 15px;
      padding: 16px 16px 60px;
      font-size: 15px;
      line-height: 1.6;
      transition: 0.2s; }
      #s_works .s_inner .works_list li .works_list_image {
        position: static;
        margin-bottom: 15px;
        padding-bottom: 0; }
        #s_works .s_inner .works_list li .works_list_image img {
          position: static;
          transform: none; }
      #s_works .s_inner .works_list li .title {
        font-size: 16px;
        font-family: "Noto Sans JP", sans-serif;
        font-optical-sizing: auto;
        font-weight: "600";
        margin-bottom: 5px; }
      #s_works .s_inner .works_list li p {
        font-size: 13px;
        font-family: "Noto Sans JP", sans-serif;
        font-optical-sizing: auto;
        margin-bottom: 0; }
      #s_works .s_inner .works_list li .andmore {
        position: absolute;
        bottom: 16px;
        right: 16px; }

.andmore {
  text-align: right; }
  .andmore .andmore_btn {
    position: relative;
    display: inline-block;
    font-size: 16px !important;
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: "600"; }
    .andmore .andmore_btn::after {
      position: absolute;
      top: 9px;
      left: -33px;
      content: "";
      background: url(../img/icon_andmore.svg);
      width: 18px;
      height: 16px; }

#s_link {
  background: #EEEEEE; }
  #s_link .s_inner {
    width: 1090px; }
    #s_link .s_inner .linkList {
      justify-content: space-between;
      align-items: stretch; }
      #s_link .s_inner .linkList li {
        width: 516px; }
        @media (max-width: 896px) {
          #s_link .s_inner .linkList li {
            width: auto;
            margin-bottom: 30px; } }
        #s_link .s_inner .linkList li .linkTitle {
          font-size: 32px;
          font-family: "Cardo", serif;
          font-weight: 600;
          font-style: normal; }
          @media (max-width: 896px) {
            #s_link .s_inner .linkList li .linkTitle {
              font-size: 20px; } }
        #s_link .s_inner .linkList li .linkArea {
          background: #FFF;
          box-shadow: 3px 3px 5px 0px rgba(0, 0, 0, 0.15); }
          #s_link .s_inner .linkList li .linkArea .linkAreaBox {
            padding: 8px 20px; }
            #s_link .s_inner .linkList li .linkArea .linkAreaBox p {
              margin-bottom: 17px;
              font-size: 14px;
              line-height: 1.6; }
              @media (max-width: 896px) {
                #s_link .s_inner .linkList li .linkArea .linkAreaBox p {
                  margin-bottom: 10px; } }
            #s_link .s_inner .linkList li .linkArea .linkAreaBox .linkAreaTitle {
              font-size: 26px;
              font-family: "Noto Sans JP", sans-serif;
              font-optical-sizing: auto;
              font-weight: "600"; }
              @media (max-width: 896px) {
                #s_link .s_inner .linkList li .linkArea .linkAreaBox .linkAreaTitle {
                  font-size: 20px; } }
        #s_link .s_inner .linkList li:nth-child(2) .linkArea {
          background: none;
          box-shadow: none; }

#s_othermenu p {
  margin-bottom: 48px;
  font-size: 20px;
  font-weight: 600;
  text-align: center; }
  @media (max-width: 896px) {
    #s_othermenu p {
      margin-bottom: 30px;
      font-size: 16px; } }
#s_othermenu .othermenuList {
  width: 1198px;
  margin: 0 auto;
  justify-content: space-between; }
  @media (max-width: 896px) {
    #s_othermenu .othermenuList {
      width: auto; } }
  #s_othermenu .othermenuList li {
    width: calc(100% / 3 - 20px);
    margin: 0 10px; }
    @media (max-width: 896px) {
      #s_othermenu .othermenuList li {
        width: 100%;
        margin: 0 0 20px; } }

#s_Recommend .WebinarArea {
  margin-bottom: 100px; }
@media (max-width: 896px) {
  #s_Recommend .WebinarArea .recommendTitle,
  #s_Recommend .blogArea .recommendTitle {
    padding-left: 50px; } }
#s_Recommend .WebinarArea .recommend_list,
#s_Recommend .blogArea .recommend_list {
  max-width: 1180px;
  margin: 0 auto; }
  #s_Recommend .WebinarArea .recommend_list .slick-track,
  #s_Recommend .blogArea .recommend_list .slick-track {
    display: flex !important; }
  #s_Recommend .WebinarArea .recommend_list li,
  #s_Recommend .blogArea .recommend_list li {
    background: #e7e9e7;
    height: auto !important;
    margin: 0 15px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.6;
    transition: 0.2s; }
    #s_Recommend .WebinarArea .recommend_list li img,
    #s_Recommend .blogArea .recommend_list li img {
      margin-bottom: 15px; }
    #s_Recommend .WebinarArea .recommend_list li p,
    #s_Recommend .blogArea .recommend_list li p {
      font-size: 16px;
      font-family: "Noto Sans JP", sans-serif;
      font-optical-sizing: auto;
      font-weight: "600";
      margin-bottom: 5px; }

/*--------------------------------------------
	Footer / フッター
--------------------------------------------*/
footer {
  background: #C9FF33; }
  footer .ft_inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 70px 0 103px;
    justify-content: space-between; }
    @media (max-width: 896px) {
      footer .ft_inner {
        padding: 70px 15px 30px; } }
    footer .ft_inner .footerCopy {
      width: 31%;
      text-align: center; }
      @media (max-width: 896px) {
        footer .ft_inner .footerCopy {
          width: 100%; } }
      footer .ft_inner .footerCopy img {
        margin-bottom: 126px; }
    footer .ft_inner .footerLink {
      width: 34%; }
      @media (max-width: 896px) {
        footer .ft_inner .footerLink {
          width: 100%; } }
      @media (max-width: 896px) {
        footer .ft_inner .footerLink ul {
          margin-bottom: 30px; } }
      footer .ft_inner .footerLink ul li {
        position: relative;
        margin: 0 0 20px 60px;
        padding-left: 28px; }
        footer .ft_inner .footerLink ul li::after {
          position: absolute;
          top: 15px;
          left: 0;
          content: "";
          width: 12px;
          height: 1px;
          background: #020202; }
        footer .ft_inner .footerLink ul li a {
          font-family: "Noto Sans JP", sans-serif;
          font-size: 16px;
          font-optical-sizing: auto;
          font-weight: "600";
          padding-bottom: 5px;
          background-image: linear-gradient(#020202, #020202);
          background-repeat: no-repeat;
          background-position: bottom left;
          background-size: 0 1px;
          transition: background-size 0.3s; }
          @media (max-width: 896px) {
            footer .ft_inner .footerLink ul li a {
              font-size: 14px; } }
          footer .ft_inner .footerLink ul li a:hover {
            background-position: bottom right;
            background-size: 100% 1px; }
        footer .ft_inner .footerLink ul li:first-child {
          margin: 0 0 33px 30px; }
          footer .ft_inner .footerLink ul li:first-child a {
            font-size: 20px;
            font-weight: 600; }
            @media (max-width: 896px) {
              footer .ft_inner .footerLink ul li:first-child a {
                font-size: 16px; } }
      footer .ft_inner .footerLink ul .notLink {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 16px;
        font-optical-sizing: auto;
        font-weight: "600";
        color: #6c6b6b; }
  footer small {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: "600";
    font-size: 16px;
    text-align: left; }
    @media (max-width: 896px) {
      footer small {
        text-align: right;
        font-size: 13px; } }

.download_banner {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1; }

.download_banner.visible {
  opacity: 1; }

.downloadbanneFloating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 250px;
  padding: 10px;
  max-width: 300px;
  transition: opacity 0.3s ease; }
  @media (max-width: 896px) {
    .downloadbanneFloating {
      bottom: 10px;
      right: 10px;
      width: 60%; } }

/* 画像をレスポンシブに */
.downloadbanneFloating img {
  width: 100%;
  height: auto;
  display: block; }

/* 閉じるボタン */
.banner_close_btn {
  position: absolute;
  top: -11px;
  right: 14px;
  border: none;
  background: #020202;
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  color: #FFF;
  border-radius: 3px 3px 0 0; }
