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

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

body {
  font-family: "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3",
    Verdana, Geneva, Arial, sans-serif;
  color: #333;
  font-size: 12px;
  background-size: 100%;
  border-top: solid 4px #69d7d7;
}

del {
  text-decoration: line-through;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

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;
  padding: 1em;
}

strong {
  border-bottom: double 3px #329b9b;
}

em {
  color: #329b9b;
  border: dotted #ddd 1px;
  padding: 0 3px;
}

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

ins {
  display: inline-block;
  background: #d4efe8;
}

/*--- table*/
table {
  border-collapse: collapse;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 150px;
  padding: 10px;
  text-align: center;
  vertical-align: top;
  border: solid 1px #ddd;
  background: #d4efe8;
  font-weight: bold;
  color: #329b9b;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #ddd;
  font-size: 90%;
}

/*--- blockquote*/
blockquote {
  margin-bottom: 30px;
  padding: 2em;
  text-align: center;
  background: #d4efe8;
  font-family: "Sawarabi Mincho";
  font-size: 120%;
  position: relative;
  z-index: 1;
}

blockquote:before,
blockquote:after {
  font-size: 22px;
  line-height: 1em;
  color: #329b9b;
  font-family: FontAwesome;
  z-index: -1;
  text-shadow: none;
}

blockquote:before {
  content: "\f10d";
  position: absolute;
  left: 10px;
  top: 10px;
}

blockquote:after {
  content: "\f10e";
  position: absolute;
  right: 10px;
  bottom: 10px;
}

/*--- list ul*/
article ul {
  width: 100%;
  margin: 40px 0;
  border: solid 1px #ddd;

  background: #d4efe8;
  background: -moz-linear-gradient(top, #d4efe8 0%, #fff 100%);
  background: -webkit-linear-gradient(top, #d4efe8 0%, #fff 100%);
  background: linear-gradient(to bottom, #d4efe8 0%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d4efe8', endColorstr='#fff', GradientType=0);
}

article ul li {
  font-size: 12px;
  margin: 2em 10px;
  padding: 5px 10px;
  border: solid 1px #ddd;
  color: #329b9b;
  background: #fff;
}

article ul li:before {
  content: "\f067";
  font-family: FontAwesome;
  margin-right: 8px;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 40px 0;
  border: solid 1px #ddd;

  counter-reset: number;
  list-style-type: none !important;
  position: relative;
}

article ol li {
  margin: 1.5em 0;
  padding: 15px 0 15px 65px;

  list-style: none;
  position: relative;
}

article ol li:before {
  font-size: 12px;
  color: #329b9b;
  border: solid 1px #329b9b;
  font-weight: bold;

  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  display: inline-block;

  width: 20px;
  height: 20px;
  line-height: 20px;
  left: 35px;

  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--- layout ---*/
#media-wrap {
  max-width: 950px;
  margin: 0 auto 30px;
  /* overflow: hidden; */
  position: relative;
  display: flex;
  justify-content: space-between;
}

article {
  margin-bottom: 30px;
}

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

/*--- link*/
a {
  display: block;
  color: #333;
}

a:hover {
  color: #329b9b;
}

/*--- title ---*/
h1,
h2,
h3,
h4,
h5,
h6,
.under h1,
.under h2,
.under h3

/*, .ttl_h*/
  {
  line-height: 1.2;
  font-weight: 700;
  font-family: "Sawarabi Mincho";
}

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

h2,
.under h1 {
  font-size: 165%;
  padding: 8px 0;
  border-bottom: solid 2px #64cece;
}

h2:before,
.under h1::before {
  font-family: FontAwesome;
  content: "\f08d";
  font-weight: normal;
  color: #64cece;
  margin-right: 5px;
}

h3,
.under h2 {
  padding: 5px 10px;
  border: solid 3px #69d7d7;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 44%, #eeeeee 100%);
  background: -webkit-linear-gradient(top, #ffffff 44%, #eeeeee 100%);
  background: linear-gradient(to bottom, #ffffff 44%, #eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}

h4,
.under h3 {
  color: #329b9b;
  padding: 5px 0;
}

h4:before,
.under h3::before {
  content: "■";
  font-weight: normal;
  margin-right: 5px;
}

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

h5 {
  font-size: 110%;
  border: solid 1px #ddd;
  padding: 5px 10px;
}

h6 {
  font-size: 110%;
  padding: 5px 0px;
}

/*--- header ---*/
#media-hd {
  width: 100%;
  margin-bottom: 20px;
  border-bottom: solid 30px #f2f3f3;
  font-family: "Sawarabi Mincho";
  font-weight: 600;
}

.media-lower #media-hd {
  margin-bottom: 0;
}

.media-hdIn {
  max-width: 950px;
  height: fit-content;
  /*53px*/
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.media-hdTtl {
  max-width: 50%;
  /*570px*/
  float: left;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 716px) {
  .media-hdTtl {
    max-width: inherit;
  }
}

/*--- h1*/
h1 a,
.ttl_h a {
  font-size: 110%;
  padding-top: 3px;
  letter-spacing: -0.1em;
  color: #000;
  line-height: 1.3;
}

h1 a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*--- headCopy*/
.media-cp {
  color: #329b9b;
  padding-top: 8px;
  font-size: 75%;
}

/*--- headNav ---*/
#media-hdnv {
  /*min-*/
  width: 50%;
  /*370px*/
  position: absolute;
  top: -4px;
  right: 0;
  z-index: 999;
}

.media-nvIn {
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}

.media-nvIn li {
  width: 25%;
  float: left;
}

.media-nvIn li:nth-of-type(1) a {
  border-left: solid 1px rgba(3, 3, 3, 0.1);
}

.media-nvIn li a {
  font-size: 90%;
  font-weight: 700;
  padding: 20px 0;
  position: relative;
  border-right: solid 1px rgba(3, 3, 3, 0.1);
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 44%, #eeeeee 100%);
  background: -webkit-linear-gradient(top, #ffffff 44%, #eeeeee 100%);
  background: linear-gradient(to bottom, #ffffff 44%, #eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}

.media-nvIn li a:hover {
  position: relative;
  background: #ffffff;
  background: -moz-linear-gradient(top, #f4f4f4 20%, #fff 100%);
  background: -webkit-linear-gradient(top, #f4f4f4 20%, #fff 100%);
  background: linear-gradient(to bottom, #f4f4f4 20%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#fff', GradientType=0);
}

.media-nvIn li a:hover:after {
  display: block;
  position: absolute;
  bottom: 2px;
  right: 2px;
  border-left: 7px solid transparent;
  border-bottom: 7px solid #dadc6b;
  content: "";
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
#media-mainvisual {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.media-slider {
  width: 100%;
  position: relative;
  left: 50%;
  margin-left: -475px;
}

.bx-wrapper {
  max-width: 100% !important;
  margin: 0 auto;
  position: relative;
  border: none;
  box-shadow: none;
}

.media-mainvisual .bx-viewport {
  height: auto !important;
}

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

/*--- mainArea ---*/
#media-main {
  max-width: 74%;
  float: left;
}

#media-main article {
  padding: 2%;
  overflow: hidden;
}

/*--- 下層リンク ---*/
.media-lk h2 {
  border: 0;
  border-bottom: solid 1px rgba(3, 3, 3, 0.1);
}

.media-lk h2:before {
  display: none;
}

.media-lk {
  position: relative;
  border: solid 1px rgba(3, 3, 3, 0.1);
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 20%, #f5f5f5 100%);
  background: -webkit-linear-gradient(top, #ffffff 20%, #f5f5f5 100%);
  background: linear-gradient(to bottom, #ffffff 20%, #f5f5f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0);
  overflow: hidden;
}

.media-lk img {
  margin-bottom: 0;
}

/*--- 1col*/
section>.media-lk img {
  width: 52%;
  float: left;
}

section>article.media-lk div {
  width: 46%;
  float: right;
}

/*--- 2col*/
.media-sec {
  width: 100%;
  overflow: hidden;
}

.media-sec .media-lk {
  width: 49%;
  float: left;
}

.media-sec .media-lk:nth-of-type(2) {
  float: right;
}

/*--- readMore*/
.media-more {
  width: 100%;
  text-align: right;
  margin-top: 1em;
  border-top: solid 1px rgba(3, 3, 3, 0.1);
}

.media-more a {
  padding-top: 15px;
  line-height: 20px;
  display: inline-block;
  vertical-align: middle;
}

.media-more a:before {
  font-family: FontAwesome;
  content: "\f101";
  margin-right: 5px;
  margin-bottom: 8px;
  color: #e3e3e3;
  font-size: 50px;
  display: inline-block;
  vertical-align: middle;
}

.media-more a:hover:before {
  color: #329b9b;
}

/*--- recommend ---*/
#media-rc {
  overflow: hidden;
  padding: 15px 0;
  border: solid 1px #ddd;
  background: #d4efe8;
  background: -moz-linear-gradient(top, #d4efe8 0%, #fff 100%);
  background: -webkit-linear-gradient(top, #d4efe8 0%, #fff 100%);
  background: linear-gradient(to bottom, #d4efe8 0%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d4efe8', endColorstr='#fff', GradientType=0);
}

/*--- h3_link*/
.media-rcIn {
  width: 100%;
  margin-bottom: 15px;
}

.media-rcIn h3 {
  border: none;
  padding: 0;
  margin: 0;
  background: none;
}

.media-rcIn h3 a {
  padding: 20px;
  border: solid 3px #69d7d7;
  position: relative;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 44%, #eeeeee 100%);
  background: -webkit-linear-gradient(top, #ffffff 44%, #eeeeee 100%);
  background: linear-gradient(to bottom, #ffffff 44%, #eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}

.media-rcIn h3 a:after {
  font-family: FontAwesome;
  content: "\f0da";
  color: #333;
  position: absolute;
  right: 20px;
}

.media-rcIn h3 a:hover:after {
  color: #dadc6b;
}

.media-rcIn h3 a:hover {
  border: solid 3px #dadc6b;
  background: #ffffff;
  background: -moz-linear-gradient(top, #f4f4f4 20%, #fff 100%);
  background: -webkit-linear-gradient(top, #f4f4f4 20%, #fff 100%);
  background: linear-gradient(to bottom, #f4f4f4 20%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#fff', GradientType=0);
}

.media-rcIn p {
  margin: 5px auto 0;
  text-align: right;
  font-size: 90%;
}

/*--- aside ---*/
#media-side {
  min-width: 24%;
  float: right;
  font-family: "Sawarabi Mincho";
  position: sticky;
  top: 0;
  height: fit-content;
}

aside dl {
  margin-bottom: 30px;
  padding: 2%;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

aside dt {
  font-size: 100%;
  font-weight: 700;
  padding: 0 8px;
  line-height: 18px;
}

aside dt:before {
  font-family: FontAwesome;
  content: "\f08d";
  font-weight: normal;
  color: #64cece;
  font-size: 18px;
  margin-right: 5px;
}

aside dd {
  font-size: 90%;
  margin: 6px auto;
}

/*--- 上block*/
aside .side-media-1 dd a {
  text-align: center;
  padding: 5px;
  border: solid 3px #69d7d7;
  position: relative;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 44%, #eeeeee 100%);
  background: -webkit-linear-gradient(top, #ffffff 44%, #eeeeee 100%);
  background: linear-gradient(to bottom, #ffffff 44%, #eeeeee 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
}

aside .side-media-1 dd a:after {
  font-family: FontAwesome;
  content: "\f0da";
  color: #333;
  position: absolute;
  top: 30%;
  right: 10px;
}

aside .side-media-1 dd a:hover:after {
  color: #dadc6b;
}

aside .side-media-1 dd a:hover {
  border: solid 3px #dadc6b;
  background: #ffffff;
  background: -moz-linear-gradient(top, #f4f4f4 20%, #fff 100%);
  background: -webkit-linear-gradient(top, #f4f4f4 20%, #fff 100%);
  background: linear-gradient(to bottom, #f4f4f4 20%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#fff', GradientType=0);
}

/*--- 下block*/
aside .side-media-2 dd {
  background: #000;
  position: relative;
  box-sizing: border-box;
}

aside .side-media-2 dd p {
  width: 100%;
  position: absolute;
  top: 43%;
  color: #fff;
  text-align: center;
}

aside .side-media-2 dd:before {
  font-family: FontAwesome;
  content: "\f103";
  font-size: 30px;
  color: #fff;
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}

aside .side-media-2 dd img {
  width: 100%;
  opacity: 0.8;
}

aside .side-media-2 dd a:hover img {
  opacity: 0.5;
}

aside .side-media-2 a {
  border: solid 4px #69d7d7;
}

aside .side-media-2 a:hover {
  border: solid 4px #dadc6b;
}

/*--- footer ---*/
#media-ft {
  width: 100%;
}

#media-ft ul {
  background: #f2f3f3;
}

footer dl {
  width: 950px;
  margin: 0 auto;
  overflow: hidden;
}

footer ul li {
  width: 100%;
}

footer dt {
  width: 80px;
  text-align: right;
  font-weight: bold;
  margin: 10px;
  display: inline-block;
}

footer dd {
  font-size: 90%;
  display: inline-block;
}

footer dd a:hover {
  text-decoration: underline;
  background: none;
}

footer dd a:before {
  content: "|";
  margin: 0 5px;
  font-size: 120%;
  display: inline-block;
  text-decoration: none;
}

footer dd a:hover:before {
  color: #333;
}

/*--- footCopy*/
.media-fc {
  width: 100%;
  padding: 30px 0;
  margin: 0 auto;
  font-size: 75%;
  text-align: center;
}

/*--- 404*/
.media-nf {
  margin-top: 20px;
}

.media-nf b {
  font-family: "Sawarabi Mincho";
  font-size: 370%;
  color: #329b9b;
}

/*--- pan*/
.media-pan {
  width: 950px;
  margin: 10px auto;
}

.media-pan a {
  display: inline;
  padding: 0 8px;
  font-size: 85%;
}

/*--- SNS ---*/
#media-sns {
  width: 300px;
  position: absolute;
  top: 10px;
  right: 0;
}

.media-snsIn {
  overflow: hidden;
}

.media-snsIn dd {
  width: 25%;
  font-size: 11px;
  margin: 0 auto;
  float: left;
  display: block;
  text-align: center;
  text-decoration: none;
  border-left: 0;
}

.media-snsIn dd a {
  width: 92%;
  margin: 0 auto;
  padding: 5px 0;
  color: #fff;
  background: #28aae1;
  position: relative;
  border-radius: 4px;
}

.media-snsIn dd a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*--- 個別*/
#tw {}

#fb {
  background: #041d4d;
}

#ggl {
  background: #dd4b39;
}

#ht {
  background: #3b5998;
}

.media-snsIn .fab {}

/*--- topPage*/
.media-btn a {
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;

  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;

  font-size: 9px;
  border-radius: 50%;
  background: #329b9b;
}

.media-btn a:before {
  display: block;
  font-family: FontAwesome;
  content: "\f106";
  font-size: 46px;
  color: #fff;
}

.media-btn a:hover {
  background: #e4007f;
}

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

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

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

/*パンくず*/