@charset "UTF-8";
/*===============================================
●mian.css 画面の横幅が770px以上
===============================================*/
@media screen and (min-width: 770px) {
  body {
    background-size: 100%;
    color: #ffffff;
    font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro",
      "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
    font-size: 15px;
    line-height: 31px;
    min-width: 1200px;
  }
  /*=========================
▼▼共通▼▼
===========================*/
  .pc_none {
    display: none;
  }
  .roboto {
    font-family: "Roboto", sans-serif;
    font-weight: bold;
  }
  .auto {
    width: 1200px;
    margin: 0 auto;
  }
  img {
    display: block;
  }

  .title_box {
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
  }
  .title_box h3 {
    font-size: 44px;
    font-weight: bold;
    line-height: 1.3;
    margin-top: -2px;
  }
  .pager {
    font-size: 15px;
    text-align: center;
  }
  .pager a {
    display: block;
    width: 100%;
    height: 100%;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    border-radius: 2px;
  }
  .pager a:hover {
    background-color: #384c37;
  }
  .pager .on {
    background-color: #384c37;
  }
  .pager .prev_btn,
  .pager .next_btn {
    display: inline-block;
    vertical-align: top;
    width: 29px;
    height: 29px;
  }
  .pager .prev_btn img,
  .pager .next_btn img {
    width: 8px;
    display: block;
    margin: 0 auto;
    padding-top: 8px;
  }
  .pager ul {
    display: inline-block;
  }
  .pager ul li {
    width: 29px;
    height: 29px;
    display: inline-block;
    vertical-align: top;
    margin: 0 2px;
  }
  #inpage_link .title_box h3 {
    font-size: 34px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: -2px;
  }
  .link_btn a {
    width: 100%;
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 7px 0 5px;
    border: 2px solid #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(../img/share/icon_05.png);
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 8px;
    transition-duration: 0.3s;
  }
  .link_btn a:hover {
    background-color: #ffffff;
    color: #384c37;
    background-image: url(../img/share/icon_05_g.png);
  }
  .slide_in_image {
    overflow: hidden;
    opacity: 0;
  }
  .isPlay {
    -ms-animation-name: play;
    -ms-animation-duration: 0.5s;
    -ms-animation-fill-mode: forwards;
    -ms-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);

    animation-name: play;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
    opacity: 1 !important;
  }

  /*//isPlayの疑似要素にマスクとマスクを外すアニメーションを設定 */
  .isPlay:before {
    -ms-animation-name: maskOut;
    -ms-animation-duration: 0.5s;
    -ms-animation-delay: 0.5s;
    -ms-animation-fill-mode: forwards;
    -ms-animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
    animation-name: maskOut;
    animation-duration: 0.5s;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: #384c37;
  }
  /*//「slide_in_image」をスライドインする*/
  @keyframes play {
    from {
      -ms-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }

    to {
      -ms-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
    }
  }

  /*//マスク要素をスライドアウトする*/
  @keyframes maskOut {
    from {
      -ms-transform: translateX(0);
      transform: translateX(0);
    }

    to {
      -ms-transform: translateX(100%);
      transform: translateX(100%);
    }
  }
  /*イメージのホバー時拡大アニメーション*/
  .hover_img {
    overflow: hidden;
  }
  .hover_img img {
    transform: scale(1);
    transition-duration: 0.6s;
  }
  .hover_img:hover img {
    transform: scale(1.06);
    transition-duration: 0.6s;
  }
  /*=========================
▲▲共通▲▲
===========================*/
  #container {
    width: calc(100% - 40px);
    clear: both;
    float: left;
    margin: 0 20px 20px;
    background-image: url(../img/share/ptn_bg_01.jpg);
    background-repeat: repeat;
    background-position: left top;
    background-size: 600px;
    overflow: hidden;
  }
  header {
    width: 100%;
    float: left;
    clear: both;
    margin-left: auto;
    margin-right: auto;
    color: #000000;
    background-color: #ffffff;
    position: relative;
    z-index: 99;
  }
  header .header_top {
    width: 100%;
    padding-top: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: right;
    max-width: 1200px;
    margin: 0 auto;
  }
  header .header_top .auto {
  width: 380px;
  margin: 0 0 0 auto;
  }
  header .header_top .tel_contact {
    width: 152px;
    display: inline-block;
    margin-top: -3px;
    margin-right: 12px;
  }
  header .header_top .tel_contact .tel {
    display: inline-block;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    padding-left: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(../img/share/icon_01.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 11px;
  }
  header .header_top .tel_contact .time {
    font-size: 10px;
    line-height: 1;
    margin-top: -4px;
  }
  header .header_top .contact_link {
    width: 125px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    font-size: 11px;
    line-height: 1.3;
    margin-right: 14px;
  }
  header .header_top .contact_link a {
    display: block;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    padding: 9px 0 7px;
    padding-left: 20px;
    background-color: #384c37;
    border: 2px solid #384c37;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(../img/share/icon_02.png);
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 14px;
    transition-duration: 0.3s;
  }
  header .header_top .contact_link a:hover {
    color: #384c37;
    background-color: #ffffff;
    border: 2px solid #384c37;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(../img/share/icon_02_g.png);
  }
  header .header_top .sns_link {
    width: 44px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding-top: 9px;
  }
  header .header_top .sns_link p {
    display: inline-block;
    vertical-align: top;
    margin-right: 6px;
  }
  header .header_top .sns_link p:last-of-type {
    margin-right: 0;
  }
  header .header_bottom {
    width: 100%;
    height: 66px;
    float: left;
    clear: both;
    position: relative;
  }
  header .header_bottom .auto {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
  }
  header .header_bottom h1 {
    width: 207px;
  }
  header .header_bottom .pc_nav > ul > li {
    display: inline-block;
    vertical-align: bottom;
    margin-right: 36px;
    padding-top: 10px;
  }
  header .header_bottom .pc_nav ul li:last-of-type {
    margin-right: 0;
  }
  header .header_bottom .pc_nav ul li a {
    width: 100%;
    font-weight: bold;
    display: block;
    text-decoration: none;
    position: relative;
  }
  header .header_bottom .pc_nav > ul > li > a::after {
    content: "";
    width: 100%;
    height: 4px;
    background-color: #384c37;
    position: absolute;
    bottom: -25px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  header .header_bottom .pc_nav ul li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  header .header_bottom .pc_nav ul li .box {
    list-style: none;
    position: absolute;
    z-index: 9999;
    left: 0;
    width: 100%;
    margin: 0;
    opacity: 0;
    top: 50%;
    background-image: url(../img/share/ptn_bg_04.jpg);
    background-size: 600px;
    visibility: hidden;
    transition: 0.5s;
    padding: 30px 0 30px;
    text-align: center;
  }
  header .header_bottom .pc_nav ul li:hover .box {
    top: 100%;
    visibility: visible;
    opacity: 1;
  }
  header .header_bottom .pc_nav ul li .box .link {
    display: inline-block;
    vertical-align: middle;
  }
  header .header_bottom .pc_nav ul li .box ul {
    width: 100%;
    display: table-row;
  }
  header .header_bottom .pc_nav ul li .box ul li {
    display: table-cell;
    padding: 5px 46px 5px 0;
    vertical-align: top;
    text-align: left;
  }
  header .header_bottom .pc_nav ul li .box ul li a {
    display: block;
    text-decoration: none;
    color: #ffffff;
    padding: 6px 0 4px;
    position: relative;
  }
  header .header_bottom .pc_nav ul li .box ul li a::after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    bottom: -1px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  header .header_bottom .pc_nav ul li .box ul li a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  header .header_bottom .pc_nav ul li .box ul li .jp_text {
    font-size: 11px;
    line-height: 11px;
    margin-bottom: 4px;
  }
  header .header_bottom .pc_nav ul li .box ul li .eng {
    font-size: 18.5px;
    line-height: 1.3;
  }
  #contents {
    width: 100%;
    clear: both;
    float: left;
    margin-bottom: 199px;
  }
  #main_img {
    width: 100%;
    height: 407px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    border-bottom: 45px solid #556954;
  }
  #main_img .page_title {
    padding-top: 172px;
    font-size: 12px;
    line-height: 1.3;
  }
  #main_img .page_title h2 {
    font-size: 40px;
    font-weight: bold;
  }
  .breadcrumb {
    width: 1200px;
    height: 33px;
    clear: both;
    color: #c5d3c4;
    font-size: 11px;
    margin: 0 auto -33px;
    position: relative;
    z-index: 99;
  }
  .breadcrumb li {
    display: inline-block;
  }
  .breadcrumb li::before {
    content: " > ";
  }
  .breadcrumb li:first-of-type::before {
    display: none;
  }
  .breadcrumb li a {
    color: #c5d3c4;
  }

  footer {
    width: 100%;
    clear: both;
    float: left;
    padding-bottom: 16px;
  }
  footer .footer_top {
    width: 100%;
    margin-bottom: 50px;
  }
  footer .footer_top ul {
    width: 100%;
    letter-spacing: -0.4em;
    text-align: center;
  }
  footer .footer_top ul li {
    width: 291px;
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
    margin-right: 12px;
  }
  footer .footer_top ul li:last-of-type {
    margin-right: 0;
  }
  footer .footer_top ul li a {
    width: 100%;
    height: 120px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding-top: 34px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
  }
  footer .footer_top ul li a figure {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  footer .footer_top ul li a figure img {
    width: 100%;
    display: block;
  }
  footer .footer_top ul li a p {
    position: relative;
    z-index: 9;
    font-size: 12px;
    line-height: 1.5;
  }
  footer .footer_top ul li a p .eng {
    font-size: 23px;
  }
  footer .footer_center {
    width: 100%;
    padding: 38px 0 47px;
    text-align: center;
    background-image: url(../img/share/ptn_bg_03.jpg);
    background-repeat: repeat;
    background-position: left top;
    background-size: 2px;
    position: relative;
  }
  footer .footer_center .auto {
    position: relative;
    z-index: 9;
  }
  footer .footer_center h3 {
    font-size: 12px;
    margin-bottom: 6px;
  }
  footer .footer_center h3 .eng {
    font-size: 42px;
    font-weight: bold;
  }
  footer .footer_center .text {
    margin-bottom: 24px;
  }
  footer .footer_center .tel_contact {
    width: 290px;
    display: inline-block;
    text-align: right;
    margin-right: 26px;
    margin-top: 9px;
  }
  footer .footer_center .tel_contact .tel {
    font-size: 37px;
    line-height: 1.1;
    padding-left: 39px;
    background-image: url(../img/share/icon_06.png);
    background-repeat: no-repeat;
    background-position: left 14px center;
    background-size: 19px;
  }
  footer .footer_center .tel_contact .tel a {
    color: #fff;
    text-decoration: none;
  }
  footer .footer_center .tel_contact .time {
    font-size: 12px;
    line-height: 1.5;
  }
  footer .footer_center .contact_link {
    width: 353px;
    height: 75px;
    display: inline-block;
    vertical-align: top;
  }
  footer .footer_center .contact_link a {
    width: 100%;
    height: 100%;
    display: block;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    padding-top: 21px;
    padding-left: 35px;
    border: 3px solid #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: url(../img/share/icon_02.png);
    background-repeat: no-repeat;
    background-position: 58px 28px;
    background-size: 24px;
    transition-duration: 0.3s;
  }
  footer .footer_center .contact_link a:hover {
    background-color: #ffffff;
    color: #384c37;
    background-image: url(../img/share/icon_02_g.png);
  }
  footer .footer_bottom {
    width: 100%;
    float: left;
    clear: both;
    padding-top: 37px;
    padding-bottom: 34px;
  }
  footer .footer_bottom .auto {
    position: relative;
  }
  footer .footer_bottom .auto .block {
    display: flex;
  }
  footer .footer_bottom .left_box {
    width: 230px;
    margin-right: 70px;
    order: 1;
  }
  footer .footer_bottom .left_box h2.logo {
    margin-bottom: 20px;
  }
  footer .footer_bottom .left_box .address {
    line-height: 24px;
    margin-bottom: 18px;
  }
  footer .footer_bottom .left_box .tel,
  footer .footer_bottom .left_box .fax {
    font-size: 15px;
    font-weight: bold;
  }
  footer .footer_bottom .left_box .tel a,
  footer .footer_bottom .left_box .fax a {
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
  }
  footer .footer_bottom .left_box p .number {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    padding-left: 6px;
  }
  footer .footer_bottom .right_box {
    width: 356px;
    font-size: 14px;
    padding-top: 25px;
    order: 4;
  }
  footer .footer_bottom .right_box dl {
    width: 100%;
    letter-spacing: -0.4em;
  }
  footer .footer_bottom .right_box dl:last-of-type {
    margin-bottom: 20px;
  }
  footer .footer_bottom .right_box dl dt {
    width: 181px;
    padding-right: 9px;
    margin-right: 86px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: right;
    letter-spacing: normal;
    display: inline-block;
    vertical-align: middle;
    position: relative;
  }
  footer .footer_bottom .right_box dl dt::after {
    content: "";
    width: 86px;
    height: 1px;
    background-color: #ffffff;
    position: absolute;
    bottom: 15px;
    right: -86px;
  }
  footer .footer_bottom .right_box dl dd {
    width: 88px;
    padding-left: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: middle;
    display: inline-block;
    text-align: left;
  }
  footer .footer_bottom .right_box dl dd ul {
    letter-spacing: -0.4em;
  }
  footer .footer_bottom .right_box dl dd li {
    vertical-align: middle;
    letter-spacing: normal;
    display: inline-block;
    margin-right: 10px;
  }
  footer .footer_bottom .right_box dl dd li:last-of-type {
    margin-right: 0;
  }
  footer .footer_bottom .right_box .logo_nav {
    display: flex;
    justify-content: flex-end;
  }
  footer .footer_bottom .logo_nav_list {
    display: flex;
    align-items: flex-start;
    background-color: #9aaa96;
    padding: 22px 22px 16px;
    margin: 0;
    list-style: none;
  }
  footer .footer_bottom .center_nav {
    width: 484px;
    line-height: 32px;
    display: flex;
    order: 2;
  }
  footer .footer_bottom .center_nav ul,
  footer .footer_bottom .center_nav dl {
    width: 242px;
    float: left;
  }
  footer .footer_bottom .center_nav ul a,
  footer .footer_bottom .center_nav dl a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
  }
  footer .footer_bottom .center_nav dl dd a {
    position: relative;
  }
  footer .footer_bottom .center_nav dl dd span::before {
    content: "";
    width: 4px;
    height: 1px;
    background-color: #ffffff;
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 9px;
  }
  footer .footer_bottom .center_nav a::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    position: absolute;
    bottom: -8px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  footer .footer_bottom .center_nav a:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  footer .footer_bottom .logo_nav_list img {
    display: block;
    width: auto;
    height: 104px;
  }
  footer .footer_bottom .logo_nav_list li {
    text-align: center;
  }
  footer .footer_bottom .logo_fsc {
    margin-right: 14px;
  }
  footer .footer_bottom .logo_pefc {
    margin-right: 14px;
  }
  footer .footer_bottom .logo_nav_list .caption {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.4;
    color: #384c37;
  }
  footer .footer_bottom .copy {
    width: 100%;
    float: left;
    font-size: 11px;
    clear: both;
    margin-top: 10px;
  }
  #back-top {
    width: 65px;
    display: none;
    bottom: 56px;
    right: 60px;
    clear: both;
    float: left;
    position: fixed;
    z-index: 99;
  }
  #back-top img {
    width: 100%;
    height: auto;
    display: block;
  }
}
