/* 
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, sub, sup, 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, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  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;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

body {
  font-family: "Hiragino Kaku Gothic ProN","Helvetica Neue",Arial, "Hiragino Sans",Meiryo,sans-serif;
  color: #333;
}

.first-view {
  height: 45vh;
  background-image: url(../images/fifth.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.first-view .header {
  height: 64px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.first-view .header .header-list {
  width: 100%;
}

.first-view .header .header-list ul {
  width: 100%;
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 20px;
}

.first-view .header .header-list ul li {
  list-style: none;
  padding: 15px 30px;
}

.first-view .header .header-list ul li a {
  transition: .5s;
  color: white;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
}

.first-view .header .header-list ul li a:hover {
  color: orange;
  transition: .5s;
}

.first-view .header li a {
  display: flex;
  text-align: center;
}

.first-view .header li a .text-sm {
  font-size: 0.5em;
}

.first-view .first__title {
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  position: absolute;
  bottom: 10px;
  left: 30px;
}

.first-view .first__title h1 {
  font-size: 3.5rem;
}

.first-view .first__title p {
  font-size: 1rem;
  padding-left: 10px;
}

.nav-container {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: 100%;
}

.nav-container .nav {
  background: #fff;
  position: absolute;
  right: 0;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.5, 0, 0.5, 1);
  z-index: 99;
  height: auto;
}

.nav-container .nav .nav__toggle {
  position: absolute;
  top: 2em;
  left: 0;
  transform: translateX(-100%);
  background: #fff;
  padding: 1em .5em;
  border: 0;
  border-radius: .25em 0 0 .25em;
}

.nav-container .nav .nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 3em 6em;
}

.nav-container .nav .nav__list .nav__item {
  margin-bottom: 3em;
}

.nav-container .nav .nav__list .nav__item a {
  text-align: center;
}

.nav-container .nav .nav__list .nav__item a .text-sm {
  font-size: 0.5em;
}

.nav-container .nav .nav__list .nav__item .nav__link {
  text-decoration: none;
  color: #333;
}

.nav-container .nav .nav__list .nav__item .nav__link:hover {
  color: var(--primary-clr);
}

.hamburger {
  display: block;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 2em;
  height: 3px;
  background: #333;
  transition: transform 350ms ease-in-out, opacity 200ms linear;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  bottom: 6px;
}

.hamburger::after {
  top: 6px;
}

.nav-open .nav {
  transform: translateX(0);
  box-shadow: 0 0 4em rgba(0, 0, 0, 0.537);
}

.nav-open .hamburger {
  transform: rotate(45deg);
}

.nav-open .hamburger:before {
  opacity: 0;
}

.nav-open .hamburger:after {
  transform: rotate(90deg) translate(-6px);
}

@media (min-width: 450px) {
  .nav {
    display: none;
  }
}

@media (max-width: 450px) {
  .first-view {
    height: 30vh;
  }
  .first-view .header {
    display: none;
  }
  .first-view .first__title h1 {
    font-size: 2.5rem;
  }
  .first-view .first__title p {
    font-size: 0.9rem;
  }
}

@media (min-width: 1500px) {
  .first-view .first__title h1 {
    font-size: 4.5rem;
  }
  .first-view .first__title p {
    font-size: 2.9rem;
  }
}

.first-view .headerColor-default {
  background-color: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid #6e6c6c;
}

.first-view .headerColor-default .header-list ul li a {
  color: #333;
}

.flow-img {
  padding-top: 60px;
  text-align: center;
}

.flow-img img {
  width: 80%;
  max-width: 1000px;
}

@media (max-width: 450px) {
  .flow-img img {
    width: 95%;
  }
}

.flow-line {
  padding-top: 10%;
  margin: 0 auto;
  max-width: 1000px;
}

.flow-line .flow-item {
  padding-bottom: 8%;
}

.flow-line .flow-item .flow-title {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

.flow-line .flow-item .flow-title .number {
  font-size: 35px;
  padding-right: 8px;
  transform: scale(0.7, 1);
  color: #686767;
}

.flow-line .flow-item .flow-title .title {
  font-size: 20px;
}

.flow-line .flow-item .flow-desc {
  padding-top: 20px;
  padding-left: 60px;
  line-height: 1.4rem;
}

@media (max-width: 450px) {
  .flow-line {
    padding: 10% 5%;
  }
}

.contact {
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
}

.contact .contact-title {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding-bottom: 40px;
}

.contact .contact-title h1 {
  font-size: 3rem;
}

.contact .contact-title p {
  font-size: 1rem;
  padding-left: 10px;
}

.contact .send-line label {
  display: block;
  padding: 1rem 0 .5rem;
  text-transform: uppercase;
  font-style: 14px;
}

.contact .send-line input, .contact .send-line textarea {
  display: block;
  width: 100%;
  border: 2px solid #eee;
  padding: .3rem;
  font-size: 13px;
  border-radius: 5px;
}

.contact .send-line textarea {
  height: 120px;
}

@media (max-width: 450px) {
  .contact .contact-title h1 {
    font-size: 2rem;
  }
  .contact .contact-title p {
    font-size: 0.7rem;
  }
}

.must {
  background: #f33;
}

.free {
  background: #999;
}

.must,
.free {
  color: #FFF;
  border-radius: 3px;
  font-size: 10px;
  margin-right: 10px;
  padding: 4px 8px;
  letter-spacing: 0.2em;
}

#sendBtn {
  border: 0;
  background-color: rgba(63, 62, 62, 0.856);
  padding: 5px 15px;
  color: #fff;
  margin: 15px 0;
  width: auto;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
}

#sendBtn:hover {
  background-color: #aca4a4;
}

.footer {
  height: 30px;
  background-color: rgba(51, 51, 51, 0.479);
}

.footer p {
  text-align: center;
  color: #fff;
  padding-top: 10px;
  font-size: 8px;
}
