@charset "utf-8";


html {
  font-size: 62.5%;
}


/* -----------検証用↓----------
body {
  overflow-x: hidden;
}
* {
  outline: 1px solid red;
}
----------↑↑↑-------------- */

body {
  background-color: #fff;
  color: #3c3c3c;
  font-family: YakuHanJP, "Roboto", "Noto Sans JP", sans-serif;
}

.wrapper {
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
}

/* ---ヘッダーゾーン--- */

header div.header {
  display: flex;
  background-color: #fff;
  justify-content: space-between;
  border-bottom: 3px solid #f18f00;
  align-items: center;
  height: 72px;
}

header h1 {
  height: 72px;
  order: 1;
}

header h1 img {
  height: 100%;
  width: auto;
}

ul.main,
ul.sub {
  height: 100%;
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

header ul.main {
  order: 2;
}

header ul.main li {
  line-height: 72px;
  white-space: nowrap;
  height: 72px;
  text-align: center;
}

header ul.main li a {
  text-decoration: none;
  color: #3c3c3c;
}

header ul.main li a span {
  font-size: 18px;
  letter-spacing: 0.06em;
  padding-right: 17px;
  padding-left: 19px;
  font-weight: 500;
  font-family: "DotGothic16", sans-serif;
}

header ul.main li a:hover {
  color: #f18f00;
  display: inline-block;
  animation: hurueru .1s infinite;
}

@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }

  25% {
    transform: translate(2px, 2px) rotateZ(1deg)
  }

  50% {
    transform: translate(0px, 2px) rotateZ(0deg)
  }

  75% {
    transform: translate(2px, 0px) rotateZ(-1deg)
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }
}

header ul.sub {
  order: 3;
}

header ul.sub li {
  text-align: center;
  border-left: 1px solid #e6e6e6;
  width: 75px;
}

header ul.sub li span {
  font-size: 10px;
  font-weight: bold;
}

header ul.sub li a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #3c3c3c;
  padding-top: 17px;
}

header ul.sub li a:hover,
header ul.sub li a:hover svg {
  color: #f18f00;
  fill: #f18f00;
}

header ul.sub svg {
  height: 25px;
  width: 25px;
  fill: #b4b4b4;
}

header ul.sub a:hover svg {
  display: inline-block;
  animation: hurueru .001s infinite;
}

@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }

  25% {
    transform: translate(2px, 2px) rotateZ(1deg)
  }

  50% {
    transform: translate(0px, 2px) rotateZ(0deg)
  }

  75% {
    transform: translate(2px, 0px) rotateZ(-1deg)
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }
}

/* ---ファーストビューゾーン--- */
div.visual_img {
  /* border: 1px red solid; */
  background-color: gray;
  width: 100%;
  aspect-ratio: 16 / 6;
  background-image: url(../imges/main_img.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---トピックスゾーン--- */

section.topics {
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
  padding-bottom: 98px;
  padding-top: 79px;
}

section.topics h2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 13px;
}

section.topics h2 div.topics_headline_main {
  font-size: 23px;
  font-weight: 600;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 2px;
}

section.topics h2 div.topics_headline_main:hover {
  display: inline-block;
  animation: hurueru .01s infinite;
}

@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }

  25% {
    transform: translate(2px, 2px) rotateZ(1deg)
  }

  50% {
    transform: translate(0px, 2px) rotateZ(0deg)
  }

  75% {
    transform: translate(2px, 0px) rotateZ(-1deg)
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }
}

section.topics h2 div.topics_headline_sub {
  font-size: 11.5px;
  font-weight: bold;
  color: #b4b4b4;
}

div.topics_contents {
  padding-bottom: 56px;
  padding-top: 34px;
  border-top: 2px solid #e6e6e6;
  position: relative;
}

div.topics_contents:before {
  position: absolute;
  top: -2px;
  content: "";
  width: 125px;
  height: 2px;
  background: #f18f00;
}

div.topics_contents ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 27px;
}

div.topics_contents ul li {
  width: calc((100% - 81px) / 4);
  margin-bottom: 27px;
}

div.topics_contents ul li div.t1 {
  height: 100%;
  border-bottom: solid 1px #e6e6e6;
}

div.topics_contents ul li a {
  text-decoration: none;
  color: #3c3c3c;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}

div.topics_contents ul li img {
  background-color: gray;
  width: 100%;
  height: auto;
  border-radius: 5px;
  transition: 0.1s;
}

div.topics_contents ul li a:hover img {
  filter: opacity(80%);
  transition: 0.1s;
}

div.t12 {
  margin-top: 14px;
  padding-bottom: 26px;
}

div.t12 p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: -0.39em;
  margin-bottom: -0.21em;
}

div.t13 {
  display: flex;
  justify-content: space-between;
  color: #8c8c8c;
  font-size: 12px;
  padding-bottom: 14px;
}

div.t13 svg {
  width: 14px;
  height: 14px;
  padding-right: 2px;
}

li.hidden {
  display: none;
}

section.topics div.topics_button {
  display: flex;
  justify-content: center;
  width: calc(9.5em + 100px);
  margin: auto;
  white-space: nowrap;
  border-radius: 2px;
  padding: 7px 24px;
}

div.topics_button a {
  background-color: #f18f00;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  padding: 12px 24px 13px 24px;
  border-radius: 2px;
  letter-spacing: 1px;
  box-shadow: 0 4px 0 #d87717;
  transition: 0.2s;
  border-radius: 5px;
}

div.topics_button a:hover {
  transform: translateY(2px);
  box-shadow: none;
}

div.topics_button a svg {
  margin-right: 3px;
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

div.topics_button a span {
  vertical-align: middle;
}

.cls-3,
.cls-4 {
  fill: #fff;
}

.cls-4 {
  stroke: #f18f00;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 50px;
}

/* ---ピックアップゾーン--- */
section.pickup {
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
  padding-bottom: 98px;
}

section.pickup h2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 13px;
}

section.pickup h2 div.pickup_headline_main {
  font-size: 23px;
  font-weight: 600;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 2px;
}

section.pickup h2 div.pickup_headline_main:hover {
  display: inline-block;
  animation: hurueru .01s infinite;
}

@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }

  25% {
    transform: translate(2px, 2px) rotateZ(1deg)
  }

  50% {
    transform: translate(0px, 2px) rotateZ(0deg)
  }

  75% {
    transform: translate(2px, 0px) rotateZ(-1deg)
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }
}

section.pickup h2 div.pickup_headline_sub {
  font-size: 11.5px;
  font-weight: bold;
  color: #b4b4b4;
}

section.pickup ul {
  display: flex;
  padding-bottom: 16px;
  column-gap: 28px;
  padding-top: 34px;
  border-top: 2px solid #e6e6e6;
  position: relative;
}

section.pickup ul:before {
  position: absolute;
  top: -2px;
  content: "";
  width: 150px;
  height: 2px;
  background: #f18f00;
}

section.pickup ul li {
  /* margin-right: 28px; */
  width: calc((100% - 56px) / 3);
}

section.pickup ul li img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* ----ゲームソフトゾーン---- */
section.soft {
  padding-bottom: 98px;
}

section.soft .size {
  max-width: 1200px;
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  box-sizing: border-box;
}

section.soft h2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 13px;
}

section.soft h2 div.soft_headline_main {
  font-size: 23px;
  font-weight: 600;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 2px;
}

section.soft h2 div.soft_headline_main:hover {
  display: inline-block;
  animation: hurueru .01s infinite;
}

@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }

  25% {
    transform: translate(2px, 2px) rotateZ(1deg)
  }

  50% {
    transform: translate(0px, 2px) rotateZ(0deg)
  }

  75% {
    transform: translate(2px, 0px) rotateZ(-1deg)
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }
}

section.soft h2 div.soft_headline_sub {
  font-size: 11.5px;
  font-weight: bold;
  color: #b4b4b4;
}

section.soft .ul {
  display: flex;
  padding-bottom: 16px;
  column-gap: 28px;
  padding-top: 34px;
  border-top: 2px solid #e6e6e6;
  position: relative;
}

section.soft .ul:before {
  position: absolute;
  top: -2px;
  content: "";
  width: 148px;
  height: 2px;
  background: #f18f00;
}

div.pics {
  width: 100%;
  margin: 0 auto;
  line-height: 0;
  overflow-x: hidden;
}

div.pics img {
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.15);
}

.slick-list {
  margin: 0 -20px;
}

.slick-slide {
  margin: 0 20px;
}

div.item ul {
  margin: 0 auto;
  text-align: center;
}

div.item ul li {
  border: 2px solid #d9d9d9;
  white-space: nowrap;
  display: inline-block;
  padding: 11px 24px;
  border-radius: 2px;
  margin: 30px 10px;
}

div.item ul li a {
  text-decoration: none;
  display: flex;
  color: #3c3c3c;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  align-items: center;
}

div.item ul li a svg {
  width: 10px;
  height: 10px;
  margin-right: 7px;
}

/* ---更新情報ゾーン--- */

section.newinfo {
  padding-left: 40px;
  padding-right: 40px;
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
  padding-bottom: 98px;
}

section.newinfo h2 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 13px;
}

section.newinfo h2 div.newinfo_headline_main {
  font-size: 23px;
  font-weight: 600;
  font-family: "DotGothic16", sans-serif;
  letter-spacing: 5.5px;
}

section.newinfo h2 div.newinfo_headline_main:hover {
  display: inline-block;
  animation: hurueru .01s infinite;
}

@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }

  25% {
    transform: translate(2px, 2px) rotateZ(1deg)
  }

  50% {
    transform: translate(0px, 2px) rotateZ(0deg)
  }

  75% {
    transform: translate(2px, 0px) rotateZ(-1deg)
  }

  100% {
    transform: translate(0px, 0px) rotateZ(0deg)
  }
}

section.newinfo h2 div.newinfo_headline_sub {
  font-size: 11.5px;
  font-weight: bold;
  color: #b4b4b4;
}

section.newinfo div.n2 {
  margin: 0 auto;
  box-sizing: border-box;
}

section.newinfo div.n2 ul {
  display: flex;
  display: block;
  margin-bottom: 42px;
  border-bottom: solid 1px #e6e6e6;
}

section.newinfo div.n2 ul li {
  border-top: 2px dotted #d8d8d8;
  display: flex;
  max-width: 100%;
  width: 100%;
}

section.newinfo div.n2 ul li:first-child {
  border-top: 2px solid #e6e6e6;
  position: relative;
}

section.newinfo div.n2 ul li:first-child:before {
  position: absolute;
  top: -2px;
  content: "";
  width: 111px;
  height: 2px;
  background: #f18f00;
}

section.newinfo div.n2 ul li a {
  display: flex;
  text-decoration: none;
  text-align: center;
  align-items: center;
  padding: 19px 10px 17px 15px;
  box-sizing: border-box;
  color: inherit;
  transition: .11s;
  width: 100%;
}

section.newinfo div.n2 ul li a:hover {
  color: #f18f00;
}

section.newinfo div.n2 ul li a:hover .arrows .arrow:before,
section.newinfo div.n2 ul li a:hover .arrows .arrow:after {
  background: #f18f00;
}


section.newinfo div.n2 ul li span.date {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  width: 70px;
  padding-right: 24px;
}

section.newinfo div.n2 ul li div.n3 span {
  font-weight: bold;
  text-align: center;
  color: #8c8c8c;
  background-color: #f2f2f2;
  line-height: 1;
  padding: 5px 1px;
  font-size: 10px;
  width: 100px;
  display: block;
  border-radius: 1px
}

section.newinfo div.n2 ul li div.n4 {
  padding: 2px 0;
  padding-right: 25px;
  display: flex;
  align-items: center;
}

section.newinfo div.n2 ul li div.n4 span {
  text-align: left;
  padding-left: 20px;
  font-size: 14px;
  white-space: normal;
  overflow-wrap: break-word;
  text-align: left;
  display: block;
}

/* div.n2 ul li a svg {
  margin-left: auto;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  min-width: 10px;
  min-height: 10px;
  max-width: 10px;
  max-height: 10px;
} */

.arrows {
  margin-left: auto;
  margin-right: 10px;
  margin-top: 5px;
  padding-right: 2px;
  position: relative;
  display: flex;
  width: 2%;
  height: 18px;
  justify-content: center;
  align-items: center;
  /* overflow: hidden; */
}

.arrows .arrow {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  width: 60px;
  height: 10px;
  opacity: 0;
}

/* アニメーションタイミングずらして表示 */
.arrows .arrow:nth-child(1) {
  animation: arrow-move-horizontal 2s 0s ease-in-out infinite;
}

.arrows .arrow:nth-child(2) {
  animation: arrow-move-horizontal 2s 0.5s ease-in-out infinite;
}

.arrows .arrow:nth-child(3) {
  animation: arrow-move-horizontal 2s 1s ease-in-out infinite;
}

/* 矢印のパーツ */
.arrows .arrow:before,
.arrows .arrow:after {
  position: absolute;
  content: '';
  top: 0;
  width: 6px;
  height: 2px;
  background: #b4b4b4;
}

.arrows .arrow:before {
  top: 3px;
  left: 0;
  transform: rotate(-45deg);
}

.arrows .arrow:after {
  bottom: 3px;
  left: 0;
  transform: rotate(45deg);
}

/* 左から右に流れるアニメーション */
@keyframes arrow-move-horizontal {
  0% {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: 100%;
  }
}

section.newinfo div.newinfo_button {
  display: flex;
  justify-content: center;
  width: calc(9.5em + 100px);
  margin: auto;
  white-space: nowrap;
  border-radius: 2px;
  padding: 7px 24px;
}

div.newinfo_button a {
  background-color: #f18f00;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
  font-weight: bold;
  padding: 12px 24px 13px 24px;
  border-radius: 2px;
  letter-spacing: 1px;
  box-shadow: 0 4px 0 #d87717;
  transition: 0.2s;
  border-radius: 5px;
}

div.newinfo_button a:hover {
  transform: translateY(2px);
  box-shadow: none;
}

div.newinfo_button a svg {
  margin-right: 3px;
  width: 12px;
  height: 12px;
  vertical-align: middle;
}

div.newinfo_button a span {
  vertical-align: middle;
}


/* ----お客様へのお知らせ---- */

section.customer {
  margin: 0 auto;
  padding: 22px;
  border-top: 1px solid #e6e6e6;
  max-width: 1200px;
}

div.c1 {
  box-sizing: border-box;
  margin: o auto;
  padding-right: 40px;
  padding-left: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

div.c2 p {
  color: #8c8c8c;
  font-weight: bold;
  align-items: center;
  padding-right: 44px;
  font-size: 16px;
}

div.c3 ul {
  padding: 10px 0 10px 44px;
  border-left: solid 2px #e6e6e6;
  box-sizing: border-box;
}

div.c3 ul li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 13px;
}

div.c3 ul li a svg {
  padding-right: 2px;
  padding-top: 0.5px;
  width: 11px;
  height: 11px;
}

.cls-1,
.cls-2 {
  fill: #f18f00;
}

.cls-2 {
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 45px;
}

div.c3 ul li a p {
  display: inline-block;
  font-size: 14px;
  margin-top: -0.26em;
}

div.c3 ul li a:hover {
  color: #f18f00;
}

/* ーーーフッターゾーンーーー */

footer {
  background-color: #f2f2f2;
  font-size: 16px;
  line-height: 2;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

footer div.footercolor {
  padding: 23px 0;
  background-color: #ff7700;
  position: relative;
}

footer div.footerhead {
  margin: 0 auto;
  padding-right: 70px;
  padding-left: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer div.footerhead svg {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -58px;
  left: 90%;
  transform: rotate(-45deg);
}

footer div.ff {
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  justify-content: center;
  max-width: 1360px;
}

div.social {
  font-weight: bold;
  color: #8c8c8c;
  font-size: 16px;
  white-space: nowrap;
  margin-right: 4.9%;
}

div.ma {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-bottom: 1px solid #e6e6e6;
}

footer div.ma,
footer div.ma ul.logo {
  display: flex;
}

div.footercontent ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

div.footercontent ul li.line {
  width: 45px;
  height: 45px;
}

div.footercontent ul li.youtube {
  width: 50px;
  height: 50px;
}

div.footercontent ul li.x {
  width: 40px;
  height: 40px;
}

div.footercontent ul li.instagram {
  width: 45px;
  height: 45px;
}

div.footercontent ul li.facebook {
  width: 47px;
  height: 47px;
}

div.footercontent ul.logo li a img {
  max-width: 100%;
  height: auto;
}

div.footercontent ul.logo li {
  align-content: center;
}

div.mc {
  padding: 29px 0 31px 0;
}

div.mc ul {
  justify-content: center;
}

div.mc ul li {
  display: flex;
  justify-content: center;
  padding-right: 14px;

}

div.mc ul li a {
  display: flex;
  text-decoration: none;
  align-items: center;
}

div.mc ul li a img {
  background-color: #ff8e48;
  width: 64px;
  height: 64px;
  border: none;
  border-radius: 5px;
}

div.mc ul li a div.mc_01 {
  justify-content: flex-start;
  padding-left: 16px;
}

div.mc ul li a div.mc_01 p.top {
  font-size: 10px;
  line-height: 1;
  font-weight: bold;
  color: #8c8c8c;
  display: block;
  padding-bottom: 5px;
}

div.mc ul li a div.mc_01 p.bottom {
  font-size: 12px;
  line-height: 1.4;
  font-weight: bold;
  color: #3c3c3c;
}

div.mb {
  padding: 24px 0 22px 0;
  border-top: 1px solid #e6e6e6;
}

div.mb ul {
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  gap: 0;
}

div.mb ul li {
  padding-right: 74px;
}

div.mb ul li a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #3c3c3c;
  font-size: 14px;
  font-weight: bold;
}

div.mb ul li a p {
  transition: 0.2s;
}

div.mb ul li a:hover p {
  color: #b4b4b4;
  transition: 0.3s;
}

div.mb ul li a svg {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  min-width: 10px;
  min-height: 10px;
  max-width: 10px;
  max-height: 10px;
  fill: #8c8c8c;
  margin-right: 7px;
}

nav.nav {
  display: flex;
  border-top: 1px solid #e6e6e6;

}

nav.nav1 {
  display: flex;
  padding-top: 40px;
  padding-bottom: 54px;
  width: calc(100% - 210px);
}

nav.nav1 dl {
  width: calc(100% / 4);
  text-align: left;
}

nav.nav1 dl a {
  text-decoration: none;
  color: #3c3c3c;
}

nav.nav1 dl dt {
  display: inline-block;
  position: relative;
  font-weight: bold;
  border-left: solid 6px #b4b4b4;
  font-size: 14px;
  line-height: 14px;
  padding-left: 8px;
  padding-bottom: 1px;
  margin-bottom: 9px;
}

nav.nav1 dl dt img {
  display: none;
}

nav.nav1 dl dt svg {
  display: none;
}

nav.nav1 dl dd {
  padding-top: 13px;
  font-size: 12px;
  margin-top: -0.65em;
  margin-bottom: -0.35em;
  line-height: 2.2;
}

nav.nav1 dl dd:hover {
  color: #f18f00;
  transition: 0.3s;
}

nav.nav2 {
  width: 210px;
  padding-top: 40px;
  padding-bottom: 54px;
  padding-right: 35px;
}

nav.nav2 ul {
  display: block;
  border-bottom: 1px solid #e6e6e6;
}

nav.nav2 ul li {
  padding-bottom: 10px;
}

nav.nav2 ul li:last-child {
  padding-bottom: 30px;
}

nav.nav2 ul a {
  text-decoration: none;
  font-weight: bold;
  color: inherit;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 15px;
}

nav.nav2 ul a p {
  transition: 0.2s;
}

nav.nav2 ul a:hover p {
  color: #b4b4b4;
  transition: 0.3s;
}

nav.nav2 a img {
  border-radius: 2px;
  background-color: #b4b4b4;
  width: 38px;
  height: 38px;
}

div.max_759only {
display: none;
}

footer div.app {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-bottom: 52px;
}

footer div.app img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

footer div.fimg {
  display: flex;
  width: 100%;
  border-top: 1px solid #e6e6e6;
  padding: 30px 0 35px 0;
  justify-content: center;
  column-gap: 75px;
}

footer div.fimg a {
  display: block;
  color: inherit;
  text-decoration: none;
}

footer div.fimg a img {
  width: 260px;
  height: 60px;
}

footer div.fimg a p {
  text-align: center;
  line-height: 1.4;
  font-size: 12px;
  font-weight: bold;
  margin-top: 8px;
  margin-bottom: 20px;
}

div.footer2 {
  padding: 14px 0;
  border-top: 1px solid #e6e6e6;
  max-width: 1360px;
  margin: 0 auto;
}

footer div.footer2 div.f2,
footer div.footer2 div.f2 ul {
  display: flex;
  align-items: center;
}

div.f2 {
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 10px;
  margin: 0 auto;
  max-width: 1200px;
}

div.logo p {
  color: #3c3c3c;
}

div.f2 ul li {
  font-size: 12px;
  font-weight: normal;
  line-height: 18px;
  margin-right: 24px;
}

div.footer2 div.f2 ul li a {
  text-decoration: none;
}

div.f3 ul li a svg {
  width: 10px;
  height: 10px;
  padding-right: 6px;
}

.cls-5,
.cls-6 {
  fill: #8c8c8c;
}

.cls-6 {
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 45px;
}

div.f2 ul li a span {
  color: #3c3c3c;
}

div.f2 ul li a div.map {
  background-color: #e6e6e6;
  display: flex;
  align-items: center;
  font-weight: bold;
  padding: 7px 13px 6px;
}

/* ---マルチデバイス設定--- */


/* ---＜1200px～1100px＞パソコン４カラム中--- */
@media screen and (max-width: 1200px) {

  header ul.main li a span {
    font-size: 16px;
    letter-spacing: 0.06em;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* ---＜1100px～979px＞パソコン４カラム小--- */
@media screen and (max-width: 1100px) {
  header ul.main li a span {
    font-size: 15px;
    letter-spacing: 0.06em;
    padding-right: 12px;
    padding-left: 12px;
  }
}


/* ---＜979px～760px＞タブレット3カラム--- */
@media screen and (max-width: 979px) {

  li.hidden {
    display: block;
  }

  div.topics_contents ul {
    gap: 24px;
  }

  div.topics_contents ul li {
    width: calc((100% - 48px) / 3);
  }

  header {
    background-color: #f18f00;
    height: 144px;
    border-bottom: solid 1px #fff;
  }

  header div.header {
    flex-wrap: wrap;
    background-color: #f18f00;
  }

  header ul.main {
    order: 4;
    margin: 0 auto;
  }

  header ul.main li {
    line-height: 72px;
    white-space: nowrap;
    height: 72px;
    text-align: center;
  }

  header ul.main li a span {
    font-size: 16px;
    letter-spacing: 2px;
    padding-right: 22px;
    padding-left: 22px
  }

  header ul.main li a,
  header ul.sub li a {
    color: #ffddaa;
  }

  header ul.main li a:hover,
  header ul.sub li a:hover {
    color: #fff;
  }

  header ul.main li a:hover svg,
  header ul.sub li a:hover svg {
    fill: #fff;
  }

  header ul.sub li {
    border: none;
    width: 100%;
  }

  header ul.sub li a {
    flex-direction: row;
    align-items: center;
    color: #ffddaa;
    padding-right: 20px;
  }

  header ul.sub li a span {
    font-size: 10px;
    white-space: nowrap
  }

  header ul.sub svg {
    fill: #ffddaa;
    padding-right: 6px;
    width: 30px;
    height: 30px;
  }

  section.topics h2 div.topics_headline_main,
  section.pickup h2 div.pickup_headline_main,
  section.soft h2 div.soft_headline_main,
  section.newinfo h2 div.newinfo_headline_main {
    font-size: 16px;
  }

  div.topics_contents:before {
    width: 91px;
  }

  section.pickup ul:before {
    width: 106px;
  }

  section.soft .ul:before {
    width: 105px;
  }

  section.newinfo div.n2 ul li:first-child:before {
    width: 83px;
  }

  section.topics {
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }

  section.topics h2 {
    margin-bottom: 6px;
  }

  section.pickup h2 {
    margin-bottom: 6px;
  }

  section.soft h2 {
    margin-bottom: 6px;
  }

  section.newinfo h2 {
    margin-bottom: 6px;
  }

  section.newinfo div.n2 ul li a {
    padding-left: 0;
  }

  div.t12 p {
    font-size: 12px;
    line-height: 1.6;
    margin-top: -0.39em;
    margin-bottom: -0.21em;
  }

  div.social {
    font-size: 10px;
    line-height: 1;
    margin-top: 0em;
    margin-bottom: 0em;
    margin-right: 6%;
    margin-left: 2%;
  }

  footer div.fimg {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  footer div.fimg a {
    display: flex;
  }

  div.footercontent div.mc ul {
    display: block;
  }

  div.footercontent div.mc ul li {
    justify-content: flex-start;
    margin-bottom: 12px;
  }

  div.footercontent div.mb ul {
    display: block;
  }

  div.footercontent nav.nav nav.nav1 {
  display: flex;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 50px;
  width: 70%;
}

nav.nav1 dl {
 
  
  padding-bottom: 35px;
}

footer div.fimg {
display: block;

}

  footer div.fimg a {
    padding-bottom: 20px;
align-items: center;
  } 

  footer div.fimg a p {
    margin: 0 0 0 10px;
  }

}

/* ---＜759px～＞スマホ2カラム--- */
@media screen and (max-width: 759px) {

  header ul.main li a span {
    font-size: 8px;
  }

  div.topics_contents ul {
    gap: 13px;
  }

  div.topics_contents ul li {
    width: calc((100% - 13px) / 2);
    margin-bottom: 18px;
  }

  section.topics div.topics_button,
  section.newinfo div.newinfo_button {
    width: calc(9.5em + 92px);
  }

  section.topics {
    padding-left: 14px;
    padding-right: 14px;
  }

  div.topics_contents {
    padding-bottom: 26px;
  }

  li.hidden {
    display: none;
  }

  footer .footercontent div.ma {
    flex-wrap: wrap;
    font-size: 12px;
    padding: 28px 0 22px;
    width: 100%;
    border-bottom: 6px solid #e6e6e6;
  }

  footer div.ff {
    padding-left: 16px;
    padding-right: 16px;
  }

  footer .footercontent div.ma div.social {
    line-height: 1;
    margin-top: 0em;
    margin-bottom: 0em;
    padding-bottom: 16px;
    text-align: center;
    font-size: 12px;
  }

  footer .footercontent div.mc {
    padding: 24px 9px;
  }

    div.mc ul li a img {
    width: 52px;
    height: 52px;
  }

  div.footercontent div.mb {
    display: none;
  }

  nav.nav {
    display: flex;
    flex-direction: column;
  }

  nav.nav nav.nav1 {
    display: flex;
    flex-direction: column;
    width: 100%;
    font-size: 12px;
    order: 12;
  }


  nav.nav nav.nav1 dl {
    border-top: solid 1px #e6e6e6;
    width: 100%;
  }

  nav.nav nav.nav1 dl:last-child {
    border-bottom: solid 6px #e6e6e6;
    padding-bottom: 31px;
  }

  nav.nav nav.nav1 dl dt {
    padding: 16px 0 16px 14px;
    margin: 0 5px;
    border-left: none;
    display: flex;
    align-items: center;
  }

nav.nav nav.nav1 dl dt img {
  display: block;
  width: 32px;
  height: 32px;
  margin-right: 24px;
  background-color: aqua;
}

nav.nav nav.nav1 dl dt svg {
  margin-left: auto;
  display: block;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  min-width: 10px;
  min-height: 10px;
  max-width: 10px;
  max-height: 10px;
  fill: #8c8c8c;
}

  nav.nav nav.nav1 dl dd {
    display: none;
  }

  div.max_759only {
display: block;
}

div.max_759only a {
text-decoration: none;
color: inherit;
}


div.max_759only ul.max_759omly_1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
} 

div.max_759only ul.max_759omly_2 {
  display: flex;
  flex-wrap: wrap;
  width: 300px;
}

div.max_759only ul.max_759omly_2 li {
  width: 140px;
  text-align: left;
}

div.max_759only ul.max_759omly_2 li a p {
  font-size: 12px;
  
}

  footer div.fimg {
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  footer div.fimg a {
    display: block;
  }

nav.nav2 {
  display: none;
}

.footer2 div.f2 div.f3 ul li.f3_none {
  display: none;
}

}


/* ---画面固定設定--- */
div.z1,
div.z2 {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

div.z1 {
  z-index: 1;
  background-color: #fff;
}

div.z2 {
  z-index: 2;
  background-color: #fff;
}

div.pics {
  width: 100%;
  margin: 0 auto;
  line-height: 0;
}

div.pics img {
  margin-left: auto;
  margin-right: auto;
}


/* ---------------背景アニメーション----- */
* {
  margin: 0px;
  padding: 0px;
}

.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -100;
}

.circles li {
  position: absolute;
  display: block;
  list-style: none;
  background: rgba(255, 255, 255, 0);
  animation: animate 80s linear infinite;
  bottom: -150px;
}

.circles li:nth-child(1) {
  left: 25%;
  animation-delay: 0s;
  fill: rgba(155, 109, 57, 0.340);
}

.circles li:nth-child(2) {
  left: 10%;
  animation-delay: 4s;
  fill: burlywood;
}

.circles li:nth-child(3) {
  left: 70%;
  animation-delay: 5s;
}

.circles li:nth-child(4) {
  left: 40%;
  animation-delay: 13s;
  animation-duration: 50s;
}

.circles li:nth-child(5) {
  left: 65%;
  animation-delay: 10s;
}

.circles li:nth-child(6) {
  left: 75%;
  animation-delay: 3s;
}

.circles li:nth-child(7) {
  left: 35%;
  animation-delay: 7s;
}

.circles li:nth-child(8) {
  left: 50%;
  animation-delay: 15s;
  animation-duration: 45s;
}

.circles li:nth-child(9) {
  left: 20%;
  animation-delay: 2s;
  animation-duration: 35s;
}

.circles li:nth-child(10) {
  left: 85%;
  animation-delay: 0s;
}

.circles li:nth-child(11) {
  left: 25%;
  animation-delay: 0s;
}

.circles li:nth-child(12) {
  left: 15%;
  animation-delay: 0s;
  animation-duration: 50s;

}

.circles li:nth-child(13) {
  left: 90%;
  animation-delay: 0s;
}

.circles li:nth-child(14) {
  left: 95%;
  animation-delay: 0s;
}

.circles li:nth-child(15) {
  left: 5%;
  animation-delay: 20s;
  animation-duration: 45s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(-5000px) rotate(720deg);
    opacity: 0;
  }
}
