@charset "UTF-8";
/*==========================================
矢印 >
===========================================*/
/*==========================================
矢印 ▶
===========================================*/
/*==========================================
背景ストライプ   ($deg=0 平行)($deg=45deg 斜め)
===========================================*/
/*==========================================
Flexbox
===========================================*/
/*==========================================
上下左右中央揃え
===========================================*/
/*==========================================
上下中央揃え
===========================================*/
/*==========================================
before,after
===========================================*/
/*==========================================
最後の行のmargin-bottomを0にする
===========================================*/
/*==========================================
メインビジュアル(スライダー)
===========================================*/
/*==========================================
タイトル左右のボーダー
===========================================*/
/*==========================================
hover時に中央から外側に向けてのボーダー
===========================================*/
/*==========================================
カーテン
===========================================*/
/*==========================================
グラデーション
===========================================*/
/*-----------------------------
→方向
-----------------------------*/
/*-----------------------------
↓方向
-----------------------------*/
/*-----------------------------
斜め方向
-----------------------------*/
/*==========================================
SP共通
===========================================*/
body {
  width: 100%;
  margin: 0 auto;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  color: #0e0e0e;
  line-height: 1.7;
  text-align: center;
  letter-spacing: .1em;
  font-size: 3.6vw;
}

a {
  color: #0e0e0e;
}

a,
a::before,
a::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

a:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}

p {
  word-break: break-all;
}

a[href^="mailto:"] {
  text-decoration: underline;
}

#container {
  overflow: hidden;
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
.inbox {
  padding: 0 2%;
  margin: 0 auto;
}

.cmn-pd {
  padding: 7.5% 0;
}

.cmn-pt {
  padding-top: 7.5%;
}

.cmn-pb {
  padding-bottom: 7.5%;
}

.cmn-mb {
  margin-bottom: 7.5%;
}

/*==========================================
SP非表示
===========================================*/
.sp-none {
  display: none !important;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  display: none;
}

/*==========================================
タブ
===========================================*/
.category {
  overflow-x: auto;
  white-space: nowrap;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 6%;
}
.category li {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  cursor: pointer;
  font-size: 3.9vw;
  margin-right: 35px;
}
.category li:last-child {
  margin-right: 0;
}
.category li a {
  padding: 3%;
  display: block;
  position: relative;
  z-index: 100;
  padding-bottom: 3px;
  color: #0e0e0e;
  display: block;
  position: relative;
  color: #ccc;
}
.category li a:before {
  content: '';
  width: 0;
  left: 50%;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px solid #0e0e0e;
  position: absolute;
  display: block;
}
.category li a:after {
  content: '';
  width: 0;
  right: 50%;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: 1px solid #0e0e0e;
  position: absolute;
  display: block;
}
.category li a:hover:before {
  width: 50%;
  border-bottom: 1px solid #0e0e0e;
}
.category li a:hover:after {
  width: 50%;
  border-bottom: 1px solid #0e0e0e;
}
.category li a:hover {
  opacity: 1;
  color: #0e0e0e;
}
.category .current a {
  border-bottom: 1px solid #0e0e0e;
  color: #0e0e0e;
}

/*==========================================
テーブルレイアウト
===========================================*/
.cmn-dl {
  text-align: left;
}
.cmn-dl > dl > dt {
  background: #000;
  color: #fff;
  padding: 2% 3%;
}
.cmn-dl > dl > dd {
  padding: 3%;
}
.cmn-dl > dl > dd a[href^="tel:"],
.cmn-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  font-size: 4.3vw;
  font-weight: bold;
  text-align: left;
  border-left: 3px solid #000;
  margin-bottom: 4%;
}

/*------------------------------------------------------------
    ヘッダー
------------------------------------------------------------*/
#gHeader {
  background: #000;
  position: fixed;
  z-index: 1001;
  left: 0;
  right: 0;
  top: 0;
}

#gHeader h1 {
  width: 30%;
  text-align: center;
}

#gHeader h1 a {
  padding: 3% 5%;
  display: block;
  background: #fff;
}

#gHeader .hInner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2%;
}

#gHeader .hInner .tel {
  margin-right: 3.88%;
  width: 33.7%;
}

#gHeader .hInner .linkUl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#gHeader .hInner .linkUl li {
  margin-right: 3.2%;
  width: 40%;
  display: inline-block;
}

#gHeader .hInner .linkUl li:last-child {
  margin-right: 0;
  width: 45%;
}

#gHeader .hInner .linkUl li a {
  display: block;
}

#gHeader .hInner .linkUl li a:hover {
  opacity: 0.7;
}

#gHeader .hBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#gHeader .hBox p {
  width: 65%;
  text-align: left;
  color: #fff;
  /*font-size: 0.58vw;*/
  font-size: 2vw;
  letter-spacing: 0.1em;
}

/*------------------------------------------------------------
    index
------------------------------------------------------------*/
#main .mv {
  height: 75vw;
  background: #000 url("../img/index/mainvisual_bg.jpg") no-repeat left top/auto 100%;
  margin-top: 21%;
}

#main .mv .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}

#main .mv .textBox {
  font-weight: bold;
  color: #fff;
}

#main .mv .textBox h2 {
  font-size: 5.8vw;
}

#main .mv .textBox h2 span {
  font-size: 5.3vw;
}

#main .mv .textBox p {
  font-size: 4.7vw;
  font-weight: bold;
}

#main .mv .textBox .text {
  width: 22%;
  position: absolute;
  right: 2%;
  bottom: 1%;
}

#main .list {
  padding: 8% 2% 7.5% 2%;
  position: relative;
  z-index: 1;
  background: #000;
}

#main .list::after {
  width: 20%;
  height: 46px;
  position: absolute;
  bottom: -2%;
  left: 0;
  right: 0;
  background: url("../img/index/arw.png") no-repeat left top/100% 100%;
  content: '';
  background-size: 100%;
  background-position: 50% 100%;
  margin: 0 auto;
}

#main .list h2 {
  margin-bottom: 5%;
  color: #fff;
  font-size: 4.6vw;
  text-align: center;
  font-weight: bold;
}

#main .list h2 span {
  margin-top: 2%;
  display: block;
  font-size: 3.9vw;
}

#main .list li {
  padding: 3% 2% 3% 10%;
  margin-bottom: 4%;
  background: #fff url("../img/index/check.png") no-repeat left 2% center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  background-size: 5%;
}

#main .list li p {
  font-size: 3.8vw;
  font-weight: 600;
  text-align: left;
}

#main .greet {
  padding: 7.5% 2%;
  background: url("../img/index/greeting_bg.jpg") no-repeat right bottom/984px auto;
  background-size: cover;
}

#main .greet .topTxt {
  margin-bottom: 5.5%;
  font-size: 4.5vw;
  font-weight: bold;
  text-align: center;
}

#main .greet .textBox {
  padding: 7% 2%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #000;
}

#main .greet .textBox h2 {
  margin-bottom: 3%;
  text-align: center;
  font-size: 4.2vw;
  font-weight: bold;
}

#main .greet .textBox::before {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  right: 2%;
  bottom: 2%;
  position: absolute;
  border: 1px solid #000;
  box-sizing: border-box;
  z-index: 1;
  content: '';
}

#main .greet .textBox p {
  text-align: left;
}

#main .movie {
  padding: 7.5% 2%;
  background: #f6f6f6;
  position: relative;
}

.headLine01 {
  margin-bottom: 4%;
  font-size: 4.5vw;
  text-align: center;
  font-weight: bold;
}

.headLine01 span {
  font-size: 6vw;
  display: block;
  text-transform: uppercase;
}

#main .movie .content {
  text-align: center;
}

#main .movie .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

#main .movie .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

#main .strength {
  padding: 9% 0;
  position: relative;
}

#main .strength h2 {
  margin-bottom: 5%;
  text-align: center;
  font-size: 4.5vw;
  font-weight: bold;
}

#main .strength h2 span {
  font-size: 8vw;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #8A7968;
}

#main .strength .en {
  color: #f6f6f6;
  position: absolute;
  right: 2%;
  top: 2%;
  line-height: 1;
  font-size: 9vw;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  z-index: -1;
}

#main .strength ul {
  width: 90%;
  margin: 0 auto;
}

#main .strength li {
  margin-bottom: 5%;
  padding: 5% 3%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#main .strength li:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#main .strength li:last-child {
  margin-bottom: 0;
}

#main .strength li .num {
  width: 13%;
  margin-bottom: 2%;
  position: relative;
  z-index: 10;
}

#main .strength li .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  z-index: 10;
}

#main .strength li .text h3 {
  margin-bottom: 3%;
  font-weight: bold;
  font-size: 4vw;
}

#main .strength li .text p {
  text-align: left;
  font-weight: 500;
}

#main .reform {
  padding: 7.5% 2%;
  position: relative;
  background: url("../img/index/reform_bg.jpg") no-repeat top center/100% auto;
  background-size: 100%;
}

#main .reform .en {
  color: #f6f6f6;
  width: 45%;
  position: absolute;
  right: 2%;
  top: 2%;
  line-height: 1;
  font-size: 18rem;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  z-index: -1;
}

#main .reform h2 {
  margin-bottom: 4%;
  font-size: 5vw;
  font-weight: bold;
}

#main .reform .topTxt {
  margin-bottom: 5%;
  font-size: 4vw;
  text-align: left;
  font-weight: bold;
}

#main .reform .topTxt span {
  margin-top: 2%;
  display: block;
  font-size: 3.6vw;
  font-weight: normal;
}

#main .reform .photoUl li {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 9%;
}
#main .reform .photoUl li:last-child {
  margin-bottom: 0;
}

#main .reform .photoUl li h3 {
  margin-bottom: 3%;
  font-size: 4.3vw;
  line-height: 1;
}

#main .reform .photoUl li h3 span {
  margin-right: 1%;
  font-size: 5.5vw;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}

#main .reform .photoUl li .img {
  margin-bottom: 4%;
}

#main .reform .photoUl li p {
  font-size: 3.8vw;
  text-align: left;
}

#main .reform .photoUl li p span {
  margin-bottom: 2%;
  display: block;
  font-weight: bold;
  font-size: 4vw;
  text-align: center;
}

#main .reform .photoUl li .name {
  margin-bottom: 2%;
  text-align: center;
  font-size: 4.2vw;
}

#main .fee {
  padding: 10% 2% 7.5% 2%;
  background: #F8F8F8;
}

#main .fee .ttlBox {
  margin-bottom: 5%;
  position: relative;
}

#main .fee .ttlBox .img {
  position: absolute;
  width: 20%;
  left: 0;
  top: -20%;
}

#main .fee .ttlBox .text h3 {
  font-size: 4.4vw;
  text-align: right;
  border-bottom: 2px solid #000;
  font-weight: bold;
  margin-bottom: 4%;
}

#main .fee .ttlBox .text h3 span {
  font-size: 8vw;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 600;
  line-height: 1;
  color: #8A7968;
}

#main .fee .ttlBox .text p {
  font-weight: bold;
  font-size: 3.7vw;
  text-align: left;
}

#main .fee .text {
  text-align: left;
}

#main .fee .ttl {
  margin-bottom: 11px;
  text-align: center;
  text-align: left;
  padding-left: 15%;
  position: relative;
}
#main .fee .ttl:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  content: '';
  width: 10%;
  height: 1px;
  border-top: 1px solid #000;
  left: 0;
}

#main .fee .ttl > span {
  position: relative;
  font-weight: bold;
}

#main .fee .photoUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 3%;
}

#main .fee .photoUl li {
  width: 48%;
  margin-bottom: 3%;
}
#main .fee .photoUl li:nth-child(2n+1):nth-last-child(-n+2), #main .fee .photoUl li:nth-child(2n+1):nth-last-child(-n+2) ~ li {
  margin-bottom: 0;
}

#main .opera {
  padding: 7.5% 2%;
}

#main .opera h2 {
  margin-bottom: 5%;
  font-size: 5vw;
  font-weight: bold;
  text-align: center;
  position: relative;
}

#main .opera h2 > span img {
  width: 15%;
  position: absolute;
  left: 11%;
  bottom: 60%;
}

#main .opera h2 > span span {
  margin-top: 3%;
  margin-bottom: 5%;
  font-size: 3.7vw;
  display: block;
  text-align: left;
}

#main .opera .listBox {
  padding: 21% 3% 5% 3%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #000;
  position: relative;
  margin-bottom: 2%;
}

#main .opera .listBox .ttl {
  width: 95%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  font-size: 4vw;
  font-weight: bold;
  text-align: center;
  -webkit-transform: translateY(-11px);
          transform: translateY(-11px);
  padding: 3%;
  background: #000;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#main .opera .listBox .ttl span::before {
  width: 10px;
  height: 10px;
  position: absolute;
  right: -10px;
  top: 0;
  background: url("../img/index/icon01.png") no-repeat left top/100% 100%;
  content: '';
}

#main .opera .listBox .textUl li {
  margin-bottom: 4%;
  padding-left: 7%;
  text-align: left;
  position: relative;
  font-size: 3.7vw;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#main .opera .listBox .textUl li::before {
  width: 4%;
  height: 25px;
  position: absolute;
  left: 0;
  top: 15%;
  background: url("../img/index/earthquake_check.png") no-repeat left top/100% 100%;
  content: '';
  background-size: 100%;
  background-position: 50% 0;
}

#main .opera .arrow {
  width: 20%;
  margin: 0 auto;
  margin-bottom: 7%;
  text-align: center;
}

#main .opera .btmTxt {
  font-size: 4vw;
  font-weight: bold;
  text-align: left;
}

#main .home {
  padding: 7.5% 2%;
  color: #fff;
  background: #000;
}

#main .home h2 {
  font-size: 4.5vw;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4.5%;
}

#main .home h2 + p {
  display: block;
  font-size: 3.8vw;
  text-align: left;
  font-weight: bold;
  margin-bottom: 4%;
}

#main .home .imgBox {
  margin-bottom: 5%;
}
#main .home .imgBox:last-child {
  margin-bottom: 0;
}

#main .home .imgBox .textBox h3 {
  margin-bottom: 5%;
  font-weight: 500;
  padding: 3% 7%;
  font-size: 3.9vw;
  line-height: 1.5;
  background: url("../img/index/line01.png") no-repeat left center, url("../img/index/line02.png") no-repeat right center;
  background-size: 4%;
}

#main .home .imgBox .textBox p {
  text-align: left;
  margin-bottom: 4%;
}

#main .home .imgBoxL {
  margin-bottom: 0;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#main .contact {
  padding: 7.5% 2%;
  background: #F0F0F0;
}

#main .contact .text {
  margin-bottom: 4%;
  text-align: center;
  font-size: 4.1vw;
  font-weight: bold;
}

#main .contact .linkUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4%;
}

#main .contact .linkUl li {
  width: 32.5%;
}

#main .contact p {
  font-size: 3.8vw;
  text-align: left;
}

#main .contact p span {
  display: block;
  font-size: 3.3vw;
}

#main .contact .area {
  text-align: center;
  margin-bottom: 3%;
}

#main .contact .area span {
  padding: 3% 5%;
  display: inline-block;
  font-size: 3.8vw;
  font-weight: bold;
  color: #fff;
  background: #333;
}

#main .company {
  padding: 7.5% 2%;
}

#main .company .ttl {
  font-weight: bold;
  font-size: 4.3vw;
  color: #0e0e0e;
  margin-bottom: 3%;
}

#main .company .ttl img {
  margin-right: 3%;
  width: 12%;
  vertical-align: middle;
}

#main .company table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 4%;
}

#main .company table th,
#main .company table td {
  padding: 3% 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

#main .company table th {
  padding-right: 15px;
  width: 30%;
  font-weight: normal;
  vertical-align: top;
}

#main .company .map {
  position: relative;
  width: 100%;
  padding: calc(315 / 560 * 100%) 0 0;
  margin-bottom: 4%;
}

#main .company .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#main .company .linkUl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#main .company .linkUl li {
  width: 48%;
}

/*------------------------------------------------------------
    フッター
------------------------------------------------------------*/
#gFooter {
  position: relative;
}

#gFooter .pageTop {
  position: fixed;
  right: 3%;
  bottom: 3%;
  z-index: 50;
  width: 10%;
}

#gFooter .pageTop a:hover {
  opacity: 0.7;
}

#gFooter address {
  padding: 2%;
  color: #fff;
  font-size: 2.55vw;
  font-style: normal;
  color: #fff;
  background: #000;
  text-align: center;
}

#gFooter address a {
  color: #fff;
}

/*==========================================
ギャラリー
===========================================*/
#gallery .gallery-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#gallery .gallery-lists li {
  width: 48%;
  margin-bottom: 20px;
}
#gallery .gallery-lists li:nth-child(2n+1):nth-last-child(-n+2), #gallery .gallery-lists li:nth-child(2n+1):nth-last-child(-n+2) ~ li {
  margin-bottom: 0;
}
#gallery .gallery-lists li .thumb {
  width: 100%;
  height: 40vw;
}
#gallery .gallery-lists li a {
  display: block;
}
#gallery .gallery-lists figcaption {
  padding: 5px 0;
}
#gallery .img-eff {
  position: relative;
  width: 100%;
  height: 40vw;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
#gallery .img-eff:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 40vw;
  background: radial-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 0;
}
#gallery .img-eff:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#gallery .img-eff:hover:before {
  opacity: 1;
}
#gallery .gallery-img .main-img {
  margin-bottom: 10px;
}
#gallery .gallery-img-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#gallery .gallery-img-lists li {
  width: 48%;
  height: 35vw;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#gallery .gallery-img-lists li:nth-child(2n+1):nth-last-child(-n+2), #gallery .gallery-img-lists li:nth-child(2n+1):nth-last-child(-n+2) ~ li {
  margin-bottom: 0;
}
#gallery .gallery-img-lists li:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}
#gallery .comment {
  margin-top: 20px;
  text-align: left;
  padding-bottom: 10px;
}

.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 3vw;
}
.single-category dt {
  width: 80px;
}
.single-category dt:after {
  content: ':';
  padding: 0 5px;
}
.single-category dd {
  max-width: 135px;
  line-height: 2;
  min-width: 60px;
}
.single-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-category ul li {
  margin-right: 5px;
}
.single-category ul li:last-child {
  margin-right: 0;
}
.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}
.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: '#';
}
.single-category ul li a:hover {
  background: #ccc;
}

/*==========================================
お知らせ
===========================================*/
.post-wrap {
  padding: 7.5% 0;
}
.post-wrap .column-lists li {
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.post-wrap .column-lists li a {
  display: block;
  padding: 10px;
}
.post-wrap .column-lists li:last-child {
  margin-bottom: 0;
}
.post-wrap .column-lists .post-ttl {
  text-align: left;
  margin-bottom: 25px;
  font-weight: bold;
}
.post-wrap .column-lists .post-ttl time {
  font-size: 3vw;
  color: #000;
  text-align: left;
}
.post-wrap .column-lists .post-ttl time,
.post-wrap .column-lists .post-ttl .category-label {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.post-wrap .column-lists .post-ttl .category-label li {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #000;
  color: #fff;
  background: #000;
  padding: 2px 5px;
  font-size: 3vw;
  margin-right: 5px;
}
.post-wrap .column-lists .post-ttl .category-label li:last-child {
  margin-right: 0;
}
.post-wrap .column-lists .post-ttl .column-ttl {
  font-size: 4.1vw;
  display: block;
  margin-top: 10px;
}
.post-wrap .column-lists .post-body {
  text-align: left;
  margin-bottom: 20px;
}
.post-wrap .column-lists .more-btn {
  width: 45%;
  font-size: 3.2vw;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: #000;
  border: 1px solid #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.post-wrap .column-lists .thumb {
  width: 55%;
  margin: 0 auto;
  height: 42vw;
  margin-bottom: 10px;
}
.post-wrap .post-content {
  padding: 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.post-wrap .post-content time {
  font-size: 3vw;
  margin-top: 20px;
  font-weight: bold;
  display: block;
  color: #000;
  text-align: right;
}
.post-wrap .post-content .category-label {
  font-size: 3vw;
  text-align: right;
}
.post-wrap .post-content .category-label dt, .post-wrap .post-content .category-label dd {
  display: inline-block;
  vertical-align: middle;
}
.post-wrap .post-content .category-label dt:after {
  content: ':';
}
.post-wrap .post-content .category-label li {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.post-wrap .post-content .category-label dd li:after {
  content: ',';
}
.post-wrap .post-content .category-label dd li:last-child:after {
  content: '';
}

/*==========================================
お問い合わせ
===========================================*/
.contact-form {
  text-align: left;
  margin-bottom: 5%;
}
.contact-form dl dt {
  position: relative;
}
.contact-form dl dt span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
  color: #000;
  background: #fff;
  font-weight: bold;
  padding: 3px;
  font-size: 3vw;
}
.contact-form dl dd {
  padding: 10px 0;
}
.contact-form dl dd li {
  list-style: none;
}
.contact-form dl dd textarea {
  height: 150px;
}
.contact-form .txtarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  padding: 3%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.contact-form #post01,
.contact-form #post02 {
  width: 150px;
}
.contact-form #addr21 {
  margin-top: 15px;
}
.contact-form .error-text {
  color: #ff0000;
}

.contact-submits-wrap {
  margin-top: 5%;
}

.g-recaptcha div {
  margin: 0 auto;
  margin-bottom: 5%;
}

input[type='button'][disabled],
input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}

input[type='button'],
input[type='submit'] {
  font-weight: 600;
  color: #fff;
  background: #fff;
  padding: 4% 2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #000;
  color: #000;
  border-radius: 0;
}
input[type='button']:hover,
input[type='submit']:hover {
  background: #000;
  cursor: pointer;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}

.check-btn {
  width: 75%;
  margin: 0 auto;
  margin-top: 4%;
}

.back-btn {
  width: 52%;
  margin: 0 auto;
}

.send-btn {
  width: 40%;
  margin: 0 auto;
  margin-left: 4%;
}

input[type="submit"] {
  -webkit-appearance: none;
}

input[type='button'],
input[type='submit'] {
  font-size: 3.4vw;
}

/*==========================================
プライバシーポリシー
===========================================*/
.privacy-cont {
  margin-bottom: 6%;
  text-align: left;
}
.privacy-cont:last-child {
  margin-bottom: 0;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/
/*==========================================
404.php
===========================================*/
#err-cont {
  padding: 7.5% 0;
}
#err-cont .txt-blc a {
  text-decoration: underline;
}
