/*! Writen  by SCSS */
/* common */
.main_wrap {
  background-image: url("../images/share/main.jpg"); }
  @media screen and (max-width: 480px) {
    .main_wrap {
      background-image: url("../images/share/main_sp.jpg"); } }

/* common */
/* share */
.share_wrap {
  padding: 75px 0 110px; }
  @media screen and (max-width: 768px) {
    .share_wrap {
      padding: 70px 0; } }
  .share_wrap .share_img_wrap {
    text-align: left;
    max-width: 940px;
    margin: 0 auto; }
    @media screen and (max-width: 768px) {
      .share_wrap .share_img_wrap {
        text-align: center; } }
  .share_wrap .room_wrap {
    flex-wrap: wrap;
    row-gap: 1px; }
    .share_wrap .room_wrap .item {
      width: 50%;
      position: relative; }
      @media screen and (max-width: 480px) {
        .share_wrap .room_wrap .item {
          width: 100%; } }
      .share_wrap .room_wrap .item:nth-of-type(odd)::after {
        content: '';
        position: absolute;
        top: 0;
        display: block;
        box-sizing: border-box;
        width: 100%;
        border-right: 1px solid #fff;
        height: 100%;
        left: 0;
        pointer-events: none; }
        @media screen and (max-width: 480px) {
          .share_wrap .room_wrap .item:nth-of-type(odd)::after {
            display: none; } }
      .share_wrap .room_wrap .item .t_cap {
        text-shadow: 0px 0px 0px rgba(255, 255, 255, 0.9), 0px 0px 1px rgba(255, 255, 255, 0.9), 0px 0px 2px rgba(255, 255, 255, 0.9), 0px 0px 3px rgba(255, 255, 255, 0.9), 0px 0px 4px rgba(255, 255, 255, 0.9), 0px 0px 5px rgba(255, 255, 255, 0.9), 0px 0px 6px rgba(255, 255, 255, 0.9), 0px 0px 7px rgba(255, 255, 255, 0.9), 0px 0px 8px rgba(255, 255, 255, 0.9), 0px 0px 9px rgba(255, 255, 255, 0.9), 0px 0px 10px rgba(255, 255, 255, 0.9);
        font-weight: 600;
        font-feature-settings: 'palt';
        color: #000; }
        .share_wrap .room_wrap .item .t_cap .big {
          font-size: 160%;
          position: relative;
          color: #000;
          line-height: 1; }
        .share_wrap .room_wrap .item .t_cap .small {
          font-size: 100%;
          position: relative;
          color: #000;
          line-height: 1; }
      .share_wrap .room_wrap .item.card {
        width: 100%;
        background: url("../images/share/card_bg.jpg") no-repeat top left/cover;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
        font-weight: 600;
        font-feature-settings: 'palt';
        letter-spacing: 0.1em;
        line-height: 2;
        padding: 30px; }
        @media screen and (max-width: 768px) {
          .share_wrap .room_wrap .item.card {
            font-size: 2.5vw;
            font-weight: 500; } }
        @media screen and (max-width: 480px) {
          .share_wrap .room_wrap .item.card {
            padding: 20px;
            font-size: 3.5vw; } }
      .share_wrap .room_wrap .item.img1, .share_wrap .room_wrap .item.img2, .share_wrap .room_wrap .item.img3, .share_wrap .room_wrap .item.img4 {
        width: calc(50% - .5px); }
        .share_wrap .room_wrap .item.img1::before, .share_wrap .room_wrap .item.img2::before, .share_wrap .room_wrap .item.img3::before, .share_wrap .room_wrap .item.img4::before {
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          font-weight: 600;
          color: #fff;
          width: 34px;
          height: 34px;
          display: flex;
          justify-content: center;
          align-items: center;
          line-height: 1;
          background-color: #005351;
          font-size: 22px; }
          @media screen and (max-width: 768px) {
            .share_wrap .room_wrap .item.img1::before, .share_wrap .room_wrap .item.img2::before, .share_wrap .room_wrap .item.img3::before, .share_wrap .room_wrap .item.img4::before {
              font-size: 18px;
              width: 28px;
              height: 28px; } }
      .share_wrap .room_wrap .item.img1::before {
        content: '1'; }
      .share_wrap .room_wrap .item.img2::before {
        content: '2'; }
      .share_wrap .room_wrap .item.img3::before {
        content: '3'; }
      .share_wrap .room_wrap .item.img4::before {
        content: '4'; }

/* meeting */
.meeting {
  padding: 110px 0 20px; }
  @media screen and (max-width: 768px) {
    .meeting {
      padding: 70px 0 20px; } }
  .meeting h3 {
    font-weight: 600; }
    @media screen and (max-width: 768px) {
      .meeting h3 {
        font-size: 19px; } }
  .meeting .app_wrap {
    margin-bottom: 60px; }
  .meeting .app {
    max-width: 640px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between; }
    @media screen and (max-width: 480px) {
      .meeting .app {
        width: 75%;
        margin: 0 auto 40px; } }
    .meeting .app.last {
      margin-bottom: 0; }
    .meeting .app .left {
      width: 60px;
      background: #bbb0a7;
      font-size: 18px;
      color: #382d2b;
      display: flex;
      justify-content: center;
      align-items: center;
      writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
      letter-spacing: 0.15em; }
      @media screen and (max-width: 640px) {
        .meeting .app .left {
          width: 40px; } }
    .meeting .app .right {
      width: calc(100% - 90px);
      display: flex;
      justify-content: space-between;
      flex-direction: column; }
      @media screen and (max-width: 768px) {
        .meeting .app .right {
          width: calc(100% - 80px); } }
      @media screen and (max-width: 480px) {
        .meeting .app .right {
          width: calc(100% - 60px); } }
      .meeting .app .right .box {
        width: 100%;
        border: 5px solid #7a6e73;
        background: #FFF;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 30px;
        position: relative; }
        @media screen and (max-width: 768px) {
          .meeting .app .right .box {
            padding: 10px 30px; } }
        @media screen and (max-width: 640px) {
          .meeting .app .right .box {
            padding: 10px 15px;
            flex-wrap: wrap; } }
        .meeting .app .right .box.one {
          margin-bottom: 50px; }
          @media screen and (max-width: 640px) {
            .meeting .app .right .box.one {
              margin-bottom: 30px; } }
        .meeting .app .right .box:after {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          top: 100%;
          margin: auto;
          width: 0;
          height: 0;
          border: 40px solid transparent;
          border-top: 35px solid #7a6e73; }
          @media screen and (max-width: 640px) {
            .meeting .app .right .box:after {
              border: 30px solid transparent;
              border-top: 25px solid #7a6e73; } }
        .meeting .app .right .box.no_arrow:after {
          content: none; }
        .meeting .app .right .box .text {
          font-size: 16px;
          color: #382e2b;
          position: relative;
          left: 0;
          right: 196px; }
          @media screen and (max-width: 640px) {
            .meeting .app .right .box .text {
              font-size: 13px;
              width: 100%;
              margin-bottom: 15px; } }
        .meeting .app .right .box .illust {
          width: 176px;
          text-align: center; }
          @media screen and (max-width: 640px) {
            .meeting .app .right .box .illust {
              width: 100%;
              max-width: 176px;
              margin: 0 auto; } }

/* meeting */
/* share */

/*# sourceMappingURL=share.css.map */
