@charset "UTF-8";
/***** -- COMMON -- *****/
* {box-sizing: border-box;}
html, body {
  height: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-print-color-adjust: exact;
}
html {width: 100%!important;}
body {
  text-align:left;
  color: #323232;
  background: transparent;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1;
}
a {
  color: #000;
  text-decoration: none;
  transition: all .2s ease;
}
strong {font-size: 130%;}
small  {font-size: 85%;}

.body-wrap {
  position: relative;
  width: 100%;
  z-index: 1;
  background-color: #fff;
}
.iframe { text-align: center; }

.common-wrap {}
.common-inner {
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: auto;
}
.common-btn {
  text-align: center;
  letter-spacing: -.40em;
}
.common-btn > * {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  vertical-align: middle;
  letter-spacing: normal;
}
.common-btn > *:last-child {margin-right: 0;}
.common-mT {margin-top: 65px;}
@media screen and (max-width: 1200px){
  .common-inner {width: 100%;}
}
@media screen and (max-width: 980px){}
@media screen and (max-width: 768px){
  .common-inner {width: 96%;}
  .common-mT {margin-top: 55px;}
}
@media screen and (max-width: 640px){}
@media screen and (max-width: 480px){
  .common-mT {margin-top: 50px;}
}
@media screen and (max-width: 370px){}


/***** layout：2col *****/
#main-2col, #side-2col {
  float: left;
}
@media screen and (max-width: 1200px){}
@media screen and (max-width: 980px){
  #main-2col, #side-2col {
    float: none;
    width: 100%;
  }
  #side-2col {
    display: none;
    position: static!important;
    float: none;
    clear: both;
    width: auto;
  }
}
@media screen and (max-width: 768px){}
@media screen and (max-width: 640px){}
@media screen and (max-width: 480px){}
@media screen and (max-width: 370px){}

/***** layout：flax *****/
.l-flex {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

/***** layout：glid *****/
.l-grid > * {
  display: block;
  position: relative;
  float: left;
}
.l-grid::after {
  display: block;
  clear: both;
  visibility: hidden;
  content: '';
}

/***** layout：table *****/
.l-table {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.l-table > * {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 768px){
  .l-table.is_rps > * {
    display: block;
    width: 100%!important;
  }
}

/***** layout：column *****/
.l-column {
  -webkit-column-count: 3;
  -webkit-column-gap: 15px;
  -webkit-column-fill: auto;
     -moz-column-count: 3;
     -moz-column-gap: 15px;
     -moz-column-fill: balance !important;
          column-count: 3;
          column-gap: 15px;
          column-fill: auto;
}
.l-column > * {
   display: inline-block;
   position: relative;
   -webkit-break-inside: avoid;
      -moz-break-inside: avoid;
           break-inside: avoid;
}
/* Google Chorome BugFix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {.l-column > * {display: block !important;}}

/***** layout：tile *****/
.l-tile {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 1fr 1fr 1fr;
/*
  grid-template-rows: 150px 100px 50px auto;
*/
  grid-template-rows: auto;
}

/***** layout：list *****/
.l-list {}
.l-list > * {
  display: block;
  position: relative;
  padding: 20px 35px 20px 20px;
}
.l-list.is_arrow > *::after {
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  font-size: 15px;
  font-weight: bold;
  color: #000;
  content: "\f105";
  transform: translate(0,-50%);
  transition: all .2s ease;
}



/***** -- btn -- *****/
.btn {
  display: inline-block;
  position: relative;
  max-width: 400px;
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  color: #000;
  text-align: center;
  text-decoration: none!important;
  line-height: 1.5;
  padding: 25px 0;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 200px;
  transition: all .2s ease;
  cursor: pointer;
}
.btn:hover {
  color: #fff;
  border: 1px solid #22adad;
}
.btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 0;
  height: 0;
  background-color: #22adad;
  border-radius: 200px;
  transition: all .2s ease;
  content: '';
}
.btn:hover::before {
  width: 100%;
  height: 100%;
}
.btn span {
  display: block;
  position: relative;
}
.btn span::before {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translate(0,-50%);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all .2s ease;
  content: '';
}
.btn span::after {
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "Font Awesome 5 Free";
  font-size: 18px;
  font-weight: bold;
  color: #000;
  transform: translate(0,-50%);
  transition: all .2s ease;
}
.btn.is_ver5 span::after {font-family: "Font Awesome 5 Free";}

.btn-arrow span::after {content: '\f105';}
.btn:hover span::after {color: #fff;}

.btn-acc span::after {
  font-size: 24px;
  transform: translate(0,-50%) rotate(0deg);
  content: "\f107";
}
.btn-acc.is_active span {}
.btn-acc.is_active span::after {transform: translate(0,-50%) rotate(180deg);}

.btn-list {
  max-width: 100%!important;
  padding: 15px 0;
  border: 1px solid #ddd;
  border-radius: 0;
}
.btn-list::before {
  background-color: #e2f4f4;
  border-radius: 0;
}
.btn-list:hover {
  color: #333;
  border: 1px solid #ddd;
}
.btn-list span {
  padding: 0 40px 0 40px;
}
.btn-list span::before {
  left: 15px;
  width: 20px;
  height: 100%;
  color: #2ab6c9;
  font-weight: bold;
  background: transparent;
  content: 'Q';
}
.btn-list:hover span::before {color: #2ab6c9;}
.btn-list:hover span::after {color: #333;}



.btn-01:hover {
  color: #fff;
  border: 1px solid #22adad;
}
.btn-01::before {background-color: #22adad;}

.btn-01 span::after {
  font-size: 24px;
  color: #22adad;
}
.btn-01:hover span::after {color: #fff;}

.btn-02 {
  max-width: 100%;
  color: #000!important;
  text-align: left;
  padding: 1rem 0 1rem 1rem;
  border-radius: 0;
}
.btn-02::before {
  background-color: #22adad;
  border-radius: 0;
}
.btn-02:hover {
  color: #fff!important;
  border-color: #22adad;
}

.btn.is_csr01 span::after {content: '\f2b5';}
.btn.is_csr02 span::after {content: '\f57e';}
.btn.is_csr03 span::after {content: '\f518';}
.btn.is_csr04 span::after {content: '\f0c0';}
.btn.is_csr05 span::after {content: '\f4be';}
.btn.is_csr06 span::after {content: '\f70c';}
.btn.is_photo span::after {content: '\f083';}
.btn.is_pdf span::after {
  color: #F44336;
  content: '\f1c1';
}


@media screen and (max-width: 1200px){}
@media screen and (max-width: 980px){
  .btn {max-width: 350px;}
}
@media screen and (max-width: 768px){}
@media screen and (max-width: 640px){}
@media screen and (max-width: 480px){
  .btn {
    max-width: 300px;
    font-size: 13px;
    padding: 20px 0;
  }
  .btn span::before {left: 20px;}

  .btn-02 {padding: 1rem 0 1rem 1rem;}
}
@media screen and (max-width: 370px){}



/***** -- DRAWER -- *****/
/*
.drawer_oh {overflow: visible;}
.drawer-wrap {display: none;}
*/
  .drawer_oh {overflow: visible;}
  .drawer_oh body {overflow: unset!important;}
  .drawer-wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background-color: rgba(123, 198, 233, 0.8);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform .6s cubic-bezier(.77,0,.175,1) .3s;
  }
  .drawer_open .drawer-wrap {
    transform: scaleY(1);
    transition-delay: 0s;
  }
  .drawer-inner {
    width: 90%!important;
    max-width: 800px!important;
    height: 100%!important;
  }
  .drawer-contents {
    padding: 80px 0;
    line-height: 1.2;
  }
  .drawer-contents > div {
    width: 100%;
    margin-top: 40px;
  }
  .drawer-contents > div:first-child {
    display: none;
    margin-top: 0;
  }
  .drawer-contents > div > * {
    transform: scaleY(0);
    transition: transform .6s cubic-bezier(.77,0,.175,1) 0s;
    transform-origin: top center;
  }
  .drawer_open .drawer-contents > div > * {
    transform: scaleY(1);
    transition-delay: .5s;
  }
  .drawer-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
  }
  .drawer-link {margin-top: 10px;}
  .drawer-link > * {
    width: 50%;
  }
  .drawer-link > a {
    display: block;
    position: relative;
    font-size: 15px;
    font-weight: bold;
    color: #323232;
    padding: 15px 0 15px 20px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 1) inset;
  }
  .drawer-link > a::after {
    position: absolute;
    top: 50%;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    font-weight: bold;
    color: #323232;
    transform: translate(0,-50%);
    transition: all .2s ease;
    content: "\f105";
  }
  .drawer-link > a:hover {
    color: #fff;
    background-color: #78cbee;
  }
  .drawer-link > a:hover::after {color: #fff;}

  .drawer-grid {}
  .drawer-grid > a {
    position: relative;
    width: 50%;
    height: 100px;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top 15px center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 1) inset;
    transition: all .2s ease;
  }
  .drawer-grid > a span {
    position: absolute;
    bottom: 10px;
    width: 100%;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    transition: all .2s ease;
  }

  .drawer-grid > a:nth-child(1) {background-image: url(https://www.nihonzaitaku.co.jp/_assets/img/icon-cmn-owner.png);}
  .drawer-grid > a:nth-child(2) {background-image: url(https://www.nihonzaitaku.co.jp/_assets/img/icon-cmn-book.png);}
  .drawer-grid > a:nth-child(3) {background-image: url(https://www.nihonzaitaku.co.jp/_assets/img/icon-cmn-search.png);}

@media screen and (max-width: 1200px){}
@media screen and (max-width: 980px){
  .drawer_oh {overflow: hidden;}
  .drawer-wrap {
    display: block;
    top: 65px;
  }
}
@media screen and (max-width: 768px){
  .drawer-wrap {top: 55px;}
}
@media screen and (max-width: 640px){
  .drawer-contents > div:first-child {display: block;}
}
@media screen and (max-width: 480px){
  .drawer-wrap {top: 50px;}
  .drawer-contents {padding: 40px 0 80px;}

  .drawer-link > * {width: 100%;}
  .drawer-title {font-size: 18px;}
  .drawer-link > a {font-size: 13px;}
}
@media screen and (max-width: 370px){}



/***** -- FORM -- *****/
.form-wrap {
  position: relative;
  padding: 25px 0 50px;
  background-color: #fff;
}
.form-inner {}
.form-text {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
.form-memo {
  font-size: 12px;
  font-weight: bold;
  text-align: right;
  margin-top: 10px;
}
.form-memo span {
  color: #ff0000;
  margin-right: 5px;
}


.form-contents {
  width: 95%;
  max-width: 980px;
  margin: 0 auto 0;
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.form-contents.is_1col .form-item {margin-top: 40px;}
.form-contents.is_1col .form-item_name {
  position: relative;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.form-contents.is_1col .form-item_name::before {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 2px;
  background-color: #bb9e58;
  content: '';
}

.form-contents.is_2col .form-item {
  display: table;
  width: 100%;
  line-height: 1.5;
  table-layout: fixed;
}
.form-contents.is_2col .form-item:first-child {}
.form-contents.is_2col .form-item > * {
  display: table-cell;
  border-bottom: 1px solid #ccc;
  border-right:  1px solid #ccc;
  vertical-align: middle;
}
.form-contents.is_2col .form-item_name {
  position: relative;
  width: 190px;
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  padding: 10px 70px 10px 10px;
  background-color: #22adad;
  border-bottom: 1px solid #ccc;
  border-right:  1px solid #ccc;
}
.form-contents.is_2col .form-item_name::after {
  position: absolute;
  right: 15px;
  top: 50%;
  font-size: 11px;
  color: #fff;
  transform: translate(0,-50%);
  padding: 5px 10px;
  background-color: #ccc;
  content: '任意';
}
.form-contents.is_2col .form-item.is_required .form-item_name::after {
  background-color: #FF8C45;
  content: '必須';
}
.form-contents.is_2col .form-item_input {
  font-size: 13px;
  padding: 10px;
}


.form-contents a {
  color: #0f93df;
  text-decoration: underline;
}
.form-contents a:hover {text-decoration: none;}


.form-item_name span {
  font-size: 10px;
  font-weight: bold;
  color: #ff0000;
  margin-left: 5px;
  vertical-align: top;
}
.form-consent {margin-top: 40px;}
.form-consent_name {
  font-size: 16px;
  font-weight: bold;
}
.form-consent_name span {
  font-size: 10px;
  font-weight: bold;
  color: #ff0000;
  margin-left: 5px;
  vertical-align: top;
}
.form-consent_text {
  font-size: 15px;
  text-align: center;
  line-height: 1.8;
  margin-top: 25px;
}
.form-consent_text a {
  color: #0f93df;
  text-decoration: underline;
}
.form-consent_text a:hover {text-decoration: none;}
.form-consent_input {
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}

.input-inline {
  letter-spacing: -.40em;
}
.input-inline > * {
  display: inline-block;
  margin: 5px 20px 5px 0;
  margin-bottom: 5px;
  vertical-align: middle;
  letter-spacing: normal;
}
.input-inline.input-2col > * {
  width: 49%;
  margin-right: 2%;
}
.input-inline.input-3col > * {
  width: 32%;
  margin-right: 2%;
}
.input-inline.input-2col > *:nth-child(2n), .input-inline.input-3col > *:nth-child(3n), .input-inline > *:last-child {margin-right: 0;}
.input-datetext {margin-right: 30px;}
.input-datetext::before {
  position: absolute;
  bottom: 5px;
  right: -20px;
  font-size: 13px;
}
.input-datetext.y::before {content: '年';}
.input-datetext.m::before {content: '月';}
.input-datetext.d::before {content: '日';}
.input-zip {width: 200px!important;}
.input-date-4 {width: 120px!important}
.input-date-2 {width: 60px!important}
.input-email {width: 500px!important}
.input-telnum {width: 300px!important}
.form-contents select {
  width: auto;
  max-width: 100%;
  cursor: pointer;
}
.form-contents input[type="checkbox"], .form-contents input[type="radio"] {
  width: 20px;
  height: 20px;
  margin: 0 5px 0 0;
}
.form-submit {
  text-align: center;
  margin-top: 25px;
}
::-webkit-input-placeholder {color: #b6b6b6;}
::-moz-placeholder {
  color: #b6b6b6;
  opacity: 1;
}
:-ms-input-placeholder {color: #b6b6b6;}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="submit"],
input[type="button"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"],
select,
textarea {
  width: 100%;
  max-width: 100%;
  font-family: 'Noto Sans JP', sans-serif;;
  font-size: 13px;
  padding: 10px 15px;
  border: 2px solid #eee;
  background-color: #fff;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="tel"] {
}
select {min-width: 200px;}
textarea {
  resize: vertical;
  max-height: 500px;
  min-height: 200px;
}
input[type="submit"], input[type="button"]  {
  display: block;
  position: relative;
  width: 100%;
  max-width: 300px;
  font-family: 'Noto Sans JP', sans-serif;;
  font-weight: bold;
  color: #fff;
  font-size: 15px;
  padding: 15px 0;
  margin: 0 auto;
  background-color: #fc485c;
  border: 2px solid #fc485c;
  cursor: pointer;
  transition: all .2s ease;
}
input[type="submit"]:hover, input[type="button"]:hover {
  color: #fc485c;
  background-color: #fff;
}
@media screen and (max-width: 1200px){}
@media screen and (max-width: 980px){}
@media screen and (max-width: 768px){
  .form-wrap {padding: 0 0 50px;}
  .form-text {font-size: 3vw;}
  .form-contents.is_2col .form-item > * {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 640px){
  .form-inner {}
  .form-contents {}
}
@media screen and (max-width: 480px){
  .form-contents.is_1col .form-item_name {font-size: 15px;}
  .form-contents.is_2col .form-item_name {font-size: 13px;}

  .form-item_input > * {font-size: 12px}
  .form-consent_text {font-size: 13px;}
  .input-date-4 {width: 100px!important}
  .input-date-2 {width: 50px!important}
}
@media screen and (max-width: 370px){
  .form-contents.is_1col .form-item_name {font-size: 13px;}
  .form-contents.is_2col .form-item_name {font-size: 12px;}
}
/* Contact Form 7  */
div.wpcf7 .ajax-loader {display: none!important;}
.form-contents .wpcf7-list-item {
  margin-right: 20px;
  margin-bottom: 10px;
}
.form-contents .wpcf7-not-valid-tip {
  font-size: 12px;
  font-weight: bold;
  color: #d33841;
  margin-top: 5px;
}
.form-contents .wpcf7-list-item-label {
  font-size: 15px;
}
.wpcf7-response-output {
  width: 80%;
  margin: 20px auto 0!important;
  padding: 15px!important;
  font-size: 13px;
  font-weight: bold;
  color: #000;
  line-height: 1.5;
}
.wpcf7-validation-errors, .wpcf7-acceptance-missing {border: 2px solid #d33841!important;}
@media screen and (max-width: 1500px){}
@media screen and (max-width: 1200px){}
@media screen and (max-width: 980px){}
@media screen and (max-width: 768px){}
@media screen and (max-width: 640px){
  .wpcf7-response-output {width: 90%;}
}
@media screen and (max-width: 480px){
  .form-contents .wpcf7-list-item-label {
    font-size: 13px;
  }
}
@media screen and (max-width: 370px){}



/***** -- tab -- ******/
.l-select {}
.l-select-tab {position: relative;}
.l-select-tab > * {
  width: calc(100% / 6);
  font-size: 15px;
  color: #7a7a7a;
  text-align: center;
  padding: 20px 0;
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  transition: all .4s ease;
  cursor: pointer;
}
.l-select-tab > *:last-child {border-right: 1px solid #ddd;}
.l-select-tab > *.is_active {
  font-weight: bold;
  color: #fff;
  background-color: #aaa;
}
.l-select-box {}
.l-select-box_selected {
  position: relative;
  width: 100%;
  height: 50px;
  font-size: 13px;
  font-weight: bold;
  color: #7a7a7a;
  line-height: 45px;
  padding-left: 20px;
  background-color: #fff;
  border: solid 2px #ddd;
  cursor: pointer;
}
.l-select-box_selected__title {}
.l-select-box_selected__right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 46px;
  background-color: #ddd;
}
.l-select-box_selected__right i {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 30px;
  color: #fff;
  transform: translate(-50%,-50%) rotate(0deg);
  transition: all .3s ease;
}
.l-select-box_selected__right i.is_active {transform: translate(-50%,-50%) rotate(180deg);}
.l-select-box_option {display: none;}
.l-select-box_option > * {
  display: block;
  position: relative;
  width: 100%;
  border: 2px solid #ddd;
  border-top: none;
  font-size: 13px;
  padding: 15px 20px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
@media screen and (max-width: 1200px){}
@media screen and (max-width: 980px){}
@media screen and (max-width: 768px){}
@media screen and (max-width: 640px){}
@media screen and (max-width: 480px){
  .l-select-tab > * {
    font-size: 13px;
  }
}
@media screen and (max-width: 370px){}



/***** -- accordion -- ******/
.acc {
  cursor: pointer;
}
.acc-1st, .acc-2nd, .acc-3rd {border-bottom: 1px solid #eee;}
.acc-1st {
  padding: 20px 20px 20px 10px;
  background-color: #fff;
}
.acc-2nd {
  padding: 20px 20px 20px 20px;
  background-color: #fbfbfb;
}
.acc-3rd {
  padding: 20px 20px 20px 30px;
  background-color: #d6d6d6;
}
.acc-contents {
  list-style: none;
  display: none;
}



/***** -- JS -- ******/
/***** -- SLICK -- ******/
.slick-dots {
  display: block;
  position: absolute;
  bottom: -25px;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.slick-dots li {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  display: block;
  width: 20px;
  height: 20px;
  font-size: 0;
  color: transparent;
  line-height: 0;
  padding: 5px;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  font-size: 40px;
  color: #ccc;
  text-align: center;
  line-height: 20px;
  content: '•';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {color: #000;}

.slick-prev, .slick-next {
  display: block;
  position: absolute;
  top: 50%;
  color: transparent;
  line-height: 0;
  width: 25px;
  height: 50px;
  padding: 0;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(https://www.nihonzaitaku.co.jp/_assets/img/parts-arrow-b.png);
  transform: translate(0, -50%);
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 10;
}
.slick-prev {
  left: 0;
  transform: translate(0, -50%) rotate(180deg);
}
.slick-next {
  right: 0;
}
.slick-prev:before, .slick-next:before {display: none;}
@media screen and (max-width: 1200px){}
@media screen and (max-width: 980px){}
@media screen and (max-width: 768px){}
@media screen and (max-width: 640px){}
@media screen and (max-width: 480px){
  .slick-prev, .slick-next {
    width: 20px;
    height: 35px;
  }
}
@media screen and (max-width: 370px){}


/***** -- iziModal -- ******/
.iziModal {
  width: 80%;
  max-width: 700px!important;
  border-bottom: none!important;
}
html.iziModal-isAttached body, html.iziModal-isOverflow body {overflow: unset!important;}
.iziModal::after {display: none;}
.iziModal-navigate-caption {display: none!important;}
.iziModal-navigate > button {opacity: 1!important;}
.iziModal-navigate-prev {margin-left: inherit;}
.iziModal-navigate-next {margin-right: inherit;}
@media screen and (max-width: 768px){
  .iziModal-navigate-prev {
    margin-left: 0!important;
    left: 0!important;
    width: 10%!important;
  }
  .iziModal-navigate-next {
    margin-right: 0!important;
    right: 0!important;
    width: 10%!important;
  }
}


@media screen and (min-width: 769p) {
  .sp_br{
    display: none;
  }
}

p.semishosai{
	margin-top:5px;
}
.semishosai a{
	color: #26abd6;
	font-size: 18px;
	text-decoration-line: underline;
}

.point {
    font-weight: bold;
    background: linear-gradient(transparent 70%, #ffdcb9 0%);
}

.holiday{
    font-size: 13px;
    padding-right: 20px;
    padding-left: 25px;
	padding-bottom: 10px;
    color: #ff0000!important;
	font-weight: bold!important;
}


/*2019/08/21 ハンバーガメニュースタイル追加 nakasone */
.accordion-container {
  position: relative;
  width: 100%;
  /*border: 1px solid #0079c1;
  border-top: none;*/
  outline: 0;
  cursor: pointer
}

.accordion-container .article-title {
  display: block;
  position: relative;
  margin: 0;
  padding: 15px 0 15px 38px;;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 1) inset;
}

.accordion-container .article-title:hover,
.accordion-container .article-title:active,
.accordion-container .content-entry.open .article-title {
  /*background-color: #00aaa7;
  color: white;*/
}

.accordion-container .article-title:hover i:before,
.accordion-container .article-title:hover i:active,
.accordion-container .content-entry.open i {
  color: white;
}

.article-title{
  position: relative;
}

.article-title:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 5px;
  height: 5px;
  border-top: solid 2px #323232;
  border-right: solid 2px #323232;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.article-title.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}

.accordion-content {
  display: none;
  margin:0;
}

/* CSS for CodePen */
.accordion-container {
  margin: 1.875em auto;
  margin-top:10px;
}



.accordion-content ul{
	list-style: none;
	background: #f5f5f5;
}
.accordion-content li{
	list-style: none;
	padding:15px;
	padding-left:40px;
	border-bottom: 1px dotted #b1b1b1;
	position: relative;
	
}

.accordion-content li a{
	display:block;	
}

.accordion-container{
	font-size:13px;
}

.accordion-container dl{
	margin:0;	
}



.accordion-content a::after {
    position: absolute;
    top: 50%;
    right: 15px;
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    font-weight: bold;
    color: #323232;
    transform: translate(0,-50%);
    transition: all .2s ease;
    content: "\f105";
}

.article-title:before {
    position: absolute;
    top: 30%;
	left: 12px;
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    font-weight: bold;
    color: #323232;
    
}
#draw_invest:before{
	content: "\f1ad";
}
#draw_report:before{
	content: "\f5da";
}
#draw_manage:before{
	content: "\f0ae";
}
#draw_company:before{
	content: "\f756";
}
#draw_activity:before{
	content: "\f51c";
}

@media screen and (max-width: 768px){
.saiyo{
	float: right;
    margin-right: 20%;
    margin-top: 20px;
    font-size: 14px;
    font-weight: bold;
    color: dimgrey;
    font-family: "Font Awesome 5 Free";
}


.saiyo::before{
	content: "\f2bb";
}

.saiyo span{
	color: #404040;
}
}

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