﻿@charset "UTF-8";

/* NAME LOOP */


/* キービジュアル */

.block-loop-mv {
  background-color: #F2F9F7;
  width: 100%;
  height: auto;

  .block-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .item-img {
    img {
      display: block;
      max-width: 100%;
      height: auto;
      margin: -50px auto 0px;

    }
  }
}

@media screen and (min-width: 768px) {
  .block-loop-mv {
    padding: 88px 0 104px;

    .item-img {
      margin-top: 64px;
    }
  }
}

@media screen and (max-width: 767px) {
  .block-loop-mv {
    padding: 64px 0 80px;

    .item-img {
      margin-top: 64px;

      img {
        width: 100%;
      }
    }
  }
}


/* メッセージ */

.bg  {
  position: relative;
  background: url("/cms/nameroom/img/about/nameloop/bg.webp") no-repeat center / cover;
  width: 100%;
  height: auto;
}

.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* 数値を大きくするとより暗く */
  z-index: 1;
}

.overview {
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-shadow: 1 1 1px #000;
  z-index: 2;
}

.overview-text {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  text-shadow: 1 1 1px #000;
  z-index: 2;
}


/* 仕組み */

.structure {
  position: relative;
  font-size: 32px;
  font-weight: 700;
}

.structure-text {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.note-text {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
}


/* 参加方法 */

.block-how {
  background-color: #F2F9F7;
  width: 100%;
  height: auto;
  padding: 104px 0;

  .block-container {
    max-width: 1200px;
    margin: 0 auto;
  }  
}

.block-how h2 {
  position: relative;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  color: #27A6C5;  
}

.how-text {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: 500; 
  margin-top: 16px; 
}

.flow_chart {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 48px 0;
}

.chart {
  padding-left: 0;
  border-bottom: solid 1px #D0D1D2;
}

.chart > li {
  list-style-type: none;
  display: flex;
  padding: 32px 0;
  border-top: solid 1px #D0D1D2;
}

.chart > li dl dt {
  font-size: 24px;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 10px;
}

.chart > li .chart_icon {
  line-height: 1;
  font-size: 36px;
  font-weight: bold;
  color: #27A6C5;
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
}

.chart > li .chart_icon::before {
  content: 'STEP';
  font-size: 14px;
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
}

.chart > li .chart_icon::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 40px);
  background-color: #D0D1D2;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
}

.chart > li dl dd {
  margin: 4px 0 0;
  font-weight: 500;
}

.chart > li dl {
  width: calc(100% - 70px);
  margin-top: 0.8em;
}

.block-entrybtn-area {
  padding: 48px 0;
 
  .block-container {
    max-width: 400px;
    margin: 0 auto;
  }
}

.block-entry-btns {
  a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 4px;
    height: 80px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    filter: var(--shdw-10);
    transition: background-color 0.3s;

    &::after {
      content: "";
      display: block;
      position: absolute;
      top: 50%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
    }

    &.btn-entry {
      background-color: #27A6C5;
      color: #ffffff;

      &::after {
        right: 12px;
        width: 32px;
        height: 32px;
        margin-top: -16px;
        background-image: url(../img/common/icon_btn_contact.png);
      }

      &:hover {
        background-color: #9EE13B;
      }
    }
  }
}

@media screen and (max-width: 767px) {
  .overview-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
    color: #fff;
    text-shadow: 1 1 1px #000;
  }

}


