@charset "UTF-8";
/*
	##### OGIS #####
	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: 51, 51, 51; /*#333*/ /*main-black*/
  --rgb-2: 151, 151, 151; /*#979797*/ /*gray*/
  --rgb-3: 0, 91, 172; /*#005bac*/ /*logo-blue*/
  --rgb-4: 230, 0, 57; /*#e60039*/ /*logo-red*/
  --rgb-5: 217, 217, 217; /*#d9d9d9*/ /*line-gray*/
  --rgb-6: 0, 20, 96; /* #001460 */ /*text-blue*/
  --color-1: rgb(var(--rgb-1));
  --color-2: rgb(var(--rgb-2));
  --color-3: rgb(var(--rgb-3));
  --color-4: rgb(var(--rgb-4));
  --color-5: rgb(var(--rgb-5));
  --color-6: rgb(var(--rgb-6));
  --bg-col: #d7eaf9;
}

html {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: .04em;
  line-height: 1;
  color: var(--color-1);
  position: relative;
}
img {
  outline: none;
  vertical-align: bottom;
  pointer-events: none
}
a {
  color: currentColor
}


/* --------------------------------------------------
fonts / text / format
-------------------------------------------------- */
:target {
  scroll-margin-top: 110px;

  @media (width < 768px) {
    scroll-margin-top: calc(140 / 750 * 100vw);
  }
  @media (width > 1400px) {
    scroll-margin-top: calc(110 / 1400 * 100vw)
  }
}

.contents-area {
  display: block;
  width: 100vw;
  padding-top: 100px;

  @media (width < 768px) {
    padding-top: calc(120/750*100vw);
  }
  @media (width > 1400px) {
    padding-top: calc(100/1400*100vw)
  }
}

.en {
  font-family: "Catamaran", sans-serif;
}
.yumin {
  font-family: "Yu Mincho", "YuMincho", serif;
}

.main-color {
  color: var(--color-3)
}
.gray {
  color: var(--color-2)
}

b {
  font-weight: 600;
}
.txt p + p {
  margin-top: 2em;
}

.img-box img {
  max-width: none;
  width: 100%;
  height: 100%;
  object-fit: cover
}
.small {
  font-size: 80%;
}
.ex-note {
  font-size: 12px;

  @media (width < 768px) {
    font-size: 85%;
  }
  @media (width > 1400px) {
    font-size: calc(12 / 1400 * 100vw);
  }
}

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

.reset-list,
.reset-list li {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.simple-list {
  padding-inline-start: 1em;
}
.simple-list li {
  list-style-type: disc;
}

.mt1em {
  margin-top: 1em;
}

.mb1em {
  margin-bottom: 1em;
}

.mt2em {
  margin-top: 2em;
}

.mb2em {
  margin-bottom: 2em;
}

.nobr {
  white-space: nowrap
}

.hideOnPC {
  display: none;

  @media (width < 768px) {
    display: inherit
  }
}

@media (width < 768px) {
  .hideOnSP {
    display: none
  }
}

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



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

.fade {
	opacity: 0;
}
.fade.start {
	animation: simple-fi .9s ease-in-out .2s both
}
.action.start {
	animation-delay: calc(var(--el-index) * .1s);
}


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

@keyframes simple-fi {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scrollbar {
  0% {
    transform-origin: top center;
    transform: scale(1, 0);
  }
  30% {
    transform-origin: top center;
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1, 1);
    transform-origin: bottom center;
  }
  90% {
    transform: scale(1, 0);
    transform-origin: bottom center;
  }
  100% {
    transform: scale(1, 0);
  }
}
