@import "reset.css";
html {
  font-size: 62.5%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  box-sizing: border-box;
  color: #000;
  line-height: 1.5;
  overflow-y: scroll;
  min-height: 100%;
  display: block;
}
body {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
a:hover {
  color: #FF6600;
}
input,
select,
textarea {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  -webkit-appearance: none;
  border-radius: 0;
}
input::placeholder {
  color: #888888;
}
/* For modern browsers */
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
/* 表示/非表示 */
.pcHdn {
  display: none;
}
.spHdn {
  display: block;
}
/* Fonts */
.font-ug {
  font-weight: 700;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}
.tate {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: 'vpal';
  -ms-font-feature-settings: 'vpal';
  -o-font-feature-settings: 'vpal';
  font-feature-settings: 'vpal';
}
.bold {
  font-weight: bold;
}
/* 見出し */
.hdg_tit01 {
  font-size: 2.6rem;
  line-height: 1;
  height: 228px;
  position: relative;
}
.hdg_tit01.tit_instagram {
  width: 1.6rem;
  height: 3.2rem;
  font-size: 3.2rem;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  top: 0;
  left: 50%;
}
.hdg_tit01 .inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 80%;
}
.hdg_tit01 .inner.w2 {
  height: 7.2rem;
}
.hdg_tit01 .inner.w2 span {
  margin-bottom: 2.6rem;
}
.hdg_tit01 .inner.w5 {
  height: 15rem;
}
.hdg_tit01 .inner.w5 span {
  margin-bottom: 0.5rem;
}
.hdg_tit01 .inner.w9 {
  width: 19rem;
}
.hdg_tit01 .inner span {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  margin: 0 auto;
}
.hdg_tit01 .inner span:last-of-type {
  margin-bottom: 0;
}
.hdg_tit02 {
  position: relative;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
}
.hdg_tit02::before {
  position: relative;
  display: block;
  content: "";
  width: auto;
  height: 2px;
  background: #000;
  top: 7px;
  left: 0;
}
.hdg_tit02 span {
  position: relative;
  display: inline-block;
  height: 16px;
  background: #FFF;
  padding: 0 20px;
  z-index: 20;
}
/* 一覧をみる */
.more_list {
  padding: 15px 0 0;
  text-align: right;
}
.more_list a {
  position: relative;
  display: inline-block;
  padding: 0 15px 0 0;
  vertical-align: middle;
  font-size: 1.2rem;
}
.more_list a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.more_list a:hover::after {
  border-top: 1px solid #FF6600;
  border-right: 1px solid #FF6600;
}
/* もっとみる */
.more_info {
  width: auto;
}
.more_info a {
  display: block;
  padding: 10px 0;
  font-weight: bold;
  text-align: center;
  border: solid 2px #e4e4e4;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* フェードインアニメーション */
.fadeInUp {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  visibility: visible !important;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* アイテムを左から順番に表示アニメーション */
.bf {
  opacity: 0;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
}
.bf.active:nth-child(1) {
  -webkit-animation: bookfade 0.4s ease 0.15s 1 forwards;
  animation: bookfade 0.4s ease 0.15s 1 forwards;
}
.bf.active:nth-child(2) {
  -webkit-animation: bookfade 0.4s ease 0.3s 1 forwards;
  animation: bookfade 0.4s ease 0.3s 1 forwards;
}
.bf.active:nth-child(3) {
  -webkit-animation: bookfade 0.4s ease 0.45s 1 forwards;
  animation: bookfade 0.4s ease 0.45s 1 forwards;
}
.bf.active:nth-child(4) {
  -webkit-animation: bookfade 0.4s ease 0.6s 1 forwards;
  animation: bookfade 0.4s ease 0.6s 1 forwards;
}
.bf.active:nth-child(5) {
  -webkit-animation: bookfade 0.4s ease 0.75s 1 forwards;
  animation: bookfade 0.4s ease 0.75s 1 forwards;
}
.bf.active:nth-child(6) {
  -webkit-animation: bookfade 0.4s ease 0.9s 1 forwards;
  animation: bookfade 0.4s ease 0.9s 1 forwards;
}
.bf.active:nth-child(7) {
  -webkit-animation: bookfade 0.4s ease 1.05s 1 forwards;
  animation: bookfade 0.4s ease 1.05s 1 forwards;
}
.bf.active:nth-child(8) {
  -webkit-animation: bookfade 0.4s ease 1.2s 1 forwards;
  animation: bookfade 0.4s ease 1.2s 1 forwards;
}
.bf.active:nth-child(9) {
  -webkit-animation: bookfade 0.4s ease 1.35s 1 forwards;
  animation: bookfade 0.4s ease 1.35s 1 forwards;
}
.bf.active:nth-child(10) {
  -webkit-animation: bookfade 0.4s ease 1.5s 1 forwards;
  animation: bookfade 0.4s ease 1.5s 1 forwards;
}
.bf.active:nth-child(11) {
  -webkit-animation: bookfade 0.4s ease 1.65s 1 forwards;
  animation: bookfade 0.4s ease 1.65s 1 forwards;
}
.bf.active:nth-child(12) {
  -webkit-animation: bookfade 0.4s ease 1.8s 1 forwards;
  animation: bookfade 0.4s ease 1.8s 1 forwards;
}
.bf.active:nth-child(13) {
  -webkit-animation: bookfade 0.4s ease 1.95s 1 forwards;
  animation: bookfade 0.4s ease 1.95s 1 forwards;
}
.bf.active:nth-child(14) {
  -webkit-animation: bookfade 0.4s ease 2.1s 1 forwards;
  animation: bookfade 0.4s ease 2.1s 1 forwards;
}
.bf.active:nth-child(15) {
  -webkit-animation: bookfade 0.4s ease 2.25s 1 forwards;
  animation: bookfade 0.4s ease 2.25s 1 forwards;
}
.bf.active:nth-child(16) {
  -webkit-animation: bookfade 0.4s ease 2.4s 1 forwards;
  animation: bookfade 0.4s ease 2.4s 1 forwards;
}
.bf.active:nth-child(17) {
  -webkit-animation: bookfade 0.4s ease 2.55s 1 forwards;
  animation: bookfade 0.4s ease 2.55s 1 forwards;
}
.bf.active:nth-child(18) {
  -webkit-animation: bookfade 0.4s ease 2.7s 1 forwards;
  animation: bookfade 0.4s ease 2.7s 1 forwards;
}
.bf.active:nth-child(19) {
  -webkit-animation: bookfade 0.4s ease 2.85s 1 forwards;
  animation: bookfade 0.4s ease 2.85s 1 forwards;
}
.bf.active:nth-child(20) {
  -webkit-animation: bookfade 0.4s ease 3s 1 forwards;
  animation: bookfade 0.4s ease 3s 1 forwards;
}
.bf.active:nth-child(n+21) {
  -webkit-animation: bookfade 0.4s ease 4s 1 forwards;
  animation: bookfade 0.4s ease 4s 1 forwards;
}
@-webkit-keyframes bookfade {
  100% {
    opacity: 1;
  }
}
@keyframes bookfade {
  100% {
    opacity: 1;
  }
}
.moreLink {
  background-color: #000;
  color: #fff;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid #000;
  border-radius: 50px;
  width: 190px;
  margin: 50px auto 0;
}
.moreLink:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}
.moreOverlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}
.moreOverlay .cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.moreOverlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px transparent solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
/* PAGE TOP */
.btn_pagetop {
  width: 12px;
}
.page-wrap {
  position: relative;
  padding-top: 189px;
}
#contents {
  width: 1100px;
  margin: 0 auto;
  padding-bottom: 100px;
}
#btn-pagetop {
  display: none;
  position: fixed;
  right: 60px;
  bottom: 345px;
  z-index: 1000;
  width: 12px;
  margin-left: 1174px;
}
#btn-pagetop svg {
  width: 13px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#btn-pagetop svg:hover {
  fill: #FF6600;
}
#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 187px;
  border-bottom: 2px solid #000;
  background: rgba(255, 255, 255, 0.9);
  z-index: 300;
}
#header > .inner {
  margin: 0 auto;
  padding: 60px 60px 60px 58px;
  box-sizing: border-box;
}
#header > .inner:after {
  content: "";
  display: block;
  clear: both;
}
#header .logo {
  float: left;
  width: 147px;
  height: 67px;
}
#header .logo a:hover {
  opacity: 0.5;
}
#header .daiwalog a:hover {
  opacity: 0.5;
}
#header .daiwalog img {
  border-right: 2px solid #e4e4e4;
  padding-right: 20px;
  max-width: 120px;
}
@media (max-width: 1025px) {
  #header .daiwalog {
    order: 1;
  }
  #header .daiwalog img {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  #header .daiwalog img {
    max-width: 100px;
  }
}
@media (max-width: 480px) {
  #header .daiwalog {
    width: 95px;
  }
  #header .daiwalog img {
    max-width: 80px;
  }
}
@media (max-width: 375px) {
  #header .daiwalog {
    width: 80px;
  }
  #header .daiwalog img {
    max-width: 65px;
    padding-right: 16px;
    padding-top: 5px;
  }
}
@media (max-width: 280px) {
  #header .daiwalog {
    width: 60px;
  }
  #header .daiwalog img {
    max-width: 50px;
    padding-right: 11px;
  }
}
#header .right {
  float: right;
  display: flex;
}
#header .right:after {
  content: "";
  display: block;
  clear: both;
}
@media (max-width: 1025px) {
  #header .right .pcHdn {
    order: 2;
  }
}
@media (max-width: 1025px) {
  #header .right aside {
    display: none;
  }
}
#header .search {
  position: relative;
  float: left;
  height: 60px;
  width: 70px;
  text-align: right;
}
@media (max-width: 1025px) {
  #header .search {
    display: none;
    width: auto;
  }
}
#header .search .form_wrap {
  position: absolute;
  right: 0;
}
#header .search .form_wrap a {
  position: absolute;
  left: -20px;
  width: 16px;
  height: 16px;
  z-index: 100;
}
#header .search .form_wrap > div {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
}
#header .search input.search_input {
  width: 0px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 0;
  padding: 7px 0 7px 0;
  border-bottom: 1px solid #000;
  font-size: 1rem;
}
#header .search .searchsubmit {
  display: none;
  position: absolute;
  padding: 0 0 0 10px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
  background-image: url(../images/org/common/arrow_r-pc.png);
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: 6px 10px;
  border: none;
  top: 7px;
  right: -3px;
  cursor: pointer;
}
#header .search .search_open {
  width: 350px !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#header .search .search_open.search_input {
  padding: 7px 0 ;
}
#header .search .btn {
  position: absolute;
  width: 50px;
  top: 45px;
  right: 0;
  font-size: 1.1rem;
  padding-right: 15px;
  z-index: 100;
  cursor: pointer;
}
#header .search .btn:after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 2px;
  top: 2px;
}
#header .search .btn.open {
  position: relative;
  float: right;
}
#header .search .btn.open:after {
  position: absolute;
  -webkit-transform: rotate(-45deg) !important;
  transform: rotate(-45deg) !important;
  top: 6px !important;
}
#header .nav {
  float: left;
  width: 196px;
  margin-left: 20px;
}
#header .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  display: inline-block;
  float: right;
}
#header .nav ul .gl-item {
  font-size: 1.6rem;
  padding-left: 20px;
  line-height: 1.33333;
  white-space: nowrap;
}
#header .nav ul .gl-item a.current {
  color: #ff6600;
}
#header .nav ul .gl-item a > span {
  letter-spacing: -0.08em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  line-height: inherit;
  display: inline-block;
  letter-spacing: -0.05em !important;
}
#header #searchBox {
  position: absolute;
  top: 27px;
  right: -20px;
  background: #FFF;
  box-sizing: border-box;
  width: 365px;
  border: solid 1px #e4e4e4;
  padding: 45px 20px 20px;
  text-align: left;
  /* css checkbox */
  /* .cb-input:checked + .cb-txt::after{
			content: "";
			display: block;
			position: absolute;
			top: -2px;
			left: 7px;
			width: 7px;
			height: 14px;
			transform: rotate(40deg);
			border-bottom: 2px solid #000;
			border-right: 2px solid #000;
		} */
}
#header #searchBox input,
#header #searchBox select {
  width: 100%;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  margin: 0;
  padding: 0 0.8em;
  border: 1px solid #ccc;
}
#header #searchBox input::placeholder,
#header #searchBox select::placeholder {
  font-size: 0.6rem;
}
#header #searchBox select {
  background: url(../images/org/common/arrow_down.png) no-repeat;
  background-size: 11px 11px;
  background-position: right 10px top 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  font-size: 1.1rem;
}
#header #searchBox option {
  width: 100px !important;
}
#header #searchBox button {
  width: 100%;
  height: 40px;
  line-height: 40px;
  font-size: 1.1rem;
  color: #FFF;
  background: #000;
  border: none;
}
#header #searchBox button.submit {
  background: url('../images/org/common/btn_search-w.png') no-repeat #000;
  background-size: 12px 12px;
  background-position: right 15px top 15px;
  cursor: pointer;
}
#header #searchBox .cb-input {
  display: none;
}
#header #searchBox .cb-txt {
  padding-left: 23px;
  position: relative;
  font-size: 1.1rem;
  line-height: 20px;
  margin-right: 0;
}
#header #searchBox .cb-txt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #e4e4e4;
}
#header #searchBox .cb-input:checked + .cb-txt {
  color: #000;
}
#header #searchBox .cb-input:checked + .cb-txt::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 7px;
  width: 5px;
  height: 11px;
  transform: rotate(40deg);
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}
#header #searchBox .title {
  display: block;
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 40px;
}
#header #searchBox select,
#header #searchBox .label_wrap,
#header #searchBox .txtbox {
  position: absolute;
  width: 264px;
}
#header #searchBox select label,
#header #searchBox .label_wrap label,
#header #searchBox .txtbox label {
  padding-right: 20px;
}
#header #searchBox .block01 {
  overflow: hidden;
  margin-bottom: 20px;
}
#header #searchBox .block01 input {
  width: 78%;
  float: left;
}
#header #searchBox .block01 button {
  width: 20%;
  float: right;
}
#header #searchBox .block02 {
  position: relative;
  height: 86px;
}
#header #searchBox .block02 select {
  top: 0;
  left: 60px;
}
#header #searchBox .block02 .label_wrap {
  top: 47px;
  left: 60px;
}
#header #searchBox .block03 {
  position: relative;
  height: 86px;
}
#header #searchBox .block03 select {
  top: 0;
  left: 60px;
}
#header #searchBox .block03 .label_wrap {
  top: 47px;
  left: 60px;
}
#header #searchBox .block05 {
  position: relative;
  margin-bottom: 10px;
}
#header #searchBox .block05 .txtbox {
  top: 0;
  left: 60px;
}
#header #searchBox .block06 {
  position: relative;
  margin-bottom: 10px;
}
#header #searchBox .block06 .txtbox {
  top: 0;
  left: 60px;
}
#header #searchBox .block07 {
  position: relative;
}
#header #searchBox .block07 p {
  line-height: initial;
  padding: 8px 0;
}
#header #searchBox .block07 p span {
  display: block;
  font-size: 0.7rem;
  font-weight: normal;
}
#header #searchBox .block07 .txtbox {
  top: 0;
  left: 60px;
}
#header #searchBox .block04 {
  margin-bottom: 20px;
}
#header .fadeIn {
  display: block !important;
  opacity: 1;
  animation-duration: 0.5s;
  animation-name: fade-in;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
#footer {
  border-top: 2px solid #000;
}
#footer > .inner {
  position: relative;
  margin: 0 auto;
  padding: 60px;
  box-sizing: border-box;
}
#footer .logo {
  width: 118px;
  height: 54px;
  margin-bottom: 50px;
}
#footer .logo a:hover {
  opacity: 0.5;
}
#footer .footnav {
  position: absolute;
  top: 60px;
  right: 60px;
}
#footer .footnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  display: inline-block;
  float: right;
}
#footer .footnav ul .sub-item {
  font-size: 1.6rem;
  padding-left: 20px;
  line-height: 1.33333;
  white-space: nowrap;
}
#footer .footnav ul .sub-item a > span {
  letter-spacing: -0.08em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  line-height: inherit;
  display: inline-block;
  letter-spacing: -0.05em !important;
}
#footer .site_info .address {
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: inline-block;
  float: left;
}
#footer .site_info .tel {
  font-size: 1.2rem;
  margin-bottom: 5px;
  margin-left: 20px;
  display: inline-block;
  float: left;
}
#footer .site_info .copy {
  font-size: 1rem;
  color: #888888;
  clear: both;
}
#sidebar {
  position: fixed;
  width: 300px;
  height: 100%;
  z-index: 200;
  border-left: solid 2px #000;
  top: 0;
  right: 0;
  -ms-overflow-style: none;
}
#sidebar .sidebar_content {
  width: 300px;
  height: 2000px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
#sidebar .sidebar_content::-webkit-scrollbar {
  display: none;
}
#sidebar .tit_twitter {
  position: relative;
  margin: 85px 0 43px;
  padding-top: 20px;
  font-size: 2.6rem;
  text-align: center;
}
#sidebar .tit_twitter:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 24px;
  background: url(../images/org/common/icon_twitter.svg) no-repeat left top;
  top: -24px;
  left: 47%;
}
#sidebar .twitter_wrap {
  overflow-y: scroll;
  width: 300px;
  height: 800px;
}
#sidebar .twitter_wrap::-webkit-scrollbar {
  display: none;
}
#sidebar .block {
  margin: 0 30px;
  padding: 30px 0;
  border-top: solid 2px;
}
#sidebar .block dl {
  margin-bottom: 30px;
}
#sidebar .block dl .ph {
  width: 100%;
  margin-top: 15px;
}
#sidebar .block dl .user {
  margin-bottom: 5px;
  line-height: 1.2;
}
#sidebar .block dl dt {
  position: relative;
  margin: 0 0 30px;
  overflow: hidden;
}
#sidebar .block dl dt .user {
  width: 180px;
  float: left;
}
#sidebar .block dl dt .user.account {
  margin-bottom: 0;
  clear: both;
}
#sidebar .block dl dt .text {
  margin-top: 0;
  margin-bottom: 30px;
}
#sidebar .block dl dt .date {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  text-align: right;
}
#sidebar .block dl dd {
  word-break: break-all;
}
#sidebar .block dl dd .user .account {
  margin-bottom: 15;
}
#sidebar .block dl dd .text {
  margin-top: 10px;
}
#sidebar .block dl dd .inner.quoted,
#sidebar .block dl dd .inner.retweet {
  border: solid #ccc 1px;
  padding: 10px;
  border-radius: 10px;
}
#sidebar .block dl dd .inner.quoted {
  margin-top: 10px;
}
#sidebar .block .ico_fav_ret {
  overflow: hidden;
  list-style: none;
}
#sidebar .block .ico_fav_ret li {
  margin-right: 30px;
  float: left;
}
#sidebar .block .ico_fav_ret li img {
  width: 16px;
  vertical-align: middle;
  margin-right: 5px;
}
@-moz-document url-prefix() {
  #sidebar .twitter_wrap {
    width: 320px;
  }
}
#path {
  padding: 20px 0 50px;
  font-size: 1.1rem;
}
@media (max-width: 1025px) {
  body {
    font-size: 1.3rem;
  }
  /* 見出し */
  .hdg_tit01 {
    font-size: 2.3rem;
  }
  .hdg_tit01 .inner span {
    width: 2.3rem;
    height: 2.3rem;
  }
  .hdg_tit02 {
    font-size: 1.5rem;
  }
  .hdg_tit02::before {
    top: 8px;
  }
  /* 一覧をみる */
  .more_list a {
    font-size: 1.3rem;
  }
  .more_list a::after {
    top: -2px;
  }
  /* もっとみる */
  .more_info {
    width: auto;
  }
  .more_info a {
    padding: 15px 0;
    font-size: 1.5rem;
    line-height: 1;
  }
  /* 表示/非表示 */
  .pcHdn {
    display: block;
  }
  .spHdn {
    display: none;
  }
  .more_list {
    padding: 0 0 20px;
  }
  .page-wrap {
    padding-top: 92px;
  }
  #contents {
    width: auto;
    padding: 25px 25px 50px;
  }
  #btn-pagetop {
    position: absolute;
    right: 27px;
    bottom: 21px;
  }
  .op-search .spNav .sp_search {
    background: url('../images/org/common/btn_close-sp.png') no-repeat left top !important;
    background-size: 30px 30px !important;
  }
  #header {
    width: 100%;
    height: 90px;
    background: #FFF;
  }
  #header > .inner {
    padding: 25px 25px 0;
  }
  #header .logo {
    display: block;
    width: 99px;
    height: 45px;
    float: left;
  }
  #header .spNav {
    float: right;
    margin-top: 8px;
  }
  #header .spNav .sp_btnCmn {
    display: block;
    width: 30px;
    height: 30px;
    margin-left: 15px;
    float: left;
  }
  #header .spNav .sp_search {
    background: url('../images/org/common/btn_search-sp.png') no-repeat left top;
    background-size: 30px 30px;
  }
  #header .spNav .sp_search.active {
    background: url('../images/org/common/btn_close-sp.png') no-repeat 3px 3px;
    background-size: 23px 24px;
  }
  #header .spNav .sp_hash {
    background: url('../images/org/common/btn_hash-sp.png') no-repeat left top;
    background-size: 30px 30px;
  }
  #header .spNav .sp_hash.active {
    background: url('../images/org/common/btn_close-sp.png') no-repeat 3px 3px;
    background-size: 23px 24px;
  }
  #header .spNav .sp_menu {
    position: relative;
  }
  #header .spNav .sp_menu .icon {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    width: 25px;
    height: 2px;
    margin: auto;
    background-color: #000;
    transition: all 0.3s ease;
  }
  #header .spNav .sp_menu .icon:before,
  #header .spNav .sp_menu .icon:after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: all 0.3s ease;
    content: "";
  }
  #header .spNav .sp_menu .icon:before {
    margin-top: -10px;
  }
  #header .spNav .sp_menu .icon:after {
    margin-top: 10px;
  }
  #header .spNav .sp_menu.active .icon {
    background-color: transparent;
  }
  #header .spNav .sp_menu.active .icon:before,
  #header .spNav .sp_menu.active .icon:after {
    margin-top: 0;
  }
  #header .spNav .sp_menu.active .icon:before {
    transform: rotate(-45deg);
  }
  #header .spNav .sp_menu.active .icon:after {
    transform: rotate(45deg);
  }
  #header .search {
    display: block;
    position: static;
  }
  #header .search .btn {
    display: none;
  }
  #header .nav {
    display: none;
    position: fixed;
    float: none;
    background: #FFF;
    width: auto;
    height: 100%;
    padding: 30px 46px;
    top: 90px;
    right: 0;
    left: 0;
    text-align: center;
    margin-left: 0;
  }
  #header .nav ul {
    width: 100%;
    text-align: left;
    float: initial;
    height: 100px;
  }
  #header .nav ul .gl-item {
    display: block;
    padding-left: 0;
    width: calc((100% - 1em) / 5);
  }
  #header .nav .footnav {
    position: relative;
    top: 0;
    display: block !important;
    padding: 15px 0;
    border-top: solid 2px #e4e4e4;
  }
  #header .nav .footnav ul {
    position: absolute;
    top: 20px;
    right: 0;
  }
  #header .nav .footnav ul .sub-item {
    font-size: 1.3rem;
    padding-left: 13px;
    line-height: 1.33333;
    white-space: nowrap;
  }
  #header .nav .footnav ul .sub-item a > span {
    letter-spacing: 0.08em !important;
  }
  #header .nav .sns {
    position: relative;
    height: 200px;
    left: 0;
    top: 6px;
    z-index: 200;
    text-align: center;
    width: 55px;
  }
  #header .nav .sns dl {
    display: flex;
    flex-direction: row-reverse;
  }
  #header .nav .sns .title {
    height: 82px;
    margin-bottom: 20px;
  }
  #header .nav .sns .title img {
    padding-left: 10px;
  }
  #header .nav .sns .ico {
    width: auto;
    height: 15px;
    margin-bottom: 20px;
  }
  #header .nav .sns .ico svg {
    width: 15px;
    height: 15px;
  }
  #header .nav .sns .ico svg:hover {
    fill: #FF6600;
  }
  #header .nav .sns .ico.twitter {
    border-top: 2px solid #000;
    padding-top: 20px;
    margin-bottom: 0;
  }
  #header .nav .sns .ico.twitter svg:hover {
    fill: #000;
  }
  #header .nav .sns .twLink {
    padding-top: 10px;
  }
  #header .nav.active .sns {
    display: block;
    margin: 0;
    right: 0;
  }
  #header #searchBox {
    width: 100%;
    height: calc(100vh - 90px);
    padding: 0 25px 25px;
    border: none;
    box-sizing: border-box;
    top: 90px;
    left: 0;
    margin-left: 0;
    overflow: auto;
  }
  #header #searchBox input,
  #header #searchBox select {
    border: 2px solid #e4e4e4;
    font-size: 1.3rem;
    height: 50px;
  }
  #header #searchBox input::placeholder,
  #header #searchBox select::placeholder {
    font-size: 1.3rem;
  }
  #header #searchBox .cb-input:checked + .cb-txt::after {
    top: -2px;
    left: 7px;
    width: 7px;
    height: 14px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
  }
  #header #searchBox .cb-txt::before {
    width: 16px;
    height: 16px;
    border: 2px solid #e4e4e4;
  }
  #header #searchBox .cb-txt {
    font-size: 1.2rem;
  }
  #header #searchBox .title {
    font-size: 1.5rem;
    line-height: 1;
  }
  #header #searchBox select,
  #header #searchBox .label_wrap,
  #header #searchBox .txtbox {
    position: initial;
    width: 100%;
  }
  #header #searchBox select label,
  #header #searchBox .label_wrap label,
  #header #searchBox .txtbox label {
    padding-right: 15px;
  }
  #header #searchBox button {
    height: 50px;
    line-height: 50px;
    font-size: 1.3rem;
  }
  #header #searchBox button.submit {
    background-position: right 15px top 20px;
  }
  #header #searchBox .butwrap {
    border-top: 2px solid #e4e4e4;
    padding-top: 20px;
  }
  #header #searchBox .block02 {
    height: auto;
    margin-bottom: 20px;
  }
  #header #searchBox .block02 select,
  #header #searchBox .block02 .label_wrap {
    margin-bottom: 10px;
  }
  #header #searchBox .block03 {
    height: auto;
    margin-bottom: 20px;
  }
  #header #searchBox .block03 select {
    margin-bottom: 10px;
  }
  #header #searchBox .block04 {
    margin-bottom: 0;
    border-top: 2px solid #e4e4e4;
  }
  #header #searchBox .block04 .btn_more-sp {
    line-height: 46px;
    height: 46px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    background: url('../images/org/common/arrow_down.png') no-repeat;
    background-size: 11px 11px;
    background-position: right 10px top 50%;
  }
  #header #searchBox .block04 .btn_more-sp.open {
    background: url('../images/org/common/arrow_up.png') no-repeat;
    background-size: 11px 11px;
    background-position: right 10px top 50%;
  }
  #header #searchBox .block05 {
    display: table;
    width: 100%;
    margin-bottom: 10px;
  }
  #header #searchBox .block05 .title {
    display: table-cell;
    width: 20%;
  }
  #header #searchBox .block06 {
    display: table;
    width: 100%;
    margin-bottom: 10px;
  }
  #header #searchBox .block06 .title {
    display: table-cell;
    width: 20%;
  }
  #header #searchBox .block07 {
    display: table;
    width: 100%;
    margin-bottom: 20px;
  }
  #header #searchBox .block07 .title {
    display: table-cell;
    width: 20%;
  }
  #header #searchBox .block07 p {
    padding: 0;
  }
  #header #searchBox .toggle-wrap {
    display: none;
  }
  #footer {
    overflow: hidden;
  }
  #footer > .inner {
    padding: 25px;
  }
  #footer .logo {
    width: 99px;
    height: 140px;
  }
  #footer .footnav {
    top: 25px;
    right: 25px;
  }
  #footer .footnav ul .sub-item {
    font-size: 1.3rem;
    padding-left: 13px;
    line-height: 1.33333;
    white-space: nowrap;
  }
  #footer .footnav ul .sub-item a > span {
    letter-spacing: 0.08em !important;
  }
  #footer .site_info .address {
    margin-bottom: 0;
  }
  #footer .site_info .tel {
    margin-left: 0;
    margin-bottom: 0;
  }
  #sidebar {
    position: absolute;
    width: 100%;
    height: calc(100vh - 90px);
    border-left: none;
    background: #FFF;
    left: 0;
    top: 90px;
    border-top: solid 2px #000;
    overflow: auto;
  }
  #sidebar .sidebar_content {
    width: 100%;
    height: initial;
    overflow-y: initial;
  }
  #sidebar .sidebar_content .block dl dt .date {
    width: 5em;
  }
  #sidebar .sidebar_content .block dl dt .user {
    width: auto;
    padding-right: 5em;
  }
  #sidebar .sidebar_content .block dl dt .user .account {
    clear: both;
  }
  #sidebar .sidebar_content .block dl dd .inner {
    padding-left: 0;
  }
  #sidebar .sidebar_content .block dl dd .inner.quoted,
  #sidebar .sidebar_content .block dl dd .inner.retweet {
    padding-left: 10px;
  }
  #sidebar .sidebar_content .block .ph img {
    width: 100%;
  }
  #path {
    display: none;
  }
}
@media (max-width: 480px) {
  #header .nav {
    padding-top: 15px;
  }
}
@media (max-width: 375px) {
  #header .logo {
    width: 85px;
  }
  #header .spNav .btn {
    margin-left: 10px;
  }
  #header .spNav .btn.sp_hash {
    margin-left: 5px;
  }
}
@media (max-width: 280px) {
  .page-wrap {
    padding-top: 60px!important;
  }
  #header {
    height: 60px;
  }
  #header .inner {
    padding: 15px 15px 0;
    padding-left: 15px!important;
  }
  #header img {
    width: 70px;
  }
  #header .spNav {
    margin-top: 0;
  }
  #header .spNav .btn {
    width: 25px;
    height: 25px;
  }
}
/* cms start */
.cms:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.cms * {
  word-break: break-all;
}
.cms p {
  margin: 1em 0;
}
.cms ul {
  list-style-type: disc;
  margin: 1em 0 1em 1em;
  padding: 0 0 0 1em;
}
.cms ul ul {
  list-style-type: circle;
  margin: 0 0 0 1em;
}
.cms ul ul ul {
  list-style-type: square;
}
.cms ol {
  list-style-type: decimal;
  margin: 1em 0 1em 1em;
  padding: 0 0 0 1em;
}
.cms ol ol {
  margin: 0 0 0 1em;
}
.cms dl {
  margin: 1em 0;
}
.cms dd {
  margin: 0 0 0 1em;
}
.cms blockquote {
  margin: 1em;
  padding: 0 0 0 1em;
  border-left: 3px solid #CCCCCC;
}
.cms pre {
  margin: 1em;
  padding: 1em;
  border: 1px solid #CCCCCC;
  white-space: normal;
}
.cms blockquote blockquote {
  margin: 0;
}
.cms h1 {
  font-size: 120%;
}
.cms h2 {
  font-size: 100%;
}
.cms h3 {
  font-size: 100%;
}
.cms h4 {
  font-size: 100%;
}
.cms h5 {
  font-size: 100%;
}
.cms h6 {
  font-size: 100%;
}
.cms input,
.cms select,
.cms textarea {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
}
.cms input[type="text"] {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 1.5;
}
.cms select {
  display: block;
  margin: 0;
  padding: 10px 50px 10px 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  background-image: url(/images/org/common/arrow_down.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 10px auto;
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cms select::-ms-expand {
  display: none;
}
.cms textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 1.5;
}
.cms input[type="submit"] {
  display: block;
  width: 260px;
  padding: 10px;
  border: 2px solid #000;
  outline: none;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #000000;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.cms input[type="submit"]:hover {
  color: #ff6600;
}
.cms input[name="back"] {
  display: block;
  width: 260px;
  padding: 10px;
  border: 2px solid #000;
  outline: none;
  box-sizing: border-box;
  background-color: #ffffff;
  color: #000000;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.cms input[name="back"]:hover {
  color: #ff6600;
}
@media (max-width: 1025px) {
  .cms input[type="text"] {
    font-size: 1.3rem;
  }
  .cms select {
    font-size: 1.3rem;
  }
  .cms textarea {
    font-size: 1.3rem;
  }
  .cms input[type="submit"] {
    width: 100%;
    padding: 10px;
    font-size: 1.5rem;
  }
  .cms input[name="back"] {
    width: 100%;
    padding: 10px;
    font-size: 1.5rem;
  }
}
/* cms end */
