@charset "UTF-8";
/* --------------------------------------------------
	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"; }

/* --------------------------------------
		101 header
-------------------------------------- */
.header {
  width: 100%;
  height: 8rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .header {
      height: 5rem; } }
  .header:after {
    content: "";
    width: 100%;
    height: 1rem;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 100%); }
  .header-logo {
    flex-shrink: 0;
    text-align: center;
    padding: 0 2.5rem; }
    @media only screen and (max-width: 767px) {
      .header-logo {
        width: 9rem;
        height: 5rem;
        padding: 0 1rem;
        display: flex;
        align-items: center;
        justify-content: center; } }
    .header-logo a {
      margin: auto 0;
      font-weight: 700;
      color: #f36e47; }
      @media only screen and (max-width: 767px) {
        .header-logo a {
          font-size: 1rem; } }
    .header-logo img {
      width: 11.5rem;
      display: block; }
  .header-menu {
    position: relative;
    z-index: 999;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%; }
    @media only screen and (max-width: 1023px) {
      .header-menu.active ul {
        max-height: 100rem;
        transition: all .5s;
        padding: .3rem .8rem .8rem; } }
    @media only screen and (min-width: 1024px) {
      .header-menu:hover ul {
        max-height: 100rem;
        transition: all .5s;
        padding: .3rem .8rem .8rem; } }
    .header-menu ul {
      width: 18rem;
      max-height: 0;
      overflow: hidden;
      background: #E86944;
      padding: 0 .8rem;
      position: absolute;
      right: 0;
      top: 8rem;
      border-radius: 0 0 0 .5rem; }
      @media only screen and (max-width: 767px) {
        .header-menu ul {
          width: 14rem;
          top: 5rem; } }
      .header-menu ul li {
        margin: .5rem 0 0; }
        .header-menu ul li a {
          display: flex;
          align-items: center;
          justify-content: center;
          background: #fff;
          color: #313131;
          border-radius: .3rem;
          height: 3.6rem;
          font-size: 1.2rem;
          font-weight: 400;
          padding: 0; }
          @media only screen and (max-width: 767px) {
            .header-menu ul li a {
              font-size: 1rem;
              padding: 0 .5rem; } }
          @media only screen and (min-width: 1024px) {
            .header-menu ul li a:hover {
              background: #313131;
              color: #fff; } }
          .header-menu ul li a i {
            background: none;
            width: auto;
            height: auto;
            font-size: 1.4rem; }
            @media only screen and (max-width: 767px) {
              .header-menu ul li a i {
                font-size: 1.2rem; } }
    .header-menu i {
      width: 4rem;
      height: 4rem;
      border-radius: 50%;
      background: rgba(238, 238, 238, 0.5);
      color: #f36e47;
      font-size: 2.4rem;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 1rem;
      flex-shrink: 0;
      letter-spacing: 0; }
      @media only screen and (max-width: 767px) {
        .header-menu i {
          width: 2.4rem;
          height: 2.4rem;
          font-size: 1.6rem;
          margin-right: .3rem;
          flex-shrink: 0; } }
    .header-menu-user {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      height: 8rem;
      padding: 0 1.5rem;
      background: #fff;
      color: #313131;
      min-width: 18rem;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .header-menu-user {
          min-width: 14rem;
          height: 5rem;
          padding: 0 .8rem; } }
      .header-menu-user:after {
        content: "";
        width: 100%;
        height: 1rem;
        position: absolute;
        left: 0;
        bottom: 0;
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.06) 100%); }
      .header-menu-user > div {
        font-size: 1.3rem;
        line-height: 1.2;
        font-weight: 700;
        word-break: keep-all; }
        @media only screen and (max-width: 767px) {
          .header-menu-user > div {
            font-size: 1rem;
            word-break: normal; } }
        .header-menu-user > div span {
          font-size: 1rem;
          display: block; }
          @media only screen and (max-width: 767px) {
            .header-menu-user > div span {
              font-size: .9rem; } }
  .header-nav {
    width: 100%; }
    @media only screen and (max-width: 1071px) {
      .header-nav {
        position: fixed;
        left: 0;
        bottom: 0;
        background: #fff;
        border-top: 1px solid #eeeeee;
        z-index: 999; } }
    .header-nav > ul {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      position: relative; }
      @media only screen and (max-width: 1071px) {
        .header-nav > ul {
          justify-content: center; } }
      .header-nav > ul > li {
        position: relative;
        min-width: 9.5rem; }
        @media only screen and (max-width: 1071px) {
          .header-nav > ul > li {
            width: 20%;
            min-width: 0; } }
        .header-nav > ul > li:nth-last-of-type(1):after {
          content: "";
          width: 1px;
          height: 5rem;
          background: #eeeeee;
          position: absolute;
          right: 0;
          top: 50%;
          margin-top: -2.5rem; }
          @media only screen and (max-width: 1071px) {
            .header-nav > ul > li:nth-last-of-type(1):after {
              display: none; } }
        .header-nav > ul > li:before {
          content: "";
          width: 1px;
          height: 5rem;
          background: #eeeeee;
          position: absolute;
          left: 0;
          top: 50%;
          margin-top: -2.5rem; }
          @media only screen and (max-width: 767px) {
            .header-nav > ul > li:before {
              height: 3rem;
              margin-top: -1.5rem; } }
        @media only screen and (max-width: 1071px) {
          .header-nav > ul > li:nth-of-type(1):before {
            display: none; } }
        .header-nav > ul > li a {
          display: flex;
          height: 8rem;
          align-items: center;
          flex-direction: column;
          justify-content: center;
          font-size: 1.1rem;
          padding: 0 .5rem;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            .header-nav > ul > li a {
              font-size: .9rem;
              padding: 0;
              height: 6rem; } }
          .header-nav > ul > li a i {
            font-size: 2rem;
            margin-bottom: .6rem;
            color: #999999; }
          @media only screen and (min-width: 1024px) {
            .header-nav > ul > li a:hover {
              color: #f36e47; } }
        .header-nav > ul > li.on a i {
          color: #f36e47; }

/* --------------------------------------
		102 content
-------------------------------------- */
#wrap {
  overflow: hidden; }
  @media only screen and (max-width: 1071px) {
    #wrap {
      padding-bottom: 8rem; } }
  @media only screen and (max-width: 1071px) and (max-width: 767px) {
    #wrap {
      padding-bottom: 6rem; } }

.container {
  max-width: 115rem;
  margin: 0 auto;
  padding: 8rem 1rem 13rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  @media only screen and (max-width: 1023px) {
    .container {
      padding: 4vh 3vw 8vh; } }
  .container-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    position: relative;
    margin-bottom: 6rem; }
    @media only screen and (max-width: 1023px) {
      .container-header {
        margin-bottom: 3vh; } }
    .container-header:after {
      content: "";
      height: .4rem;
      width: 100%;
      bottom: 0;
      left: 0;
      position: absolute;
      background: #eeeeee; }
      @media only screen and (max-width: 767px) {
        .container-header:after {
          height: .3rem; } }
    .container-header-ttl {
      font-size: 2.8rem;
      font-weight: 500;
      padding: 2rem 1rem 1rem;
      position: relative;
      z-index: 2; }
      @media only screen and (max-width: 767px) {
        .container-header-ttl {
          font-size: 1.8rem; } }
      .container-header-ttl:after {
        content: "";
        height: .4rem;
        width: 100%;
        bottom: 0;
        left: 0;
        position: absolute;
        background: #f36e47; }
        @media only screen and (max-width: 767px) {
          .container-header-ttl:after {
            height: .3rem; } }
  .container-inner {
    width: 100%; }
  .container.win-small .container-inner {
    max-width: 83rem;
    margin: 0 auto; }
  .container.win-small .container-header {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      .container.win-small .container-header {
        margin-bottom: 5vh; } }
    .container.win-small .container-header:after {
      display: none; }
    .container.win-small .container-header-ttl {
      font-size: 2.4rem; }
      @media only screen and (max-width: 767px) {
        .container.win-small .container-header-ttl {
          font-size: 1.7rem; } }

/* --------------------------------------
		103 frame section / box
-------------------------------------- */
.section-box {
  width: 100%;
  margin-bottom: 7rem; }
  @media only screen and (max-width: 1023px) {
    .section-box {
      margin-bottom: 4vh; } }
.section-btn {
  display: flex;
  justify-content: flex-end;
  padding-top: 2.5rem; }
  @media only screen and (max-width: 1023px) {
    .section-btn {
      padding-top: 2vh; } }
.section-header {
  display: flex;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 2rem; }
  @media only screen and (max-width: 1023px) {
    .section-header {
      margin-bottom: 3vh; } }
  .section-header:after {
    content: "";
    height: .4rem;
    width: 100%;
    bottom: 0;
    left: 0;
    position: absolute;
    background: #eeeeee; }
    @media only screen and (max-width: 767px) {
      .section-header:after {
        height: .3rem; } }
  .section-header-ttl {
    font-size: 2.8rem;
    font-weight: 500;
    padding: 2rem 1rem 1rem;
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .section-header-ttl {
        font-size: 1.8rem; } }
    .section-header-ttl:after {
      content: "";
      height: .4rem;
      width: 100%;
      bottom: 0;
      left: 0;
      position: absolute;
      background: #f36e47; }
      @media only screen and (max-width: 767px) {
        .section-header-ttl:after {
          height: .3rem; } }
.section-inner {
  position: relative; }

.box-withholding, .box-tax {
  width: 48.5%; }
  @media only screen and (max-width: 1023px) {
    .box-withholding, .box-tax {
      width: 100%; } }
  .box-withholding .layout-table .th-ttl, .box-withholding .layout-table .td-ttl, .box-tax .layout-table .th-ttl, .box-tax .layout-table .td-ttl {
    width: 65%; }
  @media only screen and (max-width: 767px) {
    .box-withholding .layout-table .td-ttl, .box-tax .layout-table .td-ttl {
      width: 100%; } }
  .box-withholding .layout-table .th-date, .box-withholding .layout-table .td-date, .box-tax .layout-table .th-date, .box-tax .layout-table .td-date {
    width: 25%; }
  @media only screen and (max-width: 767px) {
    .box-withholding .layout-table .td-date, .box-tax .layout-table .td-date {
      width: auto; }
      .box-withholding .layout-table .td-date:after, .box-tax .layout-table .td-date:after {
        display: none; } }
.box-salary .section-header {
  margin-bottom: 6rem; }
  @media only screen and (max-width: 1023px) {
    .box-salary .section-header {
      margin-bottom: 3vh; } }

/* --------------------------------------
		104 layout
-------------------------------------- */
@media only screen and (max-width: 767px) {
  .layout-table {
    border-top: 0.1rem solid #eeeeee; } }
.layout-table-th {
  color: #626262;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  display: flex;
  justify-content: space-between;
  padding: 2.7rem 0;
  text-align: center;
  border-bottom: 0.1rem solid #eeeeee; }
  @media only screen and (max-width: 767px) {
    .layout-table-th {
      font-size: 1rem;
      padding: .5rem 0;
      position: relative;
      flex-wrap: wrap;
      justify-content: flex-start;
      padding-right: 10%;
      padding-left: 2.5rem;
      display: none; } }
  .layout-table-th div.th-date {
    width: 15%;
    padding: 0 1rem; }
    @media only screen and (max-width: 767px) {
      .layout-table-th div.th-date {
        width: auto; } }
  .layout-table-th div.th-cat {
    width: 15%; }
    @media only screen and (max-width: 767px) {
      .layout-table-th div.th-cat {
        width: auto;
        padding: 0 1rem; } }
  .layout-table-th div.th-ttl {
    width: 60%; }
    @media only screen and (max-width: 767px) {
      .layout-table-th div.th-ttl {
        width: auto;
        padding: 0 1rem; } }
  .layout-table-th div.th-icon, .layout-table-th div.th-more {
    width: 10%; }
    @media only screen and (max-width: 767px) {
      .layout-table-th div.th-icon, .layout-table-th div.th-more {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center; } }
.layout-table-td {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.7rem 0;
  text-align: center;
  border-bottom: 0.1rem solid #eeeeee;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .layout-table-td {
      font-size: 1.2rem;
      padding: 1rem 10% 1rem 1.5rem;
      flex-wrap: wrap;
      justify-content: flex-start; } }
  .layout-table-td > a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer; }
  .layout-table-td div {
    position: relative; }
    .layout-table-td div:after {
      content: "";
      width: 1px;
      position: absolute;
      height: 2.4rem;
      right: 0;
      top: 50%;
      margin-top: -1.2rem;
      background: #eeeeee; }
      @media only screen and (max-width: 767px) {
        .layout-table-td div:after {
          height: 1.2rem;
          margin-top: -.6rem; } }
    .layout-table-td div:nth-last-of-type(1):after {
      display: none; }
    .layout-table-td div.td-date {
      width: 15%;
      padding: .2rem 1rem .2rem 0;
      word-break: break-all;
      flex-shrink: 0; }
      @media only screen and (max-width: 767px) {
        .layout-table-td div.td-date {
          width: 9.6rem;
          padding: .1rem 1rem; } }
    .layout-table-td div.td-cat {
      width: 15%;
      flex-shrink: 0;
      padding: .2rem 0; }
      @media only screen and (max-width: 767px) {
        .layout-table-td div.td-cat {
          width: calc(100% - 10rem);
          text-align: left;
          padding: .1rem 1rem; }
          .layout-table-td div.td-cat:after {
            display: none; } }
    .layout-table-td div.td-ttl {
      width: 60%;
      text-align: left;
      padding: .2rem 1rem .2rem 5rem; }
      @media only screen and (max-width: 767px) {
        .layout-table-td div.td-ttl {
          padding: .1rem 1rem;
          width: 100%; }
          .layout-table-td div.td-ttl:after {
            display: none; } }
    .layout-table-td div.td-icon, .layout-table-td div.td-more {
      width: 10%;
      font-size: 2rem;
      flex-shrink: 0; }
      @media only screen and (max-width: 767px) {
        .layout-table-td div.td-icon, .layout-table-td div.td-more {
          font-size: 1.4rem;
          position: absolute;
          right: 0;
          top: 25%;
          height: 50%;
          border-left: 1px solid #eeeeee; } }
      .layout-table-td div.td-icon a, .layout-table-td div.td-more a {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%; }
        .layout-table-td div.td-icon a i, .layout-table-td div.td-more a i {
          color: #a0a0a0; }
        @media only screen and (min-width: 1024px) {
          .layout-table-td div.td-icon a:hover i, .layout-table-td div.td-more a:hover i {
            color: #f36e47; } }
    .layout-table-td div.td-more {
      font-size: 1.6rem;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%; }
      @media only screen and (max-width: 767px) {
        .layout-table-td div.td-more {
          font-size: 1.2rem;
          border-left: none;
          top: 0; } }
      .layout-table-td div.td-more i {
        width: 3rem;
        height: 3rem;
        border: 0.2rem solid rgba(243, 110, 71, 0.5);
        border-radius: 50%;
        color: #f36e47;
        display: flex;
        justify-content: center;
        align-items: center;
        letter-spacing: 0; }
        @media only screen and (max-width: 767px) {
          .layout-table-td div.td-more i {
            width: 2rem;
            height: 2rem; } }
  .layout-table-td.unopened {
    font-weight: 700; }
    @media only screen and (max-width: 767px) {
      .layout-table-td.unopened div.td-ttl {
        position: static; } }
    .layout-table-td.unopened div.td-ttl:before {
      content: "●";
      font-size: 1rem;
      line-height: 1;
      color: #f36e47;
      width: 5rem;
      position: absolute;
      top: 50%;
      left: 0;
      margin-top: -.5em;
      display: flex;
      justify-content: center;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        .layout-table-td.unopened div.td-ttl:before {
          content: "";
          width: .8rem;
          height: .8rem;
          border-radius: 50%;
          background: #f36e47;
          margin-top: -.4rem;
          left: .5rem; } }

.dl-form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #eeeeee; }
  .dl-form:nth-last-of-type(1) {
    margin-bottom: 4rem; }
    @media only screen and (max-width: 767px) {
      .dl-form:nth-last-of-type(1) {
        margin-bottom: 2rem; } }
  .dl-form > div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eeeeee;
    padding: 1.5rem 0; }
    @media only screen and (max-width: 767px) {
      .dl-form > div {
        flex-direction: column; } }
    .dl-form > div > dt {
      width: 36%;
      flex-shrink: 0;
      font-size: 1.6rem;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .dl-form > div > dt {
          width: 100%;
          margin-bottom: .5rem;
          text-align: left;
          font-size: 1.3rem; } }
    .dl-form > div > dd {
      width: 100%; }

.aside-attention {
  max-width: 72rem;
  margin: 0 auto 4rem;
  background: #eeeeee;
  border-radius: 1rem;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .aside-attention {
      flex-direction: column;
      padding: 2rem;
      font-size: 1.2rem;
      margin-bottom: 2rem; } }
  .aside-attention-ttl {
    flex-shrink: 0;
    padding-right: 4rem;
    text-align: center;
    color: #666; }
    @media only screen and (max-width: 767px) {
      .aside-attention-ttl {
        padding-right: 0;
        padding-bottom: 1rem;
        width: 100%; } }
  .aside-attention-inner {
    width: 100%; }
    .aside-attention-inner dl div {
      display: flex;
      justify-content: space-between; }
      .aside-attention-inner dl div dt {
        width: 5em;
        flex-shrink: 0;
        font-weight: 400; }
        .aside-attention-inner dl div dt:after {
          content: ":"; }
      .aside-attention-inner dl div dd {
        width: 100%;
        padding-left: .5rem; }

.div-btn {
  padding-top: 2rem; }
  @media only screen and (max-width: 767px) {
    .div-btn {
      padding-top: 1rem; } }
  .div-btn ul {
    display: flex;
    justify-content: center;
    align-items: center; }
    .div-btn ul li {
      margin: 0 1rem; }
      @media only screen and (max-width: 767px) {
        .div-btn ul li {
          width: 100%;
          margin: 0 .5rem; } }

.dl-period {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5rem; }
  @media only screen and (max-width: 767px) {
    .dl-period {
      margin-bottom: 5vh; } }
  .dl-period dt {
    color: #f36e47;
    margin: 0 1.5rem;
    flex-shrink: 0; }
    @media only screen and (max-width: 767px) {
      .dl-period dt {
        font-size: 1.2rem; } }
  .dl-period dd {
    width: 100%;
    max-width: 25rem; }

/* --------------------------------------
		105 footer
-------------------------------------- */
.footer {
  width: 100%;
  height: 4.5rem;
  clear: both;
  position: relative;
  background: #eeeeee;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media only screen and (max-width: 1023px) {
    .footer {
      flex-direction: column;
      height: auto; } }
  .footer-nav {
    height: 4.5rem;
    position: absolute;
    left: 3%;
    top: 0; }
    @media only screen and (max-width: 1023px) {
      .footer-nav {
        position: static;
        padding: 1.5rem; } }
    .footer-nav > ul {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      height: 100%; }
      .footer-nav > ul > li {
        font-size: 1rem;
        margin-right: 1rem; }
        @media only screen and (min-width: 1024px) {
          .footer-nav > ul > li a:hover {
            opacity: 0.6; } }
  .footer-copy {
    font-size: 1rem;
    line-height: 3;
    color: #888; }
