@charset "utf-8";
/* CSS Document */

/* ================================

　  レイアウト
    home = 通常トップページ
    custom_home = カスタムトップページ

================================= */
@media screen and (min-width: 768px) {
  .home .outer_wrap,
  .custom_home {
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .home .outer_wrap,
  .custom_home {
    background-color: #fff;
  }
}

/* ================================

　  共通

================================= */

/* FadeUpAnime */
.home .js-rt,
.custom_home .js-rt {
  opacity: 0;
}
.home .fadeUp,
.custom_home .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

/* 通常トップページ用 */
.home .js-rt.js-rt-active {
  animation: unset;
  transform: rotate(0.05deg);
  opacity: 1;
}

/* カスタムトップページ用 */
.custom_home .js-rt.js-rt-active {
  animation: unset;
  transform: rotate(0.05deg);
  opacity: 1;
}

/* トップh2のリンク設定 */
.home h2 a:hover,
.post-1145 h2 a:hover,
.post-1146 h2 a:hover {
  opacity: 1;
}

/* PC
------------------------------------ */
@media screen and (min-width: 768px) {
  .home h2,
  .custom_home h2 {
    position: relative;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    z-index: 1;
  }
  .home h2:before,
  .custom_home h2:before {
    content: "";
    position: absolute;
    background-color: #187fc4;
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
  }
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  .home h2,
  .custom_home h2 {
    position: relative;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    font-size: 8vw;
    font-weight: 700;
    font-style: italic;
    padding-bottom: 1.5vw;
  }
  .home h2:before,
  .custom_home h2:before {
    content: "";
    position: absolute;
    background-color: #187fc4;
    width: 8vw;
    height: 0.8vw;
    bottom: 0;
    left: 0;
  }
}

/* ================================

　  ヘッダー

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 768px) {
  /* メインスタイルここから */
  .img-wrapper {
    width: auto;
    margin: auto;
    position: relative;
    /*height: 100vh;*/
    height: 81vh;
    overflow: hidden;
    border-bottom: 14px solid #187fc4;
  }

  .img-item {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    /*height: 100vh;*/
    height: 80vh;
    width: 100%;

    /* 各画像にあらかじめ表示処理をさせる前の状態を設定 */
    filter: brightness(0.2);
    clip-path: polygon(-110% 0, 0 0, -10% 100%, -110% 100%);
    transform: translate3d(-50%, 0, 0);
    z-index: 0;
  }

  .img-item img {
    /* ここはデザインに沿って調整 */
    /*width: 1920px;*/
    /*height: 100vh;*/
    height: 80vh;
    object-fit: cover;
    width: 100%;
  }

  /* 最前面の画像へのスタイル */
  .img-item.js-active-front {
    z-index: 2;
    animation: mv-visible-square-anim 0.8s ease-in-out forwards;
  }
  .img-item.js-active-front img {
    animation: zoomUp 15s;
    will-change: transform;
    animation-delay: 1.5s;
  }

  @keyframes zoomUp {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }

  @keyframes mv-visible-square-anim {
    /* 描画領域を四角形で型取り*/
    /*
    start 非表示
    end 全表示
    方向:左上から右下へ */
    0% {
      clip-path: polygon(-110% 0, 0 0, -10% 100%, -110% 100%);
      filter: brightness(0.2);
    }

    100% {
      clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%);
      filter: brightness(1);
    }
  }

  /* mv内テキスト(最前面で表示させる) */
  .text-item {
    position: absolute;
    top: 55%;
    left: 10%;
    z-index: 0;
    transform: translate3d(0, -50%, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* テキスト全てを非表示にする迄のアニメーションを設定 */
  .text-item.js-text-hidden {
    z-index: 2;
    animation: mv-hidden-text-anim 5.6s ease-in-out forwards;
  }

  @keyframes mv-hidden-text-anim {
    0% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  .text-item .text {
    transform: translate3d(0, 100%, 0);
    clip-path: polygon(0 -100%, 100% -100%, 100% 0, 0 0);
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
  }
  .text-item .en_text {
    position: relative;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
  }
  .slide_quest {
    width: 60%;
  }
  .text-item .en_text span {
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    /* font-family: "M PLUS 1p", "Noto Sans JP", sans-serif; */
    transform: rotate(0.05deg);
    margin-left: 20px;
    letter-spacing: 0.05em;
  }
  .text-item .en_text:before {
    content: "";
    position: absolute;
    background-color: #187fc4;
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
  }

  .text-item .ja_text {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
  }

  /* mv内のテキストの行数の増減対応 */
  .text-item p:not(:first-child) {
    margin-top: 40px;
  }

  /* このアニメーション定義はJS側スタイル付与をするための設定のため、本ファイル上で他のセレクタへの使用はNGです*/
  @keyframes mv-visible-text-delay-anim {
    0% {
      clip-path: polygon(0 -100%, 100% -100%, 100% 0, 0 0);
      transform: translate3d(0, 100%, 0);
    }
    35% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      transform: translate3d(0, 0%, 0);
    }
    80% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      transform: translate3d(0, 0%, 0);
    }
    100% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      transform: translate3d(0, 0%, 0);
    }
  }

  /*
  *アニメーションの終了後の処理を維持(アニメーション調整時は@keyframesの値もあわせて修正すること)
  *次の要素を最前面表示させるため前後位置調整
  */
  .img-item.js-front-AnimEnd {
    clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%);
    filter: brightness(1);
    z-index: 1;
  }

  /* 画面左端の縦棒(progress-bar) */
  .progress-bar {
    position: absolute;
    top: 50%;
    left: 10px;

    /* mvの中では最前面とする */
    z-index: 3;
    height: 390px;
    width: 10px;
    background: red;
    transform: translate3d(0, -50%, 0);
    clip-path: polygon(0 -100%, 100% -100%, 100% 0, 0 0);
  }

  .progress-bar.js-progress-visible {
    animation: progress-visible-anim 3.2s ease-in-out forwards;
  }

  @keyframes progress-visible-anim {
    0% {
      clip-path: polygon(0 -100%, 100% -100%, 100% 0, 0 0);
    }
    35% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    80% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      opacity: 1;
    }
    100% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      opacity: 0;
    }
  }
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  /* メインスタイルここから */
  .img-wrapper {
    width: auto;
    margin: auto;
    position: relative;
    height: 119vw;
    overflow: hidden;
    border-bottom: 3vw solid #187fc4;
  }

  .img-item {
    position: absolute;
    top: 0;
    left: 50%;
    width: auto;
    height: 119vw;

    /* 各画像にあらかじめ表示処理をさせる前の状態を設定 */
    filter: brightness(0.2);
    clip-path: polygon(-110% 0, 0 0, -10% 100%, -110% 100%);
    transform: translate3d(-50%, 0, 0);
    z-index: 0;
  }

  .img-item img {
    /* ここはデザインに沿って調整 */
    width: 101vw;
    object-fit: cover;
    height: 116vw;
  }

  /* 最前面の画像へのスタイル */
  .img-item.js-active-front {
    z-index: 2;
    animation: mv-visible-square-anim 0.8s ease-in-out forwards;
  }
  .img-item.js-active-front img {
    animation: zoomUp 15s;
    will-change: transform;
    animation-delay: 1.5s;
  }

  @keyframes zoomUp {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.1);
    }
  }

  @keyframes mv-visible-square-anim {
    /* 描画領域を四角形で型取り*/
    /*
    start 非表示
    end 全表示
    方向:左上から右下へ */
    0% {
      clip-path: polygon(-110% 0, 0 0, -10% 100%, -110% 100%);
      filter: brightness(0.2);
    }

    100% {
      clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%);
      filter: brightness(1);
    }
  }

  /* mv内テキスト(最前面で表示させる) */
  .text-item {
    position: absolute;
    top: 50%;
    left: 7%;
    z-index: 0;
    transform: translate3d(0, -50%, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  /* テキスト全てを非表示にする迄のアニメーションを設定 */
  .text-item.js-text-hidden {
    z-index: 2;
    animation: mv-hidden-text-anim 5.6s ease-in-out forwards;
  }

  @keyframes mv-hidden-text-anim {
    0% {
      opacity: 1;
    }
    80% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  .text-item .text {
    transform: translate3d(0, 100%, 0);
    clip-path: polygon(0 -100%, 100% -100%, 100% 0, 0 0);
    font-size: 10vw;
    font-weight: 700;
    color: #ffffff;
  }
  .text-item .en_text {
    position: relative;
    font-size: 7vw;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    padding-bottom: 2vw;
    line-height: 7vw;
  }
  .text-item .en_text span {
    font-size: 3.5vw;
    font-weight: 700;
    font-style: normal;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    transform: rotate(0.05deg);
    margin-left: 4vw;
  }
  .slide_quest {
    width: 80%;
  }
  .text-item .en_text span:nth-child(2) {
    margin-left: 0px;
  }
  .text-item .en_text:before {
    content: "";
    position: absolute;
    background-color: #187fc4;
    width: 8vw;
    height: 0.8vw;
    bottom: 0;
    left: 0;
  }

  .text-item .ja_text {
    font-size: 4.8vw;
    font-weight: 700;
    color: #ffffff;
  }

  /* mv内のテキストの行数の増減対応 */
  .text-item p:not(:first-child) {
    margin-top: 6vw;
  }

  /* このアニメーション定義はJS側スタイル付与をするための設定のため、本ファイル上で他のセレクタへの使用はNGです*/
  @keyframes mv-visible-text-delay-anim {
    0% {
      clip-path: polygon(0 -100%, 100% -100%, 100% 0, 0 0);
      transform: translate3d(0, 100%, 0);
    }
    35% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      transform: translate3d(0, 0%, 0);
    }
    80% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      transform: translate3d(0, 0%, 0);
    }
    100% {
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      transform: translate3d(0, 0%, 0);
    }
  }

  /*
  *アニメーションの終了後の処理を維持(アニメーション調整時は@keyframesの値もあわせて修正すること)
  *次の要素を最前面表示させるため前後位置調整
  */
  .img-item.js-front-AnimEnd {
    clip-path: polygon(0 0, 110% 0, 100% 100%, 0 100%);
    filter: brightness(1);
    z-index: 1;
  }
}

/* ================================

　  Information

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 960px) {
  .row01 {
    max-width: 1366px;
    margin: 80px auto 0;
  }

  .row01_content {
    margin: 0 100px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .row01_left {
    padding-right: 60px;
  }

  .row01 .info_change {
    margin-top: 36px;
  }

  .row01 .tab {
    position: relative;
    cursor: pointer;
    color: #808080;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.8;
    padding-left: 20px;
    letter-spacing: 0.2em;
    transform: rotate(0.05deg);
  }
  .row01 .tab:before {
    content: "";
    position: absolute;
    background-color: #808080;
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
    left: 0;
    border-radius: 50%;
  }
  .row01 .tab.active {
    color: #000000;
  }
  .row01 .tab.active:before {
    content: "";
    position: absolute;
    background-color: #187fc4;
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
    left: 0;
    border-radius: 50%;
  }

  .row01 .panel {
    display: none;
    text-align: left;
    transform: rotate(0.05deg);
  }
  .row01 .panel.active {
    display: block;
  }

  .row01 .info_button {
    font-size: 0;
    margin-top: 31px;
  }
  .row01 .info_button ul {
    display: inline-block;
  }
  .row01 .info_button a {
    position: relative;
    display: inline-block;
    border: 1px solid #000000;
    font-size: 12px;
    font-weight: 700;
    max-width: 300px;
    width: 151px;
    padding: 14px 18px;
    letter-spacing: 0.22em;
  }
  .row01 .info_button ul li:before {
    content: "";
    position: absolute;
    background: url(../img/info_button_b.png) center top / contain no-repeat;
    width: 22px;
    height: 4.5px;
    top: 21px;
    right: 12px;
  }

  .row01 .info_button .slide {
    background: #fff;
    color: #000000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform: rotate(0.05deg);
  }
  .row01 .info_button .slide::after {
    background: #000000;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .row01 .info_button ul li.slide:hover {
    color: #fff;
  }
  .row01 .info_button ul li.slide a:hover {
    opacity: 1;
  }
  .row01 .info_button .slide:hover::after {
    transform: scale(1, 1);
  }
  .row01 .info_button ul li.slide:hover::before {
    content: "";
    position: absolute;
    background: url(../img/info_button_w.png) center top / contain no-repeat;
    width: 22px;
    height: 4.5px;
    top: 21px;
    right: 12px;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  }

  .row01 .info_button li:not(:first-child) {
    margin-top: 13px;
  }

  .row01 .row01_right {
    margin-top: 27px;
    min-height: 378px;
    max-width: 821px;
    width: 100%;
  }

  .row01 .panel_content li:not(:first-child) {
    margin-top: 25px;
  }

  .row01 .panel_content li a {
    position: relative;
    display: inline-flex;
    font-size: 12px;
    font-weight: 300;
    transition-duration: 0s;
    transform: rotate(0.05deg);
    min-height: 31px;
  }
  .row01 .panel_content li a:hover {
    opacity: 1;
    color: #187fc4;
  }
  .row01 .panel_content li a:before {
    content: "";
    position: absolute;
    width: 20.5px;
    height: 4px;
    top: 50%;
    left: -48px;
    margin-top: -8px;
    transform: rotate(-0.05deg);
    transition: 0.6s;
  }
  .row01 .panel_content li a:hover:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_a.png) center top / contain no-repeat;
    width: 20.5px;
    height: 4px;
    top: 50%;
    left: -38px;
    margin-top: -8px;
    transform: rotate(-0.05deg);
  }

  .row01 .panel_content li a .info_date {
    letter-spacing: 0.05em;
  }

  .row01 .new-txt {
    display: block;
    background-color: #000;
    color: #fff;
    padding: 0px 5px 0px;
    border-radius: 20px;
    font-size: 9px;
    width: 33px;
    position: absolute;
    margin: -16px 0;
  }
  .row01 .panel_content li a:hover .new-txt {
    background-color: #187fc4;
  }

  .row01 .panel_content li a .info_cate {
    position: relative;
    display: inline-block;
    margin: 0 54px 0 45px;
    text-align: center;
    min-width: 78px;
    font-weight: 700;
    letter-spacing: 0.15em;
    white-space: nowrap;
  }
  .row01 .panel_content li a .info_cate:before {
    content: "";
    position: absolute;
    background: url(../img/dotted.png) center top / contain no-repeat;
    width: 1px;
    height: 31px;
    /*top: 50%;*/
    left: -27px;
    /*margin-top: -15.5px;*/
    top: -5px;
  }
  .row01 .panel_content li a .info_cate:after {
    content: "";
    position: absolute;
    background: url(../img/dotted.png) center top / contain no-repeat;
    width: 1px;
    height: 31px;
    /*top: 50%;*/
    right: -27px;
    /*margin-top: -15.5px;*/
    top: -5px;
  }
  .row01 .panel_content li a .info_title {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-top: -2px;
    /*max-width: 688px;
    width: 100%;*/
  }
  .row01 .panel_content li a .info_pdf {
    padding-left: 33px;
    margin-top: -3px;
  }
  .row01 .panel_content li a .info_pdf img {
    width: 18px;
  }
}

/* タブレット
------------------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .row01_content {
    display: block;
  }

  .row01 {
    max-width: 1366px;
    margin: 80px 100px 0;
  }

  .row01_content {
    position: relative;
  }

  .row01 .info_change {
    margin-top: 20px;
  }

  .row01 .info_change ul {
    display: flex;
  }
  .row01 .info_change ul li:not(:first-child) {
    margin-left: 30px;
  }

  .row01 .tab {
    position: relative;
    cursor: pointer;
    color: #808080;
    font-size: 14px;
    font-weight: 400;
    line-height: 2.8;
    padding-left: 20px;
    letter-spacing: 0.2em;
    transform: rotate(0.05deg);
  }
  .row01 .tab:before {
    content: "";
    position: absolute;
    background-color: #808080;
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
    left: 0;
    border-radius: 50%;
  }
  .row01 .tab.active {
    color: #000000;
  }
  .row01 .tab.active:before {
    content: "";
    position: absolute;
    background-color: #187fc4;
    width: 10px;
    height: 10px;
    top: 50%;
    margin-top: -5px;
    left: 0;
    border-radius: 50%;
  }

  .row01 .panel {
    display: none;
    text-align: left;
    transform: rotate(0.05deg);
  }
  .row01 .panel.active {
    display: block;
  }

  .row01 .info_button {
    position: relative;
    margin-top: 40px;
    width: 100%;
  }
  .row01 .info_button ul {
    display: flex;
  }
  .row01 .info_button ul li {
    position: relative;
  }
  .row01 .info_button ul li:not(:first-of-type) {
    margin-left: 20px;
  }
  .row01 .info_button a {
    position: relative;
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #000000;
    font-size: 14px;
    font-weight: 700;
    padding: 20px 30px;
    letter-spacing: 0.22em;
    width: 220px;
  }
  .row01 .info_button ul li a:before {
    content: "";
    position: absolute;
    background: url(../img/info_button_b.png) center top / contain no-repeat;
    width: 24px;
    height: 5px;
    top: 50%;
    right: 20px;
    margin-top: -4px;
  }
  .row01 .info_button a:hover {
    color: #ffffff;
    background-color: #000000;
    opacity: 1;
  }
  .row01 .info_button ul li a:hover:before {
    content: "";
    position: absolute;
    background: url(../img/info_button_w.png) center top / contain no-repeat;
    width: 24px;
    height: 5px;
    top: 50%;
    right: 20px;
    margin-top: -4px;
  }

  .row01 .row01_right {
    margin-top: 40px;
  }

  .row01 .panel_content li:not(:first-child) {
    margin-top: 30px;
  }

  .row01 .panel_content li a {
    display: flex;
    flex-wrap: wrap;
    font-weight: 300;
    align-items: center;
  }
  .row01 .panel_content li a:hover {
    opacity: 1;
    color: #187fc4;
  }

  .row01 .panel_content li a .info_date {
    position: relative;
    letter-spacing: 0.05em;
    padding-left: 40px;
    font-size: 12px;
    order: 1;
    width: 120px;
  }
  .row01 .new-txt {
    display: block;
    background-color: #000;
    color: #fff;
    border-radius: 20px;
    font-size: 9px;
    width: 33px;
    text-align: center;
    position: absolute;
    top: -15px;
  }
  .row01 .panel_content li a:hover .new-txt {
    background-color: #187fc4;
  }

  .row01 .panel_content li a .info_date:before {
    content: "";
    position: absolute;
    background: url(../img/info_button_b.png) center top / contain no-repeat;
    width: 15px;
    height: 5px;
    top: 50%;
    left: 0;
    margin-top: -2.5px;
    transition-duration: 0.3s;
  }
  .row01 .panel_content li a:hover .info_date:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_a.png) center top / contain no-repeat;
    width: 15px;
    height: 5px;
    top: 50%;
    left: 0;
    margin-top: -2.5px;
  }

  .row01 .panel_content li a .info_cate {
    position: relative;
    display: inline-block;
    margin: 0 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    width: 120px;
    order: 2;
  }
  .row01 .panel_content li a .info_cate:before {
    content: "";
    position: absolute;
    background: url(../img/dotted.png) center top / contain no-repeat;
    left: 0;
    width: 1px;
    height: 35px;
    top: 50%;
    margin-top: -18.5px;
  }
  .row01 .panel_content li a .info_cate:after {
    content: "";
    position: absolute;
    background: url(../img/dotted.png) center top / contain no-repeat;
    right: 0;
    width: 1px;
    height: 35px;
    top: 50%;
    margin-top: -18.5px;
  }

  .custom_home .row01 .panel_content li a .info_cate {
    width: 120px;
  }
  .custom_home .row01 .panel_content li a .info_cate:before {
    left: 0;
  }
  .custom_home .row01 .panel_content li a .info_cate:after {
    right: 0;
  }

  .row01 .panel_content li a .info_title {
    font-size: 14px;
    letter-spacing: 0.05em;
    margin-top: 0;
    display: block;
    order: 3;
    width: 287px;
  }
  .row01 .panel_content li a .info_pdf {
    margin-left: 24px;
    order: 4;
    position: absolute;
    right: 0;
    /* top: 0px; */
  }
  .row01 .panel_content li a .info_pdf img {
    width: 18px;
  }
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  .row01 {
    position: relative;
    margin: 9.5vw auto 0;
    padding: 0 7vw;
  }

  .row01_content {
    position: relative;
  }

  .row01 .info_change {
    margin-top: 3vw;
  }

  .row01 .info_change ul {
    display: flex;
  }
  .row01 .info_change ul li:not(:first-child) {
    margin-left: 6vw;
  }

  .row01 .tab {
    position: relative;
    cursor: pointer;
    color: #808080;
    font-size: 3.8vw;
    font-weight: 400;
    line-height: 2.8;
    padding-left: 5vw;
    letter-spacing: 0.2em;
    transform: rotate(0.05deg);
  }
  .row01 .tab:before {
    content: "";
    position: absolute;
    background-color: #808080;
    width: 3vw;
    height: 3vw;
    top: 50%;
    margin-top: -1.5vw;
    left: 0;
    border-radius: 50%;
  }
  .row01 .tab.active {
    color: #000000;
  }
  .row01 .tab.active:before {
    content: "";
    position: absolute;
    background-color: #187fc4;
    width: 3vw;
    height: 3vw;
    top: 50%;
    margin-top: -1.5vw;
    left: 0;
    border-radius: 50%;
  }

  .row01 .panel {
    display: none;
    text-align: left;
    transform: rotate(0.05deg);
  }
  .row01 .panel.active {
    display: block;
  }

  .row01 .info_button {
    position: relative;
    margin-top: 10vw;
    width: 100%;
  }
  .row01 .info_button ul {
    display: flex;
    justify-content: space-between;
  }
  .row01 .info_button ul li {
    position: relative;
  }
  .row01 .info_button a {
    position: relative;
    display: inline-block;
    background-color: #ffffff;
    border: 1px solid #000000;
    font-size: 3.2vw;
    font-weight: 700;
    width: 40vw;
    padding: 3.5vw 5vw;
    letter-spacing: 0.22em;
  }
  .row01 .info_button ul li a:before {
    content: "";
    position: absolute;
    background: url(../img/info_button_b.png) center top / contain no-repeat;
    width: 5vw;
    height: 2vw;
    top: 50%;
    right: 3vw;
    margin-top: -0.8vw;
  }
  .row01 .info_button a:hover {
    color: #ffffff;
    background-color: #000000;
    opacity: 1;
  }
  .row01 .info_button ul li a:hover:before {
    content: "";
    position: absolute;
    background: url(../img/info_button_w.png) center top / contain no-repeat;
    width: 5vw;
    height: 2vw;
    top: 50%;
    right: 3vw;
    margin-top: -0.8vw;
  }

  .row01 .row01_right {
    margin-top: 10.7vw;
  }

  .row01 .panel_content li:not(:first-child) {
    margin-top: 9vw;
  }

  .row01 .panel_content li a {
    display: flex;
    flex-wrap: wrap;
    font-weight: 300;
  }
  .row01 .panel_content li a:hover {
    opacity: 1;
    color: #187fc4;
  }

  .row01 .panel_content li a .info_date {
    position: relative;
    letter-spacing: 0.05em;
    padding-left: 10vw;
    font-size: 3.2vw;
  }
  .row01 .new-txt {
    display: block;
    background-color: #000;
    color: #fff;
    border-radius: 4vw;
    font-size: 2.8vw;
    width: 11vw;
    text-align: center;
    position: absolute;
    top: -5vw;
  }
  .row01 .panel_content li a:hover .new-txt {
    background-color: #187fc4;
  }

  .row01 .panel_content li a .info_date:before {
    content: "";
    position: absolute;
    background: url(../img/info_button_b.png) center top / contain no-repeat;
    width: 5vw;
    height: 1vw;
    top: 50%;
    left: 0;
    margin-top: -0.7vw;
    transition-duration: 0.3s;
  }
  .row01 .panel_content li a:hover .info_date:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_a.png) center top / contain no-repeat;
    width: 5vw;
    height: 1vw;
    top: 50%;
    left: 0;
    margin-top: -0.7vw;
  }

  .row01 .panel_content li a .info_cate {
    position: relative;
    display: inline-block;
    margin: 0 11vw;
    text-align: center;
    font-size: 3.2vw;
    font-weight: 700;
    letter-spacing: 0.15em;
    width: 15vw;
  }
  .row01 .panel_content li a .info_cate:before {
    content: "";
    position: absolute;
    background: url(../img/dotted.png) center top / contain no-repeat;
    left: -7vw;
    width: 0.5vw;
    height: 6vw;
    top: 50%;
    margin-top: -3vw;
  }
  .row01 .panel_content li a .info_cate:after {
    content: "";
    position: absolute;
    background: url(../img/dotted.png) center top / contain no-repeat;
    right: -7vw;
    width: 0.5vw;
    height: 6vw;
    top: 50%;
    margin-top: -3vw;
  }

  .custom_home .row01 .panel_content li a .info_cate {
    width: 21vw;
  }
  .custom_home .row01 .panel_content li a .info_cate:before {
    left: -6vw;
  }
  .custom_home .row01 .panel_content li a .info_cate:after {
    right: -6vw;
  }

  .row01 .panel_content li a .info_title {
    font-size: 3.8vw;
    letter-spacing: 0.05em;
    /* margin-top: 2.5vw; */
    display: block;
    margin-bottom: 0;
  }
  .custom_home .row01 .panel_content li a .info_title {
    margin-top: 1.5vw;
  }
  .row01 .panel_content li a .info_pdf {
    margin-left: 3vw;
    position: absolute;
    right: 0;
    /* top: -2px; */
  }
  .row01 .panel_content li a .info_pdf img {
    width: 4.5vw;
  }
}

/* ================================

　  Pick up

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 768px) {
  .row02 {
    margin: 80px 0 0 100px;
    padding-left: calc((100% - 1366px) / 2);
  }

  .row02 .swiper-wrapper .swiper-slide.tr {
    /* swiper内の一部要素に設定 */
    transition-property: color;
  }
  .row02 .swiper-wrapper .swiper-slide h3 {
    margin-top: 14px;
    transform: rotate(0.05deg);
  }
  .row02 .swiper-wrapper .swiper-slide a:hover {
    opacity: 1;
  }
  .row02 .swiper-wrapper .swiper-slide a:hover h3 {
    color: #187fc4;
  }

  .row02 .link-wrapper:hover {
    color: #187fc4;
  }

  .row02 .link-img-wrapper {
    overflow: hidden;
    max-width: 251px;
    border: 1px solid #ccc;
  }

  .row02 .link-wrapper .link-img {
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
  }

  .row02 .link-wrapper:hover .link-img {
    transform: scale(1.2);
  }

  .row02 .pick-up-swiper-title-and-swiper-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 8px;
  }

  .row02 .pick-up-swiper-title-and-allow {
    min-width: 200px;
    max-width: 300px;
    width: 25.5%;
    background: #fff;
    position: relative;
  }
  .row02 .top-pickup-swiper-area .section-title {
    font-size: 50px;
    font-weight: 700;
  }

  .row02 .top-pickup-swiper-area {
    overflow: hidden;
    position: relative;
    /* max-width: 1450px; */
    margin: 0;
  }

  .row02 .top-pickup-swiper-area-inner {
    height: 233px;
  }

  /* 下記セレクタへの幅指定はデザインを確認して調整する */

  .row02 .top-pickup-swiper {
    width: calc(100% - 16.5%);
    margin: 0;
    overflow: hidden;
  }

  .row02 .top-pickup-swiper .swiper-wrapper {
    /* margin-left: 20%; */
  }

  .row02 .top-pickup-swiper .swiper-slide {
    position: relative;
    height: auto;
    width: 100%;
    max-width: clamp(230px, 36.7vw, 367px);
    margin-right: 30px;
    width: 251px;
  }

  /* 各スライド内の画像やテキスト
  */
  .row02 .top-pickup-swiper .swiper-slide img {
    width: 100%;
    max-width: 251px;
    height: 151px;
    object-fit: cover;
    background-color: #fff;
  }
  .row02 .top-pickup-swiper .swiper-slide p {
    position: absolute;
    top: 30%;
    left: 20px;
    font-weight: 700;
    color: #fff;
  }

  /* 前、次ボタン
  */
  .row02 .top-pickup-swiper-area .swiper-button-prev,
  .row02 .top-pickup-swiper-area .swiper-button-next {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ffffff;
    border: 1px solid #000000;
    bottom: 0;
    top: 224px;
    z-index: 5;
  }
  .row02 .top-pickup-swiper-area .swiper-button-prev::after,
  .row02 .top-pickup-swiper-area .swiper-button-next::after {
    color: #000000;
    font-size: 8px;
  }
  .row02 .top-pickup-swiper-area .swiper-button-prev:hover,
  .row02 .top-pickup-swiper-area .swiper-button-next:hover {
    background: #000000;
    border: 1px solid #000000;
    bottom: 0;
    top: 224px;
  }
  .row02 .top-pickup-swiper-area .swiper-button-prev:hover::after,
  .row02 .top-pickup-swiper-area .swiper-button-next:hover::after {
    color: #ffffff;
  }
  .row02 .top-pickup-swiper-area .swiper-button-prev {
    left: 0;
  }
  .row02 .top-pickup-swiper-area .swiper-button-next {
    left: 48px;
  }

  /* リンクが3つ以下の場合のスタイル(js付与)
  */
  .row02 .top-pickup-swiper-area.three-or-fewer-links {
    overflow: unset;
    margin: auto;
  }

  .row02 .top-pickup-swiper-area.three-or-fewer-links .top-pickup-swiper-area-inner {
    padding: 0 7.6%;
  }

  /* リンク個数が3以下の場合矢印は消す SP版レイアウト含め確認しphp側に条件分岐を入れる */
  .row02 .top-pickup-swiper-area.three-or-fewer-links .swiper-button-prev,
  .row02 .top-pickup-swiper-area.three-or-fewer-links .swiper-button-next {
    display: none;
  }

  .row02 .top-pickup-swiper-area.three-or-fewer-links .swiper-wrapper {
    justify-content: flex-start;
  }

  .row02 .top-pickup-swiper-area.three-or-fewer-links .top-pickup-swiper {
    overflow: unset;
  }

  .row02 .top-pickup-swiper-area.three-or-fewer-links .swiper-slide {
    width: 30.2%;
    margin: 0;
  }

  .row02 .top-pickup-swiper-area.three-or-fewer-links .swiper-slide:not(:first-of-type) {
    margin: 0 0 0 4.7%;
  }

  @media (max-width: 767px) {
    /* mv swiper
    */
    .row02 .top-pickup-swiper-area-inner {
      max-width: 100%;
      margin: 0;
      padding: 0;
    }
    .row02 .top-pickup-swiper .swiper-slide {
      max-width: 280px;
    }
  } /* max-width:767px */

  @media (max-width: 500px) {
    .row02 .top-pickup-swiper .swiper-slide {
      height: 320px;
    }
  } /* max-width:500px */

  @media (max-width: 390px) {
    .row02 .top-pickup-swiper-area-inner {
      padding: 0;
    }
  } /* max-width:390px */
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  .row02 {
    margin-top: 22vw;
    padding: 0 0 0 7vw;
  }

  .row02_content {
  }

  .row02 .swiper-wrapper .swiper-slide.tr {
    /* swiper内の一部要素に設定 */
    transition-property: color;
  }
  .row02 .swiper-wrapper .swiper-slide h3 {
    margin-top: 3vw;
    transform: rotate(0.05deg);
    font-size: 4vw;
    line-height: 1.4;
  }
  .row02 .swiper-wrapper .swiper-slide a:hover {
    opacity: 1;
  }
  .row02 .swiper-wrapper .swiper-slide a:hover h3 {
    color: #187fc4;
  }

  .row02 .link-wrapper:hover {
    color: blue;
  }

  .row02 .link-img-wrapper {
    overflow: hidden;
    max-width: 54vw;
    border: 1px solid #ccc;
  }

  .row02 .link-wrapper .link-img {
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
  }

  .row02 .link-wrapper:hover .link-img {
    transform: scale(1.1);
  }

  /*.row02 .pick-up-swiper-title-and-swiper-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 8px;
  }*/

  .row02 .pick-up-swiper-title-and-allow {
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -24vw;
    padding-bottom: 17vw;
  }

  .row02 .top-pickup-swiper-area {
    overflow: hidden;
    position: relative;
    margin: 0;
  }

  /*.row02 .top-pickup-swiper-area-inner {
    height: 233px;
  }*/

  /* 下記セレクタへの幅指定はデザインを確認して調整する */

  .row02 .top-pickup-swiper {
    /*width: calc(100% - 16.5%);*/
    margin: 0;
    overflow: hidden;
    margin-top: 7vw;
    padding-bottom: 21vw;
  }

  .row02 .top-pickup-swiper .swiper-wrapper {
    /* margin-left: 20%; */
  }

  .row02 .top-pickup-swiper .swiper-slide {
    position: relative;
    height: auto;
    width: 100%;
    max-width: clamp(230px, 36.7vw, 367px);
    margin-right: 6vw;
    width: 54vw;
  }

  /* 各スライド内の画像やテキスト
  */
  .row02 .top-pickup-swiper .swiper-slide img {
    width: 100%;
    max-width: 54vw;
    height: 32vw;
    object-fit: cover;
    background-color: #fff;
  }

  /* 前、次ボタン
  */
  .row02 .top-pickup-swiper-area .swiper-button-prev,
  .row02 .top-pickup-swiper-area .swiper-button-next {
    position: absolute;
    width: 14vw;
    height: 14vw;
    background: #ffffff;
    border: 1px solid #000000;
    bottom: 0;
    z-index: 5;
  }
  .row02 .top-pickup-swiper-area .swiper-button-prev::after,
  .row02 .top-pickup-swiper-area .swiper-button-next::after {
    color: #000000;
    font-size: 4vw;
  }
  .row02 .top-pickup-swiper-area .swiper-button-prev:hover,
  .row02 .top-pickup-swiper-area .swiper-button-next:hover {
    background: #000000;
    border: 1px solid #000000;
    bottom: 0;
  }
  .row02 .top-pickup-swiper-area .swiper-button-prev:hover::after,
  .row02 .top-pickup-swiper-area .swiper-button-next:hover::after {
    color: #ffffff;
  }
  .row02 .top-pickup-swiper-area .swiper-button-prev {
    left: 0;
  }
  .row02 .top-pickup-swiper-area .swiper-button-next {
    left: 26vw;
  }

  /* リンクが3つ以下の場合のスタイル(js付与)
  */
  .row02 .top-pickup-swiper-area.three-or-fewer-links {
    overflow: unset;
    margin: auto;
  }

  .row02 .top-pickup-swiper-area.three-or-fewer-links .top-pickup-swiper-area-inner {
    padding: 0 7.6%;
  }

  /* リンク個数が3以下の場合矢印は消す SP版レイアウト含め確認しphp側に条件分岐を入れる */
  .row02 .top-pickup-swiper-area.three-or-fewer-links .swiper-button-prev,
  .row02 .top-pickup-swiper-area.three-or-fewer-links .swiper-button-next {
    display: none;
  }

  .row02 .top-pickup-swiper-area.three-or-fewer-links .swiper-wrapper {
    justify-content: flex-start;
  }

  .row02 .top-pickup-swiper-area.three-or-fewer-links .top-pickup-swiper {
    overflow: unset;
  }

  .row02 .top-pickup-swiper-area.three-or-fewer-links .swiper-slide {
    width: 30.2%;
    margin: 0;
  }

  .row02 .top-pickup-swiper-area.three-or-fewer-links .swiper-slide:not(:first-of-type) {
    margin: 0 0 0 4.7%;
  }
}

/* ================================

　  Company

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 768px) {
  .row03 {
    margin-top: 201px;
  }
  /*.row03_bg {
    background: url(../img/row03_bg.jpg) center top / auto no-repeat;
  }*/

  .row03 img.row03_bg {
    position: absolute;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
  }

  .row03_content {
    padding: 78px 0 0 0;
    /*width: 1366px;*/
    /*max-width: 1643px;*/
    /*margin: 0 0 0 auto;*/
    margin: 0;
    padding-left: calc((100% - 1366px) / 2);
  }

  .row03 h2 {
    color: #ffffff;
  }
  .row03 h2:before {
    background-color: #ffffff;
  }

  .row03 .top-company-swiper-slide-and-button-wrapper {
    display: flex;
    flex-direction: column;
  }

  .row03 .top-company-swiper-arrow {
    position: relative;
    height: 50px;
    margin: 30px 0;
  }

  .row03 .top-company-swiper {
  }
  .row03 .company-swiper-left-side-area {
  }

  .row03 .top-company-swiper-area .section-title {
    font-size: 50px;
    font-weight: 700;
  }

  .row03 .top-company-swiper-area {
    overflow: hidden;
    margin: 0 0 0 auto;
  }

  /* 下記セレクタへの幅指定はデザインを確認して調整する */
  .row03 .top-company-swiper-area-inner {
    padding-left: 100px;
  }

  .row03 .top-company-swiper {
    max-width: 1920px;
    overflow: hidden;
    margin-top: 40px;
  }

  .row03 .top-company-swiper .swiper-wrapper {
  }

  .row03 .top-company-swiper .swiper-slide {
    position: relative;
    height: auto;
    width: 100%;
    /*swiper各スライドの幅 一旦1000pxで推奨値が使用されるよう調整*/
    max-width: clamp(400px, 53.5vw, 535px);
    /*swiper各スライドに直接設定する左右余白の間隔 一旦1000pxで推奨値が使用されるよう調整*/
    margin-right: 40px;
    width: 350px;
  }
  .row03 .top-company-swiper .swiper-slide a {
    transition-duration: 0s;
  }
  .row03 .top-company-swiper .swiper-slide a:hover {
    opacity: 1;
  }

  /* 各スライド内の画像やテキスト
  */
  .row03 .link-img-wrapper {
    overflow: hidden;
    max-width: 350px;
  }

  .row03 .link-wrapper .link-img {
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
  }
  .row03 .top-company-swiper .swiper-slide img {
    width: 100%;
    max-width: 350px;
    height: 210px;
    object-fit: contain;
    background-color: #fff;
  }
  .row03 .link-wrapper a:hover {
    opacity: 1;
    color: #187fc4;
  }
  .row03 .link-wrapper:hover .link-img {
    transform: scale(1.1);
  }
  .row03 .top-company-swiper .swiper-slide h3 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    padding: 30px 0 23px 50px;
    letter-spacing: 0.2em;
    /*border-bottom: 1px solid;*/
    transform: rotate(0.05deg);
    height: 107px;
    line-height: 1.4;
  }

  .row03 .top-company-swiper .swiper-slide h3 span {
    display: block;
    font-size: 10px;
    font-weight: 300;
    font-style: italic;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    letter-spacing: 0.12em;
    margin-top: 2px;
  }
  .row03 .top-company-swiper .swiper-slide h3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: rotate(-0.1deg);
  }
  .row03 .top-company-swiper .swiper-slide h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_b.png) center top / contain no-repeat;
    width: 20.5px;
    height: 4px;
    top: 50%;
    left: 9px;
    margin-top: -4px;
    transition: 0.3s;
  }
  .row03 .link-wrapper a:hover h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_a.png) center top / contain no-repeat;
    width: 20.5px;
    height: 4px;
    top: 50%;
    left: 19px;
    margin-top: -4px;
  }
  .row03 .link-wrapper a:hover h3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #187fc4;
    transform: rotate(-0.1deg);
  }
  /*.row03 .link-wrapper a:hover h3 {
    border-bottom: 1px solid #187fc4;
  }*/

  .row03 .top-company-swiper .swiper-slide p {
    position: absolute;
    top: 30%;
    left: 20px;
    font-weight: 700;
    color: #fff;
  }

  /* 前、次ボタン */
  .row03 .top-company-swiper-area .swiper-button-prev,
  .row03 .top-company-swiper-area .swiper-button-next {
    width: 30px;
    height: 30px;
    background: #ffffff;
    bottom: 0;
    top: unset;
    z-index: 5;
  }
  .row03 .top-company-swiper-area .swiper-button-prev::after,
  .row03 .top-company-swiper-area .swiper-button-next::after {
    color: #187fc4;
    font-size: 12px;
  }
  .row03 .top-company-swiper-area .swiper-button-prev:hover,
  .row03 .top-company-swiper-area .swiper-button-next:hover {
    background-color: #000000;
  }
  .row03 .top-company-swiper-area .swiper-button-prev:hover::after,
  .row03 .top-company-swiper-area .swiper-button-next:hover::after {
    color: #ffffff;
  }
  .row03 .top-company-swiper-area .swiper-button-prev {
    left: 0px;
  }
  .row03 .top-company-swiper-area .swiper-button-next {
    left: 48px;
  }

  /* リンクが3つ以下の場合のスタイル(js付与) */
  .row03 .top-company-swiper-area.three-or-fewer-links {
    overflow: unset;
    margin: auto;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .top-company-swiper-area-inner {
    margin: 0 auto;
    padding: 0;
    width: 92.1875%;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links h3 {
    margin-bottom: 30px;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .top-company-swiper-arrow {
    display: none;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .swiper-wrapper {
    justify-content: flex-start;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .top-company-swiper {
    overflow: unset;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .swiper-slide {
    width: 30.2%;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .swiper-slide {
    margin: 0;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .swiper-slide:not(:first-of-type) {
    margin: 0 0 0 4.7%;
  }

  /* @media only screen and (max-width:767px) { */
  @media (max-width: 767px) {
    /* company swiper
    */
    .row03 .top-company-swiper-area-inner {
      max-width: 100%;
      margin: 0;
      padding: 0;
    }
    .row03 .top-company-swiper .swiper-slide {
      max-width: 280px;
    }
  } /* max-width:767px */

  @media (max-width: 500px) {
    .row03 .top-company-swiper .swiper-slide {
      height: 320px;
    }
  } /* max-width:500px */

  @media (max-width: 390px) {
    .row03 .top-company-swiper-area-inner {
      padding: 0;
    }
  } /* max-width:390px */
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  .row03 {
    margin-top: 26vw;
  }
  .row03 img.row03_bg {
    position: absolute;
    width: 100%;
    height: 53vw;
    object-fit: cover;
    object-position: top;
  }

  .row03_content {
    padding: 10vw 0 0 7vw;
  }

  .row03 h2 {
    color: #ffffff;
  }
  .row03 h2:before {
    background-color: #ffffff;
  }

  .row03 .top-company-swiper-slide-and-button-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 22vw;
  }

  .row03 .top-company-swiper-arrow {
    position: absolute;
    height: 14vw;
    bottom: 0;
    left: 50%;
    margin-left: -24vw;
  }

  .row03 .top-company-swiper {
  }
  .row03 .company-swiper-left-side-area {
  }

  .row03 .top-company-swiper-area {
    overflow: hidden;
    margin: 0 0 0 auto;
  }

  /* 下記セレクタへの幅指定はデザインを確認して調整する */
  .row03 .top-company-swiper-area-inner {
    /*padding-left: 100px;*/
  }

  .row03 .top-company-swiper {
    overflow: hidden;
    margin-top: 12vw;
  }

  .row03 .top-company-swiper .swiper-wrapper {
  }

  .row03 .top-company-swiper .swiper-slide {
    position: relative;
    height: auto;
    width: 100%;
    /*swiper各スライドの幅 一旦1000pxで推奨値が使用されるよう調整*/
    max-width: clamp(400px, 53.5vw, 535px);
    /*swiper各スライドに直接設定する左右余白の間隔 一旦1000pxで推奨値が使用されるよう調整*/
    margin-right: 6vw;
    width: 53vw;
  }

  /* 各スライド内の画像やテキスト
  */
  .row03 .link-img-wrapper {
    overflow: hidden;
    max-width: 53vw;
  }

  .row03 .link-wrapper .link-img {
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
  }
  .row03 .top-company-swiper .swiper-slide img {
    width: 100%;
    max-width: 53vw;
    height: 32vw;
    object-fit: cover;
    background-color: #fff;
  }
  .row03 .link-wrapper a:hover {
    opacity: 1;
    color: #187fc4;
  }
  .row03 .link-wrapper:hover .link-img {
    transform: scale(1.1);
  }
  .row03 .top-company-swiper .swiper-slide h3 {
    position: relative;
    font-size: 4vw;
    font-weight: 500;
    padding: 6vw 0 6vw 9vw;
    letter-spacing: 0.2em;
    border-bottom: 1px solid;
    transform: rotate(0.05deg);
    height: 26vw;
    line-height: 1.4;
  }
  .row03 .top-company-swiper .swiper-slide h3 span {
    display: block;
    font-size: 2.7vw;
    font-weight: 300;
    font-style: italic;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    letter-spacing: 0.1em;
    margin-top: 1vw;
    line-height: 1.1;
  }
  .row03 .top-company-swiper .swiper-slide h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_b.png) center top / contain no-repeat;
    width: 5.5vw;
    height: 2vw;
    top: 50%;
    left: 0;
    margin-top: -1vw;
    transition: 0.3s;
  }
  .row03 .link-wrapper a:hover h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_a.png) center top / contain no-repeat;
    width: 5.5vw;
    height: 2vw;
    top: 50%;
    left: 0;
    margin-top: -1vw;
  }
  .row03 .link-wrapper a:hover h3 {
    border-bottom: 1px solid #187fc4;
  }

  /* 前、次ボタン
  */
  .row03 .top-company-swiper-area .swiper-button-prev,
  .row03 .top-company-swiper-area .swiper-button-next {
    width: 14vw;
    height: 14vw;
    background: #ffffff;
    border: 1px solid #000000;
    bottom: 0;
    top: unset;
    z-index: 5;
  }
  .row03 .top-company-swiper-area .swiper-button-prev::after,
  .row03 .top-company-swiper-area .swiper-button-next::after {
    color: #000000;
    font-size: 4vw;
  }
  .row03 .top-company-swiper-area .swiper-button-prev:hover,
  .row03 .top-company-swiper-area .swiper-button-next:hover {
    background-color: #000000;
  }
  .row03 .top-company-swiper-area .swiper-button-prev:hover::after,
  .row03 .top-company-swiper-area .swiper-button-next:hover::after {
    color: #ffffff;
  }
  .row03 .top-company-swiper-area .swiper-button-prev {
    left: 0px;
  }
  .row03 .top-company-swiper-area .swiper-button-next {
    left: 26vw;
  }

  /* リンクが3つ以下の場合のスタイル(js付与) */
  .row03 .top-company-swiper-area.three-or-fewer-links {
    overflow: unset;
    margin: auto;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .top-company-swiper-area-inner {
    margin: 0 auto;
    padding: 0;
    width: 92.1875%;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links h3 {
    margin-bottom: 30px;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .top-company-swiper-arrow {
    display: none;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .swiper-wrapper {
    justify-content: flex-start;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .top-company-swiper {
    overflow: unset;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .swiper-slide {
    width: 30.2%;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .swiper-slide {
    margin: 0;
  }

  .row03 .top-company-swiper-area.three-or-fewer-links .swiper-slide:not(:first-of-type) {
    margin: 0 0 0 4.7%;
  }
}

/* ================================

　  Brand

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 768px) {
  .row04 {
    position: relative;
    /*width: 1366px;*/
    max-width: 1366px;
    margin: 178px auto 0;
  }

  .row04_content {
    margin-left: 100px;
  }

  .row04_img_box {
    position: absolute;
    right: 0;
    top: 20px;
    z-index: 1;
  }
  .row04_img02 {
    margin: 102px 0 0 404px;
  }
  .row04_img03 {
    margin: -48px 0 0 164px;
  }

  .top_movie {
    width: 900px;
  }

  .row04 h3 {
    position: relative;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 105px;
    z-index: 1;
    margin-top: 14px;
    line-height: 2.2;
    color: #187fc4;
  }
  .row04 h3 img {
    position: relative;
    /* font-family: "Nunito Sans", "Noto Sans JP", sans-serif; */
    /* font-weight: 700; */
    /* font-size: 105px; */
    z-index: 2;
    /* margin-top: 14px; */
    /* line-height: 2.2; */
    /* color: #187fc4; */
    /* font-style: italic; */
    margin: 50px 0 110px 0;
    width: 56%;
  }

  .row04 .row04_textbox {
    position: relative;
    font-size: 16px;
    font-weight: 300;
    width: 530px;
    z-index: 1;
    position: relative;
    padding: 64px 71px;
    margin-top: -7px;
    line-height: 2.5;
    letter-spacing: 0.05em;
    /*transform: rotate(0.05deg);*/
  }
  .row04 .row04_content .row04_textbox p {
    transform: rotate(0.05deg);
  }
  .row04 .row04_textbox:before {
    content: "";
    position: absolute;
    background-color: #ffffff;
    width: 530px;
    height: 545px;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .row04 .row04_textbox p + * {
    padding-top: 2.6em;
  }

  .row04 .row04_textbox ul li {
    /*    position: relative;
    display: inline-block;
    border: 1px solid #000000;
    font-size: 14px;
    font-weight: 700;
    padding: 17px 29px;
    letter-spacing: 0.22em;*/
    width: 301px;
  }
  .row04 .row04_textbox ul li:before {
    content: "";
    position: absolute;
    background: url(../img/info_button_b.png) center top / contain no-repeat;
    width: 22px;
    height: 4.5px;
    top: 31px;
    right: 26px;
  }

  .row04 .row04_textbox .slide a {
    position: relative;
    display: inline-block;
    border: 1px solid #000000;
    font-size: 14px;
    font-weight: 700;
    width: 300px;
    padding: 16px 30px;
    letter-spacing: 0.22em;
    font-family: "Noto Sans JP";
  }
  .row04 .row04_textbox .slide {
    background: #fff;
    color: #000000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform: rotate(0.05deg);
  }
  .row04 .row04_textbox .slide::after {
    background: #000000;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .row04 .row04_textbox ul li.slide:hover {
    color: #fff;
  }
  .row04 .row04_textbox ul li.slide a:hover {
    opacity: 1;
  }
  .row04 .row04_textbox .slide:hover::after {
    transform: scale(1, 1);
  }
  .row04 .row04_textbox ul li.slide:hover::before {
    content: "";
    position: absolute;
    background: url(../img/info_button_w.png) center top / contain no-repeat;
    width: 22px;
    height: 4.5px;
    top: 31px;
    right: 26px;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  }

  .row04_loop {
    display: flex;
    width: 100%;
    position: absolute;
    bottom: -196px;
  }
  .loop_item {
    flex: 0 0 auto;
    white-space: nowrap;
    padding-right: 25px;
    padding-left: 100px;
    font-size: 300px;
    font-weight: 700;
    font-style: italic;
    color: #e8f2f9;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
  }

  .loop_item:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
  }
  .loop_item:nth-child(even) {
    animation: loop2 50s linear infinite;
  }

  @keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }

  @keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .row04_img_box {
    top: 120px;
  }
  .row04 h3 {
    line-height: 3.6;
    font-size: 90px;
  }
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  .row04 {
    position: relative;
    margin-top: 20vw;
    padding: 0 0 0 7vw;
  }

  .row04_img01 {
    margin-top: 7vw;
  }
  .row04_img01 img {
    width: 100%;
  }

  .top_movie {
    width: 100%;
  }

  .row04 h3 img {
    position: relative;
    /* font-family: "Nunito Sans", "Noto Sans JP", sans-serif; */
    /* font-weight: 700; */
    /* font-size: 10.7vw; */
    z-index: 1;
    margin-top: 6vw;
    /* line-height: 1.3; */
    /* font-style: italic; */
    width: 80%;
  }

  .row04 .row04_textbox {
    position: relative;
    font-weight: 300;
    line-height: 2.6;
    letter-spacing: 0.05em;
    transform: rotate(0.05deg);
    margin-top: 7vw;
    font-size: 4vw;
    padding: 0 7vw 0 0;
    z-index: 1;
  }
  /*.row04 .row04_textbox:before {
    content: '';
    position: absolute;
    background-color: #ffffff;
    width: 530px;
    height: 350px;
    top: 0;
    left: 0;
    z-index: -1;
  }*/
  .row04 .row04_textbox p + * {
    margin-top: 2.8em;
  }

  .row04 .row04_textbox ul {
    margin-top: 10vw;
  }
  .row04 .row04_textbox ul li {
    position: relative;
    transform: rotate(0.05deg);
    display: block;
  }
  .row04 .row04_textbox ul li a {
    position: relative;
    display: block;
    border: 1px solid #000000;
    font-size: 3.8vw;
    font-weight: 700;
    padding: 4.5vw 7vw;
    letter-spacing: 0.22em;
    background-color: #fff;
  }
  .row04 .row04_textbox ul li a:hover {
    color: #ffffff;
    background-color: #000000;
    opacity: 1;
  }
  .row04 .row04_textbox ul li:before {
    content: "";
    position: absolute;
    background: url(../img/info_button_b.png) center top / contain no-repeat;
    width: 6vw;
    height: 2vw;
    top: 50%;
    right: 8vw;
    z-index: 1;
    margin-top: -1vw;
  }
  .row04 .row04_textbox ul li:hover:before {
    content: "";
    position: absolute;
    background: url(../img/info_button_w.png) center top / contain no-repeat;
    width: 6vw;
    height: 2vw;
    top: 50%;
    right: 8vw;
    z-index: 1;
    margin-top: -1vw;
  }

  /*.row04 .row04_textbox .slide {
    background: #fff;
    color: #000000;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform: rotate(0.05deg);
  }*/
  /*.row04 .row04_textbox .slide::after {
    background: #000000;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    z-index: -1;
  }
  .row04 .row04_textbox ul li.slide:hover {
    color: #fff;
  }
  .row04 .row04_textbox ul li.slide a:hover {
    opacity: 1;
  }
  .row04 .row04_textbox .slide:hover::after {
    transform: scale(1, 1);
  }*/
  /*.row04 .row04_textbox ul li.slide:hover::before {
    content: '';
    position: absolute;
    background: url(../img/info_button_w.png) center top / contain no-repeat;
    width: 22px;
    height: 4.5px;
    top: 31px;
    right: 26px;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  }*/

  .row04_loop {
    display: flex;
    width: 100%;
    position: absolute;
    bottom: -39vw;
    z-index: 0;
  }
  .loop_item {
    flex: 0 0 auto;
    white-space: nowrap;
    padding-right: 2vw;
    padding-left: 14vw;
    font-size: 40vw;
    font-weight: 700;
    font-style: italic;
    color: #e8f2f9;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
  }

  .loop_item:nth-child(odd) {
    animation: loop 50s -25s linear infinite;
  }
  .loop_item:nth-child(even) {
    animation: loop2 50s linear infinite;
  }

  @keyframes loop {
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }

  @keyframes loop2 {
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
  }
}

/* ================================

　  Business

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 960px) {
  .row05 {
    margin: 211px auto 0;
  }

  .row05 h2 {
    margin-left: 100px;
    padding-left: calc((100% - 1366px) / 2);
  }
  .row05 h2:before {
    left: auto;
  }

  .row05_button_box {
    margin-top: 48px;
  }
  .row05_button_box > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .row05_button_box > ul > li {
    width: calc(100% / 2);
    height: 400px;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    line-height: 1.4;
    letter-spacing: 0.055em;
    position: relative;
    overflow: hidden;
    border: 1px solid #ffffff;
  }
  .row05_button_box > ul > li:first-of-type {
    border-top: none;
    border-left: none;
  }
  .row05_button_box > ul > li:nth-of-type(2) {
    border-top: none;
    border-right: none;
  }
  .row05_button_box > ul > li:nth-of-type(3) {
    border-bottom: none;
    border-left: none;
  }
  .row05_button_box > ul > li:last-of-type {
    border-bottom: none;
    border-right: none;
  }

  .row05_button_box > ul > li:hover {
    opacity: 1;
  }

  .row05_button_box img {
    display: block;
    transition: transform 0.6s ease;
    position: absolute;
    top: 0;
    width: 100%;
    object-fit: cover;
    height: 400px;
  }
  .row05_button_box li:hover img {
    transform: scale(1.1);
  }

  .row05_button_box .row05_button_title {
    position: relative;
    display: inline-block;
    margin: 100px 0 0;
    transition: 0.3s ease-in-out;
  }
  .row05_button_box:hover .row05_button_title {
    position: relative;
    display: inline-block;
  }
  .button01:hover .row05_button_title {
    margin: 20px 0 0;
  }
  .button02:hover .row05_button_title {
    margin: 20px 0 0;
  }
  .button03:hover .row05_button_title {
    margin: 20px 0 0;
  }
  .button04:hover .row05_button_title {
    margin: 20px 0 0;
  }

  .row05_button_box > ul > li span.row05_number {
    display: block;
    font-size: 50px;
  }
  .row05_button_box > ul > li span.row05_subtitle {
    display: block;
    font-size: 21px;
    font-weight: 700;
    font-style: normal;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    letter-spacing: 0.1em;
  }

  /* ビジネスメニュー
	-------------------------------------------------------- */
  .row05_button .row05_submenu {
    display: none;
  }
  .row05_button:hover .row05_submenu {
    display: block;
    margin-top: 20px;
  }
  .row05_menu {
    position: relative;
    text-align: left;
    /*transition: all 0.4s ease-in-out;*/
    display: flex;
    justify-content: center;
  }
  .row05_menu > li {
    /*transition: all 0.2s 0.2s ease-in-out;*/
    position: relative;
  }
  .row05_menu li a {
    position: relative;
    display: block;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 2.4;
    width: 200px;
    letter-spacing: 0.05em;
    padding: 0 0 0 35px;
  }
  .single-eng .row05_menu li a {
    line-height: 1.6;
    padding: 6px 0 6px 35px;
  }
  .row05_menu li a:hover {
    background-color: rgba(24, 127, 196, 0.5);
    opacity: 1;
  }
  .row05_menu li a:before {
    content: "";
    position: absolute;
    top: 18px;
    left: 15px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid #ffffff;
  }
  .row05_menu > li > ul > li {
    margin: 1px;
  }

  .row05_button_box_ex {
    margin-top: 48px;
    max-width: 1920px;
  }
  .row05_button_box_ex > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .row05_button_box_ex > ul > li {
    padding: 1px;
    transform: rotate(0.05deg);
  }

  .row05_button_box_ex > ul > li {
    height: 29.27vw;
    width: 50%;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    font-size: 40px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    vertical-align: middle;
    display: table-cell;
    line-height: 1.4;
    letter-spacing: 0.055em;
    position: relative;
    overflow: hidden;
  }
  .row05_button_box_ex > ul > li:hover {
    opacity: 1;
  }

  .row05_button_box_ex img {
    display: block;
    transition: transform 0.6s ease;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .row05_button_box_ex li:hover img {
    transform: scale(1.1);
  }

  .row05_button_box_ex .row05_button_title_ex {
    position: relative;
    display: inline-block;
    margin: 6.25vw 0 0;
    transition: 0.3s ease-in-out;
  }
  .row05_button_box_ex:hover .row05_button_title_ex {
    position: relative;
    display: inline-block;
  }
  .button01_ex:hover .row05_button_title_ex {
    margin: 1.0416vw 0 0;
  }
  .button02_ex:hover .row05_button_title_ex {
    margin: 1.0416vw 0 0;
  }
  .button03_ex:hover .row05_button_title_ex {
    margin: 1.0416vw 0 0;
  }
  .button04_ex:hover .row05_button_title_ex {
    margin: 1.0416vw 0 0;
  }

  .row05_button_box_ex > ul > li span.row05_number_ex {
    display: block;
    font-size: 50px;
  }
  .row05_button_box_ex > ul > li span.row05_subtitle_ex {
    display: block;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    letter-spacing: 0.1em;
  }

  /* ビジネスメニュー
	-------------------------------------------------------- */
  .row05_button_ex .row05_submenu_ex {
    display: none;
  }
  .row05_button_ex:hover .row05_submenu_ex {
    display: block;
    margin-top: 1.041vw;
  }
  .row05_menu_ex {
    position: relative;
    text-align: left;
    /*transition: all 0.4s ease-in-out;*/
    display: flex;
    justify-content: center;
  }
  .row05_menu_ex > li {
    /*transition: all 0.2s 0.2s ease-in-out;*/
    position: relative;
  }
  .row05_menu_ex li a {
    position: relative;
    display: block;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 2.4;
    width: 10.416vw;
    letter-spacing: 0.05em;
    padding: 0 0 0 1.82vw;
  }
  .row05_menu_ex li a:hover {
    background-color: rgba(24, 127, 196, 0.5);
    opacity: 1;
  }
  .row05_menu_ex li a:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid #ffffff;
  }
  .row05_menu_ex > li > ul > li {
    margin: 1px;
  }
}

/* タブレット
------------------------------------ */
@media (min-width: 768px) and (max-width: 959px) {
  .row05 {
    margin: 211px auto 0;
  }

  .row05 h2 {
    margin-left: 100px;
  }

  .row05_button_box {
    margin-top: 48px;
  }
  .row05_button_box > ul > li:first-child {
    background: url(../img/row05_img01.jpg) center top / cover no-repeat;
  }
  .row05_button_box > ul > li:nth-child(2) {
    background: url(../img/row05_img02.jpg) center top / cover no-repeat;
  }
  .row05_button_box > ul > li:nth-child(3) {
    background: url(../img/row05_img03.jpg) center top / cover no-repeat;
  }
  .row05_button_box > ul > li:last-child {
    background: url(../img/row05_img04.jpg) center top / cover no-repeat;
  }
  .row05_img_bg {
    display: none;
  }

  .row05_button_box > ul > li {
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    font-size: 50px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    display: block;
    line-height: 1.4;
    letter-spacing: 0.055em;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    transform: rotate(0.05deg);
  }
  .row05_button_box ul li:hover {
    opacity: 1;
  }

  .row05_button_box img:hover {
    transform: scale(1.1);
  }

  .row05_button_title {
    position: relative;
    display: inline-block;
    line-height: 1;
  }
  .row05_button_box ul li span.row05_number {
    display: block;
    font-size: 50px;
    margin-bottom: 15px;
  }
  .row05_button_box ul li span.row05_subtitle {
    display: block;
    font-size: 21px;
    font-weight: 500;
    font-style: normal;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    letter-spacing: 0.1em;
    margin-top: 2vw;
  }

  /* ビジネスメニュー
	-------------------------------------------------------- */
  .row05_menu {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 20px 80px 0;
    text-align: left;
  }
  .row05_menu > li {
    border-bottom: 1px solid;
  }
  .row05_menu > li:last-of-type {
    border-bottom: none;
  }
  .row05_menu > li.pushy-submenu > button {
    font-family: inherit; /* buttonバグ対策 */
    padding: 25px 100px;
  }
  .row05_menu > li > a,
  .row05_menu > li.pushy-submenu > button {
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 23px;
    font-weight: 500;
    font-style: normal;
    width: 100%;
    letter-spacing: 0.05em;
  }

  /* サブメニュー
	-------------------------------------------------------- */
  .row05_menu .pushy-submenu > button {
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .row05_menu .pushy-submenu > button::after {
    display: block;
    position: absolute;
    margin: 0;
    top: 50%;
    left: 54px;
    content: "＋";
    font-size: 25px;
    line-height: 2;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: transform 1s;
    font-weight: 300;
  }
  .pushy-submenu-open > button {
    border-bottom: 1px solid #ffffff;
  }

  .row05_menu .pushy-submenu ul {
    /*transition: all 0.4s ease-in-out;*/
  }
  .row05_menu .pushy-submenu ul li {
    /*transition: all 0.2s 0.2s ease-in-out;*/
    position: relative;
  }
  .row05_menu .pushy-submenu ul li a {
    display: block;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
    font-style: normal;
    line-height: 2.4;
  }
  .row05_menu .pushy-submenu ul li a:before {
    content: "";
    position: absolute;
    top: 26px;
    left: -54px;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid #ffffff;
    margin-top: -3px;
  }

  /* サブメニュー閉じる */
  .row05_menu .pushy-submenu-closed {
    /*border-bottom: 1px solid;*/
  }
  .row05_menu .pushy-submenu-closed ul {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
  }
  .row05_menu .pushy-submenu-closed li {
    opacity: 0;
  }

  /* サブメニュー開く */
  .row05_menu .pushy-submenu-open {
  }
  .row05_menu .pushy-submenu-open ul {
    border-top: 1px solid #ffffff;
    padding: 2vw 7vw 4vw;
    visibility: visible;
    margin: 0 7vw;
  }
  .row05_menu .pushy-submenu-open li {
    opacity: 1;
  }
  .row05_menu .pushy-submenu-open > a::after,
  .row05_menu .pushy-submenu-open > button::after {
    content: "－";
  }

  /* メニューを閉じる時のスタイル
	display:none; を使用せず、opacityを使うとfadeっぽくなる
	-------------------------------------------------------- */
  .hide {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
  }

  /* メニューオープン時のみ、メニューの後ろのコンテンツをスクロールさせない
	iOS safariには別途対応が必要（jQueryに記述）
	-------------------------------------------------------- */
  .no-scroll {
    overflow: hidden;
  }
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  .row05 {
    margin: 40vw auto 0;
  }

  .row05 h2 {
    margin-left: 6vw;
  }

  .row05_button_box {
    margin-top: 8vw;
  }
  .row05_button_box ul {
  }
  .row05_button_box > ul > li:first-child {
    background: url(../img/row05_img01.jpg) center top / cover no-repeat;
  }
  .row05_button_box > ul > li:nth-child(2) {
    background: url(../img/row05_img02.jpg) center top / cover no-repeat;
  }
  .row05_button_box > ul > li:nth-child(3) {
    background: url(../img/row05_img03.jpg) center top / cover no-repeat;
  }
  .row05_button_box > ul > li:last-child {
    background: url(../img/row05_img04.jpg) center top / cover no-repeat;
  }

  .row05_button_box > ul > li {
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    font-size: 8vw;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    text-align: center;
    display: block;
    line-height: 1.4;
    letter-spacing: 0.055em;
    position: relative;
    overflow: hidden;
    padding: 5vw 0;
    transform: rotate(0.05deg);
  }
  .row05_button_box ul li:hover {
    opacity: 1;
  }

  .row05_button_box img:hover {
    transform: scale(1.1);
  }

  .row05_button_title {
    position: relative;
    display: inline-block;
    line-height: 1;
  }
  .row05_button_box ul li span.row05_number {
    display: block;
    font-size: 11vw;
  }
  .row05_button_box ul li span.row05_subtitle {
    display: block;
    font-size: 3.5vw;
    font-weight: 500;
    font-style: normal;
    font-family: "M PLUS 1p", "Noto Sans JP", sans-serif;
    letter-spacing: 0.1em;
    margin-top: 2vw;
  }

  /* ビジネスメニュー
	-------------------------------------------------------- */
  .row05_menu {
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 5vw 7vw 0;
    text-align: left;
  }
  .row05_menu > li {
    border-bottom: 1px solid;
  }
  .row05_menu > li:last-of-type {
    border-bottom: none;
  }
  .row05_menu > li.pushy-submenu > button {
    font-family: inherit; /* buttonバグ対策 */
    padding: 2.7vw 14vw;
  }
  .row05_menu > li > a,
  .row05_menu > li.pushy-submenu > button {
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 3.8vw;
    font-weight: 500;
    font-style: normal;
    width: 100%;
    letter-spacing: 0.05em;
  }

  /* サブメニュー
	-------------------------------------------------------- */
  .row05_menu .pushy-submenu > button {
    background: transparent;
    border: 0;
    cursor: pointer;
  }
  .row05_menu .pushy-submenu > button::after {
    display: block;
    position: absolute;
    margin: 0;
    top: 50%;
    left: 6vw;
    content: "＋";
    font-size: 4.5vw;
    line-height: 2;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: transform 1s;
    font-weight: 300;
  }
  .pushy-submenu-open > button {
    border-bottom: 1px solid #ffffff;
  }

  .row05_menu .pushy-submenu ul {
    /*transition: all 0.4s ease-in-out;*/
  }
  .row05_menu .pushy-submenu ul li {
    /*transition: all 0.2s 0.2s ease-in-out;*/
    position: relative;
  }
  .row05_menu .pushy-submenu ul li a {
    display: block;
    color: #ffffff;
    font-size: 3.5vw;
    font-weight: 300;
    font-style: normal;
    line-height: 2.4;
  }
  .row05_menu .pushy-submenu ul li a:before {
    content: "";
    position: absolute;
    top: 16px;
    left: -7vw;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid #ffffff;
    margin-top: -0.3vw;
  }

  /* サブメニュー閉じる */
  .row05_menu .pushy-submenu-closed {
    /*border-bottom: 1px solid;*/
  }
  .row05_menu .pushy-submenu-closed ul {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
  }
  .row05_menu .pushy-submenu-closed li {
    opacity: 0;
  }

  /* サブメニュー開く */
  .row05_menu .pushy-submenu-open {
  }
  .row05_menu .pushy-submenu-open ul {
    border-top: 1px solid #ffffff;
    padding: 2vw 7vw 4vw;
    visibility: visible;
    margin: 0 7vw;
  }
  .row05_menu .pushy-submenu-open li {
    opacity: 1;
  }
  .row05_menu .pushy-submenu-open > a::after,
  .row05_menu .pushy-submenu-open > button::after {
    content: "－";
  }

  /* メニューを閉じる時のスタイル
	display:none; を使用せず、opacityを使うとfadeっぽくなる
	-------------------------------------------------------- */
  .hide {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
  }

  /* メニューオープン時のみ、メニューの後ろのコンテンツをスクロールさせない
	iOS safariには別途対応が必要（jQueryに記述）
	-------------------------------------------------------- */
  .no-scroll {
    overflow: hidden;
  }
}

/* ================================

　  Sustainability

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 768px) {
  .row06 {
    margin-top: 201px;
  }
  /*.row06_bg {
    background: url(../img/row06_bg.jpg) center top / auto no-repeat;
  }*/
  .row06 img.row06_bg {
    position: absolute;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
  }

  .row06_content {
    padding: 78px 0 0 0;
    margin: 0;
    padding-left: calc((100% - 1366px) / 2);
  }

  .row06 h2 {
    color: #ffffff;
  }
  .row06 h2:before {
    background-color: #ffffff;
  }

  .row06 .top-company-swiper-slide-and-button-wrapper {
    display: flex;
    flex-direction: column;
  }

  .row06 .top-company-swiper-arrow {
    position: relative;
    height: 50px;
    margin: 30px 0;
  }

  .row06 .top-company-swiper-area .section-title {
    font-size: 50px;
    font-weight: 700;
  }

  .row06 .top-company-swiper-area {
    overflow: hidden;
    margin: 0 0 0 auto;
  }

  /* 下記セレクタへの幅指定はデザインを確認して調整する */
  .row06 .top-company-swiper-area-inner {
    padding-left: 100px;
  }

  .row06 .top-company-swiper {
    max-width: 1920px;
    overflow: hidden;
    margin-top: 40px;
  }

  .row06 .top-company-swiper .swiper-slide {
    position: relative;
    height: auto;
    width: 100%;
    /*swiper各スライドの幅 一旦1000pxで推奨値が使用されるよう調整*/
    max-width: clamp(400px, 53.5vw, 535px);
    /*swiper各スライドに直接設定する左右余白の間隔 一旦1000pxで推奨値が使用されるよう調整*/
    margin-right: 40px;
    width: 350px;
  }
  .row06 .top-company-swiper .swiper-slide a {
    transition-duration: 0s;
  }
  .row06 .top-company-swiper .swiper-slide a:hover {
    opacity: 1;
  }

  /* 各スライド内の画像やテキスト
  */
  .row06 .link-img-wrapper {
    overflow: hidden;
    max-width: 350px;
  }

  .row06 .link-wrapper .link-img {
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
  }
  .row06 .top-company-swiper .swiper-slide img {
    width: 100%;
    max-width: 350px;
    height: 210px;
    object-fit: contain;
    background-color: #fff;
  }
  .row06 .link-wrapper a:hover {
    opacity: 1;
    color: #187fc4;
  }
  .row06 .link-wrapper:hover .link-img {
    transform: scale(1.1);
  }
  .row06 .top-company-swiper .swiper-slide h3 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    padding: 0 0 5px 50px;
    letter-spacing: 0.2em;
    /*border-bottom: 1px solid;*/
    transform: rotate(0.05deg);
    height: 107px;
    display: table-cell;
    vertical-align: middle;
    width: 350px;
    line-height: 1.4;
  }
  .row06 .top-company-swiper .swiper-slide h3 span {
    display: block;
    font-size: 10px;
    font-weight: 300;
    font-style: italic;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    letter-spacing: 0.12em;
    margin-top: 2px;
  }
  .row06 .top-company-swiper .swiper-slide h3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: rotate(-0.1deg);
  }
  .row06 .top-company-swiper .swiper-slide h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_b.png) center top / contain no-repeat;
    width: 20.5px;
    height: 4px;
    top: 50%;
    left: 9px;
    margin-top: -12px;
    transition: 0.3s;
  }
  .row06 .link-wrapper a:hover h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_a.png) center top / contain no-repeat;
    width: 20.5px;
    height: 4px;
    top: 50%;
    left: 19px;
    margin-top: -12px;
  }
  .row06 .link-wrapper a:hover h3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #187fc4;
    transform: rotate(-0.1deg);
  }
  /*.row06 .link-wrapper a:hover h3 {
    border-bottom: 1px solid #187fc4;
  }*/

  .row06 .top-company-swiper .swiper-slide p {
    position: absolute;
    top: 30%;
    left: 20px;
    font-weight: 700;
    color: #fff;
  }

  /* 前、次ボタン
  */
  .row06 .top-company-swiper-area .swiper-button-prev,
  .row06 .top-company-swiper-area .swiper-button-next {
    width: 30px;
    height: 30px;
    background: #ffffff;
    bottom: 0;
    top: unset;
    z-index: 5;
  }
  .row06 .top-company-swiper-area .swiper-button-prev::after,
  .row06 .top-company-swiper-area .swiper-button-next::after {
    color: #187fc4;
    font-size: 12px;
  }
  .row06 .top-company-swiper-area .swiper-button-prev:hover,
  .row06 .top-company-swiper-area .swiper-button-next:hover {
    background-color: #000000;
  }
  .row06 .top-company-swiper-area .swiper-button-prev:hover::after,
  .row06 .top-company-swiper-area .swiper-button-next:hover::after {
    color: #ffffff;
  }
  .row06 .top-company-swiper-area .swiper-button-prev {
    left: 0px;
  }
  .row06 .top-company-swiper-area .swiper-button-next {
    left: 48px;
  }

  /* リンクが3つ以下の場合のスタイル(js付与) */
  .row06 .top-company-swiper-area.three-or-fewer-links {
    overflow: unset;
    margin: auto;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .top-company-swiper-area-inner {
    margin: 0 auto;
    padding: 0;
    width: 92.1875%;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links h3 {
    margin-bottom: 30px;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .top-company-swiper-arrow {
    display: none;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .swiper-wrapper {
    justify-content: flex-start;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .top-company-swiper {
    overflow: unset;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .swiper-slide {
    width: 30.2%;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .swiper-slide {
    margin: 0;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .swiper-slide:not(:first-of-type) {
    margin: 0 0 0 4.7%;
  }

  /* @media only screen and (max-width:767px) { */
  @media (max-width: 767px) {
    /* company swiper
    */
    .row06 .top-company-swiper-area-inner {
      max-width: 100%;
      margin: 0;
      padding: 0;
    }
    .row06 .top-company-swiper .swiper-slide {
      max-width: 280px;
    }
  } /* max-width:767px */

  @media (max-width: 500px) {
    .row06 .top-company-swiper .swiper-slide {
      height: 320px;
    }
  } /* max-width:500px */

  @media (max-width: 390px) {
    .row06 .top-company-swiper-area-inner {
      padding: 0;
    }
  } /* max-width:390px */
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  .row06 {
    margin-top: 26vw;
  }
  .row06 img.row06_bg {
    position: absolute;
    width: 100%;
    height: 53vw;
    object-fit: cover;
    object-position: top;
  }

  .row06_content {
    padding: 10vw 0 0 7vw;
  }

  .row06 h2 {
    color: #ffffff;
  }
  .row06 h2:before {
    background-color: #ffffff;
  }

  .row06 .top-company-swiper-slide-and-button-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 22vw;
  }

  .row06 .top-company-swiper-arrow {
    position: absolute;
    height: 14vw;
    bottom: 0;
    left: 50%;
    margin-left: -24vw;
  }

  .row06 .top-company-swiper-area {
    overflow: hidden;
    margin: 0 0 0 auto;
  }

  /* 下記セレクタへの幅指定はデザインを確認して調整する */
  .row06 .top-company-swiper-area-inner {
    /*padding-left: 100px;*/
  }

  .row06 .top-company-swiper {
    overflow: hidden;
    margin-top: 12vw;
  }

  .row06 .top-company-swiper .swiper-slide {
    position: relative;
    height: auto;
    width: 100%;
    /*swiper各スライドの幅 一旦1000pxで推奨値が使用されるよう調整*/
    max-width: clamp(400px, 53.5vw, 535px);
    /*swiper各スライドに直接設定する左右余白の間隔 一旦1000pxで推奨値が使用されるよう調整*/
    margin-right: 6vw;
    width: 53vw;
  }

  /* 各スライド内の画像やテキスト
  */
  .row06 .link-img-wrapper {
    overflow: hidden;
    max-width: 53vw;
  }

  .row06 .link-wrapper .link-img {
    display: block;
    transform: scale(1);
    transition: transform 0.6s ease;
  }
  .row06 .top-company-swiper .swiper-slide img {
    width: 100%;
    max-width: 53vw;
    height: 32vw;
    object-fit: cover;
    background-color: #fff;
  }
  .row06 .link-wrapper a:hover {
    opacity: 1;
    color: #187fc4;
  }
  .row06 .link-wrapper:hover .link-img {
    transform: scale(1.1);
  }
  .row06 .top-company-swiper .swiper-slide h3 {
    position: relative;
    font-size: 4vw;
    font-weight: 500;
    padding: 0 0 0 9vw;
    letter-spacing: 0.1em;
    border-bottom: 1px solid;
    transform: rotate(0.05deg);
    height: 26vw;
    display: table-cell;
    vertical-align: middle;
    line-height: 1.4;
    width: 53vw;
  }
  .row06 .top-company-swiper .swiper-slide h3 span {
    display: block;
    font-size: 2.9vw;
    font-weight: 300;
    font-style: italic;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
    margin-top: 1vw;
    line-height: 1.1;
  }
  .row06 .top-company-swiper .swiper-slide h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_b.png) center top / contain no-repeat;
    width: 5.5vw;
    height: 2vw;
    top: 50%;
    left: 0;
    margin-top: -1vw;
    transition: 0.3s;
  }
  .row06 .link-wrapper a:hover h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_a.png) center top / contain no-repeat;
    width: 5.5vw;
    height: 2vw;
    top: 50%;
    left: 0;
    margin-top: -1vw;
  }
  .row06 .link-wrapper a:hover h3 {
    border-bottom: 1px solid #187fc4;
  }

  /* 前、次ボタン
  */
  .row06 .top-company-swiper-area .swiper-button-prev,
  .row06 .top-company-swiper-area .swiper-button-next {
    width: 14vw;
    height: 14vw;
    background: #ffffff;
    border: 1px solid #000000;
    bottom: 0;
    top: unset;
    z-index: 5;
  }
  .row06 .top-company-swiper-area .swiper-button-prev::after,
  .row06 .top-company-swiper-area .swiper-button-next::after {
    color: #000000;
    font-size: 4vw;
  }
  .row06 .top-company-swiper-area .swiper-button-prev:hover,
  .row06 .top-company-swiper-area .swiper-button-next:hover {
    background-color: #000000;
  }
  .row06 .top-company-swiper-area .swiper-button-prev:hover::after,
  .row06 .top-company-swiper-area .swiper-button-next:hover::after {
    color: #ffffff;
  }
  .row06 .top-company-swiper-area .swiper-button-prev {
    left: 0px;
  }
  .row06 .top-company-swiper-area .swiper-button-next {
    left: 26vw;
  }

  /* リンクが3つ以下の場合のスタイル(js付与) */
  .row06 .top-company-swiper-area.three-or-fewer-links {
    overflow: unset;
    margin: auto;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .top-company-swiper-area-inner {
    margin: 0 auto;
    padding: 0;
    width: 92.1875%;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .top-company-swiper-arrow {
    display: none;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .swiper-wrapper {
    justify-content: flex-start;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .top-company-swiper {
    overflow: unset;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .swiper-slide {
    width: 30.2%;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .swiper-slide {
    margin: 0;
  }

  .row06 .top-company-swiper-area.three-or-fewer-links .swiper-slide:not(:first-of-type) {
    margin: 0 0 0 4.7%;
  }
}

/* ================================

　  IR情報

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 768px) {
  .row07 {
    position: relative;
    /*width: 1366px;*/
    margin: 245px auto 0;
    z-index: 1;
  }
  /*.row07_bg {
    position: relative;
  }*/
  /*.row07_bg:before {
    content: '';
    position: absolute;
    background: url(../img/row07_bg.jpg) center top / cover no-repeat;
    width: 1275px;
    height: 400px;
    top: -110px;
    right: 0;
  }*/
  .row07 img.row07_bg {
    position: absolute;
    width: 66%;
    height: 400px;
    object-fit: cover;
    object-position: top;
    right: 0;
    margin-top: -110px;
  }

  .row07_content_box {
    max-width: 1366px;
    margin: 0 auto;
  }

  .row07_content {
    position: relative;
    background-color: #ffffff;
    padding: 64px 100px 100px;
    /*width: 950px;*/
    max-width: 950px;
  }

  .row07 p {
    font-size: 16px;
    transform: rotate(0.05deg);
    font-weight: 300;
    margin-top: 30px;
    letter-spacing: 0.05em;
  }
  .row07 a:hover {
    opacity: 1;
    color: #187fc4;
  }

  .row07 ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .row07 ul li {
    width: 350px;
  }
  .row07 ul li a {
    transition-duration: 0s;
  }

  .row07 ul li:nth-child(odd) {
    margin-right: 50px;
  }

  .row07 h3 {
    position: relative;
    font-size: 20px;
    font-weight: 500;
    padding: 30px 0 23px 44px;
    letter-spacing: 0.1em;
    /*border-bottom: 1px solid;*/
    transform: rotate(0.05deg);
  }
  .row07 h3 span {
    display: block;
    font-size: 10px;
    font-weight: 300;
    font-style: italic;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    letter-spacing: 0.12em;
    margin-top: -5px;
  }
  .row07 h3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: rotate(-0.1deg);
  }
  .row07 h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_b.png) center top / contain no-repeat;
    width: 20.5px;
    height: 4px;
    top: 50%;
    left: 0;
    margin-top: -4px;
    transition: 0.3s;
  }
  .row07 a:hover h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_a.png) center top / contain no-repeat;
    width: 20.5px;
    height: 4px;
    top: 50%;
    left: 10px;
    margin-top: -4px;
  }
  .row07 a:hover h3:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #187fc4;
    transform: rotate(-0.1deg);
  }
  /*.row07 a:hover h3 {
    border-bottom: 1px solid #187fc4;
  }*/
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  .row07 {
    position: relative;
    margin-top: 26vw;
    z-index: 1;
  }
  /*.row07_bg {
    position: relative;
    padding: 13vw 13vw 0 0;
  }*/
  .row07 img.row07_bg {
    position: absolute;
    width: 100%;
    height: 53vw;
    object-fit: cover;
    object-position: top;
    margin-top: -13vw;
    margin-left: 13vw;
  }
  /*.row07_bg:before {
    content: '';
    position: absolute;
    background: url(../img/row07_bg.jpg) center top / cover no-repeat;
    width: 87vw;
    height: 35vw;
    top: 0;
    right: 0;
  }*/

  .row07_content_box {
    position: relative;
    background-color: #ffffff;
    padding: 7vw 7vw 13vw;
    margin-right: 14vw;
  }

  .row07 p {
    transform: rotate(0.05deg);
    font-weight: 300;
    margin-top: 6vw;
    letter-spacing: 0.05em;
    font-size: 3.8vw;
    line-height: 2;
  }
  .row07 a:hover {
    opacity: 1;
    color: #187fc4;
  }

  .row07 ul {
    margin-top: 5vw;
  }

  .row07 h3 {
    position: relative;
    font-size: 4vw;
    font-weight: 500;
    padding: 5.5vw 9vw;
    letter-spacing: 0.2em;
    border-bottom: 1px solid;
    transform: rotate(0.05deg);
  }
  .row07 h3 span {
    display: block;
    font-size: 3vw;
    font-weight: 300;
    font-style: italic;
    font-family: "Nunito Sans", "Noto Sans JP", sans-serif;
    letter-spacing: 0.05em;
    margin-top: -1vw;
  }
  .row07 h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_b.png) center top / contain no-repeat;
    width: 5.5vw;
    height: 2vw;
    top: 50%;
    left: 0;
    margin-top: -1vw;
    transition: 0.3s;
  }
  .row07 a:hover h3:before {
    content: "";
    position: absolute;
    background: url(../img/arrow_a.png) center top / contain no-repeat;
    width: 5.5vw;
    height: 2vw;
    top: 50%;
    left: 0;
    margin-top: -1vw;
  }
  .row07 a:hover h3 {
    border-bottom: 1px solid #187fc4;
  }
}

/* ================================

　  Recruit

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 768px) {
  .row08 {
    position: relative;
    /*width: 1366px;*/
    /*max-width: 1366px;*/
    margin: 0 auto;
  }
  .row08_bg {
    position: relative;
  }
  .row08_bg:before {
    content: "";
    position: absolute;
    background-color: #eff6fb;
    /*width: 1920px;*/
    width: 100%;
    height: 646px;
    top: -438px;
  }

  .row08 a {
    position: relative;
    display: block;
    /*width: 1166px;*/
    max-width: 1166px;
    height: 400px;
    margin: 200px auto 0;
    overflow: hidden;
  }
  .row08 a:hover {
    opacity: 1;
  }

  .row08 img {
    position: absolute;
    top: 0;
    transition: transform 0.6s ease;
  }
  .row08:hover img {
    transform: scale(1.1);
  }

  .row08_content {
    position: absolute;
    background-color: #ffffff;
    padding: 61px 71px;
    width: 420px;
    bottom: -1px;
    right: 100px;
  }

  .row08_content p {
    margin-top: 25px;
    font-size: 16px;
    font-weight: 300;
    transform: rotate(0.05deg);
    line-height: 2;
  }
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  .row08 {
    position: relative;
    margin-top: 26vw;
    padding-bottom: 27vw;
  }
  .row08_bg {
    position: relative;
  }
  .row08_bg:before {
    content: "";
    position: absolute;
    background-color: #eff6fb;
    width: 100%;
    height: 200vw;
    top: -150vw;
    left: 0;
  }

  .row08 a {
    position: relative;
    display: block;
  }
  .row08 a:hover {
    opacity: 1;
  }

  .row08 img {
    height: 54vw;
    object-fit: cover;
    width: 87vw;
  }

  .row08_content {
    position: absolute;
    background-color: #ffffff;
    padding: 3vw 6vw;
    width: 80vw;
    top: 39vw;
    right: 0;
  }

  .row08_content p {
    margin-top: 6vw;
    font-weight: 300;
    transform: rotate(0.05deg);
    line-height: 2;
    font-size: 3.8vw;
  }
}

/* ================================

　  sns

================================= */

@media (768px <= width) {
  .row09 {
    max-width: 1366px;
  }
}
@media (960px <= width) {
  .row09 {
    margin: 200px auto 0;
  }
}
@media (768px <= width <= 959px) {
  .row09 {
    margin: 160px 100px 0;
  }
}
@media (width <= 767px) {
  .row09 {
    margin: 130px auto 0;
    padding: 0 7vw;
  }
}
.row09_content {
  font-size: 16px;
  transform: rotate(0.05deg);
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (960px <= width) {
  .row09_content {
    margin: 0 100px;
  }
}
.sns_content {
  display: -webkit-flex;
  display: flex;
}
@media (960px <= width) {
  .sns_content {
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
@media (width <= 959px) {
  .sns_content {
    flex-direction: column;
    row-gap: 20px;
  }
}
.sns_text {
  display: flex;
  align-items: center;
}
.sns_logo {
  max-width: 30px;
  height: 30px;
  margin-right: 10px;
}
/* フッターのsns
------------------------------------ */
.f_sns {
  font-size: 14px;
  transform: rotate(0.05deg);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.92;
}

@media (768px <= width) {
  .f_sns {
    max-width: 1366px;
  }
}
@media (960px <= width) {
  .f_sns {
    margin: 72px auto 40px;
    padding: 0 100px;
  }
}
@media (width <= 959px) {
  .f_sns {
    margin: 100px 7vw 4vw;
    font-size: 3.5vw;
  }
}

/* ================================

　  英語用CSS

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 768px) {
  /* Information */
  .single-eng .row01 .panel_content li a .info_cate {
    letter-spacing: 0.02em;
  }
  .single-eng .row01 .tab {
    letter-spacing: 0.02em;
  }
  .single-eng .row01 .info_button a {
    width: 180px;
    letter-spacing: 0.02em;
  }
  .single-eng .row01 .info_button ul li:before {
    top: 42%;
  }
  .single-eng .row01 .info_button ul li.slide:hover::before {
    top: 42%;
  }

  /* About us */
  .single-eng .row03 .top-company-swiper .swiper-slide h3 {
    padding: 23px 0 28px 50px;
    letter-spacing: 0.02em;
    height: 80px;
    display: table-cell;
    vertical-align: middle;
    width: 350px;
    line-height: 1.4;
  }

  /* Brand */
  .single-eng .row04 .row04_textbox .slide a {
    letter-spacing: 0.08em;
  }

  /* Sustainability */
  .single-eng .row06 .top-company-swiper .swiper-slide h3 {
    letter-spacing: 0.02em;
  }
  .single-eng .row06 .top-company-swiper .swiper-slide h3:before {
    top: 57%;
  }

  /* IR */
  .single-eng .row07 h3 {
    padding: 23px 0 28px 44px;
    letter-spacing: 0.02em;
  }
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
  /* Information */
  .single-eng .row01 .panel_content li a .info_cate {
    letter-spacing: 0.02em;
  }
  .single-eng .row01 .tab {
    letter-spacing: 0.02em;
  }
  .single-eng .row01 .info_button a {
    padding: 3.5vw 4vw;
    letter-spacing: 0.02em;
  }
  .single-eng .row01 .info_button ul li a::before {
    width: 4vw;
    height: 1vw;
    right: 2vw;
  }

  /* About us */
  .single-eng .row03 .top-company-swiper .swiper-slide h3 {
    letter-spacing: 0.06em;
    height: 26vw;
    vertical-align: middle;
    display: table-cell;
    width: 53vw;
  }

  /* Brand */
  .single-eng .row04 .row04_textbox,
  .single-zh .row04 .row04_textbox {
    line-height: 2;
  }
  .single-eng .row04 .row04_textbox p + * {
    margin-top: 1.4em;
  }
  .single-eng .row04 .row04_textbox .slide a {
    letter-spacing: 0.08em;
  }

  /* Sustainability */
  .single-eng .row06 .top-company-swiper .swiper-slide h3 {
    letter-spacing: 0.06em;
  }

  /* IR */
  .single-eng .row07 h3 {
    letter-spacing: 0.02em;
  }
}

/* ================================

　  中国語用CSS

================================= */

/* PC
------------------------------------ */
@media screen and (min-width: 768px) {
}

/* SP
------------------------------------ */
@media screen and (max-width: 767px) {
}

/* クッキーポリシー↓ */
.cn-button-custom {
  background: #187fc4;
  color: #fff;
  padding: 12px 18px;
}
.cn-privacy-policy-link {
  color: #187fc4;
}
.cookie-notice-container {
  border: 1px solid #111;
}
.cn-text-container {
  text-align: left;
}
/* クッキーポリシー↑ */
