@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap');

:root {
  --primary-color-100: #163264;
  --secondary-color-100: #F2F6FC;
  --font-size: 16;
}

body{
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}
header.active{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
p,a,h2,h3,h4,h5{
  color: var(--primary-color-100);
}
a{
  transition: 0.2s;
  text-decoration: none;
}
li{
  list-style: none;
}
img {
  pointer-events: none;
  width: 100%;
  height: 100%;
}

@media screen and (min-width:768px){
  a:hover{
    opacity: 0.7;
  }
}

/* --------------------------------------------------------------------------
  フォント
-------------------------------------------------------------------------- */
.font-family-noto{
  font-family: 'Noto Sans JP', sans-serif;
}
.font-family-kiwi{
  font-family: 'Kiwi Maru', 'Noto Sans JP', serif;
}


/* --------------------------------------------------------------------------
  非表示
-------------------------------------------------------------------------- */
.u-hide-pc{
  display: none !important;
}
.u-hide-sp{
  display: block;
}
@media screen and (max-width:767px){
  .u-hide-pc{
    display: block !important;
  }
  .u-hide-sp{
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
  強調
-------------------------------------------------------------------------- */
.u-strong {
  font-weight: 700;
}
.u-bold {
  font-weight: 700;
}
.u-underline {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
  シャドウ
-------------------------------------------------------------------------- */
.u-bg-shadow{
  filter: drop-shadow(4px 4px 14px rgba(22,50,100,0.2));
}

/* --------------------------------------------------------------------------
  common
-------------------------------------------------------------------------- */
@media screen and (min-width:768px){
  .header__logo{
    position: fixed;
    top: 18px;
    left: 28px;
  }
  .logo-pilot{
    width: 110px;
    height: 29.34px;
    position: relative;
    z-index: 5;
  }
  .logo-pilot a{
    display: block;
    width: 100%;
    height: 100%;
  }
  
}
@media screen and (max-width:767px){
  .header__logo{
    position: absolute;
    top: 13px;
    left: 0
  }

  .mv-sec.is-fixed .header__logo {
    position: fixed;
    height: 90px;
    padding-top: 13px;
  }
  .logo-pilot{
    width: 57.75px;
    height: 15.4px;
    position: relative;
    z-index: 5;
  }
  .logo-pilot a{
    display: block;
    width: 100%;
    height: 100%;
  }
}


/* -----------------------------------------------------------------
/ ヘッダー
/ --------------------------------------------------------------- */
@media screen and (min-width:768px){
  .l-header{
    position: relative;
    z-index: 200;
  }
  .l-header__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .l-header__nav{
    padding: 37px 28px 25px;
    /* background: transparent; */
    width: fit-content;
    position: absolute;
    top: 0;
    right: 0;
    filter: drop-shadow(-5px 0px 34px rgba(22, 50, 100, 0.10));
    z-index: 200;
  }
  .l-header__nav ul {
    display: flex;
    justify-content: flex-end;
  }
  .l-header__nav li{
    position: relative;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5em;
    line-height: 22.306px;
    font-feature-settings: "palt";
    letter-spacing: 0.4em;
  }
  .l-header__nav li:last-child{
  }
  .l-header__nav a,
  .l-header__nav img{
    display: block;
    width: 100%;
  }
  .l-header__nav a{
    position: relative;
    padding: 0 20px;
    padding-top: 34px;
    height: 170.78px;
    width: 58px;
  }
  .l-header__nav .nav-search a{
    padding-bottom: 0;
  }
  .l-header__nav a::before{
    content: '';
    width: 21.76px;
    height: 21.78px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url("../img/common/icon_nav01.png") no-repeat center top;
    background-size: contain;
  }
  .l-header__nav li:nth-of-type(2) a::before{
    background: url("../img/common/icon_nav02.png") no-repeat center top;
    background-size: contain;
    width: 23.76px;
    height: 19.8px;
  }
  .l-header__nav li:nth-of-type(3) a::before{
    background: url("../img/common/icon_nav03.png") no-repeat center top;
    background-size: contain;
    width: 27.72px;
    height: 21.89px;
  }
  .l-header__nav li:nth-of-type(4) a::before{
    background: url("../img/common/icon_nav04.png") no-repeat center top;
    background-size: contain;
    width: 20.19px;
    height: 25.74px;
  }
  .l-header__nav li:nth-of-type(5) a::before{
    background: url("../img/common/icon_nav05.png") no-repeat center top;
    background-size: contain;
    width: 20.79px;
    height: 26.73px;
  }
  .l-header__nav a::after{
    content: '';
    width: 3px;
    height: 139px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url("../img/common/line_vertical.svg") no-repeat center top;
    background-size: contain;
  }
  .l-header__nav li:last-child a::after{
    display: none;
  }
  .text-vertical {
    writing-mode: vertical-rl;
  }
  .nav_text{
    position: relative;
    transform: translateX(-2px);
  }

  /* ヘッダー検索 */
  .search-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
  }
  .search-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--primary-color-100);
    background-color: #fff;
    color: var(--primary-color-100);
    cursor: pointer;
    display: block;
    /* display: flex;
    align-items: center;
    justify-content: center; */
    transition: background-color 0.3s, color 0.3s;
    z-index: 101;
  }
  .search-icon.active,
  .is-hamburger.active .search-icon{
    cursor: unset;
  }
  .search-icon:hover {
    background-color: var(--primary-color-100);
    color: #fff;
  }
  .search-icon svg {
    width: 14px;
    height: 14px;
    color: var(--primary-color-100);
  }
  .search-icon:hover svg{
    color: #fff;
  }
  .nav-search {
    position: absolute;
    top: 50%;
    right: 0;
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 2.5rem;
    background: #fff;
    transform: translateY(-50%);
    overflow: hidden;
    opacity: 0;
    visibility: visible;
    border: 1px solid var(--primary-color-100);
    /* transition:
        width 0.4s cubic-bezier(.4,0,.2,1),
        border-radius 0.4s cubic-bezier(.4,0,.2,1),
        background 0.4s,
        padding 0.4s,
        border 0.4s; */
    z-index: 100;
    pointer-events: none;
  }
  .nav-search .form-search {
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  .nav-search.active {
    width: 320px;
    border-radius: 2.5rem;
    background: #fff;
    padding: 0 1.2rem 0 2.4rem;
    min-width: 200px;
    border: 1px solid var(--primary-color-100);
    pointer-events: auto;
    opacity: 1;
  }
  .nav-search.active .form-search {
    opacity: 1;
    transition-delay: 0.2s;
  }
  .nav-search input[type="text"] {
    border: none;
    background: transparent;
    font-size: 14px;
    width: 100%;
    height: 100%;
    outline: none;
    padding: 0.5rem 1rem;
    padding-right: 2rem;
    /* transform: translateY(-2px); */
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.84px;
    color: var(--primary-color-100);
  }
  .search-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-100);
    transition: color 0.3s;
  }
  .search-btn:hover {
    opacity: .7;
  }
  .search-btn svg {
    width: 16px;
    height: 16px;
  }
  ::placeholder {
    text-align: center;
    color: var(--primary-color-100);
    opacity: .3;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.84px;
  }

  /*  */
  .nav-search {
    /* animation: hideSearchBox .3s ease; */
    width: 0;
    height: 34px;
    border-radius: 2.5rem;
    transition: all .5s;
  }
  .nav-search.active{
    right: 0;
    width: 100%;
    height: 34px;
    padding: 0;
    border-radius: 2.5rem;
    background-color: var(--secondary-color-100);
    border: 1px solid var(--primary-color-100);
    transform: translateY(-50%);
    /* animation: showSearchBox .5s ease; */
    animation: showSearchBox 0s ease;
    opacity: 1;
  }
  .search-icon.active {
    background-color: transparent;
    border-color: transparent;
  }
  .search-icon.active:hover svg{
    color: var(--primary-color-100);
    /* opacity: .7; */
  }

  /* ハンバーガー内 */
  .is-hamburger .nav-search{
    width: 100%;
    border: 1px solid var(--primary-color-100);
    pointer-events: auto;
    animation: none;
    border-radius: 2.5rem;
    background-color: var(--secondary-color-100);
    opacity: 1;
  }
  .is-hamburger .nav-search .form-search{
    opacity: 1;
  }
  .is-hamburger .nav-search input[type="text"] {
    padding: 0.5rem 1rem;
    /* transform: translateY(-2px); */
  }
  .is-hamburger .search-icon {
    border: 0;
    background-color: transparent;
    color: var(--primary-color-100);
  }
  .is-hamburger .search-icon:hover svg {
    color: var(--primary-color-100);
    /* opacity: .7; */
  }


  @keyframes showSearchBox {
    /* 0% {
      right: 0;
      width: 34px;
      height: 34px;
      border-radius: 2.5rem;
      background-color: var(--secondary-color-100);
    }
    50% {
      width: 100%;
      height: 34px;
      border-radius: 2.5rem;
      background-color: var(--secondary-color-100);
    }
    100% {
      width: 100%;
      height: 34px;
      border-radius: 2.5rem;
      background-color: var(--secondary-color-100);
    } */
    0% {
      right: 0;
      width: 34px;
      height: 34px;
      border-radius: 2.5rem;
      background-color: var(--secondary-color-100);
    }

    100% {
      width: 100%;
      height: 34px;
      background-color: var(--secondary-color-100);
    }
  }
  /* @keyframes hideSearchBox {
    0% {
      width: 100%;
      height: 34px;
      padding: 0 3rem 0 2.4rem;
      border-radius: 2.5rem;
      background-color: var(--secondary-color-100);
    }
    50% {
      width: 34px;
      height: 34px;
      padding: 0 0 0 2.4rem;
      border-radius: 2.5rem;
      background-color: var(--secondary-color-100);
    }
    100% {
      width: 34px;
      height: 34px;
      padding: 0;
      border-radius: 2.5rem;
      background-color: var(--secondary-color-100);
    }
  } */


  /* ハンバーガ展開時固定 */
  body.is-fixed{
    overflow: hidden;
    position: relative;
  }
  body.is-fixed::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.15;
    background: #11274D;
    z-index: 190;
  }

 
}
@media screen and (max-width:767px){
  .l-header__nav .header-logo-ham--sp a{
    position: relative;
    padding: unset;
    width: unset;
  }
  .l-header__nav .header-logo-ham--sp a::before{
    display: none;
  }
  .header-logo-ham--sp{
    position: absolute;
    z-index: 201;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
    width: 149px;
  }
  .header-logo-ham--sp img{
    width: 100%;
    height: 100%;
  }
  
  .l-header{
    position: relative;
    z-index: 200;
  }
  .l-header__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .l-header__nav{
    padding: 127.16px 20px 25px;
    width: 100%;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    /* transition: all .1s ease; */
  }
  .l-header .l-header__nav{
    display: none !important;
  }
  .l-header.active .l-header__nav{
    display: block !important;
  }
  .l-header__nav ul {
    display: flex;
    justify-content: center;
  }
  .l-header__nav li{
    position: relative;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2em;
    font-feature-settings: "palt";
  }
  .l-header__nav li:last-child{
  }
  .l-header__nav a,
  .l-header__nav img{
    display: block;
    width: 100%;
  }
  .l-header__nav a{
    position: relative;
    padding: 0 20px;
    padding-top: 36px;
    width: 65px;
    /* height: 179.64px; */
  }
  .l-header__nav .nav-search a{
    padding-bottom: 0;
  }
  .l-header__nav a::before{
    content: '';
    width: 24.87px;
    height: 24.9px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url("../img/common/icon_nav01.png") no-repeat center top;
    background-size: contain;
  }
  .l-header__nav li:nth-of-type(2) a::before{
    background: url("../img/common/icon_nav02.png") no-repeat center top;
    background-size: contain;
    width: 27.16px;
    height: 22.63px;
  }
  .l-header__nav li:nth-of-type(3) a::before{
    background: url("../img/common/icon_nav03.png") no-repeat center top;
    background-size: contain;
    width: 31.69px;
    height: 25.02px;
  }
  .l-header__nav li:nth-of-type(4) a::before{
    background: url("../img/common/icon_nav04.png") no-repeat center top;
    background-size: contain;
    width: 23.08px;
    height: 29.43px;
  }
  .l-header__nav li:nth-of-type(5) a::before{
    background: url("../img/common/icon_nav05.png") no-repeat center top;
    background-size: contain;
    width: 22.11px;
    height: 30.56px;
  }
  .l-header__nav li::after{
    content: '';
    width: 1.36px;
    height: 154.36px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url("../img/common/line_vertical_sp.svg") no-repeat center bottom;
    background-size: cover;
  }
  .l-header__nav li:last-child::after{
    display: none;
  }
  .text-vertical {
    writing-mode: vertical-rl;
  }
  .nav_text{
    position: relative;
  }

  /* ヘッダー検索 */
  .search-container {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 40px auto 0;
    width: 330px;
  }
  .search-icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    cursor: pointer;
    display: block;
    color: #fff;
    border-color: transparent;
    /* align-items: center;
    justify-content: center; */
    transition: background-color 0.3s, color 0.3s;
    z-index: 101;
    cursor: unset;
  }
  .search-icon svg {
    width: 15px;
    height: 15px;
    color: var(--primary-color-100);
  }
  .nav-search {
    position: absolute;
    top: 50%;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    border: 1px solid var(--primary-color-100);
    transition:
        width 0.4s cubic-bezier(.4,0,.2,1),
        border-radius 0.4s cubic-bezier(.4,0,.2,1),
        background 0.4s,
        padding 0.4s,
        border 0.4s;
    z-index: 100;
    min-width: 0;
    pointer-events: none;
  }
  .nav-search .form-search {
    opacity: 0;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
  }
  /* .nav-search.active {
    width: calc(200/375*100vw);
    border-radius: 2rem;
    background: #fff;
    padding: 0 1.2rem 0 2.4rem;
    min-width: 200px;
    border: 1px solid var(--primary-color-100);
    pointer-events: auto;
  } */
  .nav-search.active .form-search {
    opacity: 1;
    transition-delay: 0.2s;
  }
  .nav-search input[type="text"] {
    border: none;
    background: transparent;
    font-size: 14px;
    width: 100%;
    outline: none;
    padding: 10px;
    color: var(--primary-color-100);
    /* transform: translateY(-2px); */
  }
  .nav-search input[type="text"] {
    border: none;
    background: transparent;
    width: 100%;
    outline: none;
    padding: 10px;
    padding-right: 30px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.98px;
    color: var(--primary-color-100);
  }

  .search-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-100);
    transition: color 0.3s;
  }
  .search-btn:hover {
    opacity: .7;
  }
  .search-btn svg {
    width: 16px;
    height: 16px;
  }
  ::placeholder {
    text-align: center;
    color: var(--primary-color-100);
    opacity: .3;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.98px;
  }

  /*  */
  .nav-search {
    right: 0;
    width: 100%;
    height: 40px;
    padding: 0;
    border-radius: 2.5rem;
    transform: translateY(-50%);
    border: 1px solid var(--primary-color-100);
    pointer-events: auto;
    animation: none;
    border-radius: 2.5rem;
    background-color: var(--secondary-color-100);
    opacity: 1;
  }

  /* ハンバーガー内 */
  .is-hamburger .search-icon {
  }
  .is-hamburger .nav-search{
  }
  .is-hamburger .nav-search input[type="text"] {
  }


  /* ハンバーガ展開時固定 */
  body.is-fixed{
    overflow: hidden;
    position: relative;
  }
  body.is-fixed::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.15;
    background: #11274D;
    z-index: 190;
  }


}

/* --------------------------------------------------------------------------
  ハンバーガーボタン
-------------------------------------------------------------------------- */
@media screen and (min-width:768px){
  .menu.active{
    background-color: inherit;
  }
  .btn-trigger {
    position: relative;
    width: 46.92px;
    height: 48.79px;
    cursor: pointer;
    background: url("../img/common/icon_menu.svg") no-repeat center top;
    background-size: contain;
    margin: auto;
    transition: all .3s;
  }
  .btn-trigger.active{
    width: 46.92px;
    height: 51.28px;
    background: url("../img/common/icon_menu_close.svg") no-repeat center top;
    background-size: contain;
  }

  .l-header.is-hamburger .menu {
    display: block;
    position: fixed;
    z-index: 300;
  }
  .l-header.is-hamburger .l-header__nav {
    display: none;
  }
  .menu {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    right: 20px;
    top: 12px;
    transform: unset;
    padding: 17px 9px;
    cursor: pointer;
    transition: all .5s;
    z-index: 102;
    display: none;
  }
  .active .l-header__nav {
    height: 100vh;
    background: #fff;
    padding-top: 132px;
  }
  .active .menu{
    display: block;
  }

}
@media screen and (max-width:767px){
.menu.active{
    background-color: inherit;
  }
  .btn-trigger {
    position: relative;
    width: 37.54px;
    height: 39.14px;
    cursor: pointer;
    background: url("../img/common/icon_menu.svg") no-repeat center top;
    background-size: contain;
    margin: auto;
  }
  .btn-trigger.active{
    width: 36px;
    height: 39.14px;
    background: url("../img/common/icon_menu_close.svg") no-repeat center top;
    background-size: contain;
  }

  .l-header.is-hamburger .menu {
    display: block;
    position: fixed;
    z-index: 300;
  }
  .l-header.is-hamburger .l-header__nav {
    display: none;
  }
  .menu {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #fff;
    position: absolute;
    right: 4px;
    top: 10px;
    transform: unset;
    padding: 13px 0 11.75px;
    cursor: pointer;
    transition: all .5s;
    z-index: 300;
    /* display: none; */
    display: block;

  }
  /* .active .l-header__nav {
    width: 100%;
    height: 100vh;
    background: #fff;
    padding-top: calc(127.16/375*100vw);
  } */
  
}



/* --------------------------------------------------------------------------
  スタンプ リンク
-------------------------------------------------------------------------- */
@media screen and (min-width:768px){
  .link-stamp{
    width: 151.83px;
    height: 133px;
    z-index: 300;
    position: fixed;
    right: 19px;
    bottom: 22px;
    opacity: 0;
    animation: setLinkStamp .5s ease;
  }
  .link-stamp.is-show{
    animation: showLinkStamp .5s ease;
    opacity: 1;
  }
  .link-stamp a{
    display: block;
    width: 100%;
    height: 100%;
  }

  @keyframes showLinkStamp {
    0% {
      opacity: 0;
    }
    50%{
      opacity: 1;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes setLinkStamp {
    0% {
      opacity: 1;
    }
    50%{
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  

}
@media screen and (max-width:767px){
  .link-stamp{
    width: 109.31px;
    height: 95.76px;
    z-index: 300;
    bottom: 7.24px;
    right: 9.7px;
    position: fixed;
  }
  .link-stamp a{
    display: block;
    width: 100%;
    height: 100%;
  }

  /* 感想をおくる */
  .bl_send-mail{
    background: #fff url("../img/common/sp_bottom_bg.png") no-repeat left top;
    background-size: 100% 4px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 299;
    text-align: center;
  }
  .bl_send-mail a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 18px 0 13px;
  }
  .send-mail-text{
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 2.64px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    color: var(--primary-color-100);
  }
  .send-mail-text::before{
    content: '';
    width: 15.51px;
    height: 11.2px;
    position: absolute;
    top: 50%;
    left: -26px;
    transform: translateY(-50%);
    background: url("../img/common/icon_mail.png") no-repeat center top;
    background-size: contain;
  }

}


/* -----------------------------------------------------------------
/ セクション
/ --------------------------------------------------------------- */
@media screen and (min-width:768px){
  .c-section__inner{
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 0 64px;
  }
  .bg-light-blue{
    background: url("../img/common/bg_light_blue.png") center top;
    background-size: contain;
    margin-bottom: 62px;
  }

}
@media screen and (max-width:1024px){
}
@media screen and (max-width:767px){
  .c-section__inner{
    margin: 0 16px;
    padding: 54px 0;
  }
  .bg-light-blue{
    background: url("../img/common/bg_light_blue.png") center top;
    background-size: contain;
    
  }
}

/* -----------------------------------------------------------------
/ 見出し
/ --------------------------------------------------------------- */
@media screen and (min-width:768px){
  .c-title{
    font-family: 'Kiwi Maru', 'Noto Sans JP', serif;
    color: var(--primary-color-100);
    text-align: left;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 6.4px;
    position: relative;
    padding-bottom: 10px;
  }
  .c-title::before{
    content: '';
    width: 54px;
    height: 12px;
    position: absolute;
    top: -15px;
    left: 0;
    background: url("../img/top/title_latest-sec_en.svg") no-repeat center top;
    background-size: contain;
  }
  .c-title::after{
    content: '';
    width: 100%;
    height: 1.03px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url("../img/common/line_holizonal_l.svg") no-repeat right top;
    background-size: cover;
  }

  
}
@media screen and (max-width:767px){
  .c-title{
    font-family: 'Kiwi Maru', 'Noto Sans JP', serif;
    color: var(--primary-color-100);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 4px;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    padding-bottom: 8px;
  }
  .c-title::before{
    content: '';
    width: 100%;
    height: 8px;
    position: absolute;
    top: -15px;
    left: 0;
    background: url("../img/top/title_latest-sec_en.svg") no-repeat center top;
    background-size: contain;
  }
  .c-title::after{
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url("../img/common/line_holizonal.svg") no-repeat center top;
    background-size: cover;
  }
}

/* --------------------------------------------------------------------------
  ボタン　もっと見る
-------------------------------------------------------------------------- */
@media screen and (min-width:768px){
  .more-btn{
    margin:  0 auto;
    display: block;
    width: fit-content;
    padding: 22px 0;
    position: relative;
  }
  .more-btn-text{
    font-size: 16px;
    font-weight: 500;
    position: relative;
    z-index: 10;
  }
  .more-btn-text::after {
    content: '';
    width: 80px;
    height: 62px;
    position: absolute;
    top: 50%;
    right: -49px;
    transform: translateY(-50%);
    background: url("../img/common/icon_more_arrow_all_bg.svg") no-repeat center top;
    background-size: contain;
    z-index: -1;
  }

  /* more-btn--m */
  .more-btn.more-btn--m{
    padding: 22px 0;
  }
  .more-btn-text{
    font-size: 16px;
    letter-spacing: 1.12px;
  }
  .more-btn--m .more-btn-text::after{
    width: 139px;
    height: 62px;
    position: absolute;
    top: 50%;
    right: -54px;
    background: url("../img/common/icon_more_arrow_bg.svg") no-repeat center top;
    background-size: contain;
  }

  .more-btn--right{
    margin-right: 87px;
  }

}
@media screen and (max-width:767px){
  .more-btn{
    margin:  0 auto;
    display: block;
    width: fit-content;
    padding: 18px 0;
    position: relative;
    transform: unset;
  }
  .more-btn-text{
    font-size: 14px;
    font-weight: 500;
    position: relative;
    z-index: 10;
    letter-spacing: 1.12px;
  }
  .more-btn-text::after{
    content: '';
    width: 81px;
    height: 54px;
    position: absolute;
    top: 50%;
    right: -43px;
    transform: translateY(-50%);
    background: url("../img/common/icon_more_arrow_all_bg_sp.svg") no-repeat center top;
    background-size: contain;
    z-index: -1;
  }

  /* more-btn--l */
  .more-btn.more-btn--l{
    margin: 0 auto;
  }

  /* more-btn--m */
  .more-btn.more-btn--m{
    padding: 18px 0;
  }
  .more-btn--m .more-btn-text::after {
    width: 121px;
    height: 54px;
    position: absolute;
    top: 50%;
    right: -45px;
    background: url(
    "../img/common/icon_more_arrow_bg_sp.svg") no-repeat center top;
    background-size: contain;
  }

  .more-btn--right{
    margin-right: 54px;
  }

}



/* --------------------------------------------------------------------------
  ページネーション
-------------------------------------------------------------------------- */
@media screen and (min-width:768px){
  .paginathing{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 32px;
    gap: 0 8px;
  }
  .paginathing .paginathing-item{
    border: 1px solid var(--primary-color-100);
    cursor: pointer;
  }
  
  .paginathing .paginathing-item.page-prev{
    margin-right: 10px;
    border-radius: 50%;
  }
  .paginathing .paginathing-item.page-next{
    margin-left: 10px;
    border-radius: 50%;
  }
  .paginathing .paginathing-item.page-prev p,
  .paginathing .paginathing-item.page-next p{
    color: #DC0126;
  }
  
  .paginathing .paginathing-item.active{
    background-color: var(--primary-color-100);
    pointer-events: none;
  }
  .paginathing .paginathing-item.active p,
  .paginathing .paginathing-item.active a{
    color: #fff;
  }
  .paginathing .paginathing-item p,
  .paginathing .paginathing-item a{
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-100);
    text-align: center;
    font-size: 13px;
  }
  .paginathing-item.prev{
    display: none;
  }
  .paginathing-logo{
    text-align: center;
    padding-bottom: 28px;
  }
  .paginathing-logo img{
    max-width: 174px;
  }
  
}

@media screen and (max-width:767px){
  .paginathing{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    gap: 8px;
    padding-bottom: 0 !important;
  }
  .paginathing .paginathing-item{
    border: 1px solid var(--primary-color-100);
    cursor: pointer;
  }
  .paginathing .paginathing-item.page-prev{
    margin-right: 10px;
    border-radius: 50%;
  }
  .paginathing .paginathing-item.page-next{
    margin-left: 10px;
    border-radius: 50%;
  }
  .paginathing .paginathing-item.page-prev p,
  .paginathing .paginathing-item.page-next p{
    color: #DC0126;
  }
  
  .paginathing .paginathing-item.active{
    background-color: var(--primary-color-100);
    pointer-events: none;
  }
  .paginathing .paginathing-item.active p,
  .paginathing .paginathing-item.active a{
    color: #fff;
  }
  .paginathing .paginathing-item p,
  .paginathing .paginathing-item a{
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color-100);
    text-align: center;
    font-size: 13px;
  }
  .paginathing-item.prev{
    display: none;
  }
  .paginathing-logo{
    text-align: center;
    padding-bottom: 28px;
  }
  .paginathing-logo img{
    max-width: 174px;
  }

}




/* -----------------------------------------------------------------
/ ページトップ
/ --------------------------------------------------------------- */
#page_top{
  position: absolute;
  bottom: 0;
  right: 0;
}
#page_top a,#page_top img{
  display: block;
  width: 100%;
}
@media screen and (max-width:767px){
  #page_top{
    width: 44px;
    right: 20px;
  }
}


/* --------------------------------------------------------------------------
  パンくず
-------------------------------------------------------------------------- */
@media screen and (min-width:768px){
  .bl_breadcrumbs{
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
  }
  .breadcrumbs {
    margin: 11px 0 0;
    position: absolute;
    z-index: 10;
    width: 100%;
  }
  .breadcrumbs .breadcrumbs-list{
    padding: 0 50px;
    display: flex;
    flex-wrap: wrap;
  }
  .breadcrumbs .breadcrumbs-list .breadcrumbs-list__item{
    font-size: 10px;
    margin-right: 15px;
    color: var(--primary-color-100);
  }
  .breadcrumbs .breadcrumbs-list a{
    margin-right: 15px;
  }
}

@media screen and (max-width: 1024px){
}
@media screen and (max-width:767px){
  .bl_breadcrumbs{
    position: relative;
    margin: 0 auto;
  }
  .breadcrumbs{
    z-index: 10;
    width: 100%;
  }
  .breadcrumbs .breadcrumbs-list{
    width: auto;
    display: flex;
    margin: 0 15px 5px;
    flex-wrap: wrap;
  }
  .breadcrumbs .breadcrumbs-list .breadcrumbs-list__item{
    font-size: 10px;
    margin-right: 8px;
    color: var(--primary-color-100);
  }
  .breadcrumbs .breadcrumbs-list a{
    margin-right: 8px;
  }
}


/* -----------------------------------------------------------------
/ 人気記事ランキング
/ --------------------------------------------------------------- */
.swiper-container a, .swiper-container img {
  display: block;
  width: 100%;
}
.ranking{
  margin-top: 72px;
  margin-bottom: 85px;
}
.ranking .swiper-container{
  /*padding: 0 11%;*/
}
.ranking .swiper-slide{
  /*margin: 0 1.48%;*/
  /*width: 30% !important;*/
  height: auto;
  background-color: #d2e7e8;
}
.ranking-body{
  position: relative;
  padding: 0 11%;
}
.ranking .swiper-slide a{
  background-color: #d2e7e8;
  padding: 9%;
  box-sizing: border-box;
  height: 100%;
}
.ranking .ranking-img {
  /* display: flex; */
  position: relative;
  overflow: hidden;
}
/* .ranking .ranking-img::before {
  content: "";
	display: block;
	width: 0;
	height: 0;
	padding-bottom: 75%;
} */
.ranking .ranking-img img{
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto; */
  width: 100%;
}
.ranking-sp-categoryblock{
  margin-top: 22px;
  min-height: 49px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.ranking .ranking-sp-position{
  width: 51px;
  height: 49px;
  margin-right: 16px;
}
.ranking .ranking-category{
  margin-top: 8px;
}
.ranking .ranking-category span {
  display: inline-block;
  background-color: #fff;
  font-size: 12px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #1a3164;
  padding: 3px 15px;
}
.ranking .ranking-text{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.ranking .ranking-text__no{
  font-size: 45px;
  color: #1a3164;
  width: 45px;
  line-height: 1;
}
.ranking .ranking-text__ttl{
  width: 100%;
  font-size: 14px;
  color: #1a3164;
  line-height: 1.8;
  font-weight: 500;
}
.ranking .swiper-button-next,
.ranking .swiper-button-prev{
  color: #1a3164;
  background-position: center;
  width: 27px;
  height: 44px;
}
.ranking .swiper-button-next {
	background-image: url(../img/top/ranking-arrow-left.svg);
  transform: scale(-1, 1); /* 左右反転 */
}
/* 前ページボタンのスタイル */
.ranking .swiper-button-prev {
	background-image: url(../img/top/ranking-arrow-left.svg);
}
.swiper-button-next:after, .swiper-button-prev:after{
  content: none;
}
@media screen and (max-width:767px){
  .ranking{
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .ranking-body {
    padding: 0 7%;
  }
  .ranking .swiper-slide a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4.5%;
  }
  .ranking .ranking-img{
    width: 40%;
    order: 2;
  }
  .ranking .ranking-sp-textblock{
    width: calc( 100% - 45% );
    order: 1;
  }
  .ranking .ranking-text__no{
    font-size: 22px;
    width: 25px;
  }
  .ranking .ranking-text__ttl {
    width: calc( 100% - 25px );
    font-size: 13px;
    line-height: 1.5;
  }
  .ranking .ranking-category{
    margin-top: 0;
    text-align: center;
  }
  .ranking .ranking-category span{
    font-size: 10px;
  }
  .ranking .ranking-text{
    margin-top: 10px;
  }
  .ranking .ranking-img::before{
    padding-bottom: 95%;
  }
  .ranking .swiper-button-next, .ranking .swiper-button-prev{
    width: 10px;
    background-size: contain;
  }
  .ranking .swiper-button-next:after, .ranking .swiper-button-prev:after{
    font-size: 21px;
  }
  .ranking .swiper-button-next{
    right: 0;
  }
  .ranking .swiper-button-prev{
    left: 0;
  }
}


/* 3つ以下の場合 */
.ranking.nOslide .swiper-wrapper{
  display: flex;
  justify-content: center;
}
.ranking.nOslide .swiper-wrapper .swiper-slide{
  width: 31.333% !important;
  margin-right: 3%;
}
.ranking.nOslide .swiper-wrapper .swiper-slide:last-child{
  margin-right: 0;
}
.ranking.nOslide .swiper-button-next, .ranking.nOslide .swiper-button-prev{
  display: none;
}
@media screen and (max-width:767px){
  .ranking.nOslide .swiper-wrapper .swiper-slide{
    width:  100% !important;
    margin-right: 0;
  }
}


/* --------------------------------------------------------------------------
  最新記事 latest-sec
-------------------------------------------------------------------------- */
@media screen and (min-width:768px){
  .article{
    position: relative;
    margin-top: 38px;
  }
  .article ul{
    display: flex;
    flex-wrap: wrap;
  }
  .article-list{
    position: relative;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: calc(37/1120*100%);
  }
  /* .article-list::after{
    content: '';
    width: 100%;
    height: 1.03px;
    position: absolute;
    top: calc(426/700*100%);
    left: 0;
    background: url("../img/common/line_holizonal_l.svg") no-repeat center top;
    background-size: cover;
  } */

  .article-list .article-list__item{
    position: relative;
  }
  .article-list__item:first-of-type,
  .article-list__item:nth-of-type(2){
    padding-bottom: calc(32/1120*100%);
    width: calc(540/1120*100%);
  }
  .article-list__item:first-of-type .article-img,
  .article-list__item:nth-of-type(2) .article-img{
    aspect-ratio: 540/304;
    height: calc(304/1120*100%);
  }
  .article-list__item:nth-of-type(n+3){
    width: calc(252/1120*100%);
    margin-top: calc(32/1120*100%);
  }
  .article-list__item:nth-of-type(n+3) .article-img{
    height: calc(140/1120*100%);
    aspect-ratio: 252/140;
  }
  

  .bl_thamb{
    position: relative;
    filter: drop-shadow(4px 4px 14px rgba(22,50,100,0.2));
  }
  .article-img {
    position: relative;
    overflow: hidden;
  }
  .article-img img{
    transition: all .4s ease;
  }
  .article-list__item:hover .article-img img{
    transform: scale(1.02);
  }
  .article-label{
    background: var(--primary-color-100);
    display: flex;
    align-items: center;
    /* padding: 4px 16px; */
    padding: calc(4/1600*100vw)calc(16/1600*100vw);
    position: absolute;
    left: 0;
    bottom: 0;
    gap: calc(18/1600*100vw);
    font-feature-settings: 'palt';
  }
  .article-label p{
    color: #fff;
  }
  .article-label__category {
    font-size: calc(14/1600*100vw);
    display: flex;
    align-items: center;
    gap: calc(6/1600*100vw);
  }
  .cat-icon{
    width: auto;
    height: calc(17/1600*100vw);
    max-height: 17px;
  }
  .article-label__date{
    font-size: calc(12/1600*100vw);
    opacity: .7;
  }

  .article-title{
    font-size: 18px;
    color: #222;
    margin-top: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .article-list__item:nth-of-type(n+3) .article-title{
    font-size: 16px;
  }
  .article-list__item:nth-of-type(n+3) .article-label{
    width: 100%;
    position: relative;
  }

  
}
@media screen and (min-width:1600px){
  .article-list::after{
    top: 426px;
  }
}
/* @media screen and (min-width: 1025px) and (max-width:1200px){
  .article-list__item:nth-of-type(n+3) .article-label .article-label__category{
    font-size: calc(14/1120*100%);
  }
  .article-list__item:nth-of-type(n+3) .article-label .article-label__date{
    font-size: calc(12/1120*100%);
  }
} */
/* @media screen and (max-width:1200px){
  .article-list::after{
    top:  calc(390/1120*100vw);
  }
} */
@media screen and (max-width:1024px){
  .article .article-list__item {
    width: 48%;
  }
  .article-list::after {
    content: '';
    display: none;
  }
  .article-list__item:first-of-type, .article-list__item:nth-of-type(2) {
    margin-bottom: 0;
  }
  .article-list__item:first-of-type .article-label, .article-list__item:nth-of-type(2) .article-label {
    width: 100%;
  }
  .article-title{
    font-size: 16px;
  }
}
@media screen and (max-width:767px){
  .latest-sec .c-section__inner {
    padding: 63px 0 55px;
  }

  .article{
    margin-top: 30px;
  }
  .article ul{
    display: flex;
    flex-wrap: wrap;
    gap: 24px 14px;
  }
  .article-list{
    margin-bottom: 24px;
  }
  .article .article-list__item {
    /* width: calc(164/375*100vw); */
    width: calc((100% - 14px)/2);
  }
  .article .article-img {
    filter: drop-shadow(4px 4px 14px rgba(22,50,100,0.2));
  }
  .article-label{
    background: var(--primary-color-100);
    display: flex;
    align-items: center;
    padding: 4px 6px;
    position: relative;
    width: 100%;
  }
  .article-label p{
    color: #fff;
  }
  .article-label__category {
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
  }
  .cat-icon{
    width: auto;
    height: 11px;
  }
  .article-label__date{
    font-size: 10px;
    opacity: .7;
    margin-left: auto;
  }

  .article-title{
    font-size: 14px;
    color: #222;
    margin-top: 16px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
 
}

/* --------------------------------------------------------------------------
  カード article-card
-------------------------------------------------------------------------- */
@media screen and (min-width:768px){
  .article-card-list{
    position: relative;
    justify-content: space-between;
  }
  .article-card-list__item{
    position: relative;
    width: calc(236/1120*100%);
  }
  .article-card-list__item:nth-of-type(n+5){
    margin-top: 40px;
  }
  .article-card-list__item .article-img {
    height: calc(140/1120*100%);
    aspect-ratio: 121 / 70;
  }
  .article-card-list__item:hover .article-img img{
    transform: scale(1.02);
  }
  .article-card-list .article-label{
    position: relative;
    padding:calc(4/236*100%) calc(8/236*100%);
    gap: unset;
    justify-content: space-between;
  }
  .article-card-list  .article-label__category {
    font-size: calc(14/1600*100vw);
    gap: calc(6/1600*100vw);
  }
  .article-label__date {
    font-size: calc(12/1600*100vw);
    opacity: .7;
  }
  .article-card-list  .article-label p{
    flex-shrink: 0;
  }
  .article-card-list .article-title {
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 行数制限 */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.7;
  }
  
}
/* @media screen and (min-width:1121px){ */
  @media screen and (min-width:1600px){
  .article-label__category,
  .article-card-list  .article-label__category {
    font-size: 14px;
    gap: 6px;
  }
  .article-label__date {
    font-size: 12px;
  }
  .article-label {
    padding: 4px 8px;
    gap: 24px;
  }
}
@media screen and (max-width:767px){
  .article.article-card{
    gap: 48px 26px;
  }
  .article-card-list{
    position: relative;
    justify-content: space-between;
  }
  .article-card-list__item{
    position: relative;
    width: calc(160/375*100vw);
  }
  .article-card-list__item .article-img {
    height: calc(160/375*100vw);
    filter: drop-shadow(4px 4px 14px rgba(22,50,100,0.2));
  }
  .article-card-list .article-label{
    position: relative;
  }
  .article-card-list .article-title {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 行数制限 */
    overflow: hidden;
    text-overflow: ellipsis;
  }

}



/* --------------------------------------------------------------------------
  link-sec
-------------------------------------------------------------------------- */
@media screen and (min-width:768px){
  .bl_link__item a{
    display: block;
    width: 100%;
    height: 100%;
  }
  .bl_link_bottom{
    margin: 33px auto 80px;
    width: 5em;
  }
  .bl_link_bottom__item + .bl_link_bottom__item{
    margin-top: 24px;
  }
  .bl_link_bottom__item a{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
  }
  .bl_link_bottom__item a::before{
    display: block;
    content: '';
    background: url("../img/common/ico_arrow_left.svg") no-repeat left top;
    background-size: cover;
    width: 12px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
  }

}
@media screen and (max-width:1024px){
}
@media screen and (max-width:767px){
  .bl_link__item a{
    display: block;
    width: 100%;
    height: 100%;
  }
  .bl_link_bottom{
    margin: 25px auto 80px;
    width: 5em;
  }
  .bl_link_bottom__item + .bl_link_bottom__item{
    margin-top: 16px;
  }
  .bl_link_bottom__item a{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;

    position: relative;
  }
  .bl_link_bottom__item a::before{
    display: block;
    content: '';
    background: url("../img/common/ico_arrow_left.svg") no-repeat left top;
    background-size: cover;
    width: 12px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
  }
}



/* -----------------------------------------------------------------
/ フッター
/ --------------------------------------------------------------- */
@media screen and (min-width:768px){
  .l-footer{
    margin: 0 40px;
    position: relative;
  }
  .l-footer::before{
    content: '';
    width: 100%;
    height: 2.5px;
    position: absolute;
    top: 0;
    right: 0;
    background: url("../img/common/line_holizonal_footer.svg") no-repeat right top;
    background-size: cover;
  }
  .l-footer__inner{
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
  }
  .l-footer-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-footer__nav{
    display: flex;
    align-items: end;
  }
  .l-footer__nav .logo-pilot{
    width: 90px;
    height: 27.9px;
    margin-right: 60.5px;
    margin-left: 0;
  }
  .l-footer__nav .logo-pilot img {
    width: 100%;
    height: 100%;
  }
  .l-footer__nav .l-footer__nav-link{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }
  .l-footer__nav-link-text{
    font-size: 12px;
  }
  .l-footer__nav-link-text a{
    color: var(--primary-color-100);
  }
  .l-footer__copy{
    font-size: 10px;
  }

}
.l-footer__copy p{
  color: var(--primary-color-100);
}

@media screen and (max-width:1024px){
  
}
@media screen and (max-width:767px){
  .l-footer{
    margin: 0 14px;
    position: relative;
  }
  .l-footer::before{
    content: '';
    width: 100%;
    height: 3px;
    position: absolute;
    top: 0;
    right: 0;
    background: url("../img/common/line_holizonal_footer_sp.svg") no-repeat right top;
    background-size: cover;
  }
  .l-footer__inner{
    padding: 12px 0;
    margin: 0 12px;
    position: relative;
  }
  .l-footer__nav-link-text{
    font-size: 12px;
    line-height: 2;
  }
  .l-footer__nav-link-text a{
    color: var(--primary-color-100);
  }
  .l-footer__nav-link-text + .l-footer__nav-link-text{
    margin-top: 8px;
  }
  .l-footer__copy{
    font-size: 10px;
    line-height: 2;
  }
  .l-footer-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .l-footer__nav{
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .sp-foot-item{
    display: none;
  }
  .l-footer .logo-pilot{
    width: 76px;
    height: 20px;
    margin: 0;
    order: unset;
  }
  
  
  
}




/* YouTube */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
}
/* .bl_link{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1024px;
  margin: 5% auto auto;
}
.bl_link_col2{
  padding: 0 11%;
}
.bl_link_col3{
  padding: 0 5%;
}
.bl_link .bl_link__item > a{
  display: block;
}
.bl_link_col2 .bl_link__item{
  display: block;
  width: calc((100% -  calc(40 / 1320 * 100%))/2);
}
.bl_link_col2 .bl_link__item + .bl_link__item{
  margin-left: calc(40 / 1320 * 100%);
}
.bl_link_col3 .bl_link__item{
  display: block;
  width: calc((100% -  calc(40 / 1320 * 100%))/3);
}
.bl_link_col3 .bl_link__item + .bl_link__item{
  margin-left: calc(20 / 1320 * 100%);
}
.bl_link .bl_link__item-wide{
  width: 100%;
  max-width: 520px;
  margin-left: 0!important;
}
.bl_link .bl_link__item img{
  width: 100%;
  filter: drop-shadow(3px 3px 10px rgba(0,0,0,0.2));
  transform: translateZ(0);
} */
/* @media screen and (max-width: 767px){
  .bl_link{
    padding: 0 7%;
  }
  .bl_link_col2,
  .bl_link_col3
  {
    margin-top: 21px;
    flex-direction: column;
    align-items: center;
  }
  .bl_link_col2 .bl_link__item,
  .bl_link_col3 .bl_link__item
  {
    display: block;
    max-width: 300px;
    width: 100%;
  }
  .bl_link_col2 .bl_link__item + .bl_link__item,
  .bl_link_col3 .bl_link__item + .bl_link__item
  {
    margin-left: 0;
    margin-top: 20px;
  }
  .bl_link .bl_link__item-wide{
    width: 100%;
  }
} */



/* --------------------------------------------------------------------------
  アニメーション
-------------------------------------------------------------------------- */
[data-aos][data-aos][data-aos='fade-up'] {
  transform: translate3d(0, 30px, 0);
  transition-duration: .5s;
}
[data-aos][data-aos][data-aos='fade-up'].aos-animate {
  transform: translate3d(0, 0, 0);
}
