/* --------------------------------------------------
	000.margin and padding
-------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
object, iframe, pre, code, p, blockquote,
form, fieldset, legend,
table, th, td, caption, tbody, tfoot, thead,
article, aside, figure, footer, header,
hgroup, menu, nav, section, audio, video, canvas, main {
  margin: 0;
  padding: 0;
}

article, aside, figure, figcaption, footer,
h1, h2, h3, h4, h5, h6, header, hgroup, menu, nav, section, main {
  display: block;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* --------------------------------------------------
	001.HTML, Body, Anchor
-------------------------------------------------- */
html {
  font-size: 62.5%;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 1.4rem;
  background: #fff;
  line-height: 1.5;
  letter-spacing: .1rem;
  font-weight: 400;
  color: #192b4c;
}

@media only screen and (min-width: 1024px) {
  .sp-visible {
    display: none !important;
  }

  .tablet-visible {
    display: none !important;
  }
}
@media only screen and (max-width: 1023px) {
  .tablet-hidden {
    display: none;
  }

  .sp-visible {
    display: none !important;
  }
}
@media only screen and (max-width: 1023px) and (max-width: 767px) {
  .sp-visible {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.125vw;
  }

  .sp-hidden {
    display: none !important;
  }

  select,
  textarea,
  input[type='url'],
  input[type='text'],
  input[type='date'],
  input[type='tel'],
  input[type='email'],
  input[type='submit'] {
    -webkit-appearance: none;
  }
}
span.link,
a {
  text-decoration: none;
  transition: all 0.5s;
  cursor: pointer;
  color: #192b4c;
}
@media only screen and (min-width: 1024px) {
  span.link:hover, span.link:focus, span.link:active,
  a:hover,
  a:focus,
  a:active {
    color: #192b4c;
    text-decoration: none;
  }
}

/* --------------------------------------------------
	002.Heading, Paragraph
-------------------------------------------------- */
dt, h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 700;
}

p {
  line-height: 1.5;
}

/* --------------------------------------------------
	003.List
-------------------------------------------------- */
ol, ul, li {
  list-style: none;
}

/* --------------------------------------------------
	004.Table
-------------------------------------------------- */
table {
  font-size: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

/* --------------------------------------------------
	005.Form
-------------------------------------------------- */
fieldset {
  border: none;
}

input, textarea, select, label {
  font-size: 1.6rem;
  font-family: "Manrope", "Noto Sans JP", sans-serif;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (max-width: 767px) {
  input, textarea, select {
    box-sizing: border-box;
  }

  label {
    font-size: 1.4rem;
  }
}
button {
  font-family: "Manrope", "Noto Sans JP", sans-serif;
}

label {
  cursor: pointer;
}

textarea {
  overflow: auto;
}

legend {
  display: none;
}

/* --------------------------------------------------
	006.Other
-------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

object {
  vertical-align: middle;
  outline: none;
}

em {
  font-style: italic;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 100%;
}

i {
  font-style: normal;
}

u {
  text-decoration: none;
}

abbr, acronym {
  border: none;
  font-variant: normal;
}

address, caption, cite, code, dfn, var {
  font-weight: normal;
  font-style: normal;
}

sup {
  font-size: 1em;
  vertical-align: text-top;
}

sub {
  font-size: 1em;
  vertical-align: text-bottom;
}

hr {
  display: none;
}

/* --------------------------------------
		101 outline
-------------------------------------- */
#wrap {
  position: relative;
}

div:focus,
img:focus,
textarea:focus,
a:focus,
button:focus,
input:focus {
  outline: none;
  box-shadow: none;
}

#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 1s;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  opacity: 1;
}
#loader.on {
  opacity: 0;
  z-index: -1;
}

body #wrap {
  z-index: -1;
  position: relative;
}
body #wrap.on {
  z-index: 1;
}

/* --------------------------------------
		102 header
-------------------------------------- */
.header {
  width: 100%;
  height: 6.8rem;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  left: 0;
  top: 0;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  .header {
    height: auto;
    flex-wrap: wrap;
  }
}
.header-logo {
  flex-shrink: 0;
  width: 21.2rem;
  margin-left: 3%;
}
@media only screen and (max-width: 767px) {
  .header-logo {
    width: 16rem;
  }
}
.header-entry {
  width: 19rem;
  margin: auto 3vw 0;
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  .header-entry {
    width: 94vw;
    display: flex;
    justify-content: flex-end;
    margin-top: .5rem;
  }
}
.header-entry a {
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: .2rem solid #fff;
  border-radius: 5rem;
  font-weight: 700;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .header-entry a {
    width: 16rem;
    font-size: 1.3rem;
    height: 3.6rem;
    border-width: .1rem;
    margin-left: auto;
  }
}
.header-entry a:hover {
  color: #192b4c;
  background: #fff;
}
.header-link {
  width: 21rem;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .header-link {
    width: 12rem;
    margin-right: 3vw;
  }
}
.header-link a {
  height: 6.8rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 0 0 1rem 1rem;
}
@media only screen and (max-width: 767px) {
  .header-link a {
    padding: 1rem;
    height: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .header-link a:hover {
    height: 7.8rem;
    padding-top: 1rem;
  }
}
.header-link p {
  font-size: 1rem;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .header-link p {
    display: none;
  }
}
.header-link img {
  width: 17.3rem;
}

/* --------------------------------------
		103 content
-------------------------------------- */
#wrap {
  overflow: hidden;
}

/* --------------------------------------
		104 footer
-------------------------------------- */
.div-top {
  position: fixed;
  bottom: 10vh;
  right: 3%;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  .div-top {
    bottom: 5vh;
  }
}
.div-top a {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  color: #fff;
  background: rgba(25, 43, 76, 0.9);
  text-align: center;
  border-radius: 50%;
}
.div-top a span {
  font-size: 2.8rem;
}
@media only screen and (max-width: 1023px) {
  .div-top a {
    width: 4.5rem;
    height: 4.5rem;
  }
  .div-top a span {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .div-top a:hover {
    opacity: 0.8;
  }
}

.footer-copy {
  font-size: 1.2rem;
  line-height: 1;
  text-align: center;
  padding: 3rem;
}
@media only screen and (max-width: 767px) {
  .footer-copy {
    padding: 1.8rem;
    font-size: 1rem;
  }
}
