/*background image*/
/*flex*/
/*hover base anim*/
/*custom anim*/
/*liner anim*/
/*content data-text*/
/* text indent letter spaxing*/
/*serif font*/
/*san_serif font*/
/*google font*/
/*shadow*/
/**/
@keyframes bgdraw {
  0% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(1) translateX(100%); } }

/*product_detail*/
.product_detail {
  /**/
  /**/
  /**/
  /*stock_bnr*/
  /**/
  /**/
  /*product_slider*/ }
  .product_detail .tree_list {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap; }
    .product_detail .tree_list li {
      text-align: center;
      width: calc( (100% / 8) - ( (18px * 7) / 8));
      margin-right: 18px;
      margin-bottom: 51px; }
      .product_detail .tree_list li a {
        display: block; }
      .product_detail .tree_list li img {
        line-height: 0; }
      .product_detail .tree_list li span {
        display: block;
        padding: 1em 0 0;
        letter-spacing: .05em; }
      .product_detail .tree_list li:nth-child(8n) {
        margin-right: 0px; }
  @media screen and (max-width: 1680px) {
    .product_detail .tree_list li {
      width: calc( (100% / 7) - ( (18px * 6) / 7)); }
      .product_detail .tree_list li:nth-child(8n) {
        margin-right: 18px; }
      .product_detail .tree_list li:nth-child(7n) {
        margin-right: 0px; } }
  @media screen and (max-width: 1520px) {
    .product_detail .tree_list li {
      width: calc( (100% / 6) - ( (18px * 5) / 6)); }
      .product_detail .tree_list li:nth-child(8n),
      .product_detail .tree_list li:nth-child(7n) {
        margin-right: 18px; }
      .product_detail .tree_list li:nth-child(6n) {
        margin-right: 0px; } }
  @media screen and (max-width: 1370px) {
    .product_detail .tree_list li {
      width: calc( (100% / 5) - ( (18px * 4) / 5)); }
      .product_detail .tree_list li:nth-child(8n),
      .product_detail .tree_list li:nth-child(7n),
      .product_detail .tree_list li:nth-child(6n) {
        margin-right: 18px; }
      .product_detail .tree_list li:nth-child(5n) {
        margin-right: 0px; } }
  @media screen and (max-width: 1140px) {
    .product_detail .tree_list li {
      width: calc( (100% / 4) - ( (18px * 3) / 4)); }
      .product_detail .tree_list li:nth-child(8n),
      .product_detail .tree_list li:nth-child(7n),
      .product_detail .tree_list li:nth-child(6n),
      .product_detail .tree_list li:nth-child(5n) {
        margin-right: 18px; }
      .product_detail .tree_list li:nth-child(4n) {
        margin-right: 0px; } }
  @media screen and (max-width: 768px) {
    .product_detail .contents_header .tit {
      font-size: 20px;
      line-height: 1.5; }
      .product_detail .contents_header .tit br {
        display: block; }
    .product_detail .tree_list li {
      width: calc( (100% / 3) - ( (18px * 2) / 3));
      margin-bottom: 32px; }
      .product_detail .tree_list li:nth-child(8n),
      .product_detail .tree_list li:nth-child(7n),
      .product_detail .tree_list li:nth-child(6n),
      .product_detail .tree_list li:nth-child(5n),
      .product_detail .tree_list li:nth-child(4n) {
        margin-right: 18px; }
      .product_detail .tree_list li:nth-child(3n) {
        margin-right: 0px; } }
  @media screen and (max-width: 540px) {
    .product_detail .tree_list li {
      width: calc(50% - 9px);
      margin-bottom: 32px; }
      .product_detail .tree_list li span {
        font-size: 1em; }
      .product_detail .tree_list li:nth-child(8n),
      .product_detail .tree_list li:nth-child(7n),
      .product_detail .tree_list li:nth-child(6n),
      .product_detail .tree_list li:nth-child(5n),
      .product_detail .tree_list li:nth-child(4n),
      .product_detail .tree_list li:nth-child(3n) {
        margin-right: 18px; }
      .product_detail .tree_list li:nth-child(even) {
        margin-right: 0px; } }
  .product_detail .bnr_list {
    background-color: #000; }
    .product_detail .bnr_list .item {
      position: relative;
      display: block;
      text-align: center;
      background-color: #111;
      overflow: hidden;
      margin-bottom: 3px; }
      .product_detail .bnr_list .item:last-child {
        margin-bottom: 0px; }
      .product_detail .bnr_list .item:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(52, 62, 57, 0.31);
        z-index: 2;
        mix-blend-mode: multiply;
        transition-timing-function: ease;
        transition-duration: .5s; }
      .product_detail .bnr_list .item .item_title {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: .1em;
        color: #fff;
        padding: 0 20px;
        height: 453px;
        z-index: 3; }
        .product_detail .bnr_list .item .item_title:after {
          display: block;
          content: attr(data-text);
          font-size: 12px;
          color: #fff;
          letter-spacing: .12em;
          margin-top: .5em; }
        .product_detail .bnr_list .item .item_title br {
          display: none; }
      .product_detail .bnr_list .item .bg {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
        transition-timing-function: ease;
        transition-duration: .5s; }
      .product_detail .bnr_list .item:hover {
        opacity: 1; }
        .product_detail .bnr_list .item:hover .bg {
          transform: scale(1.05);
          filter: grayscale(100%); }
        .product_detail .bnr_list .item:hover:before {
          opacity: 0; }
      @media screen and (max-width: 1024px) {
        .product_detail .bnr_list .item .item_title {
          height: 365px; } }
      @media screen and (max-width: 768px) {
        .product_detail .bnr_list .item .item_title {
          height: 200px;
          font-size: 18px; }
          .product_detail .bnr_list .item .item_title:after {
            font-size: 10px; } }
  .product_detail .product_header {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap; }
    .product_detail .product_header .left {
      flex: 1;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      background-color: #4B4B4B; }
    .product_detail .product_header .right {
      background-color: #2F2F2F;
      padding: 129px 138px 129px 113px;
      color: #fff;
      max-width: 824px;
      box-sizing: border-box; }
      .product_detail .product_header .right .md {
        font-size: 40px;
        letter-spacing: .1em;
        margin-bottom: 1em;
        line-height: 1.5; }
      .product_detail .product_header .right .txt_box {
        min-height: 282px; }
      .product_detail .product_header .right .txt {
        font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
        font-size: 18px;
        line-height: 2.3;
        margin-bottom: 1.75em;
        letter-spacing: .01em;
        -webkit-font-smoothing: antialiased; }
        .product_detail .product_header .right .txt:last-child {
          margin-bottom: 0px; }
      .product_detail .product_header .right .txt2 {
        margin-bottom: 0px; }
      .product_detail .product_header .right .pro_btn {
        margin-top: 89px;
        text-align: center; }
        .product_detail .product_header .right .pro_btn a {
          display: block;
          font-size: 24px;
          padding: 1em 0em;
          min-width: 573px;
          border-radius: 50rem;
          letter-spacing: .045em;
          background-color: #fff; }
    @media screen and (max-width: 1500px) {
      .product_detail .product_header {
        display: block; }
        .product_detail .product_header .left {
          padding-top: 50%; }
        .product_detail .product_header .right {
          width: 100%;
          max-width: 100%;
          padding: 88px 100px 88px 100px; }
          .product_detail .product_header .right .txt_box {
            min-height: inherit; } }
    @media screen and (max-width: 1024px) {
      .product_detail .product_header {
        display: block; }
        .product_detail .product_header .right .txt_box {
          min-height: inherit; }
        .product_detail .product_header .right .pro_btn a {
          min-width: inherit; } }
    @media screen and (max-width: 1024px) {
      .product_detail .product_header {
        display: block; }
        .product_detail .product_header .left {
          padding-top: 70%; }
        .product_detail .product_header .right {
          padding: 45px 30px; }
          .product_detail .product_header .right .md {
            font-size: 20px; }
          .product_detail .product_header .right .txt_box {
            min-height: inherit; }
          .product_detail .product_header .right .txt {
            font-size: 13px; }
          .product_detail .product_header .right .pro_btn {
            margin-top: 42px; }
            .product_detail .product_header .right .pro_btn a {
              font-size: 16px;
              min-width: inherit; } }
  .product_detail .stock_bnr .link_bnr {
    position: relative;
    display: block;
    text-align: center;
    background-color: #111;
    overflow: hidden;
    padding: 185px 30px 118px; }
    .product_detail .stock_bnr .link_bnr:before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background-color: rgba(52, 62, 57, 0.31);
      z-index: 2;
      mix-blend-mode: multiply;
      transition-timing-function: ease;
      transition-duration: .5s; }
    .product_detail .stock_bnr .link_bnr .item_title {
      position: relative;
      font-size: 24px;
      line-height: 1.3;
      letter-spacing: .1em;
      color: #fff;
      z-index: 3; }
      .product_detail .stock_bnr .link_bnr .item_title:after {
        display: block;
        content: attr(data-text);
        font-size: 12px;
        color: #fff;
        letter-spacing: .12em;
        margin-top: .5em; }
      .product_detail .stock_bnr .link_bnr .item_title br {
        display: none; }
    .product_detail .stock_bnr .link_bnr .pro_btn {
      position: relative;
      z-index: 3;
      margin-top: 54px;
      text-align: center; }
      .product_detail .stock_bnr .link_bnr .pro_btn span {
        display: inline-block;
        font-size: 28px;
        padding: 0.5em 2.25em;
        border-radius: 50rem;
        letter-spacing: .045em;
        background-color: #fff;
        min-width: 436px; }
    .product_detail .stock_bnr .link_bnr .bg {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: 1;
      transition-timing-function: ease;
      transition-duration: .5s; }
    .product_detail .stock_bnr .link_bnr:hover {
      opacity: 1; }
      .product_detail .stock_bnr .link_bnr:hover .bg {
        transform: scale(1.05);
        filter: grayscale(100%); }
      .product_detail .stock_bnr .link_bnr:hover:before {
        opacity: 0; }
    @media screen and (max-width: 768px) {
      .product_detail .stock_bnr .link_bnr {
        padding: 92px 0 42px; }
        .product_detail .stock_bnr .link_bnr .item_title {
          font-size: 20px; }
          .product_detail .stock_bnr .link_bnr .item_title:after {
            font-size: 10px; }
        .product_detail .stock_bnr .link_bnr .pro_btn {
          margin-top: 32px; }
          .product_detail .stock_bnr .link_bnr .pro_btn span {
            font-size: 15px;
            min-width: inherit; } }
  .product_detail .other_nav .cont_in {
    max-width: 1644px;
    padding: 162px 0; }
  .product_detail .other_nav .item {
    display: block;
    margin-bottom: 72px; }
    .product_detail .other_nav .item:last-child {
      margin-bottom: 0px; }
    .product_detail .other_nav .item .item_in {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      flex-direction: row-reverse; }
    .product_detail .other_nav .item .txt_box {
      width: 521px;
      margin-right: 124px;
      padding: 48px 0; }
      .product_detail .other_nav .item .txt_box .md {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: .875em; }
      .product_detail .other_nav .item .txt_box .txt {
        font-size: 14px;
        line-height: 1.83;
        padding-bottom: 72px;
        font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
      .product_detail .other_nav .item .txt_box .link_btn {
        margin-left: auto; }
    .product_detail .other_nav .item .pic {
      position: relative;
      flex: 1;
      background-color: #eee; }
      .product_detail .other_nav .item .pic .img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover; }
  @media screen and (max-width: 1500px) {
    .product_detail .other_nav .item .txt_box {
      width: 380px;
      margin-right: 84px; } }
  @media screen and (max-width: 1200px) {
    .product_detail .other_nav .cont_in {
      padding: 102px 0; }
    .product_detail .other_nav .item .txt_box {
      width: 320px;
      margin-right: 64px; } }
  @media screen and (max-width: 1024px) {
    .product_detail .other_nav .cont_in {
      padding: 42px 0; }
    .product_detail .other_nav .item {
      margin-bottom: 52px; }
      .product_detail .other_nav .item .item_in {
        display: block; }
      .product_detail .other_nav .item .txt_box {
        width: 100%;
        margin-right: 0px;
        padding: 0px; }
        .product_detail .other_nav .item .txt_box .md {
          margin-top: 1.25em; }
        .product_detail .other_nav .item .txt_box .txt {
          padding-bottom: 32px; }
      .product_detail .other_nav .item .pic {
        width: 100%;
        padding-top: 56.25%; } }
  @media screen and (max-width: 768px) {
    .product_detail .other_nav .cont_in {
      padding: 42px 0; }
    .product_detail .other_nav .item {
      margin-bottom: 52px; }
      .product_detail .other_nav .item .item_in {
        display: block; }
      .product_detail .other_nav .item .txt_box {
        width: 100%;
        margin-right: 0px;
        padding: 0px; }
        .product_detail .other_nav .item .txt_box .md {
          margin-top: 1.25em;
          font-size: 18px; }
        .product_detail .other_nav .item .txt_box .txt {
          font-size: 12px;
          padding-bottom: 32px; } }
  .product_detail .product_items {
    padding: 130px 0 109px; }
    .product_detail .product_items .cont_in {
      width: calc(100% - 80px);
      max-width: 1644px;
      display: flex;
      align-items: stretch;
      flex-wrap: wrap;
      border-left: solid 1px #d6d6d6; }
      .product_detail .product_items .cont_in .item {
        width: 25%;
        box-sizing: border-box;
        padding: 0 0 90px;
        border-right: solid 1px #d6d6d6; }
        .product_detail .product_items .cont_in .item .pic {
          line-height: 0;
          margin-bottom: 30px;
          text-align: center; }
        .product_detail .product_items .cont_in .item .name,
        .product_detail .product_items .cont_in .item .txt {
          padding: 0 29px; }
        .product_detail .product_items .cont_in .item .name {
          font-size: 24px;
          line-height: 1;
          text-align: center;
          margin-bottom: 40px;
          letter-spacing: .045em; }
          .product_detail .product_items .cont_in .item .name:after {
            content: attr(data-text);
            display: block;
            font-size: 12px;
            letter-spacing: .0em;
            line-height: 1.3;
            margin-top: 1em; }
        .product_detail .product_items .cont_in .item .txt {
          line-height: 1.9;
          font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
    @media screen and (max-width: 1500px) {
      .product_detail .product_items .cont_in .item {
        width: 33.333%; } }
    @media screen and (max-width: 950px) {
      .product_detail .product_items .cont_in .item {
        width: 50%; } }
    @media screen and (max-width: 768px) {
      .product_detail .product_items {
        padding: 42px 0; }
        .product_detail .product_items .cont_in {
          width: calc(100% - 60px); }
          .product_detail .product_items .cont_in .item .pic {
            margin-bottom: 22px; }
          .product_detail .product_items .cont_in .item .name {
            font-size: 18px;
            margin-bottom: 30px; }
            .product_detail .product_items .cont_in .item .name:after {
              font-size: 10px; } }
    @media screen and (max-width: 640px) {
      .product_detail .product_items {
        padding: 42px 0;
        border-left: none; }
        .product_detail .product_items .cont_in {
          width: calc(100%); }
          .product_detail .product_items .cont_in .item {
            padding: 0 0px 52px; }
            .product_detail .product_items .cont_in .item .name,
            .product_detail .product_items .cont_in .item .txt {
              padding: 0 24px; }
            .product_detail .product_items .cont_in .item .name {
              font-size: 17px;
              margin-bottom: 16px; }
              .product_detail .product_items .cont_in .item .name:after {
                font-size: 8px; }
            .product_detail .product_items .cont_in .item .txt {
              font-size: 11px; }
            .product_detail .product_items .cont_in .item:nth-child(even) {
              border-right: none; } }
  .product_detail .product_slider {
    overflow: hidden; }
    .product_detail .product_slider .cont_in {
      width: calc(100% - 276px); }
      @media screen and (max-width: 768px) {
        .product_detail .product_slider .cont_in {
          width: calc(100%); } }
    .product_detail .product_slider .contents_header {
      margin-bottom: 56px; }
      @media screen and (max-width: 768px) {
        .product_detail .product_slider .contents_header {
          margin-bottom: 32px; } }
    .product_detail .product_slider .product_list_cont {
      padding: 91px 0;
      border-top: solid 1px #d6d6d6; }
      .product_detail .product_slider .product_list_cont .cont_in {
        max-width: 1644px;
        width: calc(100% - 80px);
        display: flex;
        flex-wrap: wrap; }
        .product_detail .product_slider .product_list_cont .cont_in li {
          width: 23%;
          line-height: 0;
          margin-right: 2.6%;
          margin-bottom: 2.6%; }
          .product_detail .product_slider .product_list_cont .cont_in li:nth-child(4n) {
            margin-right: 0px; }
      @media screen and (max-width: 1100px) {
        .product_detail .product_slider .product_list_cont .cont_in li {
          width: 30%;
          margin-bottom: 5%;
          margin-right: 5%; }
          .product_detail .product_slider .product_list_cont .cont_in li:nth-child(4n) {
            margin-right: 5%; }
          .product_detail .product_slider .product_list_cont .cont_in li:nth-child(3n) {
            margin-right: 0px; } }
      @media screen and (max-width: 768px) {
        .product_detail .product_slider .product_list_cont {
          padding: 42px 0 20px; }
          .product_detail .product_slider .product_list_cont .cont_in {
            width: calc(100% - 70px); }
            .product_detail .product_slider .product_list_cont .cont_in li {
              width: 47%;
              margin-bottom: 6%;
              margin-right: 6%; }
              .product_detail .product_slider .product_list_cont .cont_in li:nth-child(4n),
              .product_detail .product_slider .product_list_cont .cont_in li:nth-child(3n) {
                margin-right: 5%; }
              .product_detail .product_slider .product_list_cont .cont_in li:nth-child(even) {
                margin-right: 0px; } }
    .product_detail .product_slider .product_slider_cont {
      border-top: solid 1px #d6d6d6; }
      .product_detail .product_slider .product_slider_cont .slick-list {
        padding: 145px 0 218px; }
      .product_detail .product_slider .product_slider_cont .sliide_item {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        width: 1020px;
        margin-right: 95px; }
        .product_detail .product_slider .product_slider_cont .sliide_item:last-child {
          margin-bottom: 0px; }
        .product_detail .product_slider .product_slider_cont .sliide_item .pic {
          width: 46%;
          margin-left: 41px; }
        .product_detail .product_slider .product_slider_cont .sliide_item .txt_box {
          flex: 1;
          display: flex;
          justify-content: space-between;
          flex-direction: column;
          width: 100%; }
          .product_detail .product_slider .product_slider_cont .sliide_item .txt_box .md {
            font-size: 31px;
            line-height: 1.2;
            margin-bottom: 33px; }
            .product_detail .product_slider .product_slider_cont .sliide_item .txt_box .md:before {
              display: block;
              content: attr(data-num);
              font-size: 59px;
              margin-bottom: 24px;
              line-height: 1; }
          .product_detail .product_slider .product_slider_cont .sliide_item .txt_box .txt {
            line-height: 2;
            font-size: 18px;
            font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
          .product_detail .product_slider .product_slider_cont .sliide_item .txt_box .list {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem; }
            .product_detail .product_slider .product_slider_cont .sliide_item .txt_box .list li {
              width: 49%;
              line-height: 0; }
              .product_detail .product_slider .product_slider_cont .sliide_item .txt_box .list li img {
                max-width: inherit;
                width: 100%; }
              .product_detail .product_slider .product_slider_cont .sliide_item .txt_box .list li span {
                display: block;
                text-align: center;
                font-size: 24px;
                line-height: 1.2;
                margin-top: .75em; }
        .product_detail .product_slider .product_slider_cont .sliide_item.num_2 {
          align-items: flex-start; }
      .product_detail .product_slider .product_slider_cont .slick-arrow {
        position: absolute;
        top: 50%;
        margin-top: -36px;
        background-color: #fff;
        border: solid 1px #b2b2b2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        z-index: 3;
        color: #111; }
        .product_detail .product_slider .product_slider_cont .slick-arrow.slick-next {
          right: -98px;
          transform: rotate(180deg); }
        .product_detail .product_slider .product_slider_cont .slick-arrow.slick-prev {
          left: -98px;
          line-height: 1; }
      @media screen and (max-width: 1330px) {
        .product_detail .product_slider .product_slider_cont .sliide_item {
          width: 700px;
          flex-direction: column-reverse;
          margin-right: 0px; }
          .product_detail .product_slider .product_slider_cont .sliide_item .pic {
            width: 100%;
            margin-left: 0px;
            margin-top: 52px; }
            .product_detail .product_slider .product_slider_cont .sliide_item .pic img {
              width: 100%; } }
      @media screen and (max-width: 768px) {
        .product_detail .product_slider .product_slider_cont {
          padding: 42px 0 42px; }
          .product_detail .product_slider .product_slider_cont .slick-list {
            padding: 0px; }
          .product_detail .product_slider .product_slider_cont .sliide_item {
            padding: 0 40px; }
            .product_detail .product_slider .product_slider_cont .sliide_item .pic {
              margin-top: 22px; }
            .product_detail .product_slider .product_slider_cont .sliide_item .txt_box .md {
              font-size: 22px;
              margin-bottom: 15px; }
              .product_detail .product_slider .product_slider_cont .sliide_item .txt_box .md:before {
                font-size: 34px;
                margin-bottom: 10px; }
            .product_detail .product_slider .product_slider_cont .sliide_item .txt_box .txt {
              font-size: 14px; }
            .product_detail .product_slider .product_slider_cont .sliide_item .list {
              margin-top: 2rem; } }

/*product_index*/
/*product_edge_table*/
.product_edge_table .page_contents {
  /**/ }
  .product_edge_table .page_contents .page_item {
    display: flex;
    align-items: stretch;
    flex-direction: row-reverse;
    justify-content: space-between;
    flex-wrap: wrap; }
  .product_edge_table .page_contents .txt_box {
    padding: 0 116px; }
    .product_edge_table .page_contents .txt_box .md {
      font-size: 40px;
      letter-spacing: .1em;
      margin-bottom: 1em;
      line-height: 1.5; }
    .product_edge_table .page_contents .txt_box .txt {
      font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
      font-size: 18px;
      line-height: 2.3;
      margin-bottom: 0em; }
      .product_edge_table .page_contents .txt_box .txt:last-child {
        margin-bottom: 0px; }
    .product_edge_table .page_contents .txt_box .txt2 {
      margin-bottom: 1.75em; }
  .product_edge_table .page_contents .pic_box {
    flex: 1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #444; }
  .product_edge_table .page_contents .blk_box {
    padding: 166px 0 226px;
    background-color: #070A0E;
    color: #fff; }
    .product_edge_table .page_contents .blk_box .page_item {
      flex-direction: row;
      margin-bottom: 207px; }
      .product_edge_table .page_contents .blk_box .page_item .pic_box {
        text-align: right;
        max-width: 49%; }
      .product_edge_table .page_contents .blk_box .page_item .txt_box {
        padding: 161px 116px; }
    .product_edge_table .page_contents .blk_box .page_item2 {
      flex-direction: row-reverse;
      margin-bottom: 0px; }
      .product_edge_table .page_contents .blk_box .page_item2 .txt_box {
        padding-bottom: 0px;
        padding-top: 0px;
        width: 55%; }
      .product_edge_table .page_contents .blk_box .page_item2 .pic_box {
        text-align: left;
        max-width: 36%; }
  @media screen and (max-width: 1800px) {
    .product_edge_table .page_contents .blk_box {
      padding: 136px 0 196px; }
      .product_edge_table .page_contents .blk_box .page_item {
        margin-bottom: 177px; }
        .product_edge_table .page_contents .blk_box .page_item .pic_box {
          text-align: right;
          max-width: 48%; }
        .product_edge_table .page_contents .blk_box .page_item .txt_box {
          padding: 161px 116px; }
      .product_edge_table .page_contents .blk_box .page_item2 {
        flex-direction: row;
        margin-bottom: 0px; }
        .product_edge_table .page_contents .blk_box .page_item2 .txt_box {
          padding-bottom: 0px;
          padding-top: 0px;
          padding-right: 0px;
          width: 64%; }
        .product_edge_table .page_contents .blk_box .page_item2 .pic_box {
          text-align: left;
          max-width: 36%; } }
  @media screen and (max-width: 1300px) {
    .product_edge_table .page_contents .blk_box {
      padding: 104px 0; }
      .product_edge_table .page_contents .blk_box .page_item {
        display: block; }
        .product_edge_table .page_contents .blk_box .page_item .txt_box {
          padding: 0 75px;
          box-sizing: border-box;
          width: 100%;
          margin-bottom: 75px; }
        .product_edge_table .page_contents .blk_box .page_item .pic_box {
          max-width: inherit;
          margin: 0 75px;
          box-sizing: border-box;
          padding-top: 50%; }
      .product_edge_table .page_contents .blk_box .page_item2 {
        display: block; }
        .product_edge_table .page_contents .blk_box .page_item2 .txt_box {
          padding: 0 75px; } }
  @media screen and (max-width: 768px) {
    .product_edge_table .page_contents .txt_box .md {
      font-size: 25px; }
    .product_edge_table .page_contents .txt_box .txt {
      font-size: 14px; }
      .product_edge_table .page_contents .txt_box .txt br {
        display: none; }
    .product_edge_table .page_contents .txt_box .txt2 {
      margin-bottom: 1.25em; }
    .product_edge_table .page_contents .blk_box {
      padding: 54px 0; }
      .product_edge_table .page_contents .blk_box .page_item {
        display: block;
        margin-bottom: 62px; }
        .product_edge_table .page_contents .blk_box .page_item .txt_box {
          padding: 0 35px;
          box-sizing: border-box;
          width: 100%;
          margin-bottom: 35px; }
        .product_edge_table .page_contents .blk_box .page_item .pic_box {
          max-width: inherit;
          margin: 0 35px;
          box-sizing: border-box;
          padding-top: 50%; }
      .product_edge_table .page_contents .blk_box .page_item2 {
        display: block;
        margin-bottom: 0px; }
        .product_edge_table .page_contents .blk_box .page_item2 .txt_box {
          padding: 0 35px; } }
  .product_edge_table .page_contents .white_box {
    padding: 117px 0 253px;
    margin-bottom: 0px; }
    .product_edge_table .page_contents .white_box .tit {
      text-align: center;
      padding: 0 75px;
      font-size: 40px;
      letter-spacing: .05em;
      line-height: 1.45;
      margin-bottom: 111px; }
    .product_edge_table .page_contents .white_box .pic img {
      width: 100%;
      height: auto; }
    .product_edge_table .page_contents .white_box .box_in {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap; }
      .product_edge_table .page_contents .white_box .box_in .pic_box {
        flex: 1;
        margin-right: 15%;
        padding-top: 13%; }
      .product_edge_table .page_contents .white_box .box_in .txt_box {
        width: 36%;
        padding: 0px; }
        .product_edge_table .page_contents .white_box .box_in .txt_box .pic {
          margin-bottom: 100px; }
  @media screen and (max-width: 1700px) {
    .product_edge_table .page_contents .white_box .box_in .pic_box {
      margin-right: 10%; }
    .product_edge_table .page_contents .white_box .box_in .txt_box {
      width: 46%; }
      .product_edge_table .page_contents .white_box .box_in .txt_box .pic {
        margin-bottom: 10%; } }
  @media screen and (max-width: 1200px) {
    .product_edge_table .page_contents .white_box .tit {
      text-align: center;
      padding: 0 35px;
      font-size: 40px; }
    .product_edge_table .page_contents .white_box .box_in {
      display: block; }
      .product_edge_table .page_contents .white_box .box_in .pic_box {
        width: 90%;
        flex: inherit;
        margin-right: 0%;
        padding-top: 0px;
        margin-bottom: 110px; }
      .product_edge_table .page_contents .white_box .box_in .txt_box {
        width: 90%;
        width: calc(100% - 150px);
        margin: 0 auto;
        display: flex;
        flex-direction: column-reverse; }
        .product_edge_table .page_contents .white_box .box_in .txt_box .pic {
          margin-bottom: 0%;
          margin-top: 103px; } }
  @media screen and (max-width: 1024px) {
    .product_edge_table .page_contents .white_box .box_in {
      display: block; }
      .product_edge_table .page_contents .white_box .box_in .pic_box {
        margin-bottom: 75px; }
      .product_edge_table .page_contents .white_box .box_in .txt_box .pic {
        margin-top: 75px; } }
  @media screen and (max-width: 768px) {
    .product_edge_table .page_contents .white_box {
      padding: 54px 0; }
      .product_edge_table .page_contents .white_box .tit {
        font-size: 25px;
        margin-bottom: 45px; }
      .product_edge_table .page_contents .white_box .box_in {
        display: block; }
        .product_edge_table .page_contents .white_box .box_in .pic_box {
          margin-bottom: 35px; }
        .product_edge_table .page_contents .white_box .box_in .txt_box {
          margin: 0 35px;
          width: calc(100% - 70px); }
          .product_edge_table .page_contents .white_box .box_in .txt_box .pic {
            margin-top: 35px; } }

.product_edge_table .edge_contents {
  padding: 123px 0 107px; }
  .product_edge_table .edge_contents .cont_in {
    max-width: 1644px; }
  .product_edge_table .edge_contents .contents_header {
    text-align: center; }
    .product_edge_table .edge_contents .contents_header .tit br {
      display: none; }

/**/
.popup_wrap {
  display: none; }

.mfp-bg.mfp-ready,
.mfp-container {
  position: fixed; }

.pop_cont {
  position: relative;
  width: 86%;
  max-width: 1000px;
  margin: 0 auto; }
  .pop_cont .pop_item {
    max-height: 80vh;
    background-color: #fff; }
    .pop_cont .pop_item .cont_in {
      width: 100%;
      padding: 58px;
      box-sizing: border-box;
      display: flex;
      align-items: flex-start;
      justify-content: space-between; }
      .pop_cont .pop_item .cont_in .pic {
        width: 440px;
        height: 440px;
        margin-right: 74px;
        background-color: #eee; }
      .pop_cont .pop_item .cont_in .txt_box {
        flex: 1; }
        .pop_cont .pop_item .cont_in .txt_box .md {
          font-size: 24px;
          line-height: 1.2;
          margin-bottom: 1em; }
        .pop_cont .pop_item .cont_in .txt_box .txt,
        .pop_cont .pop_item .cont_in .txt_box .dl {
          font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
        .pop_cont .pop_item .cont_in .txt_box .txt {
          line-height: 1.73;
          margin-bottom: 2em; }
        .pop_cont .pop_item .cont_in .txt_box .dl {
          font-size: 13px;
          display: flex;
          align-items: stretch;
          justify-content: space-between;
          flex-wrap: wrap; }
          .pop_cont .pop_item .cont_in .txt_box .dl dt,
          .pop_cont .pop_item .cont_in .txt_box .dl dd {
            padding: .75em 0;
            border-bottom: solid 1px #d6d6d6;
            line-height: 1.73; }
          .pop_cont .pop_item .cont_in .txt_box .dl dt {
            width: 80px;
            margin-right: 1em; }
          .pop_cont .pop_item .cont_in .txt_box .dl dd {
            flex: 1; }
          .pop_cont .pop_item .cont_in .txt_box .dl.first dt,
          .pop_cont .pop_item .cont_in .txt_box .dl.first dd {
            border-top: solid 1px #d6d6d6; }
      @media screen and (max-width: 768px) {
        .pop_cont .pop_item .cont_in {
          display: block;
          padding: 32px; }
          .pop_cont .pop_item .cont_in .pic {
            width: 100%;
            height: inherit;
            margin-right: 0px;
            margin-bottom: 2rem; } }

/*product_contract*/
.product_contract .page_contents_wrap {
  color: #000; }
  .product_contract .page_contents_wrap a {
    color: #000; }
  .product_contract .page_contents_wrap .cont_in {
    max-width: 1644px; }

.product_contract .contents_main {
  position: relative; }
  .product_contract .contents_main:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); }

.product_contract .contract01 {
  padding: 100px 0 120px;
  background-color: #f6f6f6; }
  .product_contract .contract01 .cont_in {
    max-width: 790px;
    text-align: center; }
  .product_contract .contract01 .logo {
    margin-bottom: 94px; }
    .product_contract .contract01 .logo img {
      width: 336px;
      filter: brightness(0) invert(0); }
  .product_contract .contract01 .md {
    font-size: 50px;
    letter-spacing: .05em;
    margin-bottom: 1em; }
  .product_contract .contract01 .txt {
    font-size: 18px;
    line-height: 1.95;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
  @media screen and (max-width: 768px) {
    .product_contract .contract01 {
      padding: 42px 0 52px; }
      .product_contract .contract01 .logo {
        margin-bottom: 42px; }
        .product_contract .contract01 .logo img {
          width: 160px; }
      .product_contract .contract01 .md {
        font-size: 22px; }
      .product_contract .contract01 .txt {
        font-size: 14px; } }

.product_contract .link a {
  position: relative;
  display: block;
  font-size: 25px;
  font-weight: bold;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  padding: 1.25em 1.25em;
  color: #fff;
  background-color: #000;
  box-sizing: border-box;
  overflow: hidden; }
  .product_contract .link a .md {
    position: relative;
    display: block;
    font-weight: bold;
    text-align: left;
    font-style: normal;
    z-index: 2; }
    .product_contract .link a .md br {
      display: none; }
  .product_contract .link a .icon {
    position: absolute;
    line-height: 0;
    right: 1.25em;
    top: 50%;
    transform: translateY(-50%);
    filter: brightness(1) invert(100);
    z-index: 2; }
  .product_contract .link a:before {
    content: "";
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .3s;
    background-color: #444;
    z-index: 1; }
  .product_contract .link a:hover {
    opacity: 1; }
    .product_contract .link a:hover:before {
      left: 0; }
  @media screen and (max-width: 768px) {
    .product_contract .link a {
      padding: 1em;
      font-size: 16px; }
      .product_contract .link a .md br {
        display: block; } }

.product_contract .contract02 {
  padding: 128px 0 157px; }
  .product_contract .contract02 .contents_header {
    margin-bottom: 106px;
    padding-bottom: 51px;
    border-bottom: solid 1px #ddd; }
  .product_contract .contract02 .stock_cont {
    margin-bottom: 125px;
    text-align: center; }
  .product_contract .contract02 .stock_md {
    font-size: 36px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    letter-spacing: .05em;
    margin-bottom: 1em;
    text-align: center; }
  .product_contract .contract02 .stock_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .product_contract .contract02 .stock_list .item {
      width: calc(50% - 12px); }
      .product_contract .contract02 .stock_list .item .pic {
        line-height: 0;
        margin-bottom: 24px; }
        .product_contract .contract02 .stock_list .item .pic img {
          max-width: inherit;
          width: 100%; }
  .product_contract .contract02 .tree_cont {
    margin-bottom: 0px; }
    .product_contract .contract02 .tree_cont .tree_txt {
      font-size: 18px;
      line-height: 1.95;
      font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
      max-width: 1005px;
      margin: 0 auto; }
    .product_contract .contract02 .tree_cont .tree_list {
      margin-top: 74px; }
      .product_contract .contract02 .tree_cont .tree_list li a {
        pointer-events: none; }
    .product_contract .contract02 .tree_cont .tree_btn a {
      display: block;
      font-size: 30px;
      font-weight: bold;
      padding: 1.5em;
      border: solid 1px #000;
      font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
      letter-spacing: .045em; }
      .product_contract .contract02 .tree_cont .tree_btn a:hover {
        opacity: 1;
        background-color: #000;
        color: #fff; }
  @media screen and (max-width: 1024px) {
    .product_contract .contract02 .stock_list .item {
      width: 100%;
      max-width: 712px;
      margin: 0 auto; }
      .product_contract .contract02 .stock_list .item:first-child {
        margin-bottom: 42px; } }
  @media screen and (max-width: 768px) {
    .product_contract .contract02 {
      padding: 52px 0; }
      .product_contract .contract02 .contents_header {
        margin-bottom: 32px;
        padding-bottom: 14px; }
        .product_contract .contract02 .contents_header .txt {
          margin-top: .5em; }
      .product_contract .contract02 .stock_md {
        font-size: 20px; }
      .product_contract .contract02 .stock_cont {
        margin-bottom: 0px; }
      .product_contract .contract02 .stock_list .item {
        width: 100%;
        max-width: 712px;
        margin: 0 auto; }
        .product_contract .contract02 .stock_list .item:first-child {
          margin-bottom: 42px; }
        .product_contract .contract02 .stock_list .item .pic {
          margin-bottom: 12px; }
      .product_contract .contract02 .tree_cont .tree_txt {
        font-size: 14px; }
      .product_contract .contract02 .tree_cont .tree_list {
        margin-top: 32px; }
      .product_contract .contract02 .tree_cont .tree_btn a {
        padding: 1em;
        font-size: 16px; } }

.product_contract .contract03 {
  background-color: #000;
  color: #fff;
  padding: 102px 0 120px; }
  .product_contract .contract03 .cont_in {
    max-width: 1370px; }
  .product_contract .contract03 .contents_header .txt {
    margin-top: .5em; }
  .product_contract .contract03 .link_btn {
    max-width: 420px; }
    .product_contract .contract03 .link_btn a {
      color: #fff; }
  .product_contract .contract03 .add_box {
    padding: 62px 58px;
    margin-top: 42px;
    border: solid 1px #fff; }
    .product_contract .contract03 .add_box .factory_txt {
      font-size: 18px;
      line-height: 1.9;
      max-width: 1027px;
      margin: 0 auto 48px;
      text-align: center;
      font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
    .product_contract .contract03 .add_box .factory_list {
      display: flex;
      align-items: stretch;
      flex-wrap: wrap;
      padding-top: 0px; }
      .product_contract .contract03 .add_box .factory_list .item {
        width: 33.3333%;
        box-sizing: border-box;
        padding: 0 16px 0px;
        border-right: solid 1px #fff;
        text-align: left;
        font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
        .product_contract .contract03 .add_box .factory_list .item .pic {
          line-height: 0;
          text-align: center;
          width: 100%;
          margin: 0px 0px 30px; }
        .product_contract .contract03 .add_box .factory_list .item .name,
        .product_contract .contract03 .add_box .factory_list .item .txt {
          padding: 0 29px; }
        .product_contract .contract03 .add_box .factory_list .item .name {
          position: relative;
          font-size: 24px;
          line-height: 1;
          margin-bottom: 10px;
          padding-bottom: 15px;
          letter-spacing: .045em;
          padding-left: 0px; }
          .product_contract .contract03 .add_box .factory_list .item .name:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 35px;
            height: 1px;
            background-color: #fff; }
          .product_contract .contract03 .add_box .factory_list .item .name:before {
            content: attr(data-text);
            display: block;
            font-size: 12px;
            letter-spacing: .0em;
            line-height: 1.3;
            margin-bottom: .5em; }
        .product_contract .contract03 .add_box .factory_list .item .txt {
          line-height: 1.8;
          padding: 0px; }
        .product_contract .contract03 .add_box .factory_list .item:last-child {
          border-right: none; }
    .product_contract .contract03 .add_box .sub_txt {
      margin-bottom: 1.75em;
      font-size: 18px;
      font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
      text-align: center; }
      .product_contract .contract03 .add_box .sub_txt br {
        display: none; }
    .product_contract .contract03 .add_box .contents_header .tit {
      font-size: 40px; }
    .product_contract .contract03 .add_box .strength_box {
      margin-bottom: 52px; }
      .product_contract .contract03 .add_box .strength_box .pic {
        margin-left: 0px !important; }
    .product_contract .contract03 .add_box .link a {
      background-color: #fa6a18; }
    @media screen and (max-width: 768px) {
      .product_contract .contract03 .add_box {
        padding: 22px 24px; }
        .product_contract .contract03 .add_box .factory_txt {
          font-size: 14px; }
        .product_contract .contract03 .add_box .contents_header .tit {
          font-size: 20px;
          margin-bottom: 1em; }
        .product_contract .contract03 .add_box .factory_list {
          display: block;
          padding-bottom: 0px; }
          .product_contract .contract03 .add_box .factory_list .item {
            width: 100%;
            padding: 0px;
            border-right: none;
            margin-bottom: 42px; }
        .product_contract .contract03 .add_box .sub_txt {
          font-size: 13px;
          line-height: 1.6; }
          .product_contract .contract03 .add_box .sub_txt br {
            display: block; } }
  .product_contract .contract03 .strength_box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 172px; }
    .product_contract .contract03 .strength_box:last-child {
      margin-bottom: 0px; }
    .product_contract .contract03 .strength_box .pic {
      width: 48.7%;
      margin-right: 37px; }
    .product_contract .contract03 .strength_box .txt_box {
      flex: 1;
      color: #fff; }
      .product_contract .contract03 .strength_box .txt_box .md {
        font-size: 47px;
        letter-spacing: .08em;
        line-height: 1.3; }
        .product_contract .contract03 .strength_box .txt_box .md:before {
          content: attr(data-num);
          display: block;
          font-size: 88px;
          letter-spacing: .05em;
          line-height: 1;
          margin-bottom: 18px; }
      .product_contract .contract03 .strength_box .txt_box .sub {
        font-size: 24px;
        letter-spacing: .045em;
        line-height: 1.4;
        margin-top: .5em;
        padding-top: .75em;
        border-top: solid 1px #FBFBFB;
        margin-bottom: 74px; }
      .product_contract .contract03 .strength_box .txt_box .txt {
        font-size: 18px;
        line-height: 1.8333;
        font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
      .product_contract .contract03 .strength_box .txt_box .link_btn {
        margin-left: auto;
        margin-top: 82px; }
    .product_contract .contract03 .strength_box:nth-child(even) {
      flex-direction: row-reverse; }
      .product_contract .contract03 .strength_box:nth-child(even) .pic {
        margin-right: 0px;
        margin-left: 37px; }
  @media screen and (max-width: 1500px) {
    .product_contract .contract03 .strength_box .txt_box .sub {
      margin-bottom: 34px; } }
  @media screen and (max-width: 1200px) {
    .product_contract .contract03 .strength_box .txt_box .md {
      font-size: 40px; }
      .product_contract .contract03 .strength_box .txt_box .md:before {
        font-size: 72px; }
    .product_contract .contract03 .strength_box .txt_box .sub {
      font-size: 22px;
      margin-bottom: 34px; } }
  @media screen and (max-width: 1024px) {
    .product_contract .contract03 .strength_box {
      display: block; }
      .product_contract .contract03 .strength_box .pic {
        width: 100%;
        margin: 0 0 32px !important;
        text-align: center; }
      .product_contract .contract03 .strength_box .txt_box .md {
        font-size: 40px; }
        .product_contract .contract03 .strength_box .txt_box .md:before {
          font-size: 72px; }
      .product_contract .contract03 .strength_box .txt_box .sub {
        font-size: 22px;
        margin-bottom: 34px; } }
  @media screen and (max-width: 768px) {
    .product_contract .contract03 {
      padding: 43px 0 53px; }
      .product_contract .contract03 .strength_box {
        display: block;
        margin-bottom: 53px; }
        .product_contract .contract03 .strength_box .pic {
          width: 100%;
          margin: 0 0 22px !important;
          text-align: center; }
        .product_contract .contract03 .strength_box .txt_box .md {
          font-size: 20px; }
          .product_contract .contract03 .strength_box .txt_box .md:before {
            font-size: 42px; }
        .product_contract .contract03 .strength_box .txt_box .sub {
          font-size: 17px;
          margin-bottom: 20px; }
        .product_contract .contract03 .strength_box .txt_box .txt {
          font-size: 14px; }
        .product_contract .contract03 .strength_box .txt_box .link_btn {
          margin-top: 32px; } }

.product_contract .contract04 {
  padding: 129px 0 106px; }
  .product_contract .contract04 .cont_in {
    display: flex;
    align-items: stretch;
    justify-content: space-between; }
  .product_contract .contract04 .pic {
    flex: 1;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; }
  .product_contract .contract04 .txt_box {
    width: 45%;
    margin-right: 72px; }
    .product_contract .contract04 .txt_box .tit {
      font-size: 45px;
      letter-spacing: .045em;
      margin-bottom: .375em; }
    .product_contract .contract04 .txt_box .txt {
      font-size: 20px;
      line-height: 1.8333;
      margin-bottom: 1.75em;
      font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
    .product_contract .contract04 .txt_box .item {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      flex-wrap: wrap;
      font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif; }
      .product_contract .contract04 .txt_box .item dt,
      .product_contract .contract04 .txt_box .item dd {
        font-size: 18px;
        padding: 1em 0;
        border-bottom: solid 1px #ddd; }
      .product_contract .contract04 .txt_box .item dt {
        width: 176px;
        margin-right: 16px; }
      .product_contract .contract04 .txt_box .item dd {
        flex: 1; }
      .product_contract .contract04 .txt_box .item.first dt,
      .product_contract .contract04 .txt_box .item.first dd {
        border-top: solid 1px #ddd; }
    .product_contract .contract04 .txt_box .link {
      margin-top: 47px; }
      .product_contract .contract04 .txt_box .link a {
        background-color: #fa6a18; }
  @media screen and (max-width: 1500px) {
    .product_contract .contract04 .cont_in {
      display: block; }
    .product_contract .contract04 .pic {
      width: 100%;
      height: 0;
      padding-top: 60%;
      margin-top: 52px; }
    .product_contract .contract04 .txt_box {
      width: 100%;
      margin-right: 0px; } }
  @media screen and (max-width: 768px) {
    .product_contract .contract04 {
      padding: 52px 0; }
      .product_contract .contract04 .cont_in {
        display: block; }
      .product_contract .contract04 .pic {
        width: 100%;
        height: 0;
        padding-top: 60%;
        margin-top: 42px; }
      .product_contract .contract04 .txt_box {
        width: 100%;
        margin-right: 0px; }
        .product_contract .contract04 .txt_box .tit {
          font-size: 20px; }
        .product_contract .contract04 .txt_box .txt {
          font-size: 14px; }
        .product_contract .contract04 .txt_box .item dt,
        .product_contract .contract04 .txt_box .item dd {
          font-size: 13px; }
        .product_contract .contract04 .txt_box .item dt {
          width: 80px; }
      .product_contract .contract04 .link {
        margin-top: 42px; } }
