@charset "UTF-8";
/*
	##### MFR #####
	assets/css/common.css
*/

/* A Modern CSS Reset */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  font-size: 100%
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

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

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}




/* --------------------------------------------------
init
-------------------------------------------------- */
:root {
  --rgb-1: 0, 113, 255; /*#0071FF*/ /*blue*/
  --rgb-2: 255, 2, 0; /*#FF0200*/ /*red*/
  --rgb-3: 1, 51, 122; /*#01337A*/ /*dark-blue*/
  --color-1: rgb(var(--rgb-1));
  --color-2: rgb(var(--rgb-2));
  --color-3: rgb(var(--rgb-3));
}

html {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", Hiragino Kaku Gothic Pro, "ヒラギノ角ゴシック Pro", Meiryo, "メイリオ", Osaka, MS PGothic, "ＭＳ Ｐゴシック",sans-serif;
  font-optical-sizing: auto;
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow: hidden;
  overflow-y: scroll;
}
body {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #000;
}
img {
  vertical-align: bottom;
  outline: none;
  pointer-events: none
}

a {
  color: #000
}



/* --------------------------------------------------
fonts 
-------------------------------------------------- */

.en {
  font-family: Helvetica, 'Helvetica Neue', Arial, sans-serif;
}

b {
  font-weight: 700
}

.center {
  text-align: center;
}

/* --------------------------------------------------
tools 
-------------------------------------------------- */


.hideOnPC {
  display: none
}

@media (max-width: 767px) {
  .hideOnPC {
    display: unset
  }
  .hideOnSP {
    display: none
  }
}

html.open,
.open body {
	overflow: hidden;
}


/* --------------------------------------------------
effects
-------------------------------------------------- */

.fade {
	opacity: 0
}
.fade.start {
	animation: simple-fi .9s ease-in-out .25s both
}
.fade.fast.start {
	animation: simple-fi .3s ease-in-out .25s both
}

/* --------------------------------------------------
keyframes 
-------------------------------------------------- */

@keyframes simple-fi {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}


/* for global navi */
@keyframes slide-down {
  0% {
    transform: translateY(-100%)
  }
  100% {
    transform: translateY(0)
  }
}

/* --------------------------------------------------
parts
-------------------------------------------------- */
.container {
  width: 100dvw;
}

.main-color {
  color: var(--color-1)
}

.img-box {
  display: block;

  & picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  & img {
    display: block;
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover
  }
}

.reset-list,
.reset-list > li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

