@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;
}

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

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

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

em {
  font-style: normal;
}

article ul {
  padding: 1em;
  margin: 1.5em 0;
  border: 2px solid #eed1d1;
}

article ul li {
  list-style-type: disc;
  list-style-position: inside;
}

article ol {
  counter-reset: counter-name;
  border: solid 2px #eed1d1;
  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;
}

blockquote {
  background: #f6e0e0;
  padding: 3em 1em;
  position: relative;
}

blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #a48989;
  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 #ccc;
  background: #fff1f5;
}

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

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

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

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

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

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

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

h2,
h3,
h4,
h5,
h6 {
  font-size: 140%;
  margin-bottom: 15px;
}

h2 {
  background: #fff1f5;
  padding: 12px 5px;
  border-bottom: 1px solid #ff6893;
  border-top: 2px solid #ff6893;
  color: #ff6893;
}

h3 {
  border-bottom: 2px solid #999;
  color: #ff6893;
  padding-bottom: 5px;
}

h4 {
  border-left: 3px solid #ff6893;
  padding-left: 6px;
}

h5 {
  background: rgba(255, 104, 147, 0.13);
  font-size: 120%;
  padding: 5px;
}

h6 {
  font-size: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

/* 下層用 */
.under h1 {
  background: #fff1f5;
  padding: 12px 5px;
  border-bottom: 1px solid #ff6893;
  border-top: 2px solid #ff6893;
  color: #ff6893;
  font-size: 140%;
  margin-bottom: 15px;
}

.under h2 {
  border-bottom: 2px solid #999;
  color: #ff6893;
  padding-bottom: 5px;
}

.under h3 {
  border-left: 3px solid #ff6893;
  padding-left: 6px;
  margin-top: 40px;
}


/* ///////////大コンテナ*/

.trs_con {
  max-width: 1060px;
  margin: 0 auto;
  /* overflow: hidden; */
  display: flex;
  justify-content: space-between;
}

/*文字色全変更*/
.con_wrap>* {
  color: #444;
}

/* ///////////左右コンテナ*/
.l_box {
  background: #fff;
  max-width: 740px;
  float: left;
  padding: 30px 50px;
}

.r_box {
  /*min-*/
  width: 300px;
  float: right;
  margin: 0 auto 30px;
  position: sticky;
  top: 0;
  height: fit-content;
}

/* ///////////メイン */

main {
  margin-bottom: 30px;
}

article {
  margin-bottom: 30px;
}

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

/*//////////////コンテンツ内容//////////*/

/* /////////ヘッダーエリア */

.trs_hd {
  width: 100%;
  margin: 15px auto;
  padding: 0;
  overflow: hidden;
}

.trs_hd.hoka_p {
  margin: 20px 0;
}

/*/////////ページタイトルのコンテナ*/

.trs_con .trs_title {
  margin: 30px 0;
  width: 400px;
  float: left;
}

.trs_hd.hoka_p .trs_con .trs_title {
  margin: 0;
  width: 100%;
  float: none;
}

.ttl_h a {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}

.trs_hd p.trs_cp {
  margin: 0 0 1em;
  font-size: 85%;
}

.trs_hd.hoka_p p.trs_cp {
  margin: 0 0 0.3em;
}

/*/////////スライダー*/

.trs_mainvisual {
  width: 600px;
  float: right;
}

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

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

/*/////////ヘッダーナビ*/
nav {}

.trs_nv>ul {
  max-width: 1060px;
  margin: 0 auto 15px;
  border: solid 1px #ff6893;
  display: flex;
  justify-content: space-around;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff9bb7+0,ff6893+100 */
  background: #ff9bb7;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ff9bb7 0%, #ff6893 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ff9bb7 0%, #ff6893 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ff9bb7 0%, #ff6893 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9bb7', endColorstr='#ff6893', GradientType=0);
  /* IE6-9 */
}

.trs_nv ul#trs_nv-menu>li {
  display: block;
  position: relative;
  font-size: 14px;
  text-align: center;
  margin: 3px 0;
  border-right: solid 1px rgba(255, 255, 255, 0.79);
  width: 25%;
}

.trs_nv ul#trs_nv-menu>li:last-child {
  border: none;
}

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

.slicknav_menu {
  display: none;
}

#trs_nv-menu li a {
  color: #fff;
  padding: 7px 0;
  display: block;
}

/*/////////下層リンク*/

.trs_lk img {
  max-width: 100%;
}

/*下層リンク*/

.trs_top {
  overflow: hidden;
  width: 100%;
}

.trs_top .trs_lk {
  width: 48%;
  float: left;
  margin: 0 4% 20px 0;
}

.trs_top .trs_lk:nth-of-type(2) {
  margin-right: 0;
}

.trs_top .trs_lk h2 {
  margin: 0 0 0.8em;
  padding: 5px 3px;
}

/*/////////もっと読むボタン*/

.trs_more {
  text-align: center;
  margin: 20px auto 0;
  overflow: hidden;
}

.trs_more a {
  padding: 0.3em;
  border: 1px solid #444;
  color: #444;
  width: 60%;
  float: right;
  display: block;
}

.trs_more a:hover {
  background: #666;
  color: #fff;
}

/* /////////aside */

aside {}

aside li>p {
  font-size: 16px;
  color: #ff6893;
  font-weight: bold;
  border-bottom: solid 1px #ccc;
}

aside a {
  padding: 10px 0;
}

aside img {
  float: left;
  max-width: 90px;
  margin-right: 5px;
}

.side-trs_con>li {
  margin: 0 0 30px;
}

/*/////////MENUリンク*/

.si_t {}

/*/////////NEW ENTRYリンク*/

.si_trs {}

.si_trs a {
  padding: 15px 0;
  overflow: hidden;
  border-bottom: solid 1px #ccc;
}

/*/////////おすすめリンク */

.trs_lbk {
  padding: 15px;
  border: solid 1px rgba(255, 104, 147, 0.3);
}

.trs_lbk h2 {
  background: none;
  padding: 10px;
  margin: 0 auto 15px;
  text-align: center;
  color: #ff6893;
}

.trs_lbk h3 {
  border: none;
  padding: 0;
  margin: 0 0 5px;
  position: relative;
}

.trs_lbk h3 a {
  background: #fff1f5;
  padding: 10px 5px;
  display: block;
}

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

.trs_lbk a {
  text-align: left;
}

.lbk_in {
  margin: 0 auto 20px;
}

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

/* /////////footer */

footer {
  position: relative;
  padding: 50px 0 10px;
}

footer .trs_con p {
  font-size: 16px;
  font-weight: bold;
}

footer a {
  font-size: 85%;
}

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

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

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

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

/* /////////under */

.trs_nf {
  font-size: 200%;
  color: #f4225d;
}

/* /////////pan nav */

.trs_pan {
  margin-bottom: 10px;
}

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

.trs_pan font {
  color: #ccc;
}

/* /////////SNS */

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

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

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

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

.ts_b {
  text-align: center;
  display: block;
  background: #fff1f5;
  color: #ff6893;
  font-size: 14px;
  font-weight: bold;
  width: 100%;
  padding: 6px 0;
  margin-bottom: 15px;
  box-sizing: border-box;
}

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

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

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

.ts_e {
  font-size: 14px !important;
  width: 100%;
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 12px 0 8px;
  text-decoration: none;
  transition: 0.4s;
}

.ts_e:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  top: 100%;
  left: 0;
  border-radius: 3px;
  background: #ffdae5;
  transition: 0.2s;
}

.ts_e:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  border-radius: 3px;
  background: #ffdae5;
  transition: 0.2s;
}

.ts_e:hover:before {
  top: -webkit-calc(100% - 3px);
  top: calc(100% - 3px);
}

.ts_e:hover:after {
  top: 3px;
}

/* SNSごとの背景色 */

#twitter {
  color: #00acee;
}

#hatena {
  color: #2d4c86;
}

#facebook {
  color: #3b5998;
}

#ggl-plus {
  color: #dd4b39;
}

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

p.trs_btn a {
  font-size: 30px;
  line-height: 50px;
  text-align: center;
  position: fixed;
  bottom: 18px;
  right: 0;
  z-index: 1;
  background: rgba(255, 104, 147, 0.6);
  width: 55px;
  height: 55px;
  color: #fff;
}

/*下層などflex内で要素が増える時*/
.trs_con.con_wrap.tr_cf:has(.trs_pan) {
  flex-wrap: wrap;
}

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

/*パンくず*/