@charset "UTF-8";
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* bBootstrap v3.3.7の変数のみinclude */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
.flash {
  -webkit-animation: flash 1.5s infinite linear;
          animation: flash 1.5s infinite linear;
}

@-webkit-keyframes flash {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes flash {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

.fadeIn-Loop {
  -webkit-animation: fadeIn-Loop 16s 8s infinite linear;
          animation: fadeIn-Loop 16s 8s infinite linear;
}

@-webkit-keyframes fadeIn-Loop {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn-Loop {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

/* Layout */
/* Component */
.sd-btn {
  border: 0;
  color: #FFFFFF;
  background-color: #0B6CCF;
  border-radius: 4px;
  display: inline-block;
  padding: 5px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.44;
}

.sd-btn a, .sd-btn:hover, .sd-btn:focus,
.sd-btn a:hover,
.sd-btn a:focus {
  color: #FFFFFF;
}

.zoom:hover {
  -webkit-transform: scale(1.2, 1.2);
      -ms-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  transition: all 0.5s ease 0s;
}

.ol--reset,
.ul--reset {
  padding: 0;
  list-style-type: none;
}

.ol,
.ul {
  padding: 0;
  list-style-type: none;
}

.ol li,
.ul li {
  border-bottom: 1px dotted #cccccc;
}

.ol li:last-child,
.ul li:last-child {
  border-bottom: none;
}

.hr {
  clear: both;
  border: 0;
  height: 1px;
  border-bottom: 1px solid #000000;
}

.form textarea,
.form input {
  border: 1px solid #000000;
}

.form label {
  margin-right: 15px;
}

.form textarea,
.form input[type="text"] {
  padding: 5px;
  width: 100%;
  font-size: 1rem;
}

@media screen and (min-width: 1200px) {
  .form textarea,
  .form input[type="text"] {
    font-size: 1.6rem;
  }
}

.form textarea {
  min-height: 200px;
}

.form input[type="submit"] {
  padding: 5px;
  margin: 5px;
}

.sd-table {
  width: 100%;
  max-width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-collapse: collapse;
}

.sd-table caption {
  font-weight: bold;
  font-size: 110%;
}

.sd-table > thead tr > th,
.sd-table > tbody tr > th,
.sd-table > tfoot tr > th {
  background: #f2f2f2;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
}

.sd-table > thead tr > th, .sd-table > thead tr > td,
.sd-table > tbody tr > th,
.sd-table > tbody tr > td,
.sd-table > tfoot tr > th,
.sd-table > tfoot tr > td {
  vertical-align: middle;
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  padding: 15px;
}

/*グラデーション*/
.gradation {
  background-color: transparent;
  background-image: linear-gradient(to bottom, #FFFFFF 0%, rgba(250, 250, 250, 0.4) 100%);
}

/*テキストシャドウ*/
.text-shadow--gray {
  text-shadow: 0 1px 0 rgba(150, 150, 150, 0.6);
}

.text-shadow--white {
  text-shadow: 0 1px 0 #FFFFFF;
}

/*ボックスシャドウ*/
.box-shadow--gray {
  box-shadow: 0 0 10px 1px #CCCCCC;
}
.box-shadow--white {
  box-shadow: 0 0 15px #FFFFFF #CCCCCC;
}
.sd-label {
  padding: 5px;
  font-size: 85%;
  border-radius: 6px;
  color: #FFFFFF;
  background-color: #000000;
}
.sd-picture {
  border: 5px solid #FFFFFF;
}


/*=====================================================================*/
/*MAIN CONTENTS*/
/*=====================================================================*/


.content_wrap * {
  box-sizing: border-box;
}
.content_wrap a{
  text-decoration:none;
}
.content_wrap_inner{
  /* margin: 3px 5px; */
  /* padding: 2px 0; */
  /* border: 1px solid #ffffff; */
}
.content_wrap {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.8;
  /* position: relative; */
  margin: 0 auto;
  max-width: 600px;
}
.content_wrap .header {
  text-align: center;
  margin-bottom: 7%;
}
.content_wrap .header .date{
  max-width: 380px;
  margin: 0 auto 50px;
}

.content_wrap .header h1 img{
  display: block;
  margin: 0 auto 40px;
}

.content_wrap .header h1 .mainttl{
  display: block;
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: 3px;
}

.content_wrap .short_stories .photo{
  margin: 0 auto 80px;
}
.content_wrap .short_stories .subttl{
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1.5px;
  text-align: center;
  margin: 0 auto 80px;
}
.content_wrap .short_stories .textbody{
  width: 400px;
  margin: 0 auto 80px;
  text-align: left ;
  font-size: 15px;
  letter-spacing: 1.5px;
  line-height: 2;
}


.content_wrap .information {
  text-align: center;
  margin: 0 auto 80px;
  border-top: 1px solid #ececec;
}
.content_wrap .information .item_box{
  width: 265px;
  overflow: hidden;
  margin: 50px auto 50px;
}
.content_wrap .information .item_box .item_photo{
  width: 100px;
  float: left;
}
.content_wrap .information .item_box p{
    width: 165px;
    float: right;
    text-align: left;
    margin: 38px 0 0 0;
    line-height: 2;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.content_wrap .btn_short_stories .btn_acc a{
  text-align: center;
    font-size: 20px;
    background-color: #282b32;
    padding: 2.5%;
    margin: 0 auto;
    letter-spacing: 0.2em;
    display: block;
    border: none;
    border-radius: 6px;
    color: #ffffff;
  }

.content_wrap .btn_thankfair .btn_acc a:hover {
  text-decoration: none;
  opacity: 1;
  background-color: #d0f7f4;
}
.content_wrap .btn_thankfair .btn_acc p{
  margin:0 auto;
}


@media (max-width: 980px) {
}


@media (max-width: 768px) {
}


@media (max-width: 640px) {
.content_wrap .header .date{
  max-width: 280px;
  margin: 0 auto 30px;
}
.content_wrap .header h1 img{
  margin: 0 auto 30px;
}

.content_wrap .header h1 .mainttl{
  font-size: 21px;
  letter-spacing: 2px;
}

.content_wrap .short_stories .photo{
  margin: 0 auto 40px;
}
.content_wrap .short_stories .subttl{
  font-size: 15px;
  margin: 0 auto 40px;
}
.content_wrap .short_stories .textbody{
  width: 85%;
  margin: 0 auto 40px;
  font-size: 12px;
  letter-spacing: 1.0px;
  line-height: 2;
}


.content_wrap .information {
  text-align: center;
  margin: 0 auto 80px;
  border-top: 1px solid #ececec;
}
.content_wrap .information .item_box{
  width: 265px;
  overflow: hidden;
  margin: 20px auto 20px;
}
.content_wrap .information .item_box .item_photo{
  width: 100px;
  float: left;
}
.content_wrap .information .item_box p{
    width: 165px;
    float: right;
    text-align: left;
    margin: 38px 0 0 0;
    line-height: 2;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.content_wrap .btn_short_stories .btn_acc a{
  text-align: center;
    font-size: 14px;
    background-color: #282b32;
    padding: 2.5%;
    margin: 0 auto;
    letter-spacing: 0.2em;
    display: block;
    border: none;
    border-radius: 6px;
    color: #ffffff;
  }

.content_wrap .btn_thankfair .btn_acc a:hover {
  text-decoration: none;
  opacity: 1;
  background-color: #d0f7f4;
}
.content_wrap .btn_thankfair .btn_acc p{
  margin:0 auto;
}
}

@media (max-width: 320px) {
}







img.pc_view,
br.pc_view,
span.pc_view {
  display: inline;
}

img.smp_view,
br.smp_view,
span.smp_view {
  display: none;
}

@media (max-width: 767px) {
  img.pc_view,
  br.pc_view,
  span.pc_view {
    display: none;
  }

  img.smp_view,
  br.smp_view,
  span.smp_view {
    display: inline;
  }
}





.btn-9 {
  $btn-color: random-color($max:200);
  $btn-color-dark: shade($btn-color, 40%);
  color: tint($btn-color);
  &:before,
  &:after,
  span:before,
  span:after {
    content: '';
    @include absolute(0,null,null,0);
    @include size(100%, 0);
    background-color: rgba($btn-color-dark, 0.25);
    transition: 0.4s ease-in-out;
  }
  &:after,
  span:before {
    top: auto;
    bottom: 0;
  }
  span:before,
  span:after {
    transition-delay: 0.4s;
  }
  &:hover {
    color: tint($btn-color, 75%);
    &:before,
    &:after,
    span:before,
    span:after {
      height: $btn-height;
    }
  }
  &:active {
    background-color: $btn-color;
  }
}


.content_wrap .disabled {
  text-decoration: none !important;
  cursor: default;
}

@-moz-document url-prefix() {
  .content_wrap .item-block__inner img {
    width: 100%;
    max-width: 100%;
  }
}

@media all and (-ms-high-contrast: none) {
  .content_wrap .item-block__inner img {
    width: 100%;
    max-width: 100%;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 980px) {
  .content_wrap .item-block .item-block__inner:first-child {
    -webkit-flex: 0 0 42% !important;
        -ms-flex: 0 0 42% !important;
            flex: 0 0 42% !important;
  }
}

@media all and (-ms-high-contrast: none) and (min-width: 980px) {
  .content_wrap .item-block .item-block__inner:last-child {
    -webkit-flex: 0 0 32% !important;
        -ms-flex: 0 0 32% !important;
            flex: 0 0 32% !important;
  }
}





/* Utility */
.hide_text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

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

.clear {
  clear: both;
}

.fluid_img {
  max-width: 100%;
  height: auto;
}

.none {
  display: none;
}

.flo-left {
  float: left;
}

.flo-right {
  float: right;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.font_small {
  font-size: 80%;
}

.opa-0,
.ani-fadeIn,
.ani-fadeInLeft {
  opacity: 0;
}

.flex-wrapper,
.flex-outer,
.flex-parent {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-child {
  width: 50%;
}



/*================================================================================

state

================================================================================*/
.is-fade-in {
  transition: opacity 0.2s linear;
  opacity: 1 !important;
}

.is-fade-out {
  transition: opacity 0.6s ease-in-out;
  opacity: 0 !important;
}

.is-fade-out--long {
  transition: opacity 1s ease-in-out;
  opacity: 0 !important;
}

.is-nav-on {
  display: table-cell !important;
  vertical-align: middle;
  height: 100vh;
  padding: 20vh 0;
}




@-ms-viewport {
  width: device-width;
}

.hidden {
  display: none;
  visibility: hidden;
}

.visible-phone {
  display: none !important;
}

.visible-tablet {
  display: none !important;
}

.hidden-desktop {
  display: none !important;
}

.visible-desktop {
  display: inherit !important;
}

@media (max-width: 979px) and (min-width: 414px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important ;
  }
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
}

@media (max-width: 414px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
}

.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: inherit !important;
  }
  .hidden-print {
    display: none !important;
  }
}


img.auto-fade {
  position: absolute;
  top: 0;
  -webkit-animation-name: auto-fade_kf;
          animation-name: auto-fade_kf;
  -webkit-animation-duration: 12s;
          animation-duration: 12s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes auto-fade_kf {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}

@keyframes auto-fade_kf {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}