@charset "utf-8";
/* reset */
  html, body, div, span, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  abbr, address, cite, code,
  del, dfn, em, img, ins, kbd, q, samp,
  small, strong, sub, sup, var,
  b, i,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, figcaption, figure, 
  footer, header, hgroup, menu, nav, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
  }
  
  *,
  *:after,
  *::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  body {
    line-height: 1;
    background: #fff;
    color: #000;
  }

  article, aside, canvas, details, figcaption, figure,
  footer, header, hgroup, menu, nav, section, summary, main {
    display: block;
  }

  nav ul {
    list-style: none;
  }

  blockquote, q {
    quotes: none;
  }

  blockquote:before, blockquote:after,
  q:before, q:after {
    content: '';
    content: none;
  }

  a {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
  }

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

  ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
  }

  mark {
    background-color: #ff9;
    color: #000; 
    font-style: italic;
    font-weight: bold;
  }

  del {
    text-decoration: line-through;
  }

  abbr[title], dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
  }

  input, select {
    vertical-align: middle;
  }


  /*-- ClearFix --*/
  /* For modern browsers */
  .clearfix:before,
  .clearfix:after {
    content:"";
    display:table;
  }
  .clearfix:after {
    clear:both;
  } 
  /* For IE 6/7 (trigger hasLayout) */
  .clearfix {
    zoom:1;
  }

  li img {
      vertical-align: bottom;
  }

  /* Reset input[type="search"] */
  input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
  }
  input[type="search"]:focus {
    outline-offset: -2px;
  }
  input[type="search"]::-webkit-search-decoration {
    display: none;
  }

  /* iOS reset */
  input[type="submit"] {
    -webkit-appearance: none;
  }


  @media screen and (min-width: 768px) {
    a { 
      -webkit-tap-highlight-color:rgba(0, 0, 0, 0); 
    }

    @-moz-document url-prefix() {
      * { font-feature-settings: "palt"; }
    }
    @media screen and (-webkit-min-device-pixel-ratio:0) {
      * { font-feature-settings: "palt"; }
    }
  }
  /* ##############################################################################

    KEYFRAMES

############################################################################## */

@keyframes btn {
    0%    { right: -20px; width: 40px; }
    20%   { right: -20px; width: 0; }
    40%   { right: 20px; width: 0; }
    60%   { right: -20px; width: 40px; }
    100%  { right: -20px; width: 40px; }
  }

  .fadein {
    opacity : 0;
    transform : translate(0, -16px);
    transition: all 3.5s cubic-bezier(.165, .84, .44, 1);
  }
  .fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
  }


/* ##############################################################################

    COMMON

############################################################################## */

  html {
    height: 100%;
    overflow-y: scroll;
  }
  body {
    padding-top: 120px;
    font-family: 'Koburina Gothic W3 JIS2004';
    overflow: hidden;
  }
  body.page-contact {
    padding-top: 0;
  }

  @media screen and (max-width: 767px) {
    body {
      padding-top: 56px;
    }
  }

/* layout
**************************************** */

  /* --- inner --- */
  .inner {
    width: 90%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
  .inner-sm { max-width: 1080px; }
  .inner-lg { max-width: calc(100% - 112px); }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 85px;
    padding-bottom: 120px;
  }

  @media print, screen and (max-width: 1080px) {
    /* --- inner --- */
    .inner { width: 90%; }
    .inner-lg { max-width: 90%; }
  }
  @media screen and (max-width: 767px) {
    /* --- inner --- */
    .inner { width: 86%; }
    .inner-lg { max-width: 86%; }

    /* --- section_pdg --- */
    .section_pdg {
      padding-top: 50px;
      padding-bottom: 50px;
    }
    .section_pdg-sm {
      padding-top: 24px;
      padding-bottom: 24px;
    }
  }

/* flex
**************************************** */

  .flex-col1 {
    display: block;
  }
  .flex-col2,
  .flex-col3,
  .flex-col4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 > * {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col2 > *:nth-child(even) { margin-right: 0; }
  .flex-col3 > * {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .flex-col3 > *:nth-child(3n) { margin-right: 0; }
  .flex-col4 > * {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .flex-col4 > *:nth-child(4n) { margin-right: 0; }

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

    .flex-col2.flex-sp-block > *,
    .flex-col3.flex-sp-block > *,
    .flex-col4.flex-sp-block > * {
      width: 100%;
      margin-bottom: 16px;
      margin-right: 0;
    }
    .flex-col2.flex-sp-block > *:last-child,
    .flex-col3.flex-sp-block > *:last-child,
    .flex-col4.flex-sp-block > *:last-child {
      margin-bottom: 0;
    }
    .flex-sp-col2 > *,
    .flex-sp-col2.flex-col3 > *:nth-child(3n) {
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col2 > *:nth-child(even) { margin-right: 0; }
    .flex-sp-col3 > *,
    .flex-sp-col3.flex-col4 > *:nth-child(4n) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3 > *:nth-child(3n) { margin-right: 0; }
  }

/* bg
********************************************** */
  .lps_sec:nth-child(2n) {
    background-color: #eee5da;
  }
  .bg-main {
    background-color: #eee5da;
  }
  .bg-sub {
    background-color: #eee;
  }

/* ttl
********************************************** */
  /* --- page_ttl --- */
  .page_ttl {
    position: relative;
    z-index: 10;
    overflow: hidden;
    height: 200px;
    line-height: 1.5;
  }
  .page_ttl--bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-position: center;
    background-color:#eee5da;
  }
  .page_ttl--bg.bg {
    background-size: cover;
  }
  .page_ttl-jp {
    display: block;
    font-size: 250%;
    color: #0d81c5;
    letter-spacing: .1em;
  }
  .page_ttl-en {
    display: inline-block;
    margin-top: 14px;
    color: #6c87a9;
    text-transform: uppercase;
    letter-spacing: .1em;
  }

  /* --- ttl --- */
  .ttl-01,
  .ttl-02,
  .ttl-03 {
    position: relative;
    z-index: 1;
    letter-spacing: .1em;
    line-height: 1.6;
  }
  .ttl-01 {
    margin-bottom: 72px;
    color: #6385c3;
    font-size: 34px;
    font-weight: bold;
  }
  .ttl-01-deco {
    position: relative;
  }
  .ttl-01-deco::before {
    content: "";
    display: block;
    width: 39px;
    height: 40px;
    margin: 0 auto 28px;
  }
  .ttl-01 .small {
    display: block;
    margin-top: 4px;
    font-size: 34%;
    letter-spacing: .08em;
  }
  .ttl-02 {
    margin-bottom: 56px;
    font-size: 250%;
  }
  .ttl-03 {
    margin-bottom: 40px;
    font-size: 34px;
  }
  .ttl-02 ~ .lps_parts .ttl-03 {
    color: #6c87a9;
  }
  .lps_sec .ttl-01,
  .lps_sec .ttl-02,
  .lps_sec .ttl-03:not(:last-child) {
    margin-bottom: 1em;
  }
  .lps_sec .column-3 .ttl-03 {
    font-size: 160%;
  }
  .txtarea .ttl-03{color: #244d6b;line-height: 47px;}

  @media screen and (max-width: 767px) {
    /* --- page_ttl --- */
    .page_ttl {
      height: 96px;
    }
    .page_ttl--bg {
      background-image: none;
      background-color: #eee5da;
    }
    .page_ttl-jp {
      font-size: 143%;
    }
    .page_ttl-en {
      margin-top: 4px;
      font-size: 79%;
    }

    /* --- ttl --- */
    .ttl-01 {
      margin-bottom: 40px;
      font-size: 179%;
    }
    .ttl-01-deco::before {
      width: 19.5px;
      height: 20px;
      margin: 0 auto 16px;
    }
    .ttl-02 {
      margin-bottom: 28px;
      font-size: 150%;
    }
    .ttl-03,
    .lps_sec .column-3 .ttl-03 {
      margin-bottom: 20px;
      font-size: 136%;
    }
    .lps_sec .ttl-01,
    .lps_sec .ttl-02,
    .lps_sec .ttl-03:not(:last-child) {
      margin-bottom: .8em;
      line-height: 35px;
    }
  }

/* breadcrumbs
**************************************** */
  .breadcrumbs {
    padding: 16px 0;
    font-size: 87%;
  }
  .breadcrumbs a {
    color: #6c87a9;
    text-decoration: underline;
  }

/* txt
**************************************** */
  .txt-lg { font-size: 107%; /*17px*/ }
  .txt-sm { font-size: 94%; /*15px*/ }
  .txt-gr {  color: #6c87a9; }
  .txt-wh,
  .txt-wh * { color: #314469; }
  .txt-main,
  .txt-main * { color: #6c87a9; }
  .txt-sub,
  .txt-sub * { color: #eee; }

  /* --- font --- */
  .font-jp,
  .ttl-02,
  .ttl-03,
  .editor-ttl,
  .editor-ttl2,
  .editor-ttl3 {
    line-height: 25px;
    font-weight: bold;
  }
  .font-en {
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
  }

  @media screen and (max-width: 767px) {
    .txt-lg { font-size: 108%; /*15px*/ }
    .txt-sm { font-size: 93%; /*13px*/ }
  }

/* btn
********************************************** */
  .home .btn + .btn,
  .footer_contact .btn + .btn {
    margin-left: 64px;
  }
  .lps_sec .btn + .btn {
    margin-top: 8px;
  }
  .btn a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 32px 88px;
    border-radius: 30px;
    width: 100%;
    max-width: 400px;
    font-size: 113%;
    line-height: 1.4;
    letter-spacing: .1em;
    text-align: center;
    border-radius: 45px;
    background-color: #ddeefd;
  }
  .lps_sec:nth-child(2n) .btn a,
  .bg-main .btn a,
  .home_blog .btn a {
    background-color: #ddeefd;
  }
  .btn svg {
    fill: #454948;
    transition: all .4s ease-out;
  }
  .btn a:hover {
    background-color: #edf8ff;
  }
  .btn a::before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: -20px;
    display: block;
    width: 40px;
    height: 0;
    border-top: solid 2px #6c87a9;
    transition: all .2s ease-out;
  }
  .lps_sec .btn a[target="_blank"]::before,
  .lps_sec .btn a[href$=".pdf"]::before{
    display: none;
  }
  .btn.btn-next_page a {
    max-width: 100%;
    border-radius: 0;
    font-size: 120%;
    text-align: left;
  }

  /* --- btn-wh --- */
  .btn-wh a {
    color: #000;
    background-color: #fff;
  }
  .btn-wh svg {
    fill: #000;
  }

  @media print, screen and (min-width: 768px) {
    .btn a:hover::before {
      animation: btn 2.5s ease infinite ;
    }
  }
  @media screen and (max-width: 767px) {
    .btn a {
      max-width: 80%;
      padding: 20px 44px;
      font-size: 108%;
    }
    .btn a::before {
      width: 32px;
      right: -14px;
    }
    .home .btn + .btn,
    .footer_contact .btn + .btn {
      margin-top: 16px;
      margin-left: 0;
    }
  }
  @media screen and (max-width: 400px) {
    .btn a {
      max-width: 98%;
    }
  }


/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background-color: #fff;
    line-height: 1;
    z-index: 9990;
    transition: all .4s ease-out;
  }
  .page-contact .header {
    position: absolute;
    background-color: transparent;
    box-shadow: none;
  }
  .header > .inner {
    width: 100%;
    max-width: 100%;
    height: 100%;
    padding-left: 50px;
  }

  @media print, screen and (min-width: 768px) {
    .header--nav,
    .gnav,
    .gnav--menu,
    .gnav--menu > li,
    .gnav--menu > li >a {
      height: 100%;
      font-weight: bold;
      font-size: 20px;
      color: #07569e;
    }
    .gnav--menu a:hover{color: #4a98a1;}
    .lang{padding: 50px 10px;}
  }
  @media print, screen and (max-width: 1750px) {
    .header > .inner {
      padding-left: 16px;
    }
    .header--logo img {
      width: 228px;
    }
  }
  @media print, screen and (max-width: 1480px) {
    .header--logo img {
      width: 152px;
    }
  }
  @media screen and (max-width: 767px) {
    .header {
      height: 56px;
    }
    .header .inner {
      padding-left: 8px;
    }
    .lang{text-align: center;
      padding: 20px;
      font-weight: bold;}
  }

/* gnav
********************************************** */
  .gnav {
    flex: 1;
    font-size: 113%;
  }
  .gnav--link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex!important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    padding: 4px 1em 0;
    text-align: center;
  }
  .gnav--link::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    display: block;
    width: 19px;
    height: 20px;
    margin: auto;
    background-image: url(https://www.liidda.com/img/dot.png);
    background-size: contain;
    opacity: 0;
    transition: all .4s ease-out;
  }
  .gnav--link[href="javascript:void(0);"] {
    cursor: inherit;
  }
  .gnav--link:not([href="javascript:void(0);"]):not(.hover_none):hover::before,
  .gnav--menu li.current > .gnav--link:not(.hover_none)::before {
    top: 24px;
    opacity: 1;
  }

  /* ---CTA --- */
  .gnav--tel {
    margin-left: 6%;
  }
  .gnav--contact {
    margin-left: 16px;
  }
  .cta_tel a .num {
    color: #0d81c5;
    font-size: 29px;
  }
  .cta_contact a {
    display: block!important;
    height: calc(100% - 16px)!important;
    padding: 20px 56px;
    letter-spacing: .15em;
    background-color: #ddeefd;
    border-radius: 0 0 0 16px;
  }
  .cta_contact img {
    display: block;
    margin: 0 auto 12px;
  }
  .cta_contact a:hover {
    background-color: #e8f2ff;
  }

  @media print, screen and (min-width: 768px) {

    /* ---dropdown_btn --- */
    .dropdown_btn {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 20px;
      display: inline-block;
      width: 8px;
      height: 8px;
      margin: auto;
      border-top: solid 1px #6c87a9;
      border-right:  solid 1px #6c87a9;
      transform: translateY(-2px) rotate(135deg);
    }
    .none .dropdown_btn,
    .none .gnav--dropdown {
      display: none!important;
    }

    /* ---gnav--dropdown --- */
    .gnav--dropdown-hover {
      position: relative;
    }
    .gnav--dropdown {
      position: absolute;
      left: -56px;
      right: -56px;
      pointer-events: none;
      transform: translateY(-16px);
    }
    .gnav--dropdown li {
      margin-right: 0!important;
      margin-left: 0;
      padding-top: 4px;
      opacity: 0;
      pointer-events: none;
      transition: .2s ease-out;
      transition-delay: 0s;
      text-align: center;
    }
    .gnav--dropdown a {
    display: block!important;
      padding: 10px 8px;
      background-color: #ddeefd;
      line-height: 1.4;
      border-radius: 4px;
      text-align: center;
    }

    /* hover */
    .link-none {
      pointer-events: none;
    }
    .gnav--dropdown-hover:hover .gnav--link,
    .gnav--dropdown-hover.active .gnav--link {
      transform: translateY(-6px);
    }
    .gnav--dropdown-hover:hover .gnav--link:not(.link-none) + .gnav--dropdown,
    .gnav--dropdown-hover.active .gnav--link:not(.link-none) + .gnav--dropdown {
      pointer-events: auto;
    }
    .gnav--dropdown-hover:hover .gnav--dropdown li,
    .gnav--dropdown-hover.active .gnav--dropdown li {
      opacity: 1;
      pointer-events: auto;
      transition: .4s ease-out;
    }
    .gnav--dropdown-hover:hover .gnav--dropdown li:nth-child(2),
    .gnav--dropdown-hover.active .gnav--dropdown li:nth-child(2) {
      transition-delay: .1s;
    }
    .gnav--dropdown-hover:hover .gnav--dropdown li:nth-child(3),
    .gnav--dropdown-hover.active .gnav--dropdown li:nth-child(3) {
      transition-delay: .2s;
    }
    .gnav--dropdown-hover:hover .gnav--dropdown li:nth-child(4),
    .gnav--dropdown-hover.active .gnav--dropdown li:nth-child(4) {
      transition-delay: .3s;
    }
    .gnav--dropdown-hover:hover .gnav--dropdown li:nth-child(5),
    .gnav--dropdown-hover.active .gnav--dropdown li:nth-child(5) {
      transition-delay: .4s;
    }
  }
  @media print, screen and (max-width: 1630px) {
    .gnav--tel {
      margin-left: 0;
    }
    .cta_contact a {
      padding: 20px 24px;
    }
  }
  @media print, screen and (max-width: 1360px) {
    .gnav {
      font-size: 100%;
    }
    .gnav--link {
      padding: 4px .8em 0;
    }
  }
  @media print, screen and (max-width: 1200px) and (min-width: 768px) {
    .gnav--tel {
      display: none;
    }
  }
  @media screen and (max-width: 767px) {
    .gnav {
      position: fixed;
      top: 56px;
      left: 0;
      z-index: 300;
      width: 100%;
      height: calc(100% - 56px);
      margin: 0;
      padding: 32px 8%;
      overflow: scroll;
      background-color: #e9fcff;
      opacity: 0;
      pointer-events: none;
      transition: .4s ease-out;
      -webkit-overflow-scrolling: touch;
    }
    .gnav.active {
      opacity: 1;
      pointer-events: auto;
    }
    .gnav--menu li {
      position: relative;
      display: block;
      width: 100%;
    }
    .gnav--link {
      display: block!important;
      text-align: left;
      font-weight: bold;
    }
    .gnav--menu li:not(.gnav--tel):not(.gnav--contact) > .gnav--link {
      padding-bottom: 12px;
      margin-bottom: 14px;
      border-bottom: dotted 1px #454948;
      font-family: 'Shuei MaruGo B';
    }
    .gnav--link::before {
      top: 0;
      left: auto;
      right: 9px;
      bottom: 0;
      z-index: 2;
      background-color: #fcfdef;
    }
    .gnav--link:not([href="javascript:void(0);"]):not(.hover_none):hover::before,
    .gnav--menu li.current > .gnav--link:not(.hover_none)::before {
      top: -8px;
    }
    .gnav--menu li:not(.gnav--tel):not(.gnav--contact) .gnav--link::after {
      content: "";
      position: absolute;
      top: calc(50% - 10px);
      right: 16px;
      display: block;
      width: 7px;
      height: 7px;
      border-top: solid 1px;
      border-right: solid 1px;
      transform: rotate(45deg);
    }
    .gnav--dropdown {
      margin-bottom: 10px;
    }
    .gnav--dropdown-hover > .gnav--link::after {
      display: none!important;
    }
    .gnav--dropdown a {
      position: relative;
      padding-right: 32px;
      padding-left: 24px;
      padding-bottom: 18px!important;
      margin-bottom: 0!important;
      border-bottom: none!important;
      font-family: 'Shuei MaruGo L'!important;
    }
    .gnav--dropdown li::before {
      content: "";
      position: absolute;
      top: .8em;
      left: 4px;
      display: block;
      width: 12px;
      border-top: solid 1px #CFC019;
    }

    /* --- gnav_btn --- */
    .gnav_btn {
      position: fixed;
      top: 8px;
      right: 8px;
      width: 40px;
      height: 40px;
      background-color: #ddeefd;
      z-index: 9999;
      border-radius: 50%;
    }
    .gnav_btn--lines {
      position: relative;
      width: 18px;
      height: 14px;
    }
    .gnav_btn--lines span {
      transition: all .4s;
      box-sizing: border-box;
    }
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      border-radius: 2px;
      background-color: #454948;
    }
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      top: calc(50% - 1px);
    }
    .gnav_btn--lines span:nth-of-type(3) {
      bottom: 0;
    }
    .active .gnav_btn--lines span:nth-of-type(1) {
      -webkit-transform: translateY(6px) rotate(-42deg);
      transform: translateY(6px) rotate(-42deg);
    }
    .active .gnav_btn--lines span:nth-of-type(2) {
      opacity: 0;
    }
    .active .gnav_btn--lines span:nth-of-type(3) {
      -webkit-transform: translateY(-6px) rotate(42deg);
      transform: translateY(-6px) rotate(42deg);
    }

    /* --- CTA --- */
    .gnav--tel {
      margin-top: 16px;
    }
    .gnav--tel a {
      text-align: center;
    }
    .gnav--contact {
      margin-top: 24px;
      margin-left: 0;
    }
    .cta_contact a {
      display: flex!important;
      justify-content: center;
      border-radius: 8px;
      font-size: 115%;
    }
    .cta_contact img {
      width: 28px;
      margin: 0 16px 0 0;
    }
  }

/* header-sm
**************************************** */
  .header-sm {
    height: 100px;
  }
  .header-sm .header--logo {
    transform: translateY(-4px);
  }
  .header-sm .cta_contact a {
    height: 110%!important;
  }
  .header-sm .gnav--link:not([href="javascript:void(0);"]):not(.hover_none):hover::before,
  .header-sm .gnav--menu li.current > .gnav--link:not(.hover_none)::before {
    top: 16px;
  }
  .header--logo img:hover{opacity: 0.7;}

/* ##############################################################################

    FOOTER

############################################################################## */
  .footer::before {
    content: "";
    position: absolute;
    top: 115px;
    left: 230px;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    border-radius: 32px 0 0 0;
    background-color: #f2f9ff;
  }
  .footer .deco1 {
    top: 72px;
    right: 3%;
  }
  .footer .deco2 {
    top: 220px;
    left: -13%;
  }

  @media screen and (max-width: 767px) {
    .footer::before {
      top: 58px;
      left: 4%;
      border-radius: 16px 0 0 0;
    }
    .footer .deco1 {
      top: 56px;
      right: -16px;
      width: 76.5px;
    }
    .footer .deco2 {
      display: none;
    }
  }

/* footer_contact
********************************************** */
  .footer_contact {
    padding-top: 96px;
    padding-bottom: 72px;
    overflow: hidden;
  }
  .footer_contact .deco1 {
    top: -32px;
    right: -9.5%;
  }
  .footer_contact .ttl-01 {
    margin-bottom: 32px;
  }
  .footer_contact .btn a,
  .page-contact .btn a {
    min-width: 400px;
    padding: 40px 64px;
    border-radius: 80px;
  }
  .footer_contact .cta_tel a,
  .page-contact .cta_tel a {
    padding: 23px 64px;
    font-size: 100%;
    background-color: #C6E7DD;
  }
  .footer_contact .cta_tel a .num,
  .page-contact .cta_tel a .num {
    color: #228964;
  }
  .footer_contact .cta_tel a::before,
  .page-contact .cta_tel a::before {
    border-color: #228964;
  }

  @media screen and (max-width: 767px) {
    .footer_contact {
      padding-top: 48px;
      padding-bottom: 36px;
    }
    .footer_contact .deco1 {
      top: -24px;
      right: -24px;
      width: 99px;
    }
    .footer_contact .ttl-01 {
      margin-bottom: 16px;
    }
    .footer_contact .btn a,
    .page-contact .btn a {
      min-width: 0;
      padding: 28px 24px;
    }
    .footer_contact .cta_tel a,
    .page-contact .cta_tel a {
      padding: 14px 24px;
    }
    .footer_contact .cta_tel .time,
    .page-contact .cta_tel .time {
      font-size: 79%;
    }
  }

  /* footer--logo
  ********************************************** */
  .footer--logo {
    margin-bottom: 44px;
  }

  @media screen and (max-width: 767px) {
    .footer--logo {
      margin-bottom: 22px;
    }
    .footer--logo img {
      width: 108px;
    }
  }

  /* footer--about
  ********************************************** */
  .footer--about {
    margin-bottom: 8px;
    font-size: 113%;
    padding: 55px;
  }
  .footer--about .add {
    margin-bottom: -4px;
    line-height: 50px;
    letter-spacing: .05em;
  }

  @media screen and (max-width: 767px) {
    .footer--about {
      margin-bottom: 24px;
      font-size: 100%;
    }
    .footer--about .add {
      line-height: 3.6;
    }
  }

  /* footer_nav
********************************************** */
  .footer_nav {
    margin-bottom: 80px;
  }
  .footer_nav .flex > li {
    min-width: 88px;
    text-align: left;
  }
  .footer_nav .flex > li >*:not(.child) {
    display: block;
    padding-bottom: 4px;
    margin-bottom: 12px;
  }
  .footer_nav .child {
    font-size: 88%;
  }
  .footer_nav .child a {
    position: relative;
    display: block;
    padding-left: 20px;
    padding-right: 4px;
    margin-bottom: 8px;
  }
  .footer_nav .child a::before {
    content: "";
    position: absolute;
    top: .9em;
    left: 0;
    display: block;
    width: 12px;
    border-top: solid 1px #CFC019;
  }
  .footer_nav a:hover {
    opacity: .5;
  }

  @media print, screen and (min-width: 768px) {
    .footer_nav .flex > li:not(:last-child) {
      margin-right: 25px;
    }
  }
  @media screen and (max-width: 767px) {
    .footer_nav {
      margin-bottom: 96px;
    }
    .footer_nav .flex > li {
      width: 100%;
      min-width: 0;
    }
    .footer_nav .flex > li > * {
      position: relative;
      padding-left: .8em;
    }
    .footer_nav .flex > li a::after {
      /* content: "";
      position: absolute;
      top: calc(50% - 7px);
      right: 16px;
      display: block;
      width: 7px;
      height: 7px;
      border-top: solid 1px;
      border-right: solid 1px;
      transform: rotate(45deg); */
    }
    .footer_nav .child {
      font-size: 100%;
    }
  }

/* footer
*************************************************** */
  .pagetop {
    position: absolute;
    top: -65px;
    right: 54px;
    display: block;
  }
  .pagetop:hover {
    transition: all .1s ease-out;
    transform: translateY(-8px);
  }

  @media print, screen and (max-width: 1430px) {
    .pagetop {
      top: -420px;
    }
  }
  @media print, screen and (max-width: 1100px) {
    .pagetop {
      top: -480px;
    }
  }
  @media screen and (max-width: 767px) {
    .pagetop {
      top: -88px;
      right: 0;
      left: 0;
      text-align: center;
    }
  }

/* footer--sub_nav
*************************************************** */
  .footer--sub_nav {
    padding: 20px 0;
    font-size: 75%;
    background-color: #fff;
  }
  .footer--copyright {
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .footer--sub_nav {
      padding: 14px 0;
    }
  }


/* ##############################################################################

    INDEX

############################################################################## */

/* hero
********************************************** */
  .hero {
    position: relative;
    padding-left: 230px;
    height: 784px;
  }
  .hero--catch {
    position: absolute;
    top: 64px;
    left: 92px;
    bottom: 0;
  }
  .hero--catch .ttl {
    margin-bottom: 20px;
    font-size: 40px;
    list-style: 1.38;
    letter-spacing: .1em;
    color: #3a5b79;
  }
  .hero--catch .txt {
    font-size: 19px;
    line-height: 31px;
    letter-spacing: .15em;
    font-weight: bold;
    color: #577591;
  }
  .hero_slides {
    position: relative;
  }
  .deco {
    position: absolute;
  }
  .hero .deco1 {
    left: -204px;
    bottom: -162px;
    z-index: -1;
  }
  .hero_slide {
    border-radius: 40px 0 0 0;
    overflow: hidden;
  }
  .hero_slide-sp {
    display: none !important;
  }
  .hero_slides,
  .hero_slide,
  .hero_slide .slick-list,
  .hero_slide .slick-track,
  .hero_slide .slick-slider,
  .hero_slide .slick-slide,
  .hero_slide .hero_slide--child {
    width: 100%;
    height: 100%;
  }
  .hero_slide .slick-list {
    position: relative;
    overflow: hidden;
  }
  .hero_slide--child {
    background-position: center;
    background-size: cover;
  }

  @media screen and (max-width: 767px) {
    .hero {
      padding-left: 6%;
      height: 80vh;
    }
    .hero_slide-pc {
      display: none !important;
    }
    .hero_slide-sp {
      display: block !important;
    }
    .hero .deco1 {
      left: -102px;
      bottom: -132px;
      width: 201.5px;
      height: auto;
    }
    .hero--catch {
      top: 0;
      left: 3%;
    }
    .hero--catch .ttl {
      margin-bottom: 10px;
      font-size: 186%;
    }
    .hero--catch .txt {
      font-size: 86%;
    }
    .hero--catch .ttl span,
    .hero--catch .txt span {
      display: inline-block;
      margin-bottom: 4px;
      padding: 0 4px;
      background-color: #fff;
    }
    .hero_slide {
      border-radius: 20px 0 0 0;
    }
  }

/* home_news
********************************************** */
  .home_news {
    position: relative;
    z-index: 1;
    margin-top: -45px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 46px;
    border: solid 1px #6c87a9;
    background-color: #fff;
    font-weight: bold;
  }
  .home_news .ttl {
    position: relative;
    margin-right: 32px;
    padding: 20px 28px 20px 56px;
    border-right: dotted 2px #6c87a9;
    font-size: 113%;
    line-height: 1;
    color: #6c87a9;
  }
  .home_news .news_list {
    flex: 1;
  }
  .home_news .more {
    display: inline-block;
    padding: 0 56px;
    font-size: 113%;
    line-height: 1;
    color: #6c87a9;
  }
  .home_news .more .icn {
    margin-right: 4px;
  }

  @media screen and (max-width: 767px) {
    .home_news {
      margin-top: -45px;
      padding: 16px 20px;
      border-radius: 16px;
    }
    .home_news .ttl {
      width: 100%;
      margin-right: 0;
      padding: 0;
      padding-bottom: 14px;
      border-right: none;
      border-bottom: dotted 2px #6c87a9;
      font-size: 100%;
    }
    .home_news .news_list {
      width: 100%;
    }
    .home_news .news_list .post {
      padding-top: 8px;
      padding-bottom: 0;
    }
    .news_list .post--tit {
      margin-bottom: 0;
    }
    .home_news .more {
      position: absolute;
      top: 17px;
      right: 18px;
      padding-right: 0;
      padding-left: 0;
      font-size: 79%;
    }
    .home_news .more .icn {
      width: 16px;
    }
  }

/* home_message
********************************************** */
  .home_message {
    padding-top: 102px;
    padding-bottom: 90px;
    overflow: hidden;
  }
  .home_message .inner {
    position: relative;
  }
  .home_message .deco1 {
    top: -60px;
    right: -15%;
  }
  .home_message .deco2 {
    bottom: -44px;
    left: -134px;
  }
  .home_message .imgarea {
    position: relative;
    width: 48.75%;
    margin-right: 54px;
  }
  .home_message .txtarea {
    flex: 1;
    font-weight: bold;
  }
  .home_message .txtarea .ttl {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 1.6;
    letter-spacing: .1em;
  }
  .home_message .txtarea p {
    line-height: 2.5;
  }
  .home_message .txtarea p:not(:last-child) {
    margin-bottom: 1.5em;
  }
  .home_message .btn {
    margin-top: 64px;
  }

  @media screen and (max-width: 767px) {
    .home_message {
      padding-top: 52px;
      padding-bottom: 44px;
    }
    .home_message .deco1 {
      display: none;
    }
    .home_message .deco2 {
      bottom: -24px;
      left: auto;
      right: -24px;
      width: 98.5px;
    }
    .home_message .imgarea {
      width: 100%;
      margin-right: 0;
      margin-bottom: 24px;
    }
    .home_message .txtarea .ttl {
      margin-bottom: 16px;
      font-size: 158%;
    }
    .home_message .txtarea p {
      line-height: 2;
    }
    .home_message .btn {
      margin-top: 32px;
    }
  }
  @media screen and (max-width: 354px) {
    .home_message .txtarea .ttl br {
      display: none;
    }
  }

/* home_about
********************************************** */
.home_about p{line-height: 28px;font-weight: bold;color: #515a87;}
  .home_about {
    position: relative;
    margin-top: 72px;
    padding-bottom: 94px;
  }
  .home_about::before {
    content: "";
    position: absolute;
    top: -72px;
    left: 0;
    right: 0;
    display: block;
    height: 72px;
    background-image: url(https://www.liidda.com/img/bg03.png);
    background-position: center;
  }
  .home_about .inner {
    transform: translateY(-36px);
  }
  .home_about .about--child {
    margin-bottom: 70px;
  }
  .home_about .about--child:last-of-type {
    margin-bottom: 90px;
  }
  .home_about .imgarea {
    position: relative;
    width: 59.3%;
    margin-left: 40px;
  }
  .home_about .txtarea {
    position: relative;
    flex: 1;
  }
  .home_about .deco1 {
    top: -76px;
    right: -52px;
  }
  .home_about .deco2 {
    top: -44px;
    left: -62%;
  }
  .home_about .deco3{
    top: -40px;
    right: -100px;
  }

  @media screen and (max-width: 767px) {
    .home_about {
      margin-top: 36px;
      padding-bottom: 48px;
    }
    .home_about::before {
      top: -36px;
      height: 36px;
      background-size: auto 100%;
    }
    .home_about .inner {
      transform: translateY(-18px);
    }
    .home_about .about--child {
      margin-bottom: 40px;
    }
    .home_about .about--child:last-of-type {
      margin-bottom: 44px;
    }
    .home_about .ttl-03 br {
      display: none;
    }
    .home_about .imgarea {
      width: 100%;
      margin-left: 0;
      margin-top: 24px;
    }
    .home_about .deco1 {
      top: -36px;
      right: -24px;
      width: 80.5px;
    }
    .home_about .deco2 {
      top: 32px;
      left: auto;
      right: -8px;
      width: 97.5px;
    }
    .home_about .deco3{
      top: -24px;
      right: -28px;
      width: 69.5px;
    }
  }

/* home_other
********************************************** */
  .home_other {
    padding-bottom: 80px;
  }
  .home_other .link_list--child {
    width: calc(25% - 24px);
  }
  .home_other .link_list--child .link {
    height: 200px;
    background-color: #ddeefd;
    border-radius: 16px;
  }
  .home_other .link_list--child .link:hover {
    background-color: #e8f2ff;
  }
  .home_other .link_list--child .img {
    margin-bottom: 16px;
  }
  .home_other .link_list--child .ttl {
    font-size: 20px;
    padding: 6%;
    font-weight: bold;
    color: #638cbd;
  }

  @media print, screen and (min-width: 768px) {
    .home_other .link_list--child:nth-of-type(even) {
      transform: translateY(-30px);
    }
  }
  @media screen and (max-width: 767px) {
    .home_other {
      padding-top: 60px;
      padding-bottom: 40px;
    }
    .home_other .inner {
      width: 94%;
    }
    .home_other .link_list--child {
      width: calc(33.333% - 4px);
    }
    .home_other .link_list--child .link {
      height: 120px;
      border-radius: 8px;
    }
    .home_other .link_list--child .img {
      display: flex;
      justify-content: center;
      align-items: center;
      width: auto;
      height: 48px;
      margin-bottom: 8px;
    }
    .home_other .link_list--child .img img {
      transform: scale(.5,.5);
    }
    .home_other .link_list--child .ttl {
      font-size: 93%;
      line-height: 1.4;
    }
  }

/* home_blog
********************************************** */
  .home_blog {
    padding-top: 188px;
    padding-bottom: 140px;
    background-image: 
    url(https://www.liidda.com/img/bg00.png),
      url(https://www.liidda.com/img/bg01.jpg);
    background-repeat: no-repeat, repeat;
    background-position: center top -1px, center;
  }
  .home_blog .ttl-01 {
    display: inline-block;
    margin-bottom: 44px;
  }
  .home_blog .ttl-01 .img {
    position: absolute;
    top: -72px;
    left: -72px;
  }
  .home_blog .blog_list .post {
    display: block;
  }
  .home_blog .blog_list .post--img {
    margin-bottom: 20px;
  }
  .home_blog .blog_list{
    color: #fff;
  }
  .home_blog .blog_list .post--txt {
    display: none;
  }
  .home_blog .post--tit{color: #314469;}
  .sv_page {background-image: none;padding-top: 100px;}
  .sv_page .post--txtarea p,.sv_page .post--tit{color: #675d5d;}
  @media screen and (max-width: 767px) {
    .home_blog {
      padding-top: 94px;
      padding-bottom: 70px;
      background-size: auto 35px, auto;
    }
    .home_blog .inner {
      width: 92%;
    }
    .home_blog .ttl-01 {
      margin-bottom: 22px;
    }
    .home_blog .ttl-01 .img {
      top: -36px;
      left: -36px;
      width: 112.5px;
    }
    .home_blog .blog_list .post {
      padding-left: 2%;
      padding-right: 2%;
      margin-bottom: 32px;
    }
    .home_blog .blog_list .post--img {
      margin-bottom: 16px;
    }
    .sv_page {padding-top: 50px;}
  }
  @media screen and (max-width: 375px) {
    .home_blog .ttl-01 .img {
      left: -8px;
    }
  }


/* ##############################################################################

    PAGE

############################################################################## */

/* contact
********************************************** */
  .page-contact .contact {
    margin-top: -40px;
    padding-bottom: 120px;
  }

  @media screen and (max-width: 767px) {
    .page-contact .header--logo img {
      width: 76px;
      transform: translateY(-12px);
    }
    .page-contact .contact {
      margin-top: 0;
      padding-bottom: 60px;
    }
    .page-thanks .mce-content-body br {
      display: none;
    }
  }


/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
  .main_column {
    flex: 1;
    margin-right: 80px;
    overflow: hidden;
  }

  /* --- post --- */
  .post { position: relative; }
  .post--link{color: #144091;}
  .post--link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
  }
  .post--tit {
    margin-right: 28px;
    font-size: 20px;
    letter-spacing: 0.06em;
    font-weight: bold;
  }
  .cat_list {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  .cat_list a {
    display: inline-block;
    vertical-align: middle;
    font-size: 88%;
    color: #454948!important;
    background-color: #ddeefd;
    line-height: 1;
    padding: 4px 18px;
    border-radius: 44px;
    float: left;
    margin-right: 4px;
    margin-bottom: 4px;
    white-space: nowrap;
  }
  .post--img {
    width: 100%;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
  }
  .post--img::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 70%;
  }
  .no-image {
    background-size: 80% auto!important;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fcfcf0;
  }
  @media all and (-ms-high-contrast: none) {
    .cat_list a {
      padding: 5px 18px 3px;
    }
  }
  @media print, screen and (max-width: 1100px) {
    .main_column {
      width: 100%;
      margin-bottom: 40px;
      margin-right: 0;
    }
    .post--tit {
      margin-right: 12px;
    }
  }

/* side_column
**************************************** */
  .side_column { width: 264px; }
  .side_section:not(:last-child) { margin-bottom: 64px; }
  .side--ttl {
    margin-bottom: 16px;
    padding: .8em .8em;
    border-radius: 8px;
    background-color: #ddeefd;
    font-size: 120%;
    letter-spacing: .1em;
    line-height: 1;
  }

  /* --- post --- */
  .side--cat li,
  .posts-side .post {
    border-bottom: solid 1px #e5e5e5;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .side--list a { display: block; }
  .posts-side .post--img {
    margin-right: 16px;
    border-radius: 3px;
    width: 64px;
    height: 64px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .posts-side .txtarea { flex: 1; }
  .posts-side .post--tit { font-size: 82%; margin-bottom: 0; }
  .posts-side .post--ttl { line-height: 1.4; }

  /* --- archive --- */
  .side_column .archive_list {
    border-bottom: solid 1px #e5e5e5;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .side_column .archive_list--ttl {
    cursor: pointer;
  }
  .side_column .archive_list--ttl::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(135deg);
    transition: .4s ease-out;
  }
  .side_column .archive_list--ttl.active::after { transform: rotate(315deg); }
  .side_column .archive_month { display: none; }
  .side_column .archive_month li { padding-top: 4px; }
  .side_column .archive_month a::before { 
    content: "-";
    display: inline-block;
    margin-right: 4px;
  }

  @media print, screen and (max-width: 1100px) {
    .side_column { width: 100%; }
  }
  @media screen and (max-width: 767px) {
    .side_section:not(:last-child) { margin-bottom: 32px; }
  }

  /* --- archive-pulldown --- */
  .archive-pulldown {
    position: relative;
    margin-left: auto;
    z-index: 1;
  }
  .archive-pulldown .archive_list {
    position: relative;
    font-size: 92%;
  }
  .archive-pulldown .archive_list:not(:last-child) { margin-right: 24px; }
  .archive-pulldown .archive_list a {
    display: block;
    padding: 2px 16px;
    text-align: left;
  }
  .archive-pulldown .archive_list a:not(:last-child) { border-bottom: 1px solid #eee; }
  .archive-pulldown .archive_list--label { margin-right: 8px; }
  .archive-pulldown .archive_list--btn {
    cursor: pointer;
    border: none;
    outline: none;
    appearance: none;
    padding: 8px 54px 8px 32px;
    background-color: #fff;
    border: 1px solid #ccc;
  }
  .archive-pulldown .archive_list--btn::after {
    content: '';
    position: absolute;
    top: 9px;
    right: 10px;
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
    transition: .2s ease-out;
    transform-origin: 50% 50%;
  }
  .archive-pulldown .active .archive_list--btn::after {
    top: 14px;
    transform: rotate(225deg);
  }
  .archive-pulldown .archive_list--menu {
    position: absolute;
    z-index: 1;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    visibility: hidden;
    margin-top: -1px;
    opacity: 0;
    transition: .2s ease-out;
  }
  .archive-pulldown .active .archive_list--menu {
    visibility: visible;
    opacity: 1;
  }

/* blog
**************************************** */
  .posts-blog .post {
    padding-bottom: 48px;
    padding-top: 48px;
    border-bottom: 1px solid #e5e5e5;
  }
  .posts-blog .post:first-child { border-top: 1px solid #e5e5e5; }
  .posts-blog .post--txtarea { flex: 1; }
  .posts-blog .post--img {
    width: 280px;
    margin-right: 40px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  @media print, screen and (max-width: 1100px) {
    .posts-blog { margin-bottom: 56px; }
    .archive-blog .container > .inner.flex,
    .single-blog .container > .inner.flex {
      display: block;
    }
  }

  @media screen and (max-width: 767px) {
    .posts-blog .post {
      display: block;
      padding-top: 24px;
      padding-bottom: 24px;
    }
    .posts-blog .post--img {
      width: 100%;
      padding-left: 0;
      margin-right: auto;
      margin-left: auto;
      margin-bottom: 16px;
      text-align: center;
    }
    .posts-blog .post--img img {
      width: auto;
      max-width: 100%;
    }
  }

/* news
**************************************** */
  
  /* --- news--archive --- */
  .news--archive {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #111;
  }
  .news--archive li {
    margin-left: 8px;
    margin-right: 8px;
  }
  .news--archive a {
    color: #fff;
  }

  /* --- news_list --- */
  .news_list .post {
    padding-top: 18px;
    padding-bottom: 18px;
    margin-bottom: 0;
    transition: all .4s ease-out;
  }
  .news_list .post:not(:last-child) {
    border-bottom: 1px solid #EEE875;
  }
  .news_list .post:hover {
    opacity: .7;
  }
  .news_list .post--tit {
    font-size: 100%;
  }
  .news_list a[href="javascript:void(0);"],
  .news_list a[href="javascript:void(0);"]::before {
    color: inherit;
    cursor: inherit;
    opacity: 1;
    text-decoration: none;
  }
/* language */
  .language-switcher {
      font-family: Arial, sans-serif;
      position: relative;
      display: inline-block;
  }
  .language-switcher-btn {
    background-color: #afd3e4;
    border: 1px solid #0d81c5;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 5px;
    color: #07569e;
    font-weight: bold;
  }
  .language-switcher-btn:hover {
      background-color:#d9e9f9;
  }
  .globe-icon {
      width: 20px;
      height: 20px;
      margin-right: 10px;
      fill: #07569e;
  }
  .language-options {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 5px;
      overflow: hidden;
  }
  .language-switcher:hover .language-options {
      display: block;
  }
  .language-option {
      color: #0b3861;
      padding: 12px 20px;
      text-decoration: none;
      display: block;
      font-size: 16px;
  }
  .language-option:hover {
      background-color: #f1f1f1;
  }
  .flag-icon {
    margin-right: 10px;
}
/* ser */
.ser {padding: 10px 0 30px 0;}
.tour {line-height: 25px;}
.tour a:hover{color: #776f6f;}
.tour .tour-tit{padding: 12px;font-size: 18px;color: #7f4c4c;}
/* table */
table {
  border: 0;
  border-collapse: collapse;
  border-radius: 8px;
  width: 100%;
  margin: 25px 0;
}
th {
  border: solid 2px #b1c3e5;
  padding: 16px 8px;
  background-color: #8493ab;
  color: #ffffff;
}
td {
  border: solid 2px #b1c3e5;
  text-align: center;
  padding: 10px;
  color: #676e7a;
}
.sv_li li{background-color: #dfd8cf;border-radius: 8px;padding: 15px;margin: 10px 0;color: #8d6146;}
  @media screen and (max-width: 767px) {
    .news_list .post { display: block; }
    .news_list .post--tit { margin-bottom: 4px; }
  }
