@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

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

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

html {
  font-size: 62.5%;
}
@media screen and (max-width: 320px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  font-size: 1.8em;
  line-height: 1.5;
  word-wrap: break-word;
}

a {
  text-decoration: none;
  transition: 0.4s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

main {
  display: block;
}

:root {
  --font-co: #42525D;
  --main: #2D88B9;
  --main2: #46AADC;
  --back: #F7F9FA;
}

body {
  color: var(--font-co);
}

img {
  display: inline-block;
}

.container {
  width: 1000px;
  margin: 0 auto;
  max-width: 90%;
}
.container1200 {
  width: 1200px;
  margin: 0 auto;
  max-width: 90%;
}
a {
  display: inline-block;
}

.back {
  background-color: var(--back);
}

@media screen and (min-width: 768px) {
  .pad80 {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .pad80 {
    padding: 6.6666666667vw 0;
  }
}

.bold {
  font-weight: bold;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

@media screen and (min-width: 768px) {
  .font16 {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .font16 {
    font-size: 3.2vw;
  }
}

@media screen and (min-width: 768px) {
  .font18 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .font18 {
    font-size: 3.3333333333vw;
  }
}

@media screen and (min-width: 768px) {
  .font20 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .font20 {
    font-size: 3.6vw;
  }
}

.red {
  color: #E73B31;
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 方向別の初期位置（少しずらしておく） */
.v-up {
  transform: translateY(50px);
}

.v-down {
  transform: translateY(-50px);
}

.v-left {
  transform: translateX(-50px);
}

.v-right {
  transform: translateX(50px);
}

/* 表示された時の状態 */
.fade-in.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* 個別：表示を遅らせる設定 */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}