@charset "UTF-8";
/* =============================================
# Font
============================================= */
/* Zen Kaku Gothic New */
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');
/* Noto Sans JP */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

/* =============================================
# Base
============================================= */
html {
  position: relative;
  z-index: 0;
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: clamp(10px, 2.5vw, 15px);
  letter-spacing: 0.1em;
  line-height: 1.5;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: clamp(10px, 1vw, 16px);
  }
}

@media (min-width: 1800px) {
  html {
    font-size: 20px;
  }
}

a {
  transition: opacity 0.3s;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  opacity: 0.8;
}

/* PCでは電話番号のクリックを無効にする */
a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border: none;
}

img:not([alt]) {
  filter: blur(10px);
}

b,
strong {
  font-weight: 700;
}

table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
  border: 1px solid;
}

th,
td {
  padding: 4px 6px;
  border: 1px solid;
  text-align: left;
  vertical-align: top;
}

/* =============================================
# Layout
============================================= */
/* inner
=============================== */
.inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.section {
  padding: 5rem 0 8rem;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 2.5rem 0 4rem;
  }
}

.section__title {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
}

.note {
  font-size: 1.2rem;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 768px) {
  .note {
    font-size: 12px;
  }
}

/* l-to-top
===============================*/
.l-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .l-to-top {
    bottom: 20px;
    right: 20px;
  }
}

.l-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #fcfaf2;
  border-radius: 50%;
  border: 1px solid #cf000e;
  color: #cf000e;
}

/* header
=============================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 2.2rem 0.5rem 1.5rem 0.5rem;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    padding: 0;
  }
}

.site-header__logo {
  max-width: 25rem;
  width: 50%;
  margin: 0 auto;
}

/* footer
=============================== */
.footer {
  background-color: #f7e6e0;
  padding: 5rem 0;
  font-family: "Noto Sans JP", sans-serif;
}

.footer img {
  width: 60vw;
  margin: 3rem auto 0;
}
.section-contact__title {
  font-size: 2.5rem;
}
.footer__text {
  font-size: 1rem;
  margin-top: 2.5em;
  text-align: center;
  color: #313232;
}
.footer__text a {
  text-decoration: underline;
  margin-right: 4em;
}
@media screen and (max-width: 768px) {
  .footer__text a {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
/* main__visual
=============================== */
.mv__title {
  width: 100%;
}



/* =============================================
# Utility
============================================= */
/* u-display
=============================== */
.u-show-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .u-show-sp {
    display: block;
  }
}

.u-show-pc {
  display: block;
}

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

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
  clip-path: inset(50%);
}


/* ---------------------------
  購入・利用方法セクション
--------------------------- */
.section-howto {
  background-color: #f7e6e0;
}

.section-howto__container {
  position: relative;
  z-index: 1;
  background: #fff;
  width: 100rem;
  max-width: 100%;
  border-radius: 1rem;
  padding: 4.5rem 5rem 2.5rem;
  margin: 3.5rem auto 0;
}

@media screen and (max-width: 768px) {
  .section-howto__container {
    margin-top: 3.5rem;
    padding: 5rem 2em 5rem;
  }
}

.section-howto__note {
  text-align: right;
  margin-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .section-howto__note {
    text-align: left;
    margin-top: 3rem;
  }
}

/*タブ切り替え全体のスタイル*/
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  margin: 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: 10%;
  margin-bottom: -3px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

@media screen and (max-width: 768px) {
  .tab_item {
    width: 25%;
  }
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  border-top: 3px solid #f4dbd2;
  display: none;
  padding-top: 2.5rem;
  clear: both;
  overflow: hidden;
}


/*選択されているタブのコンテンツのみを表示*/
#all:checked~#all_content,
#programming:checked~#programming_content,
#design:checked~#design_content,
#step4:checked~#step4_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked+.tab_item {
  color: #cf000e;
  border-bottom: 3px solid #cf000e;
}

.tab_content_description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .tab_content_description {
    flex-direction: column;
  }
}

.section--howto__tab-title {
  color: #cf000e;
  font-size: 2rem;
}

.section--howto__tab-about {
  margin-top: 0.5em;
  font-size: 1.35rem;
}

.section--howto__tab-date-text {
  font-size: 1.2em;
  background-color: #f4dbd2;
  padding: 1em;
}

@media screen and (max-width: 768px) {
  .section--howto__tab-date-text {
    margin-top: 0.5em;
  }
}

.swiper-container {
  margin-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .swiper-container {
    padding-bottom: 6rem;
  }
}

.swiper-slide {
  position: relative;
}

.swiper-slide:not(:last-child)::after {
  content: url(../images/icon-arrow-red.svg);
  position: absolute;
  top: 40%;
  right: 0%;
  z-index: 10;
  width: 1.232em;
  height: 1.27017em;
}

.swiper-slide {
  /* width: auto; */
}

.swiper-slide img {
  /* max-height: 60rem; */
}
/* .swiper1 .swiper-slide:nth-child(3)::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-34%, -42%);
  z-index: 1;
  width: 100%;
  height: 53%;
  background: url(../images/step1-03_icon.png) no-repeat center center / contain;
} */
/* ページネーション */
.swiper-button-next,
.swiper-button-prev {
  width: min(4em, 60px);
  height: min(4em, 60px);
  border: 2px solid #000;
  border-radius: 50%;
  right: auto;
  left: auto;
  top: auto;
  bottom: 0;
}

.swiper-button-next {
  left: 5rem;
}

@media screen and (max-width: 768px) {
  .swiper-button-next {
    left: 5rem;
  }
}

.swiper-button-next:after {
  content: "";
  position: relative;
  left: 2px;
  background: url(../images/icon-arrow.svg) center / cover no-repeat;
  width: 12px;
  height: 19px;
  /* padding-left: 5px; */
}

@media screen and (max-width: 768px) {
  .swiper-button-next:after {
    width: 10px;
    height: 15px;
  }
}

.swiper-button-prev:after {
  content: "";
  position: relative;
  right: 2px;
  display: block;
  background: url(../images/icon-arrow.svg) center / cover no-repeat;
  width: 12px;
  height: 19px;
  transform: scaleX(-1);
}

@media screen and (max-width: 768px) {
  .swiper-button-prev:after {
    width: 10px;
    height: 15px;
  }
}


/* ---------------------------
  発行総額セクション
--------------------------- */
.section-summary .inner {
  width: 134rem;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .section-summary .inner {
    width: 100%;
  }
}

/* 発行総額 */
.section--summary__money {
  margin-bottom: 2rem;
}

.section-summary__list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2.64rem;
  border-top: 1px solid #000;
  height: 10rem;
  padding: 0 3.96rem;
}

@media screen and (max-width: 768px) {
  .section-summary__list {
    flex-direction: column;
    height: auto;
    row-gap: 10px;
    padding: 20px 0;
  }
}

.section-summary__list:last-of-type {
  border-bottom: 1px solid #000;
}

.section-summary__item--title {
  font-size: 1.5rem;
  font-weight: bold;
  border: 0.15rem solid #000;
  border-radius: 5rem;
  padding: 0.2em 1em;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 12.5rem;
  width: 25%;
}

@media screen and (max-width: 768px) {
  .section-summary__item--title {
    display: inline-flex;
    width: initial;
    max-width: initial;
    min-width: 167.5px;
  }
}

.section-summary__item--content {
  font-weight: bold;
  font-size: 1.95rem;
  letter-spacing: 0;
  width: 75%;
}

@media screen and (max-width: 768px) {
  .section-summary__item--content {
    width: 100%;
    font-size: 16px;
    text-align: center;
  }
}

.section-summary__item--content img {
  width: 20em;
}

p.section-summary__note {
  text-align: center;
  margin-top: 1.76em;
}

@media screen and (max-width: 768px) {
  p.section-summary__note {
    width: 275px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }
}

/* ---------------------------
  概要セクション
--------------------------- */
.section-overview {
  background-color: #8cd9ff;
  background-image: url(../images/overview_bg.png?v=2);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {
  .section-overview {
    padding-right: 15px;
    padding-left: 15px;
    background-image: url(../images/overview_bg_sp.png?v=2);
  }
}

.section-overview .inner {
  background-color: #fff;
  border-radius: 1rem;
  padding-top: 5.75rem;
  padding-bottom: 12rem;
  max-width: 126.2rem;
  width: 80vw;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .section-overview .inner {
    width: 100%;
    max-width: 100%;
    padding-top: 2.5em;
    padding-bottom: 2.5em;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.section-overview__table {
  width: 100%;
  max-width: 862px;
  margin: 0 auto;
  margin-top: 3.5rem;
  background-color: #fff;
  border: none;
}

@media screen and (max-width: 768px) {
  .section-overview__table {
    margin-top: 2.5rem;
  }
}

.section-overview__cell {
  padding: 1em;
  font-size: 1.35rem;
  font-weight: 500;
  border: none;
}

@media screen and (max-width: 768px) {
  .section-overview__cell {
    padding: 12px 6px;
    font-size: 13px;
    letter-spacing: 0.05em;
  }
}

.section-overview__cell--th {
  background-color: #f0f0f0;
  text-align: center;
  width: 19%;
  line-height: 1.2;
  border-bottom: 3px solid #fff;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .section-overview__cell--th {
    width: 32%;
  }
}

.section-overview__cell--th-small {
  font-size: 0.84175084em;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .section-overview__cell--th-small {
    font-size: 12x;
    letter-spacing: 0.01em;
  }
}

.section-overview__cell--th-small2 {
  position: relative;
}

@media screen and (max-width: 768px) {
  .section-overview__cell--th-small2 {
    font-size: 12px;
    letter-spacing: 0.01em;
  }
}

.section-overview__cell--th-small2::after {
  content: "※";
  position: absolute;
  top: 0;
  right: 3px;
  font-size: 0.5em;
}

.section-overview__cell--td {
  vertical-align: middle;
  border-top: 2px solid #f0f0f0;
}

.section-overview__table .section-overview__row:last-child .section-overview__cell--td {
  border-bottom: 2px solid #f0f0f0;
}

.section-overview__table .section-overview__row:last-child .section-overview__cell--th {
  border-bottom: none;
}

.section-overview__note {
  max-width: 800px;
  margin: 1em auto 0;
}

.section-overview__cell--td .section-overview__note {
  margin-top: 0;
}
.section-overview__support {
  text-align: center;
  margin-top: 6.5rem;
}
.section-overview__support-title {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
}
.section-overview__support-title::before {
  content: url(../images/deco_support.svg);
  position: absolute;
  bottom: -5px;
  left: -1.5em;
  width: 2.35rem;
}
.section-overview__support-title::after {
  content: url(../images/deco_support.svg);
  position: absolute;
  bottom: -5px;
  right: -1em;
  width: 2.35rem;
  transform: scaleX(-1);
}
.section-overview__support-text {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 1em;
}
.section-overview__support-btn a {
  display: block;
  background-color: #fcee21;
  border-radius: 3em;
  max-width: 600px;
  margin: 1em auto 0;
  text-align: center;
  padding: 0.8em;
  box-shadow: 5px 7px 0 rgba(180, 108, 108, 0.75);
  transition: .3s;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 1.7rem;
}
.section-overview__support-btn a:hover {
  opacity: 1;
  box-shadow: unset;
  transform: translate(4px,6px);
}

.section-faq {
  padding: 5rem 1rem;
}
.section-faq__btn a {
  display: block;
  background-color: #cf000e;
  border-radius: 3em;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  padding: 0.5em;
  box-shadow: 5px 7px 0 rgba(180, 108, 108, 0.75);
  transition: .3s;
}
.section-faq__btn a:hover {
  opacity: 1;
  box-shadow: unset;
  transform: translate(4px,6px);
}
