@charset "UTF-8";
/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap");
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span, small, em, time, i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

a {
  border: medium;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.8em;
}

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

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, select {
  vertical-align: middle;
}

abbr[title], dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: inherit;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
/*------------
Body
--------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

body, html {
  height: 100%;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.1em;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
}
a:hover {
  opacity: 0.6;
}

.link {
  color: #333;
  text-decoration: underline;
}
.link:hover {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

.anchor {
  margin-top: -50px;
  padding-top: 50px;
}

a[href^=tel] {
  cursor: default;
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}
.container.wide {
  max-width: 1200px;
}
.container .narrow {
  max-width: 850px;
}

/*------------
Header
--------------*/
.header {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  background: #fff;
  width: 100%;
  padding: 20px 30px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
}

.h-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h-logo a img {
  width: 230px;
}

/*------------
G-navi
--------------*/
.pc-navi ul {
  display: flex;
  font-family: "Roboto Slab";
}
.pc-navi ul li {
  padding: 0 40px;
  position: relative;
  font-size: 16px;
}
.pc-navi ul li::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 13px;
  border-right: 1px solid #d3d3d3;
}
.pc-navi ul li:last-child::after {
  display: none;
}
.pc-navi .dropdown {
  position: relative;
}
.pc-navi .dropdown .child {
  background: #fff;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -10px);
          transform: translate(-50%, -10px);
  text-align: left;
  transition: 0.4s ease-in-out;
  opacity: 0;
  padding: 25px 30px;
  width: 240px;
  z-index: 10;
}
.pc-navi .dropdown ul li + li {
  margin: 15px 0 0;
}
.pc-navi .dropdown ul li a {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  transition: 0.5s;
}
.pc-navi .dropdown ul li a:hover {
  opacity: 0.5;
}
.pc-navi .dropdown:hover .child {
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 1;
}

.sp-navi {
  display: none;
}

/*------------
Hero
--------------*/
.hero {
  display: flex;
  height: 90vh;
  align-items: center;
  justify-content: center;
  padding: 25vh 50px 0px;
  background: url(../images/hero01.jpg) no-repeat center center/cover;
}

.hero-ttl-pc {
  width: 105vh;
}

/*------------
Top contents
--------------*/
.t-ttl {
  text-align: center;
  margin-bottom: 70px;
}
.t-ttl .txt01 {
  display: block;
  font-size: 16px;
  font-family: "Roboto Slab";
  color: #f09234;
  padding-bottom: 20px;
}
.t-ttl .txt02 {
  display: block;
  position: relative;
  font-size: 45px;
  font-weight: bold;
  padding-bottom: 40px;
}
.t-ttl .txt02::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 2px;
  background: #333;
  position: absolute;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.t-ttl02 {
  text-align: center;
  margin-bottom: 70px;
  padding: 35px 0 50px;
  background: #21b1ed;
}
.t-ttl02 .txt01 {
  display: block;
  font-size: 16px;
  font-family: "Roboto Slab";
  color: #fff;
  padding-bottom: 20px;
}
.t-ttl02 .txt02 {
  display: block;
  position: relative;
  font-size: 45px;
  font-weight: bold;
  color: #fff;
}

.sec01 {
  padding: 80px 0;
}

.photo-img {
  background: #000;
  overflow: hidden;
}

.photo-img img {
  transition: all 0.5s;
}

.photo-ttl,
.photo-txt {
  transition: all 0.5s;
  color: #fff;
  opacity: 0;
}

.photo-txt {
  font-size: 14px;
}

.photo-ttl {
  font-family: "Roboto Slab";
  font-size: 22px;
  margin-bottom: 15px;
}

.photo-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  margin-bottom: 80px;
  transition: all 0.5s;
}
.photo-list li {
  cursor: pointer;
}
.photo-list figure {
  position: relative;
}
.photo-list figure figcaption {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0 20px;
  text-align: center;
}
.photo-list li.hover .photo-ttl, .photo-list li.hover .photo-txt {
  opacity: 1;
}
.photo-list li.hover .photo-img img {
  opacity: 0.45;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.gray-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f3f3f3;
  padding: 40px 70px;
}

.box-desc {
  text-align: center;
}

.box-img {
  width: 410px;
  margin-right: 20px;
}

.under-line {
  font-size: 23px;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #fffa79 0%);
  padding: 0 0 0 10px;
}

.under-line02 {
  font-size: 35px;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #fffa79 0%);
  padding: 0 0 0 10px;
}
.under-line02 span {
  font-size: 50px;
}

.sec02 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 440px;
  padding: 0 50px;
  background: url(../images/sec02_01.jpg) no-repeat center center/cover;
}

.sec03 {
  padding: 80px 0;
}

.sec03-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  margin-bottom: 70px;
}

.trouble-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 50px;
}

.trouble-list li {
  text-align: center;
}

.sec04 {
  padding: 30px 0 80px;
}

.full-img02 {
  display: flex;
  height: 700px;
  padding: 80px;
  background: url(../images/sec04_01.jpg) no-repeat center center/cover;
}

.card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  margin-bottom: 50px;
}

.comment {
  position: relative;
  padding: 30px;
  max-width: 800px;
  margin: auto;
}
.comment::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../images/share/brackets.png) no-repeat;
}
.comment::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: inline-block;
  width: 50px;
  height: 50px;
  background: url(../images/share/brackets02.png) no-repeat;
}

.sec05 {
  padding: 0 0 80px;
}

.tel-layout03 {
  max-width: 630px;
  margin: auto auto 50px;
  padding: 35px;
  background: #f3f3f3;
}
.tel-layout03 h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.tel-layout03 .tel-no a {
  font-size: 40px;
  font-weight: bold;
}
.tel-layout03 .tel-no a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background: url(../images/share/ico_tel.png) no-repeat center center;
}

.contact-desc {
  font-size: 12px;
  border: 1px solid #e0e0e0;
  padding: 30px 25px;
  margin-bottom: 50px;
}

/*------------
Footer
--------------*/
.pagetop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 5;
}
.pagetop a {
  display: inline-block;
  transition: 0.5s;
  width: 80px;
}
.pagetop a:hover {
  opacity: 0.5;
}

footer {
  background: #f3f3f3;
  padding: 45px 0;
}

.f-wrapper {
  display: flex;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-family: Roboto, Arial, Helvetica, Tahoma, Verdana;
}

.desc-info02 {
  text-align: right;
}
.desc-info02 .footer-tel {
  margin-bottom: 10px;
}
.desc-info02 .footer-tel a {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
}
.desc-info02 .footer-tel a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background: url(../images/share/ico_tel.png) no-repeat center center;
}
.desc-info02 .text {
  font-size: 14px;
}

/*------------
Under layout
--------------*/
.breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}
.breadcrumb ul li {
  display: inline;
}
.breadcrumb ul li + li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}

.u-contents p + p {
  margin-top: 15px;
}

/*------------
Under parts
--------------*/
.short + .short {
  margin-top: 50px;
}

.tall {
  padding: 50px 0;
}

.l-imgR, .l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.l-imgR .l-img, .l-imgL .l-img {
  margin: 0 40px 0 0;
  width: 40%;
}
.l-imgR .l-desc, .l-imgL .l-desc {
  flex: 1;
}

.l-imgR {
  flex-direction: row-reverse;
}
.l-imgR .l-img {
  margin: 0 0 0 40px;
}

.fl-imgR,
.fl-imgL {
  width: 40%;
}
.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

.list-disc li {
  position: relative;
  padding: 0 0 0 15px;
}
.list-disc li + li {
  margin-top: 5px;
}
.list-disc li:before {
  background: #333;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
}

.list-num {
  counter-reset: number;
}
.list-num > li {
  padding: 0 0 0 30px;
  position: relative;
}
.list-num > li:before {
  background: #333;
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 11px;
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding: 0 0 0 2px;
  width: 20px;
  height: 20px;
}
.list-num > li + li {
  margin-top: 5px;
}

.table-style01 th, .table-style01 td {
  padding: 10px 15px;
  border: 1px solid #e3e3e3;
  vertical-align: middle;
}
.table-style01 th {
  text-align: left;
}

/*-----------------------------------------------------------
お問い合わせ
-----------------------------------------------------------*/
.contact-form table {
  border-collapse: collapse;
  margin: 0 0 50px;
  width: 100%;
}
.contact-form table tr {
  border-bottom: 1px dashed #CCC;
}
.contact-form table th {
  padding: 20px 40px 20px 0;
  vertical-align: middle;
  text-align: left;
}
.contact-form table td {
  padding: 20px 0;
}
.contact-form .hissu {
  display: inline-block;
  background: #ff0000;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  padding: 1px 8px;
  margin-left: 15px;
  vertical-align: 1px;
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form select,
.contact-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f1f1f1;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
}
.contact-form select::-ms-expand {
  display: none;
}
.contact-form textarea {
  height: 200px;
}
.contact-form input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
}
.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=number]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 1px solid #419caf;
}
.contact-form .select-wrap {
  position: relative;
}
.contact-form .select-wrap::after {
  content: "";
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #333 transparent transparent transparent;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
}
.contact-form .mwform-radio-field,
.contact-form .mwform-checkbox-field {
  display: inline-block;
  margin-right: 15px;
  margin-left: 0 !important;
}
.contact-form .mwform-radio-field input[type=radio] {
  display: none;
}
.contact-form .mwform-radio-field label {
  display: inline-block;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 30px;
  line-height: 1;
}
.contact-form .mwform-radio-field label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  box-sizing: border-box;
}
.contact-form .mwform-radio-field .mwform-radio-field-text:after {
  content: "";
  border-radius: 50%;
  background: #419caf;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  transition: 0.4s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.contact-form .mwform-radio-field input[type=radio]:checked + .mwform-radio-field-text:after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.contact-form .mwform-checkbox-field input[type=checkbox] {
  display: none;
}
.contact-form .mwform-checkbox-field label {
  display: inline-block;
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 30px;
  position: relative;
}
.contact-form .mwform-checkbox-field label:before {
  content: "";
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  box-sizing: border-box;
}
.contact-form .mwform-checkbox-field .mwform-checkbox-field-text:after {
  content: "";
  border-bottom: 3px solid #419caf;
  border-right: 3px solid #419caf;
  width: 7px;
  height: 12px;
  position: absolute;
  top: 1px;
  left: 7px;
  transition: 0.3s;
  -webkit-transform: scale(0) rotate(45deg);
          transform: scale(0) rotate(45deg);
}
.contact-form .mwform-checkbox-field input[type=checkbox]:checked + .mwform-checkbox-field-text:after {
  -webkit-transform: scale(1) rotate(45deg);
          transform: scale(1) rotate(45deg);
}
.contact-form .mwform-tel-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-form .mwform-tel-field input[type=text] {
  width: 29%;
}
.contact-form .mwform-tel-field input[type=text]:nth-of-type(1) {
  margin-right: 10px;
}
.contact-form .mwform-tel-field input[type=text]:nth-of-type(2) {
  margin: 0 10px;
}
.contact-form .mwform-tel-field input[type=text]:nth-of-type(3) {
  margin-left: 10px;
}
.contact-form .mwform-zip-field input[type=text] {
  width: 15%;
  min-width: 80px;
  margin: 0 10px;
}
.contact-form .preferred-date {
  overflow: hidden;
}
.contact-form .preferred-date .date {
  width: 45%;
  float: left;
}
.contact-form .preferred-date .time {
  display: flex;
  align-items: center;
  float: right;
  width: 50%;
}
.contact-form .preferred-date .time select {
  width: 80px;
}
.contact-form .preferred-date .time .hour {
  margin: 0 10px;
}
.contact-form .preferred-date .time .minute {
  margin: 0 0 0 10px;
}
.contact-form .birthday {
  display: flex;
  align-items: center;
}
.contact-form .birthday select {
  width: 100px;
}
.contact-form .birthday .year {
  margin: 0 10px;
}
.contact-form .birthday .month {
  margin: 0 10px;
}
.contact-form .birthday .day {
  margin: 0 0 0 10px;
}
.contact-form .submit-btn {
  display: flex;
  justify-content: center;
}
.contact-form .submit-btn [type=image] {
  transition: 0.5s;
}
.contact-form .submit-btn [type=image]:hover {
  opacity: 0.7;
}
.contact-form .submit-btn .back-btn {
	background: #999;
    border: none;
    margin-right: 50px;
	-webkit-appearance: none;
    border-radius: 10px;
    outline: none;
    color: #fff;
    cursor: pointer;
    font-size: 32px;
	font-weight: bold;
    padding: 22px 40px;
    letter-spacing: 3px;
    transition: 0.3s;
    width: 250px;
}

.mw_wp_form_confirm .select-wrap::after {
  display: none;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
  .contact-form table {
    margin: 0 0 30px;
  }
  .contact-form table tr {
    border-bottom: 1px dashed #CCC;
  }
  .contact-form table th, .contact-form table td {
    display: block;
  }
  .contact-form table th {
    padding: 15px 0 10px;
  }
  .contact-form table td {
    padding: 0 0 15px;
  }
  .contact-form .preferred-date {
    overflow: hidden;
  }
  .contact-form .preferred-date .date {
    width: 100%;
    float: none;
    margin: 0 0 10px;
  }
  .contact-form .preferred-date .time {
    width: 100%;
  }
  .contact-form .birthday select {
    width: auto;
    padding: 15px 30px 15px 15px;
  }
  .contact-form .birthday .year {
    margin: 0 5px;
  }
  .contact-form .birthday .month {
    margin: 0 5px;
  }
  .contact-form .birthday .day {
    margin: 0 0 0 5px;
  }
  .contact-form .submit-btn [type=submit] {
    padding: 15px;
    width: 250px;
  }
  .contact-form .submit-btn [type=submit].back-btn {
    margin-right: 25px;
  }
}
.recaptcha {
  display: none;
  margin: 20px 0;
  font-size: 12px;
}

@media screen and (max-width: 800px) {
  .grecaptcha-badge {
    visibility: hidden;
  }

  .recaptcha {
    display: block;
  }
}
/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #000;
  font-size: 18px;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy dd + dt {
  margin-top: 30px;
}

.list-privacy li {
  position: relative;
  padding: 0 0 0 15px;
}

.list-privacy li + li {
  margin-top: 3px;
}

.list-privacy li:before {
  background: #333;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*お知らせ*/
.list-post-news {
  margin: 0 0 40px;
}
.list-post-news li {
  border-bottom: 1px dotted #707070;
}
.list-post-news a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 10px 0;
}
.list-post-news a:hover .ttl {
  text-decoration: underline;
}
.list-post-news time {
  color: #666;
  width: 90px;
  margin-right: 80px;
}

/*普通投稿*/
.list-post-type01 {
  margin-bottom: 80px;
}
.list-post-type01 li {
  overflow: hidden;
}
.list-post-type01 li + li {
  margin-top: 50px;
}
.list-post-type01 .list-ttl {
  border-bottom: 1px solid #ddd;
  color: #333;
  font-family: "Roboto Slab";
  font-size: 20px;
  position: relative;
  padding: 0 0 15px;
  margin: 0 0 25px;
}
.list-post-type01 .list-ttl a {
  transition: 0.5s;
}
.list-post-type01 .list-ttl a:hover {
  opacity: 0.5;
}
.list-post-type01 .list-img {
  float: left;
  margin: 0 30px 0 0;
  width: 250px;
}
.list-post-type01 .list-img img {
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}
.list-post-type01 .list-img a {
  transition: 0.5s;
}
.list-post-type01 .list-img a:hover {
  opacity: 0.5;
}
.list-post-type01 .list-data {
  font-size: 13px;
  margin: 0 0 5px;
}
.list-post-type01 time {
  display: inline-block;
  color: #98918c;
  font-size: 14px;
  vertical-align: -1px;
  margin: 0 25px 0 0;
}
.list-post-type01 .category {
  border: 1px solid #333;
  color: #333;
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  padding: 5px 8px 4px;
  margin: 0 10px 0 0;
}
.list-post-type01 .list-txt {
  margin: 0 0 15px;
}
.list-post-type01 .list-btn {
  text-align: right;
}
.list-post-type01 .list-btn a {
  border: 1px solid #333;
  background: #fff;
  border-radius: 50px;
  display: inline-block;
  color: #333;
  font-family: "Roboto Slab";
  text-align: center;
  padding: 5px 40px 6px;
  transition: 0.5s;
}
.list-post-type01 .list-btn a:hover {
  background: #333;
  color: #fff;
}

/*詳細ページ*/
.l-post-single {
  margin-bottom: 80px;
}
.l-post-single .l-ttl {
  font-family: "Roboto Slab";
  font-size: 30px;
  margin: 0 0 35px;
}
.l-post-single .post-data {
  margin: 0 0 20px;
}
.l-post-single .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 14px;
  vertical-align: -1px;
  margin: 0 20px 0 0;
}
.l-post-single .post-data .category {
  border: 1px solid #333;
  color: #333;
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  padding: 5px 8px 4px;
  margin: 0 10px 0 0;
}

/*詳細ページ*/
.postdata p, .postdata ul, .postdata ol {
  margin-bottom: 15px;
}
.postdata a {
  text-decoration: underline;
}
.postdata a:hover {
  text-decoration: none;
}
.postdata strong {
  font-weight: bold;
}
.postdata em {
  font-style: italic;
}
.postdata ul li {
  list-style: inside disc;
}
.postdata ul li > ul {
  margin: 0 0 0 15px;
}
.postdata ol li {
  list-style: inside decimal;
}
.postdata ol li > ol {
  margin: 0 0 0 15px;
}

/*セレクト式カテゴリー*/
.select-area {
  display: flex;
  align-items: center;
  margin: 0 0 50px;
}
.select-area .select-item {
  display: flex;
  align-items: center;
  margin: 0 30px 0 0;
}
.select-area .select-ttl {
  display: inline-block;
  font-family: "Roboto Slab";
  font-size: 16px;
  margin: 0 15px 0 0;
}
.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/ico_arrow_down.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: #333;
  font-size: 16px;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 5px;
}
.select-area .select-category::-ms-expand {
  display: none;
}

/*ページャー*/
.post-number {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.post-number span, .post-number a {
  display: inline-block;
  color: #333;
  border: 1px solid #333;
  font-size: 13px;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 4px;
  margin: 0 4px;
}
.post-number a:hover {
  background: #333;
  color: #fff;
}
.post-number .current {
  background: #333;
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
}
.post-number-single a {
  display: inline-block;
}
.post-number-single .all {
  background: #333;
  border: 1px solid #333;
  color: #fff;
  font-size: 13px;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}
.post-number-single .all:hover {
  background: #fff;
  color: #333;
}
.post-number-single .prev,
.post-number-single .next {
  border: 1px solid #333;
  width: 30px;
  height: 30px;
  position: relative;
}
.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #333;
  margin: 0 auto;
  top: 12px;
}
.post-number-single .prev:hover,
.post-number-single .next:hover {
  background: #333;
}
.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}
.post-number-single .prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  left: 13px;
  border-left: 1px solid #333;
}
.post-number-single .next::before {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  right: 13px;
  border-right: 1px solid #333;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
  /*お知らせ*/
  .list-post-news {
    margin: 0 0 40px;
  }
  .list-post-news a {
    font-size: 14px;
  }
  .list-post-news time {
    margin-right: 25px;
  }

  /*Post Type01*/
  .list-post-type01 {
    margin: 0 0 50px;
  }
  .list-post-type01 li + li {
    margin-top: 20px;
  }
  .list-post-type01 .list-ttl {
    font-size: 18px;
    padding: 0 0 7px;
    margin: 0 0 15px;
  }
  .list-post-type01 .list-img {
    float: left;
    margin: 0 15px 0 0;
    width: 40%;
  }
  .list-post-type01 .list-img img {
    width: 100%;
    height: 25vw;
  }
  .list-post-type01 .list-desc {
    margin: -5px 0 0;
  }
  .list-post-type01 time {
    font-size: 12px;
    margin: 0 15px 0 0;
  }
  .list-post-type01 .list-txt {
    font-size: 11px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
  }
  .list-post-type01 .list-btn {
    margin-top: 15px;
  }
  .list-post-type01 .list-btn a {
    font-size: 11px;
    text-align: center;
    padding: 2px 15px 4px;
  }

  /*詳細ページ*/
  .l-post-single .l-ttl {
    font-size: 22px;
    margin: 0 0 30px;
  }

  /*セレクト式カテゴリー*/
  .select-area {
    display: block;
    margin: 0 0 30px;
  }
  .select-area .select-item {
    margin: 0;
  }
  .select-area .select-item + .select-item {
    margin-top: 10px;
  }
  .select-area .select-ttl {
    font-size: 15px;
  }
}
t .clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.fade {
  transition: 0.5s;
}
.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 11px;
}

.bold, strong {
  font-weight: bold;
}

.alert,
.red {
  color: #ff0000;
}

.marker {
  background: linear-gradient(transparent 50%, #ffe7a5 50%);
}

.notice {
  font-size: 14px;
  text-indent: -1.5em;
  padding: 0 0 0 1.5em;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 80px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.sp-map iframe {
  vertical-align: bottom;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .mbL {
    margin-bottom: 30px !important;
  }

  .mbXL {
    margin-bottom: 50px !important;
  }

  .sp-map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }

  .sp-map iframe,
.sp-map object,
.sp-map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 800px) and (min-width: 0px) {
  /*-----------------------------------------------------------
  Responsive
  -----------------------------------------------------------*/
  /*-------------
  Body
  -------------*/
  body {
    font-size: 14px;
    line-height: 1.8;
  }

  /*------------
  Header
  --------------*/
  .h-logo a img {
    width: 120px;
  }

  /*------------
  G-navi
  --------------*/
  .pc-navi {
    display: none;
  }

  .sp-navi {
    display: block;
  }

  .humberger {
    background-color: #f09234;
    border-radius: 5px;
    box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    transition: 0.5s;
    z-index: 150;
  }
  .humberger span {
    background: #fff;
    position: absolute;
    left: 50%;
    width: 25px;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    transition: 0.4s;
  }
  .humberger span:nth-of-type(1) {
    top: 15px;
  }
  .humberger span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .humberger span:nth-of-type(3) {
    bottom: 15px;
  }
  .humberger.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 9px) rotate(-45deg);
            transform: translate(-50%, 9px) rotate(-45deg);
  }
  .humberger.is-open span:nth-of-type(2) {
    opacity: 0;
  }
  .humberger.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -9px) rotate(45deg);
            transform: translate(-50%, -9px) rotate(45deg);
  }

  .sp-navi-contents {
    background: #fff;
    border-left: 3px solid #f09234;
    padding: 50px 0 30px 20px;
    width: calc(100vw - 60px);
    height: 100%;
    -webkit-text-size-adjust: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: calc(-100vw - 60px);
    transition: 0.5s;
    overflow: scroll;
    z-index: 200;
  }
  .sp-navi-contents.is-open {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    right: 0px;
  }

  .sp-close {
    background: #333;
    border-radius: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 10;
  }
  .sp-close::before, .sp-close::after {
    content: "";
    background: #fff;
    width: 25px;
    height: 1px;
    position: absolute;
    top: 20px;
    left: 7px;
  }
  .sp-close::before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .sp-close::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .sp-navi-list {
    margin: 0 0 30px;
  }
  .sp-navi-list > li {
    border-bottom: 1px solid #e2e2e4;
  }
  .sp-navi-list > li > a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
    position: relative;
  }
  .sp-navi-list > li.sp-dropdown {
    position: relative;
  }
  .sp-navi-list > li.sp-dropdown::after {
    background: url(../images/share/ico_arrow_down.svg) no-repeat 50% 50%/30px;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.35s;
    width: 48px;
    height: 48px;
  }
  .sp-navi-list > li.sp-dropdown.is-on::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .sp-navi-list > li.sp-dropdown .child ul {
    padding: 0 0 15px;
  }
  .sp-navi-list > li.sp-dropdown .child ul > li + li {
    margin-top: 3px;
  }
  .sp-navi-list > li.sp-dropdown .child ul > li > a {
    display: block;
    padding: 0 0 0 15px;
    position: relative;
  }
  .sp-navi-list > li.sp-dropdown .child ul > li > a:before {
    content: "";
    background: #000;
    width: 5px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 12px;
  }
  .sp-navi-list .is-on::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }

  .sp-navi-other {
    padding: 0 20px 0 0;
  }
  .sp-navi-other .other-item + .other-item {
    margin: 15px 0 0;
  }
  .sp-navi-other .tel {
    display: block;
    font-size: 23px;
    line-height: 1;
    margin: 0 0 10px;
  }
  .sp-navi-other .txt {
    font-size: 14px;
    line-height: 1;
  }

  .sp-btn {
    background: #E67A7A;
    border-radius: 5px;
    color: #fff;
    display: block;
    padding: 10px;
    text-align: center;
    transition: 0.5s;
  }

  /*------------
  Hero
  --------------*/
  .hero {
    height: 80vh;
    padding: 150px 25px 0;
  }

  /*------------
  Top contents
  --------------*/
  .t-ttl {
    margin-bottom: 40px;
  }
  .t-ttl .txt01 {
    display: block;
    font-size: 12px;
    padding-bottom: 10px;
  }
  .t-ttl .txt02 {
    display: block;
    font-size: 23px;
    padding-bottom: 20px;
  }

  .t-ttl02 {
    margin-bottom: 40px;
  }
  .t-ttl02 .txt01 {
    display: block;
    font-size: 12px;
    padding-bottom: 10px;
  }
  .t-ttl02 .txt02 {
    display: block;
    font-size: 23px;
  }

  .sec01 {
    padding: 50px 0;
  }

  .photo-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }

  .gray-box {
    justify-content: center;
    flex-wrap: wrap;
    padding: 30px;
  }

  .box-img {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .full-img01 {
    height: 300px;
  }

  .sec03 {
    padding: 50px 0;
  }

  .sec03-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 40px;
    padding: 0 40px;
  }

  .photo-list {
    grid-gap: 20px;
    margin-bottom: 40px;
  }

  .under-line02 {
    font-size: 16px;
  }
  .under-line02 span {
    font-size: 30px;
  }

  .trouble-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 40px;
  }

  .sec04 {
    padding: 0 0 50px;
  }

  .full-img02 {
    height: 400px;
    padding: 40px;
    justify-content: center;
    align-items: center;
  }

  .card {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
    margin-bottom: 40px;
  }
  .card li:nth-of-type(2) {
    order: -1;
  }

  .comment {
    padding: 25px;
  }

  .tel-layout03 {
    padding: 25px;
  }
  .tel-layout03 .tel-no a {
    font-size: 26px;
  }

  .contact-form .submit-btn {
    flex-wrap: wrap;
  }

  .contact-form .submit-btn [type=image] {
    width: 100%;
    margin-bottom: 20px;
  }
  .contact-form .submit-btn [type=image].back-btn {
    margin-right: 0;
    order: 2;
  }

  /*------------
  Footer
  --------------*/
  .pagetop {
    bottom: 25px;
    right: 25px;
  }
  .pagetop a {
    width: 80px;
  }

  .f-wrapper {
    flex-wrap: wrap;
    justify-content: start;
  }

  .desc-info02 {
    text-align: left;
  }

  .desc-info02 .footer-tel a::before {
    width: 20px;
    height: 20px;
    background-size: contain;
  }

  .desc-info01 {
    width: 100%;
    order: 2;
    text-align: center;
  }

  .desc-info02 {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  /*------------
  Under layout
  --------------*/
  .breadcrumb {
    overflow: auto;
    white-space: nowrap;
  }

  /*------------
  Under parts
  --------------*/
  .l-imgR, .l-imgL {
    display: block;
  }
  .l-imgR .l-img, .l-imgL .l-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img {
    margin: 0 0 15px;
  }

  .fl-imgR,
.fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }
  .table-style01 th, .table-style01 td {
    padding: 10px;
  }
  .table-style01.sp-table {
    border-bottom: 1px solid #e3e3e3;
  }
  .table-style01.sp-table th, .table-style01.sp-table td {
    display: block;
  }
  .table-style01.sp-table td {
    border-width: 0 1px;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll:before {
    content: "※横にスクロールできます。";
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    margin: 0 5px;
    border-radius: 5px;
    background: #f5f6f8;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }

  .table-scroll table {
    margin-bottom: 20px !important;
    width: 150%;
  }
}
/*-----------------------------------------------------------
Add
-----------------------------------------------------------*/
/*------------
Slick
-------------*/
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
  text-align: center;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

.slick-prev,
.slick-next {
  border: none;
  background: transparent;
  cursor: pointer;
  color: transparent;
}

.slick-prev,
.slick-next {
  display: block;
  position: absolute;
  top: calc(50% - 20px);
  width: 20px;
  height: 20px;
  transition: 0.5s;
  z-index: 10;
}
.slick-prev:focus,
.slick-next:focus {
  outline: 0;
}
.slick-prev:hover,
.slick-next:hover {
  opacity: 0.5;
}

.slick-prev {
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  left: 25px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
}

.slick-next {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  right: 25px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}

.slick-dots {
  display: block;
  list-style: none;
  line-height: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.slick-dots li + li {
  margin-left: 10px;
}

.slick-dots li button {
  display: block;
  background: #ddd;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  color: transparent;
  width: 8px;
  height: 8px;
  outline: none;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #2292ab;
}

.slick-dots li.slick-active button {
  background: #2292ab;
}

/*------------
Modal
-------------*/
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: white;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.9;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
  This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  /* background: url(../images/loading.gif) no-repeat; */
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  position: relative;
  left: -50px;
  float: left;
  background: url(../images/share/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 1;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next {
  width: 64%;
  position: relative;
  right: -50px;
  float: right;
  background: url(../images/share/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 1;
  transition: opacity 0.6s;
}

.modal-ttl {
  font-family: "Roboto Slab";
  font-size: 22px;
  margin-top: 35px;
  margin-bottom: 30px;
}

.modal-txt {
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
  .lb-nav a.lb-prev {
    left: -10px;
    background: url(../images/share/prev.png) left 48% no-repeat;
  }

  .lb-nav a.lb-next {
    right: -10px;
    background: url(../images/share/next.png) right 48% no-repeat;
  }
}
.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #333;
}

.lb-data .lb-details {
  width: 100%;
  float: left;
  text-align: center;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: none !important;
  color: #333;
}

.lb-closeContainer {
  position: absolute;
  right: -50px;
  top: -40px;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
  .lb-closeContainer {
    position: absolute;
    right: 0;
    top: -40px;
  }
}
.lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/share/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/

.contact-form .zipcode::before{
  content: "〒";
  margin-right: 5px;
}
.contact-form .zipcode input[type="text"]{
  width:40%;
  display: inline-block;
}
