@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/*あとで消す*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1060px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/*==============================
//  Font Size Rem
//
//  【概要】        font-sizeの単位をremに変換する
//  【第一引数】    希望のfont-size（数字のみ）
//  【備考】        IE対応のためpxでも出力する
//==============================*/
/*==============================
//  Font Size Rem Line Height Half Leading
//
//  【概要】
//      ・font-sizeの単位をremに変換
//      ・行間のサイズをもとに自動でline-heightを指定
//      ・ハーフリーディングを自動調整
//  【第一引数】
//      ・希望のfont-size（数字のみ）
//  【第二引数】
//      ・希望の行間サイズ（数字のみ）
//==============================*/
/*==============================
//
//  【概要】
//      ・pxをvwに変換
//  【第一引数】
//      ・pxサイズ（数字のみ）
//  【第二引数】
//      ・デザイン幅（数字のみ）初期値はf-variableに記述
//==============================*/
/*==============================
//  px→vwの計算
//==============================*/
.p-mv--top {
  position: relative;
  width: 100%;
}
.p-mv--top .top_catch {
  width: 17%;
  max-width: 327px;
  min-width: 280px;
  position: fixed;
  top: 130px;
  right: 10%;
}
@media screen and (max-width: 1400px) {
  .p-mv--top .top_catch {
    right: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .p-mv--top .top_catch {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .p-mv--top .top_catch {
    width: 28.5333333333vw;
    height: 81.3333333333vw;
    max-width: 28.5333333333vw;
    min-width: 28.5333333333vw;
    position: fixed;
    top: 17.3333333333vw;
    right: 4.6666666667vw;
  }
}
.p-mv--top .top_catch img {
  width: 100%;
}

.scrolldown {
  position: absolute;
  right: 5%;
  bottom: 20px;
  height: 100px;
}
@media screen and (max-width: 767px) {
  .scrolldown {
    right: 11.0666666667vw;
    bottom: 0vw;
    height: 26.6666666667vw;
  }
}

.scrolldown span {
  position: absolute;
  right: -27px;
  top: 5px;
  width: 12px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .scrolldown span {
    right: -4.4vw;
    top: 0;
    width: 2.5333333333vw;
  }
}

.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 100px;
  background: #ffffff;
  animation: pathmove 1.5s ease-in-out infinite;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .scrolldown::after {
    height: 34.9333333333vw;
    animation: pathmove 2s ease-in-out infinite;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}
.slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slide-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 12s linear infinite;
  /* 各スライドが3秒表示されるので、4枚なら12秒のアニメーションに設定 */
}

.slide-image:nth-child(1) {
  background: url(../../src/img/top/mv_01_pc.jpg) no-repeat top center;
  background-size: cover;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .slide-image:nth-child(1) {
    background: url(../../src/img/top/mv_01_sp.jpg) no-repeat top center;
    background-size: cover;
  }
}

.slide-image:nth-child(2) {
  background: url(../../src/img/top/mv_02_pc.jpg) no-repeat top center;
  background-size: cover;
  animation-delay: 3s;
  /* 3秒ごとに次のスライドを表示 */
}
@media screen and (max-width: 767px) {
  .slide-image:nth-child(2) {
    background: url(../../src/img/top/mv_02_sp.jpg) no-repeat top center;
    background-size: cover;
  }
}

.slide-image:nth-child(3) {
  background: url(../../src/img/top/mv_03_pc.jpg) no-repeat top center;
  background-size: cover;
  animation-delay: 6s;
  /* 6秒ごとに次のスライドを表示 */
}
@media screen and (max-width: 767px) {
  .slide-image:nth-child(3) {
    background: url(../../src/img/top/mv_03_sp.jpg) no-repeat top center;
    background-size: cover;
  }
}

.slide-image:nth-child(4) {
  background: url(../../src/img/top/mv_04_pc.jpg) no-repeat top center;
  background-size: cover;
  animation-delay: 9s;
  /* 9秒ごとに次のスライドを表示 */
}
@media screen and (max-width: 767px) {
  .slide-image:nth-child(4) {
    background: url(../../src/img/top/mv_04_sp.jpg) no-repeat top center;
    background-size: cover;
  }
}

@keyframes slider-1 {
  0% {
    opacity: 0;
  }
  8.33% {
    /* 各スライドが3秒表示されるので、8.33%ずつのキーフレームを設定 */
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.67% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.p-top-about {
  background-color: #060e40;
  color: #ffffff;
  text-align: center;
}
.p-top-about .l-inner {
  padding: 72px 0 80px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-about .l-inner {
    padding-top: 42.6666666667vw;
    padding-left: 8.6666666667vw;
    padding-right: 8.6666666667vw;
    padding-bottom: 49.3333333333vw;
  }
}
.p-top-about .l-inner h3 {
  color: #ffffff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 17px;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 767px) {
  .p-top-about .l-inner h3 {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top-about .l-inner p {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-top-about .l-inner p {
    font-size: 3.7333333333vw;
    line-height: 2;
    text-align: justify;
  }
}
.p-top-about .l-inner .img01 {
  position: absolute;
  width: 46px;
  top: 123px;
  right: 50%;
  margin-right: -614px;
}
@media screen and (max-width: 767px) {
  .p-top-about .l-inner .img01 {
    width: 8.8vw;
    top: 16vw;
    right: 7.6vw;
    margin-right: 0;
  }
}
.p-top-about .l-inner .img02 {
  position: absolute;
  width: 131px;
  top: 48px;
  left: 50%;
  margin-left: -510px;
}
@media screen and (max-width: 767px) {
  .p-top-about .l-inner .img02 {
    width: 24.2666666667vw;
    top: 15.2vw;
    left: 6.2666666667vw;
    margin-left: 0;
  }
}
.p-top-about .l-inner .img03 {
  position: absolute;
  width: 161px;
  top: 40px;
  right: 50%;
  margin-right: -524px;
}
@media screen and (max-width: 767px) {
  .p-top-about .l-inner .img03 {
    width: 28.1333333333vw;
    top: 8vw;
    right: 31.4666666667vw;
    margin-right: 0;
  }
}
.p-top-about .l-inner .img04 {
  position: absolute;
  width: 157px;
  top: 200px;
  right: 50%;
  margin-right: -536px;
}
@media screen and (max-width: 767px) {
  .p-top-about .l-inner .img04 {
    width: 30.4vw;
    top: inherit;
    bottom: 20.5333333333vw;
    right: 4vw;
    margin-right: 0;
  }
}
.p-top-about .l-inner .img05 {
  position: absolute;
  width: 130px;
  top: 182px;
  left: 50%;
  margin-left: -473px;
}
@media screen and (max-width: 767px) {
  .p-top-about .l-inner .img05 {
    width: 27.3333333333vw;
    top: inherit;
    bottom: 17.3333333333vw;
    left: 7.7333333333vw;
    margin-left: 0;
  }
}
.p-top-about .l-inner .img06 {
  position: absolute;
  width: 84px;
  top: 130px;
  left: 50%;
  margin-left: -600px;
}
@media screen and (max-width: 767px) {
  .p-top-about .l-inner .img06 {
    width: 17.3333333333vw;
    top: inherit;
    bottom: 8.9333333333vw;
    left: 42.9333333333vw;
    margin-left: 0;
  }
}

.p-top-shoplist {
  background: #48538f url(../../src/img/common/ptrn_seigaiha.svg) repeat;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist {
    background-size: 20%;
  }
}
.p-top-shoplist::before {
  display: block;
  position: absolute;
  content: "";
  background: url(../../src/img/top/top_bg01_pc.png) repeat-x bottom center;
  background-size: auto;
  width: 100%;
  height: 25px;
  top: -1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist::before {
    height: 3.7333333333vw;
    background-size: auto 3.7333333333vw;
  }
}
.p-top-shoplist::after {
  display: block;
  position: absolute;
  content: "";
  background: url(../../src/img/top/top_bg02_pc.png) repeat-x top center;
  background-size: auto;
  width: 100%;
  height: 43px;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist::after {
    background-size: auto 4.6666666667vw;
    height: 4.6666666667vw;
  }
}
.p-top-shoplist .l-inner {
  padding: 80px 0 105px;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner {
    padding: 14.6666666667vw 10.6666666667vw 16vw;
  }
}
.p-top-shoplist .l-inner h2 {
  width: 175px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner h2 {
    width: 42.6666666667vw;
    margin: 0 auto 8vw;
  }
}
.p-top-shoplist .l-inner ul {
  width: 950px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul {
    width: 78.6666666667vw;
    margin: 0 auto 1.3333333333vw;
  }
}
.p-top-shoplist .l-inner ul li a {
  width: 148px;
  height: 88px;
  background-color: #ffffff;
  text-align: center;
  border: 4px solid #cfb481;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 2px 2px 0 0 rgb(0, 0, 0);
  position: relative;
  transition: all 0.5s;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul li a {
    width: 36vw;
    height: 21.3333333333vw;
    margin-bottom: 6.6666666667vw;
    border: 1.0666666667vw solid #cfb481;
    box-shadow: 0.5333333333vw 0.5333333333vw 0 0 rgb(0, 0, 0);
  }
}
.p-top-shoplist .l-inner ul li a::after {
  display: block;
  position: absolute;
  content: "";
  background: url(../../src/img/common/arrow_btn.svg) no-repeat;
  background-size: cover;
  width: 17px;
  height: 17px;
  bottom: -4px;
  right: -4px;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul li a::after {
    width: 4vw;
    height: 4vw;
    bottom: -0.5333333333vw;
    right: -0.5333333333vw;
  }
}
.p-top-shoplist .l-inner ul li a:hover, .p-top-shoplist .l-inner ul li a:active {
  background-color: #fbf4e6;
}
.p-top-shoplist .l-inner ul li a .logo {
  width: 100%;
  height: 58px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul li a .logo {
    height: 13.3333333333vw;
  }
}
.p-top-shoplist .l-inner ul li a span {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul li a span {
    font-size: 3.2vw;
    margin-bottom: 2.4vw;
  }
}
.p-top-shoplist .l-inner ul li.gosaku1 a img {
  width: 110px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul li.gosaku1 a img {
    width: 26.1333333333vw;
    margin-top: 1.6vw;
  }
}
.p-top-shoplist .l-inner ul li.gosaku2 a img {
  width: 110px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul li.gosaku2 a img {
    width: 26.1333333333vw;
    margin-top: 1.6vw;
  }
}
.p-top-shoplist .l-inner ul li.gosaku3 a img {
  width: 113px;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul li.gosaku3 a img {
    width: 26.9333333333vw;
    margin-top: 1.6vw;
  }
}
.p-top-shoplist .l-inner ul li.igossou a img {
  width: 96px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul li.igossou a img {
    width: 22.6666666667vw;
    margin-top: 0.6666666667vw;
  }
}
.p-top-shoplist .l-inner ul li.joppari a img {
  width: 83px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul li.joppari a img {
    width: 20vw;
    margin-top: 1.3333333333vw;
  }
}
.p-top-shoplist .l-inner ul li.toramaru a img {
  width: 74px;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .p-top-shoplist .l-inner ul li.toramaru a img {
    width: 17.3333333333vw;
    margin-top: 0.8vw;
  }
}

.p-top-bnrarea {
  background-color: #ffffff;
  text-align: center;
  padding: 80px 0 90px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-bnrarea {
    padding: 10.6666666667vw 8vw 12vw;
  }
}
.p-top-bnrarea a {
  display: inline-block;
  margin: 0 auto;
  transition: all 0.5s;
}
.p-top-bnrarea a:hover, .p-top-bnrarea a:active {
  opacity: 0.8;
}
.p-top-bnrarea::after {
  display: block;
  position: absolute;
  content: "";
  background: url(../../src/img/top/tsuna1_pc.png) no-repeat bottom center;
  background-size: auto 52px;
  width: 100%;
  height: 52px;
  bottom: -5px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-bnrarea::after {
    background-size: auto 9.3333333333vw;
    height: 9.3333333333vw;
    bottom: -1.3333333333vw;
  }
}

.p-top-slide {
  overflow: hidden;
  position: relative;
}

.loop__box {
  height: 168px;
  width: 2304px;
  /*width: 100vw;*/
  display: flex;
}
@media screen and (max-width: 767px) {
  .loop__box {
    height: 33.3333333333vw;
  }
}

.loop__box img {
  height: 168px;
  min-width: 2304px;
  /*min-width: 100vw;*/
}
@media screen and (max-width: 767px) {
  .loop__box img {
    height: 33.3333333333vw;
    min-width: 457.0666666667vw;
  }
}

.loop__box img:first-child {
  animation: loop 150s -75s linear infinite;
}

.loop__box img:last-child {
  animation: loop2 150s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.p-top-feature {
  background: #060e40 url(../../src/img/top/top_feature_bg_pc.png) no-repeat top 70px center;
  color: #ffffff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-feature {
    background: #060e40 url(../../src/img/top/top_feature_bg_sp.png) no-repeat top 16vw center;
    background-size: 100% auto;
  }
}
.p-top-feature::before {
  display: block;
  position: absolute;
  content: "";
  background: url(../../src/img/top/tsuna2_pc.png) no-repeat top center;
  background-size: auto 17px;
  width: 100%;
  height: 17px;
  top: -3px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-feature::before {
    background-size: auto 2.9333333333vw;
    height: 2.9333333333vw;
    bottom: -0.8vw;
  }
}
.p-top-feature .l-inner {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-top-feature .l-inner {
    padding: 13.3333333333vw 0;
  }
}
.p-top-feature .l-inner h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-top-feature .l-inner h2 {
    width: 31.2vw;
    margin: 0 auto 8vw;
  }
}
.p-top-feature .l-inner ul {
  width: 100%;
  position: relative;
  padding-top: 420px;
}
@media screen and (max-width: 767px) {
  .p-top-feature .l-inner ul {
    padding-top: 0;
    margin-bottom: 6.6666666667vw;
  }
}
.p-top-feature .l-inner ul li {
  width: 487px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-top-feature .l-inner ul li {
    width: 100%;
    position: relative;
  }
}
.p-top-feature .l-inner ul li:first-child {
  top: 0;
  left: 50%;
  margin-left: -490px;
}
@media screen and (max-width: 767px) {
  .p-top-feature .l-inner ul li:first-child {
    top: inherit;
    left: inherit;
    margin-left: 2.6666666667vw;
    width: 117.8666666667vw;
  }
}
.p-top-feature .l-inner ul li:nth-child(2) {
  top: 0;
  left: 50%;
  margin-left: -140px;
}
@media screen and (max-width: 767px) {
  .p-top-feature .l-inner ul li:nth-child(2) {
    top: inherit;
    left: inherit;
    margin-left: 31.2vw;
    width: 117.8666666667vw;
    margin-top: -16vw;
  }
}
.p-top-feature .l-inner ul li:nth-child(3) {
  top: 0;
  right: 50%;
  margin-right: -680px;
}
@media screen and (max-width: 767px) {
  .p-top-feature .l-inner ul li:nth-child(3) {
    top: inherit;
    right: inherit;
    margin-right: 0;
    width: 117.8666666667vw;
    margin-top: -10.6666666667vw;
    margin-left: 2.1333333333vw;
  }
}

.p-top-news {
  background: #dbe0f4 url(../../src/img/top/top_bg03.png) repeat;
  background-size: 20px 35px;
  text-align: center;
  padding: 100px 0 90px;
  color: #060e40;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    background-size: 2.6666666667vw 4.6666666667vw;
    padding: 30.1333333333vw 6.6666666667vw 10.6666666667vw;
  }
}
.p-top-news .l-inner {
  width: 900px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner {
    width: 100%;
  }
}
.p-top-news .l-inner h2 {
  position: absolute;
  width: 117px;
  top: -30px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner h2 {
    width: 25.3333333333vw;
    top: -20vw;
    left: 50%;
    margin-left: -12.6666666667vw;
  }
}
.p-top-news .l-inner .news-wrapper {
  width: 790px;
  min-height: 280px;
  margin: 0 30px 0 80px;
  background-color: #ffffff;
  position: relative;
  padding: 9px 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper {
    width: 100%;
    margin: 0;
    padding: 24vw 0 2.4vw 2.2666666667vw;
  }
}
.p-top-news .l-inner .news-wrapper::before {
  display: block;
  position: absolute;
  content: "";
  background: url(../../src/img/top/top_news_bg.png) repeat-x;
  width: 100%;
  height: 9px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper::before {
    height: 2.2666666667vw;
  }
}
.p-top-news .l-inner .news-wrapper::after {
  display: block;
  position: absolute;
  content: "";
  background: url(../../src/img/top/top_news_bg.png) repeat-x;
  width: 100%;
  height: 9px;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper::after {
    height: 2.2666666667vw;
  }
}
.p-top-news .l-inner .news-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 19px 42px 35px;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper ul {
    padding: 0 3.3333333333vw 9.3333333333vw 6.6666666667vw;
  }
}
.p-top-news .l-inner .news-wrapper ul li {
  width: 100%;
  background-size: 5px 1px;
  background-image: linear-gradient(to right, #060e40, #060e40 3px, transparent 2px, transparent 5px);
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 0;
  color: #060e40;
  transition: 0.5s;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper ul li {
    font-size: 1.8666666667vw;
    padding: 5.3333333333vw 10vw 4vw 0;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper ul li:first-child {
    padding: 0 10vw 4vw 0;
  }
}
.p-top-news .l-inner .news-wrapper ul li .budge {
  width: 72px;
  height: 22px;
  line-height: 22px;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
  margin-left: 4px;
  color: #ffffff;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper ul li .budge {
    width: 19.0666666667vw;
    height: 5.8666666667vw;
    line-height: 5.8666666667vw;
    font-size: 2.6666666667vw;
    margin-left: 0;
  }
}
.p-top-news .l-inner .news-wrapper ul li .budge.ico_campaign {
  background-color: #bd192e;
}
.p-top-news .l-inner .news-wrapper ul li .budge.ico_news {
  background-color: #48538f;
}
.p-top-news .l-inner .news-wrapper ul li .date {
  width: 80px;
  margin-left: 17px;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper ul li .date {
    width: 19.0666666667vw;
    font-size: 3.4666666667vw;
    margin-left: 2.6666666667vw;
  }
}
.p-top-news .l-inner .news-wrapper ul li .main {
  width: calc(100% - 190px);
  margin-left: 17px;
  position: relative;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper ul li .main {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    margin-top: 3.3333333333vw;
  }
}
.p-top-news .l-inner .news-wrapper ul li .main::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../../src/img/common/arrow_s.svg) no-repeat;
  width: 8px;
  height: 9px;
  background-size: cover;
  top: 50%;
  margin-top: -4px;
  right: 5px;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper ul li .main::after {
    width: 2.4vw;
    height: 2.2666666667vw;
    margin-top: -1.1333333333vw;
    right: -6.6666666667vw;
  }
}
.p-top-news .l-inner .news-wrapper ul li .main a {
  font-size: 15px;
  font-weight: 500;
  color: #060e40;
  transition: all 0.5s;
}
.p-top-news .l-inner .news-wrapper ul li .main a:hover {
  color: #6971b0;
}
.p-top-news .l-inner .news-wrapper ul.scrollable-div {
  overflow-y: auto;
  max-height: 280px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top-news .l-inner .news-wrapper ul.scrollable-div {
    max-height: 124vw;
  }
}

.scrollable-div::-webkit-scrollbar {
  width: 18px;
}
@media screen and (max-width: 767px) {
  .scrollable-div::-webkit-scrollbar {
    width: 2.4vw;
  }
}

.scrollable-div::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.scrollable-div::-webkit-scrollbar-thumb {
  background-color: #c2c2c2;
  border-radius: 100px;
  border: 4px solid #f1f1f1;
  background-clip: content-box;
}
@media screen and (max-width: 767px) {
  .scrollable-div::-webkit-scrollbar-thumb {
    border: 0.5333333333vw solid #f1f1f1;
  }
}

.p-top-insta {
  background: #ffffff url(../../src/img/top/insta_bg_pc.png) repeat top -165px center;
  text-align: center;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-top-insta {
    background: #ffffff url(../../src/img/top/insta_bg_sp.png) repeat-y top -38vw center;
    background-size: 100% auto;
    padding: 13.3333333333vw 0 10.6666666667vw;
  }
}
.p-top-insta h2 {
  width: 545px;
  margin: 0 auto 39px;
}
@media screen and (max-width: 767px) {
  .p-top-insta h2 {
    width: 91.7333333333vw;
    margin: 0 auto 3.4666666667vw;
  }
}
.p-top-insta .insta-wrapper {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper {
    max-width: 87.4666666667vw;
  }
}
.p-top-insta .insta-wrapper ul {
  width: 450px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul {
    width: 87.4666666667vw;
  }
  .p-top-insta .insta-wrapper ul:nth-of-type(2) {
    flex-direction: row-reverse;
  }
}
.p-top-insta .insta-wrapper ul li {
  width: 225px;
  height: 225px;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li {
    width: 43.7333333333vw;
    height: 43.7333333333vw;
  }
}
.p-top-insta .insta-wrapper ul li a {
  padding: 35px 40px;
  width: 100%;
  height: 100%;
  display: inline-block;
  background-color: #060e40;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #cfb481;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a {
    padding: 5.7333333333vw 6.5333333333vw 6.5333333333vw 6.5333333333vw;
  }
}
.p-top-insta .insta-wrapper ul li a:hover,
.p-top-insta .insta-wrapper ul li a :active {
  background-color: #2e366d;
}
.p-top-insta .insta-wrapper ul li a .ditail {
  width: 145px;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail {
    width: 30.6666666667vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail .logo {
  height: 90px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail .logo {
    height: 16.9333333333vw;
    font-size: 3.0666666667vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail .logo img {
  margin: 0 auto 7px;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail .logo img {
    margin: 0 auto 1.8666666667vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail.gosaku1 .logo img {
  width: 127px;
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail.gosaku1 .logo img {
    width: 27.3333333333vw;
    padding-top: 2vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail.gosaku2 .logo img {
  width: 127px;
  padding-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail.gosaku2 .logo img {
    width: 27.3333333333vw;
    padding-top: 2vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail.gosaku3 .logo img {
  width: 129px;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail.gosaku3 .logo img {
    width: 27.4666666667vw;
    padding-top: 1.7333333333vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail.igossou .logo img {
  width: 115px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail.igossou .logo img {
    width: 24.5333333333vw;
    padding-top: 0vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail.joppari .logo img {
  width: 100px;
  padding-top: 0;
  margin: 0 auto 1px;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail.joppari .logo img {
    width: 21.3333333333vw;
    padding-top: 0vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail.toramaru .logo img {
  width: 87px;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail.toramaru .logo img {
    width: 18.5333333333vw;
    padding-top: 0vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail .url {
  font-size: 11px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail .url {
    font-size: 2.4vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail .link {
  width: 145px;
  height: 38px;
  line-height: 33px;
  border-top: 1px solid #cfb481;
  border-bottom: 1px solid #cfb481;
  position: relative;
  margin-top: 12px;
  font-size: 12.6px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail .link {
    width: 30.6666666667vw;
    height: 8vw;
    line-height: 7.7333333333vw;
    margin-top: 2.4vw;
    font-size: 2.6666666667vw;
  }
}
.p-top-insta .insta-wrapper ul li a .ditail .link::after {
  display: block;
  content: "";
  position: absolute;
  background: url(../../src/img/common/arrow_b.svg) no-repeat;
  background-size: cover;
  top: calc(50% - 4px);
  right: 5px;
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li a .ditail .link::after {
    top: calc(50% - 0.8666666667vw);
    right: 2.9333333333vw;
    width: 1.7333333333vw;
    height: 1.7333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-insta .insta-wrapper ul li .img {
    object-fit: cover;
  }
}

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