@charset "UTF-8";
/* Scss Document */
.lineTop {
  border-top: solid 1px #999;
  padding-top: 10px;
}

.imgIcon {
  width: auto;
  max-height: 25px;
  margin: 0 3px;
  vertical-align: middle;
}
.imgIcon.size_auto {
  height: auto;
  max-width: 100%;
}

.imgMax {
  max-width: 100%;
  height: auto;
}

.pcCnt,
.printCnt {
  display: none;
}

.spCnt,
.spBlock {
  display: block;
}

.boxCenter {
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 768px) {
  .pcCnt {
    display: block;
  }

  .spCnt {
    display: none;
  }

  .spBlock {
    display: inherit;
  }
}
@media only print {
  .printCnt {
    display: block;
  }
}
#wrapper {
  width: 100%;
  position: relative;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/*===========================================
	headerArea
=============================================*/
#headerArea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  background: #000;
  padding: 25px 0;
}
#headerArea * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#headerArea:before, #headerArea:after {
  content: "";
  display: table;
}
#headerArea:after {
  clear: both;
}
#headerArea #headerBox {
  max-width: 1190px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
#headerArea #headerBox:before, #headerArea #headerBox:after {
  content: "";
  display: table;
}
#headerArea #headerBox:after {
  clear: both;
}
#headerArea #headerBox #logo {
  width: 180px;
  margin-top: 13px;
  line-height: 0;
  text-align: left;
  float: left;
}
#headerArea #headerBox #logo:before, #headerArea #headerBox #logo:after {
  content: "";
  display: table;
}
#headerArea #headerBox #logo:after {
  clear: both;
}
#headerArea #headerBox #logo img {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  width: 50%;
  height: auto;
}
#headerArea #headerBox #searchArea {
  font-size: 12px;
  width: auto;
  margin-top: 0;
  margin-left: auto !important;
  margin-right: auto !important;
  float: right;
  text-align: right;
}
#headerArea #headerBox #searchArea:before, #headerArea #headerBox #searchArea:after {
  content: "";
  display: table;
}
#headerArea #headerBox #searchArea:after {
  clear: both;
}
#headerArea #headerBox #searchArea a {
  color: #fff;
  display: block;
  padding: 0 5px;
  margin-bottom: 10px;
}
#headerArea #headerBox #searchArea a:active, #headerArea #headerBox #searchArea a:hover {
  text-decoration: underline;
}
#headerArea #headerBox #searchArea img {
  vertical-align: middle;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#headerArea #headerBox #searchArea a img:active, #headerArea #headerBox #searchArea a img:hover {
  opacity: 0.75;
}

@media (min-width: 768px) {
  #headerArea #headerBox #logo {
    width: 100px;
  }
  #headerArea #headerBox #logo img {
    max-width: 100%;
    width: auto;
  }
  #headerArea #headerBox #searchArea {
    margin-top: 4px;
    width: auto;
  }
  #headerArea #headerBox #searchArea a {
    display: inline-block;
  }
}
/*===========================================
	subHeader
=============================================*/
#subHeaderArea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border-bottom: 2px solid #999;
}
#subHeaderArea #subHeaderBox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 92%;
  min-height: 95px;
  padding: 25px 45px 15px 0;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
	/*▼▼▼subHeader2行keep▼▼▼*/
	display:block;
}
#subHeaderArea #subHeaderBox img {
  width: auto;
  max-width: 100%;
  height: auto !important;
  -ms-flex-item-align: center;
  align-self: center;
}

@media (min-width: 768px) {
  #subHeaderArea #subHeaderBox {
    display: block;
    max-width: 1190px;
    width: 96%;
  }
}
/*===========================================
	topicpath
=============================================*/
ul#topicpath {
  display: none;
}

@media (min-width: 768px) {
  ul#topicpath {
    display: block;
    max-width: 1190px;
    width: 96%;
    margin: 0 auto;
    padding: 10px 0 0;
    text-align: left;
    font-size: 12px;
    overflow: hidden;
  }
  ul#topicpath li {
    display: inline;
    line-height: 100%;
    list-style-type: none;
  }
  ul#topicpath li a:after,
  ul#topicpath li span:after {
    content: url("../../img/arrow_path.gif");
    padding: 0 5px 0 8px;
  }
}
/*===========================================
	navArea
=============================================*/
#navArea, #navArea * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#navArea {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1190px;
  position: relative;
}
#navArea ul.menu {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  right: -80%;
  width: 80%;
  height: 100vh;
  /* height: calc(100vh - 200px); */
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transition: .3s;
  z-index: 10;
}
#navArea ul.menu.open {
  right: 0;
}
#navArea ul.menu li {
  background-color: transparent;
  width: 100%;
  padding: 10px 0;
  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;
  text-align: center;
  font-size: 1.25rem;
  padding: 0;
  font-weight: normal;
}
#navArea ul.menu li a {
  display: block;
  color: #efefef;
  width: 100%;
  padding: 1rem 0;
  position: relative;
}
#navArea ul.menu li a:hover {
  color: rgba(56, 109, 212, 0.7);
}
#navArea button {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
#navArea button.btn-hamberger {
  position: absolute;
  top: -56px;
  right: 16px;
  z-index: 100;
  width: 32px;
  height: 32px;
}
#navArea button.btn-hamberger .btn-line {
  display: block;
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #333;
  transition: .2s;
}
#navArea button.btn-hamberger .btn-line:before, #navArea button.btn-hamberger .btn-line:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  transition: .5s;
}
#navArea button.btn-hamberger .btn-line:before {
  transform: translateY(-12px);
}
#navArea button.btn-hamberger .btn-line:after {
  transform: translateY(12px);
}
/*#navArea button.btn-hamberger .btn-line.open {
  background-color: transparent;
}
#navArea button.btn-hamberger .btn-line.open:before {
  transform: rotate(45deg);
}
#navArea button.btn-hamberger .btn-line.open:after {
  transform: rotate(-45deg);
}*/

@media (min-width: 560px) {
  #navArea ul.menu {
   /* right: -70%;*/
    width: 70%;
  }
}
@media (min-width: 960px) {
  #navArea {
    padding: 0.75rem 0;
  }
  #navArea ul.menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    background-color: transparent;
    position: static;
    margin-left: 0;
    width: auto;
    height: auto;
  }
  #navArea ul.menu li {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1rem;
    font-weight: bold;
    width: auto;
  }
  #navArea ul.menu li a {
    color: #333;
    padding: 0.5rem 0;
  }
  #navArea ul.menu li a:hover {
    color: #386DD4;
    background-color: transparent;
  }
  #navArea button.btn-hamberger {
    display: none;
  }
}


/* 20231219 */
#navArea #menu_icon {
    position: absolute;
    right: 15px;
    top: -55px;
    display: none;
}
#navArea #menu_icon img {
    width: 28px;
    height: 28px;
}
@media (max-width: 1230px) {
    #navArea button.btn-hamberger{
        display: none;
    }
    #navArea ul.menu {
        display: none;
    }
    #navArea #menu_icon {
        display: block;
    }
}


/*===========================================
	タイトル
=============================================*/
.solid_b_title {
  padding-top: 2px;
  padding-bottom: 10px;
  border-bottom: solid 1px #999;
}

.solid_b_title2 {
  padding-top: 2px;
  padding-bottom: 15px;
  border-bottom: solid 2px #999;
}

.linkTitle {
  width: 100%;
  display: table;
}
.linkTitle span {
  vertical-align: middle;
  display: table-cell;
}
.linkTitle span:last-child {
  width: 25px;
}

.title2gyo span {
  display: block;
}

/* 2019/02/05 追加 */
.title_bar {
  background-color: #555;
  color: #fff;
  line-height: 1.75 !important;
  margin: 40px 0 15px;
  padding: 3px 15px !important;
}

.m_title {
  border-top: double 3px #ccc;
  border-bottom: double 3px #ccc;
  margin: 35px 0 15px;
  padding: 3px 12px !important;
  position: relative;
}

.s_title {
  border-bottom: solid 1px #ccc;
  margin: 20px 0 10;
  padding: 3px 4px !important;
  position: relative;
}
.s_title:before {
  content: "■ ";
  color: #f05a23;
}

.title_center {
  margin: 20px 0;
  padding: 6px 0 !important;
  position: relative;
  text-align: center !important;
}

/*===========================================
	newsArea
=============================================*/
/*===========================================
	newsArea2
=============================================*/
/*===========================================
	フレックスボックス
=============================================*/
/* flexBoxKinto */
.flexBoxKinto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flexBoxKinto::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}
.flexBoxKinto::after {
  content: "";
  display: block;
  width: 23%;
}

/* flexBoxYoko */
.flexBoxYoko {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*===========================================
	flexBoxTate
=============================================*/
.flexBoxTate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*===========================================
	mainCntWrapper
=============================================*/
#mainCntWrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  position: relative;
}
#mainCntWrapper h1 {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 94%;
}

@media (min-width: 768px) {
  #mainCntWrapper {
    width: 92%;
  }
  #mainCntWrapper h1 {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  #mainCntWrapper {
    width: 1190px;
  }
}
/*===========================================
	mainCntArea
=============================================*/
#mainCntArea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 40px;
  width: 92%;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 768px) {
  #mainCntArea {
    width: 98%;
    width: webkit-calc(100% - 1em);
    width: -moz-calc(100% - 1em);
    width: calc(100% - 1em);
  }
}
@media (min-width: 1200px) {
  #mainCntArea {
    width: 1190px;
  }
}
/*===========================================
	wakuArea
=============================================*/
.wakuArea {
  background: #f5f5f5;
  padding: 20px 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wakuArea.transparent {
  background: transparent;
}

.cautionArea,
.frameArea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 20px 0;
  padding: 20px 25px;
}

.cautionArea {
  background: #FFEDED;
}

.frameArea {
  background: #f5f5f5;
}
.frameArea.mini {
  width: 500px;
  padding: 8px 20px;
}

/*===========================================
	footer-navi-area
=============================================*/
#footer-navi-area,
#footer-navi-area * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

#footer-navi-area {
  background-color: #333;
  margin-top: 80px;
  width: 100%;
  padding: 1.5rem 0;
}
#footer-navi-area .menu-wrap {
  max-width: 1190px;
  margin-left: auto !important;
  margin-right: auto !important;
}
#footer-navi-area .menu-wrap ul.menu li {
  border-bottom: solid 1px #666;
  font-size: 0.875rem;
  padding: 0.625rem 1.125rem;
}
#footer-navi-area .menu-wrap ul.menu li:last-of-type {
  border-bottom: none;
}
#footer-navi-area .menu-wrap ul.menu li a {
  color: #efefef;
  transition: .3s;
}
#footer-navi-area .menu-wrap ul.menu li a:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  #footer-navi-area .menu-wrap ul.menu {
    display: table;
    margin-left: auto;
    margin-right: center;
  }
  #footer-navi-area .menu-wrap ul.menu li {
    display: table-cell;
    border-left: solid 1px #666;
    border-bottom: none;
    font-size: 1rem;
    padding: 0.25rem 1.25rem;
  }
  #footer-navi-area .menu-wrap ul.menu li:first-of-type {
    border-left: none;
  }
}
@media (min-width: 1200px) {
  #footer-navi-area .menu-wrap ul.menu {
    margin-left: auto;
    margin-right: 0;
  }
}
/*===========================================
	footer
=============================================*/
#footerArea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 0;
  background: #000;
  color: #fff;
}
#footerArea #footerBox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow: hidden;
  width: 92%;
}
#footerArea #footerBox .leftArea {
  width: 100%;
  float: none;
}
#footerArea #footerBox .leftArea a {
  color: #fff;
}
#footerArea #footerBox .leftArea .left {
  display: inline-block;
  margin-right: 1em;
  margin-bottom: 1em;
}
#footerArea #footerBox .leftArea .footerNavi {
  overflow: hidden;
  font-size: 12px;
}
#footerArea #footerBox .leftArea .footerNavi li {
  margin-right: 20px;
  float: left;
}
#footerArea #footerBox .leftArea .footerNavi li a {
  color: #fff;
}
#footerArea #footerBox .rightArea {
  width: 100%;
  margin-bottom: 20px;
  float: none;
  text-align: left;
}
#footerArea #footerBox .rightArea a {
  color: #fff;
}

@media (min-width: 768px) {
  #footerArea #footerBox {
    max-width: 1190px;
    width: 96%;
  }
  #footerArea #footerBox .leftArea {
    width: 60%;
    float: left;
  }
  #footerArea #footerBox .rightArea {
    width: 170px;
    float: right;
    margin: 0;
  }
}
/*===========================================
	selectLanguage
=============================================*/
.selectLanguage {
  width: 170px;
  background: #4f4c53 none repeat scroll 0 0;
  border: 0 none;
  color: #fff;
  height: 2.5em;
  margin: 0;
  padding: 0.8em 0 0;
  text-align: center;
}
.selectLanguage option {
  background: #4f4c53 none repeat scroll 0 0;
  padding: 6px 10px;
  text-align: center;
  font-size: 12px;
}
.selectLanguage a {
  display: block;
  color: #fff;
}

/*===========================================
	baseCntArea
=============================================*/
.baseCntArea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 96%;
}
.baseCntArea * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*===========================================
    iframe-wrapper
  =============================================*/
.iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.iframe-wrapper.border-gray {
  border: solid 1px #ddd;
}
.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/*===========================================
	enqueteArea
=============================================*/
#enqueteArea,
.rating-area {
  margin: 5em auto !important;
}

@media (max-width: 740px) {
  #enqueteArea,
  .rating-area {
    width: 96% !important;
  }
}
