@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: 80px;
    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: 40px;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    -moz-border-radius-bottomleft: 40px;
         border-bottom-left-radius: 40px;
    -moz-border-radius-bottomright: 40px;
         border-bottom-right-radius: 40px;
    -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;
  }
  .blog {
    position: relative;
    width: 1100px;
    margin: -40px auto 0;
    padding: 105px 30px 0;
    background-color: #f4f3f1;
    -moz-border-radius: 6px;
         border-radius: 6px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main {
    width: 695px;
  }
  .main .news {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main .news_item {
    width: 340px;
    margin-top: 30px;
    background-color: #fff;
  }
  .main .news_item:nth-of-type(1), .main .news_item:nth-of-type(2) {
    margin-top: 0;
  }
  .main .news_item figure {
    position: relative;
    margin: 0;
    width: 100%;
    height: 230px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #f4f3f1;
    overflow: hidden;
  }
  .main .news_item figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
  }
  .main .news_item figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #fff;
    color: white;
    width: 140px;
    height: 20px;
    background-color: rgba(55, 38, 19, 0.6);
    font-size: 1.2rem;
    line-height: 20px;
    padding-left: 20px;
  }
  .main .news_item figure figcaption:after {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    right: -20px;
    width: 20px;
    height: 20px;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(55, 38, 19, 0.6);
    border-left: 10px solid rgba(55, 38, 19, 0.6);
  }
  .main .news_item dl {
    padding: 25px 20px 36px;
    font-size: 1.6rem;
  }
  .main .news_item dl dt {
    color: #8c5d29;
    line-height: 1;
    margin-bottom: 16px;
  }
  .main .news_item dl dd {
    color: #372613;
    background-color: #fff;
  }
  .main .news_item a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .main .news_item a:hover figure {
    opacity: 0.5;
  }
  .main .navi_area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 75px 0 110px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .main .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;
  }
  .main .navi_area .navi_box .btn:hover {
    background-color: #fff;
  }
  .main .navi_area .navi_box .btn:hover:after {
    border-color: #372613;
  }
  .main .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;
  }
  .main .navi_area .navi_box .left {
    margin-right: 5px;
  }
  .main .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);
  }
  .main .navi_area .navi_box .right {
    margin-left: 5px;
  }
  .main .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);
  }
  .main .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;
  }
  .main .navi_area .navi_box .text:hover {
    opacity: 0.5;
  }
  .main .navi_area .pager li {
    display: inline-block;
    margin: 0 17px;
  }
  .main .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;
  }
  .main .navi_area .pager li a:hover {
    opacity: 0.5;
  }
  .adside {
    width: 300px;
  }
  .adside a {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
  }
  .adside a:hover {
    opacity: 0.5;
  }
  .adside .news {
    border-top: 3px solid #8c5d29;
    margin-bottom: 40px;
  }
  .adside .news h3 {
    font-size: 1.8rem;
    line-height: 1;
    color: #372613;
    padding: 10px 0;
  }
  .adside .news dl {
    border-bottom: 1px solid #dbcfc2;
    font-size: 1.6rem;
    padding: 18px 0 16px;
  }
  .adside .news dl dt {
    color: #8c5d29;
    line-height: 1;
    margin-bottom: 14px;
  }
  .adside .news dl dd {
    color: #372613;
    background-color: #f4f3f1;
  }
  .adside .news ul li:nth-of-type(1) {
    border-top: 1px solid #dbcfc2;
  }
  .adside .news p {
    line-height: 1;
    color: #372613;
    font-size: 1.6rem;
    padding: 16px 0;
    border-bottom: 1px solid #dbcfc2;
  }
  .adside .categories li {
    width: 300px;
    height: 30px;
    margin-top: 12px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #8c5d29;
    -moz-border-radius: 15px;
         border-radius: 15px;
  }
  .adside .categories li:nth-of-type(1) {
    margin-top: 0;
  }
  .adside .categories li a {
    color: #372613;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
  }
  .adside .tags {
    margin-top: 36px;
  }
  .adside .tags .tag {
    display: inline-block;
    width: auto;
    font-size: 1.6rem;
    margin: 0 15px 8px 0;
  }
  .adside .tags .bold {
    font-weight: bold;
  }
  .blog-detail {
    position: relative;
    width: 1100px;
    margin: -40px auto 0;
    padding: 75px 100px 120px;
    background-color: #f4f3f1;
    -moz-border-radius: 6px;
         border-radius: 6px;
  }
  .blog-detail .title_box {
    margin-bottom: 70px;
  }
  .blog-detail .title_box dt {
    margin-bottom: 19px;
  }
  .blog-detail .title_box dt span {
    display: inline-block;
  }
  .blog-detail .title_box dt .time {
    font-size: 1.8rem;
    color: #8c5d29;
    line-height: 1;
    vertical-align: middle;
  }
  .blog-detail .title_box dt .category {
    width: 140px;
    height: 20px;
    margin-left: 20px;
    background-color: rgba(55, 38, 19, 0.6);
    font-size: 1.2rem;
    line-height: 20px;
    text-align: center;
    color: white;
    vertical-align: middle;
  }
  .blog-detail .title_box dd {
    font-size: 2.2rem;
    color: #372613;
    font-weight: bold;
    border-bottom: 4px solid #8c5d29;
    padding-bottom: 25px;
  }
  .blog-detail .back_btn {
    display: block;
    text-align: center;
    width: 275px;
    height: 60px;
    margin: 60px auto 0;
    border: 4px solid #8c5d29;
    font-weight: bold;
  }
  .blog-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;
  }
  .blog-detail .back_btn a:hover {
    border: none;
    background-color: #8c5d29;
    color: white;
  }
  .blog-detail .back_btn a:hover:after {
    border-color: white;
  }
  .blog-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;
  }
  .blog-detail .entry-container p, .blog-detail .entry-container li {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .blog-detail .entry-container img {
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    height: auto;
  }
}

@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(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;
    text-align: center;
  }
  .first_view h2 img {
    width: 15.49479vw;
    height: 16.66667vw;
  }
  .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);
  }
  .blog {
    position: relative;
    width: 93.48958vw;
    margin: -2.34375vw auto 0;
    padding: 10.41667vw 0 0;
    background-color: #f4f3f1;
    -moz-border-radius: 0.78125vw;
         border-radius: 0.78125vw;
  }
  .blog .news_item {
    width: 80.72917vw;
    background-color: #fff;
    margin: 6.51042vw auto 0;
  }
  .blog .news_item:nth-of-type(1) {
    margin-top: 0;
  }
  .blog .news_item figure {
    position: relative;
    margin: 0;
    width: 100%;
    height: 54.6875vw;
    background-color: #f4f3f1;
    overflow: hidden;
  }
  .blog .news_item figure img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
  }
  .blog .news_item figure figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    width: 33.59375vw;
    height: 5.20833vw;
    background-color: rgba(55, 38, 19, 0.6);
    font-size: 3.125vw;
    line-height: 5.20833vw;
    padding-left: 6.51042vw;
  }
  .blog .news_item figure figcaption:after {
    position: absolute;
    content: '';
    display: block;
    bottom: 0;
    right: -4.94792vw;
    width: 4.94792vw;
    height: 4.94792vw;
    -moz-box-sizing: border-box;
         box-sizing: border-box;
    border-top: 2.47396vw solid transparent;
    border-right: 2.47396vw solid transparent;
    border-bottom: 2.47396vw solid rgba(55, 38, 19, 0.6);
    border-left: 2.47396vw solid rgba(55, 38, 19, 0.6);
  }
  .blog dl {
    padding: 5.20833vw 6.25vw 9.11458vw;
    font-size: 4.16667vw;
  }
  .blog dl dt {
    color: #8c5d29;
    line-height: 1;
    margin-bottom: 3.90625vw;
  }
  .blog dl dd {
    color: #372613;
    background-color: #fff;
  }
  .blog a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .blog .navi_area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 6.51042vw 0 11.06771vw;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .blog .navi_area .navi_box .btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 7.8125vw;
    height: 7.8125vw;
    background-color: #372613;
  }
  .blog .navi_area .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;
  }
  .blog .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);
  }
  .blog .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);
  }
  .blog .navi_area .pager li {
    display: inline-block;
    padding: 0 3.25521vw;
  }
  .blog .navi_area .pager li a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 3.64583vw;
    color: #372613;
    text-decoration: underline;
  }
  .adside {
    width: 93.48958vw;
  }
  .adside a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .adside .news {
    border-top: 3px solid #8c5d29;
    margin-bottom: 7.8125vw;
  }
  .adside .news h3 {
    font-size: 4.16667vw;
    line-height: 1;
    color: #372613;
    padding: 3.125vw 0;
  }
  .adside .news dl {
    border-bottom: 1px solid #dbcfc2;
    font-size: 4.16667vw;
    padding: 3.90625vw 0 4.42708vw;
  }
  .adside .news dl dt {
    color: #8c5d29;
    line-height: 1;
    margin-bottom: 3.125vw;
  }
  .adside .news dl dd {
    color: #372613;
    background-color: #f4f3f1;
  }
  .adside .news ul li:nth-of-type(1) {
    border-top: 1px solid #dbcfc2;
  }
  .adside .news p {
    line-height: 1;
    color: #372613;
    font-size: 4.16667vw;
    padding: 4.94792vw 0;
    border-bottom: 1px solid #dbcfc2;
  }
  .adside .categories li {
    width: 93.48958vw;
    height: 10.15625vw;
    margin-top: 2.60417vw;
    text-align: center;
    line-height: 10.15625vw;
    border: 1px solid #8c5d29;
    -moz-border-radius: 4.94792vw;
         border-radius: 4.94792vw;
  }
  .adside .categories li:nth-of-type(1) {
    margin-top: 0;
  }
  .adside .categories li a {
    color: #372613;
    font-size: 3.64583vw;
  }
  .adside .tags {
    margin: 9.11458vw 0 9.375vw;
  }
  .adside .tags .tag {
    display: inline-block;
    width: auto;
    font-size: 4.94792vw;
    margin: 0 3.90625vw 2.60417vw 0;
  }
  .adside .tags .bold {
    font-weight: bold;
  }
  .blog-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;
  }
  .blog-detail .title_box {
    margin-bottom: 70px;
  }
  .blog-detail .title_box dt {
    margin-bottom: 2.34375vw;
  }
  .blog-detail .title_box dt span {
    display: inline-block;
  }
  .blog-detail .title_box dt .time {
    font-size: 4.16667vw;
    color: #8c5d29;
    line-height: 1;
    vertical-align: middle;
  }
  .blog-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;
  }
  .blog-detail .title_box dd {
    font-size: 4.42708vw;
    color: #372613;
    font-weight: bold;
    border-bottom: 0.52083vw solid #8c5d29;
    padding-bottom: 3.38542vw;
  }
  .blog-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;
  }
  .blog-detail .back_btn a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    font-size: 3.64583vw;
    line-height: 18.22917vw;
    color: #372613;
  }
  .blog-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);
  }
  .blog-detail .entry-container p, .blog-detail .entry-container li {
    margin-top: 2.60417vw;
    margin-bottom: 2.60417vw;
  }
  .blog-detail .entry-container img {
    max-width: 100%;
    margin-top: 5.20833vw;
    margin-bottom: 5.20833vw;
    height: auto;
  }
}
