@charset "UTF-8";

#header {
  /* background-color:rgba(255,255,255, .8); */
  box-shadow: 0 1px 20px rgba(0,0,0,.2);
}


.page-mv {
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../../common/img/mv-bg.png);
    min-height: 70rem;
    padding-top: 25rem;

    @media screen and (max-width: 767px) {
      padding-top: 0;
      margin-top: 4rem;
      display: flex;
      justify-content: center;
      align-items: center;
      background-image: none;
      /* background: linear-gradient(to right, #22234B, #646573); */
      background-image: url(../../common/img/page-mv-bg-sp.png);
      background-size: cover;
      min-height: 40vh;
    }

    .mv-text-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #fff;

        @media screen and (max-width: 767px) {
          flex-direction: column;
          gap: 3rem;
          align-items: flex-start;
        }

        .common-title.type01 {
            font-size: 5.2rem;
            font-weight: bold;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2.5rem;

            @media screen and (max-width: 767px) {
              font-size: 3.5rem;
              gap: 1rem;
            }

            .title-main {
                letter-spacing: 10px;
                line-height: 1.5;
                font-family: "Zen Kaku Gothic New", sans-serif;

                @media screen and (max-width: 767px) {
                  letter-spacing: 4px;
                  font-size: 2.8rem;
                }
            }
            
            .title-sub {
                font-size: 2.5rem;
                text-transform: uppercase;
                font-family: "Oswald", sans-serif;
                font-weight: normal;

                @media screen and (max-width: 767px) {
                  font-size: 1.2rem;
                }
            }
        }
        
        .right-col {
            font-size: 3rem;
            letter-spacing: 2px;
            font-weight: 500;
            font-family: "Zen Kaku Gothic New", sans-serif;

            @media screen and (max-width: 767px) {
              font-size: 1.4rem;
            }
        }
        
    }
}

.common-page-title {
    writing-mode: vertical-rl;
    font-size: 3.6rem;
    font-weight: bold;
    letter-spacing: 10px;

    @media screen and (max-width: 767px) {
      font-size: 2.8rem;
      letter-spacing: 5px;
      writing-mode: horizontal-tb;
    }
}

body {
    position: relative;

    &::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background-size: contain;
        background-repeat: repeat;
        background-image: url(../../common/img/line-bg.png);
        width: 100%;
        height: 100%;
        z-index: -1;
        
        @media screen and (max-width: 767px) {
          background-image: url(../../common/img/line-bg-sp.png);
          height: 100%;
        }
    }
}

.common-table {

    @media screen and (max-width: 767px) {
      margin-top: 5rem;
    }

    & th, & td {
        border: 1px solid #C1C1C1;
        border-collapse: collapse;
        /* padding: 3rem 4rem; */
        box-sizing: border-box;
        padding-left: 4rem;
        height: 7.6rem;

        @media screen and (max-width: 767px) {
          padding: 2rem;
          height: auto;
        }
    }

    .item-label {
        font-size: 1.8rem;
        width: 26rem;
        max-width: 26rem;
        background-color: #F3F3F3;
        text-align: left;

        @media screen and (max-width: 767px) {
          width: 100%;
          max-width: 100%;
          display: block;
          text-align: left;
          font-size: 1.6rem;
        }

    }

    .item-text {
      padding: 2rem 0;
        padding-left: 4rem;
        line-height: 1.8;
        background-color: #fff;

        @media screen and (max-width: 767px) {
          display: block;
          font-size: 1.4rem;
          padding: 2rem;
        }

    }
}