@charset "UTF-8";
/*-------------------------------------------*/
/*
/*　　reset
/*
/*-------------------------------------------*/
@import url("//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");
html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

i, cite, em, var, address, dfn {
  font-style: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption, th, td {
  text-align: left;
}

/*-------------------------------------------*/
/*
/*　　base
/*
/*-------------------------------------------*/
html {
  position: relative;
  font-size: 18px;
/*  font-size: 0.9375vw;*/
}

body {
  position: relative;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
  line-height: 1;
  color: #000;
  background: #fff;
  font-display: swap;
  line-height: 2;
}

a:link, a:visited {
  color: blue;
  text-decoration: underline;
}

a {
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
a img {
  transition: opacity .2s;
}
a:hover {
  text-decoration: none;
}
a:hover img {
  opacity: .7;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: bottom;
}

img.max {
  width: 100%;
}

.link-blank {
    position: relative;
    padding-right: 20px;
}
.link-blank:after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 16px;
    height: 16px;
    background: url("../img/common/ico-blank@2x.png") no-repeat top center;
    background-size: 16px;
    margin-top: -8px;
}

@media screen and (max-width: 1280px) {
	html {
	  font-size: 16px;
/*	font-size: 1.25vw;*/
	}
}

@media screen and (max-width: 767px) {
  a:hover img {
    opacity: 1;
  }
}
/*-------------------------------------------*/
/*
/*　　header
/*
/*-------------------------------------------*/
#logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 204px;
  margin: 20px 0 0 20px;
  line-height: 1;
  transition: all .4s;
  z-index: 2002;
}
#logo a:hover img {
  opacity: 1;
}

#header {
  position: fixed;
  right: 0;
  top: 0;
  height: 100px;
  transition: all .4s;
  z-index: 2001;
}
#header:after {
  content: "";
  clear: both;
  display: block;
}
#header .h-nav {
  position: absolute;
  right: 0;
  top: 0;
  width: max-content;
}
#header .h-nav .nav-list {
  position: relative;
  display: flex;
  margin: 0 auto;
  max-width: 965px;
  align-items: center;
  justify-content: center;
  font-size: 1.111rem;
  line-height: 1.2;
  letter-spacing: .05em;
}
#header .h-nav .nav-list > li {
  width: 160px;
}
#header .h-nav .nav-list > li + li {
  margin-left: 1px;
}
#header .h-nav .nav-list > li > a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
#header .h-nav .nav-list > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 0;
  border-bottom: 5px solid #EEC15A;
  opacity: 0;
  transition: all .4s;
}
#header .h-nav .nav-list > li > a:hover {
  text-decoration: none;
}
#header .h-nav .nav-list > li > a:hover:after {
  width: 100%;
  opacity: 1;
}

@media screen and (max-width: 1280px) {
	#logo {
	  width: 140px;
	  margin: 20px 0 0 20px;
	}
	#header .h-nav .nav-list {
		font-size: 0.777rem;
	}
	#header .h-nav .nav-list > li {
		width: 105px;
	}
	#header .h-nav .nav-list > li > a {
		height: 66px;
	}
}
@media screen and (max-width: 1080px) {
	#logo {
	width: 174px;
	margin: 27px 0 0 20px;
	}

	#header .h-nav .nav-list {
		font-size: 0.666rem;
	}
	#header .h-nav .nav-list > li {
	width: 90px;
	}
	#header .h-nav .nav-list > li > a {
		height: 56px;
	}
}
@media screen and (max-width: 1000px) {
  #logo {
    z-index: 100;
  }

  #header .btn-open {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    width: 80px;
    cursor: pointer;
  }
  #header .btn-open img {
    display: block;
    width: 100%;
  }
  #header .btn-close {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    cursor: pointer;
  }
  #header .btn-close img {
    display: block;
    width: 100%;
  }
  #header .h-nav {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-right: 0;
    padding: 90px 20px 30px;
    background: #007942;
    text-align: center;
    z-index: 9999;
    overflow-y: scroll;
    transition: top .4s;
    -webkit-overflow-scrolling: touch;
  }
  #header .h-nav.active {
    top: 0;
  }
  #header .h-nav .nav-list {
    display: block;
    font-size: 1.111rem;
  }
  #header .h-nav .nav-list > li {
    width: 100%;
    margin: 15px 0;
  }
  #header .h-nav .nav-list > li > a {
    height: auto;
    padding: 15px 0;
    background: none;
    color: #fff;
  }
  #header .h-nav .nav-list > li > a:after {
    content: none;
  }
  #header .h-nav .nav-list > li > a:hover {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #logo {
    width: 140px;
    margin: 10px 0 10px 10px;
  }

  #header {
    height: 60px;
    padding: 0;
  }
  #header .btn-open {
    width: 60px;
  }
  #header .btn-close {
    width: 60px;
  }
  #header .h-nav {
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin-right: 0;
    padding: 90px 20px 30px;
    background: #007942;
    text-align: center;
    z-index: 9999;
    overflow-y: scroll;
    transition: top .4s;
    -webkit-overflow-scrolling: touch;
  }
  #header .h-nav.active {
    top: 0;
  }
  #header .h-nav .nav-list {
    display: block;
    font-size: 1.111rem;
  }
  #header .h-nav .nav-list > li {
    width: 100%;
    margin: 15px 0;
  }
  #header .h-nav .nav-list > li > a {
    height: auto;
    padding: 15px 0;
    background: none;
    color: #fff;
  }
  #header .h-nav .nav-list > li > a:after {
    content: none;
  }
  #header .h-nav .nav-list > li > a:hover {
    color: #fff;
  }
}
/*-------------------------------------------*/
/*
/*　　content
/*
/*-------------------------------------------*/
#wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

#pagetit {
  height: 300px;
  padding-top: 180px;
  background: url(../img/common/bg-pagetitle.jpg) no-repeat center;
  background-size: cover;
  text-align: center;
}
#pagetit h2 {
  margin: 0;
  color: #fff;
  font-size: 52px;
  letter-spacing: .1em;
}

#breadcrumb {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 10px 0;
  font-size: 15px;
  text-align: center;
}
#breadcrumb li {
  display: inline-block;
  vertical-align: top;
}
#breadcrumb li a {
  color: #000;
  text-decoration: none;
}
#breadcrumb li a:hover {
  text-decoration: underline;
}
#breadcrumb li:after {
  content: ">";
  padding-left: 5px;
  vertical-align: top;
}
#breadcrumb li:last-of-type:after {
  content: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.container:after {
  content: "";
  clear: both;
  display: block;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flexbox.mid {
  align-items: center;
}

.flexbox.center {
  justify-content: center;
}

.flexbox.reverse {
  flex-direction: row-reverse;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.rel {
  position: relative;
}

.flL {
  float: left;
}

.flR {
  float: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.taR {
  text-align: right;
}

.mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.gothic {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, Verdana, sans-serif;
}

img.icon,
span.icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  top: -2px;
}

.txt-bold {
  font-weight: bold;
}

.txt-break span {
  display: inline-block;
}

.txt-kerning {
  font-feature-settings: "palt";
}

/* 汎用見出し */
h2 {
  margin-bottom: 30px;
  font-size: 58px;
  font-family: "Noto Sans JP";
  font-weight: bold;
  letter-spacing: .25em;
  line-height: 1.3;
  text-align: center;
}
h2 span {
  font-weight: bold;
}

h3 {
  margin-bottom: 30px;
  font-size: 58px;
  font-family: "Noto Sans JP";
  font-weight: bold;
  letter-spacing: .1em;
  line-height: 1.3;
  text-align: center;
}
h3 span {
  font-weight: bold;
}

h4 {
  margin-bottom: 25px;
  font-size: 1.667rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.5;
}
h4 span {
  font-weight: bold;
}

h5 {
  margin-bottom: 25px;
  font-size: 1.667rem;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: 1.5;
}
h5 span {
  font-weight: bold;
}

/* 汎用ボタン */
a.btn {
  position: relative;
  display: inline-block;
  width: 300px;
  max-width: 100%;
  padding: 15px 40px 14px;
  background: #007942;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  letter-spacing: .2em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}
a.btn:after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  display: inline-block;
  width: 10px;
  height: 8px;
  margin-top: -4px;
  background: url(../img/common/icon-arrow.png) no-repeat;
  background-size: 100%;
  transition: transform .2s;
}
a.btn:hover {
  background: #009350;
}
a.btn:hover:after {
  transform: translateX(2px);
}

/* 汎用テーブル */
table {
  width: 100%;
  border-spacing: 1px 0;
  border-collapse: separate;
  empty-cells: show;
  table-layout: fixed;
}
table th,
table td {
  padding: 15px 0 12px;
  border-bottom: 1px dotted #222;
  vertical-align: top;
}
table th {
  width: 20%;
}

@media screen and (max-width: 1280px) {
  .container {
    width: 94%;
  	max-width: 960px;
  }

  /* 汎用見出し */
  h2 {
    font-size: 40px;
  }
  #pagetit h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 40px;
  }
	h4 {
	  font-size: 1.444rem;
	}
	h5 {
	  font-size: 1.444rem;
	}
}
@media screen and (max-width: 767px) {
  #pagetit {
    height: 200px;
    padding-top: 120px;
  }
  #pagetit h2 {
    font-size: 40px;
  }

  /* 汎用見出し */
  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 38px;
  }

  h4 {
    font-size: 1.444rem;
  }

  h5 {
    font-size: 1.444rem;
  }

  /* 汎用ボタン */
  a.btn {
    width: 100%;
  }
  a.btn:hover {
    background: #DE656B;
  }
  a.btn:hover:after {
    transform: translateX(0);
  }
}
/*-------------------------------------------*/
/*
/*　　footer
/*
/*-------------------------------------------*/
#footer {
  position: relative;
  width: 100%;
  padding: 80px 0 20px;
  background: url(../img/common/bg-f.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
}
#footer .f-pagetop {
  position: fixed;
  right: 20px;
  bottom: -62px;
  width: 62px;
  height: 62px;
  line-height: 1;
  z-index: 2000;
  transition: bottom .4s;
}
#footer .f-pagetop.active {
  bottom: 20px;
}
#footer .f-pagetop a {
  display: block;
}
#footer .f-pagetop img {
  display: block;
}
#footer .f-nav {
  font-size: 1.111rem;
  line-height: 1.6;
}
#footer .f-nav a {
  color: #fff;
  text-decoration: none;
}
#footer .f-nav a:hover {
  color: #fff;
}
#footer .f-nav li {
  margin: 0 25px;
}
#footer .f-logo {
  margin: 80px 0 25px;
  text-align: center;
}
#footer .f-logo a img {
}
#footer .f-logo a:hover img {
  opacity: 1;
}
#footer .f-address {
  margin: 25px 0 60px;
  line-height: 1.6;
  text-align: center;
}
#footer .f-address .name {
  margin-bottom: 10px;
  font-size: 1.222rem;
}
#footer .f-address .pr {
  padding-right: 1em;
}
#footer .f-address a {
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  padding: 0 10px;
  font-family: Arial, sans-serif;
  line-height: 1.4;
  text-align: center;
}
#footer .copyright small {
  font-size: 14px;
}
@media screen and (max-width: 1280px) {
	#footer .f-pagetop {
	  bottom: -40px;
	  width: 40px;
	  height: 40px;
	}
	#footer .f-nav {
	  font-size: 1rem;
	}
	#footer .f-logo {
	  margin: 60px 0 20px;
	}
	#footer .f-logo a img {
		max-width: 136px;
	}
	#footer .f-address {
	  margin: 20px 0 50px;
		font-size: 0.888rem;
	}
	#footer .f-address .name {
	  font-size: 1rem;
	}
	#footer .copyright small {
	  font-size: 12px;
	}
}

@media screen and (max-width: 767px) {
  #footer {
    padding: 50px 0 20px;
  }
  #footer .f-pagetop {
    right: 10px;
    bottom: -50px;
    width: 50px;
    height: 50px;
  }
  #footer .f-pagetop.active {
    bottom: 40px;
  }
  #footer .f-nav li {
    margin: 0 25px 10px;
  }
  #footer .f-logo {
    margin: 45px 0 25px;
  }
  #footer .f-address {
    margin: 25px 0 40px;
  }
  #footer .f-address .pr {
    padding-right: 0;
  }
  #footer .copyright {
    padding: 0 10px;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    text-align: center;
  }
  #footer .copyright small {
    font-size: 14px;
  }
}
/*-------------------------------------------*/
/*
/*　　IE用cssハック
/*
/*-------------------------------------------*/
@media all and (-ms-high-contrast: none) {
  a.btn {
    padding: 17px 20px 10px;
  }
}
/*-------------------------------------------*/
/*
/*　　respomsive common
/*
/*-------------------------------------------*/
.pc-block {
  display: block;
}

.sp-block {
  display: none;
}

.pc-inline {
  display: inline;
}

.sp-inline {
  display: none;
}

.pc-hidden {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc-block {
    display: none;
  }

  .sp-block {
    display: block;
  }

  .pc-inline {
    display: none;
  }

  .sp-inline {
    display: inline;
  }

  .sp-hidden {
    display: none !important;
  }

  .pc-hidden {
    display: block !important;
  }
}
