@media screen and (min-width: 769px), print {
  .first_view {
    position: relative;
    width: 100%;
    height: 320px;
    background-image: url(../images/first_view_pc.jpg);
    background-repeat: no-repeat;
    -moz-background-size: cover;
         background-size: cover;
  }
  .first_view h2 {
    position: absolute;
    bottom: 70px;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(0);
       -moz-transform: translateX(-50%) scale(0);
        -ms-transform: translateX(-50%) scale(0);
            transform: translateX(-50%) scale(0);
    -webkit-animation: first_view 1s 0.5s forwards;
       -moz-animation: first_view 1s 0.5s forwards;
            animation: first_view 1s 0.5s forwards;
  }
  .first_view:before {
    position: absolute;
    content: '';
    display: block;
    width: 1100px;
    height: 30px;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -moz-border-radius-bottomleft: 30px;
         border-bottom-left-radius: 30px;
    -moz-border-radius-bottomright: 30px;
         border-bottom-right-radius: 30px;
    -moz-box-shadow: rgba(0, 0, 0, 0.5) 0 20px 100px;
         box-shadow: rgba(0, 0, 0, 0.5) 0 20px 100px;
  }
  .contents {
    background-color: #f4f3f1;
  }
  .info {
    position: relative;
    width: 1100px;
    margin: -30px auto 0;
    padding: 105px 50px 110px;
    background-color: #f4f3f1;
    -moz-border-radius: 6px;
         border-radius: 6px;
  }
  .info_box {
    width: 100%;
    margin: 0 auto;
    text-align: right;
  }
  .info_box li {
    position: relative;
    width: 100%;
  }
  .info_box li a {
    display: block;
    width: 100%;
    padding: 38px 0 36px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .info_box li a:hover {
    opacity: 0.5;
  }
  .info_box li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #ae8d69 50%, transparent 50%, transparent 100%);
    background-image: -moz-linear-gradient(left, #ae8d69 50%, transparent 50%, transparent 100%);
    background-image: linear-gradient(to right, #ae8d69 50%, transparent 50%, transparent 100%);
    -moz-background-size: 4px 1px;
         background-size: 4px 1px;
    background-repeat: repeat-x;
    background-position: center;
  }
  .info_box li:last-of-type:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #ae8d69 50%, transparent 50%, transparent 100%);
    background-image: -moz-linear-gradient(left, #ae8d69 50%, transparent 50%, transparent 100%);
    background-image: linear-gradient(to right, #ae8d69 50%, transparent 50%, transparent 100%);
    -moz-background-size: 4px 1px;
         background-size: 4px 1px;
    background-repeat: repeat-x;
    background-position: center;
  }
  .info_box dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: 1.6rem;
    -moz-text-align-last: left;
         text-align-last: left;
    line-height: 1;
  }
  .info_box dl dt {
    width: 160px;
    color: #8c5d29;
  }
  .info_box dl dd {
    width: 650px;
    color: #372613;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .navi_area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 75px 0 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .navi_area .navi_box .btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background-color: #372613;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navi_area .navi_box .btn:hover {
    background-color: #fff;
  }
  .navi_area .navi_box .btn:hover:after {
    border-color: #372613;
  }
  .navi_area .navi_box .btn:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 50%;
    width: 12px;
    height: 12px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border-top: 2px solid white;
    border-right: 2px solid white;
  }
  .navi_area .navi_box .left {
    margin-right: 5px;
  }
  .navi_area .navi_box .left:after {
    -webkit-transform: translateX(-45%) rotate(-135deg);
       -moz-transform: translateX(-45%) rotate(-135deg);
        -ms-transform: translateX(-45%) rotate(-135deg);
            transform: translateX(-45%) rotate(-135deg);
  }
  .navi_area .navi_box .right {
    margin-left: 5px;
  }
  .navi_area .navi_box .right:after {
    -webkit-transform: translateX(-55%) rotate(45deg);
       -moz-transform: translateX(-55%) rotate(45deg);
        -ms-transform: translateX(-55%) rotate(45deg);
            transform: translateX(-55%) rotate(45deg);
  }
  .navi_area .navi_box .text {
    font-size: 1.6rem;
    color: #372613;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navi_area .navi_box .text:hover {
    opacity: 0.5;
  }
  .navi_area .pager li {
    display: inline-block;
    margin: 0 17px;
  }
  .navi_area .pager li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    color: #372613;
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navi_area .pager li a:hover {
    opacity: 0.5;
  }
  .info-detail {
    position: relative;
    width: 1100px;
    margin: -40px auto 0;
    padding: 75px 100px 120px;
    background-color: #f4f3f1;
    -moz-border-radius: 6px;
         border-radius: 6px;
  }
  .info-detail .title_box {
    margin-bottom: 70px;
  }
  .info-detail .title_box dt {
    margin-bottom: 19px;
  }
  .info-detail .title_box dt span {
    display: inline-block;
  }
  .info-detail .title_box dt .time {
    font-size: 1.8rem;
    color: #8c5d29;
    line-height: 1;
    vertical-align: middle;
  }
  .info-detail .title_box dd {
    font-size: 2.2rem;
    color: #372613;
    font-weight: bold;
    border-bottom: 4px solid #8c5d29;
    padding-bottom: 25px;
  }
  .info-detail .back_btn {
    display: block;
    text-align: center;
    width: 275px;
    height: 60px;
    margin: 60px auto 0;
    border: 4px solid #8c5d29;
    font-weight: bold;
  }
  .info-detail .back_btn a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1.8rem;
    line-height: 52px;
    color: #372613;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .info-detail .back_btn a:hover {
    border: none;
    background-color: #8c5d29;
    color: white;
  }
  .info-detail .back_btn a:hover:after {
    border-color: white;
  }
  .info-detail .back_btn a:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto 0;
    width: 11px;
    height: 11px;
    border-top: 1px solid #372613;
    border-right: 1px solid #372613;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
}

@media screen and (max-width: 768px) {
  .first_view {
    position: relative;
    width: 100%;
    height: 50.78125vw;
    background-image: url(../images/first_view_sp.jpg);
    background-repeat: no-repeat;
    -moz-background-size: cover;
         background-size: cover;
    overflow: hidden;
  }
  .first_view h2 {
    position: absolute;
    bottom: 10.41667vw;
    left: 50%;
    -webkit-transform: translateX(-50%) scale(1);
       -moz-transform: translateX(-50%) scale(1);
        -ms-transform: translateX(-50%) scale(1);
            transform: translateX(-50%) scale(1);
    -webkit-animation: first_view 1s 0.5s forwards;
       -moz-animation: first_view 1s 0.5s forwards;
            animation: first_view 1s 0.5s forwards;
    text-align: center;
  }
  .first_view h2 img {
    width: 40.49479vw;
    height: 17.1875vw;
  }
  .contents {
    background-color: #f4f3f1;
    -moz-box-shadow: inset 0 10.41667vw 10.41667vw -2.60417vw rgba(0, 0, 0, 0.1);
         box-shadow: inset 0 10.41667vw 10.41667vw -2.60417vw rgba(0, 0, 0, 0.1);
  }
  .info {
    position: relative;
    width: 93.48958vw;
    margin: -2.34375vw auto 0;
    padding: 10.41667vw 0 12.10938vw;
    background-color: #f4f3f1;
    -moz-border-radius: 0.78125vw;
         border-radius: 0.78125vw;
  }
  .info .info_box {
    width: 85.9375vw;
    margin: 0 auto;
  }
  .info .info_box li {
    position: relative;
    width: 100%;
  }
  .info .info_box li a {
    display: block;
    width: 100%;
    padding: 4.55729vw 0;
  }
  .info .info_box li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #ae8d69 50%, transparent 50%, transparent 100%);
    background-image: -moz-linear-gradient(left, #ae8d69 50%, transparent 50%, transparent 100%);
    background-image: linear-gradient(to right, #ae8d69 50%, transparent 50%, transparent 100%);
    -moz-background-size: 4px 1px;
         background-size: 4px 1px;
    background-repeat: repeat-x;
    background-position: center;
  }
  .info .info_box li:last-of-type:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-image: -webkit-linear-gradient(left, #ae8d69 50%, transparent 50%, transparent 100%);
    background-image: -moz-linear-gradient(left, #ae8d69 50%, transparent 50%, transparent 100%);
    background-image: linear-gradient(to right, #ae8d69 50%, transparent 50%, transparent 100%);
    -moz-background-size: 4px 1px;
         background-size: 4px 1px;
    background-repeat: repeat-x;
    background-position: center;
  }
  .info .info_box dl {
    font-size: 3.64583vw;
  }
  .info .info_box dl dt {
    color: #8c5d29;
    margin-bottom: 1.5625vw;
  }
  .info .info_box dl dd {
    color: #372613;
    height: 10.67708vw;
    position: relative;
    padding-right: 1em;
    overflow: hidden;
  }
  .info .info_box dl dd:before {
    content: "...";
    position: absolute;
    right: 0;
    bottom: 0;
    display: inline-block;
    width: 1em;
  }
  .info .info_box dl dd:after {
    content: "";
    position: relative;
    right: -1em;
    float: right;
    width: 1em;
    height: 100%;
    background-color: #f4f3f1;
  }
  .info .navi_area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 6.51042vw 0 0;
  }
  .info .navi_box .btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 7.8125vw;
    height: 7.8125vw;
    background-color: #372613;
  }
  .info .navi_box .btn:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    margin: auto 0;
    left: 50%;
    width: 2.08333vw;
    height: 2.08333vw;
    border-top: 2px solid white;
    border-right: 2px solid white;
  }
  .info .navi_box .left:after {
    -webkit-transform: translateX(-45%) rotate(-135deg);
       -moz-transform: translateX(-45%) rotate(-135deg);
        -ms-transform: translateX(-45%) rotate(-135deg);
            transform: translateX(-45%) rotate(-135deg);
  }
  .info .navi_box .right:after {
    -webkit-transform: translateX(-55%) rotate(45deg);
       -moz-transform: translateX(-55%) rotate(45deg);
        -ms-transform: translateX(-55%) rotate(45deg);
            transform: translateX(-55%) rotate(45deg);
  }
  .info .pager li {
    display: inline-block;
    padding: 0 3.25521vw;
  }
  .info .pager li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 3.64583vw;
    color: #372613;
    text-decoration: underline;
  }
  .info-detail {
    position: relative;
    width: 93.48958vw;
    margin: -2.34375vw auto 0;
    padding: 10.41667vw 3.77604vw 16.14583vw;
    background-color: #f4f3f1;
    -moz-border-radius: 0.78125vw;
         border-radius: 0.78125vw;
  }
  .info-detail .title_box {
    margin-bottom: 70px;
  }
  .info-detail .title_box dt {
    margin-bottom: 2.34375vw;
  }
  .info-detail .title_box dt span {
    display: inline-block;
  }
  .info-detail .title_box dt .time {
    font-size: 4.16667vw;
    color: #8c5d29;
    line-height: 1;
    vertical-align: middle;
  }
  .info-detail .title_box dt .category {
    width: 24.73958vw;
    height: 4.55729vw;
    margin-left: 1.95312vw;
    background-color: rgba(55, 38, 19, 0.6);
    font-size: 3.125vw;
    line-height: 4.55729vw;
    text-align: center;
    color: white;
    vertical-align: middle;
  }
  .info-detail .title_box dd {
    font-size: 4.42708vw;
    color: #372613;
    font-weight: bold;
    border-bottom: 0.52083vw solid #8c5d29;
    padding-bottom: 3.38542vw;
  }
  .info-detail .back_btn {
    width: 83.59375vw;
    height: 18.22917vw;
    margin: 6.51042vw auto 0;
    border: 0.52083vw solid #8c5d29;
    font-weight: bold;
    text-align: center;
    display: block;
  }
  .info-detail .back_btn a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 3.64583vw;
    line-height: 18.22917vw;
    color: #372613;
  }
  .info-detail .back_btn a:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    right: 3.25521vw;
    margin: auto 0;
    width: 3.38542vw;
    height: 3.38542vw;
    border-top: 2px solid #372613;
    border-right: 2px solid #372613;
    -webkit-transform: rotate(45deg);
       -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
