@charset "UTF-8";

@font-face {
  font-family: "hannari";
  src: url(../font/Hannari.otf) format('opentype');
}
/* ##################################################

■basic layout
	- サイト幅
■SEO
■header
■gnav
	- メニュー開閉ボタン
	- メニューOPEN時背景
	- gnav本体
■PAGE TOP
■footer
	- fnav

■全ページ共通スタイル：不要の場合は削除
	- title

/*
* “はんなり明朝” licensed under the IPA Font License Agreement v1.0
* http://typingart.net/（”はんなり明朝”配布元のURL）
* http://ipafont.ipa.go.jp/（IPAフォントのURL）
* http://ipafont.ipa.go.jp/ipa_font_license_v1.html（IPAフォントライセンスv1.0のURL）
*/


/* ==================================================
	■basic layout
================================================== */
body {
  margin: 0;
}

#wrapper {
  position: relative;
  width: 100%;
  color: #333;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 16px;
  overflow: hidden;
}

.font_min {
  font-family: "hannari", "Hannari";
}


/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 980px) {
  #wrapper {
    width: 100%;
  }
}
/* ========== end △ */

/* ▽ PC layout ========== */
@media print, screen and (min-width: 981px) {
  #wrapper {
    min-width: 1000px;
  }
}
/* ========== end △ */

/* サイト幅
-------------------------------------------------- */
@media only screen and (max-width: 640px) {
  .site_wrap {
    box-sizing: border-box;
  }
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 981px) {
  .site_wrap {
    width: 1000px;
    margin: 0 auto;
    padding-left: 0;
  }
}
/* ========== end △ */

/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 980px) {
  .site_wrap {
    width: 94%;
    margin: 0 3%;
  }
}
/* ========== end △ */

/* ==================================================
	■SEO
================================================== */
#seo_txt {
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
}
#seo_txt h1 {
  font-size: 11px;
  font-weight: normal;
  color: #888;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  #seo_txt {
    display: none;
  }
}
/* ========== end △ */

/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 980px) {
  #seo_txt {
    margin-bottom: 5px;
  }
}
/* ========== end △ */

/* ==================================================
	■header
================================================== */
#header {
  position: relative;
  width: 100%;
  height: 120px;
  background: rgba(255,255,255,0.9);
  box-sizing: border-box;
  z-index: 10;
}
#header .flex-sys-wrap {
  align-items: flex-end;
  margin-bottom: 15px;
}

#header .right_col {
  display: flex;
  flex-flow: row wrap;
  margin-right: -60px;
}

.soudan_btn, .cont_btn {
  width: 200px;
  margin: 0 1px;
}
.soudan_btn a {
  display: block;
  background: url(../images/ico_soudan_bl.png) center left 30px no-repeat #a5cdca;
  color: #333;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  padding: 15px;
  padding-left: 45px;
  line-height: 1;
  transition: all 0.2s ease;
}
.cont_btn a {
  display: block;
  background: url(../images/ico_mail.png) center left 30px no-repeat #728a88;
  color: #fff;
  font-size: 18px;
  text-align: center;
  text-decoration: none;
  padding: 15px;
  padding-left: 45px;
  line-height: 1;
  transition: all 0.2s ease;
}
/* ▽ PC layout ========== */
@media print, screen and (min-width: 981px) {
  .soudan_btn a:hover {
    background: url(../images/ico_soudan.png) center left 30px no-repeat #555;
    color: #fff;
  }

  .cont_btn a:hover {
    background: url(../images/ico_mail.png) center left 30px no-repeat #555;
  }
}
/* ========== end △ */

/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 980px) {
  #header {
    padding: 1% 0;
  }
  #header .right_col {
    display: none;
  }
}
/* ========== end △ */

/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  #header {
    height: 60px;
    overflow: hidden;
  }
  #header .logo {
    width: 50%;
    margin-top: 10px;
  }
  #header .logo img {
    height: auto;
  }
}
/* ========== end △ */

/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 980px) {
  #header {
    height: 100px;
  }
}
/* ========== end △ */

/* ナビゲーション
---------------------------------------------------- */
#navwrap {
background: #fff;
border-bottom: 1px solid #eee;
}
#navwrap .h_nav {
  display: flex;
  align-items: center;
  margin: 0;
}
#navwrap .h_nav li {
  width: 20%;
  position: relative;
  text-align: center;
  font-size: 17px;
}
#navwrap .h_nav li a {
  position: relative;
  padding: 30px 0;
  display: block;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1;
}
#navwrap .h_nav li a::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  right: 0;
  width: 1px;
  height: 18px;
  background-color: #fff;
}
#navwrap .h_nav li:first-of-type a::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  width: 1px;
  height: 18px;
  background-color: #fff;
}

#navwrap .h_nav li ul {
  display: none;
  z-index: 1000;
  position: absolute;
  width: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
#navwrap .h_nav li:hover ul {
  display: block;
  position: absolute;
  width: 166px;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  background: rgba(251,251,251,0.8);
}
#navwrap .h_nav li ul li {
  display: table;
  border-right-style: none;
  clear: both;
  text-align: left;
  width: 100%;
  font-size: 16px;
  font-weight: normal;
}
#navwrap .h_nav li ul li::before {
  position: absolute;
  content: '';
  display: block;
  left: 0;
  bottom: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: #eee;
}
#navwrap .h_nav li ul li:last-child::after {
  content: none;
}
#navwrap .h_nav li ul li a {
  display: block;
  padding: 20px 0;
  text-align: center;
  color: #333;
}

#navwrap .h_nav li ul.sub li a::before {
  content: none;
}
#navwrap .h_nav li ul.sub li a::after {
  content: none;
}
#navwrap .h_nav li ul.sub li:first-of-type a::after {
  content: none;
}

/* ▽ PC layout ========== */
@media print, screen and (min-width: 1025px) {
  #navwrap .h_nav li a:hover {
    color: #3f857f;
  }
}
/* ========== end △ */

/* SP gnav本体
-------------------------------------------------- */
  .sp_haed .logo_area img {
    width: 50%;
    height: auto;
  }
  .h_btn {
    position: fixed;
    z-index: 999;
    top: 1%;
    right: 3%;
    display: flex;
    flex-flow: row wrap;
    margin: 0;
  }
  .h_btn li {
    width: 43px;
    margin-left: 10px;
  }

  #gnav_close {
    margin-left: auto;
    margin-bottom: 10px;
    width: 30px;
    padding: 0 2%;
  }
  #gnav_open img, #gnav_close img {
    max-width: 100%;
  }
  #gnav {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -100%;
    width: 100%;
    overflow-y: auto;
    transition: all 0.5s ease;
    background: #fff;
  }
  #gnav.openMenu {
    right: 0;
  }
   #gnav .gnav_list {
    margin-bottom: 0;
   }
  #gnav .gnav_list li {
    border-top: 1px solid #42cccc;
  }
  #gnav .gnav_list li > a,
  #gnav .gnav_list li > span {
    position: relative;
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
  }
  #gnav .gnav_list li a::after {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 6%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(45deg);
  }

  #gnav .gnav_list .s_translation .translation {
    justify-content: space-around;
    border-top: 1px solid #f8f2e8;
  }
  #gnav .gnav_list .s_translation .translation li {
    border-right: 1px solid #f8f2e8;
    border-top: none;
    width: 33%;
  }
  #gnav .gnav_list .s_translation .translation li a {
    display: block;
    text-align: center;
    font-size: 14px;
  }
  #gnav .gnav_list .s_translation .translation li a::after {
    content: none;
  }
  .nav_shade {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: #333;
    background-color: rgba(0, 0, 0, 0.7);
  }

/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 980px) {
  .h_btn {
    top: 1.5%;
  }
  .h_btn li {
    width: 70px;
    margin-left: 10px;
  }
  #gnav_close {
    width: 40px;
  }
  #gnav .gnav_list li > a, #gnav .gnav_list li > span {
    padding: 20px;
  }
}
/* ========== end △ */

/* ==================================================
  ■contact_area
================================================== */
#contact_area {
/*  background: url(../images/cont_bg.jpg) center no-repeat;
  background-size: cover;*/
  padding: 50px 0;
  color: #728a88;
}
#contact_area .top_ttl {
  text-align: center;
}
#contact_area .top_ttl h3 {
  position: relative;
}
#contact_area .top_ttl h3::after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background: #728a88;
  right: 0;
  left: 0;
  bottom: -15px;
  margin: auto;
}

#contact_area .flex-sys-wrap {
  align-items: stretch;
  justify-content: space-around;
  margin-top: 60px;
}

#contact_area p.num {
  font-size: 28px;
  font-weight: 500;
  background-size: 24px;
  padding-left: 35px;
}
#contact_area p.num a{
  color: #728a88;
}
#contact_area .tel p.num {
  background: url(../images/ico_tel.png) left center no-repeat;
}
#contact_area .fax p.num {
  background: url(../images/ico_fax.png) left center no-repeat;
}
#contact_area .box a {
  color: #fff;
  text-decoration: none;
}

#contact_area .cont_btn {
  width: 205px;
  box-shadow: 0 3px 5px rgba(8,1,3,0.6);
}
#contact_area .cont_btn a {
  font-size: 16px;
}

/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {

}

/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 980px) {
  #contact_area {
    padding: 50px 0;
  }
}
/* ========== end △ */

/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  #contact_area .flex-sys-wrap {
    margin-top: 40px;
  }
  #contact_area .box {
    margin: auto;
    margin-bottom: 3%;
  }
  #contact_area .cont_btn {
    width: 250px;
  }
}
/* ========== end △ */

/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 980px) {
}
/* ========== end △ */

/* ==================================================
	■footer
================================================== */

#footer {
  background: #b0d8d5;
  position: relative;
  padding-top: 50px;
  padding-bottom: 30px;
  text-align: center;
}
#footer .logo {
  margin-bottom: 10px;
}
#footer .address_area p {
  line-height: 1.5;
}
#footer .address_area .access {
  margin-left: 10px;
}
#footer .address_area .access a {
  color: #333;
  text-decoration: none;
  background: url(../images/ico_map.png) center left no-repeat;
  padding-left: 15px;
}

#footer #foot_nav {
  margin-top: 50px;
}
#footer #foot_nav ul.flex-sys-wrap {
  justify-content: center;
  align-items: baseline;
}
#footer #foot_nav li {
  position: relative;
  margin: 0 10px;
}
#footer #foot_nav a {
  position: relative;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
#footer #foot_nav a img {
  transition: all 0.2s ease;
}

#footer .copy {
  text-align: center;
  margin-top: 50px;
  font-size: 12px;
  color: #333;
  opacity: 0.5;
}
#footer .copy a {
  color: #333;
  text-decoration: none;
}

/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  #footer .copy a:hover {
    text-decoration: underline;
  }
  #footer #foot_nav a:hover {
    color: #f2fbfa;
  }
  #footer #foot_nav a img:hover {
    opacity: 0.6;
  }
}
/* ========== end △ */

/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 980px) {
  #footer .logo img {
    height: auto;
  }
}
/* ========== end △ */

/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  #footer .flex-sys-wrap {
    justify-content: center;
  }
  #footer .logo {
    width: 80%;
    margin: auto;
    margin-bottom: 30px;
  }
  #footer #foot_nav {
    margin-top: 30px;
  }
  #footer #foot_nav .f_menu {
    display: none;
  }
}
/* ========== end △ */

/* ▽ TAB layout ========== */
@media only screen and (min-width: 641px) and (max-width: 980px) {
  #footer .logo {
    width: auto;
  }
  #footer #foot_nav li {
    margin-bottom: 10px;
  }

  #footer .copy {
    margin-top: 20px;
  }
}
/* ========== end △ */

/* ==================================================
  ■SIDE
================================================== */
/* ▽ PC layout ========== */
@media print, screen and (min-width: 981px) {
  #side_bnr {
    position: fixed;
    z-index: 1;
    right: 0;
    top: 20%;
  }
  #side_bnr .soudan_btn, #side_bnr .cont_btn {
    width: 45px;
    height: 180px;
    overflow: hidden;
  }
  #side_bnr .soudan_btn {
    margin-top: 2px;
  }
  #side_bnr .soudan_btn a {
    writing-mode: vertical-rl;
    background: url(../images/ico_soudan_side_bl.png) center top 20px no-repeat #a5cdca;
    padding: 15px;
    padding-top: 45px;
    padding-bottom: 55px;
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.2s ease;
  }
  #side_bnr .cont_btn a {
    background: url(../images/ico_mail_side.png) center top 20px no-repeat #728a88;
    padding: 15px;
    padding-top: 40px;
    padding-bottom: 45px;
    box-sizing: border-box;
    font-size: 16px;
    transition: all 0.2s ease;
  }
  #side_bnr .soudan_btn a:hover {
    background: url(../images/ico_soudan_side.png) center top 20px no-repeat #555;
    color: #fff;
  }
  #side_bnr .cont_btn a:hover {
    background: url(../images/ico_mail_side.png) center top 20px no-repeat #555;

  }
}
/* ========== end △ */

/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 980px) {
    #side_bnr {
      display: none;
    }
}
/* ========== end △ */

/* ==================================================
	■PAGE TOP
================================================== */

/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  #pagetop_btn {
    position: fixed;
    z-index: 1;
    right: 1%;
    bottom: 20px;
  }
  #pagetop_btn a {
    transition: all 0.2s ease;
  }
  #pagetop_btn a:hover {
    opacity: 0.6;
  }
}
/* ========== end △ */

/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 980px) {
  #pagetop_sp {
    width: 100%;
  }
  #pagetop_sp a {
    display: block;
    background: #333;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
  }
}

/* ==================================================
  ■btn_style
================================================== */
.btn_style01 {
  width: 280px;
  margin: 40px auto 0;
  box-shadow: 0 3px 5px rgba(114,138,136,0.8);
}
.btn_style01 a {
  display: block;
  padding: 13px 0;
  text-align: center;
  color: #333;
  font-size: 15px;
  background: url(../images/arrow_b.png) center right 20px no-repeat #a5cdca;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn_style02 {
  width: 280px;
  margin: 40px auto 0;
  box-shadow: 0 3px 5px rgba(114,138,136,0.8);
}
.btn_style02 a {
  display: block;
  padding: 13px 0;
  text-align: center;
  color: #333;
  font-size: 15px;
  background: url(../images/arrow_b.png) center right 20px no-repeat;
  border: 2px solid #a5cdca;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* ▽ PC layout ========== */
@media print, screen and (min-width: 641px) {
  .btn_style01 a:hover {
    opacity: 0.6;
  }
  .btn_style02 a:hover {
    background: url(../images/arrow_b.png) center right 20px no-repeat #a5cdca;
  }
}
/* ========== end △ */

/* ▽ SP layout ========== */
@media only screen and (max-width: 640px) {
  .btn_style01, .btn_style02 {
    width: 90%;
    margin: 8% auto 0;
  }
}
/* ========== end △ */

/* おまじない */
.wcselect_400176684601 .img_txt .flex-sys-wrap > div {
  width:100%;
}

div[id^="wc_anc"], img[id^="wc_anc"], a[id^="wc_anc"], h4[id^="wc_anc"], h5[id^="wc_anc"] {
  padding-top: 100px;
  margin-top: -100px;
}
/* ▽ TAB-SP layout ========== */
@media only screen and (max-width: 980px) {
  div[id^="wc_anc"], img[id^="wc_anc"], a[id^="wc_anc"], h4[id^="wc_anc"], h5[id^="wc_anc"] {
    padding-top: 70px;
    margin-top: -70px;
  }
}

