@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 10px;
}

/* ------ headSection ------ */
#contents .headSection .innerBlock {
  width: 1240px;
}

#contents .headSection .ttl {
  float: none;
  width: auto;
}

#contents .headSection .ttl h1 {
  background: none;
  font-size: 24px;
}

#contents .headSection .ttl h1 em {
  font-size: 34px;
}

@media only screen and (max-width: 767px) {
  #contents .headSection .innerBlock {
    width: auto;
    padding: 0;
  }
  #contents .headSection .ttl h1 {
    font-size: 3.73333vw;
  }
  #contents .headSection .ttl h1 em {
    display: block;
    font-size: 6.13333vw;
  }
}
/* ----- font family ----- */
@media only screen and (max-width: 767px) {
  #contents {
    overflow: hidden;
  }
}
#contents b, #contents strong, #contents .bold {
  font-weight: bold;
}

/* visualSection */
.visualSection {
  background: #d11900;
}

.visualSection__inner {
  width: 1240px;
  margin: 0 auto;
}

.visualSection__inner picture {
  display: block;
  margin-left: -100px;
  margin-right: -100px;
}

@media only screen and (max-width: 767px) {
  .visualSection__inner {
    width: auto;
  }
  .visualSection__inner picture {
    margin: 0;
  }
  .visualSection__inner picture img {
    width: 100%;
    height: auto;
  }
}
/* banner */
.banner {
  padding: 50px 0;
}

.banner__inner {
  width: 1240px;
  margin: 0 auto;
}

.banner__items {
  display: flex;
  justify-content: space-between;
}

.banner__item {
  flex: 0 0 390px;
}

.banner__item__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
  font-size: 18px;
  font-weight: bold;
  color: #d11900;
}

.banner__item__title::before, .banner__item__title::after {
  font-size: 20px;
}

.banner__item__title::before {
  content: "|";
  transform: rotate(-35deg);
}

.banner__item__title::after {
  content: "|";
  transform: rotate(35deg);
}

@media only screen and (max-width: 767px) {
  .banner {
    padding: 8vw 0 11.33333vw;
  }
  .banner img {
    width: 100%;
    height: auto;
  }
  .banner__inner {
    width: auto;
    padding: 0 6.13333vw;
  }
  .banner__items {
    flex-direction: column;
    gap: 5.33333vw;
  }
  .banner__item {
    flex: 0 0 auto;
  }
  .banner__item__title {
    font-size: 4.8vw;
  }
  .banner__item__title::before, .banner__item__title::after {
    font-size: 5.33333vw;
  }
}
/* anchor */
.anchor {
  padding: 60px 0 70px;
  background: #fdf9e8;
}

.anchor__inner {
  width: 1240px;
  margin: 0 auto;
}

.anchor__items {
  display: flex;
  border-radius: 10px;
  background-color: #d11900;
  overflow: hidden;
}

.anchor__item {
  position: relative;
  flex: 1 0 0%;
}

.anchor__item + .anchor__item::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1px;
  height: 80px;
  background: #e06352;
}

.anchor__item__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 18px;
  background: url("/katsuyou/nenga/images/2026/icn_anc.svg") no-repeat right 20px center;
  background-size: 24px 24px;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  text-decoration: none !important;
}

.anchor__item__link > span {
  padding: 5px 15px 4px;
  background: #ffebac;
  border-radius: 13px;
  font-size: 16px;
  color: #d11900;
}

.anchor__item__link > em {
  font-size: 24px;
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .anchor {
    padding: 13.33333vw 0 9.33333vw;
  }
  .anchor__inner {
    width: auto;
    padding: 0 4vw;
  }
  .anchor__items {
    border-radius: 2.66667vw;
  }
  .anchor__item + .anchor__item::after {
    height: 24vw;
  }
  .anchor__item__link {
    padding: 2.66667vw 2.13333vw 6.13333vw;
    gap: 2.13333vw;
    background-position: center bottom 1.46667vw;
    background-size: 3.73333vw 3.73333vw;
  }
  .anchor__item__link > span {
    box-sizing: border-box;
    padding: 1.06667vw 0 0.93333vw;
    width: 100%;
    font-size: 3.2vw;
  }
  .anchor__item__link > em {
    font-size: 4.26667vw;
    line-height: 1.3;
  }
}
/* section */
.section {
  padding: 0 0 80px 0;
  background: #fdf9e8;
}

.section__title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px;
  text-align: center;
}

.section__title::before {
  position: absolute;
  left: 0;
  bottom: 24px;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #c2aa62;
  z-index: 1;
}

.section__title > i img {
  width: 71px;
  height: auto;
}

.section__title > span {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 400px;
  height: 50px;
  border: solid 3px #c2aa62;
  background: #ffebac;
  border-radius: 25px;
  font-size: 20px;
  color: #d11900;
  line-height: 1;
  z-index: 2;
}

.section__inner {
  width: 1240px;
  margin: 0 auto;
}

.section__subtitle {
  margin-bottom: 60px;
  padding-bottom: 24px;
  background: url("/katsuyou/nenga/images/2026/bg_h3-pc.png") no-repeat center bottom;
  font-size: 34px;
  text-align: center;
}

.section__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 330px;
  height: 50px;
  background: #d11900 url("/katsuyou/nenga/images/2026/icn_btn-w.svg") no-repeat right 14px center;
  background-size: 20px 20px;
  border-radius: 25px;
  color: #fff !important;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none !important;
  text-align: center;
}

.section__btn--design {
  width: 320px;
  height: 60px;
  background-position: right 16px center;
  background-size: 24px 24px;
  border-radius: 30px;
  font-size: 18px;
}

.section__btn:has(span) {
  justify-content: flex-start;
}

.section__btn > span {
  width: calc(100% - 20px);
  text-align: center;
}

.section__notes > li {
  display: table-row;
  font-size: 14px;
  line-height: 1.5;
}

.section__notes > li > span {
  display: table-cell;
  vertical-align: top;
}

.section__notes > li > span:nth-child(1) {
  white-space: nowrap;
}

.section__notes > li sup {
  display: inline-block;
  vertical-align: text-top;
}

@media only screen and (max-width: 767px) {
  .section {
    padding-bottom: 10.66667vw;
  }
  .section__title {
    margin-bottom: 4.66667vw;
  }
  .section__title::before {
    bottom: 3.73333vw;
    height: 0.53333vw;
  }
  .section__title > i img {
    width: 14.26667vw;
  }
  .section__title > span {
    width: 74.66667vw;
    height: 8vw;
    border-width: 0.66667vw;
    border-radius: 4vw;
    font-size: 4.26667vw;
  }
  .section__inner {
    width: auto;
    padding: 0 4vw;
  }
  .section__subtitle {
    margin-bottom: 8vw;
    padding-bottom: 4vw;
    background: url("/katsuyou/nenga/images/2026/bg_h3-sp.png") no-repeat center bottom;
    background-size: 8vw 0.8vw;
    font-size: 5.86667vw;
    line-height: 1.36;
  }
  .section__btn {
    width: 100% !important;
    height: 11.73333vw !important;
    background-position: right 3.33333vw center !important;
    background-size: 5.86667vw 5.86667vw !important;
    border-radius: 5.86667vw !important;
    font-size: 4.26667vw !important;
  }
  .section__btn > span {
    width: calc(100% - 5vw);
  }
  .section__notes > li {
    font-size: 3.2vw;
    line-height: 1.34;
  }
}
/* panel */
.panel {
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.panel__title {
  margin-bottom: 15px;
  font-size: 22px;
  line-height: 1.45;
  text-align: center;
}

.panel__title--icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: left;
}

.panel__lead {
  font-size: 16px;
  line-height: 1.625;
}

@media only screen and (max-width: 767px) {
  .panel {
    border-radius: 2.66667vw;
    box-shadow: 0 0 2vw 0 rgba(0, 0, 0, 0.1);
  }
  .panel__title {
    margin-bottom: 3.33333vw;
    font-size: 5.33333vw;
  }
  .panel__title--icon i {
    flex: 0 0 13.33333vw;
  }
  .panel__title--icon i img {
    width: 100%;
    height: auto;
  }
  .panel__lead {
    font-size: 4.26667vw;
  }
}
/* design */
.design__panel {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 100px;
}

.design__panel__img {
  flex: 0 0 600px;
}

.design__panel__body {
  flex: 1 0 0;
  padding: 40px;
}

.design__panel__body p {
  margin-bottom: 1.5em;
  font-size: 18px;
  line-height: 1.55;
}

.design__h4 {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.design__h5 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 0.6em;
  font-size: 24px;
  font-weight: bold;
  color: #d11900;
}

.design__h5::before, .design__h5::after {
  font-size: 24px;
}

.design__h5::before {
  content: "|";
  transform: rotate(-35deg);
}

.design__h5::after {
  content: "|";
  transform: rotate(35deg);
}

.design__howto {
  margin-bottom: 20px;
}

.design__howto + ul {
  margin-bottom: 60px;
}

.design__howto__body {
  padding: 40px;
}

.design__howto--sp {
  display: flex;
  flex-direction: row;
}

.design__howto--sp .design__howto__img {
  flex: 0 0 600px;
}

.design__howto--sp .design__howto__body {
  flex: 1 0 0;
  padding: 40px 40px 0;
}

.design__row {
  display: flex;
  gap: 40px;
}

.design__row > div {
  flex: 1 0 0;
}

.design__dlinfo {
  margin: 25px 0 30px;
  padding: 15px 19px 19px 19px;
  border: solid 1px #d11900;
}

.design__dlinfo dt {
  margin-bottom: 0.75em;
  font-size: 16px;
  font-weight: bold;
  color: #d11900;
  text-align: center;
}

.design__dlinfo--sp dd ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.design__dlinfo--pc ul {
  display: flex;
  gap: 20px;
}

.design__dlinfo--pc li {
  flex: 1 0 0%;
}

.design__dlinfo--pc a {
  position: relative;
  display: block;
  padding: 0.75em 0.5em;
  background: #194ca8;
  border-radius: 5px;
  color: #fff !important;
  text-decoration: none !important;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  font-weight: bold;
}

.design__dlinfo--pc a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 5px;
  height: 5px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: translateY(-50%) rotate(45deg);
}

.design__dlinfo--pc a sup {
  display: inline-block;
  vertical-align: text-top;
}

@media (min-width: 768px) {
  .design__dlinfo--sp {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .design__dlinfo--sp dt {
    margin-bottom: 0;
    text-align: left;
  }
  .design__dlinfo--line dd {
    display: flex;
    align-items: center;
    gap: 25px;
  }
  .design__dlinfo--line dd > div {
    flex: 0 0 90px;
  }
  .design__dlinfo--line dd > ul {
    flex: 1 0 0%;
  }
  .design__dlinfo--line dd > ul li {
    position: relative;
    padding-left: 1.25em;
    font-size: 14px;
    line-height: 1.7;
  }
  .design__dlinfo--line dd > ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    content: "・";
  }
}
@media only screen and (max-width: 767px) {
  .design__panel {
    flex-direction: column;
    margin-bottom: 13.33333vw;
  }
  .design__panel__img {
    flex: 0 0 auto;
  }
  .design__panel__body {
    padding: 5.33333vw 4vw 8vw;
  }
  .design__panel__body p {
    font-size: 4.26667vw;
    line-height: 1.625;
  }
  .design__h4 {
    margin-bottom: 0.75em;
    font-size: 5.33333vw;
  }
  .design__h5 {
    font-size: 4.8vw;
  }
  .design__h5::before, .design__h5::after {
    font-size: 1em;
  }
  .design__howto {
    margin-bottom: 4vw;
  }
  .design__howto + ul {
    margin-bottom: 9.33333vw;
  }
  .design__howto__body {
    padding: 5.33333vw 4vw 8vw !important;
  }
  .design__howto--sp {
    display: block;
  }
  .design__row {
    flex-direction: column;
    gap: 10.66667vw;
  }
  .design__row > div {
    flex: unset 0 auto;
  }
  .design__dlinfo {
    margin: 4.66667vw 0 6.66667vw;
    padding: 4.66667vw 3.73333vw 3.73333vw 3.73333vw;
    border-width: 0.26667vw;
  }
  .design__dlinfo dt {
    font-size: 4.26667vw;
  }
  .design__dlinfo--sp dd ul {
    gap: 1.86667vw;
    justify-content: center;
  }
  .design__dlinfo--sp dd img {
    width: auto;
    height: 12vw;
  }
  .design__dlinfo--pc ul {
    gap: 1.33333vw;
  }
  .design__dlinfo--pc a {
    font-size: 3.2vw;
  }
  .design__dlinfo--pc a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2.66667vw;
    width: 1.06667vw;
    height: 1.06667vw;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: translateY(-50%) rotate(45deg);
  }
  .design__dlinfo--line dd {
    text-align: center;
  }
  .design__dlinfo--line dd p {
    margin-bottom: 0.75em;
    font-size: 4.26667vw;
  }
  .design__dlinfo--line dd ul img {
    width: 42.93333vw;
    height: auto;
  }
}
/* printer */
.printer__row {
  display: flex;
  gap: 34px;
}

.printer__row > div {
  flex: 1 0 0%;
}

.printer__row > div ul {
  margin-top: 20px;
}

.printer__panel__body {
  padding: 30px;
}

.printer__panel__body ul {
  margin-top: 1.5em;
}

@media only screen and (max-width: 767px) {
  .printer__row {
    flex-direction: column;
    gap: 6.66667vw;
  }
  .printer__row > div ul {
    margin-top: 4vw;
  }
  .printer__panel__body {
    padding: 6.66667vw 4vw;
  }
}
/* support */
.support__panel__img {
  padding-top: 40px;
  text-align: center;
}

.support__panel__body {
  padding: 30px;
}

.support__panel__body ul {
  margin-top: 1.5em;
}

@media only screen and (max-width: 767px) {
  .support__panel__img {
    padding-top: 6.66667vw;
  }
  .support__panel__img img {
    width: 66.66667vw;
    height: auto;
  }
  .support__panel__body {
    padding: 6.66667vw 4vw;
  }
}
/* pickup */
.pickup {
  padding-top: 70px;
}

.pickup__title {
  margin-bottom: 1em;
  font-size: 30px;
  text-align: center;
}

.pickup__banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 40px;
}

.pickup__banner > li {
  flex: 0 0 470px;
}

.pickup__banner p {
  font-size: 16px;
}

.pickup__banner a {
  display: block;
  color: #333 !important;
  text-decoration: none !important;
}

@media only screen and (max-width: 767px) {
  .pickup {
    padding-top: 12vw;
  }
  .pickup__title {
    font-size: 5.33333vw;
  }
  .pickup__banner {
    flex-direction: column;
    gap: 5.33333vw;
  }
  .pickup__banner > li {
    flex: 0 0 auto;
  }
  .pickup__banner p {
    font-size: 3.73333vw;
  }
}
/* download */
.download_float {
  position: relative;
  background: #d11900;
  color: #FFF;
  width: 100%;
  margin-top: 80px;
  z-index: 2;
}

.download_float.jsfixed {
  position: fixed;
  bottom: 0;
}

.download_inner {
  width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
}

.download_inner * {
  box-sizing: border-box;
}

.download_box {
  display: flex;
  padding: 15px 0;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
}

.download_box.with_icn {
  padding-bottom: 5px;
}

.download_box.with_icn .download_text {
  flex: 1;
}

.download_icn {
  width: 80px;
}

.download_text h3 {
  font-size: 22px;
}

.download_float__btns {
  width: 50%;
  display: flex;
  justify-content: center;
  gap: 0 20px;
}

.download_float__btns:not(.app__btns) li {
  width: calc(50% - 10px);
}

.download_float__btns.app__btns {
  width: 320px;
}

.download_float__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 20px 10px 40px;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  background-color: #ffebac;
  text-align: center;
  text-decoration: none !important;
  color: #d11900 !important;
}

.download_float__btn i {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.download_float__btn::before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 15px;
  width: 20px;
  height: 20px;
  background: url("/katsuyou/nenga/images/2026/icn_btn-r.svg") no-repeat;
  background-size: 20px 20px;
}

@media only screen and (max-width: 767px) {
  .download_inner {
    width: 100%;
  }
  .download_box {
    padding: 3vw 3vw 4vw 3vw;
  }
  .download_icn {
    width: 14vw;
  }
  .download_icn img {
    width: 100%;
    height: auto;
  }
  .download_text {
    font-size: 3vw;
  }
  .download_text h3 {
    font-size: 4vw;
  }
  .download_float__btns {
    width: calc(100% - 70px);
    justify-content: flex-start;
    gap: 0 3vw;
    margin-top: 2vw;
  }
  .download_float__btns.app__btns {
    width: calc(100% - 70px);
  }
  .download_float__btns.app__btns li img {
    height: 12vw;
    width: auto;
  }
  .download_float__btn {
    min-width: 100%;
    min-height: inherit;
    padding: 2vw 5vw 2vw 6vw;
    font-size: 3.2vw;
  }
  .download_float__btn i {
    left: 2vw;
  }
  .download_float__btn i img {
    width: 5vw;
    height: auto;
  }
  .download_float__btn::before {
    right: 2vw;
    width: 3.73333vw;
    height: 3.73333vw;
    background-size: 3.73333vw 3.73333vw;
  }
}
#footer {
  margin-top: 0;
}
.witharrow {
	position:relative;
	margin-bottom: 70px;
}
.witharrow::before {
	content:"";
	display:block;
	width:205px;
	aspect-ratio: 41 / 21;
	background-repeat:no-repeat;
	background-position: center center;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg  xmlns='http://www.w3.org/2000/svg' viewBox='0 0 410 210' %3E%3Cg%3E%3Cpath fill='%23f5e087' d='M205.447,209.987 L-0.010,110.949 L100.022,111.003 L58.361,0.009 L350.600,0.249 L309.960,111.115 L409.993,111.169 L205.447,209.987 Z' /%3E%3C/g%3E%3C/svg%3E");
	background-size: cover;
	position: absolute;
	top:calc(50% + 20px);
	left:50%;
	transform:translate(-50%,-50%);
}
.witharrow span {
	position: relative;
}