@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
/*
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}
*/

.loading {
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background: #333;
}

.loading__bar {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: 100%;
  transform: translate(-50%, -50%);
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 7777;
  background-color: rgba(0, 0, 0, 0.5);
}

.header.change-color {
  background: rgba(0, 0, 0, 0.9);
  transition: background 0.4s ease-out;
}

.header__inner {
  width: 100%;
  max-width: 1500px;
  height: inherit;
  padding: 0 30px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

.header__logo {
  width: 12.5rem;
  padding: 1.5rem 0.625rem;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    padding: 1rem 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    padding: 0.625rem;
  }
}

.header__logo img {
  width: 100%;
}

.nav__items {
  display: flex;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
    align-items: center;
}
@media screen and (max-width: 768px) {
  .nav__items {
    padding-bottom: 1.25rem;
    flex-wrap: wrap;
    -moz-column-gap: 0;
         column-gap: 0;
    justify-content: space-between;
  }
}

.nav__item a {
  font-size: 1rem;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
  display: block;
  padding: 1.5625rem 0.3125rem;
  position: relative;
  opacity: 1;
}

.nav__item.nav__mission a {
  color: #fff;
  background-color: #FE7313;
  padding: 0.5rem 0.3125rem;
  border-radius: 5px;
  transition: all 0.4s ease-out;
}
.nav__item.nav__mission a:hover {
  background-color: #ffcb2c;
}
@media screen and (max-width: 1024px) {
  .nav__item a {
    font-size: 0.8rem;
    padding: 1rem 0.3125rem;
  }
}
@media screen and (max-width: 768px) {
  .nav__item a {
    font-size: 0.8rem;
    padding: 1rem 0.3125rem;
  }
  
  .nav__item.nav__donate a {
    margin-bottom: 0.5rem;
  }
}

.nav__item.is-active a::after {
  content: "";
  display: block;
  width: 80%;
  height: 3px;
  background-color: #FE7313;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transition: width 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform: translateX(-50%);
  opacity: 1;
}

.nav__item a::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background-color: #FE7313;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transition: width 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform: translateX(-50%);
  opacity: 1;
}
.nav__item.nav__mission a::after {
  display: none;
}

.nav__item a:hover::after {
  width: 80%;
}

.sns {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns__x,
.sns__insta,
.sns__youtube {
  width: 1.5rem;
}

.nav__item .sns__x a:hover::after,
.nav__item .sns__insta a:hover::after,
.nav__item .sns__youtube a:hover::after {
  width: 0;
}

.sns__x img,
.sns__insta img,
.sns__youtube img {
  width: 100%;
}

.x0 {
  display: none;
}

.x1 {
  display: inline;
}

.x2 {
  fill: #FFFFFF;
  transition: all 0.5s ease 0s;
}

.sns__x-link:hover .x2 {
  fill: #FE7313;
}

.insta0 {
  display: none;
}

.insta1 {
  display: inline;
}

.insta2 {
  fill: #FFFFFF;
  transition: all 0.5s ease 0s;
}

.sns__insta-link:hover .insta2 {
  fill: #FE7313;
}

.youtube0 {
  fill: #FFFFFF;
  transition: all 0.5s ease 0s;
}

.youtube1 {
  display: none;
}

.youtube2 {
  display: inline;
}

.sns__youtube-link:hover .youtube0 {
  fill: #FE7313;
}

.hamburger {
  position: fixed;
  z-index: 8888;
  top: 20px;
  right: 15px;
  width: 25px;
  height: 14px;
}

.hamburger.is-active {
  top: 15px;
  right: 15px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.3s;
}

.hamburger span:nth-child(1) {
  width: 100%;
  top: 0;
  transition: color 0.3s;
}

.hamburger span:nth-child(2) {
  width: 100%;
  top: 8px;
  transition: background-color 0.3s;
}

.hamburger span:nth-child(3) {
  width: 17px;
  top: 16px;
  transition: opacity 0.3s;
}

.hamburger.is-active span:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
  background-color: #fff;
}

.hamburger.is-active span:nth-child(2) {
  top: 15px;
  transform: rotate(45deg);
  background-color: #fff;
}

.hamburger.is-active span:nth-child(3) {
  opacity: 0;
}

.drawer-menu {
  position: fixed;
  z-index: 7777;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #333;
  display: none;
}

.drawer-menu {
  -webkit-animation-name: drawerAnime;
          animation-name: drawerAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes drawerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes drawerAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.drawer-menu__inner {
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  width: 100%;
  height: inherit;
  padding: 50px 50px;
  overflow: hidden;
  overflow-y: scroll;
}

.drawer-menu__item {
  text-align: center;
  border-bottom: 1px solid #000;
  width: 100%;
}

.drawer-menu__item:first-child {
  border-top: 1px solid #000;
}

.drawer-menu__link {
  font-size: 14px;
  line-height: 1.172;
  font-weight: 400;
  color: #fff;
  padding: 12px;
  display: block;
}

.drawer-menu__item.sns {
  display: flex;
  -moz-column-gap: 4%;
       column-gap: 4%;
}

.drawer-menu__link.sns__x-link,
.drawer-menu__link.sns__insta-link,
.drawer-menu__link.sns__youtube-link {
  display: inline;
}

.circle-bg {
  position: fixed;
  z-index: 3;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #333;
  transform: scale(0);
  top: -50px;
  right: -50px;
  transition: all 1s;
}

.circle-bg.is-active {
  transform: scale(50);
}

.main-fv {
  width: 100%;
  /*height: 100vh;*/
  position: relative;
}

.main-fv h1 {
	color: #333;
  font-size: 2rem;
	mix-blend-mode: color-burn;
  margin-bottom: 1em;
}
@media screen and (max-width: 1024px) {
  .main-fv h1 {
    font-size: 1.6rem;
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 768px) {
  .main-fv h1 {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}

.main-fv__inner {
  width: 100%;
  height: inherit;
}

.main-fv__video {
  width: 100%;
  /*height: inherit;*/
  height: 100%;
  position: fixed;
  z-index: -10;
}

.main-fv__video video {
  width: 100%;
  height: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-fv__container {
  text-align: center;
  /*position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);*/
  width: 100%;
  padding: 150px 0 100px 0;
}
@media screen and (max-width: 1024px) {
  .main-fv__container {
    /*top: 62%;*/
    padding: 100px 0;
  }
}

.main-fv__title {
  width: 100%;
  height: 4.3125rem;
  max-width: 25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .main-fv__title {
    max-width: 20rem;
  }
}

.main-fv__title svg {
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 768px) {
  .main-fv__title svg {
    max-width: 12.5rem;
  }
}

.main-fv__title--animation {
  stroke: #000;
  stroke-dasharray: 2000;
  stroke-dashoffset: 0;
  stroke-width: 1;
  -webkit-animation: around 4s ease-in 0s;
  animation: around 4s ease-in forwards;
}

@-webkit-keyframes around {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  40% {
    stroke-dashoffset: 2000;
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #000;
  }
}
.main-fv__title--animation-fire {
  -webkit-animation: zoomin 0.3s ease-out forwards;
          animation: zoomin 0.3s ease-out forwards;
  transform-origin: 262px 85px;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  opacity: 0;
}

@-webkit-keyframes zoomin {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    fill: #fd6724;
  }
}
.main-fv__subtitle {
  font-size: 0.75rem;
  line-height: 1.8;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .main-fv__subtitle {
    margin-top: 0;
  }
}

.main-fv__text {
  font-size: 0.75rem;
  line-height: 1.8;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .main-fv__text {
    margin-top: 0.75rem;
  }
}

.main-fv__count-up {
  font-size: 1.875rem;
  line-height: 1.5;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .main-fv__count-up {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .main-fv__count-up {
    font-size: 1.2rem;
  }
}

.main-fv__button {
  margin-top: 1.25rem;
}

.main-fv__lang {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .main-fv__lang {
  margin-top: 1.5rem;
  }
}
.main-fv__lang li {
  margin: 0 0.5rem 1rem 0.5rem;
}
.main-fv__lang li a {
  display: inline-block;
  padding: 0.25rem;
  background: #fd6724;
  font-size: 0.7rem;
  color: #fff;
  transition: all 0.2s ease;
  border-radius: 5px;
}
.main-fv__lang li a:hover {
  background: #000;
}
@media screen and (max-width: 768px) {
  .main-fv__lang {
    margin-top: 1rem;
  }
  .main-fv__lang li {
    margin: 0 0.5rem 0.5rem 0.5rem;
  }
}

.main-fv__bannerbox {
  margin: 40px auto 0 auto;
  text-align: center;
}
.main-fv__bannerbox img {
  width: auto;
  height: auto;
  display: inline;
}
@media screen and (max-width: 768px) {
  .main-fv__bannerbox {
  margin: 20px 15px 0 15px;
  text-align: center;
  }
}

.download__bannerbox {
  margin: 40px auto 0 auto;
  text-align: center;
}
.download__bannerbox img {
  width: auto;
  height: auto;
  display: inline;
}
@media screen and (max-width: 768px) {
  .download__bannerbox {
  margin: 20px auto 0 auto;
  text-align: center;
  }
}

.download__adsbox {
  margin-top: 10px;
  height: 280px;
}
@media screen and (max-width: 768px) {
  .download__adsbox {
    margin-top: 10px;
    height: 358px;
  }
}


.main-sponsor {
  padding: 1.25rem;
  background-color: #000;
  text-align: center;
  position: relative;
  z-index: 6666;
}

.main-sponsor__title {
  font-size: 1.125rem;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
}

.main-sponsor__swiper {
  margin-top: 1.25rem;
}

.main-sponsor__swiper .swiper-wrapper {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.main-sponsor__swiper .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  content: "";
  display: block;
  width: 1.375rem;
  height: 1.375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #c4bbbc;
  border-radius: 50%;
}

.swiper-button-next::before {
  top: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  top: 50%;
  left: 61%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.swiper-button-next::after {
  top: 50%;
  left: auto;
  right: 20%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.main-sponsor__text {
  text-align: center;
  margin-top: 1.25rem;
}

.main-sponsor__text-link {
  font-size: 0.75rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #fff;
  border-bottom: 1px solid #fff;
}

@-moz-document url-prefix() {
  .swiper-button-next,
.swiper-button-prev {
    display: none !important;
  }
}
.main-fa {
  padding-top: 15rem;
  padding-bottom: 15rem;
  text-align: center;
  position: relative;
  z-index: 5555;
	background: url("/fa_v2/images/main_bg3.jpg") no-repeat 50% 50%;
	background-size: cover;
}
@media screen and (max-width: 768px) {
  .main-fa {
	padding-top: 10rem;
	padding-bottom: 3rem;
  }
}

.main-fa__container {
  position: relative;
}

.img-switch {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9; /* 画像の縦横比に合わせる */
    margin: auto;
    overflow: hidden;
  margin-top: 2rem;
}
.img-switch img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像を親要素にフィット */
    display: none;
}
.img-switch img:first-child {
    display: block;
}
@media (max-width: 768px) {
    .img-switch {
        max-width: 100%;
    }
}

.main-fa__img {
  position: relative;
  z-index: 5555;
}

#stage {
position: relative;
max-width:1000px;
margin: 2.5rem auto 0 auto;
background:#ddd;
}
@media screen and (max-width: 768px) {
	#stage {
	margin: 1rem auto 0 auto;
	}
}
.pic {
position: absolute;
}
.pic img {
width: 100%;
height: auto;
opacity:0;
animation: imgTrans 15s infinite;
}
#photo1 img {
animation-delay: 0s;
}
#photo2 img {
animation-delay: 5s;
}
#photo3 img {
animation-delay: 10s;
}
@keyframes imgTrans {
0% { opacity:0; }
30% { opacity:1; }
35% { opacity:1; }
50% { opacity:0; }
100% { opacity:0; }
}

/*英語2種類*/
.pic-en {
position: absolute;
}
.pic-en img {
width: 100%;
height: auto;
opacity:0;
animation: imgTransEn 10s infinite;
}
#photo1-en img {
animation-delay: 0s;
}
#photo2-en img {
animation-delay: 5s;
}
@keyframes imgTransEn {
0% { opacity:0; }
15% { opacity:1; }
50% { opacity:1; }
70% { opacity:0; }
100% { opacity:0; }
}


.main-fa__img-text {
  font-size: 1.25rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  margin-top: 3rem;
  position: relative;
  z-index: 5555;
}
@media screen and (max-width: 768px) {
  .main-fa__img-text {
  	margin-top: 1rem;
    font-size: 1rem;
	  text-align: left;
  }
}

.main-fa__body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  row-gap: 1.25rem;
  margin-top: 5rem;
  position: relative;
  z-index: 5555;
}
@media screen and (max-width: 768px) {
  .main-fa__body {
  	margin-top: 2rem;
    grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
    row-gap: 2rem;
  }
}

.icon__img {
  width: 100%;
  max-width: 7.5rem;
  margin-right: auto;
  margin-left: auto;
}

.icon__img img {
  width: 100%;
  height: inherit;
  -o-object-fit: contain;
     object-fit: contain;
}

.icon__img-text {
  font-size: 1.25rem;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  word-wrap: break-word;
	margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .icon__img-text {
    font-size: 0.75rem;
  }
}

.icon__img-text--large {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .icon__img-text--large {
    font-size: 1.25rem;
  }
}

.button.main-fa__button {
  margin-top: 5rem;
  z-index: 5555;
}

.main-fa__bg1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4444;
}

.main-fa__bg2 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3333;
}

.main-fa__bg img {
  width: 100%;
  height: 104%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-fa__bg2 img {
  height: 120%;
}

.main-se {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  max-height: 50rem;
  position: relative;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  z-index: 6666;
}

.main-se__video {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  max-height: 50rem;
}

.main-se__video video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 800px;
  max-height: 50rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1024px) {
	.main-se {
	  min-height: 30rem;
	}
	.main-se__video {
	  min-height: 30rem;
	}
	.main-se__video video {
    height: 600px;
    min-height: 600px;
	}
}

.main-se__body {
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  background: rgba(0, 0, 0, 0.7);
  height: 95%;
  width: 45%;
  padding: 2.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .main-se__body {
    padding: 2.5rem;
  height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main-se__body {
    padding: 3rem 1.875rem;
	top: 0;
	left: 0;
  height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .main-se__body {
    padding: 3rem 1.875rem;
    width: 100%;
	top: 0;
	left: 0;
  height: 100%;
  }
}

.main-se__title {
  font-size: 2rem;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .main-se__title {
    font-size: 1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .main-se__title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 375px) {
  .main-se__title {
    font-size: 1.2rem;
  }
}

.main-se__text {
  font-size: 1.125rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #fff;
  max-width: 50rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 1024px) {
  .main-se__text {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .main-se__text {
    font-size: 1rem;
  }
}

.main-se__logo {
  width: 65%;
  max-width: 31.25rem;
  margin-top: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .main-se__logo {
    margin-top: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .main-se__logo {
    max-width: 18.75rem;
    margin-top: 0.5rem;
  }
}

.main-se__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-se__button {
  text-align: center;
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
}

.main-se__button-link {
  color: #fff;
  display: block;
  padding: 15px 10px;
  border: 2px solid #007AFF;
  text-align: center;
  font-size: 1.25rem;
	background-color: rgba(0,0,0,.5);
	border-radius: 40px;
  transition: background-color 0.3s ease;
}

.main-se__button-link:hover {
  background-color: rgba(0, 122, 255, 0.3);
}

.main-se__bn {
  width: 80%;
  max-width: 300px;
  margin-top: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
.main-se__bn img {
  width: 100%;
  height: auto;
}

.main-brush {
	padding-top: 10rem;
	padding-bottom: 7.5rem;
	background-image: url("../images/index_brush_bg1.jpg"), url("../images/index_brush_bg2.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: 0 0, right 0;
	background-attachment: fixed;
	position: relative;
	background-color: #fff;
	overflow: hidden;
	z-index: 7500;
	position: relative;
}
@media screen and (max-width: 768px) {
  .main-brush {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.main-brush__bg {
  width: 41%;
  position: absolute;
  top: -12.5rem;
  right: 0;
  z-index: 1000;
}
@media screen and (max-width: 1024px) {
  .main-brush__bg {
    top: -6.875rem;
  }
}
@media screen and (max-width: 768px) {
  .main-brush__bg {
    width: 61%;
  }
}
@media screen and (max-width: 375px) {
  .main-brush__bg {
    top: -2.5rem;
  }
}

.main-brush__container {
  margin-top: 5rem;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  position: relative;
  z-index: 2000;
}
@media screen and (max-width: 768px) {
  .main-brush__container {
    margin-top: 0.625rem;
  }
}

.media {
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .media {
    display: block;
  }
}

.media:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .media:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.media:nth-child(even) {
  flex-direction: row-reverse;
}

.media .media__bg {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: -3.75rem;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .media .media__bg {
    margin-top: -1.875rem;
    display: none;
  }
}

.media:nth-child(3) .media__bg {
  width: 30%;
  left: auto;
  right: 0;
}

.media .media__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.media__img {
  width: 50%;
}
.media__img video {
  width: 100%;
	height: auto;
}
@media screen and (max-width: 768px) {
  .media__img {
    width: 100%;
  }
}

.media__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.media__body {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0.625rem 5rem;
  z-index: 2000;
}
@media screen and (max-width: 768px) {
  .media__body {
    padding: 2rem;
  }
}

.media__contents {
  width: 100%;
  max-width: 50rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.media__title,
.card__title {
  font-size: 2rem;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
}
.card__title {
	margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .media__title,
.card__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 375px) {
  .media__title,
.card__title {
    font-size: 1.5rem;
  }
}

.media__text,
.card__text {
  font-size: 1.25rem;
  line-height: 1.8;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .media__text,
.card__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .media__text,
.card__text {
    font-size: 1rem;
  }
}

.main-brush__body {
  max-width: 62.5rem;
  margin-top: 5rem;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  -moz-column-gap: 6%;
       column-gap: 6%;
  justify-content: center;
  row-gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .main-brush__body {
    margin-top: 1.875rem;
  }
}

.main-brush__button {
  margin-top: 5rem;
}

.main-function {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
  background-color: #333;
}

.main-function__lists {
  margin-right: auto;
  margin-left: auto;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 3%;
       column-gap: 3%;
  row-gap: 2.5rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .main-function__lists {
    margin-top: 3.125rem;
    grid-template-columns: 1fr 1fr;
  }
}

.main-function__item {
	position: relative;
}
.main-function__item-text {
  font-size: 1rem;
  color: #fff;
  text-align: center;
  margin-top: 0.625rem;
}

.main-function__item-play {
	position: absolute;
	width: 100px;
	height: auto;
	opacity: 0.6;
	cursor: pointer;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
	transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
	.main-function__item-play {
		width: 70px;
	}
}
.main-function__item:hover .main-function__item-play {
	opacity: 0.3;
}
.main-function__item-img {
  cursor: pointer;
  width: 100%;
}

.main-function__item-close {
  width: 100vw;
  height: 100vh;
  padding-left: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  transition: 0.5s;
  cursor: pointer;
  z-index: 9999;
}

.main-function__item-player {
  width: 100%;
  display: flex;
  justify-content: center;
}

.close-button::before,
.close-button::after {
  content: "";
  position: fixed;
  top: 10%;
  right: 10%;
  width: 5px;
  height: 30px;
  background: #ccc;
  opacity: 1;
}

.close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.main-function__item-close.close {
  opacity: 0;
  visibility: hidden;
}

.main-function__item-close.open {
  opacity: 1;
  visibility: visible;
}

.main-function__item-close iframe {
  width: 60vw;
  height: 55vh;
  display: block;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .main-function__item-close iframe {
    width: 90vw;
    height: 55vh;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.main-function__button {
  margin-top: 5rem;
}

.main-education {
  background: #000 url(../images/bg_kyoiku.jpg) no-repeat 0 50%;
  background-size: cover;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
	text-align: center;
}
@media screen and (max-width: 768px) {
  .main-education {
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}

.title.main-education__title {
  color: #fff;
  line-height: 1.2;
	display: inline-block;
	background: rgba(0,0,0,.5);
	padding: 5px;
}

.main-education__subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
	margin-top: 2rem;
}

.main-education__subtitle span {
	background: rgba(0,0,0,.5);
}

.main-education__lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  row-gap: 0.625rem;
  margin-top: 2.5rem;
}

.main-education__button {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .main-education__button {
    margin-top: 1.875rem;
  }
}

.main-work {
  padding-top: 20rem;
  padding-bottom: 20rem;
  background: url("../images/creator_bg202503.jpg") no-repeat 50% 50%;
  background-attachment: fixed;
  background-size: cover;
}
.main-work .main-work__title {
	color: #333;
	mix-blend-mode: color-burn;
}
@media screen and (max-width: 768px) {
  .main-work {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.main-work__button {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .main-work__button {
    margin-top: 1.875rem;
  }
}

/*indexクリエイターズ*/
.main-creator {
  background: url("../images/index_creator_bg.jpg") no-repeat 50% 50%;
  background-size: cover;
  padding: 10rem 0 16rem 0;
}
.main-creator__inner {}
.main-creator__inner p {
  margin-top: 40px;
  color: #fff;
  text-align: center;
  font-size: 20px;
}
.main-creator-navigation {
  margin-top: 40px;
}
.main-creator__menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  grid-gap: 4%;
}
.main-creator__menu__item {
  width: 48%;
  margin-bottom: 40px
}
.main-creator__menu__item a {
  display: block;
  padding: 30px 0;
  text-align: center;
}
.main-creator__menu__hayama {
  background: url("../images/creator_illust_hayama_1200900.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.main-creator__menu__ri-rin {
  background: url("../images/creator_illust_ri-rin.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.main-creator__menu__fjsmu {
  background: url("../images/creator_illust_fjsmu.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.main-creator__menu__item a h2 {
  display: inline-block;
  background: rgba(0,0,0,.8) url("../images/icon_arrow_right.png") no-repeat 98% 50%;
  background-size: 20px;
  padding: 20px 40px;
  color: #fff;
  font-size: 24px;
}
.main-creator__menu__item a h2 span {
  display: block;
  font-size: 14px;
}


@media screen and (max-width: 768px) {
  .main-creator {
    padding: 5rem 0 8rem 0;
  }
  .main-creator__inner {}
  .main-creator__inner p {
    text-align: left;
    font-size: 18px;
  }
  
  .main-creator-navigation {
    margin-top: 40px;
  }
  .main-creator__menu {
    display: block;
  }
  .main-creator__menu__item {
    width: 100%;
    margin-bottom: 20px;
  }
  .main-creator__menu__item a {
    display: block;
    padding: 20px 0;
  }
  .main-creator__menu__item a h2 {
    width: 70%;
    padding: 10px 0;
    font-size: 20px;
  }
  .main-creator__menu__item a h2 span {
    font-size: 12px;
  }
}

/*new_indexクリエイターズ*/
.main-creator {
  background: url("../images/index_creator_bg.jpg") no-repeat 50% 50%;
  background-size: cover;
  padding: 10rem 0 4rem 0;
}
.main-creator__inner {}
.main-creator__inner p {
  margin-top: 40px;
  color: #fff;
  text-align: center;
  font-size: 20px;
}
.new_main-creator-navigation {
  padding: 40px 0 0 0;
}
.new_main-creator__menu {
  width: 100%;
  margin: 0 auto;
}
.new_main-creator__menu__item {
  width: 100%;
  height: 150px;
  position: relative;
  margin-bottom: 40px;
}
.new_main-creator__menu__item a {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: 20px;
  box-shadow: 4px 4px 8px rgba(0,0,0,.3);
  position: relative;
  transition: box-shadow .3s;
}
.new_main-creator__menu__item a:hover {
  box-shadow: 0 0 4px rgba(0,0,0,.3);
}
.new_main-creator__menu__katou {
  background: url("../images/creator_btn_katou_sp.jpg") no-repeat 50% 0;
  background-size: cover;
}
.new_main-creator__menu__motojima {
  background: url("../images/creator_btn_motojima_sp.jpg") no-repeat 50% 0;
  background-size: cover;
}
.new_main-creator__menu__hayama {
  background: url("../images/creator_btn_hayama_sp.jpg") no-repeat 50% 0;
  background-size: cover;
}
.new_main-creator__menu__ri-rin {
  background: url("../images/creator_btn_ririn_sp.jpg?20241204") no-repeat 50% 0;
  background-size: cover;
}
.new_main-creator__menu__fjsmu {
  background: url("../images/creator_btn_fjsm_sp.jpg") no-repeat 50% 0;
  background-size: cover;
}
.new_main-creator__menu__item h2 {
  width: 230px;
  background-color: rgba(0,0,0,.8);
  background-image: url("../images/icon_arrow_right.png");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px 0 5px 15px;
  transition: all .3s;
  border-radius: 10px 0 20px 0;
  font-size: 18px;
}
.new_main-creator__menu__item a:hover h2 {
  background-color: rgba(0,0,0,.8);
  background-image: url("../images/icon_arrow_right.png");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: right 5px top 50%;
}
.new_main-creator__menu__item span {
  display: block;
  font-size: 14px;
}

@media screen and (min-width: 768px) {
 .new_main-creator-navigation {
    padding: 60px 20px;
  }
  .new_main-creator__menu {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .new_main-creator__menu__item {
    width: calc(33.33% - 40px);
    height: 500px;
    position: relative;
    margin-bottom: 0;
  }
  .new_main-creator__menu__item a {
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 4px 4px 8px rgba(0,0,0,.3);
    position: relative;
    transition: box-shadow .3s;
  }
  .new_main-creator__menu__item a:hover {
    box-shadow: 0 0 4px rgba(0,0,0,.3);
  }
  .new_main-creator__menu__katou {
    background: url("../images/creator_btn_katou.jpg") no-repeat 50% 0;
  }
  .new_main-creator__menu__motojima {
    background: url("../images/creator_btn_motojima.jpg") no-repeat 50% 0;
  }
  .new_main-creator__menu__hayama {
    background: url("../images/creator_btn_hayama.jpg") no-repeat 50% 0;
  }
  .new_main-creator__menu__ri-rin {
    background: url("../images/creator_btn_ririn.jpg") no-repeat 50% 0;
  }
  .new_main-creator__menu__fjsmu {
    background: url("../images/creator_btn_fjsm.jpg") no-repeat 50% 0;
  }
  .new_main-creator__menu__item h2 {
    width: 80%;
    background-color: rgba(0,0,0,.8);
    background-image: url("../images/icon_arrow_right.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0;
    border-radius: 0;
    transition: all .3s;
  }
  .new_main-creator__menu__item a:hover h2 {
    background-color: rgba(0,0,0,.8);
    background-image: url("../images/icon_arrow_right.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: right 5px top 50%;
  }
}
















.footer {
  text-align: center;
  width: 100%;
  padding: 5rem 0 2.5rem 0;
  background-color: #333;
}

.footer-text {
  font-size: 1rem;
  line-height: 1.6;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: #fff;
}

.footer-text--small {
  font-size: 0.875rem;
}

.footer-text--bold {
  font-weight: 700;
}

.footer-text--large {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__logo {
  width: 18.75rem;
  margin-top: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}

.footer__logo img {
  width: 100%;
}

.footer__language {
  margin-top: 3.75rem;
}

.footer-link {
  color: #FE7313;
  border-bottom: 1px solid #FE7313;
}

.footer__company {
  margin-top: 3.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer__address {
  font-style: italic;
  margin-top: 0.625rem;
}

.footer__service {
  margin-top: 3.75rem;
}

.footer__service-items {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .footer__service-items {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .footer__service-item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.footer__copy {
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #fff;
  display: block;
  margin-top: 2.5rem;
}

.download-download {
  /*padding-top: 3.75rem;*/
  padding-top: 0rem;
}
@media screen and (max-width: 768px) {
  .download-download {
    /*padding-top: 1.875rem;*/
    padding-top: 0rem;
  }
}

.download-download__container {
  max-width: 800px;
  margin: 0 auto;
}


.download-download__body__main {
  margin-top: 3.125rem;
}

.download-download__body {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 6%;
       column-gap: 6%;
  row-gap: 1.25rem;
  margin: 1rem auto 0 auto;
  max-width: 800px;
}
.download-download__body__box {
  width: 47%;
}

.download-download__button {
  width: 100%;
  height: 100%;
  background-color: #ff166e;
  border: 5px solid #000;
  border-radius: 20px;
  text-align: center;
  transition: all 0.2s ease;
}
.download-download__button:hover {
  background-color: #f8639b;
}
@media screen and (max-width: 768px) {
  .download-download__button {
    width: 100%;
  }
}

.download-button__link {
  font-size: 1.5rem;
  color: #fff;
  width: 100%;
  padding: 0.9375rem 0.9375rem 0.9375rem 4rem;
  display: inline-block;
  position: relative;
}
.download-button__link.download-button-icon-s {
  font-size: 1.2rem;
  padding: 0.6rem 0.9375rem 0.6rem 2rem;
}
/*
@media screen and (max-width: 1024px) {
  .download-button__link,
.download-last-button__link {
    font-size: 1.125rem;
    padding: 0.625rem 0.625rem 0.625rem 3.125rem;
  }
}
*/

.download-button__link::before {
  content: "";
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 0.9375rem;
  transform: translateY(-50%);
}
.download-button__link.download-button-icon-s::before,
.download-button__link.download-button-icon-s::before,
.download-button__link.download-button-icon-s::before,
.download-button__link.download-button-icon-s::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
}

.download-button-mac::before {
  background-image: url("../images/logomark_mac.png");
}
.download-button-win::before {
  background-image: url("../images/logomark_win.png");
}
.download-button-se::before {
  background-image: url("../images/logomark_se.png");
}
.download-button-linux::before {
  background-image: url("../images/logomark_linux.png");
}
@media screen and (max-width: 1024px) {
  .download-button__link::before,
  .download-last-button__link::before {
    width: 1.875rem;
    height: 1.875rem;
    left: 0.9375rem;
  }
}

.download-button__link--large {
  font-size: 1.875rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .download-button__link--large {
    font-size: 1.3rem;
  }
}

.download-button__link--small {
  font-size: 0.9rem;
}

@media screen and (max-width: 1024px) {
  .download-button__link--small {
    font-size: 0.875rem;
  }
  .download-button__link--small--steam {
    width: 60%;
    margin-top: 10px;
  }
  .download-button__link--large--steam {
    font-size: 20px;
  }
}

.download-download__last-button {
  margin-top: 1rem;
  background-color: #ff166e;
  background-image: url(../images/download_se_ui_ja2.jpg);
  background-repeat: no-repeat;
  background-position: right -10% top 50%;
  background-size: 40%, 100%;
  text-align: left;
}
.download-download__last-button-en {
  background-image: url(../images/download_se_ui_en2.jpg);
}
.download-button-se {
  padding-left: 5rem;
}
@media screen and (max-width: 768px) {
  .download-download__last-button {
    background-image: url(../images/download_se_ui_sp.jpg);
    background-position: right -240% top 50%;
    background-size: 80%, 100%;
    text-align: left;
  }
  .download-button-se {
    padding-left: 3rem;
    line-height: 1.2;
  }
}

.download-last-button__link {
  min-height: 4.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-navigation-marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .download-navigation-marginTop {
    margin-top: 1.875rem;
  }
}

.download-advertise {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .download-advertise {
    margin-top: 1.875rem;
  }
}

.download-windows-marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .download-windows-marginTop {
    margin-top: 1.875rem;
  }
}

.download-container {
  padding: 10px;
  border: 4px solid #ccc;
  background: #fff;
}

.download-container:not(:first-child) {
  margin-top: 1.25rem;
}

.download-title {
  font-size: 1.25rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  text-align: center;
  color: #999;
}
@media screen and (max-width: 768px) {
  .download-title {
    font-size: 0.75rem;
  }
}

.download-lists {
  margin-top: 0.9375rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 4%;
       column-gap: 4%;
}

.download-lists-1 {
  display: block;
}

.download-item__title {
  font-size: 1rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 0.25rem 0.3125rem;
  background-color: #999;
}
@media screen and (max-width: 768px) {
  .download-item__title {
    font-size: 0.875rem;
  }
}

.download-item__text {
  text-align: center;
  margin-top: 0.125rem;
}

.download-item__text-link {
  font-size: 1rem;
  color: #999;
  padding: 0.3125rem 0.3125rem 0.3125rem 0.9375rem;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 768px) {
  .download-item__text-link {
    font-size: 0.875rem;
  }
}

.download-item__text-link::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-35%);
  background-image: url(../images/download-icon.png);
  background-repeat: no-repeat;
}
.download-item__text-link.download-item__text-link__x64,
.download-item__text-link.download-item__text-link__arm {
  padding-left: 22px;
}
.download-item__text-link.download-item__text-link__x64::before {
  left: 0;
  background-image: url("../images/icon_x64.png");
  background-size: 16px;
}
.download-item__text-link.download-item__text-link__arm::before {
  left: 0;
  background-image: url("../images/icon_arm.png");
  background-size: 16px;
}
.download-dll-p {
  font-size: 14px;
  color: #666;
  margin-top: 10px
}

.download-version-marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .download-version-marginTop {
    margin-top: 1.875rem;
  }
}

.download-item__body {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2%;
       column-gap: 2%;
  justify-content: center;
}

.download-faq-marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .download-faq-marginTop {
    margin-top: 1.875rem;
  }
}

.download-faq__lists {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 6%;
       column-gap: 6%;
  row-gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .download-faq__lists {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
  }
}

.faq-item__title {
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  background: url("../images/icon_fire.png") no-repeat 0 50%;
  background-size: 24px;
  padding-left: 30px;
}

.faq-item__text {
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 300;
  margin-top: 1.25rem;
}

.download-terms-marginTop {
  margin-top: 3.75rem;
}
.download-terms-marginBottom {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .download-terms-marginTop {
    margin-top: 1.875rem;
  }
}

.download-terms__title {
  font-size: 1.625rem;
  line-height: 1.1;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #333;
  text-align: center;
}

.download-terms__container {
  padding: 1.25rem 1.25rem 0.9375rem 1.25rem;
  margin-top: 1.25rem;
  border: 3px double #ccc;
}

.download-terms__lists {
  margin-top: 1.25rem;
}

.terms-item {
  color: #333;
  list-style-type: decimal;
  margin-top: 1.25rem;
  margin-left: 1.25rem;
}

.download-terms__text,
.terms-item__title,
.terms-item__text {
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: #333;
}

.terms-item__item {
  list-style-type: upper-roman;
  margin-left: 1.25rem;
}

.download-history__marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .download-history__marginTop {
    margin-top: 1.875rem;
  }
}

.download-history {
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .download-history {
    padding-bottom: 1.875rem;
  }
}

.download-history__title {
  font-size: 1.625rem;
  line-height: 1.1;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #333;
  text-align: center;
}

.download-history__container {
  margin-top: 1.25rem;
}

.download-history__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.download-history__subtitle {
  font-size: 1.25rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
}

.download-history__lists {
  padding: 1.25rem;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}

.download-history__lists li {
  list-style-type: disc;
  margin-left: 1.25rem;
}

.download-history__item {
  list-style-type: disc;
  margin-left: 1.25rem;
}

.history-accordion__title {
  text-align: center;
  background-color: #ccc;
  border: 1px solid #ccc;
  cursor: pointer;
}

.history-accordion__title-span {
  font-size: 1.125rem;
  color: #333;
  padding: 0.625rem 0.3125rem 0.625rem 1.875rem;
  display: inline-block;
  position: relative;
}

.history-accordion__title-span::before {
  content: "";
  display: block;
  background-image: url(../images/accordion-icon_close.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 30%;
  left: 0.125rem;
  transition: transform 0.3s ease-in-out;
}

.history-accordion__title-span.open::before {
  transform: rotate(-180deg);
}

.history-accordion__content {
  padding: 1.25rem;
  border: 1px solid #ccc;
  display: none;
  max-height: 31.25rem;
  overflow: hidden;
  overflow-y: scroll;
}

.history-content__item:not(:first-child) {
  margin-top: 1.25rem;
}

.history-content__mark {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
  padding: 0.3125rem;
  display: inline-block;
  background-color: #fd6724;
}

.history-content__title {
  font-size: 1rem;
  line-height: 1.1;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #666;
  margin-top: 0.3125rem;
}

.history-content__sublists {
  margin-top: 0.3125rem;
}

.history-content__sublists li {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  color: #666;
  list-style-type: disc;
  margin-left: 1.25rem;
}

.history-content__sublists li:not(:first-child) {
  margin-top: 0.3125rem;
}

.material-release__title {
  margin-top: 1.25rem;
}

.material-release__container {
  margin: 3rem auto 0 auto;
  max-width: 1000px;
}
 
.material-release__container video {
     width: 100%;
     height: 100%;
}

.material-navigation-marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .material-navigation-marginTop {
    margin-top: 1.875rem;
  }
}

.material-advertise {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .material-advertise {
    margin-top: 1.875rem;
  }
}

.material-brush-marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .material-brush-marginTop {
    margin-top: 1.875rem;
  }
}

.material-brush__text {
  font-size: 1.125rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  padding: 1rem;
  background: #eee;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .material-brush__text {
  text-align: left;
  }
}

.material-brush__title {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .material-brush__title {
    margin-top: 1.875rem;
  }
}

.material-brush__subtitle {
  font-size: 16px;
  text-align: center;
  margin-top: 0.5rem;
}
.material-brush__subtitle:first-child {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .material-brush__subtitle {
    margin-top: 1.875rem;
  }
}

.material-brush__container {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .material-brush__container {
    margin-top: 1rem;
  }
}

.material-brush__lists {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 4%;
       column-gap: 4%;
  row-gap: 3rem;
}
@media screen and (max-width: 768px) {
  .material-brush__lists {
    grid-template-columns: 1fr 1fr;
  }
}

.material-brush__item {
  display: flex;
  flex-direction: column;
}

.brush-item__img {
  width: 100%;
  /*height: 100%;
  max-height: 6.25rem;*/
}

.brush-item__img img {
  width: 100%;
  height: auto;/*100%*/
  /*-o-object-fit: cover;
     object-fit: cover;*/
}

.material-brush__item h3 {
  font-size: 1.125rem;
  line-height: 1.1;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #333;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .material-brush__item h3 {
  font-size: 1rem;
  }
}


.material-brush__item p {
  font-size: 0.875rem;
  line-height: 1.4;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
  margin-top: 0.625rem;
  flex-grow: 1;
}

.material-request-marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .material-request-marginTop {
    margin-top: 1.875rem;
  }
}

.material-request__subtitle {
  font-size: 1.125rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  text-align: center;
  margin-top: 1.875rem;
  color: #333;
}
@media screen and (max-width: 768px) {
  .material-request__subtitle {
    margin-top: 1.25rem;
  }
}

.material-request__subtitle--small {
  font-size: 0.8125rem;
}

.material-request__text {
  font-size: 0.875rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
  text-align: center;
  margin-top: 0.625rem;
}

.material-request__container {
  text-align: center;
  margin-top: 0.625rem;
}

.request-form__input {
  font-size: 0.875rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
  display: inline-block;
  width: 80%;
  max-width: 18.75rem;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.request-form__button {
  font-size: 0.875rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #fff;
  text-align: center;
  padding: 6px 12px;
  display: inline-block;
  cursor: not-allowed;
  box-shadow: none;
  opacity: 0.65;
  background-color: #337ab7;
  border-color: #2e6da4;
  border-radius: 4px;
}

.material-flow-marginTop {
  margin-top: 3.75rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .material-flow-marginTop {
    margin-top: 1.875rem;
  }
}

.inner.material-flow__inner {
  max-width: 1000px;
}

.material-flow__lists {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .material-flow__lists {
    margin-top: 1.875rem;
  }
}

.material-flow__item:not(:first-child) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
}

.material-flow__subtitle {
  text-align: center;
}
.material-flow__subtitle span {
  font-size: 1.5rem;
  line-height: 1.2;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #fff;
  background: #333;
  padding: 10px 20px;
}

.flow-item__container {
  display: flex;
  -moz-column-gap: 6%;
       column-gap: 6%;
  margin-top: 1.875rem;
}
@media screen and (max-width: 414px) {
  .flow-item__container {
    display: block;
  }
}

.flow-item__img {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 414px) {
  .flow-item__img {
    width: 100%;
  }
}

.flow-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.flow-item__text {
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
  flex: 1;
  margin-top: 20px;
}
  
.flow-item__text span {
  display: block;
  font-size: 15px;
  margin-top: 20px;
}

@media screen and (max-width: 414px) {
  .flow-item__text {
    margin-top: 0.9375rem;
  }
}

.report-info-marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .report-info-marginTop {
    margin-top: 1.875rem;
  }
}

.inner.report-info__inner {
  max-width: 1000px;
}

.report-info__text {
  font-size: 1.125rem;
  line-height: 1.8;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
}

.report-info__title {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .report-info__title {
    margin-top: 1.875rem;
  }
}

.sub-title.report-info__title {
  justify-content: start;
}

.report-info__text--small {
  font-size: 1rem;
}

.report-info__lists {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .report-info__lists {
    margin-top: 1.25rem;
  }
}

.report-info__item {
  border: 4px solid #fd6724;
}

.report-info__item:not(:first-child) {
  margin-top: 1.25rem;
}

.info-item__link {
  font-size: 1.125rem;
  line-height: 1.8;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #fd6724;
  padding: 0.875rem 0.875rem 0.875rem 2rem;
  display: block;
  position: relative;
  background-color: #fff;
  transition: background-color 0.2s ease;
}

.info-item__link:hover {
  background-color: #FFCBCB;
  transition: background-color 0.2s ease;
}

.info-item__link::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 10px;
}

.info-item__text {
  font-size: 1.125rem;
  line-height: 1.8;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  padding: 0.875rem 0.875rem 0.875rem 2rem;
  position: relative;
  background-color: #fff;
  transition: background-color 0.2s ease;
}

.report-advertise {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .report-advertise {
    margin-top: 1.875rem;
  }
}

.report-form {
  margin-top: 3.75rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .report-form {
    margin-top: 1.875rem;
  }
}

.inner.report-form__inner {
  max-width: 1000px;
}

.sub-title.report-form__title {
  justify-content: start;
}

.report-form__dl {
  display: flex;
  -moz-column-gap: 4%;
       column-gap: 4%;
  align-items: center;
  margin-top: 1.25rem;
}

.report-form__dt {
  width: 30%;
  text-align: right;
}

.report-form__body {
  flex: 1;
  display: flex;
  -moz-column-gap: 4%;
       column-gap: 4%;
}

.report-form__dd {
  width: auto;
}

.report-form__dd-select {
  position: relative;
}

.report-form__dd-select::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  transform: translateY(-20%);
  border: 6px solid transparent;
  border-top: 7px solid #000;
  display: inline-block;
}

.report-form__select {
  font-size: 1.125rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: #333;
  width: 100%;
  min-width: 210px;
  padding: 15px;
  border: 1px solid #E2E2E2;
}

.report-form__dl input[type=text] {
  padding: 5px;
  width: 100%;
  max-width: 400px;
  margin-top: 10px;
  padding: 1.25rem;
  border: 1px solid #ccc;
}

.check-box {
  font-size: 1.125rem;
  color: #333;
  font-weight: 400;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  position: relative;
  padding: 0 0 0 20px;
  display: inline-block;
}

.check-box::before,
.check-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.check-box::before {
  width: 10px;
  height: 10px;
  left: 5px;
  border: 1px solid #333;
  background-color: #fff;
}

.check-box::after {
  left: 7.5px;
  width: 5px;
  height: 5px;
  background-color: #fd6724;
  opacity: 0;
}

input[type=checkbox]:checked + .check-box::after {
  opacity: 1;
}

.check-button {
  font-size: 1.125rem;
  color: #333;
  font-weight: 400;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  position: relative;
  padding: 0 0 0 20px;
}

.check-button::before,
.check-button::after {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transform: translateY(-50%);
}

.check-button::before {
  left: 5px;
  width: 10px;
  height: 10px;
  border: 1px solid #333;
  border-radius: 50%;
  background-color: #fff;
}

.check-button::after {
  left: 7.9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #fd6724;
  opacity: 0;
}

input[type=radio]:checked + .check-button::after {
  opacity: 1;
}

.report-form__bug {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.report-form__bug-text {
  font-size: 1.25rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: #333;
  padding: 10px 20px;
  display: inline-block;
  border: 4px solid #ccc;
}

.bug_report_box02 {
  margin-top: 0.625rem;
}

.bug_report_box02-title {
  font-size: 1.25rem;
  line-height: 1.1;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  color: #333;
}

.bug_report_box02__textarea {
  padding: 5px;
  width: 100%;
  height: 240px;
  margin-top: 10px;
  padding: 1.25rem;
  border: 2px solid #ccc;
}

.button_style01 {
  margin: 40px 0 0 0;
  text-align: center;
}

.button_style01 input {
  background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffd03f 0%, #ff9306 99%) repeat scroll 0 0;
  border: 4px solid #a9a9a9;
  border-radius: 5px;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  height: 50px;
  padding: 0 3px;
  text-shadow: 1px 1px 0 #fff;
  transition: all 0.2s ease-in 0s;
  width: 300px;
  font-size: 24px;
}

.sponsor-message {
	background: url("../images/bg_kyoiku.jpg") no-repeat 50% 50%;
	background-size: cover;
}
@media screen and (max-width: 768px) {
  .sponsor-message-marginTop {
    margin-top: 1.875rem;
  }
}
.sponsor-message__container {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
}

.sponsor-message__body {
  width: 60%;
  padding: 5rem 3.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  .sponsor-message__body {
    width: 100%;
    padding: 2.5rem 1.5rem;
  }
}

.sponsor-message__content {
  width: 100%;
}

.sponsor-message__text:not(:first-child) {
  margin-top: 1.25rem;
	font-size: 18px;
	line-height: 2;
	text-shadow: 1px 1px 0 white;
}
@media screen and (max-width: 768px) {
  .sponsor-message__text:not(:first-child) {
    font-size: 16px;
  }
}


.sponsor-sponsor-marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sponsor-sponsor-marginTop {
    margin-top: 1.875rem;
  }
}

.inner.sponsor-sponsor__inner {
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .inner.sponsor-sponsor__inner {
    max-width: 600px;
  }
}

.sponsor-lists {
  margin-top: 3.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 4%;
       column-gap: 4%;
  row-gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sponsor-lists {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
  }
}

.sponsor-sponsor__item {
  border: 6px solid #000;
  padding-bottom: 1.25rem;
}

.sponsor-item__title {
  font-size: 1rem;
  line-height: 1.1;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 1rem 0.125rem;
  background-color: #333;
}

.sponsor-item__link {
  width: 100%;
  height: 100%;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.sponsor-item__logo {
  width: 100%;
  max-width: 418px;
  height: auto;
}

.sponsor-item__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sponsor-item__text {
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: #333;
  margin-top: 0.625rem;
}

.sponsor-item__banner {
  width: 100%;
  margin-top: 0.625rem;
  text-align: center;
}

.sponsor-item__banner img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

.sponsor-education-marginTop {
  padding-top: 7.5rem;
}
@media screen and (max-width: 768px) {
  .sponsor-education-marginTop {
    padding-top: 1.875rem;
  }
}

.inner.sponsor-education__inner {
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .inner.sponsor-education__inner {
    max-width: 600px;
  }
}

.sponsor-advertise {
  padding-top: 7.5rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sponsor-advertise {
    padding-top: 1.875rem;
  }
}

.sponsor-advertise__subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: #333;
  text-align: center;
  margin-top: 1.25rem;
}

.sponsor-advertise__contents {
  margin-top: 3.125rem;
  display: flex;
  -moz-column-gap: 1%;
       column-gap: 1%;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sponsor-advertise__contents {
    display: block;
  }
}

.sponsor-advertise__content {
  font-size: 1.5rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #fff;
  padding: 0.3125rem 0.625rem;
  background: #FE7313;
}
@media screen and (max-width: 768px) {
  .sponsor-advertise__content {
    text-align: center;
  }
}

.sponsor-advertise__content-span {
  font-size: 1.5rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sponsor-advertise__content-span {
    display: flex;
    justify-content: center;
  }
}

.sponsor-advertise__lists {
  display: flex;
  -moz-column-gap: 4%;
       column-gap: 4%;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sponsor-advertise__lists {
    display: block;
  }
}

.sponsor-advertise__item {
  width: 48%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .sponsor-advertise__item {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sponsor-advertise__item:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.advertise-item__title {
  font-size: 1.25rem;
  line-height: 1.1;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #333;
  text-align: center;
  padding-bottom: 0.3125rem;
  border-bottom: 2px solid #000;
}

.advertise-item__text {
  font-size: 1rem;
  line-height: 1.7;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: #333;
  margin-top: 0.625rem;
  flex-grow: 1;
}

.advertise-item__img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  margin-top: 1rem;
}

.advertise-item__img img {
  width: 100%;
  height: 100%;
  max-height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sponsor-contact-marginTop {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sponsor-contact-marginTop {
    margin-top: 1.875rem;
  }
}

.sponsor-contact {
  padding-bottom: 7.5rem;
}

.sponsor-contact__text {
  font-size: 1.125rem;
  line-height: 1.6;
  text-align: center;
  margin-top: 1.25rem;
}

.sponsor-contact__container {
  margin-top: 3.125rem;
}

.contact-form__select {
  font-size: 1.125rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  color: #333;
  width: 100%;
  min-width: 210px;
  padding: 15px;
  border: 1px solid #E2E2E2;
}

.contact-form__dd-select {
  position: relative;
  width: 300px;
}

.contact-form__dd-select::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  transform: translateY(-20%);
  border: 6px solid transparent;
  border-top: 7px solid #000;
  display: inline-block;
}

.contact-form__dl {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}

.contact-form__dt {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #333;
}

.contact-form__dl input[type=text] {
  padding: 5px;
  width: 100%;
  max-width: 400px;
  padding: 1.25rem;
  border: 1px solid #ccc;
}

.contact-form__dl.contact-form__dl-block {
  display: block;
}

.contact-form__dd-textarea {
  padding: 5px;
  width: 100%;
  height: 240px;
  margin-top: 10px;
  padding: 1.25rem;
  border: 1px solid #ccc;
}

.contact-form__bug {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 630px;
    padding: 0 15px;
  }
}

.inner.advertise__inner {
  max-width: 1000px;
}

.title {
  font-size: 3rem;
  font-family: "IBM Plex Sans JP", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  color: #000;
  text-align: center;
  position: relative;
  z-index: 2000;
}
@media screen and (max-width: 1024px) {
  .title {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 375px) {
  .title {
    display: block;
  }
}

.title--color {
  background: linear-gradient(90deg, #4158D0, #C850C0 30%, #FFCC70);
  background: -webkit-linear-gradient(0deg, #4158D0, #C850C0 30%, #FFCC70);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-uppercase {
  text-transform: uppercase;
}

.button {
  width: 22rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 60px;
  background-color: #FE7313;
  transition: box-shadow 0.3s, border-color 0.3s, opacity 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .button {
    max-width: 20rem;
  }
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  border: 1px solid #000;
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  z-index: -1;
}

.button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.button__link {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  display: inline-block;
  padding: 15px 80px;
}
@media screen and (max-width: 1024px) {
  .button__link {
    padding: 8px 80px;
  }
}

.button__link--large {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
	.button__link {
	  padding: 10px 15px;
		text-align: center;
	}

	.button__link--large {
	  font-size: 1.2rem;
	}
}

.advertise__body {
  width: 100%;
  min-width: 5rem;
  margin-right: auto;
  margin-left: auto;
}

.advertise__body img {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.sub-fv {
  padding-top: 11rem;
  padding-bottom: 4rem;
  background-color: #000;
}
.download-fv {
	background: url("../images/dl_bg.jpg") no-repeat 0 0;
	background-size: cover;
}
.material-fv {
	background: url("../images/material_bg.jpg") no-repeat 0 0;
	background-size: cover;
}
.material-fv2 {
	background: url("../images/material_bg2.jpg") no-repeat 0 0;
	background-size: cover;
}
.line-fv {
	background: url("../images/line_bg.jpg") no-repeat 0 0;
	background-size: cover;
}
.report-fv {
	background: url("../images/report_bg.jpg") no-repeat 0 0;
	background-size: cover;
}
.sponsor-fv {
	background: url("../images/sponsor_bg.jpg") no-repeat 0 0;
	background-size: cover;
}
.creator-index .creator-fv {
	background: url("../images/creator_title_bg.jpg") no-repeat 0 0;
	background-size: cover;
}
@media screen and (max-width: 768px) {
  .sub-fv {
    padding-top: 6rem;
    padding-bottom: 1.875rem;
  }
}

.sub-fv__title {
  color: #fff;
}

.sub-title {
  font-size: 1.625rem;
  line-height: 1.5;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 500;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-title {
    font-size: 1.375rem;
  }
}

.sub-title--large {
  font-size: 2.375rem;
}
@media screen and (max-width: 1024px) {
  .sub-title--large {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-title--large {
    font-size: 1.3rem;
  }
}

.sub-navigation__lists {
  display: flex;
  -moz-column-gap: 2.5%;
       column-gap: 2.5%;
  row-gap: 0.625rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.sub-navigation__item-link {
  font-size: 1rem;
  font-family: "Roboto", "Hiragino Sans", "Meiryo", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #000;
  padding: 0.625rem 0rem 0rem 1.25rem;
  position: relative;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .sub-navigation__item-link {
    font-size: 0.875rem;
    padding: 0.3125rem 0.3125rem 0.3125rem 0.9375rem;
  }
}

.sub-navigation__item-link::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #000;
  position: absolute;
  top: 50%;
  left: 2px;
}
@media screen and (max-width: 768px) {
  .sub-navigation__item-link::before {
    transform: translateY(-50%);
  }
}

.sub-navigation__item-link:hover {
  color: #fd6724;
  border-bottom: 1px solid #fd6724;
}

.sub-navigation__item-link:hover::before {
  background-color: #fd6724;
}



@media (min-width: 721px) {

	/****** bug report ******/
	.contents_info_wrap01 p {
		font-size: 18px;
		line-height: 1.8;
	}
	.contents_info_wrap01 ul {
		margin: 40px 100px;
		border: 3px double #ccc;
		padding: 20px 20px 10px 20px;
		background: #fff;
	}
	.contents_info_wrap01 ul li {
		font-size: 14px;
		line-height: 1.3;
		margin: 0 0 10px 20px;
		list-style-type: disc;
	}
	
	
	.contents_info_wrap02 { margin-top: 80px; }
	.contents_info_wrap02 h2 {
		color: #f00;
		font-weight: bold;
	}
	.contents_info_wrap02 p {
		margin-top: 20px;
	}
	.contents_info_wrap02 ul {
	}
	.contents_info_wrap02 ul li {
		font-size: 18px;
		line-height: 1.8;
		margin-top: 20px;
	}
	.contents_info_wrap02 ul li a {
		border: 4px solid #f00;
		padding: 10px 10px 10px 28px;
		display: block;
		background: #fff url(/images/fa/icon_arrow_blk.png) no-repeat 7px 50%;
		background-size: 10px;
		color: #f00;
		transition: all 0.2s ease;
	}
	.contents_info_wrap02 ul li a:hover {
		background: #FFCBCB url(/images/fa/icon_arrow_blk.png) no-repeat 10px 50%;
		background-size: 10px;
		color: #f00;
	}
	.contents_info_wrap02 ul li div {
		border: 4px solid #f00;
		padding: 10px;
		display: block;
		background: #fff;
	}

	.bug_form_wrap {
		margin: 20px 0 0 0;
	}
	.bug_form_wrap table {
		margin: 20px 0 0 0;
	}
	.bug_form_wrap table th {
		font-size: 20px;
		text-align: right;
		padding: 20px 0;
	}
	.bug_form_wrap table td {
		font-size: 20px;
		padding: 20px 0 20px 40px;
		font-weight: 300;
	}
	.bug_form_wrap label {
		font-weight: 300;
	}
	.bug_form_wrap table td input[type="text"] {
		padding: 5px;
		width: 400px;
	}
	.form_margin01 { margin-top: 10px; }
	
	.bug_form_wrap input {
		font-size: 20px;
		margin: 0 10px 0 0;
	}
	.bug_report_box01 {
		margin: 20px 0 0 0;
		font-size: 20px;
		font-weight: 300;
	}
	.bug_report_box01 label {
		margin: 0 20px 0 0;
	}
	.bug_report_box02 {
		margin: 20px 0 0 0;
	}
	.bug_report_box02 h3 {
		font-size: 20px;
	}
	.bug_form_wrap textarea {
		width: 100%;
		height: 240px;
		margin-top: 10px;
		padding: 5px;
	}
	.bug_report_box03 {
		text-align: center;
		margin: 40px 0 0 0;
	}
	.bug_report_box03 span {
		display: inline-block;
		font-size: 20px;
		border: 4px solid #ccc;
		padding: 10px 20px;
	}

	#fa_form_finish_block, .advertise_finish_box {
		margin: 80px 15px 0 15px;
		padding: 80px 20px;
		text-align: center;
		border: 4px solid #ccc;
		background: #fff;
		font-size: 20px;
		line-height: 1.8;
	}
	#fa_form_error {
		font-size: 18px;
		font-weight: 500;
		border: 4px solid #f00;
		padding: 10px 20px;
		line-height: 1.8;
		margin: 40px 15px 0 15px;
		text-align: center;
		background: #fff;
	}
	
	.button_style01 {
		margin: 40px 0 0 0;
		text-align: center;
	}
	.button_style01 input {
		background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffd03f 0%, #ff9306 99%) repeat scroll 0 0;
		border: 4px solid #a9a9a9;
		border-radius: 5px;
		color: #333;
		cursor: pointer;
		font-weight: bold;
		height: 50px;
		padding: 0 3px;
		text-shadow: 1px 1px 0 #fff;
		transition: all 0.2s ease-in 0s;
		width: 300px;
		font-size: 24px;
	}
	.button_style01 input:hover {
		background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #fff004 0%, #ff9306 99%) repeat scroll 0 0;
	}
}



@media screen and (max-width: 720px) {

	/****** bug report ******/
	.contents_info_wrap01 p {
		margin: 0 10px;
		font-size: 16px;
		line-height: 1.6;
	}
	.contents_info_wrap01 ul {
		margin: 20px 10px;
		border: 3px double #ccc;
		padding: 5px 5px 0 5px;
		background: #fff;
	}
	.contents_info_wrap01 ul li {
		font-size: 12px;
		line-height: 1.3;
		margin: 0 0 5px 15px;
		list-style-type: disc;
	}
	
	
	.contents_info_wrap02 { margin-top: 40px; }
	.contents_info_wrap02 h2 {
		color: #f00;
		font-weight: bold;
	}
	.contents_info_wrap02 p {
		margin-top: 20px;
	}
	.contents_info_wrap02 ul {
		margin-left: 15px;
		margin-right: 15px;
		margin-bottom: 60px;
	}
	.contents_info_wrap02 ul li {
		font-size: 16px;
		line-height: 1.6;
		margin-top: 20px;
	}
	.contents_info_wrap02 ul li a {
		border: 4px solid #f00;
		padding: 10px 10px 10px 28px;
		display: block;
		background: #fff url(/images/fa/icon_arrow_blk.png) no-repeat 7px 50%;
		background-size: 10px;
		color: #f00;
		transition: all 0.2s ease;
	}
	.contents_info_wrap02 ul li a:hover {
		background: #FFCBCB url(/images/fa/icon_arrow_blk.png) no-repeat 10px 50%;
		background-size: 10px;
		color: #f00;
	}
	.contents_info_wrap02 ul li div {
		border: 4px solid #f00;
		padding: 10px;
		display: block;
		background: #fff;
	}
	

	.bug_form_wrap {
		margin: 20px 0 0 0;
	}
	.bug_form_wrap table {
		margin: 10px 10px 0 10px;
	}
	.bug_form_wrap table th {
		display: block;
		width: 100%;
		font-size: 18px;
		padding: 10px;
		background: #ccc;
	}
	.bug_form_wrap table td {
		font-size: 18px;
		padding: 10px 0 30px 0;
		font-weight: 300;
		display: block;
		width: 100%;
	}
	.bug_form_wrap label {
		font-weight: 300;
		display: block;
		margin: 10px 0;
	}
	.bug_form_wrap table td input[type="text"] {
		padding: 5px;
		width: 100%;
	}
	.form_margin01 { margin-top: 10px; }
	
	.bug_form_wrap input {
		font-size: 20px;
		margin: 0 10px 0 0;
	}
	.bug_report_box01 {
		margin: 20px 0 0 0;
		font-size: 20px;
		font-weight: 300;
	}
	.bug_report_box01 label {
		margin: 0 10px 20px 10px;
	}
	.bug_report_box02 {
		margin: 20px 10px 0 10px;
	}
	.bug_report_box02 h3 {
		font-size: 20px;
		margin: 0;
	}
	.bug_form_wrap textarea {
		padding: 5px;
		width: 100%;
		margin-top: 10px;
		height: 150px;
	}
	.bug_report_box03 {
		margin: 40px 10px 0 10px;
		border: 4px solid #ccc;
		padding: 5px 10px;
	}
	.bug_report_box03 span {
		font-size: 16px;
	}

	#fa_form_finish_block, .advertise_finish_box {
		margin: 40px 10px 0 10px;
		padding: 20px 10px;
		border: 4px solid #ccc;
		background: #fff;
		font-size: 18px;
		line-height: 1.6;
	}
	#fa_form_error {
		font-size: 16px;
		font-weight: 500;
		border: 4px solid #f00;
		padding: 5px 10px;
		line-height: 1.8;
		margin: 40px 10px 0 10px;
		background: #fff;
	}

	.button_style01 {
		margin: 40px 10px 0 10px;
		text-align: center;
	}
	.button_style01 input {
		background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffd03f 0%, #ff9306 99%) repeat scroll 0 0;
		border: 4px solid #a9a9a9;
		border-radius: 5px;
		color: #333;
		cursor: pointer;
		font-weight: bold;
		height: 50px;
		padding: 0 3px;
		text-shadow: 1px 1px 0 #fff;
		transition: all 0.2s ease-in 0s;
		width: 100%;
		font-size: 24px;
	}
	.button_style01 input:hover {
		background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #fff004 0%, #ff9306 99%) repeat scroll 0 0;
	}

}

.youtube-box {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .youtube-box {
    max-width: 1000px;
    margin: 80px auto 0 auto;
    text-align: center;
  }
}
.youtube-box iframe {
  width: 100%;
  height: 100%;
}
.material-brush__container h3::before {
  counter-increment: brush -1;
  content: "No."counter(brush);
  font-size: 13px;
  background: #333;
  padding: 4px 2px;
  color: #fff;
  border-radius: 5px;
  margin-right: 7px;
}
.brush-item__se,
.brush-item__se_en {
  position: relative;
}
.brush-item__se::after {
  content: 'SE限定ブラシ';
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(150,2,177,1) 0%, rgba(0,153,255,1) 100%);
  color: #fff;
  font-weight: bold;
  padding: 2px 10px;
  font-size: 13px;
}
.brush-item__se_en::after {
  content: 'SE LimitedBrush';
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(150,2,177,1) 0%, rgba(0,153,255,1) 100%);
  color: #fff;
  font-weight: bold;
  padding: 2px 10px;
  font-size: 13px;
}
.brush-se-link {
  background: #9602b1;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
}

/*クリエイターズ*/

.creator-message__text {
  font-size: clamp(1rem, 0.778rem + 0.463vw, 1.125rem);
  text-align: center;
  padding: 5rem 0;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .creator-message__text {
    padding: 2rem 0;
    text-align: left;
  }
}

.creator-index .creator-navigation {}
.creator-index .creator__menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  grid-column: 0;
  grid-gap: 0;
  grid-row: 0;
}
.creator-index .creator__menu__item {
  width: 50%;
}
.creator-index .creator__menu__item a {
  display: block;
  padding: 300px 0 50px 0;
  text-align: center;
}
.creator-index .creator__menu__item a.creator__menu__fjsmu {
  background: url("../images/creator_illust_fjsmu.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.creator-index .creator__menu__item a.creator__menu__ri-rin {
  background: url("../images/creator_illust_ri-rin.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.creator-index .creator__menu__item a.creator__menu__hayama {
  background: url("../images/creator_illust_hayama_1200900.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.creator-index .creator__menu__item a h2 {
  display: inline-block;
  background: rgba(0,0,0,.8);
  padding: 20px 40px;
  color: #fff;
  font-size: 22px;
}
.creator-index .creator__menu__item a h2 span {
  display: block;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .creator-index .creator__menu {
    display: block;
  }
  .creator-index .creator__menu__item {
    width: 100%;
  }
  .creator-index .creator__menu__item a {
    padding: 50px 0;
  }
  .creator-index .creator__menu__item a h2 {
    font-size: 18px;
  }
  .creator-index .creator__menu__item a h2 span {
    display: block;
    font-size: 12px;
  }
}

.creators-bg {
}
.creators-fjsmu {
  background: url("../images/creator_illust_fjsmu.jpg") no-repeat 0 0;
  background-size: 100%;
  background-attachment: fixed;
  right: 0;
}
.creators-ririn {
  background: url("../images/creator_illust_ririn.jpg") no-repeat 0 0;
  background-size: 100%;
  background-attachment: fixed;
  right: 0;
}
.creators-hayama {
  background: url("../images/creator_hayama_bg.jpg") no-repeat 0 0;
  background-size: 100%;
  background-attachment: fixed;
  right: 0;
}
.creators-motojima {
  background: url("../images/creator_motojima_bg.jpg") no-repeat 0 0;
  background-size: 100%;
  background-attachment: fixed;
  right: 0;
}
.creators-oswaldo {
  background: url("../images/creator_katou_bg.jpg") no-repeat 0 0;
  background-size: 100%;
  background-attachment: fixed;
  right: 0;
}

.creators-bg .creator-fv.sub-fv {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: transparent;
  background: url("../images/creator_bg.png") repeat-x 0 200px;
}
@media screen and (max-width: 768px) {
  .creators-bg .creator-fv.sub-fv {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
}
.creator-fv__top {}
.creator-fv__text {
  font-size: clamp(1.75rem, 1.393rem + 1.786vw, 3rem);
  font-weight: bold;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,.5), -1px -1px 2px rgba(0,0,0,.2);
  line-height: 1;
  vertical-align: bottom;
}
.creator-fv__bread {
  margin-top: 10px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,.5), -1px -1px 2px rgba(0,0,0,.2);
}
.creator-fv__bread a {
  color: #fff;
  text-decoration: underline;
}
.creator-fv__main {
  background: #fff;
  margin-top: 20px;
  display: flex;
}
.creator-fv__thum-box {
  width: 320px;
  padding: 20px 0 0 20px;
}
.creator-fv__thum-box figure {}
.creator-fv__thum-box figure img {
  width: 100%;
  height: auto;
}
.creator-fv__prof-box {
  flex: 1;
  padding: 20px 40px 0 40px;
}
.creator-fv__prof-box .creator-fv__prof-h1 {
  font-size: clamp(1.5rem, 1.357rem + 0.714vw, 2rem);
}
.creator-fv__prof-sns {
  display: flex;
  margin-top: 20px;
}
.creator-fv__prof-sns li { margin-right: 10px; }
.creator-fv__prof-sns li img {
  width: 40px;
  height: auto;
}
.creator-fv__prof-box p {
  margin-top: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .creator-fv__main {
    display: block;
  }
  .creator-fv__thum-box {
    width: 100%;
    padding: 20px 10px 0 10px;
  }
  .creator-fv__thum-box figure { text-align: center; }
  .creator-fv__thum-box figure img {
    display: inline-block;
    width: 60%;
    height: auto;
  }
  .creator-fv__prof-box {
    flex: 1;
    padding: 20px 20px 0 20px;
  }
}



.creators-bg main {
}

.creator-illust {
  background-color: #333;
  padding: 5rem 0;
}
.creator-illust__inner {
  text-align: center;
}
.creator-illust img {
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}
.creator-illust-h2 {
  font-size: 24px;
  color: #fff;
  margin-top: 20px;
}
.creator-illust-link {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.creator-illust-link li {
  margin: 0 20px;
}
.creator-illust-link li a {
  font-size: clamp(0.875rem, 0.839rem + 0.179vw, 1rem);
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 40px;
}

.creator-interview {
  background: #fff;
  padding: 5rem 0;
}
.creator-interview__inner {}
.creator-interview-title-h2 {
  border-top: 6px solid #000;
  border-bottom: 6px solid #000;
  padding: 1rem 0;
  text-align: center;
  font-size: 32px;
}
.creator-interview-title-h2 span {
  font-size: 20px;
  font-weight: normal;
}
.creator-interview-title-h3,
.title-design1-wrap {
  margin: 80px auto 20px auto;
  text-align: center;
}
.creator-interview-title-h3 h3,
.title-design1 {
  position: relative;
  display: inline-block;
  padding: 0 45px;
  font-size: 24px;
}
.creator-interview-title-h3 h3:before,
.creator-interview-title-h3 h3:after,
.title-design1:before,
.title-design1:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.creator-interview-title-h3 h3:before,
.title-design1:before {
  left:0;
}
.creator-interview-title-h3 h3:after,
.title-design1:after {
  right: 0;
}
.creator-interview-box1 {
  max-width: 1000px;
  margin: 80px auto 0 auto;
}
.creator-interview-box1:first-of-type {
  margin-top: 0;
}
.creator-interview-box1 figure {
  margin-top: 40px;
  text-align: center;
}
.creator-interview-box1 img {}
.creator-interview-box1-tatenaga img {
  width: auto;
  margin: 0 auto;
}
.creator-interview-box1 p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
}
.creator-interview-title-h4 {
  text-align: center;
  margin-top: 60px;
}
.creator-interview-title-h4 span {
  display: inline-block;
  font-size: 20px;
  border-bottom: 4px solid #999;
}
.creator-interview-brush-wrap {
  margin: 0 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2%;
  margin-bottom: 40px;
}
.creator-interview-brush-box {
  width: 49%;
  text-align: center;
  margin-top: 60px;
}
.creator-interview-brush-box h5 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}
.creator-interview-brush-box figure {
  margin-top: 10px;
}
.creator-interview-brush-box img {
  display: inline-block;
  border: 1px solid #999;
}
.creator-interview-brush-box .button {
  width: 10rem;
  margin-top: 10px;
}

.creator-interview-brush-box .button__link {
  padding: 15px 20px;
}
.creator-interview-title-interviewer {
  text-align: right;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.creator-interview-box2 {
  max-width: 1000px;
  margin: 80px auto 0 auto;
}
.creator-interview-box2 h3 {
  margin-top: 120px;
  font-size: 20px;
  font-weight: bold;
}
.creator-interview-box2 figure {
  margin-top: 40px;
}
.creator-interview-box2 img {}
.creator-interview-box2 h4 {
  margin-top: 60px;
  color: #FF7C32;
  font-size: 18px;
  line-height: 1.6;
  font-weight: normal;
}
.creator-interview-box2 p {
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
}

.creator-interview_works {}
.creator-interview_works h3 {
  margin-top: 80px;
  font-size: 20px;
  text-align: center;
}
.creator-interview_works-p {
  margin-top: 40px;
  text-align: center;
}
.creator-interview_works-img {}
.creator-interview_works-img figure {
  text-align: center;
  margin-top: 20px;
}
.creator-interview_works-img img {
  display: inline-block;
  max-width: 100%;
  max-height: 800px;
  width: auto;
  height: auto;
}


.creator-interview-menu-box .creator__menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  grid-gap: 0;
  background: #666;
}
.creator-interview-menu-box .creator__menu__item {
  width: 50%;
}
.creator-interview-menu-box .creator__menu__item a {
  display: block;
  padding: 30px 0;
  text-align: center;
}
.creator-interview-menu-box .creator__menu__item a.creator__menu__fjsmu {
  background: url("../images/creator_illust_fjsmu.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.creator-interview-menu-box .creator__menu__item a.creator__menu__ri-rin {
  background: url("../images/creator_illust_ri-rin.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.creator-interview-menu-box .creator__menu__item a.creator__menu__hayama {
  background: url("../images/creator_illust_hayama_1200900.jpg") no-repeat 50% 35%;
  background-size: cover;
}
.creator-interview-menu-box .creator__menu__item a h2 {
  display: inline-block;
  background: rgba(0,0,0,.8);
  padding: 20px 40px;
  color: #fff;
  font-size: 22px;
}
.creator-interview-menu-box .creator__menu__item a h2 span {
  display: block;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .creator-illust {
    padding: 3rem 0;
  }
  .creator-illust img {
    max-width: 100%;
  }
  .creator-illust-h2 {
    font-size: 20px;
  }
  .creator-interview {
    padding: 2rem 0 4rem 0;
  }
  .creator-interview-title-h2 {
    margin-top: 3rem;
    font-size: 26px;
  }
  .creator-interview-title-h2 span {
    font-size: 18px;
  }
  .creator-interview-title-h3 {
    margin: 40px auto 20px auto;
  }
  .creator-interview-title-h3 h3 {
    font-size: 20px;
  }
  .creator-interview-box1 figure {
    margin-top: 20px;
  }
  .creator-interview-box1-tatenaga img {
    width: 100%;
    height: auto;
  }
  .creator-interview-box1 p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .creator-interview-title-h4 {
    margin-top: 40px;
  }
  .creator-interview-title-h4 span {
    font-size: 18px;
  }
  .creator-interview-brush-wrap {
    display: block;
    margin-bottom: 20px;
  }
  .creator-interview-brush-box {
    width: 100%;
    margin-top: 30px;
  }
  
  .creator-interview-title-interviewer {
    font-size: 13px;
  }

  .creator-interview-box2 {
    max-width: 100%;
    margin: 60px auto 0 auto;
  }
  .creator-interview-box2 h3 {
    margin-top: 60px;
    font-size: 18px;
  }
  .creator-interview-box2 figure {
    margin-top: 20px;
  }
  .creator-interview-box2 img {}
  .creator-interview-box2 h4 {
    margin-top: 30px;
    font-size: 16px;
  }
  .creator-interview-box2 p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
  }

  .creator-interview-menu-box .creator__menu {
    display: block;
  }
  .creator-interview-menu-box .creator__menu__item {
    width: 100%;
  }
  .creator-interview-menu-box .creator__menu__item a {
    display: block;
    padding: 20px 0;
  }
  .creator-interview-menu-box .creator__menu__item a h2 {
    padding: 10px 20px;
    font-size: 20px;
  }
  .creator-interview-menu-box .creator__menu__item a h2 span {
    font-size: 12px;
  }
}

/*indexニュース*/
.main-news {
  background: #333;
  padding: 2rem 0 1rem 0;
}
@media screen and (max-width: 1024px) {
  .main-news {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
}
.main-news ul {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .main-news ul {
    padding: 0 15px;
  }
}
.main-news ul li {
  color: #fff;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .main-news ul li {
    font-size: 0.8rem;
  }
}
.main-news ul li time {}
.main-news ul li a {
  color: #fff;
  border-bottom: 1px solid #ccc;
  transition: all 0.5s ease;
}
.main-news ul li a:hover {
  color: #999;
  border-bottom: 1px solid #333;
}



/*新ダウンロード*/

.new-dl-wrap {
  display: grid;
  gap: 2%;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 40px;
}
.new-dl-wrap-button {
  background: linear-gradient(#ff7758 0%, #fe2d70 25%, #fe2d70 51%, #da58ff 100%);
  background-position: 50% 1%;
  border: 6px solid #000;
  background-size: auto 200%;
  border-radius: 20px;
  position: relative;
  text-align: center;
  padding-top: 120px;
  padding-bottom: 20px;
  transition: all 0.3s ease-out;
}
.new-dl-wrap-button:hover {
  background-position: 50% 99%;
}
.new-dl-wrap-button::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-size: cover;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.new-dl-wrap-button.new-dl-wrap-button-mac::before {
  background-image: url("../images/logomark_mac.png");
}
.new-dl-wrap-button.new-dl-wrap-button-win::before {
  background-image: url("../images/logomark_win.png");
}
.new-dl-wrap-button.new-dl-wrap-button-lin::before {
  background-image: url("../images/logomark_linux.png");
}
.new-dl-wrap-button div {
  color: #fff;
}
.new-dl-wrap-button p.download-button__link-text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
.new-dl-wrap-button p.download-button__link-text span {
  display: block;
}
.new-dl-wrap-button p.download-button__link-text span span {
  display: inline;
  font-size: 28px;
  padding-right: 5px;
}
.new-dl-wrap-button div {
  font-size: 18px;
  margin-top: 10px;
}
.new-dl-wrap-button p.download-button__link--small {
  margin-top: 10px;
  font-size: 14px;
}

.new-dl-win32 {
  text-align: center;
  margin-top: 20px;
}
.new-dl-win32 a {
  color: #666;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .new-dl-wrap {
    display: block;
    margin-top: 20px;
  }
  .new-dl-wrap-button {
    background: #fe2d70;
    border: 6px solid #000;
    border-radius: 20px;
    position: relative;
    text-align: left;
    padding-top: 20px;
    padding-bottom: 20px;
    transition: all 0.3s ease-out;
    margin-bottom: 20px;
    padding-left: 80px;
    display: block;
  }
  .new-dl-wrap-button:hover {
    background: #ff7758;
  }
  .new-dl-wrap-button::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background-size: cover;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .new-dl-wrap-button.new-dl-wrap-button-mac::before {
    background-image: url("../images/logomark_mac.png");
  }
  .new-dl-wrap-button.new-dl-wrap-button-win::before {
    background-image: url("../images/logomark_win.png");
  }
  .new-dl-wrap-button.new-dl-wrap-button-lin::before {
    background-image: url("../images/logomark_linux.png");
  }
  .new-dl-wrap-button a {
    color: #fff;
  }
  .new-dl-wrap-button p.download-button__link-text {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
  }
  .new-dl-wrap-button p.download-button__link-text span {
    display: inline;
  }
  .new-dl-wrap-button p.download-button__link-text span span {
    display: inline;
    font-size: 24px;
    padding-right: 5px;
  }
  .new-dl-wrap-button div {
    font-size: 18px;
    margin-top: 5px;
  }
  .new-dl-wrap-button p.download-button__link--small {
    margin-top: 5px;
    font-size: 14px;
  }

  .new-dl-win32 {
    text-align: center;
    margin-top: 20px;
  }
  .new-dl-win32 a {
    color: #666;
    text-decoration: underline;
  }
}


.youtube-box {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 768px) {
  .youtube-box {
    max-width: 800px;
    margin: 40px auto 0 auto;
    text-align: center;
  }
}

.youtube-box iframe {
  width: 100%;
  height: 100%;
}
	
#pageTop-new {
  position: fixed;
  bottom: 40px;
  right: -200px;
  background: rgba(0,0,0,.6);
  width: 60px;
  text-align: center;
  color: #fff;
  padding: 15px 0;
  border-radius: 5px;
  transition: all 0.2s ease;
  z-index: 8888;
}
#pageTop-new:hover {
  background: rgba(0,0,0,.9);
  padding: 8px 0 22px 0;
}
#pageTop-new img {
  width: 30px;
  height: auto;
  margin: 0 auto;
}


.mt-120 { margin-top: 120px!important; }
.mt-80 { margin-top: 80px!important; }
.mt-40 { margin-top: 40px!important; }
.mt-20 { margin-top: 40px!important; }
.mt-0 { margin-top: 0!important; }
@media screen and (max-width: 768px) {
  .mt-120 { margin-top: 60px!important; }
  .mt-80 { margin-top: 40px!important; }
  .mt-40 { margin-top: 20px!important; }
  .mt-20 { margin-top: 20px!important; }
  .mt-0 { margin-top: 0!important; }
}


/*テンプレート*/
.template__title {
  margin: 40px 15px 0 15px;
}
.template__container {}
.template__lists {
  margin: 40px 0 80px 0;
  display: flex;
  flex-wrap: wrap;
}
.template__item {
  width: 48%;
  background: #eee;
  padding: 20px;
  text-align: center;
  margin: 20px 2% 0 0;
}
.template__item:nth-child(2n) {
  margin-right:0;
}
.line-item__img {
  width: 90%;
  margin: 0 auto;
}
.line-item__img img {
    width: 100%;
    height: auto;
}
  .template__item h3 {
    margin-top: 10px;
  }
.template__item .button {
  margin-top: 20px;
  width: 8.5rem;
}
.template__item .button__link {
  padding: 15px 20px;
}

.template-kiyaku-wrap {}
.template-kiyaku-wrap h3 { text-align: center; }
.template-kiyaku-box {
  border: 1px solid #999;
  padding: 20px;
}
.template-kiyaku-box p {
  font-size: 14px;
  margin-bottom: 20px;
}
.template-kiyaku-box ul,
.template-kiyaku-box ol { margin-bottom: 20px; }
.template-kiyaku-box li {
  list-style-type: circle;
  margin: 5px 0 0 20px;
  font-size: 13px;
}
.template-kiyaku-box ol li {
  list-style-type: decimal;
  font-size: 13px;
}
.template-kiyaku-box div {
  
}

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

@media screen and (min-width: 768px) {
  /*テンプレート*/
  .material-line__inner.inner {
    max-width: 100%;
    padding: 0;
  }
  .template__container {}
  .template__lists {
    display: flex;
    flex-wrap: wrap;
  }
  .template__item {
    width: 25%;
    background: #eee;
    border: #fff 1px solid;
    padding: 20px;
    text-align: center;
    margin: 0;
  }
  .line-item__img {
    width: 80%;
    margin: 0 auto;
  }
  .line-item__img img {
    width: 100%;
    height: auto;
  }
  .template__item h3 {
    margin-top: 20px;
  }
  .template__item .button {
    margin-top: 20px;
    width: 11rem;
  }
  .template__item .button__link {
    padding: 15px 45px;
  }
}



.new-creator-navigation {
  padding: 0 15px 60px 15px;
}
.new_creator__menu {
  width: 100%;
  margin: 0 auto;
}
.new_creator__menu__item {
  width: 100%;
  height: 150px;
  position: relative;
  margin-bottom: 40px;
}
.new_creator__menu__item a {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: 20px;
  box-shadow: 4px 4px 8px rgba(0,0,0,.3);
  position: relative;
  transition: box-shadow .3s;
}
.new_creator__menu__item a:hover {
  box-shadow: 0 0 4px rgba(0,0,0,.3);
}
.new_creator__menu__katou {
  background: url("../images/creator_btn_katou_sp.jpg") no-repeat 50% 0;
  background-size: cover;
}
.new_creator__menu__motojima {
  background: url("../images/creator_btn_motojima_sp.jpg") no-repeat 50% 0;
  background-size: cover;
}
.new_creator__menu__hayama {
  background: url("../images/creator_btn_hayama_sp.jpg") no-repeat 50% 0;
  background-size: cover;
}
.new_creator__menu__ri-rin {
  background: url("../images/creator_btn_ririn_sp.jpg?20241204") no-repeat 50% 0;
  background-size: cover;
}
.new_creator__menu__fjsmu {
  background: url("../images/creator_btn_fjsm_sp.jpg") no-repeat 50% 0;
  background-size: cover;
}
.new_creator__menu__item h2 {
  width: 230px;
  background-color: rgba(0,0,0,.8);
  background-image: url("../images/icon_arrow_right.png");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  color: #fff;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px 0 5px 15px;
  transition: all .3s;
  border-radius: 10px 0 20px 0;
  font-size: 18px;
}
.new_creator__menu__item a:hover h2 {
  background-color: rgba(0,0,0,.8);
  background-image: url("../images/icon_arrow_right.png");
  background-size: 16px;
  background-repeat: no-repeat;
  background-position: right 5px top 50%;
}
.new_creator__menu__item span {
  display: block;
  font-size: 14px;
}

.new-creator-interview-menu-box {
  background: #fff;
}

  
.new-creator-interview-menu-box .new-creator-navigation{
  padding: 60px 15px 20px 15px;
  background: #eee;
}

@media screen and (min-width: 768px) {
  .new-creator-navigation {
    padding: 0 20px 120px 20px;
  }
  .new_creator__menu {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .new_creator__menu__item {
    width: calc(33.33% - 40px);
    height: 500px;
    position: relative;
    margin-bottom: 0;
  }
  .new_creator__menu__item a {
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    box-shadow: 4px 4px 8px rgba(0,0,0,.3);
    position: relative;
    transition: box-shadow .3s;
  }
  .new_creator__menu__item a:hover {
    box-shadow: 0 0 4px rgba(0,0,0,.3);
  }
  .new_creator__menu__katou {
    background: url("../images/creator_btn_katou.jpg") no-repeat 50% 0;
  }
  .new_creator__menu__motojima {
    background: url("../images/creator_btn_motojima.jpg") no-repeat 50% 0;
  }
  .new_creator__menu__hayama {
    background: url("../images/creator_btn_hayama.jpg") no-repeat 50% 0;
  }
  .new_creator__menu__ri-rin {
    background: url("../images/creator_btn_ririn.jpg") no-repeat 50% 0;
  }
  .new_creator__menu__fjsmu {
    background: url("../images/creator_btn_fjsm.jpg") no-repeat 50% 0;
  }
  .new_creator__menu__item h2 {
    width: 80%;
    background-color: rgba(0,0,0,.8);
    background-image: url("../images/icon_arrow_right.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    color: #fff;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 0;
    border-radius: 0;
    transition: all .3s;
  }
  .new_creator__menu__item a:hover h2 {
    background-color: rgba(0,0,0,.8);
    background-image: url("../images/icon_arrow_right.png");
    background-size: 16px;
    background-repeat: no-repeat;
    background-position: right 5px top 50%;
  }
  
  .new-creator-interview-menu-box .new-creator-navigation{
    padding: 80px 20px;
  }
  .new-creator-interview-menu-box .new_creator__menu__item {
    height: 300px;
  }
  .new-creator-interview-menu-box .new_creator__menu__item a {
    height: 300px;
  }
  .new-creator-interview-menu-box .new_creator__menu__katou {
    background: url("../images/creator_btn_katou.jpg") no-repeat 50% -50px;
  }
  .new-creator-interview-menu-box .new_creator__menu__motojima {
    background: url("../images/creator_btn_motojima.jpg") no-repeat 50% -50px;
  }
  .new-creator-interview-menu-box .new_creator__menu__hayama {
    background: url("../images/creator_btn_hayama.jpg") no-repeat 50% 0;
  }
  .new-creator-interview-menu-box .new_creator__menu__ri-rin {
    background: url("../images/creator_btn_ririn.jpg") no-repeat 50% -70px;
  }
  .new-creator-interview-menu-box .new_creator__menu__fjsmu {
    background: url("../images/creator_btn_fjsm.jpg") no-repeat 50% -100px;
  }
}

.new-material-menu {
}
.new-material-menu .button {
  margin-top: 20px;
}
.new-material-menu .button__link,
.new-material-btn .button__link {
  width: 100%;
  font-size: 16px;
}
.new-material-title {
  text-align: center;
  padding: 60px 0;
  color: #fff;
  margin-top: 80px;
  text-shadow: 1px 1px 2px rgba(0,0,0,.8);
}
.new-material-title__brush {
  background: url("../images/material_title_brush.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.new-material-title__template {
  background: url("../images/material_title_template.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.new-material-p1 {
  margin-top: 20px;
}
.new-material-p2 {
  margin-top: 20px;
  color: red;
}
.new-material-p3 {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .new-material-menu ul {
    display: flex;
  }
  .new-material-menu .button {
    margin-top: 20px;
    width: 300px;
  }
  .new-material-menu .button__link,
  .new-material-btn .button__link {
    width: 100%;
    font-size: 16px;
  }
  .new-material-btn { margin-top: 20px; }
  .new-material-title {
    text-align: center;
    padding: 60px 0;
    color: #fff;
    margin-top: 80px;
    font-size: 32px;
  }
  .new-material-title__brush {
    background: url("../images/material_title_brush.jpg") no-repeat 50% 50%;
    background-size: cover;
  }
  .new-material-title__template {
    background: url("../images/material_title_template.jpg") no-repeat 50% 50%;
    background-size: cover;
  }
  .new-material-p1 {
    margin-top: 40px;
    font-size: 20px;
    text-align: center;
  }
  .new-material-p2 {
    margin-top: 40px;
    color: red;
    font-size: 20px;
    text-align: center;
  }
  .new-material-p3 {
    margin-top: 40px;
    text-align: center;
  }
}






/*素材タブ*/

.tab-list-wrap {
  margin-top: 120px;
  border-bottom: 2px solid #fd6724;
}
.tab-list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.tab-list li {
  width: calc(45%);
  margin-right: 10px;
}

.tab-list a {
  display: block;
  padding: 20px 0 18px 0;
  text-align: center;
  border-radius: 16px 16px 0 0;
  background: #333;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: background 0.3s, color 0.3s;
}

.tab-list li.active a {
  background: #fd6724;
  color: white;
  font-weight: bold;
}

.tab-list a:hover {
  background: #fd6724;
}
.tab-list li.active a:hover {
  opacity: 1;
}

.tab-content {
  position: relative;
  padding-bottom: 120px;
}

.tab-item {
  display: none;
}

.tab-item.active {
  display: block;
}




/*カテゴリーボタン*/

.material-brush__container .new-brushlist h3::before {
  content: attr(data-number) " ";
  position: relative;
  top: -2px;
  transition: background 0.3s ease;
}

.category-burron-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.category-burron-wrap button {
  border: none;
  cursor: pointer;
  margin: 5px;
  background: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 14px;
}
.category-burron-wrap button.active {
  background: #fd6724;
}

a.new-brushlist-a .brush-item__img {
  display: inline-block;
  width: 100%;  /* 任意の幅 */
  height: auto; /* 任意の高さ */
  overflow: hidden;
}
a.new-brushlist-a img {
  transition: transform 0.3s ease;
}
a.new-brushlist-a:hover {
  opacity: 1;
}
a.new-brushlist-a:hover img {
  transform: scale(1.2);
}
a.new-brushlist-a h3 {
  transition: color 0.3s ease;
}
a.new-brushlist-a:hover h3 {
  color: #fd6724;
}
.material-brush__container a.new-brushlist-a:hover h3::before {
  background: #fd6724;
}





.slider {
    max-width: calc(100% - 15px);
    margin: 15px auto;
}

.slider img {
    width: 100%;
    height: auto;
}

.bn-box {
  margin-top: 40px;
  text-align: center;
}
.bn-box.bn-box-cre {
  margin-top: 0;
  margin-bottom: 120px
}
.bn-box img {
  display: inline-block;
  width: auto;
  height: auto;
}


/*SE3.0ブラシ*/
.material-se3brush-box1 {
  text-align: center;
}
.material-se3brush-h3 {
  font-size: 24px;
  margin-top: 40px;
}
.material-se3brush-p {}
.material-se3brush-list-wrap {
  background: #eee;
  padding: 20px;
}



@media (min-width: 768px) {
    .slider {
        max-width: 600px;
    }
}

.br-pc { display: none; }
@media screen and (min-width: 768px) {
  .br-pc { display: block; }
}
