@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_ctnm:after {
  content: "";
  clear: both;
  display: block;
}

body {
  background: #d4d2c7;
  font-size: 16px;
  line-height: 1.8;
  font-family: "Noto Sans Japanese", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3",
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    "ＭＳ\ Ｐゴシック", "sans-serif";
}

article ul {
  border-radius: 8px;
  padding: 0.5em 0 0.5em 1.5em;
  margin: 1.5em 0;
  background: #fdfaee;
}

article ul li {
  position: relative;
}

article ul li:before {
  content: "●";
  margin: 0 0.5em 0 0;
  color: #52d4ae;
}

article ol {
  border-radius: 8px;
  background: #fdfaee;
  counter-reset: counter-name;
  padding: 0.5em 0 0.5em 1.5em;
  margin: 1.5em 0;
}

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;
  font-weight: bold;
  color: #52d4ae;
}

blockquote {
  background: #eee;
  padding: 3em 1em;
  border-radius: 8px;
  position: relative;
}

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

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 #52d4ae;
  color: #46b595;
  background: -webkit-repeating-linear-gradient(-45deg,
      #ddfaf2,
      #ddfaf2 3px,
      #fff 3px,
      #fff 7px);
  background: repeating-linear-gradient(-45deg,
      #ddfaf2,
      #ddfaf2 3px,
      #fff 3px,
      #fff 7px);
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #52d4ae;
}

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 #666;
  margin: 1em 0;
  padding: 1em;
}

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

em {
  background: #eee;
  font-style: normal;
}

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

.alignleft {
  text-align: left;
}

.alignright {
  text-align: right;
}

a {
  color: #666;
  display: block;
}

a:hover {
  color: #52d4ae;
  opacity: 0.8;
  transition: 0.2s;
}

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 {
  border-radius: 8px;
  font-size: 150%;
  color: #46b595;
  font-weight: bold;
  text-shadow: 0 0 5px white;
  padding: 0.3em 0.5em;
  background: -webkit-repeating-linear-gradient(-45deg,
      #ddfaf2,
      #ddfaf2 3px,
      #fff 3px,
      #fff 7px);
  background: repeating-linear-gradient(-45deg,
      #ddfaf2,
      #ddfaf2 3px,
      #fff 3px,
      #fff 7px);
}

h3,
.under h2 {
  border-left: 3px solid #52d4ae;
  padding: 5px 0 5px 8px;
  font-size: 130%;
}

h4,
.under h3 {
  border-radius: 8px;
  background: rgba(82, 212, 174, 0.3);
  font-size: 125%;
  padding: 5px 8px;
}

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

h5 {
  font-size: 120%;
  padding-bottom: 5px;
  border-bottom: 1px dashed #52d4ae;
}

h6 {
  font-size: 100%;
  font-weight: bold;
}

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

.ctnm {
  max-width: 1050px;
  margin: 0 auto;
  padding: 25px 30px;
  background: #fff;
}

.cw_ctnm {
  border-top: 5px solid rgba(82, 212, 174, 0.3);
}

.cw_ctnm>* {
  color: #666;
}

.l_box {
  max-width: 72%;
  /*690px*/
  float: left;
}

@media (max-width: 750px) {
  .l_box {
    max-width: inherit;
  }
}

.r-box {
  /*min-*/
  width: 24%;
  /*260px*/
  float: right;
  margin: 0 auto 30px;
  position: sticky;
  top: 0;
  height: fit-content;
}

main {
  margin-bottom: 50px;
}

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

article {
  margin-bottom: 30px;
}

.flex,
.h_a_ctnm {
  display: flex;
  justify-content: space-between;
}

.h_a_ctnm {
  margin: 0 auto 40px;
}

.c_tit_ctnm {
  margin: 45px auto 0;
  max-width: 560px;
  float: right;
}

.stit_ctnm a {
  font-size: 40px;
  color: #52d4ae;
  line-height: 1.4;
}

.h_a_ctnm p.ccp_ctnm {
  font-size: 70%;
  color: #6c6666;
  margin: 15px 0 0;
}

.h_a_ctnm.snt_ctnm {
  width: 100%;
  margin: 0 0 30px;
  float: none;
}

.h_a_ctnm.snt_ctnm .c_tit_ctnm {
  margin: 0 0 25px;
  width: 100%;
  float: none;
}

.main_v_ctnm {
  float: left;
  /*min-*/
  width: 400px;
  position: relative;
  margin: 0 auto;
}

.bx-wrapper {
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 1px 1px 4px #bbb;
}

.bx-wrapper img {
  border-radius: 50%;
}

ul#gnv_ctnm-menu {
  margin: 30px auto 25px;
  overflow: hidden;
}

.gnv_ctnm>ul {
  display: flex;
  justify-content: space-around;
}

.gnv_ctnm ul#gnv_ctnm-menu>li {
  display: block;
  float: left;
  width: 24%;
}

.slicknav_menu {
  display: none;
}

#gnv_ctnm-menu li a {
  background: #52d4ae;
  display: block;
  padding: 10px 0;
  color: #fff;
  text-align: center;
  border-radius: 8px;
  font-size: 13px;
}

#gnv_ctnm-menu li a:hover {
  background: #9adcc8;
}

.bx-wrapper .bx-controls-direction a {
  display: none;
}

.l_k_ctnm img {
  box-shadow: 1px 2px 3px #bbb;
  display: block;
  margin: 0 auto 15px;
}

.t_l_k_ctnm {
  overflow: hidden;
  width: 100%;
  padding: 0 0;
  margin: 0 auto 30px;
}

.t_l_k_ctnm .l_k_ctnm {
  width: 48%;
  border: solid 1px #52d4ae;
  float: left;
  margin: 0 4% 4% 0;
  padding: 3%;
}

.t_l_k_ctnm .l_k_ctnm:nth-of-type(2n) {
  margin: 0 0 4% 0;
}

.t_l_k_ctnm .l_k_ctnm h2 {
  margin: 0 0 15px;
  padding: 0;
  background: none;
}

.more_ctnm {
  text-align: center;
  margin: 20px auto 0;
}

.more_ctnm a {
  padding: 0.5em;
  border: solid 2px #52d4ae;
  color: #52d4ae;
  width: 100%;
  border-radius: 8px;
  display: block;
}

.more_ctnm a:hover {
  background: #52d4ae;
  color: #fff;
  opacity: 1;
}

/* aside */

aside li>p {
  color: #52d4ae;
  font-weight: bold;
  font-size: 20px;
  padding: 0 0 0.3em;
  border-bottom: solid 2px #52d4ae;
}

aside a {
  padding: 15px 0;
}

aside a:hover {
  text-decoration: underline;
}

.side-ctnm>li {
  margin: 0 0 45px;
}

aside img {
  float: left;
  max-width: 70px;
  display: block;
  margin: 0 10px 0 0;
}

.si_a_ctnm {
  margin: 0;
}

.si_b_ctnm {
  margin: 0;
}

.si_b_ctnm a {
  overflow: hidden;
}

/* おすすめリンク */

.l_b_ctnm {
  border-radius: 8px;
  border: solid 1px #52d4ae;
  padding: 15px;
  margin: 0 auto 30px;
}

.l_b_ctnm h3 {
  padding: 0;
  border: none;
  margin: 0 0 2px;
  font-size: 125%;
}

.l_b_ctnm h3 a {
  display: block;
  border-radius: 8px;
  color: #52d4ae;
  padding: 0.4em 0.5em;
  background: #fdfaee;
  border: solid 1px #52d4ae;
}

.l_b_ctnm h3 a::before {
  content: "\f138";
  font-family: FontAwesome;
  margin: 0 0.5em 0 0;
}

.l_b_ctnm h3 a:hover {
  opacity: 1;
  background: #52d4ae;
  color: #fff;
}

.l_b_ctnm p {
  font-size: 90%;
}

.l_b_ctnm a {
  text-align: left;
}

.l_in_ctnm {
  margin: 0 0 3%;
}

.l_in_ctnm:last-child {
  margin: 0;
}

/* footer */

footer {
  position: relative;
  background: #52d4ae;
  margin: 0 auto 0;
  width: 1050px;
  padding: 30px 0 0;
}

footer .ctnm p {
  color: #fff;
  font-weight: bold;
  font-size: 110%;
  margin: 0 0 3%;
}

footer a {
  color: #fff;
  font-size: 80%;
  margin: 0 0 3%;
}

footer a:hover {
  text-decoration: none;
  color: #979cd4;
}

footer .ctnm {
  display: flex;
  flex-wrap: wrap;
  background: none;
  margin: 0 auto 50px;
}

.ftc_ctnm {
  font-size: 70%;
  color: #52d4ae;
  background: #d1f5ea;
  padding: 0.5em 2%;
  text-align: center;
}

.ftm_ctnm {
  float: left;
  width: 28%;
  padding: 0 0 0 1em;
  border-left: solid 1px #fff;
  margin-right: 2%;
}

/* under */

.n_f_ctnm {
  font-size: 190%;
  color: #ff87a7;
}

/* pan nav */

.pan_ctnm {
  margin-bottom: 20px;
  background: rgba(82, 212, 174, 0.15);
}

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

.pan_ctnm font {
  color: #ccc;
}

/* SNS */

.ctnm_sa {
  width: 100%;
  margin: 50px 0;
}

.ctnm_sb {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 auto;
}

.ctnm_sa>div {
  text-align: center;
}

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

.ctnm_sc {
  text-align: left;
  display: block;
  border-bottom: solid 1px #52d4ae;
  font-size: 14px;
  width: 100%;
  padding: 6px 0;
  margin-bottom: 3%;
  box-sizing: border-box;
}

.ctnm_sd {
  width: 25%;
  float: left;
  box-sizing: border-box;
  margin: 0;
}

.ctnm_sd .fa {
  font-weight: bold;
}

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

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

/* SNSごとの背景色 */

#twitter {
  background-color: rgba(0, 172, 238, 0.9);
}

#hatena {
  background-color: rgba(45, 76, 134, 0.9);
}

#facebook {
  background-color: rgba(59, 89, 152, 0.9);
}

#ggl-plus {
  background-color: rgba(221, 75, 57, 0.9);
}

/*/////////トップに戻るボタン*/

p.ctnm_bkt a {
  font-size: 30px;
  line-height: 45px;
  text-align: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
  border-radius: 8px;
  background: rgba(82, 212, 174, 0.74);
  border: solid 2px #fff;
  width: 55px;
  height: 55px;
  color: #fff;
}