@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/sawarabimincho.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url("https://fonts.googleapis.com/css?family=Dancing+Script|Great+Vibes");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

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

body {
  width: 100%;
  letter-spacing: 0px;
  line-height: 170%;
  color: #000;
  font-size: 14px;
  font-family: "Noto Sans Japanese";
}

a {
  color: #4d8625;
  text-decoration: underline;
  display: block;
}

a:hover {
  transition: 0.2s;
  color: #bb0511;
  text-decoration: none;
}

h5,
h6 {
  font-size: 100%;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 10px;
}

h2,
.under h1 {
  font-size: 20px;
  border-top: solid 10px #bb0511;
  width: 90%;
  margin: -5px auto 10px;
  padding: 20px 15px;
  text-align: center;
  color: #000;
  z-index: 999;
}

h3,
.under h2 {
  background: #4d8625;
  font-size: 140%;
  text-align: left;
  padding: 10px;
  margin-bottom: 10px;
  color: #fff;
}

h4,
.under h3 {
  font-size: 120%;
  text-align: left;
  padding: 5px 8px;
  border-left: 8px solid #4d8625;
  color: #4d8625;
}

.under h3 {
  margin-top: 40px;
  color: #fff;
}

h5 {
  background: #000;
  color: #fff;
}

h6 {
  background: #c9dabb;
}

strong {
  font-weight: bold;
  padding: 0 8px;
  background: linear-gradient(transparent 60%, #c9dabb 60%);
}

strong,
b {
  font-size: 100%;
}

em {
  border-bottom: dashed 1px #bb0511;
}

article img {
  max-width: 94%;
  margin: 0 3% 10px;
}

article ul {
  margin: 20px 0;
  padding: 10px 30px;
  text-align: left;
  border-top: solid 1px #cccccc;
  border-bottom: solid 1px #cccccc;
}

article ul li {
  line-height: 1.2;
  padding: 10px 0;
}

article ul li:before {
  font-family: FontAwesome;
  content: "\f10c";
  color: #bb0511;
  margin-right: 5px;
}

article ol {
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
  background-color: #fafafa;
  border: 1px solid #d3d3d3;
  padding: 0 18px;
}

article ol li {
  position: relative;
  padding: 20px 30px;
  border-bottom: 1px dotted #666;
}

article ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display: inline-block;
  background: #bb0511;
  color: white;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-weight: bold;
  font-size: 15px;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下上下中央寄せのため*/
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

blockquote {
  background: #f0e9dd;
  padding: 3em;
  position: relative;
  margin-bottom: 1em;
}

blockquote:before {
  content: "\f10d";
  font-family: FontAwesome;
  color: #c9dabb;
  position: absolute;
  left: 10px;
  top: 0;
  font-size: 50px;
}

blockquote:after {
  content: "\f10e";
  font-family: FontAwesome;
  color: #c9dabb;
  position: absolute;
  font-size: 50px;
  right: 10px;
  bottom: 0;
}

blockquote p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

table {
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  margin: 0 auto 20px;
  font-size: 12px;
  width: 90%;
}

table th {
  padding: 10px;
  font-family: "Sawarabi Mincho";
  vertical-align: top;
  background: #c9dabb;
  border: 1px solid #94aa83;
  text-align: center;
}

table td {
  padding: 10px;
  vertical-align: top;
  border: 1px solid #94aa83;
  background: #fff;
}

pre {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: pre-wrap;
  /* CSS3 */
  word-wrap: break-word;
  /* IE 5.5+ */
  display: inline-block;
  border: 3px solid #eee;
  margin: 1em 0;
  padding: 1em;
}

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

address {
  font-style: normal;
  background: #c9dabb;
  border: 1px solid #94aa83;
  padding-left: 10px;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/* top page */
/* header */
header {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #293b48;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

#logo {
  max-width: 1060px;
  width: 100%;
  height: 110px;
  margin: 0 auto;
  position: relative;
  display: table;
}

.logoTitle {
  width: 330px;
  display: table-cell;
  vertical-align: middle;
}

.logoTitle a {
  border-radius: 8px;
  width: 100%;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 900;
  color: #293b48;
  text-decoration: none;
  background: url(../images/bg.gif) 97% 88% / 20px 20px no-repeat #fff;
}

.logoTitle a:hover {
  color: #4d8625;
}

#logo .logo-copy {
  position: absolute;
  top: 35%;
  left: 33%;
  width: 30%;
  color: #fff;
  font-size: 12px;
  line-height: 130%;
}

.globalNavi {
  width: 35%;
  position: absolute;
  top: 10px;
  right: 0%;
}

.globalNavi>ul {
  display: flex;
  justify-content: space-around;
  margin: 0;
}

.globalNavi ul#globalNavi-menu>li {
  position: relative;
  width: 24%;
  /* min-width: 90px; */
  height: auto;
  font-size: 0.6vw;
  text-align: center;
}

.globalNavi ul#globalNavi-menu>li:before {
  content: "";
  display: block;
  padding-top: 100%;
}

#globalNavi-menu li a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  padding: 38% 0 0;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

#globalNavi-menu li a:after {
  font-family: FontAwesome;
  content: "\f078";
  display: block;
}

#globalNavi-menu li:nth-child(1) a {
  background: #ee3885;
}

#globalNavi-menu li:nth-child(2) a {
  background: #69c90b;
}

#globalNavi-menu li:nth-child(3) a {
  background: #ff802b;
}

#globalNavi-menu li:nth-child(4) a {
  background: #00c5c3;
}

#globalNavi-menu li a:hover {
  background: #fff;
}

#globalNavi-menu li:nth-child(1) a:hover {
  color: #ee3885;
}

#globalNavi-menu li:nth-child(2) a:hover {
  color: #69c90b;
}

#globalNavi-menu li:nth-child(3) a:hover {
  color: #ff802b;
}

#globalNavi-menu li:nth-child(4) a:hover {
  color: #00c5c3;
}

.slicknav_menu {
  display: none;
}

/* contents area */
[id^="container-wrapper"] {
  max-width: 1060px;
  padding: 20px;
  z-index: 999;
  background: url(../images/black.png) repeat;
  display: flex;
  justify-content: space-between;
}

#container-wrapper {
  margin: 520px auto 0;
}

#container-wrapper2 {
  margin: 100px auto 0;
}

/* main */
main {
  max-width: 70%;
  /*740px*/
  float: right;
}

@media(max-width: 725px) {
  main {
    max-width: inherit;
  }

}

main section {
  background: #f4f4f4;
  border: solid 5px #fff;
  margin-bottom: 20px;
}

/* slider */
.mainvisual {
  max-width: 1200px;
  width: 100%;
  height: 560px;
  position: fixed;
  top: 100px;
  left: 60%;
  transform: translate(-50%, 0%);
  z-index: -1;
}

.mainvisual::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 50%;
  background: linear-gradient(rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.7) 20%,
      rgba(255, 255, 255, 1) 80%);
}

.bx-wrapper {
  margin: 0 auto;
  border: none;
  box-shadow: none;
}

.mainvisual p.logo-copy {
  width: 100%;
  margin: 0 auto;
  color: #000;
  text-align: center;
  text-shadow: 2px 1px 1px #fff;
  font-size: 22px;
  font-family: "Sawarabi Mincho";
  position: absolute;
  top: 34%;
  left: 0;
}

/* col2 */
.col2 {
  background: none;
  border: none;
  width: 100%;
}

.col2 article {
  width: 49%;
  margin-bottom: 20px;
  float: left;
  background: #f4f4f4;
  border: solid 5px #fff;
}

.col2 article:nth-child(odd) {
  margin-right: 2%;
}

.more-btn {
  font-size: 12px;
}

.more-btn a {
  padding: 8px 10px;
  background: #4d8625;
  text-decoration: none;
  color: #fff;
}

.more-btn a:before {
  font-family: FontAwesome;
  content: "\f0fe";
  color: #fff;
  margin-right: 5px;
}

.more-btn a:hover {
  background: #bb0511;
}

/* おすすめリンク */
.link-box p {
  padding: 0 5% 20px;
}

.link-box h3 {
  width: 90%;
  line-height: 200%;
  margin: 15px 5%;
  border: none;
  position: relative;
}

.link-box h3 a:before {
  font-family: FontAwesome;
  content: "\f10c";
  margin-right: 8px;
}

.link-box h3 a::after {
  content: ">";
  position: absolute;
  right: 10px;
}

.link-box h3 a {
  width: 100%;
  background: #4d8625;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
}

.link-box h3 a:hover {
  background: #bb0511;
  border-bottom: none;
}

/* #side-area */
#side-area {
  /*min-*/
  width: 260px;
  float: left;
  position: sticky;
  top: 110px;
  height: fit-content;
}

#side-area li dl,
#footer-area li dl {
  margin-bottom: 40px;
}

#side-area li dt,
#footer-area li dt {
  color: #fff;
  line-height: 3em;
  margin-bottom: 5px;
}

#side-area li dt:before,
#footer-area li dt:before {
  font-family: FontAwesome;
  content: "\f1b2";
  margin-right: 5px;
  padding-left: 5px;
}

#side-area li dd,
#footer-area li dd {
  margin-bottom: 15px;
}

#side-area li dd a,
#footer-area li dd a {
  text-decoration: none;
  color: #000;
  padding-left: 10px;
  line-height: 4em;
}

#side-area li dd a:hover,
#footer-area li dd a:hover {
  color: #fff;
}

#side-area li:nth-child(1) dd a,
#footer-area li dd a {
  background: url(../images/bg2.gif) 97% 87% / 12px 12px no-repeat #fff;
}

#side-area li:nth-child(1) dd:hover a,
#footer-area li dd a:hover {
  background: url(../images/bg3.gif) 97% 87% / 12px 12px no-repeat #4d8625;
}

#side-area li:nth-child(2) dd a {
  background: url(../images/bg2.gif) 97% 96% / 12px 12px no-repeat #fff;
}

#side-area li:nth-child(2) dd:hover a {
  background: url(../images/bg3.gif) 97% 96% / 12px 12px no-repeat #4d8625;
}

#side-area img {
  max-width: 96%;
  margin: 10px auto 0;
}

/* #footer-area */
#footer-area {
  width: 100%;
  position: relative;
  background: #293b48;
}

#footer-area li {
  width: calc(100% / 2 - 20px);
  margin: 20px 0;
}

#footer-area ul {
  width: 880px;
  margin: 0 auto;
  display: -webkit-flex;
  /* Safari */
  display: flex;
  justify-content: space-between;
}

.footer-copy {
  text-align: center;
  padding: 5px 0;
  color: #fff;
  font-size: 80%;
  background: #4d8625;
}

.pagetop-btn {
  position: fixed;
  bottom: 10px;
  right: 0;
  z-index: 1;
}

/* under */
.page404 {
  padding: 50px 20px;
}

.page404 b {
  font-size: 250%;
  color: #fff;
}

/* pan nav */
.breadcrumb {
  height: 16px;
  margin: 0 0 20px;
  display: flex;
  justify-content: flex-start;
}

.breadcrumb li:after {
  /* ▶を表示*/
  font-family: FontAwesome;
  content: "\f0da";
  padding: 0 4px;
  color: #bb0511;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb li a {
  display: inline-block;
  padding: 0 10px;
  text-align: center;
  line-height: 16px;
  border-radius: 15px;
  text-decoration: none;
  background: #293b48;
  font-size: 12px;
  color: #fff;
}

.breadcrumb li a:hover {
  background: #fff;
  color: #4d8625;
}

/* SNS */
.button-area {
  width: 100%;
  padding: 2%;
  margin: 50px 0;
  background: #f4f4f4;
  border: solid 5px #fff;
}

.sns-container {
  display: flex;
  justify-content: space-between;
}

.button-area>div {
  text-align: center;
}

.button-area:after {
  content: "";
  clear: both;
  display: block;
}

.title-fill {
  text-align: center;
  display: block;
  background-color: #293b48;
  color: #fff;
  font-size: 14px;
  width: 100%;
  padding: 6px 15px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.button-whole {
  width: 23%;
  box-sizing: border-box;
  margin: 0 0.1%;
}

.button-whole .fa {
  font-weight: bold;
}

.button-link {
  display: block;
  text-align: center;
  color: #fff !important;
  font-size: 14px !important;
  padding: 10px 0 !important;
  box-sizing: border-box;
  text-decoration: none;
}

.button-link:hover {
  text-decoration: none !important;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

/* SNSごとの背景色 */
#twitter {
  background-color: #00acee;
}

#hatena {
  background-color: #2d4c86;
}

#facebook {
  background-color: #3b5998;
}

#ggl-plus {
  background-color: #dd4b39;
}

/*下層などflex内で要素が増える時*/
#container-wrapper2:has(.breadcrumb) {
  flex-wrap: wrap;
}

/*パンくずが含まれる時のみ*/
.breadcrumb {
  width: 100%;
}

/*パンくず*/

#container-wrapper2:has(.breadcrumb) main {
  max-width: none;
  margin-inline: auto;
}