@charset "utf-8";

/* base
----------------------------------*/
html {
  font-size: 62.5%; /* root: 10px */
  height: 100%;
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "YuGothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  color: #111;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings : "palt";
}
/* Safariのみ仮名文字のみをカーニングする指定 */
@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, body {
    font-feature-settings: "pkna";
  }
}
body.page-second {
  background: #eee;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -ms-interpolation-mode: bicubic;
}
/* IEだけインラインSVGの表示サイズがおかしくなるバグへの対処方法 */
img[src$=".svg"] {
  width: 100%; /* lte IE10 */
}
a {
  text-decoration: none;
  color: inherit;
  outline: none; /* lte IE8 */
}
.ua-desktop a:hover {
  text-decoration: none;
}
.ua-desktop a.hv-udl:hover {
  text-decoration: underline;
  padding-bottom: 1px; /* font-size:11px以下のバグ対策; */
}
a img {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.ua-desktop a:hover img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  filter: alpha(opacity=70); /* lte IE8 */
  opacity: 0.7;
}
.ua-desktop a:hover {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  filter: alpha(opacity=70); /* lte IE8 */
  opacity: 0.7;
}
.ua-desktop a.hv-op-no:hover {
  filter: alpha(opacity=100); /* lte IE8 */
  opacity: 1;
}

/*** keyframes fadein ***/
@-webkit-keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-ms-keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/*** keyframes slideIn ***/
@-webkit-keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-ms-keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    -moz-transform: translate(0, -67px);
    -ms-transform: translate(0, -67px);
    -webkit-transform: translate(0, -67px);
    transform: translate(0, -67px);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

/*** keyframes spin ***/
@-webkit-keyframes spin {
  0% {-webkit-transform: rotate(0deg);}
  100% {-webkit-transform: rotate(360deg);}
}
@-moz-keyframes spin {
  0% {-moz-transform: rotate(0deg);}
  100% {-moz-transform: rotate(360deg);}
}
@-ms-keyframes spin {
  0% {-ms-transform: rotate(0deg);}
  100% {-ms-transform: rotate(360deg);}
}
@-o-keyframes spin {
  0% {-o-transform: rotate(0deg);}
  100% {-o-transform: rotate(360deg);}
}
@keyframes spin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

/*** font ***/
.font-wgt-01 {
  font-weight: 600;
}
.font-nrw-01 {
  letter-spacing: -1px;
}
.font-small-01 {
  font-size: 80%;
}
.font-fmy-01 {
  font-family: 'Ubuntu Condensed', sans-serif;
}
.font-fmy-02 {
  font-family: 'Titillium Web', sans-serif;
}
.font-fmy-03 {
  font-family: 'Roboto', sans-serif;
}
.font-fmy-notosansjapanese {
  font-family: "Noto Sans JP";
}

/*** other ***/
.align-center {
  text-align: center;
}
.wrd-bkal {
  word-break: break-all;
}
sup,
.sup {
  vertical-align: super;
  font-size: 62%;
}

.ua-desktop .link-color:hover {
  color: #ed4040;
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.ua-desktop .cmn-btn-02 .link-color:hover .icon {
  background-color: #ed4040;
  filter: alpha(opacity=100);
  opacity: 1;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.ua-desktop .link-color.trans:hover,
.ua-desktop .cmn-btn-02 .link-color.trans:hover .icon {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.mouse-enter {
  display: none;
}
.ua-desktop .link-color:hover .mouse-enter {
  display: block;
  filter: alpha(opacity=100);
  opacity: 1;
}
.ua-desktop .link-color:hover .mouse-leave {
  display: none;
}


/* switching PC/SP
----------------------------------*/
@media only screen and (min-width: 641px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
}


/* basic
----------------------------------*/
.outer {
  background: #f3f3f3;
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.inner-01 {
  width: 1200px;
  margin: 0 auto;
  padding: 0;
  /*padding-right: 10px;
  padding-left: 10px;*/
}
.inner-02 {
  max-width: 900px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}
.inner-03 {
  max-width: 960px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}
.icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  margin: 0 auto;
  line-height: 1;
}
.icon-external_link {
  width: 0.9em;
  vertical-align: top;
  margin-left: 0.25em;
  position: relative;
  top: 4px;
}

/* SP */
@media only screen and (max-width: 640px) {
  .inner-01 {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}


/* unique
----------------------------------*/
/*** header-group ***/
.header-group {
  position: relative;
  background: #fff;
  z-index: 999999;
  top: 0;
  left: 0;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  min-width: 1200px;
}
.header-group.hg-fixed {
  position: fixed;
  width: 100%;
  background: rgba(255,255,255,1.0);
  -webkit-animation: slideIn 0.5s linear 0s 1;
  -moz-animation: slideIn 0.5s linear 0s 1;
  -ms-animation: slideIn 0.5s linear 0s 1;
  -o-animation: slideIn 0.5s linear 0s 1;
  animation: slideIn 0.5s linear 0s 1;
  border-bottom: 1px solid #111;
}
.header-nav {
  color: ;
}
.header-nav-01 {
  font-size: 12px;
  font-size: 1.2rem;
  display: table;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  height: 110px;
}
.hn1-wrap-01,
.hn1-wrap-03 {
  box-sizing: border-box;
  display: table-cell;
  padding-right: 20px;
  text-align: right;
  vertical-align: middle;
}
.hn1-wrap-01 {
  text-align: left;
  padding-left: 30px;
  padding-top: 10px;
}
.hn1-wrap-02 {
  padding-right: 20px;
}
.hn1-wrap-03 {
  vertical-align: middle;
  width: 500px;
}
.header-logo {
  display: inline-block;
  vertical-align: top;
  width: 110px;
}
.hn1-tel {
  font-size: 28px;
  font-size: 2.8rem;
}
.hn1-tel .icon-phone {
  display: inline-block;
  width: 0.6em;
  position: relative;
  top: 2px;
  margin-right: 6px;
}
.hn1-tel .icon-map {
  display: inline-block;
  width: 0.6em;
  position: relative;
  top: 2px;
  margin-right: 6px;
}
.hn1-lgnctt {
  font-size: 0;
}
.hn1-lgnctt li {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  font-size: 1.6rem;
  box-sizing: border-box;
  line-height: 1;
  position: relative;
  text-align: center;
  vertical-align: middle;
}
.hn1-lgnctt li > a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  position: relative;
}
.hn1-lgnctt li.contact {
  width: 140px;
  height: 44px;
  margin-right: 10px;
}
.hn1-lgnctt li.contact a {
  background: #836d50;
  box-sizing: border-box;
  display: block;
  padding: 12px  5px;
}
.hn1-lgnctt li.contact a span.txt {
  font-size: 14px;
  font-weight: bold;
}
.hn1-lgnctt li.contact a span.txt:before {
  font-family: 'Material Icons';
  font-feature-settings: 'liga';
  font-size: 20px;
  content: "email";
  padding-right: 5px;
  color: #fff;
  vertical-align: middle;
}
.hn1-lgnctt li.phone {
  width: 190px;
  height: 50px;
}
.hn1-lgnctt li.phone a {
  padding: 10px  5px;
}
.hn1-lgnctt li.phone a span.txt {
  font-size: 20px;
  font-weight: bold;
  display: block;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.hn1-lgnctt li.phone a span.number {
  color: #836d50;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.hn1-lgnctt li.phone a span.txt:before,
.hn1-lgnctt li.phone a span.number:before{
  font-family: 'Material Icons';
  font-feature-settings: 'liga';
  font-size: 24px;
  content: "phone";
  padding-right: 2px;
  color: #836d50;
  vertical-align: middle;
}
.hn1-lgnctt li.map {
  width: 70px;
  height: 50px;
}
.hn1-lgnctt li.map a {
  padding: 10px 5px;
}
.hn1-lgnctt li.map a span.txt {
  font-size: 16px;
  font-weight: bold;
  display: block;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.hn1-lgnctt li.map a span.number {
  color: #836d50;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  white-space: nowrap;
}
.hn1-lgnctt li.map a span.txt:before,
.hn1-lgnctt li.map a span.number:before{
  font-family: 'Material Icons';
  font-feature-settings: 'liga';
  font-size: 24px;
  content: "place";
  padding-right: 0;
  color: #836d50;
  vertical-align: middle;
}
.ua-desktop .hn1-lgnctt li > a:hover {
  opacity: 1;
}




.header-nav-02 {
  position: absolute;
  top: 0;
  left: 160px;
}
.hn-golbalmenu {
  display: table;
  table-layout: fixed;
  width: 100%;
  background: #fff;
}
.hn-golbalmenu > li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
}
.hn-golbalmenu > li > a {
  display: block;
  box-sizing: border-box;
  padding: 21px 10px;
  height: 70px;
}
.hn-golbalmenu > li > a:before {
  content: " ";
  width: 100%;
  height: 3px;
  background: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.hn-golbalmenu > li.current > a:before {
  background: #111111;
}
.ua-desktop .hn-golbalmenu > li > a:hover,
.ua-desktop .hn-golbalmenu > li:hover,
.ua-desktop .hn-golbalmenu > li.ms-on {
  background: #111111;
  color: #fff;
  opacity: 1;
}
.ua-desktop .hn-golbalmenu > li.ms-off {
  background: transparent !important;
  -webkit-transition: all 1.5s;
  -moz-transition: all 1.5s;
  -ms-transition: all 1.5s;
  -o-transition: all 1.5s;
  transition: all 1.5s;
}
.ua-desktop .hn-golbalmenu .hngm-home {
  display: none;
}
.ua-desktop .hn-golbalmenu > .hngm-home:hover {
  background: none;
}

.hn-golbalmenu .menu-sub {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  text-align: left;
  display: none; /* JSで制御 */
}
.hn-golbalmenu .menu-sub-01 {
  width: 210px;
}
.hn-golbalmenu .menu-sub-02 {
  width: 210px;
}
.hn-golbalmenu .menu-sub-03 {
  width: 210px;
}
.hn-golbalmenu .menu-sub-04 {
  width: 230px;
}
.hn-golbalmenu .menu-sub > li > a {
  display: block;
  background: #111111;
  box-sizing: border-box;
  padding: 10px 40px;
  color: #fff;
  font-size: 14px;
}
.ua-desktop .hn-golbalmenu .menu-sub > li > a:hover {
  background: #666666;
  opacity: 1;
}

/* SP */
@media only screen and (max-width: 640px) {
  .header-group {
    min-width: 100%;
  }
}


/* #section-contact
----------------------------------*/
/*#section-contact {
  background: url("../img/common/contact_bg.jpg") no-repeat center;
  background-size: cover;
  background: #b9a489;
  box-sizing: border-box;
  height: 480px;
  padding: 50px 0;
  position: relative;
}*/
#section-contact {
  background: url("../img/common/contact_bg4.jpg") no-repeat center bottom;
  background-size: cover;
  /*background-attachment: fixed;*/
  box-sizing: border-box;
  height: 480px;
  position: relative;
}
#section-contact:before {
  content: " ";
  /*background: rgba(185,164,137,0.8);
  background: rgba(95, 67, 15, 0.5);
  background: rgba(144, 96, 7, 0.2);
  background: rgba(224, 157, 34, 0.2);*/
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#section-contact .section-ttl {
  margin-bottom: 10px;
  text-align: center;
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translate(-50%, 0);
}
#section-contact .section-ttl h2 {
  color: #111;
  font-size: 58px;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  opacity: 0.6;
}
#section-contact .section-ttl p {
  color: #111;
  font-size: 18px;
  line-height: 1.4;
}
#section-contact p.txt {
  text-align: center;
  margin-bottom: 40px;
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translate(-50%, 0);
}
#section-contact ul {
  font-size: 0;
  line-height: 1;
  position: relative;
  vertical-align: middle;
  position: absolute;
  top: 280px;
  left: 50%;
  transform: translate(-50%, 0);
}
#section-contact ul li {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 600px;
}
#section-contact ul li.phone a span {
}
#section-contact ul li.phone a span.txt {
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 46px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
#section-contact ul li.phone a span.txt:before {
  font-family: 'Material Icons';
  font-feature-settings: 'liga';
  font-size: 34px;
  content: "phone";
  padding-right : 6px;
  color: #111;
  vertical-align: middle;
}
#section-contact ul li.phone a span.time {
  font-size: 16px;
  display: block;
  line-height: 1.5;
}
#section-contact ul li.contact a {
  border: 1px solid #666;
  box-sizing: border-box;
  width: 520px;
  height: 120px;
  display: block;
  padding-top: 40px;
}
#section-contact ul li.contact a span.txt {
  font-size: 26px;
  font-weight: bold;
}
#section-contact ul li.contact a span.txt:before {
  font-family: 'Material Icons';
  font-feature-settings: 'liga';
  font-size: 32px;
  content: "email";
  padding-right : 8px;
  color: #111;
  vertical-align: middle;
}

/* SP */
@media only screen and (max-width: 640px) {
  #section-contact {
    background-position-x: 60%;
    box-sizing: border-box;
    min-height: 500px;
    padding: 60px 20px;
    position: relative;
  }
  #section-contact .section-ttl {
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    top: 0;
  }
  #section-contact .section-ttl h2 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
  }
  #section-contact .section-ttl p {
    font-size: 16px;
    line-height: 1.4;
  }
  #section-contact p.txt {
    font-size: 12px;
    text-align: center;
    margin: 0 auto 20px;
    width: 80%;
    position: relative;
    top: 0;
    left: auto;
    transform: none;
  }
  #section-contact ul {
    font-size: 0;
    line-height: 1;
    position: relative;
    vertical-align: middle;
    width: 90%;
    top: 0;
    left: auto;
    transform: none;
  }
  #section-contact ul li {
    display: block;
    font-size: 18px;
    line-height: 1;
    position: relative;
    text-align: center;
    vertical-align: middle;
    width: 100%;
    margin-bottom: 20px;
  }
  #section-contact ul li.phone a {
    border: 1px solid #111;
    box-sizing: border-box;
    width: 100%;
    height: 90px;
    display: block;
    padding-top: 12px;
  }
  #section-contact ul li.phone a span.txt {
    font-size: 32px;
    font-weight: bold;
    display: block;
    margin-bottom: 0;
    letter-spacing: 1px;
  }
  #section-contact ul li.phone a span.txt:before {
    font-family: 'Material Icons';
    font-feature-settings: 'liga';
    font-size: 28px;
    content: "phone";
    padding-right : 4px;
    color: #111;
    vertical-align: middle;
  }
  #section-contact ul li.phone a span.time {
    font-size: 14px;
    display: block;
    line-height: 1.2;
  }
  #section-contact ul li.contact a {
    border: 1px solid #111;
    box-sizing: border-box;
    width: 100%;
    height: 90px;
    display: block;
    padding-top: 30px;
  }
  #section-contact ul li.contact a span.txt {
    font-size: 22px;
    font-weight: bold;
  }
  #section-contact ul li.contact a span.txt:before {
    font-family: 'Material Icons';
    font-feature-settings: 'liga';
    font-size: 26px;
    content: "email";
    padding-right : 4px;
    color: #111;
    vertical-align: middle;
  }
}


/* footer-group
----------------------------------*/
.footer-group {
  background: linear-gradient(90deg,#000 0%,#000 50%,#111 50%,#111 100%);
}
.footer-inner {
  background: linear-gradient(90deg,#000 0%,#000 35%,#111 35%,#111 100%);
  box-sizing: border-box;
  color: #fff;
  padding: 0 40px;
  margin: 0 auto;
  width: 1200px;
}
.footer-nav {
  font-size: 0;
  padding: 80px 0;
}
.fn-wrap-01 {
  box-sizing: border-box;
  display: inline-block;
  font-size: 0;
  padding: 0 0 40px 40px;
  vertical-align: top;
  width: 720px;
}
.fn-golbalmenu {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  font-size: 1.4rem;
  width: 25%;
}
.fn-golbalmenu-01 {}
.fn-golbalmenu-02 {}
.fn-golbalmenu-03 {}
.fn-golbalmenu-04 {}
.fn-golbalmenu ul li {
  margin-bottom: 0.5em;
}
.fn-golbalmenu ul li a {
  display: inline-block;
}
.fn-golbalmenu > ul > li {
  margin-bottom: 3em;
}
.fn-golbalmenu > ul > li > a {
  font-weight: bold;
  margin-bottom: 0.5em;
}
.fn-golbalmenu > ul > li > ul {
  margin-left: 1em;
}

.fn-wrap-02 {
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 0 40px 0 0;
  width: 380px;
}
.fn-wrap-02 .logo {
  margin-bottom: 10px;
  vertical-align: top;
  width: 213px;
}
.fn-wrap-02 p.catch {
  border-bottom: 1px solid #333;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.fn-wrap-02 h2 {
  font-size: 14px;
  margin-bottom: 20px;
}
.fn-wrap-02 h2 span {
  font-size: 24px;
}
.fn-wrap-02 .fn2-contact {
  margin-top: 30px;
}
.fn-wrap-02 .fn2-contact li {
  display: inline-block;
  vertical-align: top;
}
.fn-wrap-02 .fn2-contact li.address {
}

.footer-credit {
  box-sizing: border-box;
  margin-top: 50px;
}
.fc-copyright {
  font-size: 12px;
  font-size: 1.2rem;
  color: #999;
  margin-bottom: 0.25em;
}
.fc-caution {
  font-size: 10px;
  font-size: 1.0rem;
  color: #999;
}

/* SP */
@media only screen and (max-width: 640px) {
  .footer-group {
    background: #000;
  }
  .footer-inner {
    background: #000;
    color: #fff;
    box-sizing: border-box;
    width: 80%;
    padding: 60px 0;
    margin: 0 10%;
  }
  .footer-nav {
    font-size: 0;
    padding: 0;
  }
  .fn-wrap-02 {
    box-sizing: border-box;
    color: #fff;
    display: block;
    font-size: 14px;
    padding: 0;
    width: 100%;
  }
  .fn-wrap-02 .logo {
    margin-bottom: 10px;
    vertical-align: top;
    width: 100%;
    text-align: center;
  }
  .fn-wrap-02 .logo img {
    width: 100px;
  }
  .fn-wrap-02 p.catch {
    border-bottom: 1px solid #333;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .fn-wrap-02 h2 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .fn-wrap-02 h2 span {
    font-size: 24px;
  }
  .fn-wrap-02 ul {
    margin: 0 auto;
    max-width: 100%;
  }
  .fn-wrap-02 ul li {
    display: inline-block;
    vertical-align: top;
    text-align: left;
  }
  .fn-wrap-02 ul li.address {
  }

  .footer-credit {
    box-sizing: border-box;
    margin-top: 30px;
  }
  .fc-copyright {
    font-size: 12px;
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 0.25em;
  }
  .fc-caution {
    font-size: 10px;
    font-size: 1.0rem;
    color: #999;
  }
}


/* page_title
----------------------------------*/
#page_title {
  background: #fff;
  border-top: 1px solid #111;
  box-sizing: border-box;
  height: 190px;
  margin-top: 1px;
  padding-top: 50px;
  text-align: center;
  width: 100%;
}
#page_title .inner-01 {
}
#page_title .inner-01 h1 {
  font-size: 24px;
}
#page_title .inner-01 h1 span {
  font-size: 40px;
  font-weight: bold;
}

/* SP */
@media only screen and (max-width: 640px) {
  #page_title {
    height: 80px;
    margin-top: 1px;
    padding-top: 20px;
    text-align: center;
    width: 100%;
  }
  #page_title .inner-01 {
  }
  #page_title .inner-01 h1 {
    font-size: 16px;
  }
  #page_title .inner-01 h1 span {
    font-size: 24px;
    font-weight: bold;
  }
}

/* breadcrumb
----------------------------------*/
#breadcrumb {
  box-sizing: border-box;
  margin: 100px auto 20px;
  width: 1200px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 0 20px;
}
#breadcrumb a {
  text-decoration: underline;
}

/* SP */
@media only screen and (max-width: 640px) {
  #breadcrumb {
    box-sizing: border-box;
    margin: 100px auto 20px;
    width: 100%;
    font-size: 13px;
    font-size: 1.3rem;
  }
  #breadcrumb a {
    text-decoration: underline;
  }
}






/*** top-visual ***/
.top-visual {
  display: table;
  width: 100%;
  height: 150px;
  background-color: #e8f0f8;
  background-image: url(../common/img/common/top-visual-01.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: top center;
}
.tp-ttl-set {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  margin-bottom: 30px;
  box-sizing: border-box;
  padding-top: 10px;
}
.tp-ttl-01 {
  font-size: 36px;
  font-size: 3.6rem;
  color: #333333;
  font-weight: 600;
  line-height: 1.4;
}
.tp-ttl-01 .small {
  font-size: 26px;
  font-size: 2.6rem;
}
.tp-ttl-02 {
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: #666666;
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
  position: relative;
}

/* breadcrumb
.breadcrumb {
  box-sizing: border-box;
  padding: 12px;
  margin-bottom: 20px;
}
.bcb-list {
  margin-top: 3px;
  line-height: 1.2;
}
.bcb-list li {
  font-size: 14px;
  font-size: 1.4rem;
  color: #666666;
  display: inline;
  vertical-align: top;
  word-break: break-all;
}
.bcb-list li:before {
  content: ">";
  display: inline;
  vertical-align: top;
  position: relative;
  top: -1px;
  margin: 0px 10px 0 5px;
}
.bcb-list li:first-child:before {
  display: none;
}
.bcb-list li a {
  color: #003055;
  display: inline;
  vertical-align: top;
} */

/* pagenavi */
.pagenavi {
  text-align: center;
  margin: 10px auto 40px auto;
}
.pgn-list {
  font-size: 15px;
  font-size: 1.5rem;
  color: #003055;
  display: inline-block;
  vertical-align: top;
}
.pgn-list li {
  display: inline-block;
  vertical-align: top;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  border: 1px solid #ebecec;
  overflow: hidden;
  margin: 13px;
}
.pgn-list li,
.pgn-list li a {
  background: #ebecec;
}
.pgn-list li a {
  display: block;
}
.pgn-list .current,
.pgn-list .current a,
.ua-desktop .pgn-list li:hover,
.ua-desktop .pgn-list li:hover a,
.ua-desktop .pgn-list li a:hover {
  color: #bababa;
  background: #ffffff;
  font-weight: 600;
}

/*** filter ***/
.fltahv {
  padding: 17px 50px;
  box-sizing: border-box;
  border: 1px solid #e5e8e8;
  background: #f5f7f7;
  margin-bottom: 35px;
}
.fltahv-cont {
  font-size: 16px;
  font-size: 1.6rem;
  color: #333333;
}
.filter {
  float: left;
}
.filter dt,
.filter dd {
  display: inline-block;
  vertical-align: middle;
}
.filter-list {
}
.filter-list li {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 1.5em;
}
.filter-list a {
  color: #003055;
  text-decoration: underline;
}
.filter-list .current,
.filter-list .current a {
  color: #333333;
  font-weight: bold;
}
.filter-list .current a {
  text-decoration: none;
  pointer-events: none;
  cursor: pointer;
}
/*** archive in filter ***/
.archive {
  float: right;
}
.archive dt,
.archive dd {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.select-appearance {
  width: 140px;
  height: 34px;
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid #b7bcbc;
  box-sizing: border-box;
  border-radius: 5px;
}
.select-appearance:after {
  content: " ";
  position: absolute;
  z-index: 2;
  background-image: url(../common/img/common/icon-select-arrow.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 7px;
  height: 17px;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-right: 12px;
}
.archive-list {
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  font-size: 15px;
  font-size: 1.5rem;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
  padding-left: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.archive-list::-ms-expand {
  display: none; /* IE10・IE11のハック */
}

/* 会員限定 */
.section-mboly {
  border: 1px solid #ba3131;
  box-sizing: border-box;
  padding: 30px;
  text-align: center;
  margin-bottom: 110px;
}
.mboly-tag {
  background: #ba3131;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  box-sizing: border-box;
  padding: 6px 24px;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
}
.mboly-txt {
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2em;
}

/* cmn-ttl */
.cmn-ttl-set {
  text-align: center;
  margin-bottom: 30px;
}
.cmn-ttl-01 {
  font-size: 36px;
  font-size: 3.6rem;
  color: #333333;
  font-weight: 600;
  line-height: 1.5;
}
.cmn-ttl-01 .small {
  font-size: 26px;
  font-size: 2.6rem;
}
.cmn-ttl-02 {
  font-size: 13px;
  font-size: 1.3rem;
  color: #666666;
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-bottom: 2em
}
.cmn-ttl-02:before {
  content: " ";
  width: 100%;
  height: 3px;
  background: rgb(160, 192, 219);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.cmn-ttl-03 {
  font-size: 28px;
  font-size: 2.8rem;
  color: #333333;
  font-weight: 600;
  position: relative;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 35px;
}
.cmn-ttl-03:before {
  content: " ";
  width: 50px;
  height: 3px;
  background: rgb(160, 192, 219);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}

/** cmn-btn **/
/* .cmn-btn-01 */
.btn-more {
  text-align: center;
  margin: 30px 0;
}
.cmn-btn-01 {
  display: inline-block;
  vertical-align: top;
  min-width: 280px;
  height: 52px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 30px;
  background: #111;
}
.ua-desktop .cmn-btn-01:hover {
  background: "666;
}
.cmn-btn-01 .txt {
  position: relative;
  z-index: 3;
  font-size: 16px;
  font-size: 1.6rem;
}
.cmn-btn-01 .txt.font-fmy-03 {
  font-size: 16px;
  font-size: 1.6rem;
  top: 0;
}

/* .cmn-btn-02 */
.cmn-btn-02 {
  display: inline-block;
  vertical-align: top;
  min-width: 280px;
  height: 52px;
  color: #111;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 30px;
  border: 1px solid #111;
}
.ua-desktop .cmn-btn-021:hover {
  background: "666;
}
.cmn-btn-02 .txt {
  position: relative;
  z-index: 3;
  font-size: 16px;
  font-size: 1.6rem;
}
.cmn-btn-02 .txt.font-fmy-03 {
  font-size: 16px;
  font-size: 1.6rem;
  top: 0;
}

/* SP */
@media only screen and (max-width: 640px) {
  .cmn-btn-01 {
    display: inline-block;
    vertical-align: top;
    min-width: 200px;
    height: 40px;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 20px;
    background: #111;
  }
  .ua-desktop .cmn-btn-01:hover {
    background: "666;
  }
  .cmn-btn-01 .txt {
    position: relative;
    z-index: 3;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .cmn-btn-01 .txt.font-fmy-03 {
    font-size: 14px;
    font-size: 1.4rem;
    top: 0;
  }

  .cmn-btn-02 {
    display: inline-block;
    vertical-align: top;
    min-width: 200px;
    height: 40px;
    color: #111;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-sizing: border-box;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 20px;
    border: 1px solid #111;
  }
  .ua-desktop .cmn-btn-021:hover {
    background: "666;
  }
  .cmn-btn-02 .txt {
    position: relative;
    z-index: 3;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .cmn-btn-02 .txt.font-fmy-03 {
    font-size: 14px;
    font-size: 1.4rem;
    top: 0;
  }
}


/* .cmn-btn-03 */
.cmn-btn-03 {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  min-width: 230px;
  min-height: 44px;
  color: #fff;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding: 6px 30px;
  cursor: pointer;
}
.ua-desktop .cmn-btn-03:hover {
  text-decoration: none;
  opacity: 1;
}
/* .cmn-btn-04 */
.cmn-btn-04 {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  min-width: 230px;
  min-height: 44px;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding: 6px 30px;
  cursor: pointer;
}
.ua-desktop .cmn-btn-04:hover {
  background: none;
  opacity: 1;
}
.cmn-btn-04:before,
.cmn-btn-04:after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0;
}
.cmn-btn-04:before {
  background: #ba3131;
  right: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.ua-desktop .cmn-btn-04:hover:before {
  right: -100%;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.cmn-btn-04:after {
  background: #003055;
  left: -100%;
  opacity: 0.5;
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}
.ua-desktop .cmn-btn-04:hover:after {
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -ms-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}
.cmn-btn-04 .txt,
.cmn-btn-04 .icon {
  position: relative;
  z-index: 3;
  font-size: 15px;
  font-size: 1.5rem;
}
.cmn-btn-04 .txt {
  top: 2px;
  padding-right: 1em;
}
.cmn-btn-04 .txt.font-fmy-03 {
  font-size: 18px;
  font-size: 1.8rem;
  top: 0;
}
.cmn-btn-04 .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto 0;
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  height: 15px;
}
.cmn-btn-04 .icon:before,
.cmn-btn-04 .icon:after {
  content: " ";
  border: 1px solid #fff;
  border-bottom: 0;
  border-left: 0;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.cmn-btn-04 .icon:before {
  border-right: 0;
  margin-left: 0;
  width: 13px;
  height: 1px;
}
.cmn-btn-04 .icon:after {
  transform: rotate(45deg);
  margin-right: 2px;
}

/* cmn-grid */
.cmn-grid-wrap {
  overflow: hidden;
}
.cmn-grid-01 {
  width: 103%;
  box-sizing: border-box;
  font-size: 0;
}
.cmn-grid-01 li {
  display: inline-block;
  vertical-align: top;
  font-size: 16px;
  font-size: 1.6rem;
  width: 30.333%;
  margin: 15px 3% 15px 0;
  text-align: center;
  box-sizing: border-box;
}
.cmn-grid-01 li > a {
  display: block;
}
.ua-desktop .cmn-grid-01 li > a:hover {
  opacity: 1;
}

.list-pdc-img + .cmn-btn-01 {
  margin-top: 25px;
}
.list-pdc-img + .cmn-btn-01 .txt {
  font-weight: 300;
}
.list-pdc .cmn-btn-02 {
  text-align: center;
  margin: 25px 0;
}

.list-nws-txt {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.625;
  text-align: left;
  word-break: break-all;
  text-align: justify;
  text-justify: distribute;
  margin-top: 1em;
}
.list-nws-txt .date {
  color: #98abbb;
  font-weight: 600;
}
.list-nws-txt .text {
  color: #666666;
}
.ua-desktop .cmn-grid-01 li > a:hover .list-nws-txt {
  opacity: 0.7;
}
.list-nws-more {
  text-align: center;
  margin: 30px 0;
}


.section-01 {
  margin-bottom: 150px;
}

.hg-fixed .hn-golbalmenu .hngm-contact {
  width: 90px;
}
.hg-fixed .hn-golbalmenu .hngm-contact a {
  height: 70px;
  font-size: 12px;
  font-size: 1.2rem;
  color: #fff;
  padding: 0;
  position: relative;
}
.hg-fixed .hn-golbalmenu .hngm-contact a,
.ua-desktop .hg-fixed .hn-golbalmenu .hngm-contact > a:hover,
.hg-fixed .hn-golbalmenu .hngm-contact,
.hg-fixed .hn-golbalmenu .hngm-contact:hover {
  background: #836d50;
}
.hg-fixed .hn-golbalmenu .hngm-contact a:before {
  display: none;
}
.hg-fixed .hn-golbalmenu .hngm-contact a .icon-contact {
  width: 26px;
  position: relative;
  top: 13px;
}
.hg-fixed .hn-golbalmenu .hngm-contact a .txt {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  margin: 0 auto;
  line-height: 1;
}

@media only screen and (min-width: 641px) {
  .hg-fixed .header-nav-01 {
    display: none !important;
  }
  .hg-fixed .header-nav-02 {
    position: relative;
    top: 0;
    left: 0;
  }
  .hg-fixed .hn-golbalmenu {
    table-layout: auto;
  }
  .hg-fixed .hn-golbalmenu > li {
    min-width: 1px; /* for Safari-macOS */
  }
  .hg-fixed .hn-golbalmenu .hngm-home {
    width: 160px;
    padding-left: 0;
    box-sizing: border-box;
    display: table-cell;
  }
  .hg-fixed .hn-golbalmenu .hngm-home img {
    height: 50px;
  }
  .hg-fixed .hn-golbalmenu .hngm-home > a {
    width: 120px;
    padding: 10px 0;
  }
  .ua-desktop .hg-fixed .hn-golbalmenu .hngm-home > a:hover {
    background: none;
  }
  .hg-fixed .hn-golbalmenu .hngm-home > a:before {
    display: none;
  }
  .hg-fixed .hn-golbalmenu .hngm-home .hngm-home-logo {
    display: inline-block;
    width: 100%;
  }
  .hg-fixed .hn-golbalmenu .hngm-home .hngm-home-txt {
    display: none !important;
  }
  .header-group:not(.hg-fixed) .hn-golbalmenu .hngm-home-logo,
  .header-group:not(.hg-fixed) .hn-golbalmenu .hngm-contact {
    display: none !important;
  }
  .header-group:not(.hg-fixed) .hn-golbalmenu {
    border-bottom: 1px solid #f7f7f7;
    width: 560px;
    height: 110px;
  }
}



/* SP
----------------------------------------------------------*/
@media only screen and (max-width: 640px) {

  /****** スマホでメニューを開いた時に後ろはスクロールしないようにするjQueryのための設定 ---START--- ******/
  .js-base-fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .js-base-fixed:before {
    content: " ";
    width: 100%;
    height: 100%;
    background: #666;
    background: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    z-index: 999;
  }
  /****** スマホでメニューを開いた時に後ろはスクロールしないようにするjQueryのための設定 ---END--- ******/



  /* ヘッダードロワァー
  ----------------------------------*/
  /*** ヘッダートグル ***/
  .header-drawer {
    cursor: pointer;
    width: auto;
    background: none;
    box-sizing: border-box;
    padding: 0;
  }
  /*** アイコン ***/
  .drawer-icon {
    position: relative;
    margin: 14px auto 0 auto;
    width: 15px;
    height: 10px;
  }
  .drawer-icon-bar {
    display: block;
    background: #fff;
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    -ms-transition: all 0.6s;
    transition: all 0.6s;
  }
  .drawer-icon-bar:first-child {
    bottom: auto;
  }
  .drawer-icon-bar:nth-child(2) {
  }
  .drawer-icon-bar:last-child {
    top: auto;
  }
  .hg-opened .drawer-icon-bar:first-child {
    -webkit-transform: translateY(0) rotate(45deg);
    -moz-transform: translateY(0) rotate(45deg);
    -o-transform: translateY(0) rotate(45deg);
    -ms-transform: translateY(0) rotate(45deg);
    transform: translateY(0) rotate(45deg);
    top: 0;
    bottom: 0;
  }
  .hg-opened .drawer-icon-bar:nth-child(2) {
    filter: alpha(opacity=0); /* lte IE8 */
    opacity: 0;
  }
  .hg-opened .drawer-icon-bar:last-child {
    -webkit-transform: translateY(0) rotate(-45deg);
    -moz-transform: translateY(0) rotate(-45deg);
    -o-transform: translateY(0) rotate(-45deg);
    -ms-transform: translateY(0) rotate(-45deg);
    transform: translateY(0) rotate(-45deg);
    top: 0;
    bottom: 0;
  }
  /* CLOSE時のアイコンを小さくするため */
  .hg-opened .drawer-icon-bar {
    width: 90%;
  }
  /*** アイコンのテキスト ***/
  .drawer-txt {
    font-size: 10px;
    font-size: 1.0rem;
    color: #fff;
    line-height: 1;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 10px;
  }
  .drawer-txt:before {
    content: "MENU";
  }
  .hg-opened .drawer-txt:before {
    content: "CLOSE";
    -webkit-animation: fadein 0.8s linear 0s 1;
    -moz-animation: fadein 0.8s linear 0s 1;
    -ms-animation: fadein 0.8s linear 0s 1;
    -o-animation: fadein 0.8s linear 0s 1;
    animation: fadein 0.8s linear 0s 1;
  }

  /*** アコーディオンメニューのアイコン ***/
  .accordion-icon,
  .accordion-icon-bar {
    display: inline-block;
    box-sizing: border-box;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    -ms-transition: all 0.4s;
    transition: all 0.4s;
  }
  .accordion-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    margin-right: 22px;
  }
  .accordion-icon-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50%;
    height: 1px;
    background-color: #111;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
  }
  .accordion-icon-bar:nth-of-type(1) {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  .accordion-icon-bar:nth-of-type(2) {
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
  }
  /*** アコーディオンメニューのアイコン（＋/－）切り替え ***/
  .sub-open .accordion-icon-bar:nth-of-type(1),
  .sub-sub-open .accordion-icon-bar:nth-of-type(1) {
    display:none;
  }
  .sub-open .accordion-icon-bar:nth-of-type(2),
  .sub-sub-open .accordion-icon-bar:nth-of-type(2) {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
  }



  /* basic
  ----------------------------------*/
  .outer {
    min-width: 0;
  }
  .inner-02 {
    padding-right: 10px;
    padding-left: 10px;
  }

  /* unique
  ----------------------------------*/
  .header-nav-01 {
    padding: 0;
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.17);
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.17);
    -o-box-shadow: 0 2px 5px rgba(0,0,0,0.17);
    -ms-box-shadow: 0 2px 5px rgba(0,0,0,0.17);
    box-shadow: 0 2px 5px rgba(0,0,0,0.17);
    height: 60px;
  }
  .hn1-wrap-01 {
    text-align: left;
    padding: 5px 10px;
  }
  .header-logo {
    width: 80px;
  }
  .hn1-wrap-03 {
    padding-right: 5px;
    width: 216px;
  }
  .hn1-lgnctt li {
    font-size: 10px;
    font-size: 1.0rem;
  }
  .hn1-lgnctt li > a {
    background: #eee;
  }
  .hn1-lgnctt li.contact {
    border: none;
    width: 23%;
    height: 50px;
    margin-right: 2px;
  }
  .hn1-lgnctt li.contact a {
    background: #eee;
    padding: 8px 4px;
  }
  .hn1-lgnctt li.contact a span.txt {
    bottom: 10px;
    color: #836d50;
    font-size: 10px;
    font-size: 1.0rem;
  }
  .hn1-lgnctt li.contact a span.txt:before {
    color: #836d50;
    display: block;
    font-size: 22px;
    padding: 0;
  }
  .hn1-lgnctt li.phone {
    width: 23%;
    height: 50px;
    margin-right: 2px;
  }
  .hn1-lgnctt li.phone a {
    background: #eee;
    padding: 8px 4px;
  }
  .hn1-lgnctt li.phone a span.txt {
    bottom: 10px;
    color: #836d50;
    font-size: 10px;
    font-size: 1.0rem;
  }
  .hn1-lgnctt li.phone a span.txt:before {
    color: #836d50;
    display: block;
    font-size: 22px;
    padding: 0;
  }
  .hn1-lgnctt li.map {
    width: 23%;
    height: 50px;
    margin-right: 2px;
  }
  .hn1-lgnctt li.map a {
    background: #eee;
    padding: 8px 4px;
  }
  .hn1-lgnctt li.map a span.txt {
    bottom: 10px;
    color: #836d50;
    font-size: 10px;
    font-size: 1.0rem;
  }
  .hn1-lgnctt li.map a span.txt:before {
    color: #836d50;
    display: block;
    font-size: 22px;
    padding: 0;
  }
  .hn1-lgnctt li.header-drawer {
    background: #111;
    border: none;
    position: relative;
    width: 23%; /*54px*/
    height: 50px;
  }

  .header-nav-02 {
    position: fixed; /* 必須 */
    top: auto;
    left: 0;
    width: 100%;
    height: 100%; /* Oldブラウザ ハック */
    height: calc(100% - 54px); /* 必須（ヘッダーの高さ） */
    padding: 0;
    display: none; /* JSで制御 */
    -webkit-animation: fadein 0.5s linear 0s 1;
    -moz-animation: fadein 0.5s linear 0s 1;
    -ms-animation: fadein 0.5s linear 0s 1;
    -o-animation: fadein 0.5s linear 0s 1;
    animation: fadein 0.5s linear 0s 1;
    overflow-y: scroll; /* 必須 */
    -webkit-overflow-scrolling: touch;
  }
  .hg-opened .header-nav-02 {
    display: block; /* JSで制御 */
  }

  .hn-golbalmenu {
    display: block;
  }
  .hn-golbalmenu > li {
    display: block;
    text-align: left;
    border-top: 1px solid #111;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .hn-golbalmenu > li:first-child {
  }
  .hn-golbalmenu > li > a,
  .hn-golbalmenu .menu-sub > li > a {
    padding: 15px 30px;
    overflow: hidden;
    position: relative;
    height: 50px;
  }
  .hn-golbalmenu .menu-sub > li > a {
    background: #222;
    padding-left: calc(30px + 1em);
  }
  .hn-golbalmenu > li.current > a:before {
    background: none;
  }
  .hn-golbalmenu > li > a > .arrow-icon,
  .hn-golbalmenu .menu-sub > li > a > .arrow-icon {
    content: " ";
    border: 1px solid #111;
    border-bottom: 0;
    border-left: 0;
    display: block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    margin-right: 32px;
    transform: rotate(45deg);
  }
  .hn-golbalmenu .menu-sub > li > a > .arrow-icon {
    border-color: #ffffff;
  }
  .hn-golbalmenu .menu-sub {
    position: relative;
    width: auto;
    top: 0;
    left: 0;
    text-align: left;
  }
  .hn-golbalmenu .menu-sub > li {
    border-top: 1px solid #999;
  }
  .hn-golbalmenu .menu-sub > li:first-child {
    border-top: none;
  }

  /*** SP版メニューのスクロール時のスタイル START ***/
  .header-group.hg-fixed:not(.hg-opened) .hn1-wrap-01 {
    /*
    zoom: 80%;
    text-align: left;
    padding-left: 30px;
    */
  }
  .header-group.hg-fixed:not(.hg-opened) .hn1-wrap-03 {
    /* zoom: 80%; */
  }
  .hn1-lgnctt li > a > .txt,
  .hn1-lgnctt li > .drawer-txt {
    /* transform: scale(0.9); */
  }
  /*** SP版メニューのスクロール時のスタイル END ***/


  .top-visual-wrap {
    padding: 0;
  }
  .top-visual {
    height: 90px;
    background-size: 200%;
    background-position: top center;
  }
  .tp-ttl-01 {
    font-size: 27px;
    font-size: 2.7rem;
    line-height: 1.3;
  }
  .tp-ttl-01 .small {
    font-size: 19.5px;
    font-size: 1.95rem;
  }
  .tp-ttl-02 {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .breadcrumb {
    padding: 10px;
    margin-bottom: 5px;
  }
  .bcb-list li {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .main-group {
    font-size: 12px;
    font-size: 1.2rem;
  }
  .cmn-ttl-01 {
    font-size: 31px;
    font-size: 3.1rem;
    line-height: 1.3;
  }
  .cmn-ttl-02 {
    font-size: 12px;
    font-size: 1.2rem;
    padding-bottom: 14px;
  }
  .cmn-ttl-02:before {
    width: 35px;
  }
  .cmn-ttl-03 {
    font-size: 21px;
    font-size: 2.1rem;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }
  .cmn-ttl-03:before {
    width: 38px;
    height: 2px;
  }


  /*** filter ***/
  .fltahv-wrap {
    padding: 0;
    margin-top: 10px;
  }
  .fltahv {
    border-right: none;
    border-left: none;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
  }
  .fltahv-cont {
    float: none;
    display: table;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .fltahv-cont dt,
  .fltahv-cont dd {
    display: table-cell;
  }
  .fltahv-cont dt {
    width: 6em;
    vertical-align: top;
  }
  .fltahv-cont dd {
    vertical-align: top;
  }
  .filter-list li {
    margin: 0 1.25em 0 0;
  }
  /*** archive in filter ***/
  .archive {
    margin-top: 17px;
  }
  .archive dt {
    vertical-align: middle;
  }
  .select-appearance {
    width: 124px;
  }
  .select-appearance:after {
    background-image: url(../common/img/common/icon-select-arrow-sp.png);
    width: 6px;
    height: 13px;
    margin-right: 10px;
  }
  .archive-list {
    font-size: 16px;
    font-size: 1.6rem;
    transform: scale(0.8);
    transform-origin: 0 0;
    width: 125%;
    margin-top: 3px;
    padding-left: 12px;
  }
  .section-mboly {
    padding: 18px 3.5%;
    margin: 24px 10px 50px 10px;
    border-width: 2px;
  }
  .mboly-tag {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 4px 16px;
  }
  .mboly-txt {
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 4%;
    max-width: 63%;
    text-align: left;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 350px) {
  .hn1-wrap-01 {
    padding-left: 2%;
  }
  .header-logo {
    max-width: 90px;
  }
  .fn-golbalmenu-03 .fg3-02 li,
  .fn-golbalmenu-03 .fg3-02 li:first-child {
    margin: 0;
  }
  .fn-wrap-02 {
    padding-left: 2%;
    padding-right: 2%;
  }
}