@charset "utf-8";
/*--****************************************

@style.css
Copyright (c) ULM Co.,Ltd. - http://www.ulm-design.com

*****************************************--*/

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* #wrapper::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: calc(100% - 20px);
  min-height: calc(100% - 20px);
  border: 2px solid #000;
  z-index: 0;
} */

#bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  overflow: hidden;
  background: #f6e8e6;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

#main {
  position: relative;
  min-width: 980px;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  background: #f6e8e6;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 230px 1fr;
  grid-template-columns: 230px 1fr;
  grid-template-areas:
    "head head"
    "left right"
    "foot foot";
}

#head-area {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: head;
  margin: 0 0 40px;
  display: flex;
  justify-content: center;
}

#left-area {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: left;
}

#right-area {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: right;
  margin: 0 0 0 50px;
}

#foot-area {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: foot;
  text-align: center;
}

@media all and (max-width:768px) {

  #head-area {
    -ms-grid-row: 1;
    -ms-grid-column: 1;

  }

  #left-area {
    -ms-grid-row: 2;
    -ms-grid-column: 1;

  }

  #right-area {
    -ms-grid-row: 3;
    -ms-grid-column: 1;

  }

  #foot-area {
    -ms-grid-row: 4;
    -ms-grid-column: 1;

  }

}

.head-img {
  width: 100%;
  max-width: 700px;
  padding: 20px 0 0;
}

.head-img img {
  width: 100%;
}


.link-btn {
  width: 180px;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  color: #fc937d;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  background: #fff;
  margin: 0 0 10px 25px;
  z-index: 1;
  transition: all 0.2s ease-out;
}

.link-btn:last-of-type {
  margin: 0 0 30px 25px;
}

.link-btn:hover {
  color: #fff;
  background: #fc937d;
}

.side-box {
  width: 230px;
  margin: 0 0 30px;
  z-index: 1;
  /* box-shadow:0px 0px 5px 2px rgba(235,110,143,0.07); */
  background: #fff;
}

.side-ttl {
  background: #fc937d;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px;
}

.side-box ul {
  padding: 10px;
}

.side-box input[type='checkbox'] {
  display: none;
}

.side-box li a {
  color: #444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 7px 0 7px 15px;
  line-height: 1.4;
  position: relative;
  transition: all 0.2s ease-out;
}

.side-box li a:hover {
  color: #fc937d;
}

.side-box li a::after {
  display: block;
  position: absolute;
  content: "";
  color: #fc937d;
  left: 0;
  width: 6px;
  height: 6px;
  background: #fc937d;
  border-radius: 100%;
}

.archive-ttl {
  font-weight: bold;
  margin: 0 0 20px;
  font-size: 22px;
  color: #444;
}

.detail-box {
  width: 100%;
  padding: 50px;
  margin: 0 0 30px;
  position: relative;
  background: #fff;
  /* border: 2px solid #000; */
  /* box-shadow:0px 0px 5px 2px rgba(235,110,143,0.07); */
}

.detail-box .date {
  color: #fc937d;
  font-size: 22px;
  font-weight: bold;
}

.detail-box .cat {
  color: #fc937d;
  border: 1px solid #fc937d;
  display: inline-block;
  background: #fff;
  ;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 50px;
  right: 50px;
  transition: all 0.2s ease-out;
}

.detail-box .cat:hover {
  background: #fc937d;
  color: #fff;
  ;
  cursor: pointer;
}

.detail-box .ttl {
  margin: 20px 0 30px;
  padding: 0 0 10px;
  /* border-bottom: 1px solid #000; */
  font-weight: bold;
  font-size: 28px;
  line-height: 1.4;
  color: #444;
}

.detail-box .ttl a {
  color: #444;
}

.detail-box .ttl a:hover {
  color: #fc937d;
}

.txt-area {
  font-size: 16px;
  line-height: 1.8;
}

.txt-area p {
  margin: 0 0 1em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.txt-area a {
  color: #fc937d;
}

.txt-area a:hover {
  text-decoration: underline;
}

.txt-area img,
.txt-area iframe {
  max-width: 100%;
  height: auto;
}

.screen-reader-text,
.page-numbers.next {
  display: none;
}


.page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0 40px;
}

.page-numbers li {
  width: 40px;
  height: 40px;
  margin: 0 5px;
  position: relative;
  z-index: 1;
}

.page-numbers li a,
.page-numbers li span {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50%;
  text-align: center;
  color: #fc937d;
  font-size: 18px;
  font-family: Arial, Helvetica, "sans-serif";
  padding: 10px 0;
  background: #fff;
  background-size: 4px 4px;
  border: 2px solid #fc937d;
  box-sizing: border-box;
  position: relative;
  transition: all 0.2s ease-out;
}

.page-numbers li span {
  background: #fc937d;
  color: #fff;
}

.page-numbers li a:hover {
  background: #fc937d;
  border: 1px solid #fc937d;
  color: #fff;
}

.cc {
  padding: 40px 20px;
  font-size: 10px;
  color: #000;
}

#page-top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 20px;
  right: 20px;
  background: #fc937d;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-out;
  z-index: 9999;
  cursor: pointer;
  opacity: 1;
}

#page-top:hover {
  opacity: 0.7 !important;
}

#page-top span {
  color: #fff;
  font-size: 28px;
  text-align: center;
}

#share-btn-list {
  justify-content: flex-end;
}

.share-txt {
  display: flex;
  align-items: center;
  color: #fc937d;
  font-weight: bold;
  font-size: 13px;
  margin: 0 10px 0 0;
}

.share-btn {
  width: 50px;
  height: 50px;
  /* background: #fff; */
  text-align: center;
  overflow: hidden;
  line-height: 50px;
  margin: 0;
  transition: all 0.2s ease-out;
}

.share-btn a {
  color: #fff;
  font-size: 25px;
  display: block;
  transition: all 0.2s ease-out;
}

#share-twitter a {
  color: #1da1f2;
}

#share-facebook a {
  color: #3b5998;
}

#share-line a {
  color: #00c300;
}

#share-twitter:hover a,
#share-facebook:hover a,
#share-line:hover a {
  color: #fc937d;
}

#control {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 33% 34% 33%;
  grid-template-columns: 33% 34% 33%;
  grid-template-areas: "prev list next";
  margin: 10px 0 0;
  padding: 30px 0 0;
}

.control-btn.prev {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: prev;
}

.control-btn.list {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: list;
  text-align: center;
}

.control-btn.next {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: next;
  text-align: right;
}

#control a {
  color: #fc937d;
  font-weight: bold;
  font-size: 14px;
  transition: all 0.2s ease-out;
  border: 1px solid;
  padding: 10px 20px;
}

#control a:hover {
  color: #fff;
  background: #fc937d;
}

@media all and (max-width:768px) {

  #wrapper::before {
    display: none;
  }

  #main {
    width: 100%;
    min-width: inherit;
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    grid-template-areas:
      "head"
      "left"
      "right"
      "foot";
    display: block;
  }

  #bg {
    position: fixed;
    height: 100%;
    min-height: 100vh;
    background: url(../img/bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }

  #head-area {
    height: auto;
    margin: 0;
  }

  #left-area {
    position: relative;
    height: 130px;
    margin: 20px 0 0;
  }

  #right-area {
    margin: 0;
    padding: 0 3%;

  }

  #foot-area {}

  .head-img {
    width: 100%;
    max-width: 700px;
  }

  .link-btn {
    width: 180px;
    height: 40px;
    font-size: 16px;
    font-weight: bold;
    color: #fc937d;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    background: #fff;
    margin: 0 auto;
    z-index: 1;
    transition: all 0.2s ease-out;
  }

  .link-btn:hover {
    color: #fff;
    background: #fc937d;
  }

  .side-link-wrap {
    display: flex;
    justify-content: center;
    padding: 0 5%;
  }

  .link-btn {
    margin: 0 5px !important;
  }

  .side-box {
    width: 100%;
    margin: 0 0 30px;
    z-index: 1;
    /* height: 40px; */
    top: 60px;
    box-shadow: none;
    position: absolute;
  }

  .side-ttl {
    font-size: 13px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: calc(100%/3);
    position: absolute;
    left: 0;
    border-right: 1px solid #fff;
  }

  .side-ttl.ttl-recent {
    left: calc(100%/3);
    border-right: 1px solid #fff;
  }

  .side-ttl.ttl-archive {
    left: calc(100%/3 * 2);
    border-right: none;
  }

  .side-ttl.active {
    background: #fff;
    color: #fc937d;
  }

  .side-box ul {
    background: #fff;
    padding: 0;
    position: absolute;
    top: 40px;
    width: 100%;
    height: 0;
    overflow: hidden;
  }

  .side-box li {
    border-bottom: 1px solid #fff;
    font-weight: bold;
  }

  .side-box li:last-child {
    border-bottom: none;
  }

  .side-box li a {
    padding: 15px 0 15px 15px;
    color: #000;
  }

  .side-box li a:hover {
    color: #fff;
  }

  .side-box li a::after {
    /* top: 18px;
    color: #b3900d; */
  }

  .side-box input[type='checkbox'] {
    display: block;
    position: absolute;
    opacity: 0;
    height: 35px;
    top: 0;
    left: 0;
    border: none;
    border-radius: 0;
  }

  .side-box input:checked+ul {
    height: auto;
    padding: 0 5%;
    background: #f6e8e6;
  }

  .archive-ttl {
    font-size: 18px;
    color: #444;
  }

  .detail-box {
    padding: 5vw;
    margin: 0 0 30px;
  }

  .detail-box .date {
    font-size: 14px;
  }

  .detail-box .cat {
    font-size: 12px;
    top: 5vw;
    right: 5vw;
  }

  .detail-box .ttl {
    margin: 20px 0;
    padding: 0 0 5px;
    font-size: 20px;
  }

  .detail-box .ttl a:hover {
    color: #fc937d;
  }

  .txt-area {
    font-size: 14px;
  }

  .txt-area a:hover {
    text-decoration: none;
  }

  .page-numbers {
    margin: 20px 0 30px;
  }

  .page-numbers li a:hover {
    background: #fff;
    border: 1px solid #fc937d;
  }

  #page-top {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }

  #page-top:hover {
    cursor: pointer;
    /* background: rgba(235,110,143,0.5); */
  }

  #page-top i {
    font-size: 24px;
  }

  #share-twitter:hover a {
    /* color: #1da1f2; */
  }

  #share-facebook:hover a {
    /* color: #3b5998; */
  }

  #share-line:hover {
    /* background: #00c300; */
  }

  #control a {
    font-size: 13px;
    padding: 6%;
  }

  #control a:hover {
    /* color: #000; */
  }




}


/*media*/
#media-header {
  text-align: center;
}

#media-main {
  position: relative;
  background: #f6e8e6;
}

#media-header .head-img {
  margin: 0 auto 20px;
}

#media-area {
  margin: 0 auto;
  padding: 20px 0 0;
  width: 90%;
  max-width: 960px;
  /* border-top: 2px solid #000; */
}

.media-nav {
  margin: 20px 0 20px;
}

.media-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.media-nav li {
  width: 25%;
  padding: 10px;
}

.media-nav a {
  width: 100%;
  height: 40px;
  font-size: 16px;
  font-weight: bold;
  color: #fc937d;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  background: #fff;
  z-index: 1;
  /* border-bottom: 3px solid #ffe6ea; */
  transition: all 0.2s ease-out;

}

.media-nav a:hover,
.media-nav a.active {
  color: #fff;
  background: #fc937d;
}

.media-list-header {
  color: #fff;
  font-weight: bold;
  background: #fc937d;
  display: flex;
  /* border-radius: 5px; */
  letter-spacing: 1px;
  padding: 2px 0;
}

.media-list-header dt {
  width: 13%;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid #fff;
}

.media-list-header dd {
  flex: 1;
  padding: 10px 30px;
}

.media-list {
  background: #ffffffb8;
  /* padding-bottom: 3%; */
}

.media-list-header dd.media-time {
  /* display: none; */
  width: 13%;
  flex: inherit;
  text-align: center;
  padding: 10px 20px;
  border-right: 1px solid #fff;
}

.media-item {
  display: flex;
  letter-spacing: 1px;
  padding: 10px 0;
  border-bottom: 1px solid #fc937d;
}

.media-list .media-item:last-child {
  border-bottom: none;
}

.media-item dt {
  width: 13%;
  text-align: center;
  padding: 10px 0;
  align-self: center;
  color: #444;
}

.media-item dt.tv-header {
  width: 24%;
}

.media-item dd {
  flex: 1;
  padding: 10px 30px;
  line-height: 1.4;
  align-self: center;
  color: #444;
}

.media-item dd.media-time {
  /* display: none; */
  width: 13%;
  flex: inherit;
  text-align: center;
  padding: 10px;
}

.media-time {
  padding: 5px 0 0;
}

.media-item a {
  color: #fc937d;
  text-decoration: underline;
  font-weight: bold;
}

.media-item a:hover {
  text-decoration: none;
}

.officialbtn {
  text-align: center;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

.officialbtn a {
  margin: 10px;
  width: 180px;
  height: 40px;
  font-size: 20px;
  font-size: 13px;
  font-weight: bold;
  color: #fc937d;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 3;
  background: #fff;
  z-index: 1;
  transition: all 0.2s ease-out;
}

.officialbtn a:hover {
  color: #fff;
  background: #fc937d;
}

.newmark {
  display: inline-block;
  background: #fc937d;
  padding: 2px 4px;
  border-radius: 4px;
  color: #fff;
  font-size: .8em;
  font-weight: bold;
}


@media all and (max-width:768px) {
  #media-area {
    margin: 0 auto;
    padding: 0;
  }

  .media-nav ul {
    flex-wrap: wrap;
    margin: 20px 0;
  }

  .media-nav li {
    width: 50%;
    padding: 5px;
  }

  .media-nav a {
    width: 100%;
    height: auto;
    font-size: 15px;
    margin: 0;
    padding: 10px;
  }

  .media-list-header {
    font-size: 10px;
  }

  .media-list-header dt {
    width: 23%;
    text-align: center;
    padding: 10px 0;
    border-right: 1px solid #fff;
  }

  .media-list-header dd {
    flex: 1;
    padding: 10px 10px;
    font-size: 12px;
  }

  .media-item dt {
    width: 23%;
    text-align: center;
    padding: 10px 0;
    font-size: 10px;
  }

  .media-item dd {
    flex: 1;
    padding: 8px 10px;
    font-size: 12px;
  }

  .media-list-header dd.media-time {
    width: 24%;
    padding: 10px 0;
    font-size: 10px;
  }

  .media-item dd.media-time {
    width: 24%;
    padding: 8px 0;
    font-size: 10px;
  }
}


/************************************
** video
************************************/
/*動画の最大幅を指定する*/
.video-container {
  max-width: 640px;
}

/*動画の大きさを調整*/
.video {
  position: relative;
  padding-bottom: 46.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

/*動画を囲んでいるdiv目一杯に広げる*/
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
