

/* URIHOサービスご紹介制度
----------------------------------------------------------------------------------------------- */
body {
  /* exdark > dark > fedault > light > exlight */
  /* ll > l > m > s > ss */
  --color-main: #14b4b4;
  --color-main-exlight: #cff0f0;
  --color-main-bg-exlight: #eaf5f4;
  --color-red: #f5646e;
  --color-orange: #fc8b28;
  --color-gray-light: #d4d4d4;
  --color-gray-exlight: #f6f6f6;
  --color-planb: #3c9600;
  --color-planc: #2869a0;

  font-family:
    "Noto Sans JP", sans-serif, "メイリオ", Meiryo, "ＭＳ Ｐゴシック"; /* ログイン中に遷移するとメイリオになるため一時記載 */
}
#introduction {
  font-size: 16px;
  text-align: center;
}

/* /対策ここまで */

/* ============================================
共通コンポーネント
============================================ */
#introduction .color-discount {
  color: var(--color-red);
}
#introduction .color-main {
  color: var(--color-main);
}
#introduction .color-plana {
  color: var(--color-main);
}
#introduction .color-planb {
  color: var(--color-planb);
}
#introduction .color-planc {
  color: var(--color-planc);
}
#introduction .color-bg-plana {
  background-color: var(--color-main);
}
#introduction .color-bg-planb {
  background-color: var(--color-planb);
}
#introduction .color-bg-planc {
  background-color: var(--color-planc);
}
#introduction .wrap-co-topicpath {
  padding-top: 20px;
  margin: 0;
  background-color: var(--color-main-bg-exlight);
}

/* ============================================
ヒーローセクション
============================================ */
.pre-wrap > section.hero-section {
  position: relative;
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
}
#introduction .hero-section .container {
  padding: 0 0 80px;
}
#introduction .hero-section .hero-header {
  padding: 40px 0 96px;
  text-align: center;
  background: var(--color-main-bg-exlight);
}
#introduction .hero-section .hero-header figure {
  margin-top: 32px;
}
#introduction .hero-section .hero-header figure img {
  width: 100%;
  max-width: 610px;
}
#introduction .hero-section .hero-title {
  font-size: 48px;
  line-height: 1.6;
  color: #ffffff;
  -webkit-text-stroke: 4px var(--color-planc);
  paint-order: stroke;
}
#introduction .hero-section .hero-title span {
  color: var(--color-main-exlight);
}
#introduction .hero-section .hero-subtitle {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.6;
}
#introduction .hero-section .hero-subtitle br {
  display: none;
}
#introduction .hero-section .highlight {
  font-weight: bold;
  color: #14b4b4;
}
#introduction .hero-section .hero-main {
  max-width: 900px;
  padding: 0 24px;
  margin: -104px auto 0;
}
#introduction .hero-section .hero-callout {
  position: absolute;
  bottom: -56px;
  left: 50%;
  width: 100%;
  max-width: 830px;
  font-size: 24px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 15%);
  transform: translateX(-50%);
}
#introduction .hero-section .hero-callout-text {
  padding: 20px 40px;
  color: var(--color-main);
  border: 1px solid var(--color-main);
}
#introduction .hero-section .hero-callout-highlight {
  font-weight: bold;
}
#introduction .hero-section .box01 {
  position: relative;
}
#introduction .hero-section .box01::after {
  position: absolute;
  bottom: -14px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-right: 12px solid transparent;
  border-bottom: 24px solid var(--color-main);
  border-left: 12px solid transparent;
  transform: translateX(-50%);
}
#introduction .hero-section .hero-cards {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
#introduction .hero-section .hero-card-box {
  padding: 0 0 16px;
  margin-bottom: 20px;
  text-align: center;
  background: #ffffff;
  box-shadow: 0 4px 12px rgb(0 0 0 / 10%);
}
#introduction .hero-section .hero-card-badge {
  padding: 12px 24px;
  margin-bottom: 24px;
  font-size: 20px;
  color: #ffffff;
}
#introduction .hero-section .badge-main {
  background: var(--color-main);
}
#introduction .hero-section .badge-blue {
  background: var(--color-planc);
}
#introduction .hero-section .hero-card-inner {
  display: grid;
  grid-template-areas: "image text";
  gap: 0 3%;
  align-items: center;
  max-width: 340px;
  padding: 0 20px;
  margin: 0 auto;
}
#introduction .hero-section .box02 .hero-card-inner {
  display: grid;
  grid-template-areas: "text image";
}
#introduction .hero-section .hero-card-icon {
  grid-area: image;
}
#introduction .hero-section .hero-card-period {
  margin-bottom: 12px;
  font-size: 20px;
}
#introduction .hero-section .hero-card-discount {
  margin-bottom: 8px;
  font-size: 36px;
}
#introduction .hero-section .discount-number {
  font-size: 72px;
  font-weight: bold;
  line-height: 1;
  color: var(--color-red);
}
#introduction .hero-section .discount-percent {
  font-weight: bold;
  color: var(--color-red);
}
#introduction .hero-section .discount-text {
  font-size: 24px;
  font-weight: bold;
}

/* TAB/SP */
@media screen and (width <= 940px) {
  #introduction .hero-section .hero-subtitle br {
    display: block;
  }
  #introduction .hero-section .discount-number {
    font-size: 48px;
  }
  #introduction .hero-section .discount-text {
    display: block;
    margin-top: 8px;
    font-size: 24px;
  }
}

/* SP */
@media screen and (width <= 670px) {
  #introduction .hero-section .hero-cards {
    gap: 10px;
  }
  #introduction .hero-section .hero-title {
    font-size: 32px;
  }
  #introduction .hero-section .hero-title span {
    display: block;
  }
  #introduction .hero-section .hero-subtitle {
    margin-top: 8px;
    font-size: 16px;
  }
  #introduction .hero-section .hero-card-icon {
    display: none;
  }
  #introduction .hero-section .hero-card-badge {
    padding: 8px 12px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.2;
  }
  #introduction .hero-section .hero-card-inner {
    display: block;
  }
  #introduction .hero-section .box02 .hero-card-inner {
    display: block;
  }
  #introduction .hero-section .hero-card-period {
    margin: 0;
    font-size: 14px;
  }
  #introduction .hero-section .hero-callout-text {
    padding: 8px 32px;
    font-size: 16px;
  }
  #introduction .hero-section .hero-callout-highlight {
    display: block;
  }
  #introduction .hero-section .hero-callout {
    bottom: -48px;
  }
}

/* ============================================
メリットセクション
============================================ */
#introduction .merit-section {
  padding: 0 40px;
}
#introduction .merit-section .container {
  max-width: 1100px;
  margin: 0 auto;
}
#introduction .merit-section .merit-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3%;
  padding: 56px 0;
  text-align: left;
  border-top: 1px solid var(--color-gray-light);
}
#introduction .merit-section .merit-layout.box01 {
  border: none;
}
#introduction .merit-section .merit-layout img {
  width: 100%;
  max-width: 630px;
}
#introduction .merit-section .merit-layout.box03 figure {
  padding: 4%;
  margin: 0 auto;
}
#introduction .merit-section .merit-layout.box03 img {
  max-width: 460px;
}
#introduction .merit-section .merit-number {
  position: relative;
  font-size: 80px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--color-main-exlight);
}
#introduction .merit-section .merit-label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
}
#introduction .merit-section .merit-title {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
}
#introduction .merit-section .underline-double {
  border-bottom: double 6px var(--color-orange);
}
#introduction .merit-section .merit-description {
  max-width: 460px;
  margin-top: 24px;
  line-height: 1.8;
}
#introduction .merit-section .merit-layout.box03 .merit-description br {
  display: none;
}
#introduction .merit-section .merit-visual .title {
  margin: 24px 0 32px;
  font-weight: bold;
}

/* 料金ボックス */
#introduction .merit-section .pricing-box {
  border-radius: 8px;
}
#introduction .merit-section .plan-card {
  padding: 24px;
  margin-top: 8px;
  font-weight: bold;
  background: var(--color-gray-exlight);
}
#introduction .merit-section .plan-pricing {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 8px 0 0;
  line-height: 2;
}
#introduction .merit-section .price-original {
  font-size: 24px;
  text-decoration: line-through;
}
#introduction .merit-section .plan-badge {
  position: relative;
  padding: 2px 12px;
  margin: 0 16px 0 32px;
  font-size: 14px;
  color: #ffffff;
  border-radius: 50px;
}
#introduction .merit-section .plan-badge::before {
  position: absolute;
  top: 35%;
  left: -16px;
  width: 0;
  height: 0;
  content: "";
  border-top: 6px solid var(--color-main);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  transform: translate(-50%, 50%) rotate(270deg);
}
#introduction .merit-section .plan-card.plan-b .plan-badge::before {
  border-top: 6px solid var(--color-planb);
}
#introduction .merit-section .plan-card.plan-c .plan-badge::before {
  border-top: 6px solid var(--color-planc);
}
#introduction .merit-section .price-discounted {
  margin-right: 16px;
  font-size: 24px;
  color: var(--color-red);
}
#introduction .merit-section .price-annual {
  display: inline-block;
  padding: 0 0 0 16px;
  border-left: 1px solid;
}

/*
#introduction .merit-section .plan-card {
  display: grid;
  grid-template-areas:
    "plan plan plan plan"
    "original badge discounted annual";
  gap: 10px 0 0;
  align-items: center;
  justify-content: space-around;
  padding: 24px;
  margin-top: 8px;
  font-weight: bold;
  background: var(--color-gray-exlight);
}
#introduction .merit-section .plan-header {
  display: inline;
  grid-area: plan;
}
#introduction .merit-section .plan-pricing {
  display: inline;
  line-height: 1.6;
}
#introduction .merit-section .plan-badge {
  position: relative;
  grid-area: badge;
  padding: 2px 12px;
  margin: 0 16px 0 32px;
  font-size: 14px;
  vertical-align: text-top;
  color: #ffffff;
  border-radius: 50px;
}
#introduction .merit-section .plan-badge::before {
  position: absolute;
  top: 10px;
  bottom: 0;
  left: -22px;
  width: 0;
  height: 0;
  content: "";
  border-top: 6px solid var(--color-main);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  transform: rotate(270deg);
}
#introduction .merit-section .plan-card.plan-b .plan-badge::before {
  border-top: 6px solid var(--color-planb);
}
#introduction .merit-section .plan-card.plan-c .plan-badge::before {
  border-top: 6px solid var(--color-planc);
}
#introduction .merit-section .price-original {
  grid-area: original;
  font-size: 24px;
  text-decoration: line-through;
}
#introduction .merit-section .price-discounted {
  grid-area: discounted;
  margin-right: 16px;
  font-size: 24px;
  line-height: 1;
  color: var(--color-red);
}
#introduction .merit-section .price-annual {
  display: inline-block;
  grid-area: annual;
  padding: 0 0 0 8px;
  margin-top: 10px;
  border-left: 1px solid;
}
*/

/* TAB/SP */
@media screen and (width <= 940px) {
  #introduction .merit-section .merit-layout {
    display: block;
  }
  #introduction .merit-section .merit-description {
    max-width: inherit;
  }
  #introduction .merit-section .merit-visual .title {
    margin-top: 32px;
  }
  #introduction .merit-section .merit-visual figure {
    text-align: center;
  }
  #introduction .merit-section .merit-title br:nth-child(1) {
    display: none;
  }
  #introduction .merit-section .merit-layout.box03 .merit-description br {
    display: block;
  }
  #introduction .merit-section .merit-layout.box03 figure {
    padding: 64px 0 0;
    margin: 0;
  }
  #introduction .merit-section .merit-layout.box03 br {
    display: block;
  }
  #introduction .step-section .step-area {
    gap: 20px;
  }
}

/* SP */
@media screen and (width <= 670px) {
  #introduction .merit-section {
    padding: 0 24px;
  }
  #introduction .merit-section .merit-layout {
    padding: 24px 0;
  }
  #introduction .merit-section .merit-number {
    font-size: 56px;
  }
  #introduction .merit-section .merit-title {
    font-size: 24px;
  }
  #introduction .merit-section .merit-title br:nth-child(1) {
    display: block;
  }
  #introduction .merit-section .plan-card {
    grid-template-areas:
      "plan plan plan"
      "original badge discounted"
      "annual annual annual";
    padding: 16px;
  }
  #introduction .merit-section .price-original {
    font-size: 20px;
  }
  #introduction .merit-section .price-discounted {
    font-size: 20px;
  }
  #introduction .merit-section .plan-badge {
    padding: 2px 8px;
    margin: 0 8px 0 24px;
  }
  #introduction .merit-section .price-annual {
    padding: 10px 0 0;
    margin-top: 0;
    border-left: none;
  }
  #introduction .merit-section .merit-layout.box03 figure {
    margin: 0 auto;
  }
}

/* ============================================
ステップセクション
============================================ */
#introduction .step-section {
  padding: 80px 40px;
  background-color: var(--color-main-bg-exlight);
}
#introduction .step-section .title {
  font-size: 24px;
  font-weight: bold;
}
#introduction .step-section .step-area {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 32px auto 0;
}
#introduction .step-section .step-content {
  position: relative;
  width: calc(100% - 30px);
  padding: 24px 32px;
  background-color: #ffffff;
}
#introduction .step-section .step-content img {
  height: 130px;
}
#introduction .step-section .step-content::before {
  position: absolute;
  top: 45%;
  right: -56px;
  width: 0;
  height: 0;
  content: "";
  border-top: 24px solid #ffffff;
  border-right: 24px solid transparent;
  border-left: 24px solid transparent;
  transform: translate(-50%, 50%) rotate(270deg);
}
#introduction .step-section .step-content:last-child::before {
  border-top: none;
}
#introduction .step-section .step-title {
  padding: 16px;
  margin: 8px 0 0;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid var(--color-gray-light);
}
#introduction .step-section .step-title br {
  display: none;
}
#introduction .step-section .step-content:nth-child(3) .step-title {
  color: var(--color-main);
  border-color: var(--color-main);
}
#introduction .step-section p {
  padding: 8px 0;
  line-height: 1.8;
  text-align: left;
}

/* TAB/SP */
@media screen and (width <= 940px) {
  #introduction .step-section .step-area {
    gap: 20px;
  }
  #introduction .step-section .step-title {
    font-size: 16px;
  }
  #introduction .step-section .step-title br {
    display: block;
  }
  #introduction .step-section .step-content {
    padding: 24px;
  }
}

/* SP */
@media screen and (width <= 670px) {
  #introduction .step-section .title {
    font-size: 20px;
  }
  #introduction .step-section .step-area {
    display: block;
  }
  #introduction .step-section .step-content::before {
    top: inherit;
    bottom: -20px;
    left: 50%;
    width: 0;
    height: 0;
    content: "";
    transform: translateX(-50%) rotate(0);
  }
  #introduction .step-section .step-content {
    width: auto;
    padding: 24px;
    margin-top: 24px;
  }
  #introduction .step-section .step-title br {
    display: none;
  }
}

/* ============================================
ご紹介セクション
============================================ */
#introduction .recommend-section {
  padding: 80px 40px 0;
}
#introduction .recommend-section .recommend-text {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.6;
}
#introduction .recommend-section .recommend-text br {
  display: none;
}
#introduction .recommend-section .recommend-text::before,
#introduction .recommend-section .recommend-text::after {
  position: absolute;
  top: -8px;
  width: 0;
  height: 0;
  padding: 20px;
  color: var(--color-gray-light);
  content: "";
  border-left: 3px solid;
  transform: rotate(-35deg);
}
#introduction .recommend-section .recommend-text::before {
  left: -20px;
}
#introduction .recommend-section .recommend-text::after {
  right: -20px;
  transform: rotate(-145deg);
}
#introduction .recommend-section .recommendation-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 40px auto 0;
}
#introduction .recommend-section li {
  display: flex;
  gap: 16px;
  align-items: center;
  text-align: left;
}

/* TAB/SP */
@media screen and (width <= 940px) {
  #introduction .recommend-section .recommend-text {
    max-width: 560px;
    font-size: 20px;
  }
  #introduction .recommend-section .recommend-text br:nth-child(2) {
    display: block;
  }
  #introduction .recommend-section .recommend-text::before,
  #introduction .recommend-section .recommend-text::after {
    top: 0;
  }
  #introduction .recommend-section .recommend-text::before {
    left: 0;
  }
  #introduction .recommend-section .recommend-text::after {
    right: 0;
  }
  #introduction .recommend-section .recommendation-grid {
    flex-wrap: wrap;
    gap: 32px 24px;
    justify-content: space-evenly;
  }
}

/* SP */
@media screen and (width <= 670px) {
  #introduction .recommend-section {
    padding: 56px 24px 0;
  }
  #introduction .recommend-section .recommend-text br {
    display: block;
  }
  #introduction .recommend-section li {
    gap: 8px;
  }
  #introduction .recommend-section .recommendation-grid img {
    height: 40px;
  }
  #introduction .recommend-section .recommend-text {
    max-width: 400px;
    font-size: 16px;
    font-weight: bold;
  }
  #introduction .recommend-section .recommend-text::before,
  #introduction .recommend-section .recommend-text::after {
    border: none;
  }
}

/* ============================================
お問い合わせセクション
============================================ */
#introduction .contact-section {
  padding: 40px 40px 0;
}
#introduction .contact-section a {
  overflow: initial;
}
#introduction .contact-section .container {
  max-width: 1000px;
  padding: 32px 0;
  margin: 0 auto;
  background-color: var(--color-main-bg-exlight);
}
#introduction .contact-section .contact-text br {
  display: none;
}
#introduction .contact-section .contact-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 0;
}
#introduction .contact-section .contact-phone-link {
  position: relative;
  display: block;
  margin-left: 64px;
  font-size: 48px;
  font-weight: bold;
  color: #333333;
  text-decoration: none;
}
#introduction .contact-section .contact-phone-link::after {
  position: absolute;
  top: -10px;
  left: -64px;
  width: 50px;
  height: 50px;
  content: "";
  background: url(/web/img/pre/introduction/icon_phone.svg) no-repeat;
  background-position: 0 0;
  background-size: 50px;
}
#introduction .contact-section .contact-phone-hours {
  margin-left: 24px;
}
#introduction .contact-section .co-btn-new {
  margin-top: 40px;
}

/* SP */
@media screen and (width <= 670px) {
  #introduction .contact-section {
    padding: 40px 24px;
  }
  #introduction .contact-section .container {
    font-size: 14px;
  }
  #introduction .contact-section .contact-text br {
    display: block;
  }
  #introduction .contact-section .contact-phone {
    display: block;
  }
  #introduction .contact-section .contact-phone-link {
    max-width: 230px;
    padding-left: 32px;
    margin: 0 auto;
    font-size: 32px;
    text-align: center;
  }
  #introduction .contact-section .contact-phone-link::after {
    top: -2px;
    left: 0;
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
  #introduction .contact-section .contact-phone-hours {
    display: block;
    margin: 16px 0 0;
  }
}

/* ============================================
注意事項セクション
============================================ */
#introduction .notice-section {
  padding: 40px 40px 120px;
}
#introduction .notice-section .notice-box {
  max-width: 1200px;
  padding: 24px 40px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  border: 10px solid var(--color-gray-exlight);
}

/* TAB/SP */
@media screen and (width <= 940px) {
  #introduction .notice-section .notice-box {
    padding: 16px;
  }
}

/* SP */
@media screen and (width <= 670px) {
  #introduction .notice-section {
    padding: 8px 24px 120px;
  }
  #introduction .notice-section .notice-box {
    padding: 0;
    border: none;
  }
}
