@charset "UTF-8";

/* =============================================================================

access CSS

・最低価格保証用CSS「.access-×××」

上記はここに記述する

============================================================================= */


/* .SelectorName
----------------------------------------------------------------------------- */
.access-selectorName {
  @media (width > 640px) {
  }
  @media (width <= 640px) {
  }
}

/* 共通設定
----------------------------------------------------------------------------- */
.access-ttl {
  @media (width > 640px) {
  }
  @media (width <= 640px) {
    font-size: 1.6rem;
  }
}
.access-box {
  @media (width > 640px) {
    display: flex;
    justify-content: space-between;
  }
  @media (width <= 640px) {
    display: block;
  }
}
.access-table {
  @media (width <= 640px) {
    width:100%;
  }
  table {
    border-top:1px solid var(--cc-gray_line-A);
    border-left:1px solid var(--cc-gray_line-A);
    @media (width > 640px) {
      width: 66rem;
    }
    @media (width <= 640px) {
      width: 33rem;
    }
  }
  th,td {
    padding:1.6rem 0;
    width: 50%;
    border-top: 1px solid var(--cc-gray_line-A);
    border-bottom:1px solid var(--cc-gray_line-A);
    border-right:1px solid var(--cc-gray_line-A);
    vertical-align: middle;
    @media (width > 640px) {
      padding: 0.6rem 1.6rem;
    }
    @media (width <= 640px) {
      padding: 0.2rem 0.8rem;
    }
  }
  .th1 {
    background-color:rgb(from #DADADA r g b / .3);
    border-bottom: none;
  }
  .table-note {
    margin-top:.8rem;
    font-size: 1.4rem;
    line-height:2;
    letter-spacing:.10em;
    @media (width <= 640px) {
      font-size: 1.3rem;
    }
  }
  .table-note span {
    color: #ff0000;
  }
  .access-arrow {
    position: relative;
  }
  .access-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
    height: 2px;
    background-color: var(--cc-gray_text-A);
    @media (width > 640px) {
      right: 1.6rem;
      width: 2.9rem;
    }
    @media (width <= 640px) {
      right: 0.8rem;
      width: 2.1rem;
    }
  }
  .access-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    display: block;
    background-color: var(--cc-gray_text-A);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    @media (width > 640px) {
      right: 1.6rem;
      width: 1.3rem;
      height: 1rem;
      transform: translateY(-95%);
    }
    @media (width <= 640px) {
      right: 0.8rem;
      width: 1rem;
      height: 0.7rem;
      transform: translateY(-90%);
    }
  }
  /* CMSと連動 */
  .access-limited {
    th {
      border: 1px solid var(--cc-red-A);
      border-left: none;
    }
    tr {
      border-left: 1px solid var(--cc-red-A);
    }
    tr:first-child td {
      border-top: 1px solid var(--cc-red-A);
    }
    tr:last-child td {
      border-bottom: 1px solid var(--cc-red-A);
    }
  }
  .access-attention {
    color: #ff0000;
  }
  /* CMSと連動（ここまで） */
}

/* 見出し
----------------------------------------------------------------------------- */
.access .l-lowerpage-header-B{
  background-color: var(--cc-white-A);
  border-bottom: none;
}


/* ポイント
----------------------------------------------------------------------------- */
.access-points {
  h2 {
    text-align: center;
    @media (width > 640px) {
      margin-bottom: 10.4rem;
    }
    @media (width <= 640px) {
      margin-bottom: 4.8rem;
    }
  }
  .l-column4-A {
    @media (width > 640px) {
      gap: 4rem;
    }
    @media (width <= 640px) {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 2rem 1rem;
    }
  }
  .item-heading {
    position: relative;
    padding-top: 1.6rem;
    @media (width > 640px) {
      margin-bottom: 3.2rem;
    }
    @media (width <= 640px) {
      margin-bottom: 2rem;
    }
  }
  .item-heading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--cc-gray_line-A);
  }
  .item-heading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 5.8rem;
    height: 1px;
    background-color: var(--cc-red-A);
  }
  .item-heading .p-ff-castoro {
    display: block;
    color: var(--cc-red-A);
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.05em;
    @media (width > 640px) {
      margin-bottom: 1.6rem;
    }
    @media (width <= 640px) {
      margin-bottom: 1.9rem;
    }
  }
  .item-heading .p-ff-serif {
    display: block;
    letter-spacing: 0.16em;
    @media (width > 640px) {
      font-size: 2rem;
      line-height: 1.8;
    }
    @media (width <= 640px) {
      height: 4.4rem;
      font-size: 1.4rem;
      line-height: 1.6em;
    }
  }
  .column-item:nth-child(4) .p-ff-serif {
    @media (width <= 640px) {
      padding: 1.1rem 0;
    }
  }
  .item-img {
    margin-bottom: 0;
  }
  .access-googlemap {
    margin-bottom: 5.6rem;
  }
  .access-googlemap iframe {
    @media (width > 640px) {
      width: 100%;
      height: 56rem;
    }
    @media (width <= 640px) {
      width: 100%;
      height: 33rem;
    }
  }
  .p-tg-text-A {
    text-align: center;
  }
  .p-tg-text-A:nth-child(5) {
    @media (width > 640px) {
      margin-bottom: 4rem;
    }
    @media (width <= 640px) {
      margin-bottom: 3.2rem;
    }
  }
}


/* ホテルへのアクセス
----------------------------------------------------------------------------- */
.access-way {
  @media (width > 640px) {
  }
  @media (width <= 640px) {
    padding-top: 8rem;
  }
  h2 {
    @media (width > 640px) {
      margin-bottom: 8rem;
    }
    @media (width <= 640px) {
      margin-bottom: 7.2rem;
    }
  }
  .js-accordion-group:not(:last-child) {
    margin-bottom: 3.2rem;
  }
  .js-accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--cc-gray_line-A);
    @media (width > 640px) {
      padding-bottom: 1.8rem;
    }
    @media (width <= 640px) {
      padding-bottom: 1.5rem;
    }
  }
  .access-btn {
    display: flex;
    @media (width > 640px) {
      gap: 3.2rem;
    }
    @media (width <= 640px) {
      align-items: center;
      gap: 0.4rem;
    }
  }
  .access-btn .access-icon {
    @media (width > 640px) {
      width: 10.8rem;
      height: 6.4rem;
    }
    @media (width <= 640px) {
      padding-top: 0.5rem;
      width: 6rem;
      height: 3.6rem;
    }
  }
  .access-btn span {
    display: block;
  }
  .access-btn .p-tg-ja_heading-B {
    @media (width > 640px) {
      margin-bottom: 0.8rem;
    }
    @media (width <= 640px) {
      font-size: 1.6rem;
      margin-bottom: 0.4rem;
    }
  }
  .access-en {
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .js-accordion-button i {
    @media (width > 640px) {
      width: 2rem;
      height: 2rem;
    }
    @media (width <= 640px) {
      width: 1.2rem;
      height: 1.2rem;
    }
  }
  .js-accordion-target_inner {
    @media (width > 640px) {
      padding: 10.4rem 0 16.8rem;
    }
    @media (width <= 640px) {
      padding: 4rem 0 4.8rem;
    }
  }
}

/* 無料シャトルバス
----------------------------------------------------------------------------- */
.access-way01 {
  .access-box01 {
    @media (width > 640px) {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12rem;
      margin-bottom: 10.4rem;
    }
    @media (width <= 640px) {
      display: block;
      margin-bottom: 6.4rem;
    }
  }
  .access-box01 .access-ttl {
    text-align: center;
    @media (width > 640px) {
      margin-bottom: 4rem;
    }
    @media (width <= 640px) {
      margin-bottom: 2.4rem;
    }
  }
  .access-box01 dl {
    display: flex;
    background-color: var(--cc-gray_back-A);
    @media (width > 640px) {
      align-items: center;
      gap: 4.8rem;
      padding: 1.6rem 2.4rem;
    }
    @media (width <= 640px) {
      align-items: flex-start;
      gap: 2.4rem;
      margin-bottom: 2.4rem;
      padding: 1.6rem;
    }
  }
  .access-box01 dt {
    @media (width > 640px) {
      width: 8rem;
      text-align: center;
    }
    @media (width <= 640px) {
      width: 4rem;
    }
  }
  .access-box01 dd {
    position: relative;
  }
  .access-box01 dd::after {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 1px;
    height: 100%;
    background-color: var(--cc-gray_line-A);
    @media (width > 640px) {
      left: -2.4rem;
    }
    @media (width <= 640px) {
      left: -1.2rem;
    }
  }
  .access-box01 .access-img {
    @media (width > 640px) {
      width: 50rem;
    }
    @media (width <= 640px) {
      width: 100%;
    }
  }
  .access-box02 {
    @media (width > 640px) {
      margin-bottom: 10.4rem;
    }
    @media (width <= 640px) {
      margin-bottom: 6.4rem;
    }
  }
  .access-route {
    border-bottom: 1px solid var(--cc-black-A);
    @media (width > 640px) {
      margin-bottom: 5.6rem;
      padding-bottom: 1.6rem;
    }
    @media (width <= 640px) {
      margin-bottom: 2.4rem;
      padding-bottom: 1rem;
    }
  }
  .access-route .p-tg-text-A {
    @media (width > 640px) {
      padding-left: 2.4rem;
    }
    @media (width <= 640px) {
      display: block;
    }
  }
  .access-tablebox {
    display: flex;
    margin-bottom: 4.8rem;
    @media (width > 640px) {
      gap: 4rem;
    }
    @media (width <= 640px) {
      flex-direction: column;
      gap: 2.4rem;
    }
  }
  .access-box02 .access-mapbox {
    display: grid;
    margin-bottom: 3.6rem;
    @media (width > 640px) {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(2, 1fr);
      gap: 4rem 12rem;
    }
    @media (width <= 640px) {
      grid-template-rows: repeat(3, 1fr);
      gap: 4.8rem;
    }
  }
  .access-mapbox .p-tg-text-A {
    margin-bottom: 0.8rem;
  }
  ul {
    border: 1px solid var(--cc-gray_line-A);
    @media (width > 640px) {
      padding: 3.2rem 4rem;
      padding-left: 6rem;
    }
    @media (width <= 640px) {
      padding: 1.6rem;
      padding-left: 3.6rem;
    }
  }
  li:not(:last-child) {
    list-style-type: disc;
  }
  li:last-child {
    position: relative;
    display: flex;
  }
  li:last-child::before {
    content: "※";
    display: block;
    position: absolute;
    top: 0;
    @media (width > 640px) {
      left: -2.2rem;
    }
    @media (width <= 640px) {
      left: -1.9rem;
    }
  }
  li span {
    color: var(--cc-red-A);
  }
  .access-box03 .access-mapbox {
    margin-bottom: 3.2rem;
  }
  .access-box03 .access-subbox {
    @media (width > 640px) {
      width: 58rem;
    }
    @media (width <= 640px) {
      width: 100%;
    }
  }
}


/* 飛行機
----------------------------------------------------------------------------- */
.access-way02 {
  .access-box {
    @media (width > 640px) {
      padding-left: 4rem;
    }
    @media (width <= 640px) {
    }
  }
  .access-img {
    position: relative;
    @media (width > 640px) {
      width: 66rem;
    }
    @media (width <= 640px) {
      margin-bottom: 6.4rem;
      width: 100%;
    }
  }
  .access-img .access-link01 {
    position: absolute;
    @media (width > 640px) {
      min-height: 1.7rem;
      top: 67%;
      left: 16.5rem;
      gap: 1.2rem;
    }
    @media (width <= 640px) {
      min-height: 1.3rem;
      top: 73%;
      left: 8rem;
      gap: 0.6rem;
      font-size: 0.8rem;
    }
  }
  .access-img .access-link02 {
    position: absolute;
    @media (width > 640px) {
      min-height: 1.7rem;
      top: 67%;
      left: 38rem;
      gap: 1.2rem;
    }
    @media (width <= 640px) {
      min-height: 1.3rem;
      top: 73%;
      left: 18.5rem;
      gap: 0.6rem;
      font-size: 0.8rem;
    }
  }
  .access-img .access-link03 {
    position: absolute;
    @media (width > 640px) {
      min-height: 1.7rem;
      top: 51%;
      right: 9.5rem;
      gap: 1.2rem;
    }
    @media (width <= 640px) {
      min-height: 1.3rem;
      top: 55%;
      right: 4rem;
      gap: 0.6rem;
      font-size: 0.8rem;
    }
  }
  .access-txtbox {
    @media (width > 640px) {
      width: 54rem;
    }
    @media (width <= 640px) {
      width: 100%;
    }
  }
  .access-subbox:not(:last-child) {
    @media (width > 640px) {
      margin-bottom: 10.4rem;
    }
    @media (width <= 640px) {
      margin-bottom: 6.4rem;
    }
  }
  .access-ttl {
    @media (width > 640px) {
      margin-bottom: 1.6rem;
    }
    @media (width <= 640px) {
      margin-bottom: 2rem;
    }
  }
  .access-subbox .p-tg-text-A {
    margin-bottom: 0.8rem;
  }
  .l-button-A {
    margin: 0;
  }
}

/* JR札幌駅
----------------------------------------------------------------------------- */
.access-way03 {
  .access-box {
    @media (width > 640px) {
      padding-left: 4rem;
    }
    @media (width <= 640px) {
    }
  }
  .access-img {
    position: relative;
    @media (width > 640px) {
      width: 66rem;
    }
    @media (width <= 640px) {
      margin-bottom: 6.4rem;
      width: 100%;
    }
  }
  .access-link01 {
    position: absolute;
    min-height: 1.7rem;
    @media (width > 640px) {
      top: 36%;
      left: 3rem;
      gap: 1.2rem;
    }
    @media (width <= 640px) {
      top: 53%;
      left: 1rem;
      gap: 0.6rem;
      font-size: 0.8rem;
    }
  }
  .access-link02 {
    position: absolute;
    min-height: 1.7rem;
    @media (width > 640px) {
      top: 36%;
      left: 18.5rem;
      gap: 1.2rem;
    }
    @media (width <= 640px) {
      top: 53%;
      left: 9rem;
      gap: 0.6rem;
      font-size: 0.8rem;
    }
  }
  .access-link03 {
    position: absolute;
    min-height: 1.7rem;
    @media (width > 640px) {
      top: 36%;
      left: 33.5rem;
      gap: 1.2rem;
    }
    @media (width <= 640px) {
      top: 53%;
      left: 16.5rem;
      gap: 0.6rem;
      font-size: 0.8rem;
    }
  }
  .access-link04 {
    position: absolute;
    min-height: 1.7rem;
    @media (width > 640px) {
      top: 20%;
      right: 11.5rem;
      gap: 1.2rem;
    }
    @media (width <= 640px) {
      top: 30%;
      right: 5rem;
      gap: 0.6rem;
      font-size: 0.8rem;
    }
  }
  .access-txtbox {
    @media (width > 640px) {
      width: 54rem;
    }
    @media (width <= 640px) {
      width: 100%;
    }
  }
  .access-subbox:not(:last-child) {
    @media (width > 640px) {
      margin-bottom: 10.4rem;
    }
    @media (width <= 640px) {
      margin-bottom: 6.4rem;
    }
  }
  .access-ttl {
    @media (width > 640px) {
      margin-bottom: 1.6rem;
    }
    @media (width <= 640px) {
      margin-bottom: 2rem;
    }
  }
  .access-subbox .p-tg-text-A:not(:last-child) {
    margin-bottom: 0.8rem;
  }
  .l-button-A {
    margin: 0;
  }
}


/* 地下鉄
----------------------------------------------------------------------------- */
.access-way04 {
  .access-box {
    @media (width > 640px) {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    @media (width <= 640px) {
    }
  }
  dl {
    @media (width > 640px) {
    }
    @media (width <= 640px) {
      margin-bottom: 6.4rem;
    }
  }
  dd:not(:last-child) {
    margin-bottom: 3.2rem;
  }
  .access-ttl {
    @media (width > 640px) {
      margin-bottom: 1.6rem;
    }
    @media (width <= 640px) {
      margin-bottom: 3.2rem;
    }
  }
  .access-subttl {
    @media (width > 640px) {
      margin-bottom: 1.6rem;
    }
    @media (width <= 640px) {
      margin-bottom: 2rem;
    }
  }
  .p-tg-text-A {
    @media (width > 640px) {
      margin-bottom: 0.8rem;
    }
    @media (width <= 640px) {
      margin-bottom: 0.4rem;
    }
  }
  .l-button-A {
    margin: 0;
  }
  dl:last-child dd:last-child .p-tg-text-A {
    display: flex;
    gap: 0.8rem;
  }
  dl:last-child dd:last-child .p-tg-text-A span{
    display: block;
    width: 1.5rem;
  }
  dl:last-child dd:last-child .access-link {
    @media (width > 640px) {
      margin-left: 2.3rem;
    }
    @media (width <= 640px) {
    }
  }
}


/* 路線バス
----------------------------------------------------------------------------- */
.access-way05 {
  .access-box {
    @media (width > 640px) {
      padding-left: 4rem;
    }
    @media (width <= 640px) {
    }
  }
  .access-img {
    @media (width > 640px) {
      width: 66rem;
    }
    @media (width <= 640px) {
      margin-bottom: 6.4rem;
      width: 100%;
    }
  }
  .access-txtbox {
    @media (width > 640px) {
      width: 54rem;
    }
    @media (width <= 640px) {
      width: 100%;
    }
  }
  .access-subbox:not(:last-child) {
    @media (width > 640px) {
      margin-bottom: 10.4rem;
    }
    @media (width <= 640px) {
      margin-bottom: 6.4rem;
    }
  }
  .access-time {
    margin-bottom: 0.8rem;
  }
  .access-ttl {
    @media (width > 640px) {
      margin-bottom: 1.6rem;
    }
    @media (width <= 640px) {
      margin-bottom: 2rem;
    }
  }
  .access-subbox .p-tg-text-A:nth-child(3) {
    margin-top: 0.8rem;
  }
  .access-link {
    margin-top: 2.4rem;
  }
  .l-button-A {
    margin: 0;
  }
  .access-linkbox {
    display: flex;
    gap: 2.4rem;
    @media (width > 640px) {
    }
    @media (width <= 640px) {
      width: 22.5rem;
      flex-wrap: wrap;
    }
  }
}


/* 車
----------------------------------------------------------------------------- */
.access-way06 {
  .js-accordion-target_inner {
    padding-bottom: 0;
  }
  .access-ttl {
    text-align: center;
    @media (width > 640px) {
      margin-bottom: 10.4rem;
    }
    @media (width <= 640px) {
      margin-bottom: 6.4rem;
    }
  }
  .access-box {
    @media (width > 640px) {
      margin: 0 auto;
      display: grid;
      grid-template-columns: 50rem 16rem 1fr;
      grid-template-rows: 5.6rem 4.8rem 22.9rem 1fr;
      width: 118rem;
    }
    @media (width <= 640px) {
      width: 100%;
    }
  }
  .access-box .access-ttl {
    text-align: left;
    @media (width > 640px) {
      grid-column: 3 / 4;
      grid-row: 1 / 2;
    }
    @media (width <= 640px) {
      margin-bottom: 2.4rem;
    }
  }
  .access-img {
    @media (width > 640px) {
      grid-column: 1 / 2;
      grid-row: 1 / 3;
    }
    @media (width <= 640px) {
      margin-bottom: 2.4rem;
      width: 100%;
    }
  }
  .access-txtbox {
    @media (width > 640px) {
      grid-column: 3 / 4;
      grid-row: 3 / 5;
    }
    @media (width <= 640px) {
      width: 100%;
    }
  }
  .access-colorbg {
    margin-bottom: 1.6rem;
    background-color: var(--cc-gray_back-A);
    @media (width > 640px) {
      padding: 1.6rem 2.4rem;
    }
    @media (width <= 640px) {
      padding: 1.6rem;
    }
  }
  .access-info {
    @media (width > 640px) {
      padding: 1.6rem 2.4rem;
    }
    @media (width <= 640px) {
      padding: 1.6rem 0;
    }
  }
  .access-subttl {
    margin-bottom: 0.8rem;
  }
  .access-colorbg:nth-child(2) .access-subbox {
    display: flex;
    @media (width > 640px) {
      gap: 3.8rem;
    }
    @media (width <= 640px) {
      gap: 2.4rem;
    }
  }
  .access-colorbg:nth-child(2) .access-subbox:not(:last-child) {
    @media (width > 640px) {
      margin-bottom: 2rem;
    }
    @media (width <= 640px) {
      margin-bottom: 1.2rem;
    }
  }
  .access-colorbg:nth-child(2) .access-subbox dt {
    @media (width > 640px) {
      width: 11rem;
    }
    @media (width <= 640px) {
      width: 8.8rem;
    }
  }
  .access-colorbg:nth-child(2) .access-subbox dd {
    position: relative;
  }
  .access-colorbg:nth-child(2) .access-subbox dd::before {
    content: "";
    position: absolute;
    top: 0;
    display: block;
    width: 1px;
    height: 100%;
    background-color: var(--cc-gray_line-A);
    @media (width > 640px) {
      left: -2.4rem;
    }
    @media (width <= 640px) {
      left: -1.6rem;
    }
  }
  .access-info .access-subbox {
    margin-bottom: 0.8rem;
    @media (width > 640px) {
      display: flex;
      gap: 3rem;
    }
    @media (width <= 640px) {
    }
    dt {
      @media (width > 640px) {
        width: 12rem;
      }
      @media (width <= 640px) {
        width: 100%;
      }
    }
  }
}


/* 周辺情報
----------------------------------------------------------------------------- */
.access-nearby {
  background-color: var(--cc-gray_back-A);
  @media (width <= 640px) {
    padding-bottom: 6.4rem;
  }
  .l-heading-B {
    @media (width > 640px) {
      margin-bottom: 8rem;
    }
  }
  .access-subttl {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid var(--cc-gray_line-A);
    @media (width > 640px) {
      gap: 0.8rem;
      margin-bottom: 10.4rem;
      padding-bottom: 1.8rem;
    }
    @media (width <= 640px) {
      gap: 0.4rem;
      margin-bottom: 4rem;
      padding-bottom: 1.5rem;
    }
  }
  .acccess-subttl .p-tg-ja_heading-B {
    display: block;
  }
  .acccess-subttl .p-ff-castoro {
    display: block;
    font-size: 1.2rem;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .js-accordion-button {
    padding-top: 1.6rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-top: 1px solid var(--cc-black-A);
    @media (width > 640px) {
      gap: 1rem;
      margin-top: 8.0rem;
    }
    @media (width <= 640px) {
      gap: 0.8rem;
      margin-top: 3.2rem;
    }
  }
  .js-accordion-button[aria-expanded="true"] {
    display: none;
  }
  .js-accordion-button .access-more {
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0;
  }
  .js-accordion-button i {
    width: 1.2rem;
    height: 1.2rem;
  }
  .js-accordion-target_inner {
    @media (width > 640px) {
      padding-top: 8rem;
    }
    @media (width <= 640px) {
      padding-top: 4rem;
    }
  }
  .l-column3-A {
    @media (width > 640px) {
      gap: 10.8rem 5.8rem;
    }
    @media (width <= 640px) {
      gap: 3.2rem;
    }
  }
  .l-column3-A .item-img {
    margin-bottom: 2.4rem;
  }
  .l-column3-A .item-heading {
    margin-bottom: 0.8rem;
  }
  .l-column3-A .item-desc {
    @media (width > 640px) {
    }
    @media (width <= 640px) {
      line-height: 1.8;
      letter-spacing: 0.12em;
    }
  }
  .access-item02 .l-column3-A {
    @media (width > 640px) {
      gap: 8rem 5.8rem;
    }
    @media (width <= 640px) {
    }
  }
}