@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*-----------------
category: mixins

pc    1025 ~
sp    767 ~ 1024
sp-s  375 ~ 766
min   320 ~ 374
-----------------*/
/*----- m.vw(数値) -----*/
/*----- IE10,11 -----*/
/*----- chrome -----*/
/*------------------------------------------------------------
	リセット用
------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
ruby,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
form,
fieldset,
legend,
label,
header,
footer,
hgroup,
menu,
nav,
main,
article,
section,
aside,
details,
figure,
figcaption,
canvas,
embed,
output,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%; /*16px相当*/
  vertical-align: baseline;
  text-justify: inter-ideograph; /*----IEとedge用*/
  box-sizing: border-box;
}

header,
footer,
hgroup,
menu,
nav,
main,
article,
section,
aside,
details,
figure,
figcaption {
  display: block;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
}

a {
  color: #2152D8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

a[href^="tel:"] {
  color: #000;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: inherit;
  }
}

ol,
ul {
  list-style: none;
}

hr {
  display: none;
}

address,
em {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
  border: none; /*画像リンク時の線防止*/
  max-width: 100%;
  height: auto;
}

/* Fonts */
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", sans-serif, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

/*------------------------------------------------------------
	共通スタイル
------------------------------------------------------------*/
body {
  color: #40251F;
  position: relative;
  word-break: break-all;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: url(../img/BG01.png) top center no-repeat;
  background-size: cover;
  z-index: -1;
}

footer {
  padding: 70px;
  font-size: 20px;
  text-align: center;
  background: #e8e8e8;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  footer {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  footer .speed-logo {
    max-width: 200px;
    margin: 0 auto;
  }
}

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

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-block {
  display: inline-block;
}

.d-inline {
  display: inline;
}

@media screen and (min-width: 769px) {
  .only-pc-hide {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .bp-hide {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .sp-hide {
    display: none;
  }
}

@media screen and (max-width: 320px) {
  .min-hide {
    display: none;
  }
}

.only-sp-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .only-sp-show {
    display: block;
  }
}

.only-min-show {
  display: none;
}
@media screen and (max-width: 320px) {
  .only-min-show {
    display: block;
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.video .video__item {
  width: 100%;
  aspect-ratio: 16/9;
}

.layout01 {
  position: relative;
  max-width: 1080px;
  width: 90%;
  margin: 100px auto 50px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #707070;
  border-radius: 20px;
}
.layout01--no-bg {
  border: none;
  background: none;
}
@media screen and (max-width: 767px) {
  .layout01 {
    width: calc(100% - 40px);
  }
}
.layout01 .layout01__ttl {
  position: absolute;
  top: -50px;
  left: -25px;
  width: 85%;
}
@media screen and (max-width: 767px) {
  .layout01 .layout01__ttl {
    width: 95%;
    top: -20px;
    left: -10px;
  }
}
.layout01 .layout01__inner {
  max-width: 800px;
  width: 100%;
  margin: clamp(50px, 9.375vw, 180px) auto clamp(50px, 5.7291666667vw, 110px);
  font-size: clamp(16px, 1.0416666667vw, 20px);
}
.layout01 .layout01__inner--fit-content {
  max-width: inherit;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.layout01 .layout01-flex01 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .layout01 .layout01-flex01 {
    justify-content: center;
  }
}
.layout01 .layout01-flex01 .layout01-flex01__txt-box {
  max-width: 500px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .layout01 .layout01-flex01 .layout01-flex01__txt-box {
    max-width: 100%;
    margin-right: 0;
  }
}
.layout01 .layout01-flex01 .layout01-flex01__txt-box .layout01-flex01__txt-box-item {
  margin-bottom: clamp(32px, 2.0833333333vw, 40px);
}
.layout01 .layout01-flex01 .layout01-flex01__txt-box .layout01-flex01__txt-box-item:last-child {
  margin-bottom: 0;
}
.layout01 .layout01-txt-box .layout01-txt-box__item {
  margin-bottom: clamp(32px, 2.0833333333vw, 40px);
}
.layout01 .layout01-txt-box .layout01-txt-box__item:last-child {
  margin-bottom: 0;
}
.layout01 .layout01-txt-box .layout01-txt-box__img-box {
  display: block;
  max-width: 600px;
  margin: 0 auto;
}
.layout01 .layout01-img-list {
  display: flex;
  justify-content: space-between;
}
.layout01 .layout01-img-list .layout01-img-list__item {
  width: calc(33.3333333333% - 15px);
}
@media screen and (max-width: 767px) {
  .layout01 .layout01-img-list .layout01-img-list__item {
    width: calc(33.3333333333% - 5px);
  }
}
.layout01 .layout01-btn-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(50px, 5.2083333333vw, 100px) auto 0;
}
@media screen and (max-width: 767px) {
  .layout01 .layout01-btn-list {
    margin-top: 40px;
  }
}
.layout01 .layout01-btn-list .layout01-btn-list__item {
  margin-right: clamp(0px, 5.7291666667vw, 110px);
}
.layout01 .layout01-btn-list .layout01-btn-list__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .layout01 .layout01-btn-list .layout01-btn-list__item {
    max-width: 180px;
    width: 100%;
    margin-right: 0;
  }
}
.layout01 .layout01-btn-list .layout01-btn-list__link {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
.layout01 .layout01-btn-list .layout01-btn-list__link .layout01-btn-list__img {
  position: relative;
  z-index: 1;
  transition: 0.2s;
}
.layout01 .layout01-btn-list .layout01-btn-list__link .layout01-btn-list__img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .layout01 .layout01-btn-list .layout01-btn-list__link:-webkit-any-link:hover .layout01-btn-list__img {
    opacity: 0;
  }
  .layout01 .layout01-btn-list .layout01-btn-list__link:-moz-any-link:hover .layout01-btn-list__img {
    opacity: 0;
  }
  .layout01 .layout01-btn-list .layout01-btn-list__link:any-link:hover .layout01-btn-list__img {
    opacity: 0;
  }
  .layout01 .layout01-btn-list .layout01-btn-list__link:-webkit-any-link:hover .layout01-btn-list__img--hvr01 {
    opacity: 0.8;
  }
  .layout01 .layout01-btn-list .layout01-btn-list__link:-moz-any-link:hover .layout01-btn-list__img--hvr01 {
    opacity: 0.8;
  }
  .layout01 .layout01-btn-list .layout01-btn-list__link:any-link:hover .layout01-btn-list__img--hvr01 {
    opacity: 0.8;
  }
}
.layout01 .layout01__bottom-img-box {
  margin-top: 30px;
}
.layout01 .layout01-playarea-img-box {
  max-width: 1145px;
  margin: 0 auto;
}
.layout01 .layout01-playarea-txt {
  margin-top: 50px;
  text-align: center;
  font-size: clamp(18px, 1.25vw, 24px);
  color: #707070;
}
@media screen and (max-width: 767px) {
  .layout01 .layout01-playarea-txt {
    margin-top: 20px;
  }
}

/* ゲームをカスタマイズ */
.umeko-and-takumi {
  display: none;
}
@media screen and (max-width: 767px) {
  .umeko-and-takumi {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    text-align: center;
  }
}

/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 15px 20px;
  z-index: 2;
}
@media screen and (max-width:600px) {
  .header {
    padding: 5px 20px;
  }
}
.header .header__logo {
  max-width: 337px;
  width: 24%;
}
.header .header__menu {
  display: flex;
  align-items: center;
  width: 76%;
  margin-left: 25px;
}
@media screen and (max-width:600px) {
  .header .header__menu--pc {
    display: none;
  }
}
.header .header__menu--sp {
  display: none;
}
@media screen and (max-width:600px) {
  .header .header__menu--sp {
    display: flex;
    position: fixed;
    top: 0;
    left: 100%;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 70px 0 30px;
    background: rgba(255, 255, 255, 0.85);
    overflow-y: auto;
    transition: 0.2s;
  }
  .header .header__menu--sp.is-open {
    left: 0;
  }
}
.header #menu-btn-check {
  display: none;
}
.header .header__menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #4d4d4d;
  z-index: 2;
}
@media screen and (max-width:600px) {
  .header .header__menu-btn {
    display: inline-flex;
  }
}
.header .header__menu-btn span,
.header .header__menu-btn span::before,
.header .header__menu-btn span::after {
  width: 30px;
  height: 2px;
  background-color: #fff;
  transition: 0.2s;
}
.header .header__menu-btn span {
  position: relative;
}
.header .header__menu-btn span::before, .header .header__menu-btn span::after {
  content: "";
  position: absolute;
  display: block;
}
.header .header__menu-btn span::before {
  bottom: 6px;
}
.header .header__menu-btn span::after {
  top: 6px;
}
.header #menu-btn-check:checked ~ .header__menu-btn span {
  background-color: rgba(255, 255, 255, 0);
}
.header #menu-btn-check:checked ~ .header__menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.header #menu-btn-check:checked ~ .header__menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.header #menu-btn-check:checked ~ .header__menu--sp {
  left: 0;
}
.header .header-menu-list {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .header .header-menu-list {
    margin-right: 10px;
  }
}
@media screen and (max-width:600px) {
  .header .header-menu-list {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }
}
.header .header-menu-list .header-menu-list__item {
  line-height: 0;
}
@media screen and (max-width:600px) {
  .header .header-menu-list .header-menu-list__item {
    width: 100%;
    line-height: 1.5;
  }
}
.header .header-menu-list .header-menu-list__link {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 100%;
  line-height: 0;
}
@media screen and (max-width:600px) {
  .header .header-menu-list .header-menu-list__link {
    margin-top: 1px;
    padding: 17px 40px;
    color: #666;
    line-height: 1.5;
  }
  .header .header-menu-list .header-menu-list__link.is-current {
    padding: 17px 20px;
    background: rgba(255, 255, 255, 0.7);
  }
  .header .header-menu-list .header-menu-list__link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    height: 100%;
    line-height: 1.5;
    border-bottom: 1px solid #ccc;
    z-index: 1;
  }
}
.header .header-menu-list .header-menu-list__link .header-menu-list__img {
  position: relative;
  z-index: 1;
  transition: 0.2s;
}
@media screen and (max-width:600px) {
  .header .header-menu-list .header-menu-list__link .header-menu-list__img {
    height: 100%;
    width: auto;
  }
}
.header .header-menu-list .header-menu-list__link .header-menu-list__img-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .header .header-menu-list .header-menu-list__link:-webkit-any-link:hover .header-menu-list__img {
    opacity: 0;
  }
  .header .header-menu-list .header-menu-list__link:-moz-any-link:hover .header-menu-list__img {
    opacity: 0;
  }
  .header .header-menu-list .header-menu-list__link:any-link:hover .header-menu-list__img {
    opacity: 0;
  }
}
.header .header-menu-list .header-menu-list__link.is-current {
  pointer-events: none;
}
.header .header-menu-list .header-menu-list__link.is-current .header-menu-list__img {
  opacity: 0;
}
.header .header__sub-menu .header__sub-menu-link {
  display: inline-block;
}
.header .header__sub-menu .header__sub-menu-link .header__sub-menu-img {
  transition: 0.2s;
}
@media screen and (max-width:600px) {
  .header .header__sub-menu .header__sub-menu-link {
    max-width: 140px;
    margin-top: 30px;
  }
}
@media (hover: hover) {
  .header .header__sub-menu .header__sub-menu-link:-webkit-any-link:hover .header__sub-menu-img {
    opacity: 0.8;
  }
  .header .header__sub-menu .header__sub-menu-link:-moz-any-link:hover .header__sub-menu-img {
    opacity: 0.8;
  }
  .header .header__sub-menu .header__sub-menu-link:any-link:hover .header__sub-menu-img {
    opacity: 0.8;
  }
}

/*------------------------------------------------------------
	下層ページ共通
------------------------------------------------------------*/
.sub-page .wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}
.sub-page .wrapper main {
  flex: 1;
}
.sub-page main {
  width: 100%;
  margin: clamp(50px, 3.6458333333vw, 70px) auto 40px;
}
@media screen and (max-width: 767px) {
  .sub-page main {
    margin: 40px auto 40px;
  }
}
.sub-page .layout01:first-child {
  margin-top: 0;
}

/*------------------------------------------------------------
	トップページ
------------------------------------------------------------*/
#page-home .fv {
  max-width: 1820px;
  width: calc(100% - 100px);
  margin: clamp(50px, 3.6458333333vw, 70px) auto 40px;
}
@media screen and (max-width: 767px) {
  #page-home .fv {
    width: calc(100% - 40px);
    margin: 20px auto 40px;
  }
}
#page-home .fv .fv__mainvisual-box {
  margin-bottom: 50px;
}
#page-home .fv .fv__catchcopy-box {
  padding: 50px 20px 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
}
#page-home .fv .fv__catchcopy-box .fv__catchcopy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(34px, 2.3958333333vw, 46px);
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  #page-home .fv .fv__catchcopy-box .fv__catchcopy {
    font-size: 28px;
  }
}
#page-home .fv .fv__catchcopy-box .fv__catchcopy span {
  display: block;
  font-size: clamp(28px, 1.9791666667vw, 38px);
}
@media screen and (max-width: 767px) {
  #page-home .fv .fv__catchcopy-box .fv__catchcopy span {
    font-size: 22px;
  }
}
#page-home .fv .fv__catchcopy-box .fv__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto;
  font-size: clamp(20px, 1.4583333333vw, 28px);
}
@media screen and (max-width: 767px) {
  #page-home .fv .fv__catchcopy-box .fv__txt {
    margin: 25px auto;
    font-size: 20px;
  }
}
#page-home .layout01 {
  /* モーションマッチャーとは */
  /* モーションキャプチャーとは */
  /* mocopiとは */
}
#page-home .layout01 .layout01__inner--motion-capture {
  margin-bottom: 0;
}
#page-home .layout01 .layout01-aboutmm {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  #page-home .layout01 .layout01-aboutmm {
    justify-content: center;
  }
}
#page-home .layout01 .layout01-aboutmm .layout01-aboutmm__txt-box {
  max-width: 450px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  #page-home .layout01 .layout01-aboutmm .layout01-aboutmm__txt-box {
    max-width: 100%;
    margin-right: 0;
  }
}
#page-home .layout01 .katsugekiza-img {
  margin-bottom: 30px;
}
@media screen and (max-width:414px) {
  #page-home .layout01 .katsugekiza-img {
    margin: 20px 0 0;
  }
}
#page-home .layout01 .layout01-logo-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50px 0 30px;
}
@media screen and (max-width:414px) {
  #page-home .layout01 .layout01-logo-list {
    flex-direction: column;
    margin: 30px 0;
  }
}
#page-home .layout01 .layout01-logo-list .layout01-logo-list__link {
  display: inline-block;
  margin: 20px;
}
@media (hover: hover) {
  #page-home .layout01 .layout01-logo-list .layout01-logo-list__link:-webkit-any-link:hover {
    opacity: 0.8;
  }
  #page-home .layout01 .layout01-logo-list .layout01-logo-list__link:-moz-any-link:hover {
    opacity: 0.8;
  }
  #page-home .layout01 .layout01-logo-list .layout01-logo-list__link:any-link:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width:414px) {
  #page-home .layout01 .layout01-logo-list .layout01-logo-list__link {
    max-width: 180px;
  }
}
#page-home .layout01 .layout01-mocopi-bg {
  position: absolute;
  top: 15%;
  right: 0;
  max-width: 778px;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #page-home .layout01 .layout01-mocopi-bg {
    top: 40%;
    right: 0;
  }
}
@media screen and (max-width:414px) {
  #page-home .layout01 .layout01-mocopi-bg {
    position: inherit;
    max-width: 200px;
    width: 100%;
    margin: -30px auto 0;
  }
}
#page-home .layout01 .layout01-mocopi-bg > img {
  width: auto;
  height: 100%;
}

/*------------------------------------------------------------
	遊び方ページ
------------------------------------------------------------*/
#page-howtoplay .layout01 .layout01-about {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: -50px;
  margin-bottom: 50px;
  color: #000;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  #page-howtoplay .layout01 .layout01-about {
    margin-top: -30px;
  }
}
@media screen and (max-width: 767px) {
  #page-howtoplay .layout01 .layout01-about {
    margin-top: 0;
  }
}
#page-howtoplay .layout01 .layout01-about .layout01-about__txt {
  flex: 1.6;
}
#page-howtoplay .layout01 .layout01-about .layout01-about__img-box {
  flex: 1;
  max-width: 635px;
}
#page-howtoplay .layout01 .layout01-instruction {
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  color: #000;
}
@media screen and (max-width: 767px) {
  #page-howtoplay .layout01 .layout01-instruction {
    display: inherit;
  }
}
#page-howtoplay .layout01 .lo01-instr-img-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 518px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #page-howtoplay .layout01 .lo01-instr-img-list {
    max-width: 500px;
    margin: 30px auto;
  }
}
#page-howtoplay .layout01 .lo01-instr-img-list .lo01-instr-img-list__item {
  margin-bottom: 10px;
}
#page-howtoplay .layout01 .lo01-instr-txt-list {
  counter-reset: number;
  margin-left: 64px;
  flex: 2;
}
@media screen and (max-width: 767px) {
  #page-howtoplay .layout01 .lo01-instr-txt-list {
    margin-left: 0;
  }
}
#page-howtoplay .layout01 .lo01-instr-txt-list .lo01-instr-txt-list__item {
  position: relative;
  margin-bottom: clamp(20px, 2.0833333333vw, 40px);
  padding-left: clamp(20px, 2.0833333333vw, 40px);
}
#page-howtoplay .layout01 .lo01-instr-txt-list .lo01-instr-txt-list__item:last-child {
  margin-bottom: 0;
}
#page-howtoplay .layout01 .lo01-instr-txt-list .lo01-instr-txt-list__item::after {
  counter-increment: number;
  content: counter(number) " ）";
  position: absolute;
  top: 0;
  left: 0;
}
#page-howtoplay .layout01 .lo01-instr-img-box {
  width: 70%;
  margin: 30px auto 0;
}
#page-howtoplay .img-list {
  display: flex;
  justify-content: space-between;
  margin: 36px auto 0;
}
#page-howtoplay .img-list .img-list__item {
  width: calc(25% - 10px);
}
@media screen and (max-width: 767px) {
  #page-howtoplay .img-list .img-list__item {
    width: calc(25% - 5px);
  }
}
#page-howtoplay .img-list .img-list__item-img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------------------------------------------------------
	実績ページ
------------------------------------------------------------*/
#page-record .layout01 .layout01__inner--record {
  max-width: 1800px;
}
#page-record .layout01 .layout01-record-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
#page-record .layout01 .layout01-record-list .layout01-record-list__item {
  position: relative;
  max-width: calc(50% - 50px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 25px;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  #page-record .layout01 .layout01-record-list .layout01-record-list__item {
    max-width: 100%;
    margin: 10px 0;
  }
}
#page-record .layout01 .layout01-record-list .layout01-record-list__img {
  aspect-ratio: 693/400;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
#page-record .layout01 .layout01-record-list .layout01-record-list__info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 10px;
  color: #fff;
  text-shadow: 1px 1px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 1px 0 0 #000, -1px 0 0 #000, 0 1px 0 #000, 0 -1px 0 #000; /* 右上方向に影 */
  font-size: clamp(14px, 1.0416666667vw, 20px);
  background-color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid #707070;
}
@media screen and (max-width:414px) {
  #page-record .layout01 .layout01-record-list .layout01-record-list__info {
    position: inherit;
  }
}
/*# sourceMappingURL=base.css.map */