@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/sawarabimincho.css);
@import url(https://fonts.googleapis.com/earlyaccess/sawarabigothic.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: #454545;
  font-size: 75%;
  font-family: "Sawarabi Gothic";
}

a {
  color: #411b31;
  text-decoration: underline;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.under h1 {
  font-size: 100%;
  font-weight: normal;
  margin-bottom: 10px;
}

h2,
.under h1 {
  border-top: 1px solid #e8e4e4;
  border-left: 1px solid #e8e4e4;
  border-right: 1px solid #e8e4e4;
  border-bottom: 3px solid #79325b;
  box-shadow: 2px 2px 10px #eee;
  border-radius: 4px 4px 0 0;
  font-size: 140%;
  line-height: 3em;
  text-align: center;
  background: #f9f9f9;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #f9f9f9 34%,
      #e5e3dc 100%,
      #232320 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #f9f9f9 34%,
      #e5e3dc 100%,
      #232320 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #f9f9f9 34%,
      #e5e3dc 100%,
      #232320 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#232320', GradientType=0);
  /* IE6-9 */
}

h3,
.under h2 {
  color: #bb9b5d;
  font-size: 140%;
  font-family: "Sawarabi Mincho";
  text-align: left;
}

h4,
.under h3 {
  font-size: 120%;
  text-align: left;
  padding-left: 8px;
  border-left: solid 4px #79325b;
  margin: 8px 0;
}

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

h5 {
  background: #f0e9dd;
  border: 1px solid #ddcdb1;
  padding-left: 10px;
}

h6 {
  text-align: left;
}

h6:before {
  content: "「";
}

h6:after {
  content: "」";
}

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

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

em {
  color: #d10b11;
}

section {
  width: 96%;
  margin: 25px 0;
  padding: 10px 2%;
  background: #fff;
}

article img {
  max-width: 100%;
  margin-bottom: 10px;
}

article ul {
  margin: 20px 0;
  padding: 10px 30px;
  text-align: left;
  border: solid 1px #eee;
  border-radius: 4px;
}

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

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

ol {
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
  padding: 0 20px;
  background: #f7f7f4;
  border-radius: 4px;
}

ol li {
  padding: 0.5em 0;
  position: relative;
  padding-left: 1.4em;
  line-height: 1.5em;
}

ol li:before {
  counter-increment: number;
  content: counter(number) ".";
  position: absolute;
  left: 0;
  font-family: "Dancing Script", cursive;
  font-size: 1.3em;
  /*フォントサイズ*/
}

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

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

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

blockquote p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  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-bottom: 20px;
  font-size: 12px;
}

table th {
  width: 150px;
  padding: 10px;
  font-family: "Sawarabi Mincho";
  vertical-align: top;
  border: 1px solid #bb9b5d;
  background: #f0e9dd;
  text-align: center;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #bb9b5d;
  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: #f0e9dd;
  border: 1px solid #ddcdb1;
  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: url(../images/sc_bg01.jpg) center top repeat-x;
}

#header .header_logo {
  padding: 30px 0 0;
  text-align: center;
}

#header .header_logo a {
  font-size: 28px;
  color: #471d35;
  font-family: "Sawarabi Mincho";
  text-decoration: none;
}

#header .header_logo a:hover {
  color: #af4785;
}

#header p.sitecommon_text {
  max-width: 980px;
  margin: 0 auto;
  color: #fff;
  text-align: right;
  z-index: 999;
  font-size: 8px;
}

#globalnavi {
  width: 100%;
  padding: 0px 0px 7px 0px;
  border-bottom: solid 2px #bb9b5d;
  background: #fff;
  text-align: center;
  box-shadow: 2px 6px 6px #e0e0e0;
}

#globalnavi>ul {
  position: relative;
  max-width: 980px;
  margin: 0px auto 0px auto;
  display: flex;
  justify-content: space-between;
}

#globalnavi ul>li {
  line-height: 30px;
  border-left: 1px solid #ccc;
  width: calc(100% / 4);
  margin: 15px 0;
}

#globalnavi ul>li:last-child {
  border-right: 1px solid #ccc;
}

#globalnavi ul>li a {
  font-size: 15px;
  width: 100%;
  text-decoration: none;
  text-align: center;
}

nav ul>li a:hover {
  border-bottom: solid 6px #bb9b5d;
}

.slicknav_menu {
  display: none;
}

/* slider */
.mainvisual {
  width: 100%;
  /*height: 375px;*/
  /* background: url(../images/slider.png) no-repeat bottom center; */
}

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

/* contents area */
#contents_area {
  max-width: 950px;
  margin: 20px auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

/* 3column */
.index_news {
  margin: 0 0 25px;
  border: 1px solid #ece6d0;
  border-radius: 4px;
  background: #faf6e8;
  display: flex;
  -webkit-justify-content: space-around;
  /* Safari */
  justify-content: space-around;
  padding: 10px 0;
}

.index_news h2 {
  font-size: 110%;
  font-family: "Sawarabi Mincho";
  font-weight: bold;
  color: #80814a;
  background: none;
  border: none;
  box-shadow: none;
  margin-top: 10px;
  line-height: 160%;
}

.index_news article {
  width: calc(100% / 3 - 16px);
  text-align: center;
  background: #fff;
  padding: 10px 10px 0;
  border: solid 2px #eee;
}

.index_news article img {
  width: 100%;
  margin: 10px 0;
  border: solid 2px #eee;
}

.index_news article p {
  text-align: left;
}

.rMore_bn {
  font-size: 12px;
  margin: 20px 0;
}

.rMore_bn a {
  padding: 2px 10px;
  background: #79325b;
  text-decoration: none;
  color: #fff;
}

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

.rMore_bn a:hover {
  background: #bb9b5d;
  color: #000;
}

/* main */
main {
  float: left;
  max-width: 700px;
  margin: 0 0 100px;
}

#contents_area:has(#pankuzu) main {
  max-width: none;
}

/* おすすめリンク */
#rec_link p {
  padding: 0 0 10px;
}

#rec_link h3 {
  width: 100%;
  line-height: 200%;
  margin: 15px 0;
}

#rec_link h3 a:before {
  font-family: FontAwesome;
  content: "\f138";
  color: #fff;
  margin-right: 5px;
}

#rec_link h3 a {
  width: 100%;
  background: #79325b;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
}

#rec_link h3 a:hover {
  background: #bb9b5d;
  color: #000;
  border-bottom: none;
}

/* #left_contents */
#left_contents {
  float: right;
  /*min-*/
  width: 230px;
  position: sticky;
  top: 0;
  height: fit-content;
}

#left_contents li dl,
#footersitemap li dl {
  margin-bottom: 20px;
  border: solid 1px #ccc;
  border-radius: 4px;
  text-align: center;
  background: #fff;
}

#left_contents li dt,
#footersitemap li dt {
  line-height: 26px;
  border-radius: 4px 4px 0 0;
  background: #f9f9f9;
  /* Old browsers */
  background: -moz-linear-gradient(top,
      #f9f9f9 1%,
      #fbfaf0 26%,
      #f1eee1 97%,
      #ded0b6 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top,
      #f9f9f9 1%,
      #fbfaf0 26%,
      #f1eee1 97%,
      #ded0b6 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,
      #f9f9f9 1%,
      #fbfaf0 26%,
      #f1eee1 97%,
      #ded0b6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#ded0b6', GradientType=0);
  /* IE6-9 */
}

#left_contents li dd,
#footersitemap li dd {
  margin: 15px 0;
  text-align: left;
}

#left_contents li:nth-child(1) dd a:before,
#left_contents li:nth-child(2) dd a p:before,
#footersitemap li dd a:before {
  font-family: FontAwesome;
  content: "\f138";
  margin-right: 5px;
  color: #79325b;
}

#left_contents li dd a,
#footersitemap li dd a {
  line-height: 260%;
  text-decoration: none;
}

#left_contents li:nth-child(1) dd a:hover,
#footersitemap li dd a:hover {
  border-bottom: solid 6px #bb9b5d;
}

#left_contents img {
  max-width: 80%;
  margin: 10px auto 0;
  border: solid 2px #eee;
}

#left_contents li dd a:hover img {
  opacity: 0.7;
}

/* #footersitemap */
#footersitemap {
  width: 100%;
  position: relative;
  background: #f7f7f4;
  border-top: solid 2px #bb9b5d;
}

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

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

.copyright {
  text-align: center;
  padding: 5px 0;
  color: #fff;
  background: #602145;
  border-top: solid 2px #bb9b5d;
}

.pagetop {
  width: 950px;
  margin: 0 auto;
  text-align: right;
}

.pagetop a {
  padding: 2px 10px;
  background: #bb9b5d;
  text-decoration: none;
  color: #fff;
  text-align: right;
  border-radius: 4px 4px 0 0;
}

.pagetop a:hover {
  opacity: 0.7;
}

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

/* under */
.no_exist {
  margin: 20px 0;
}

.no_exist b {
  font-size: 35px;
  color: #b1a395;
  font-family: "Sawarabi Mincho";
}

/* pan nav */

#pankuzu {
  margin-left: 0;
  padding: 9px 10px;
  overflow: hidden;
  height: fit-content;
}

#pankuzu li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-weight: bold;
  /*太字*/
}

#pankuzu li:after {
  /* >を表示*/
  content: ">";
  padding: 0 3px;
  color: #79325b;
}

#pankuzu li:last-child:after {
  content: "";
}

#pankuzu li a {
  text-decoration: none;
  color: #79325b;
}

#pankuzu li:first-child a:before {
  /*家アイコンに*/
  font-family: FontAwesome;
  content: "\f015";
  font-weight: normal;
  font-size: 1.1em;
}

#pankuzu li a:hover {
  text-decoration: underline;
}

/* SNS */
.sns-area {
  width: 100%;
  margin: 50px 0;
  padding: 10px;
  background: #f0e9dd;
  border: 1px solid #ddcdb1;
  border-radius: 4px;
}

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

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

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

.sns_share {
  text-align: center;
  display: block;
  background-color: #bb9b5d;
  color: #fff;
  font-size: 14px;
  width: 100%;
  padding: 6px 15px;
  margin-bottom: 10px;
  box-sizing: border-box;
  font-family: "Sawarabi Mincho";
}

.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;
  border-radius: 4px;
}

.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内で要素が増える時*/
#contents_area:has(#pankuzu) {
  flex-wrap: wrap;
}

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

/*パンくず*/