@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);

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

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

body {
  background-color: #fceae8;
  font-size: 16px;
  line-height: 2;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体",
    "ＭＳ 明朝", "MS Mincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 ProN",
    "Hiragino Mincho ProN", sans-serif;
}

a {
  color: #af9888;
  font-size: 15px;
}

a :hover {
  text-decoration: underline;
  color: #fff;
}

h1 {
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: normal;
}

h2,
h3,
h4,
h5,
h6,
.under h1 {
  font-size: 140%;
  margin-bottom: 25px;
}

h2,
.under h1 {
  color: #9d9ec2;
  background: #e9fdfb;
  padding: 15px 15px;
  border-radius: 5px;
}

h3,
.under h2 {
  border: 6px double #fff;
  padding: 6px 10px;
  color: #9d9ec2;
}

h4,
.under h3 {
  border-bottom: 6px double #eafdfb;
  padding: 5px 5px 0 5px;
  color: #9d9ec2;
  margin-bottom: 5px;
}

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

h5 {
  color: #9c9dc6;
  font-size: 120%;
  border-bottom: 1px dotted #fff;
}

h6 {
  color: #fff;
  font-size: 108%;
}

strong {
  background: linear-gradient(transparent 60%, #fceae8 60%);
}

article ul {
  padding: 0.5em 0 0.5em 2.5em;
  margin: 1.5em 0;

  background: #fff;
  border-radius: 5px;
}

article ul li {
  position: relative;
}

article ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: -16px;
  width: 8px;
  height: 8px;
  background: #fceae8;
  border-radius: 15px;
}

article ol {
  padding: 0.5em 0 0.5em 2.5em;
  margin: 1.5em 0;

  background: #fff;
  border-radius: 5px;
}

article ol li {
  margin: 0;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

article ol li:before {
  counter-increment: counter-name;
  content: counter(counter-name) ".";
  position: absolute;
  left: 0;
}

blockquote {
  background: #fceae8;
  padding: 3em 2em;
  position: relative;
  border-radius: 5px;
}

blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #9d9ec2;
  position: absolute;
}

blockquote:before {
  content: "“";
  left: 0;
  top: 0;
  line-height: 1em;
}

blockquote:after {
  content: "”";
  right: 0;
  bottom: 0;
}

table {
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 150px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border: 1px solid #ffffff;
  background: #afa1ae;
  color: #fff;
}

table td {
  width: 345px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #cfe9ef;
}

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: 2px solid #fceae8;
  margin: 1em 0;
  padding: 1em;
  background: #fff;
}

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

em {
  font-style: normal;
}

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/* top page */
/* header */
.headtop {
  width: 100%;
  padding: 2rem 0px 2%;
  background-color: #a3c4cd;
}

.headtop a {
  color: #fff;
}

.headtop .stitle a {
  font-size: 28px;
  text-align: center;
  line-height: 1.3;
}

.headtop p.catcopy {
  margin: 8px 0;
  color: #fff;
  font-size: 80%;
  text-align: center;
}

.glnv>ul a {
  position: relative;
  display: inline-block;
  transition: 0.3s;
  color: #af9888;
  font-size: 16px;
}

.glnv>ul a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 2px;
  background-color: #fceae7;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.glnv>ul a:hover::after {
  width: 90%;
}

.glnv>ul {
  display: flex;
  justify-content: space-around;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-top: 13px;
}

.glnv ul#glnv-menu li:first-child {
  border-left: 5px dotted #ceefea;
}

.glnv ul#glnv-menu>li {
  display: block;
  position: relative;
  width: 24%;
  font-size: 14px;
  text-align: center;
  border-left: 0;
  border-right: 5px dotted #ceefea;
}

#glnv-menu li ul.sub-menu {
  display: none;
  position: absolute;
  padding: 0;
  z-index: 9999;
}

.slicknav_menu {
  display: none;
}

#glnv-menu li a {
  display: block;
}

/* slider */
.minvisual_01 {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}

.slbox_01 {
  position: relative;
  left: 50%;
  width: 2940px;
  margin-left: -1470px;
}

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

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  bottom: 10px;
}

.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: 0 0;
}

.bx-wrapper .bx-prev {
  background: url(../images/prev02.png) no-repeat 0 0;
  left: 696px;
}

.bx-wrapper .bx-next {
  background: url(../images/next02.png) no-repeat 0 0;
  right: 696px;
}

/* contents area */
.cnt_01 {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 10px;
}

.cnt_01.cf {
  display: flex;
  justify-content: space-between;
}

.mbtn01 {
  text-align: right;
}

.mbtn01 a {
  padding: 1px 3rem;
  border: 1px dotted #cfe9ef;
  color: #ffffff;
  display: inline-block;
  margin-top: 10px;
  background: #af9884;
}

.mbtn01 a:hover {
  background: #fff;
  color: #af9884;
  transition: color 0.3s;
}

/* main */
main {
  float: left;
  max-width: 70%;
  padding: 15px;
  background: #cee9ee;
  margin: 10px;
  border-radius: 10px;
}

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

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

.lcont01 img {
  float: left;
  max-width: 340px;
  margin-right: 10px;
}

article {
  margin-bottom: 30px;
}

/* おすすめリンク */
.lbox01 h3 a {
  display: block;
}

.lbox01 p {
  padding: 0 0 20px;
}

.lbox01 a {
  text-align: left;
}

/* aside */
aside {
  float: left;
  /*min-*/
  width: 22%;
  margin: 10px;
  padding: 15px;
  background: #cdefea;
  border-radius: 10px;
  position: sticky;
  top: 0;
  height: fit-content;
}

aside li>div {
  color: #9c9ec5;
  font-size: 21px;
  border-bottom: 2px dotted #eafdfb;
  margin-bottom: 10px;
}

aside a {
  padding: 10px 0;
}

aside a:hover {
  color: #fff;
  transition: color 0.3s;
}

aside img {
  float: left;
  max-width: 100px;
  margin: 0 10px 10px 0;
}

.silink01 a {
  margin-bottom: 10px;
}

/* footer */
footer {
  position: relative;
  background: #af9886;
  padding: 45px 20px;
  color: #fff;
  margin-top: 30px;
}

footer p {
  font-size: 21px;
}

footer a {
  color: #cfe9ef;
  font-size: 85%;
  border-bottom: 1px solid #cfe9ef;
  padding-bottom: 5px;
}

footer a:hover {
  color: #fff;
}

footer .cnt_01 {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 50px;
}

.ftcopy01 {
  font-size: 70%;
  text-align: center;
}

.tpbtn01 {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1;
}

.ftmenu01 {
  width: 27%;
  margin-right: 3%;
}

/* under */
.notfound {
  font-size: 200%;
  color: #fff;
}

/* pan nav */
.panav {
  margin: 5px 0 0 15px;
  font-size: 13px;
}

.panav a {
  display: inline;
  font-size: 85%;
}

.panav font {
  color: #ccc;
}

/* SNS */
.button-area {
  width: 100%;
  margin: 40px 0;
}

.sns-cnt_01 {
  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: #fceae8;
  color: #aea1af;
  font-size: 18px;
  width: 100%;
  padding: 0px 10px;
  margin-bottom: 10px;
  box-sizing: border-box;
  border-bottom: 1px dashed #aea1b0;
}

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

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

.button-link {
  display: block;
  text-align: center;
  color: #aea1af !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: #fff;
  border-left: 14px solid #00acee;
  color: #11abee;
}

#hatena {
  background-color: #fff;
  border-left: 15px solid #2d4c86;
  color: #2d4c86;
}

#facebook {
  background-color: #fff;
  border-left: 15px solid #3b5998;
  color: #3b5998;
}

#ggl-plus {
  background-color: #fff;
  border-left: 15px solid #dd4b39;
  color: #dd4b39;
}

.parent {
  max-width: 1120px;
  background: #fff;
  margin: 0 auto;
}

.fp {
  font-size: 21px;
  border-bottom: 1px dotted #fff;
  width: 60%;
}

.lbox01 {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

.lbox01 a {
  color: #af9884;
  font-size: 17px;
}

.lbox01 a::after {
  content: ">";
  margin-left: 10px;
}

.lbox01 a:hover {
  color: #e9fdfb;
  transition: color 0.3s;
}

.linksyu {
  color: #af9884;
  background: #fff3ce;
  font-weight: bold;
}

/*下層などflex内で要素が増える時*/
.cnt_01.cf:has(.panav) {
  flex-wrap: wrap;
}

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

/*パンくず*/