@charset "UTF-8";

/* ==================================================
   1. ベース
   ================================================== */

.irareset {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  color: #232584;
}

.irareset img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.irareset a {
  transition: opacity 0.3s ease;
}

.irareset a:hover {
  opacity: 0.6;
}

/* ==================================================
   2. 共通（フォントなど）
   ================================================== */

.u-pc {
  display: block;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}

/* ==================================================
   3. モジュール
   ================================================== */

  /* メインボタン（product / scene） */
  .c-btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 240px;
    min-height: 58px;
    padding: 16px 40px;
    background-color: #232584;
    color: #fff000;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
  }
  
  .c-btn-main__text {
    flex-shrink: 0;
  }
  
  .c-btn-main__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }
  
  .c-btn-main__icon-svg {
    display: block;
    width: 24px;
    height: 24px;
  }
  
  /* ナビボタン（nav） */
  .c-btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }
  
  .c-btn-nav__text {
    display: block;
    flex-shrink: 0;
    line-height: 0;
  }
  
  .c-btn-nav__text img {
    display: block;
    width: auto;
    height: 36px;
  }
  
  @media screen and (max-width: 768px) {
    .c-btn-main {
      min-width: 0;
      width: 100%;
      max-width: 258px;
      font-size: 18px;
      padding: 16px 24px;
    }
  
    .c-btn-nav__text img {
      height: 30px;
    }
  }
  
/* ==================================================
   4. ページ個別
   ================================================== */

/* --- 4-1. ブランドナビ + KV --- */

.irareset-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.irareset-nav.is-pinned {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

.irareset-nav-spacer {
  display: none;
  height: 0;
}

.irareset-nav-spacer.is-active {
  display: block;
}

.irareset-nav__main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  background-color: #232584;
}

.irareset-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 88px;
  padding: 0 clamp(20px, 2.78vw, 40px);
  box-sizing: border-box;
}

.irareset-nav__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}

.irareset-nav__logo img {
  display: block;
  width: 88px;
  height: 78px;
}

.irareset-nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  width: auto;
  max-width: 859px;
  min-width: 0;
  height: 88px;
}

.irareset-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 4vw, 58px);
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}

.irareset-nav__sp-bar,
.irareset-nav__drawer {
  display: none;
}

.irareset-nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #fff000;
}

.irareset-nav__toggle-icon {
  position: relative;
  flex-shrink: 0;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff000;
  box-shadow: inset 0 0 0 2px #232584;
}

.irareset-nav__toggle-icon span {
  position: absolute;
  top: 10.5px;
  left: 7.25px;
  display: block;
  width: 14.5px;
  height: 2px;
  background-color: #232584;
  box-shadow: 0 4.5px 0 #232584, 0 9.5px 0 #232584;
}

.irareset-nav__toggle-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

/* KV（PC: Figmaフレーム1枚 / SP: 前景+CSS） */
.irareset-kv {
  width: 100%;
  line-height: 0;
}

.irareset-kv__inner {
  width: 100%;
}

.irareset-kv__figure,
.irareset-kv__figure img {
  display: block;
  width: 100%;
  height: auto;
}


@media screen and (max-width: 768px) {
  .irareset-nav__inner {
    display: none;
  }

  .irareset-nav__main {
    justify-content: flex-start;
    align-items: stretch;
    min-height: 54px;
  }

  .irareset-nav__sp-bar {
    display: flex;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    padding: 12px 20px;
  }

  .irareset-nav__sp-bar .irareset-nav__toggle {
    align-items: flex-start;
    min-height: 29px;
  }

  .irareset-nav__sp-bar .irareset-nav__toggle-icon {
    background-color: transparent;
    box-shadow: none;
    background-image: url("/special/irareset/images/nav-menu-icon.png");
    background-size: 29px 29px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .irareset-nav__sp-bar .irareset-nav__toggle-icon span {
    display: none;
  }

  .irareset-nav__sp-bar .irareset-nav__toggle-text {
    margin-top: 1px;
    color: #fff;
    line-height: normal;
  }

  body.is-nav-open .irareset-nav__sp-bar .irareset-nav__toggle-icon {
    background-color: #fff000;
    background-image: none;
    box-shadow: none;
  }

  body.is-nav-open .irareset-nav__sp-bar .irareset-nav__toggle-icon span {
    display: block;
    top: 13.5px;
    left: 7.25px;
    width: 14.5px;
    box-shadow: none;
    transform: rotate(45deg);
  }

  body.is-nav-open .irareset-nav__sp-bar .irareset-nav__toggle-icon::after {
    content: "";
    position: absolute;
    top: 13.5px;
    left: 7.25px;
    width: 14.5px;
    height: 2px;
    background-color: #232584;
    transform: rotate(-45deg);
  }

  body.is-nav-open .irareset-nav__sp-bar .irareset-nav__toggle-text {
    font-size: 20px;
  }

  .irareset-nav__drawer {
    display: none;
    position: fixed;
    top: 54px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 54px);
    overflow-y: auto;
    background-color: #232584;
    z-index: 99;
  }

  body.is-nav-open .irareset-nav__drawer {
    display: block;
  }

  .irareset-nav__drawer-list {
    margin: 0;
    padding: 40px 0 48px;
    list-style: none;
  }

  .irareset-nav__drawer-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 84px;
    padding: 24px 20px;
    text-decoration: none;
  }

  .irareset-nav__drawer-item img {
    width: auto;
    height: 36px;
  }

}

body.is-nav-open {
  overflow: hidden;
}

/* --- 4-2. CMバナー --- */
.irareset-banner {
  width: 100%;
  background-color: #fff000;
}

.irareset-banner__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 64px 20px 0;
  box-sizing: border-box;
}

.irareset-banner__inner img {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .irareset-banner__inner {
    padding: 48px 20px 0;
  }
}

/* --- 4-3. 商品訴求 --- */
.irareset-product {
  width: 100%;
  background-color: #fff000;
  padding-bottom: 64px;
}

.irareset-product__head {
  width: 100%;
}

.irareset-product__catch {
  margin: 0;
  line-height: 0;
}

.irareset-product__catch .u-pc,
.irareset-product__catch .u-sp {
  width: 100%;
  height: auto;
}

.irareset-product__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(24px, 6.5vw, 89px);
  width: calc(100% - clamp(32px, 4vw, 80px));
  max-width: 1008px;
  margin: 0 auto;
  padding: clamp(32px, 3vw, 32px) clamp(20px, 3.3vw, 39px) clamp(34px, 5vw, 50px) clamp(20px, 7vw, 84px);
  background-color: #fff;
  border: 3px solid #232584;
  box-sizing: border-box;
}

.irareset-product__visual {
  flex: 0 1 31.9%;
  width: 31.9%;
  max-width: 277px;
  min-width: 218px;
  margin-top: 19px;
}

.irareset-product__figure {
  margin: 0;
  line-height: 0;
  overflow: visible;
}

.irareset-product__figure img {
  display: block;
  width: 111.254%;
  max-width: none;
  margin-left: -12.218%;
  /* 38px @311px slot */
  height: auto;
}

.irareset-product__figure img.u-sp {
  display: none;
}

.irareset-product__content {
  flex: 1;
  margin-top: 21px;
  min-width: 0;
  max-width: 511px;
}

.irareset-product__points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.irareset-product__point {
  margin: 0;
}

.irareset-product__point-body {
  margin: 0;
  line-height: 0;
}

.irareset-product__point-body .u-pc,
.irareset-product__point-body .u-sp {
  width: 100%;
  height: auto;
}

.irareset-product__note {
  margin-top: 24px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
}

.irareset-product__note-sub {
  margin-top: 3px;
  font-size: 16px;
  line-height: 1.25;
}

.irareset-product__cta {
  margin: 32px 0 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .irareset-product {
    padding-bottom: 57px;
  }

  .irareset-product__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(20px, 6.15vw, 24px);
    width: calc(100% - 40px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(23px, 5.5vw, 26px) clamp(16px, 5.38vw, 21px) clamp(37px, 9.3vw, 48px);
  }

  .irareset-product__visual {
    flex: 0 1 auto;
    width: 75.286%;
    max-width: none;
    min-width: 0;
    margin-left: 8.85%;
  }

  .irareset-product__figure img.u-pc {
    display: none;
  }

  .irareset-product__figure img.u-sp {
    display: block;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .irareset-product__content {
    width: 100%;
    max-width: none;
    margin-top: 23px;
  }

  .irareset-product__points {
    gap: 10px;
  }

  .irareset-product__note {
    margin-top: 21px;
    font-size: 15px;
  }

  .irareset-product__note-sub {
    font-size: 14px;
    margin-top: 7px;
    line-height: 1.5;
  }

  .irareset-product__cta {
    margin-top: 29px;
  }
}

/* --- 4-4. こんな時に --- */

.irareset-scene-area {
  width: 100%;
}

.irareset-scene {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 5vw;
}

.irareset-scene::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 104.16666667vw;
  background-color: #fff000;
  background-image: url("/special/irareset/images/scene-wave-pc.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  pointer-events: none;
}

.irareset-scene-area__cta {
  margin: 0;
  padding: 58px 20px 100px;
  background-color: #fff000;
  text-align: center;
}

.irareset-scene__head {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.irareset-scene__title {
  margin: 0;
  line-height: 0;
}

.irareset-scene__title .u-pc,
.irareset-scene__title .u-sp {
  width: 100%;
  height: auto;
}

.irareset-scene__body {
  position: relative;
  z-index: 1;
  width: 100%;
  background-color: #232584;
}

.irareset-scene__inner {
  width: calc(100% - clamp(32px, 4vw, 80px));
  max-width: 1008px;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.irareset-scene__list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.irareset-scene__item {
  flex: 1 1 0;
  max-width: 326px;
}

.irareset-scene__card {
  margin: 0;
}

.irareset-scene__card-picture,
.irareset-scene__card-picture img {
  display: block;
  width: 100%;
  height: auto;
}

.irareset-scene__note {
  margin: 32px 0 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

/* よくあるご質問（scene 下部・黄エリア上の青ボタン） */
.irareset-scene-area__cta .c-btn-main--external .c-btn-main__icon {
  width: 20px;
  height: 20px;
}

.irareset-scene-area__cta .c-btn-main--external .c-btn-main__icon-svg--external {
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 768px) {
  .irareset-scene {
    padding-bottom: 13vw;
  }

  .irareset-scene-area__cta {
    padding: 41px 20px 97px;
  }

  .irareset-scene__list {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .irareset-scene__item {
    width: 100%;
    max-width: 100%;
  }

  .irareset-scene__note {
    padding: 0 4px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    line-height: 1.5;
  }

  .irareset-scene-area__cta .c-btn-main--external {
    width: 240px;
    max-width: none;
  }
}


/* footer */
footer {
  margin-top: 0;
}

@media screen and (max-width: 1200px) and (min-width: 769px) {
  .irareset-nav__logo img {
    width: clamp(64px, 7.3vw, 88px);
    height: auto;
  }

  .c-btn-nav__text img {
    width: auto;
    max-height: 32px;
  }
}
