@charset "utf-8";

/* ------------------------------------------ */
/*////// COMMON  //////////////////////////// */
/* ------------------------------------------ */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

body {
  color: #231815;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 100%;
}

/*----- FLEX BOX -----*/
.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.jstfy-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.jstfy-around {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  ;
  justify-content: space-around;
}

.jstfy-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.jstfy-flex-end {
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-direction-column-reverse {
  flex-direction: column-reverse;
}

.align-items-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-items-end {
  -webkit-box-align: flex-end;
  -webkit-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

a:link {
  color: #231815;
  outline: none;
  text-decoration: none;
}

a:visited {
  color: #231815;
  outline: none;
}

a:hover {
  color: #231815;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.br-pc {
  display: block;
}

.br-tab {
  display: none;
}

.br-sp {
  display: none;
}

.fwb {
  font-weight: bold;
}

.clr-red {
  color: #c00;
}

.clr-green {
  color: #22AC38;
}

.clr-brown {
  color: #6A3906;
}

.clr-black {
  color: #231815;
}

.tac {
  text-align: center
}

.fsr-xl {
  font-size: 140%;
}

.fsr-s {
  font-size: 80%;
}

.brd-b {
  border-bottom: dashed 1px #c00;
}

/*----- Clearfix -----*/
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */

@media(max-width:1024px) {
  .br-tab {
    display: block;
  }
}

@media(max-width:767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .br-pc {
    display: none;
  }

  .br-tab {
    display: none;
  }

  .br-sp {
    display: block;
  }

}

/* ------------------------------------------ */
/*////// HEADER  //////////////////////////// */
/* ------------------------------------------ */
#header {
  width: 100%;
  background-color: #FFF;
}

#header .header-inner {
  width: 98%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}

#header-btn-box {
  line-height: 0;
}

#header-btn-box .header-btn__tel {
  margin-right: 20px;
}

.header__logo {
  width: 44%;
}

#header .header__logo a {
  display: block;
}

#header .header-logo-area .header__site_catch {
  max-width: 300px;
  margin: 0 20px 0 30px;
  color: #999899;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  #header .header-logo-area {
    width: 40%;
  }

  .header__logo {
    width: 100%;
  }

  #header .header-logo-area .header__site_catch {
    display: none;
  }

  #header-btn-box {
    width: 50%;
  }
}

@media (max-width: 767px) {
  #header .header-inner {
    padding: 5px 0;
  }

  #header .header-logo-area {
    padding-left: 2%;
    width: 50%;
  }

  #header-btn-box {
    width: 40%;
    margin-right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  #header-btn-box .header-btn__tel {
    margin-right: 15px;
  }

  #header-btn-box .header-btn .pc {
    display: none;
  }

  #header-btn-box .header-btn .sp {
    display: block;
  }
}

/* ------------------------------------------ */
/*////// CONTENTS  ////////////////////////// */
/* ------------------------------------------ */
#contents {
  width: 100%;
  background-color: #fff;
}

#container {
  width: 100%;
  margin: 0 auto;
}

.section {
  text-align: center;
  width: 100%;
}

.section .section-inner {
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
}

@media (max-width: 767px) {
  .section .section-inner {
    padding: 8% 0;
  }
}

.section .frm {
  margin-bottom: 0px;
  padding: 50px;
  background-color: #FFF;
}

.section .frm__green {
  background-color: #E0F6F7;
}

.mgb50 {
  margin-bottom: 50px;
}

.mgt50 {
  margin-top: 25px;
}

.mgb15 {
  margin-bottom: 15px;
}

.mgt15 {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .mgb50 {
    margin-bottom: 10%;
  }

  .mgt50 {
    margin-top: 25px;
  }
}

.bg-green {
  background-color: #e6faff;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .section-head {
    margin-bottom: 8%;
  }

  .section-head img {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
}

.section-head .section__title {
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.4;
  font-size: 30px;
  font-weight: bold;
  color: #5BAB00;
}

@media (max-width: 767px) {
  .section-head .section__title {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .section-head .section__title {
    font-size: 1.2em;
  }
}


.text-box {
  margin-bottom: 5em;
  line-height: 1.8;
  font-size: 16px;
}

.img-box {
  margin: 0 auto 5%;
  text-align: center;
  line-height: 0;
}

.tbl {
  width: 100%;
  margin: 0 auto 30px;
  border-top: solid 1px rgba(204, 204, 204, 0.6);
  border-bottom: solid 1px rgba(204, 204, 204, 0.6);
  border-collapse: collapse;
}

.tbl th {
  width: 10em;
  padding: 1em 2em;
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
  background-color: #E0F6F7;
  border-bottom: solid 1px rgba(204, 204, 204, 0.6);
}

.tbl td {
  padding: 1em 2em;
  text-align: left;
  vertical-align: middle;
  line-height: 1.6;
  border-bottom: solid 1px rgba(204, 204, 204, 0.6);
}

@media (max-width: 768px) {
  .tbl td {
    padding: 1em;
  }

  .section .frm {
    margin: 0 auto;
    width: 95%;
    padding: 5%;
  }

  .text-box {
    font-size: 100%;
  }

  .text-box {
    margin-bottom: 3em;
  }
}

#top {
  background-color: #e6faff;
}

#top .section-inner {
  margin: 0 auto;
  max-width: none;
  padding: 0;
  width: 100%;
}

#problems .overlap {
  margin: 0 auto;
  max-width: 1085px;
  width: 94%;
}


@media (min-width: 768px) {
  #problems .overlap {
    margin: -3% auto -5%;
  }

  #problems.section .section-inner {
    padding-top: 40px;
  }
}

#promise .frm.frm__green {
  border-radius: 20px;
  padding: 5%;
  margin-top: 17%;
  width: 100%;
}

#promise .frm .frm-title {
  margin: -26% auto 5%;
  width: 90%;
}

#promise .frm .img-main {
  margin: 0 auto 5%;
  width: 90%;
}

.promise-list {
  counter-reset: number 0;
}

.promise-item {
  margin-bottom: 15px;
}

.promise-item-ttl {
  color: #1a4a3c;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: left;
}

@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

.promise-item-ttl::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  color: #68b82e;
  display: inline-block;
  font-size: 1.8em;
  font-family: 'Noto Sans Japanese', sans-serif;
  margin-right: 0.4em;
  line-height: 1;
  letter-spacing: 0.05em;
}

.promise-item-thumb {
  margin: 5% auto;
  width: 85%;
}

.promise-item-txt {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding-bottom: 1em;
}

.accordion .accordion-head {
  cursor: pointer;
  position: relative;
}

.accordion .accordion-head::before {
  content: '';
  width: 0.7em;
  height: 0.7em;
  border-top: solid 3px #39b54a;
  border-right: solid 3px #39b54a;
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%) rotate(135deg);
  transition: all 0.5s 0s ease;
}

.accordion .accordion-head.active::before {
  transform: rotate(-45deg);
}

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

@media (min-width: 768px) {
  #promise .frm.frm__green {
    display: none;
  }
}

#overview {
  margin-top: -10%;
  background: #E0F6F7;
}

#overview .tbl__overview,
#overview .tbl__overview th,
#overview .tbl__overview td {
  border-width: 2px;
}

#overview .tbl__overview th {
  background: #E0F6F7;
}

#contact .contact-info {
  margin-bottom: 50px;
  padding: 2em 3em;
}

#contact .contact-info .row {
  padding: 20px;
  border-top: solid 2px rgba(201, 202, 202, 0.6);
}

#contact .contact-info .row:last-child {
  border-bottom: solid 2px rgba(201, 202, 202, 0.6);
}

#contact .contact-info .col {
  flex: 1;
  padding: 0 10px;
  text-align: left;
  line-height: 1.6;
}

#contact .contact-info .col__title {
  width: 40%;
  padding: 0 20px 0 50px;
}

#contact .contact-info .title {
  font-size: 22px;
}

#contact .contact-info .title::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 2em;
  margin-right: 10px;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#contact .contact-info .title__tel::before {
  background-image: url("image/icon_tel.png");
}

#contact .contact-info .title__line::before {
  width: 2em;
  background-image: url("image/icon_line.png");
}

#contact .tel {
  margin-bottom: 5px;
  color: #BE4357;
  font-size: 28px;
  font-family: fot-udkakugo-large-pr6n, sans-serif;
  line-height: 1;
}

#contact .tel::before {
  content: '';
  display: inline-block;
  width: 1.2em;
  height: 1em;
  margin-right: 10px;
  background: url("image/icon_free_dial.png") center bottom no-repeat;
  background-size: contain;
}

#contact .tel a[href^="tel:"] {
  color: #BE4357;
}

#contact .text-box {
  padding: 0 3em;
  margin-bottom: 3em;
}

#contact .contact-form-box {
  padding: 2em 3em;
}

#contact .remarks-text-box {
  font-size: 1.3em;
  padding: 1em 3em 0.5em;
  background-color: #FFF;
}

#contact .remarks-text-box p {
  line-height: 1.4;
  margin-bottom: 0.5em;
}

#contact .tbl-contact-form {
  width: 100%;
  margin: 0 auto 2em;
  border-collapse: collapse;
}

#contact .tbl-contact-form tr {
  border-top: solid 1px #CCC;
}

#contact .tbl-contact-form tr:last-child {
  border-bottom: solid 1px #CCC;
}

#contact .tbl-contact-form th {
  width: 15em;
  text-align: left;
}

#contact .required {
  display: inline-block;
  margin-left: 1em;
  padding: 2px 5px;
  font-size: 12px;
  line-height: 1.4;
  color: #FFF;
  background-color: #c00;
}

#contact .form-item__remarks {
  display: block;
  font-size: 0.8em;
  padding: 0.5em;
}

#contact .policy-txt-box {
  margin: 1em 0 0;
  height: 140px;
  overflow: auto;
  padding: 0.8em;
  line-height: 1.6;
  border: solid 1px #999;
  background-color: #EEE;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  width: 98%;
}

#contact input[type='text'],
#contact input[type='password'],
#contact input[type='tel'],
#contact input[type='email'],
#contact textarea {
  width: auto;
  max-width: 98%;
  padding: 8px 5px;
  font-size: 16px;
  border: none;
  background-color: #EFEFEF;
  -webkit-appearance: none;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
}

#contact select {
  width: auto;
  max-width: 98%;
  padding: 8px 5px;
  font-size: 16px;
}

#contact .vertical-item {
  display: block;
}

#contact #mailformpro label {
  display: inline;
  margin: 0 10px 0 5px;
  vertical-align: middle;
}

#contact #mailformpro .full-w {
  width: 100% !important;
}

#contact #mailformpro .link {
  text-decoration: underline;
}

/*mailform buttons*/
#contact #mfp_buttons {
  padding: 30px 0;
  text-align: center;
}

#contact #mfp_buttons button {
  display: inline-block;
  padding: 0.8em 2em;
  border: none;
  cursor: pointer;
  color: #FFF;
  font-size: 1.2em;
  font-weight: bold;
  background: #5BAB00 !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  box-shadow: none;
  text-shadow: none;
}

@media (max-width: 767px) {
  #contact .contact-info .title::before {
    content: none;
  }

  #contact .tel::before {
    content: none;
  }
}

/* ------------------------------------------ */
/*////// FOOTER  //////////////////////////// */
/* ------------------------------------------ */
/*ページトップへ*/
#page-top {
  display: none;
  position: relative;
  z-index: 9998;
  width: 100%;
  height: 0;
  margin: 0 auto;
}

#page-top a {
  position: fixed;
  bottom: 10%;
  right: 2%;
  display: block;
}

/*固定ブロック*/
#foot__contact {
  width: 100%;
  background-color: #FFF;
}

#foot__contact .inner {
  padding: 10px 0;
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
}

#foot__contact.fixed {
  display: none;
  position: fixed;
  bottom: 0;
}

#foot__contact .items {
  line-height: 0;
}

#foot__contact .item {
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-right: solid 1px rgba(179, 179, 179, 0.6);
}

#foot__contact .item__text {
  padding: 0 20px;
}

#foot__contact .item__line {
  padding-top: 20px;
}


#footer {
  margin-bottom: 150px;
  padding: 0px 0 0 0;
}

#footer .footer-inner {
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
  padding: 0 3em;
  background-color: #FFF;
  color: #7F8080;
}

#footer .footer__main {
  padding: 3em 0;
  text-align: center;
  border-bottom: solid 1px rgba(179, 179, 174, 0.6);
}

#footer .footer-info-box {
  display: inline-block;
  text-align: left;
  font-size: 14px;
  line-height: 1.6;
}

#footer .footer__logo {
  margin-bottom: 10px;
}

#footer .footer__address {
  margin-bottom: 10px;
}

#footer .fax {
  padding-left: 1em;
}

#footer .footer__note {
  padding: 20px 0;
  font-size: 13px;
  line-height: 1.6;
}

#footer .footer__note .bnr__antisocial {
  float: right;
  max-width: 35%;
  margin: 0 0 0 20px;
}




@media (min-width: 769px) {
  #company .tbl__company {
    width: 90%;
  }

  #overview .tbl__overview th {
    width: 12em;
  }
}

@media (max-width: 768px) {

  #overview {
    padding-bottom: 5%;
    width: 100%;
    background-color: #E0F6F7;
  }

  #overview .section-inner {
    margin: 0 auto;
    width: 96%;
  }

  #overview .section-inner .frm.frm__green {
    padding: 0;
    width: 100%;
  }

  #overview .section-inner .frm.frm__green .tbl {
    margin-bottom: 0%;
  }

  #contact .contact-info .col__title {
    width: 35%;
    padding-left: 0;
  }

  #contact .contact-info,
  #contact .text-box,
  #contact .contact-form-box {
    padding: 2em 0;
  }
}

@media (max-width: 768px) and (min-width: 641px) {
  #contact .contact-info .row {
    padding: 10px;
    font-size: 80%;
  }

  #contact .contact-info .title {
    font-size: 100%;
  }

  #contact .contact-info .tel {
    font-size: 180%;
  }
}

@media(max-width:767px) {

  #page-top a {
    width: 10%;
    bottom: 10%;
  }

  .tbl th,
  .tbl td {
    padding: 5% 3%;
    font-size: 80%;
  }

  .tbl th {
    width: 10em;
  }

  #contact .section-head,
  #contact .section__title {
    margin: 0;
  }

  #contact .contact-info .row {
    flex-direction: column;
    padding: 10px;
  }

  #contact .contact-info .col {
    width: 100%;
    padding: 2% 0;
    text-align: center;
  }

  #contact .remarks-text-box {
    padding: 1em 1em 0.5em;
  }

  #contact .tbl-contact-form th {
    display: block;
    width: 100%;
    font-size: 1em;
  }

  #contact .tbl-contact-form td {
    display: block;
    width: 100%;
    font-size: 1em;
    padding-bottom: 2em;
    border-bottom: none;
  }

  #contact input.num {
    width: 45% !important;
  }

  #contact input[type="text"],
  #contact input[type="password"],
  #contact input[type="tel"],
  #contact input[type="email"],
  #contact textarea {
    width: 90% !important;
  }

  #contact select {
    max-width: 90%;
    padding: 1%;
  }

  #footer {
    margin-bottom: 20%;
  }

  #footer .footer-info-box {
    width: 85%;
    margin: 0 auto;
    font-size: 80%;
  }

  #footer .footer-inner {
    width: 91%;
    padding: 0 1em;
  }

  #footer .footer__note {
    font-size: 60%;
  }

  #foot__contact .inner {
    width: 100%;
    padding: 0;
  }

  #foot__contact .items {
    width: 100%;
  }

  #foot__contact .item {
    border-right: none;
    padding: 0;
  }

  #foot__contact .item__text {
    padding: 2%;
  }

  #point-2 .type-items {
    width: 94%;
    margin: 0 auto;
  }

  #point-2 .type-items .item {
    width: 100%;
  }

  #faq .faq-item-box {
    padding: 5%;
  }
}

@media(max-width:480px) {
  #top .top__back {
    height: 112vh !important;
  }

  #footer .footer-info-box {
    font-size: 76%;
  }
}

/* ------------------------------------------ */
/*////// mailformpro  /////////////////////// */
/* ------------------------------------------ */
div#mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: 0px;
}

div#mfp_hidden input {
  margin: 10px;
}

div.mfp_thanks {
  padding: 30px;
}

div.mfp_thanks p {
  line-height: 1.7em;
}

div.mfp_thanks ul.mfp_caution {
  margin: 0px;
  padding: 0px;
}

div.mfp_thanks ul.mfp_caution li {
  display: block;
  color: #C00;
  margin: 0px;
  padding: 5px 0px;
}

div#mfp_thanks {
  text-align: center;
  font-size: 18px;
  padding: 20px 0px;
}

div#mfp_thanks strong {
  color: #C00;
  font-size: 24px;
}

form#mailformpro {
  padding: 10px 0px;
}

form#mailformpro dl dt {
  float: left;
  width: 150px;
  clear: both;
  font-size: 12px;
  padding: 10px 0px;
  text-align: right;
  border-top: solid 1px #CCC;
  margin: 0px;
}

form#mailformpro dl dd {
  border-top: solid 1px #CCC;
  margin: 0px;
  padding: 10px 5px 10px 160px;
  font-size: 12px;
  line-height: 1.5em;
  text-align: left;
}

form#mailformpro dl dd ul,
form#mailformpro dl dd ol {
  margin: 0px;
  padding: 0px;
}

form#mailformpro dl dd ul li,
form#mailformpro dl dd ol li {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.must {
  display: block;
  background-color: #C00;
  border: solid 2px #C00;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #FFF;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #CCC;
  background-image: url(image/header.png);
  background-size: 100% 100%;
}

form#mailformpro label {
  border-radius: 3px;
  margin: 3px;
  display: inline-block;
}

form#mailformpro label.mfp_checked {
  padding: 3px;
  border: solid 1px #CCC;
  background-color: #E8EEF9;
}

form#mailformpro label.mfp_not_checked {
  padding: 3px;
  border: solid 1px #EEE;
}

table#mfp_confirm_table {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
}

table#mfp_confirm_table tr.mfp_colored {
  background-color: #F6F7F9;
}

table#mfp_confirm_table tr.mfp_achroma {
  background-color: #FFF;
}

table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
  text-align: left;
  font-size: 12px;
  border-top: solid 1px #CCC;
  padding: 5px 10px;
}

table#mfp_confirm_table tr th {
  white-space: nowrap;
  width: 200px;
}

table#mfp_confirm_table tr td {
  line-height: 1.5em;
  word-break: break-all;
}

div#mfp_phase_confirm {
  clear: both;
}

div#mfp_phase_confirm h4 {
  font-size: 36px;
  padding: 10px 0px 0px 0px;
  text-align: center;
}

div#mfp_overlay {
  position: absolute;
  display: none;
  z-index: 10001;
}

div#mfp_overlay_inner {
  background-color: #FFF;
  padding: 15px;
  margin: 0px auto;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #000;
  width: 640px;
  max-width: 90%;
}

div#mfp_overlay_inner h4 {
  margin-bottom: 10px;
}

div#mfp_overlay_background {
  background-color: #000;
  position: absolute;
  display: none;
  z-index: 10000;
}

div#mfp_loading_screen {
  z-index: 20000;
  opacity: 0.8;
  display: none;
  background-color: #000;
  position: absolute;
}

div#mfp_loading {
  z-index: 20001;
  position: absolute;
  display: none;
  width: 40px;
  height: 40px;
  background-image: url(image/mfp_loading.gif);
}

.mfp_colored {
  background-color: #F6F7F9;
}

.mfp_achroma {
  background-color: #FFF;
}

div.mfp_err {
  clear: both;
  display: none;
  text-align: left;
  margin: 5px 0px 0px 0px;
  padding: 3px 0px 5px 17px;
  color: #F00;
  font-size: 12px;
  line-height: normal;
  background-image: url(image/mfp_error.gif);
  background-repeat: no-repeat;
  background-position: 0px 1px;
}

.mfp_parent_error {
  border: solid 2px #F00;
}

.problem {
  background-color: #FCC;
}

div#mfp_error {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
}

div#mfp_error p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_error p strong {
  font-size: 18px;
  color: #F00;
}

div#mfp_warning {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
}

div#mfp_warning p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_warning p strong {
  font-size: 18px;
  color: #F00;
}

div#mfp_price {
  color: #C00;
  font-size: 36px;
  padding: 10px;
  font-weight: bolder;
}

div#mfp_price span {
  color: #666;
  font-size: 12px;
  font-weight: normal;
}

button.mfp_next,
button.mfp_prev {
  font-size: 18px;
  margin: 10px;
  padding: 5px 10px;
}

button.mfp_next {
  float: right;
}

button.mfp_prev {
  float: left;
}

ul#mfp_phase_stat {
  padding: 10px;
}

ul#mfp_phase_stat li {
  float: left;
  padding: 8px 15px;
  border-radius: 3px;
  margin: 5px;
  list-style: none;
  font-size: 14px;
}

ul#mfp_phase_stat li.mfp_phase_arrow {
  bos-shadow: none;
  padding: 8px 5px;
}

ul#mfp_phase_stat li.mfp_active_phase {
  background-color: #E8EEF9;
  box-shadow: 0px 0px 5px #000;
}

ul#mfp_phase_stat li.mfp_inactive_phase {
  background-color: #CCC;
  color: #666;
  box-shadow: 0px 0px 5px #CCC;
}

div#mfp_shopping_cart {
  border: solid 1px #CCC;
  margin: 0px;
  padding: 0px;
}

div#mfp_shopping_cart p {
  margin: 0px;
  text-align: center;
  padding: 20px 10px;
  font-size: 12px;
  background-color: #FEE;
}

table.mfp_shoppingcart {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
}

table.mfp_shoppingcart thead tr td {
  background-color: #EEE;
  border-bottom: solid 1px #CCC;
  text-align: center;
  font-size: 12px;
  padding: 5px;
}

table.mfp_shoppingcart tbody tr th,
table.mfp_shoppingcart tbody tr td {
  font-size: 12px;
  padding: 5px;
  border-bottom: solid 1px #CCC;
}

table.mfp_shoppingcart tbody tr td select {
  display: block;
  margin: 0px auto;
  text-align: center;
}

table.mfp_shoppingcart tbody tr td select option {
  text-align: center;
}

table.mfp_shoppingcart tbody tr th span {
  display: block;
  font-weight: normal;
  font-size: 10px;
  color: #666;
  padding: 3px 0px;
}

table.mfp_shoppingcart tfoot tr td {
  padding: 5px;
  font-size: 16px;
  font-weight: bolder;
  color: #900;
}

td.msc_price {
  font-size: 12px;
  text-align: right;
}

div.mfp_buttons {
  clear: both;
  padding: 10px 0px;
  text-align: center;
}

div.mfp_buttons button#mfp_button_cancel {}

.imagebutton {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  background: none;
}

.mfp_element_all {
  max-width: 100%;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea {
  border-radius: 3px;
  padding: 3px 8px;
  margin: 2px;
  vertical-align: middle;
}

.mfp_element_submit,
.mfp_element_reset,
.mfp_element_button {
  border-radius: 5px;
  padding: 5px 10px;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#FEFEFE), to(#DEDEDE));
  background: -webkit-gradient(linear, center top, center bottom, from(#FEFEFE), to(#DEDEDE));
  background: -moz-linear-gradient(top, #FEFEFE, #DEDEDE);
  background: -ms-linear-gradient(top, #FEFEFE 0%, #DEDEDE 100%);
  text-shadow: 0px 2px 0px #FFF;
  font-size: 24px;
  cursor: pointer;
  outline: none;
}

.mfp_element_reset {
  color: #333;
}

.mfp_element_submit:hover,
.mfp_element_reset:hover,
.mfp_element_button:hover {
  background: gradient(linear, center top, center bottom, from(#F7F7F7), to(#7ECEF4));
  background: -webkit-gradient(linear, center top, center bottom, from(#F7F7F7), to(#7ECEF4));
  background: -moz-linear-gradient(top, #F7F7F7, #7ECEF4);
  background: -ms-linear-gradient(top, #F7F7F7 0%, #7ECEF4 100%);
  box-shadow: 0px 2px 15px #7ECEF4;
}

input#mfp_reserve_item,
input#mfp_reserve_date {
  display: none;
}

div#mfp_reserve_wrapper {
  position: relative;
  overflow: hidden;
  border: solid 1px #CCC;
}

div#mfp_reserve_inner {
  position: relative;
  padding: 0px 0px 0px 100px;
  overflow: auto;
}

div#mfp_reserve_wrapper table {
  border-spacing: 0px;
  border-collapse: collapse;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  background-color: #FEE;
  z-index: 100;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value {
  padding: 0px 0px 0px 0px;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
  cursor: pointer;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
  background-color: #E8EEF9;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
  background-color: #0068B7;
  color: #FFF;
}

td.mfp_reserve_disabled {
  background-color: #CCC;
}

td.mfp_reserve_warning {
  background-color: #FFC;
}

div#mfp_reserve_wrapper table tr td,
div#mfp_reserve_wrapper table tr th {
  border: solid 1px #CCC;
  padding: 0px 5px;
  font-size: 12px;
  text-align: center;
  font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: normal;
  height: 20px;
  text-align: left;
}

td.mfp_reserve_week_0 {
  color: #F00;
  background-color: #FEE;
}

td.mfp_reserve_week_6 {
  color: #00F;
  background-color: #EEF;
}

div.mfp_ok {
  border-radius: 5px;
  background-color: #090;
  border: solid 1px #090;
  display: inline-block;
  line-height: 1.5em;
  padding: 0px 5px;
  margin: 0px 2px;
  color: #FFF;
  font-size: 10px;
  background-image: url(image/header.png);
  background-size: 100% 100%;
  display: none;
}

div.prefcodeWrapper {
  position: relative;
}

div.prefcodeResult {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px;
  border: solid 1px #CCC;
  background-color: #FFF;
  box-shadow: 0px 0px 5px #CCC;
  display: none;
}

div.prefcodeResult div {
  cursor: pointer;
}

div.prefcodeResult div:hover {
  background-color: #C9EBFB;
}

div.prefcodeResult div.prefcodeNext {
  background-color: #EEE;
  text-align: center;
}

div.prefLoading {
  padding: 60px 100px;
  background: url(image/mfp_zip_loading.gif) no-repeat center center;
}

.hidefield {
  height: 0px;
  overflow: hidden;
}

.showfield {
  height: auto;
  overflow: visible;
}









/* ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ====
	共通
==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== */
.content_wrap {
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.content--inner_large {
  /*
	max-width: 9999px;
	*/
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.content_inner_middle {
  margin: 0 auto;
  max-width: 1200px;
  width: 94%;
}

.content--img img {
  width: 100%;
  height: auto;
}

/*  ==== レスポンシブ（479以下） ==== ==== ==== */
@media screen and (max-width:479px) {}