@charset "UTF-8";
/*--------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
--------------------------------------------------*/
@media screen and (max-width: 767px) {
  /*　画面サイズが767pxまではここを読み込む　*/
  html.is-fixed {
    height: 100%;
    overflow: hidden;
  }

  body {
    width: 100%;
    color: #222;
    font: 16px / 1.35 sans-serif;
    -webkit-font-size-adjust: 100%;
    font-weight: normal;
    letter-spacing: 0.05em;
    word-break: break-word;
  }
  .is-fixed body {
    position: fixed;
  }

  a {
    transition: 0.2s ease-out;
  }

  img {
    max-width: 100%;
    vertical-align: bottom;
    image-rendering: auto;
  }
}
@media screen and (max-width: 767px) and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

@media screen and (max-width: 767px) {
  th,
  td {
    word-break: break-all;
  }

  input,
  button,
  select,
  textarea {
    font-family: sans-serif;
  }
  input:focus,
  button:focus,
  select:focus,
  textarea:focus {
    outline: none;
  }

  button {
    cursor: pointer;
  }

  ::placeholder {
    color: #8d8d8d;
  }

  .ly-container {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    min-width: 0;
    margin: 0 auto 80px;
    padding: 0 20px;
  }

  .ly-container-single {
    margin: 0 0 20px;
  }

  .ly-main-top {
    width: 100%;
    padding-bottom: 30px;
    background: #e7eff7;
  }

  .button-primary {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 15px 10px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border: #fb9614 2px solid;
    background: #fb9614;
    color: #fff;
    width: 300px;
  }

  .button-secondary {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 15px 10px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border: #115fad 2px solid;
    background: #115fad;
    color: #fff;
    width: 300px;
  }

  .button-tertiary {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 10px 3px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    border: #00abeb 2px solid;
    background: #fff;
    color: #00abeb;
    min-width: 190px;
  }
  .button-tertiary.button-next {
    padding-right: 35px;
    padding-left: 30px;
  }
  .button-tertiary.button-next::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 14px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background: url("../images/top/ico_arrow-lightblue.svg") 50% 50%/contain no-repeat;
  }

  .button-sub {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 10px 3px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    border: #115fad 2px solid;
    background: #fff;
    color: #115fad;
    width: 100%;
  }

  .button-input {
    border: #115fad 2px solid;
    background: #115fad;
    color: #fff;
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 11px 10px 9px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
  }

  .button-mymenu {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 10px 3px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    border: #115fad 2px solid;
    background: #fff;
    color: #fb9614;
  }

  .input-search {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 10px 15px;
    transition: 0.2s ease;
    border: #f0f0f0 2px solid;
    border-radius: 100px;
    background-color: #f0f0f0;
    font-size: 12px;
    line-height: 1;
  }
  .input-search:focus {
    border-color: #115fad;
    outline: none;
    background: #fff;
  }

  .header__inner {
    display: flex;
    justify-content: space-between;
    height: 50px;
  }
  .header__top {
    align-self: center;
  }

  .header-logo {
    margin: 0 10px 0 15px;
  }
  .header-logo a {
    display: block;
  }
  .header-logo img {
    display: block;
    max-height: 20px;
  }

  .header-language {
    display: none;
  }

  .header-menu {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .header-menu__item {
    display: flex;
  }
  .header-menu__link {
    display: none;
  }
  .header-menu__primary {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    min-width: 30px;
    padding: 5px 10px;
    background: #fb9614;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
  }
  .header-menu__button {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 50px;
    background: #115fad;
    color: transparent;
    font-size: 0;
  }
  .header-menu__button-ico {
    position: relative;
    width: 25px;
    height: 19px;
    background: none;
    cursor: pointer;
  }
  .header-menu__button-ico::before, .header-menu__button-ico span, .header-menu__button-ico::after {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    transition: all 0.4s;
    border-radius: 3px;
    background-color: #fff;
  }
  .header-menu__button-ico::before {
    content: "";
    top: 0;
    animation: bar01 0.75s forwards;
  }
  .is-active .header-menu__button-ico::before {
    animation: active-bar01 0.75s forwards;
  }
  .header-menu__button-ico span {
    top: 8px;
    transition: all 0.25s;
    opacity: 1;
  }
  .is-active .header-menu__button-ico span {
    opacity: 0;
  }
  .header-menu__button-ico::after {
    content: "";
    bottom: 0;
    animation: bar03 0.75s forwards;
  }
  .is-active .header-menu__button-ico::after {
    animation: active-bar03 0.75s forwards;
  }

  .header-nav {
    display: none;
    position: fixed;
    z-index: 1;
    top: 50px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    background: #115fad;
  }
  .header-nav__list {
    margin: 0 0 40px;
    padding: 0;
    list-style: none;
  }
  .header-nav__item {
    border-top: #fff 1px solid;
  }
  .header-nav__item:last-child {
    border-bottom: #fff 1px solid;
  }
  .header-nav__button {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    width: 100%;
    padding: 15px 30px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
  }
  .header-nav__ico-language {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    margin: 0 10px 0 0;
    background: url("../images/top/ico_language-white.svg") 50% 50%/contain no-repeat;
  }

  .header-nav-menu {
    margin: 25px 30px;
  }
  .header-nav-menu__item {
    margin-top: 15px;
  }
  .header-nav-menu__item:first-child {
    margin-top: 0;
  }
  .header-nav-menu__button {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 15px 10px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border: #fff 2px solid;
    background: #fff;
    color: #115fad;
  }
  .header-nav-menu__button-primary {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 15px 10px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border: #fb9614 2px solid;
    background: #fb9614;
    color: #fff;
  }

  .fNav {
    border-top: #ddd 1px solid;
  }

  .fNavInner {
    display: flex;
    align-items: center;
  }

  .fNav .pmark {
    flex: 0 0 auto;
    padding: 15px 0 15px 15px;
  }

  .fNav .pmark img {
    width: 70px;
    height: auto;
  }

  .fNav .links {
    padding: 15px;
    vertical-align: middle;
  }

  .fNav .links ul {
    margin: 0;
    padding: 0;
  }

  .fNav .links {
    font-size: 12px;
    line-height: 2;
  }

  .fNav .links li {
    display: inline-block;
    margin-right: 1.25em;
  }

  .fNav .links a.link-pc {
    padding-left: 18px;
    background: url("../images/top/icon_pc.svg") no-repeat 0 50%;
    background-size: 14px auto;
    color: #00abeb;
  }

  .gFooter {
    margin: 0;
    border-top: 1px solid #ddd;
  }

  .gFooter .copyright {
    display: block;
    padding: 15px;
    color: #666;
    font-size: 10px;
    text-align: center;
  }

  .top-section {
    position: relative;
    box-sizing: border-box;
    margin: 25px 15px 0;
    padding: 25px 15px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
  .top-section__block {
    margin-top: 30px;
  }
  .top-section__block:first-child {
    margin-top: 0;
  }

  .top-headline01 {
    margin: 30px 0 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.7;
    text-align: center;
  }
  .top-headline01:first-child {
    margin-top: 0;
  }
  .top-headline01__inner {
    padding-bottom: 9px;
    background: linear-gradient(transparent 25px, #ffc62b 0%);
  }

  .top-headline02 {
    position: relative;
    margin: 60px 0 30px;
    padding-left: 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
  }
  .top-headline02:first-child {
    margin-top: 10px;
  }
  .top-headline02::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 2px;
    left: 0;
    width: 5px;
    background: #222;
  }

  .top-button-box {
    display: flex;
    justify-content: center;
    margin-top: 25px;
  }

  .top-hero {
    position: relative;
    margin-bottom: -10px;
    padding-bottom: 20px;
    background: #fff;
  }
  .top-hero::before {
    content: "";
  }
  .top-hero::after {
    content: "";
    display: block;
    position: absolute;
    top: 130px;
    left: 0;
    width: 100%;
    height: 50px;
  }
  .top-hero__inner {
    margin: 0 20px;
  }
  .top-hero__title {
    margin: 20px 0 0;
    color: #115fad;
    font-size: 15px;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
  }
  .top-hero__title b {
    font-size: 20px;
  }

  .top-hero-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 15px 0 0 -10px;
    padding: 0;
    list-style: none;
  }
  .top-hero-list__item {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: calc(50% - 10px);
    margin: 10px 0 0 10px;
    padding: 15px 3px;
    border: #115fad 2px solid;
    border-radius: 8px;
    background: #fff;
    color: #115fad;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }

  .top-hero-button-box {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .top-industry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -10px 0 0;
    padding: 0;
    list-style: none;
  }
  .top-industry-list__item {
    display: flex;
    width: calc(50% - 5px);
    margin: 10px 0 0;
  }

  .top-search {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .top-search__field {
    flex: 1 1 auto;
    width: calc(100% - 70px);
  }
  .top-search__button-box {
    display: flex;
    flex: 0 0 auto;
    width: 65px;
    margin-left: 5px;
  }
  .top-search__more {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }
  .top-search__more-button {
    display: inline-block;
    position: relative;
    padding: 8px 25px 6px 15px;
    transition: 0.2s ease;
    border-radius: 100px;
    background: #fff;
    color: #00abeb;
    font-size: 14px;
    line-height: 1;
    text-decoration: none;
  }
  .top-search__more-button::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background: url("../images/top/ico_arrow-lightblue.svg") 50% 50%/contain no-repeat;
  }

  .top-features-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px 0 0 -10px;
    padding: 0;
    list-style: none;
  }
  .top-features-list__item {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    margin: 10px 0 0 10px;
    overflow: hidden;
    transition: 0.2s ease;
    border-radius: 8px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
  .top-features-list__item:nth-child(-n+2) {
    width: calc(50% - 10px);
  }
  .top-features-list__link {
    display: flex;
    width: 100%;
    min-width: 0;
    text-decoration: none;
  }
  .top-features-list__item:nth-child(-n+2) .top-features-list__link {
    flex-direction: column;
  }
  .top-features-list__image {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    padding-top: 45%;
    overflow: hidden;
  }
  .top-features-list__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-features-list__title {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    min-height: 2em;
    margin: 0;
    padding: 10px 15px;
    color: #222;
    font-size: 12px;
    font-weight: bold;
  }
  .top-features-list__item:nth-child(-n+2) .top-features-list__title {
    justify-content: center;
    padding: 10px 12px;
    text-align: center;
  }

  .top-story-list {
    display: flex;
    flex-wrap: wrap;
    margin: -20px 0 0 -10px;
    padding: 0;
    list-style: none;
  }
  .top-story-list__item {
    display: flex;
    box-sizing: border-box;
    width: calc(50% - 10px);
    margin: 20px 0 0 10px;
    overflow: hidden;
    transition: 0.2s ease;
  }
  .top-story-list__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    text-decoration: none;
  }
  .top-story-list__image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 90px;
    overflow: hidden;
  }
  .top-story-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-story-list__name {
    margin: 10px 0 0;
    color: #222;
    font-size: 12px;
  }
  .top-story-list__corp {
    margin: 5px 0 0;
    color: #222;
    font-size: 12px;
  }

  .top-useful-list {
    display: flex;
    flex-wrap: wrap;
    margin: -20px 0 0 -10px;
    padding: 0;
    list-style: none;
  }
  .top-useful-list__item {
    display: flex;
    box-sizing: border-box;
    width: calc(50% - 10px);
    margin: 20px 0 0 10px;
    overflow: hidden;
    transition: 0.2s ease;
  }
  .top-useful-list__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    text-decoration: none;
  }
  .top-useful-list__image {
    width: 100%;
  }
  .top-useful-list__image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .top-useful-list__title {
    margin: 10px 0 0;
    color: #00abeb;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.06em;
  }
  .top-useful-list__text {
    margin: 5px 0 0;
    color: #222;
    font-size: 10px;
  }

  .top-slider__main {
    transition: 0.2s ease;
    opacity: 0;
  }
  .top-slider__main.slick-initialized {
    opacity: 1;
  }
  .top-slider .slick-list {
    padding-top: 10px !important;
    padding-bottom: 15px !important;
  }
  .top-slider__item {
    margin: 0;
    padding: 5px;
    transition: 0.2s ease;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 52, 104, 0.2);
  }

  .top-new-slider__main {
    transition: 0.2s ease;
    opacity: 0;
  }
  .top-new-slider__main.slick-initialized {
    opacity: 1;
  }
  .top-new-slider .slick-list {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .top-new-slider__item {
    margin: 0 5px;
  }
  .top-new-slider__link {
    display: block;
    transition: 0.2s ease;
    color: #222;
    text-decoration: none;
  }
  .top-new-slider__image {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding: 10px;
    border: #e8e8e8 1px solid;
  }
  .top-new-slider__image img {
    max-width: 100%;
    max-height: 100%;
  }
  .top-new-slider__title {
    margin: 10px 0 0;
    font-size: 10px;
    text-align: center;
  }

  .top-slider-banner {
    margin: 20px auto 0;
  }
  .top-slider-banner__main {
    transition: 0.2s ease;
    opacity: 0;
  }
  .top-slider-banner__main.slick-initialized {
    opacity: 1;
  }
  .top-slider-banner .slick-list {
    padding-top: 10px !important;
  }
  .top-slider-banner__item {
    margin: 0 10px;
    transition: 0.2s ease;
  }
  .top-slider-banner__link {
    display: block;
  }
  .top-slider-banner__link img {
    display: block;
    margin: 0 auto;
  }
  .top-slider-banner__control {
    margin-top: 20px;
  }

  .top-footer-nav {
    margin-top: 30px;
    padding: 15px 10px;
    background: #e7eff7;
  }
  .top-footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }
  .top-footer-nav__item {
    position: relative;
    margin: 3px 0;
    padding: 0 8px;
  }
  .top-footer-nav__item:first-child {
    padding-left: 0;
  }
  .top-footer-nav__item:last-child {
    padding-right: 0;
  }
  .top-footer-nav__item:last-child::after {
    display: none;
  }
  .top-footer-nav__item::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    right: 0;
    bottom: 2px;
    width: 1px;
    background: #222;
  }
  .top-footer-nav__link {
    display: block;
    transition: 0.2s ease;
    color: #222;
    font-size: 10px;
    line-height: 1.2;
    text-decoration: none;
  }

  .top-sns {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .top-sns__item {
    margin: 0 15px;
  }
  .top-sns__link {
    display: block;
    transition: 0.2s ease;
  }
  .top-sns__link img {
    height: 30px;
  }

  .top-member {
    margin: 0 15px;
    padding: 20px 0 15px;
  }
  .top-member__user {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.2;
  }
  .top-member__user b {
    margin-right: 8px;
    font-size: 16px;
  }

  .top-member-list {
    display: flex;
    justify-content: flex-end;
    margin: 15px 0 0;
    padding: 0;
    list-style: none;
  }
  .top-member-list__item {
    margin-left: 20px;
  }
  .top-member-list__link {
    position: relative;
    padding-right: 15px;
    color: #115fad;
    font-size: 12px;
    text-decoration: none;
  }
  .top-member-list__link::after {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    right: 0;
    width: 7px;
    height: 12px;
    background: url("../images/top/ico_arrow-blue.svg") 0 50%/contain no-repeat;
  }

  .top-mymenu {
    margin-top: 20px;
  }

  .top-mymenu-button {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 25px 12px 13px;
    transition: 0.2s ease;
    border: #cfdfef 1px solid;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 5px 0 rgba(0, 52, 104, 0.1);
    text-decoration: none;
  }
  .top-mymenu-button::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 12px;
    width: 7px;
    height: 12px;
    margin-top: -6px;
    background: url("../images/top/ico_arrow-blue-pale.svg") 0 50%/contain no-repeat;
  }
  .top-mymenu-button__title {
    flex: 0 0 auto;
    margin-right: 10px;
    color: #115fad;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
  }
  .top-mymenu-button__num {
    color: #115fad;
    font-size: 10px;
  }
  .top-mymenu-button__num b {
    margin-right: 5px;
    color: #fb9614;
    font-size: 12px;
    font-weight: bold;
  }

  .top-mymenu-nav {
    margin: 0;
  }
  .top-mymenu-nav__title {
    display: flex;
    align-items: center;
    margin-top: 20px;
    font-size: 12px;
  }
  .top-mymenu-nav__title:first-child {
    margin-top: 0;
  }
  .top-mymenu-nav__title-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }
  .top-mymenu-nav__data {
    margin: 10px 0 0;
    padding: 0;
    border-top: #e7eff7 1px solid;
  }

  .top-mymenu-nav-list {
    display: flex;
    flex-wrap: wrap;
    margin: -5px 0 0 -5px;
    padding: 0;
    list-style: none;
  }
  .top-mymenu-nav-list__item {
    display: flex;
    width: calc(50% - 5px);
    margin: 5px 0 0 5px;
    padding: 0;
  }
  .top-mymenu-nav-list__item--sp-wide {
    width: calc(100% - 5px);
  }

  .slider-control {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
  }
  .slider-control .slick-arrow {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    overflow: hidden;
    transition: 0.2s ease;
    border: 0;
    background: url("../images/top/ico_slider-arrow.svg") 0 50%/contain no-repeat;
    color: transparent;
    font-size: 0;
  }
  .slider-control .slick-prev {
    transform: scale(-1, 1);
  }
  .slider-control .slick-next {
    order: 1;
  }
  .slider-control .slick-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 10px;
    padding: 0;
    list-style: none;
  }
  .slider-control .slick-dots li {
    margin: 3px 5px;
  }
  .slider-control .slick-dots button {
    display: block;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    overflow: hidden;
    transition: 0.2s ease;
    border: #e7eff7 2px solid;
    border-radius: 10px;
    background: #fff;
    color: transparent;
    font-size: 0;
  }
  .slider-control .slick-dots .slick-active button {
    border-color: #115fad;
    background: #115fad;
  }

  @keyframes bar01 {
    0% {
      transform: translateY(8px) rotate(45deg);
    }
    50% {
      transform: translateY(8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes bar03 {
    0% {
      transform: translateY(-8px) rotate(-45deg);
    }
    50% {
      transform: translateY(-8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  @keyframes active-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(8px) rotate(0);
    }
    100% {
      transform: translateY(8px) rotate(45deg);
    }
  }
  @keyframes active-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-8px) rotate(0);
    }
    100% {
      transform: translateY(-8px) rotate(-45deg);
    }
  }
  .u-pc-only {
    display: none !important;
  }

  .u-red {
    color: #e71f19;
  }

  .u-bold {
    font-weight: bold;
  }

  .u-marker {
    display: inline-block;
    margin-right: 8px;
    padding: 5px 4px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
  }

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

  .u-right {
    text-align: right;
  }

  .u-middle {
    align-items: center;
    vertical-align: middle;
  }

  .u-top {
    vertical-align: top;
  }

  .u-nowrap {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px), print {
  /*　画面サイズが768pxからはここを読み込む　*/
  body {
    min-width: 1120px;
    color: #222;
    font: 16px / 1.35 "Meiryo", "Hiragino Kaku Gothic Pro", sans-serif;
    font-weight: 500;
    letter-spacing: 0.075em;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  a {
    transition: 0.2s ease-out;
  }
  a:hover {
    text-decoration: none;
  }

  img {
    max-width: 100%;
    vertical-align: bottom;
    image-rendering: auto;
  }
}
@media screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

@media screen and (min-width: 768px), print {
  th,
  td {
    word-break: break-all;
  }

  input,
  button,
  select,
  textarea {
    font-family: "Meiryo", "Hiragino Kaku Gothic Pro", sans-serif;
  }
  input:focus,
  button:focus,
  select:focus,
  textarea:focus {
    outline: none;
  }

  button {
    cursor: pointer;
  }

  ::placeholder {
    color: #8d8d8d;
  }

  .ly-container {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    min-width: 1080px;
    margin: 0 auto 80px;
    padding: 0 20px;
  }

  .ly-container-single {
    margin: 0 0 50px;
  }

  .ly-main-top {
    width: 100%;
    padding-bottom: 50px;
    background: #e7eff7;
  }

  .button-primary {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 18px 10px 17px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: #fb9614 2px solid;
    background: #fb9614;
    color: #fff;
    width: 300px;
  }
  .button-primary:hover {
    background: #fff;
    color: #fb9614;
  }

  .button-secondary {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 18px 10px 17px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: #115fad 2px solid;
    background: #115fad;
    color: #fff;
    width: 300px;
  }
  .button-secondary:hover {
    background: #fff;
    color: #115fad;
  }

  .button-tertiary {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 11px 10px 9px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: #00abeb 2px solid;
    background: #fff;
    color: #00abeb;
    min-width: 190px;
  }
  .button-tertiary:hover {
    background: #e5f6fd;
  }
  .button-tertiary.button-next {
    padding-right: 30px;
    padding-left: 30px;
  }
  .button-tertiary.button-next::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 14px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background: url("../images/top/ico_arrow-lightblue.svg") 50% 50%/contain no-repeat;
  }

  .button-sub {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 18px 10px 17px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: #115fad 2px solid;
    background: #fff;
    color: #115fad;
    width: 300px;
  }
  .button-sub:hover {
    background: #e7eff7;
  }

  .button-input {
    border: #115fad 2px solid;
    background: #115fad;
    color: #fff;
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 11px 10px 9px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
  }
  .button-input:hover {
    background: #fff;
    color: #115fad;
  }

  .button-mymenu {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 11px 10px 9px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: #fb9614 2px solid;
    background: #fff;
    color: #fb9614;
  }
  .button-mymenu:hover {
    background: #fff4e7;
  }

  .input-search {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding: 11px 27px 10px;
    transition: 0.2s ease;
    border: #f0f0f0 2px solid;
    border-radius: 100px;
    background-color: #f0f0f0;
    font-size: 14px;
    line-height: 1;
  }
  .input-search:hover {
    border-color: #115fad;
  }
  .input-search:focus {
    border-color: #115fad;
    outline: none;
    background: #fff;
  }

  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1080px;
    height: 70px;
    margin: 0 auto;
  }
  .header__top {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
  }

  .header-logo {
    width: 255px;
    margin-right: 20px;
  }
  .header-logo a {
    display: block;
  }
  .header-logo img {
    display: block;
    width: 100%;
    height: auto;
  }

  .header-language {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 11px 10px 9px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: #00abeb 2px solid;
    background: #fff;
    color: #00abeb;
    width: 154px;
  }
  .header-language:hover {
    background: #e5f6fd;
  }
  .header-language::before {
    content: "";
    width: 13px;
    height: 13px;
    margin: -1px 7px 0 0;
    background: url("../images/top/ico_language.svg") 50% 50%/contain no-repeat;
  }

  .header-menu {
    display: flex;
    align-items: center;
    list-style: none;
  }
  .header-menu__item {
    margin-left: 10px;
  }
  .header-menu__item--far {
    margin-left: 22px;
  }
  .header-menu__link {
    color: #00abeb;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
  .header-menu__link:hover {
    color: #115fad;
    text-decoration: underline;
  }
  .header-menu__primary {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 11px 10px 9px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: #fb9614 2px solid;
    background: #fb9614;
    color: #fff;
    width: 170px;
  }
  .header-menu__primary:hover {
    background: #fff;
    color: #fb9614;
  }
  .header-menu__secondary {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 11px 10px 9px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: #115fad 2px solid;
    background: #115fad;
    color: #fff;
    width: 170px;
  }
  .header-menu__secondary:hover {
    background: #fff;
    color: #115fad;
  }
  .header-menu__sub {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 11px 10px 9px;
    transition: 0.2s linear;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    border: #115fad 2px solid;
    background: #fff;
    color: #115fad;
    width: 170px;
  }
  .header-menu__sub:hover {
    background: #e7eff7;
  }

  .header-nav {
    background: #115fad;
  }
  .header-nav__list {
    display: flex;
    justify-content: center;
    width: 1080px;
    height: 50px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }
  .header-nav__item {
    display: flex;
    width: 180px;
  }
  .header-nav__button {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }
  .header-nav__button:hover {
    background: #2475c5;
  }
  .header-nav__button.is-current::after {
    height: 6px;
  }
  .header-nav__button::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 0;
    transform: translateX(-50%);
    transition: 0.1s ease;
    background: #ffc62b;
  }

  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }

  .clearfix {
    display: inline-block;
  }

  /* Hides from IE-mac \*/
  * html .clearfix {
    height: 1%;
  }

  .clearfix {
    display: block;
  }

  /* End hide from IE-mac */
  #GlobalFooter {
    background: #ffffff;
    margin: 15px auto 10px;
    padding-top: 20px;
    border-top: solid 3px #2798e3;
    font-size: 12px;
    line-height: 1.5;
  }

  #GlobalFooter .width_1030 {
    width: 1080px;
    margin: 0 auto;
  }

  #FooterLogo {
    width: 100px;
    float: left;
    padding-top: 35px;
    text-align: center;
  }

  #FooterService {
    width: 970px;
    float: left;
    margin-left: 10px;
    display: inline;
    /* dobble margin bugfix for ie6 */
  }

  #FooterServiceHead {
    margin-bottom: 15px;
  }

  #GlobalFooter .FooterTitle {
    width: 500px;
    float: left;
    font-size: 117%;
    font-weight: bold;
    color: #333;
  }

  #GlobalFooter #FooterServiceHead p.FooterHeadLink {
    text-align: right;
  }

  #GlobalFooter #FooterServiceHead p.FooterHeadLink a {
    float: right;
    padding-right: 20px;
    color: #09F !important;
  }

  #GlobalFooter #FooterServiceHead p.FooterHeadLink img {
    vertical-align: text-top;
  }

  #FooterServiceCont dl {
    margin: 10px 0 0;
    padding: 0;
    letter-spacing: 0.03em;
  }

  #FooterServiceCont dl dt {
    float: left;
    width: 120px;
    margin: 0 10px 5px 0;
    color: #2798e3;
    line-height: 1.5;
  }

  #FooterServiceCont dl dd {
    float: left;
    margin: 0 10px 3px 0;
    padding: 0 9px 0 0;
    border-right: 1px solid #999;
    white-space: nowrap;
    line-height: 1.3;
  }

  #FooterServiceCont dl dd a:hover {
    text-decoration: underline;
  }

  #FooterServiceCont dl dd.last,
  #FooterServiceCont dl dd:last-child {
    border-right: none;
  }

  #FooterCorp {
    clear: both;
  }

  #FooterCorpInfo {
    display: flex;
    align-items: center;
    float: left;
    width: 940px;
    margin: 10px 0 0 0;
    padding-top: 15px;
    border-top: 1px solid #2798e3;
  }

  #FooterCorpId {
    display: flex;
    align-items: center;
    margin-right: 30px;
  }

  #FooterCorpName {
    width: 100px;
  }
  #FooterCorpName img {
    display: block;
    width: 100%;
  }

  #copyright {
    width: 200px;
    margin: 0 0 0 10px;
    font-size: 81.6%;
    color: #333;
    line-height: 1.2;
  }

  #FooterCorpLink ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #FooterCorpLink ul li {
    margin: 0 10px 0 0;
    padding: 0 9px 0px 0;
    border-right: 1px solid #999;
    font-size: 93.3%;
    line-height: 1.2;
  }

  #FooterCorpLink ul li.last {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
  }

  #privacy {
    width: 75px;
    float: left;
    margin: -15px 0 10px 10px;
    display: inline;
    /* dobble margin bugfix for ie6 */
  }

  /*=====================*/
  /*	フォント
  /*=====================*/
  #GlobalFooter a {
    color: #666666;
    text-decoration: none;
  }

  #GlobalFooter a:hover {
    color: #666666;
    text-decoration: underline;
  }

  .top-section {
    position: relative;
    box-sizing: border-box;
    width: 1080px;
    margin: 50px auto 0;
    padding: 50px 40px;
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
  .top-section__block {
    margin-top: 50px;
  }
  .top-section__block:first-child {
    margin-top: 0;
  }

  .top-headline01 {
    margin: 50px 0 30px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-headline01:first-child {
    margin-top: 0;
  }
  .top-headline01__inner {
    background: linear-gradient(transparent 30px, #ffc62b 0%);
  }

  .top-headline02 {
    position: relative;
    margin: 60px 0 30px;
    padding-left: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
  }
  .top-headline02:first-child {
    margin-top: 10px;
  }
  .top-headline02::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 2px;
    left: 0;
    width: 5px;
    background: #222;
  }

  .top-button-box {
    position: absolute;
    top: 50px;
    right: 40px;
  }

  .top-hero {
    position: relative;
    margin-bottom: -90px;
    padding: 50px 0 124px;
    background: #fff;
  }
  .top-hero::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50% + 50px);
    height: 100%;
    background: url("../images/top/mv.jpg") 0 50%/cover;
  }
  .top-hero::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 180px;
    height: 100%;
    margin-left: -50px;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  }
  .top-hero__inner {
    position: relative;
    z-index: 1;
    width: 1080px;
    margin: 0 auto;
  }
  .top-hero__title {
    width: 570px;
    margin: 0;
    color: #115fad;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
  }
  .top-hero__title b {
    font-size: 36px;
  }

  .top-hero-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 570px;
    margin: 10px 0 0 -20px;
    padding: 0;
    list-style: none;
  }
  .top-hero-list__item {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 255px;
    margin: 20px 0 0 20px;
    padding: 25px 10px 23px;
    border: #115fad 2px solid;
    border-radius: 10px;
    background: #fff;
    color: #115fad;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
  }

  .top-hero-button-box {
    display: flex;
    justify-content: center;
    width: 570px;
    margin-top: 30px;
  }

  .top-industry-list {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
  }
  .top-industry-list__item {
    display: flex;
    width: 235px;
    margin: 20px 0 0 20px;
  }
  .top-industry-list__item:nth-child(-n+4) {
    margin-top: 0;
  }
  .top-industry-list__item:nth-child(4n+1) {
    margin-left: 0;
  }

  .top-search {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .top-search__field {
    flex: 1 1 auto;
  }
  .top-search__button-box {
    display: flex;
    flex: 0 0 auto;
    width: 90px;
    margin-left: 10px;
  }
  .top-search__more {
    width: 100%;
    margin-top: 16px;
    text-align: center;
  }
  .top-search__more-button {
    display: inline-block;
    position: relative;
    padding: 8px 25px 6px 15px;
    transition: 0.2s ease;
    border-radius: 100px;
    background: #fff;
    color: #00abeb;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
  }
  .top-search__more-button:hover {
    background: #e5f6fd;
  }
  .top-search__more-button::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background: url("../images/top/ico_arrow-lightblue.svg") 50% 50%/contain no-repeat;
  }

  .top-features-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px 0 0 -20px;
    padding: 0;
    list-style: none;
  }
  .top-features-list__item {
    display: flex;
    box-sizing: border-box;
    width: calc(25% - 20px);
    margin: 15px 0 0 20px;
    overflow: hidden;
    transition: 0.2s ease;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  }
  .top-features-list__item:hover {
    transform: scale(1.03);
  }
  .top-features-list__item:nth-child(-n+2) {
    width: calc(50% - 20px);
  }
  .top-features-list__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    text-decoration: none;
  }
  .top-features-list__image {
    display: flex;
    flex: 0 0 auto;
    height: 220px;
    overflow: hidden;
  }
  .top-features-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-features-list__title {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    margin: 20px 5px;
    color: #222;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
  }
  .top-features-list__item:nth-child(-n+2) .top-features-list__title {
    font-size: 16px;
  }

  .top-story-list {
    display: flex;
    flex-wrap: wrap;
    margin: -20px 0 0 -20px;
    padding: 0;
    list-style: none;
  }
  .top-story-list__item {
    display: flex;
    box-sizing: border-box;
    width: calc(25% - 20px);
    margin: 20px 0 0 20px;
    overflow: hidden;
    transition: 0.2s ease;
  }
  .top-story-list__item:hover {
    transform: scale(1.03);
  }
  .top-story-list__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    text-decoration: none;
  }
  .top-story-list__image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 156px;
    overflow: hidden;
  }
  .top-story-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  _:-ms-lang(x)::-ms-backdrop, .top-story-list__image img {
    width: auto;
    height: auto;
    max-height: 100%;
  }
  .top-story-list__name {
    margin: 13px 0 0;
    color: #222;
    font-size: 14px;
  }
  .top-story-list__corp {
    margin: 8px 0 0;
    color: #222;
    font-size: 14px;
  }

  .top-useful-list {
    display: flex;
    flex-wrap: wrap;
    margin: -20px 0 0 -20px;
    padding: 0;
    list-style: none;
  }
  .top-useful-list__item {
    display: flex;
    box-sizing: border-box;
    width: calc(25% - 20px);
    margin: 20px 0 0 20px;
    overflow: hidden;
    transition: 0.2s ease;
  }
  .top-useful-list__item:hover {
    transform: scale(1.03);
  }
  .top-useful-list__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    text-decoration: none;
  }
  .top-useful-list__image {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 90px;
    overflow: hidden;
  }
  .top-useful-list__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  _:-ms-lang(x)::-ms-backdrop, .top-useful-list__image img {
    width: auto;
    height: auto;
    max-height: 100%;
  }
  .top-useful-list__title {
    margin: 15px 0 0;
    color: #00abeb;
    font-weight: 700;
    letter-spacing: 0.06em;
  }
  .top-useful-list__text {
    margin: 10px 0 0;
    color: #222;
    font-size: 14px;
  }

  .top-slider__main {
    transition: 0.2s ease;
    opacity: 0;
  }
  .top-slider__main.slick-initialized {
    opacity: 1;
  }
  .top-slider .slick-list {
    padding-top: 10px !important;
    padding-bottom: 27px !important;
  }
  .top-slider__item {
    margin: 0 9px;
    padding: 6px;
    transition: 0.2s ease;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 52, 104, 0.2);
  }
  .top-slider__item:hover {
    transform: translateY(-10px);
  }

  .top-new-slider__main {
    transition: 0.2s ease;
    opacity: 0;
  }
  .top-new-slider__main.slick-initialized {
    opacity: 1;
  }
  .top-new-slider .slick-list {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .top-new-slider__item {
    width: 150px;
    margin: 0 11px;
  }
  .top-new-slider__link {
    display: block;
    transition: 0.2s ease;
    color: #222;
    text-decoration: none;
  }
  .top-new-slider__link:hover {
    transform: scale(1.05);
    color: #115fad;
  }
  .top-new-slider__image {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 130px;
    padding: 15px;
    border: #e8e8e8 1px solid;
  }
  .top-new-slider__image img {
    max-width: 100%;
    max-height: 100%;
  }
  .top-new-slider__title {
    margin: 15px 0 0;
    font-size: 14px;
    text-align: center;
  }
  .top-new-slider__control {
    margin-top: 10px;
  }

  .top-slider-banner {
    width: 1080px;
    margin: 50px auto 0;
  }
  .top-slider-banner__main {
    transition: 0.2s ease;
    opacity: 0;
  }
  .top-slider-banner__main.slick-initialized {
    opacity: 1;
  }
  .top-slider-banner .slick-list {
    padding-top: 10px !important;
  }
  .top-slider-banner__item {
    margin: 0 10px;
    transition: 0.2s ease;
  }
  .top-slider-banner__item:hover {
    transform: translateY(-5px);
  }
  .top-slider-banner__link {
    display: block;
  }
  .top-slider-banner__link img {
    display: block;
    margin: 0 auto;
  }
  .top-slider-banner__control {
    margin-top: 20px;
  }

  .top-footer-nav {
    margin-top: 50px;
    padding: 30px 0;
    background: #e7eff7;
  }
  .top-footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 1080px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
  }
  .top-footer-nav__item {
    position: relative;
    padding: 0 15px;
  }
  .top-footer-nav__item:first-child::before {
    display: none;
  }
  .top-footer-nav__item::before {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 1px;
    background: #222;
  }
  .top-footer-nav__link {
    transition: 0.2s ease;
    color: #222;
    font-size: 14px;
    text-decoration: none;
  }
  .top-footer-nav__link:hover {
    color: #115fad;
  }

  .top-sns {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .top-sns__item {
    margin: 0 30px;
  }
  .top-sns__link {
    display: block;
    transition: 0.2s ease;
  }
  .top-sns__link:hover {
    transform: translateY(-5px);
  }
  .top-sns__link img {
    height: 40px;
  }

  .top-member {
    width: 1080px;
    margin: 0 auto;
    padding: 40px 0;
  }
  .top-member__user {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
  }
  .top-member__user b {
    margin-right: 5px;
    font-size: 24px;
  }

  .top-member-button {
    position: relative;
    width: 44px;
    height: 44px;
    margin: -6px 10px 0;
    overflow: hidden;
    transition: 0.2s ease;
    border-radius: 22px;
    background: #fb9614;
    color: transparent;
    font-size: 0;
  }
  .top-member-button:hover {
    background: #fdca89;
  }
  .top-member-button::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 19px;
    transform: translate(-50%, -50%);
    background: url("../images/top/ico_menu.svg") 0 50%/contain no-repeat;
  }

  .top-member-list {
    display: flex;
    justify-content: flex-end;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
  }
  .top-member-list__item {
    margin-left: 30px;
  }
  .top-member-list__link {
    position: relative;
    padding-right: 15px;
    color: #115fad;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }
  .top-member-list__link:hover {
    text-decoration: underline;
  }
  .top-member-list__link::after {
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 6px;
    height: 10px;
    background: url("../images/top/ico_arrow-blue.svg") 0 50%/contain no-repeat;
  }

  .top-mymenu {
    margin-top: 35px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 52, 104, 0.2);
  }
  .top-mymenu__bottom {
    display: flex;
    justify-content: center;
    background: #fff4e7;
  }
  .top-mymenu__bottom-item {
    width: 260px;
    margin: 15px 20px;
  }

  .top-mymenu-button {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 30px;
    transition: 0.2s ease;
    border: #e8e8e8 2px solid;
    border-radius: 5px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    text-decoration: none;
  }
  .top-mymenu-button:hover {
    background: #e7eff7;
  }
  .top-mymenu-button__title {
    flex: 0 0 auto;
    margin-right: 10px;
    color: #115fad;
    font-weight: 700;
    line-height: 1;
  }
  .top-mymenu-button__num {
    color: #115fad;
    font-size: 14px;
  }
  .top-mymenu-button__num b {
    margin-right: 5px;
    color: #fb9614;
    font-size: 18px;
    font-weight: 700;
  }

  .top-mymenu-nav {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  .top-mymenu-nav__title {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    width: 290px;
    padding: 20px 40px;
    border-top: #e7eff7 1px solid;
    font-size: 20px;
    font-weight: 700;
  }
  .top-mymenu-nav__title:first-child {
    border-top: 0;
  }
  .top-mymenu-nav__title-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  .top-mymenu-nav__data {
    box-sizing: border-box;
    width: calc(100% - 290px);
    margin: 0;
    padding: 20px 40px 20px 0;
    border-top: #e7eff7 1px solid;
  }
  .top-mymenu-nav__title:first-child + .top-mymenu-nav__data {
    border-top: 0;
  }

  .top-mymenu-nav-list {
    display: flex;
    flex-wrap: wrap;
    margin: -10px 0 0 20px;
    padding: 0;
    list-style: none;
  }
  .top-mymenu-nav-list__item {
    display: flex;
    width: calc(50% - 20px);
    margin: 10px 0 0 20px;
    padding: 0;
  }

  .slider-control {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
  }
  .slider-control .slick-arrow {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    overflow: hidden;
    transition: 0.2s ease;
    border: 0;
    background: url("../images/top/ico_slider-arrow.svg") 0 50%/contain no-repeat;
    color: transparent;
    font-size: 0;
  }
  .slider-control .slick-arrow:hover {
    transform: scale(1.5);
  }
  .slider-control .slick-prev {
    transform: scale(-1, 1);
  }
  .slider-control .slick-prev:hover {
    transform: scale(-1.5, 1.5);
  }
  .slider-control .slick-next {
    order: 1;
  }
  .slider-control .slick-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 10px;
    padding: 0;
    list-style: none;
  }
  .slider-control .slick-dots li {
    margin: 3px 5px;
  }
  .slider-control .slick-dots button {
    display: block;
    box-sizing: border-box;
    width: 15px;
    height: 15px;
    overflow: hidden;
    transition: 0.2s ease;
    border: #e7eff7 2px solid;
    border-radius: 10px;
    background: #fff;
    color: transparent;
    font-size: 0;
  }
  .slider-control .slick-dots button:hover {
    border-color: #115fad;
  }
  .slider-control .slick-dots .slick-active button {
    border-color: #115fad;
    background: #115fad;
  }

  .u-sp-only {
    display: none !important;
  }

  .u-red {
    color: #e71f19;
  }

  .u-bold {
    font-weight: bold;
  }

  .u-marker {
    display: inline-block;
    margin-right: 8px;
    padding: 5px 4px;
    border: 1px solid #ddd;
    background-color: #f7f7f7;
  }

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

  .u-right {
    text-align: right;
  }

  .u-middle {
    align-items: center;
    vertical-align: middle;
  }

  .u-top {
    vertical-align: top;
  }

  .u-nowrap {
    white-space: nowrap;
  }
}

/*# sourceMappingURL=style_top.css.map */
