@charset "UTF-8";
/* import css ======================================================  */
/*　foundation  ------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 16px;
  font-size: 2rem;
  line-height: 28px;
  line-height: 2.8rem;
  color: #000;
  background-color: #fff;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

a:link {
  color: #000;
  text-decoration: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #555;
  text-decoration: underline;
}

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

/*　grid------------------------------------------- */
.l-grid {
  width: 100%;
}

.l-grid:after {
  content: "";
  clear: both;
  display: block;
}

.l-grid__box {
  box-sizing: border-box;
  float: left;
  border: 1px solid #000;
  width: 100%;
}

@media screen and (min-width: 829px) {
  .l-grid__box.l-grid__box1 {
    width: 8.3%;
  }

  .l-grid__box.l-grid__box2 {
    width: 16.6%;
  }

  .l-grid__box.l-grid__box3 {
    width: 25%;
  }

  .l-grid__box.l-grid__box4 {
    width: 33.3%;
  }

  .l-grid__box.l-grid__box5 {
    width: 41.6%;
  }

  .l-grid__box.l-grid__box6 {
    width: 50%;
  }

  .l-grid__box.l-grid__box7 {
    width: 58.3%;
  }

  .l-grid__box.l-grid__box8 {
    width: 66.7%;
  }

  .l-grid__box.l-grid__box9 {
    width: 75%;
  }

  .l-grid__box.l-grid__box10 {
    width: 83.4%;
  }

  .l-grid__box.l-grid__box11 {
    width: 91.7%;
  }

  .l-grid__box.l-grid__box12 {
    width: 100%;
  }
}
/* flexbox------------------------------------------- */
.l-flex {
  display: -ms-flex;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.l-flex__box {
  flex: 1 1 auto;
  border: 1px solid #ccc;
}

/* layout------------------------------------------- */
.l-allcontents {
  margin: 0 auto;
  position: relative;
}

/* -------pagetop＆自動スクロール--------------------------*/
.c-pagetop a {
  text-decoration: underline;
  padding: 10px 0;
  text-align: right;
  padding-right: 20px;
  display: block;
  color: #fff;
}
.c-pagetop a:hover {
  text-decoration: none;
}

/* ------- common --------------------------*/
.u-em {
  color: #ff0000;
}

@media only screen and (min-width: 829px) {
  .u-pc {
    display: block;
  }

  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 829px) {
  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}
/*　mixin  ------------------------------------------- */
/*
@media screen and (max-width: xxxpx) {
}
@media screen and (min-width: xxxpx) {
}
*/
.c-contbox {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 829px) {
  .c-contbox {
    width: 100%;
  }
}
/* ----header-----------------------------*/
/* nav------------------------ */
.c-nav {
  background-color: #2b3e8d;
  padding: 10px 0;
}

.c-nav-top {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
}
.c-nav-top a {
  color: #fff;
  display: block;
  text-align: center;
  padding: 8px;
}
.c-nav-top a:hover {
  color: #fff;
}
.c-nav-top li {
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e6db97;
}
.c-nav-top li:nth-child(1) {
  width: 20%;
}
.c-nav-top li:nth-child(2) {
  width: 40%;
}
.c-nav-top li:nth-child(3) {
  width: 40%;
  border-right: 1px solid #e6db97;
}

.c-head-info {
  width: 100%;
  text-align: center;
  padding-bottom: 50px;
}

.c-head-h1box {
  width: 100%;
  height: 240px;
  background-image: url(../images/h1_bg.jpg);
  background-size: 100% 240px;
  background-repeat: repeat-x;
  margin-bottom: 40px;
}
@media screen and (max-width: 829px) {
  .c-head-h1box {
    height: 100%;
    background-size: 100% 100%;
  }
  .c-head-h1box .c-contbox {
    padding: 0;
  }
}

.c-head-detail__subtit {
  font-size: 2.4rem;
  line-height: 1.8;
  color: #2b3e8d;
  margin-bottom: 70px;
}
.c-head-detail__h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #2b3e8d;
  border-bottom: 2px solid #e6db97;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.c-head-detail__h2 .u-em {
  color: #000;
}
@media screen and (max-width: 575px) {
  .c-head-detail__h2 {
    font-size: 2.4rem;
  }
}

.c-head-dl {
  text-align: left;
  margin-bottom: 30px;
  font-size: 2rem;
}
.c-head-dl dt {
  color: #2b3e8d;
  float: left;
  font-weight: bold;
}
.c-head-dl dd {
  text-indent: 0px;
  padding-left: 70px;
  margin-bottom: 30px;
}
.c-head-dl dd:after {
  content: '';
  display: block;
  clear: both;
}
.c-head-dl dd small{
  font-size: 90%;
}
.c-head-dl2 {
  text-align: left;
  font-size: 2rem;
}
.c-head-dl2 dt .u-dot {
  color: #2b3e8d;
}
.c-head-dl2 dd {
  padding-left: 25px;
  overflow-wrap: break-word;
  word-break: break-all;
}

/* ---- guide_visual -----------------------------*/
.c-guide-visual-wrap {
  background-color: #007342;
  padding-top: 80px;
  padding-bottom: 70px;
}

.c-tit-guide-h1 {
  color: #fff;
  text-align: center;
  padding-bottom: 20px;
  font-weight: bold;
  font-size: 3rem;
  border-bottom: 2px solid #e6db97;
  margin-bottom: 50px;
}
@media screen and (max-width: 575px) {
  .c-tit-guide-h1 {
    font-size: 2.4rem;
  }
}

.c-guide-introduction {
  background-color: #FCFBF8;
  box-shadow: 0px 0px 0px 8px #FCFBF8;
  border: 2px solid #e6db97;
  padding: 30px 40px;
  margin: 8px;
  margin-bottom: 90px;
  line-height: 1.8;
}
@media screen and (max-width: 575px) {
  .c-guide-introduction {
    padding: 15px 20px;
  }
}

.c-guide-introduction .u-small{
  font-size: 90%;
}
.c-tit-guide-h2 {
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 25px;
}
@media screen and (max-width: 575px) {
  .c-tit-guide-h2 {
    font-size: 2.4rem;
  }
}

.c-map-cont {
  width: 100%;
  position: relative;
  line-height: 0;
}
.c-map-cont img {
  width: 100%;
}
.c-map-cont .c-map-cont__txt {
  position: absolute;
  bottom: -20px;
  right: 0;
  line-height: 1.2;
  font-size: 1.4rem;
  text-align: right;
  color: #fff;
}

.c-ico-mapnum {
  position: absolute;
  z-index: 300;
  display: block;
  width: 3.6%;
  max-width: 50px;
  height: 3.6%;
  max-height: 50px;
}

.c-ico-mapnum.c-num01 {
  top: 78%;
  left: 17.5%;
}

.c-ico-mapnum.c-num02 {
  top: 71.8%;
  left: 22.3%;
}

.c-ico-mapnum.c-num03 {
  top: 71.5%;
  left: 29.2%;
}

.c-ico-mapnum.c-num04 {
  top: 66%;
  left: 34.4%;
}

.c-ico-mapnum.c-num05 {
  top: 58%;
  left: 34.5%;
}

.c-ico-mapnum.c-num06 {
  top: 56%;
  left: 52%;
}

.c-ico-mapnum.c-num07 {
  top: 57.5%;
  left: 68.5%;
}

.c-ico-mapnum.c-num08 {
  top: 57.09%;
  left: 74.6%;
}

.c-ico-mapnum.c-num09 {
  top: 42.4%;
  left: 74%;
}

.c-ico-mapnum.c-num10 {
  top: 28.6%;
  left: 73.6%;
}

.c-ico-mapnum.c-num11 {
  top: 28.1%;
  left: 80.2%;
}

.c-ico-mapnum.c-num12 {
  top: 23.5%;
  left: 76.7%;
}

.c-ico-mapnum.c-num13 {
  top: 13.3%;
  left: 88%;
}

.c-map-over {
  display: none;
}

@media screen and (max-width: 575px) {
  .c-ico-mapnum {
    width: 5%;
  }

  .c-ico-mapnum.c-num01 {
    top: 78%;
    left: 17.5%;
  }

  .c-ico-mapnum.c-num02 {
    top: 71%;
    left: 22.3%;
  }

  .c-ico-mapnum.c-num03 {
    top: 71%;
    left: 29.2%;
  }

  .c-ico-mapnum.c-num04 {
    top: 66%;
    left: 34.0%;
  }

  .c-ico-mapnum.c-num05 {
    top: 58%;
    left: 34.0%;
  }

  .c-ico-mapnum.c-num06 {
    top: 56%;
    left: 52%;
  }

  .c-ico-mapnum.c-num07 {
    top: 57.5%;
    left: 67.7%;
  }

  .c-ico-mapnum.c-num08 {
    top: 57.09%;
    left: 74.0%;
  }

  .c-ico-mapnum.c-num09 {
    top: 42.4%;
    left: 73.6%;
  }

  .c-ico-mapnum.c-num10 {
    top: 28.6%;
    left: 73.2%;
  }

  .c-ico-mapnum.c-num11 {
    top: 28.1%;
    left: 80.2%;
  }

  .c-ico-mapnum.c-num12 {
    top: 23.5%;
    left: 76.7%;
  }

  .c-ico-mapnum.c-num13 {
    top: 13.3%;
    left: 88.5%;
  }
}
.c-marunum {
  height: 28px;
  width: 28px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  background-color: #007342;
  line-height: 28px;
  display: inline-block;
}
.c-marunum span {
  color: #fff;
  font-size: 17px;
}

.c-map-win {
  background-color: #FCFBF8;
  position: relative;
  line-height: 0;
}
.c-map-win .c-marunum {
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-right: 5px;
}
.c-map-win .c-marunum span {
  font-size: 18px;
}

#colorbox {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
}

.c-map-win-txtbox {
  position: relative;
  line-height: 1.6;
  padding: 15px;
}
.c-map-win-txtbox dt {
  color: #007342;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  padding-right: 30px;
}
.c-map-win-txtbox dt .c-ico-win-num {
  font-size: 24px;
  padding-right: 8px;
  display: block;
}
.c-map-win-txtbox dt .c-map-win__txt {
  width: calc(100% - 30px);
}
.c-map-win-txtbox dd {
  font-size: 1.7rem;
  margin-left: 36px;
  padding-right: 30px;
}

.c-ico-close {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 36px;
  z-index: 1000;
}

.c-map-icon {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 80px;
}
.c-map-icon ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 575px) {
  .c-map-icon ul {
    flex-wrap: wrap;
  }
  .c-map-icon ul li {
    margin-bottom: 20px;
  }
}
.c-map-icon li {
  width: 20%;
  padding: 0 20px;
  text-align: center;
  line-height: 1.1;
}
@media screen and (max-width: 575px) {
  .c-map-icon li {
    width: 33%;
  }
}
.c-map-icon li img {
  width: 100%;
  max-width: 80px;
}
.c-map-icon .c-map-icon-span {
  font-size: 1.4rem;
  text-align: center;
  color: #fff;
  display: block;
  margin-left: -10px;
  margin-right: -10px;
}

.c-map-rout ol {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.c-map-rout li {
  width: 48%;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .c-map-rout li {
    width: 100%;
    margin-bottom: 10px;
  }
}

.c-map-rout-win {
  background-color: #FCFBF8;
  position: relative;
  line-height: 0;
}

.c-map-rout-win-txtbox {
  position: relative;
  line-height: 1.6;
  padding: 15px;
}
.c-map-rout-win-txtbox .l-flex {
  color: #007342;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  padding-right: 20px;
  line-height: 1.2;
}
.c-map-rout-win-txtbox .l-flex .c-map-rout-win__txt {
  width: calc(100% - 30px);
}

.c-btn-cont {
  padding: 15px 20px 0 28px;
  font-size: 1.9rem;
}

.c-btn-plus {
  position: absolute;
  right: 6px;
  bottom: 6px;
  display: block;
  width: 30px;
  height: 30px;
  background: url("../images/ico-plus.gif") no-repeat 0 0/100% auto;
  text-indent: -9999px;
}

.c-btn-plus.is-active {
  background: url("../images/ico-minus.gif") no-repeat 0 0/100% auto;
}

/* ---- c-guide-lingual -----------------------------*/
.c-guide-lingual {
  background-color: #b0003e;
  padding-top: 80px;
  padding-bottom: 50px;
}

.c-lingual-rout {
  background-color: #FCFBF8;
  padding: 40px;
}
@media screen and (max-width: 575px) {
  .c-lingual-rout {
    padding: 20px;
  }
}
@media screen and (max-width: 575px) {
  .c-lingual-rout li {
    padding-bottom: 20px;
  }
}
.c-lingual-rout li.u-sub {
  background-color: transparent;
}

.c-lingual-rout-win {
  padding-bottom: 30px;
  display: flex;
  align-items: flex-start;
}
.c-lingual-rout-win .c-ico-num {
  color: #b0003e;
  font-size: 110%;
  display: inline-block;
  margin-right: 4px;
}

.c-lingual-rout-win__sub {
  padding-left: 30px;
  font-size: 1.6rem;
  padding-bottom: 20px;
}

/* ----footer-----------------------------*/
.l-footer {
  background-color: #b0003e;
}

/*# sourceMappingURL=style.css.map */
