/* --------------------------------------------------
	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: "Inter", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 1.4rem;
  background: #fff;
  line-height: 1.5;
  color: #313131;
  letter-spacing: .1rem;
  font-weight: 400; }

@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 {
  color: #313131;
  text-decoration: none;
  transition: all 0.5s;
  cursor: pointer; }

@media only screen and (min-width: 1024px) {
  a:hover, a:focus, a:active {
    color: #313131;
    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: "Inter", "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: "Inter", "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; }

/* --------------------------------------
		007 base
-------------------------------------- */
#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; }

input[type="text"], input[type="tel"], input[type="password"] {
  width: 100%;
  height: 5rem;
  border: 1px solid #d2d2d2;
  border-radius: .3rem;
  background: #fff;
  box-shadow: inset 0.3rem 0.3rem 0 0 rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem; }

.select-form {
  height: 5rem;
  overflow: hidden;
  border-radius: .3rem;
  border: 1px solid #eeeeee;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .select-form {
      height: 4rem; } }
  .select-form.error {
    border-color: #e8280f;
    background: #FEEFEE; }
    .select-form.error:after {
      background: #FEEFEE; }
  .select-form:after {
    width: 1.2rem;
    height: 1.2rem;
    line-height: 1;
    text-align: center;
    content: "\e916";
    font-family: 'icomoon';
    color: #f36e47;
    background: #fff;
    top: 50%;
    margin-top: -.7rem;
    position: absolute;
    z-index: 1;
    font-size: 1.8rem;
    right: 2rem; }
    @media only screen and (max-width: 767px) {
      .select-form:after {
        font-size: 1.5rem;
        right: 1.5rem; } }
  .select-form > select {
    width: 130%;
    line-height: 4.8rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    border-radius: 0;
    border: 0;
    margin: 0;
    padding: 0 3rem 0 1.5rem;
    background: transparent;
    vertical-align: middle;
    font-size: inherit;
    color: inherit;
    box-sizing: content-box;
    z-index: 2;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .select-form > select {
        line-height: 3.8rem;
        padding: 0 2rem 0 1rem; } }
    .select-form > select::-ms-expand {
      display: none; }
    .select-form > select:focus {
      border: none;
      outline: none;
      box-shadow: none; }

/* --------------------------------------
		108 parts btn / nav
-------------------------------------- */
.btn-cancel {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 10rem;
  max-width: 100%;
  width: 24rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  outline: none;
  box-shadow: none; }
  @media only screen and (max-width: 767px) {
    .btn-cancel {
      width: 100%;
      max-width: 20rem;
      font-size: 1.4rem;
      height: 4rem; } }
  @media only screen and (min-width: 1024px) {
    .btn-cancel:hover {
      background: #eeeeee; } }
.btn-enter {
  background: #f36e47;
  color: #fff;
  border-radius: 10rem;
  border: 0.2rem solid #f36e47;
  max-width: 100%;
  width: 24rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  outline: none;
  box-shadow: none; }
  @media only screen and (max-width: 767px) {
    .btn-enter {
      width: 100%;
      font-size: 1.4rem;
      height: 4rem; } }
  @media only screen and (min-width: 1024px) {
    .btn-enter:hover {
      background: #fff;
      color: #f36e47; } }
.btn-normal {
  background: #fff;
  border: 1px solid #eeeeee;
  border-radius: 10rem;
  width: 20rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f36e47;
  position: relative;
  font-size: 1.4rem;
  outline: none;
  box-shadow: none; }
  @media only screen and (max-width: 767px) {
    .btn-normal {
      width: 16rem;
      font-size: 1.2rem;
      height: 3.2rem; } }
  .btn-normal i {
    opacity: 0.5;
    position: absolute;
    right: 1rem;
    font-size: 1.6rem;
    line-height: 1;
    top: 50%;
    margin: -.5em 0 0 0; }
    @media only screen and (max-width: 767px) {
      .btn-normal i {
        font-size: 1.4rem; } }
  @media only screen and (min-width: 1024px) {
    .btn-normal:hover {
      background: #f36e47;
      color: #fff; } }
.btn-more {
  background: #f36e47;
  color: #fff;
  border-radius: 10rem;
  border: 0.2rem solid #f36e47;
  width: 24rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.5rem;
  outline: none;
  box-shadow: none; }
  @media only screen and (max-width: 767px) {
    .btn-more {
      width: 20rem;
      font-size: 1.4rem;
      height: 4rem; } }
  .btn-more i {
    position: absolute;
    right: 1.5rem;
    line-height: 1;
    top: 50%;
    margin: -.5em 0 0 0;
    font-size: 1.8rem; }
    @media only screen and (max-width: 767px) {
      .btn-more i {
        font-size: 1.6rem; } }
  @media only screen and (min-width: 1024px) {
    .btn-more:hover {
      background: #fff;
      color: #f36e47; } }
.btn-up {
  position: fixed;
  bottom: 10vh;
  right: 3%;
  z-index: 9999; }
  .btn-up a {
    width: 6rem;
    height: 6rem;
    display: block;
    color: #fff;
    text-align: center;
    border-radius: 50%; }
    .btn-up a i {
      display: block;
      font-size: 2.8rem;
      line-height: 6rem; }
    @media only screen and (max-width: 1023px) {
      .btn-up a {
        width: 4.5rem;
        height: 4.5rem; }
        .btn-up a i {
          line-height: 4.5rem;
          font-size: 2rem; } }
    @media only screen and (min-width: 1024px) {
      .btn-up a:hover {
        opacity: 0.8; } }
.btn-back {
  width: 100%;
  margin-bottom: 3rem;
  display: flex;
  justify-content: flex-end; }
  @media only screen and (max-width: 1023px) {
    .btn-back {
      margin-bottom: 2vh; } }
  .btn-back a {
    width: 12rem;
    height: 5rem;
    border: 0.1rem solid #eeeeee;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .5rem; }
    @media only screen and (max-width: 767px) {
      .btn-back a {
        width: 9rem;
        font-size: 1.1rem;
        height: 3.2rem; } }
    .btn-back a i {
      font-size: 1.6rem;
      color: #a0a0a0;
      margin-right: .8rem; }
      @media only screen and (max-width: 767px) {
        .btn-back a i {
          font-size: 1.1rem; } }
    @media only screen and (min-width: 1024px) {
      .btn-back a:hover {
        background: #eeeeee; } }
.btn-pdf a {
  width: 24rem;
  height: 4.5rem;
  background: #434343;
  border-radius: .5rem;
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (min-width: 1024px) {
    .btn-pdf a:hover {
      background: #313131; } }
  .btn-pdf a i {
    font-size: 114%;
    margin-right: 1rem; }

.nav-page {
  padding: 0 0 15vh 0;
  display: flex;
  justify-content: center; }
  @media only screen and (max-width: 1023px) {
    .nav-page {
      padding-bottom: 10vw; } }
  .nav-page ul {
    display: flex;
    justify-content: center;
    border-top: 0.1rem solid #eeeeee;
    border-bottom: 0.1rem solid #eeeeee;
    margin: 0 auto; }
    .nav-page ul li {
      font-size: 1.4rem; }
      @media only screen and (max-width: 767px) {
        .nav-page ul li {
          font-size: 1.2rem; } }
      .nav-page ul li a, .nav-page ul li span {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 4.8rem;
        text-align: center;
        min-width: 13rem; }
        @media only screen and (max-width: 767px) {
          .nav-page ul li a, .nav-page ul li span {
            min-width: 0;
            padding: 0 1rem;
            font-size: 1.2rem; } }
      .nav-page ul li span {
        opacity: 0.2; }
.nav-number {
  padding: 4rem 0 0;
  font-size: 1.4rem; }
  @media only screen and (max-width: 767px) {
    .nav-number {
      padding-top: 5vh;
      font-size: 1.2rem; } }
  .nav-number ul {
    display: flex;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .nav-number ul {
        justify-content: center; } }
    .nav-number ul li {
      margin: .25rem .25rem; }
      .nav-number ul li i {
        font-size: 1.6rem;
        letter-spacing: 0; }
      .nav-number ul li a, .nav-number ul li span {
        width: 4rem;
        height: 4rem;
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 0.1rem solid #eeeeee;
        color: #999;
        border-radius: .3rem; }
        @media only screen and (max-width: 767px) {
          .nav-number ul li a, .nav-number ul li span {
            width: 3.6rem;
            height: 3.6rem; } }
      .nav-number ul li span {
        opacity: 0.4;
        pointer-events: none; }
      @media only screen and (min-width: 1024px) {
        .nav-number ul li a:hover {
          color: #f36e47;
          border-color: #f36e47; } }
      .nav-number ul li.current a {
        background: #f36e47;
        border-color: #f36e47;
        color: #fff; }

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  display: none;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0; }
  .overlay.open {
    display: block;
    z-index: 99999; }

.modal {
  width: 90%;
  max-width: 60rem;
  background: #fff;
  border-radius: 1rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  display: none;
  z-index: 0;
  padding: 4.5rem 6rem; }
  @media only screen and (max-width: 767px) {
    .modal {
      width: 90%;
      padding: 2.5rem 2rem; } }
  .modal.open {
    display: block;
    z-index: 99999; }
  .modal-icon {
    margin-bottom: 2rem; }
    @media only screen and (max-width: 767px) {
      .modal-icon {
        margin-bottom: 1rem; } }
    .modal-icon i {
      width: 6rem;
      height: 6rem;
      font-size: 2.4rem;
      color: #f36e47;
      background: rgba(243, 110, 71, 0.1);
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      letter-spacing: 0;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        .modal-icon i {
          width: 5rem;
          height: 5rem;
          font-size: 2rem; } }
  .modal-catch {
    font-size: 2rem;
    padding-bottom: 2.5rem;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .modal-catch {
        font-size: 1.6rem; } }
  .modal-txt {
    font-size: 1.5rem;
    padding-bottom: 2.5rem; }
    @media only screen and (max-width: 767px) {
      .modal-txt {
        font-size: 1.2rem; } }
  .modal-close {
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    display: block; }
    .modal-close__wrap {
      position: absolute;
      right: 2rem;
      top: 4rem; }
      @media only screen and (max-width: 767px) {
        .modal-close__wrap {
          top: 2rem;
          right: 1rem; } }
    .modal-close span {
      position: relative;
      width: 100%;
      height: .2rem;
      background: #666;
      display: block; }
      .modal-close span:nth-child(1) {
        transform: rotate(45deg);
        bottom: -0.1rem; }
      .modal-close span:nth-child(2) {
        transform: rotate(-45deg);
        top: -0.1rem; }

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?1zip0a");
  src: url("../fonts/icomoon.eot?1zip0a#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?1zip0a") format("truetype"), url("../fonts/icomoon.woff?1zip0a") format("woff"), url("../fonts/icomoon.svg?1zip0a#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }
[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-change:before {
  content: "\e90a"; }

.icon-yr:before {
  content: "\e912"; }

.icon-d:before {
  content: "\e916"; }

.icon-l:before {
  content: "\e917"; }

.icon-r:before {
  content: "\e918"; }

.icon-back:before {
  content: "\e900"; }

.icon-dl:before {
  content: "\e901"; }

.icon-unlock:before {
  content: "\e902"; }

.icon-company:before {
  content: "\e903"; }

.icon-flag:before {
  content: "\e904"; }

.icon-gensen:before {
  content: "\e905"; }

.icon-home:before {
  content: "\e906"; }

.icon-nenmatsu:before {
  content: "\e907"; }

.icon-news:before {
  content: "\e908"; }

.icon-user:before {
  content: "\e909"; }

#wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100vh;
  min-height: 55rem; }

.header {
  width: 50%;
  height: calc(100vh - 21rem);
  min-height: 34rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative; }
  @media only screen and (max-width: 1023px) {
    .header {
      height: calc(100vh - 18rem); } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .header {
      width: 100%;
      height: auto;
      padding: 5vh 5vw 3vh;
      background: rgba(243, 110, 71, 0.1); } }

  .header:after {
    content: "";
    border-style: solid;
    border-width: 2rem;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    right: -4rem;
    top: 50%;
    margin-top: -2rem; }
    @media only screen and (max-width: 767px) {
      .header:after {
        display: none; } }
  .header-logo {
    width: 24rem;
    margin-bottom: 1rem; }
    @media only screen and (max-width: 767px) {
      .header-logo {
        width: 20rem; } }
  .header-fig {
    margin-bottom: 2rem; }
    @media only screen and (max-width: 767px) {
      .header-fig {
        margin-bottom: 1.5rem; } }
    .header-fig i {
      width: 9.5rem;
      height: 9.5rem;
      border-radius: 50%;
      background: rgba(243, 110, 71, 0.1);
      font-size: 6rem;
      letter-spacing: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #f36e47;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        .header-fig i {
          width: 7.2rem;
          height: 7.2rem;
          font-size: 5rem;
          background: #fff; } }
    .header-fig figcaption {
      font-size: 2.2rem;
      line-height: 1;
      position: relative;
      text-align: center;
      top: -.5rem;
      color: #f36e47;
      font-weight: 700; }
  .header p {
    max-width: 26rem; }
    @media only screen and (max-width: 767px) {
      .header p {
        font-size: 1.2rem;
        max-width: 100%; } }

.container {
  width: 50%;
  height: calc(100vh - 21rem);
  min-height: 34rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(243, 110, 71, 0.1); }
  @media only screen and (max-width: 1023px) {
    .container {
      height: calc(100vh - 18rem); } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .container {
      width: 100%;
      height: auto;
      padding: 3vh 5vw;
      background: #fff; } }

  .container form {
    width: 34rem; }
    @media only screen and (max-width: 767px) {
      .container form {
        width: 100%; } }
  .container .form-btn {
    text-align: center;
    padding-top: 1.5rem; }
    @media only screen and (max-width: 767px) {
      .container .form-btn {
        padding-top: 1rem; } }
    .container .form-btn button {
      font-weight: 700;
      font-size: 1.6rem;
      box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
      margin: 0 auto; }
    .container .form-btn p {
      font-size: 1.2rem;
      padding-top: 1.5rem; }
      .container .form-btn p a {
        text-decoration: underline; }
        @media only screen and (min-width: 1024px) {
          .container .form-btn p a:hover {
            text-decoration: none; } }
  .container dl div {
    margin-bottom: 2rem; }
    @media only screen and (max-width: 767px) {
      .container dl div {
        margin-bottom: 1.5rem; } }
    .container dl div dt {
      font-size: 1.6rem;
      padding-bottom: 1rem; }
      @media only screen and (max-width: 767px) {
        .container dl div dt {
          font-size: 1.4rem;
          padding-bottom: .5rem; } }
    .container dl div dd {
      font-size: 1.6rem; }
  .container > p {
    font-weight: 700;
    color: #e8280f;
    padding-bottom: 1em;
    width: 34rem; }
    @media only screen and (max-width: 767px) {
      .container > p {
        width: 100%; } }

.aside-bnr {
  padding: 2rem 2rem 1rem; }
  @media only screen and (max-width: 1023px) {
    .aside-bnr {
      padding: 1.5rem 1rem 1rem; } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .aside-bnr {
      padding: 1rem 1rem .5rem; } }

  .aside-bnr ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; }
    .aside-bnr ul li {
      margin: 1rem; }
      @media only screen and (max-width: 1023px) {
        .aside-bnr ul li {
          margin: 1rem; } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .aside-bnr ul li {
      margin: .5rem; } }

      .aside-bnr ul li img {
        max-width: 30rem; }
        @media only screen and (max-width: 1023px) {
          .aside-bnr ul li img {
            max-width: 20rem; } }

.footer {
  width: 100%;
  background: #eeeeee; }
  @media only screen and (max-width: 1023px) {
    .footer {
      height: 18rem; } }
  @media only screen and (max-width: 1023px) and (max-width: 767px) {
    .footer {
      height: auto; } }

  .footer-copy {
    font-size: 1rem;
    line-height: 4rem;
    color: #888;
    text-align: center; }
