@charset "UTF-8";
.box {
  animation-fill-mode: forwards;
}

/*------------------------------------------------------------
横幅
キーカラー
フォントサイズ
リスト
ボタン
フレックス
マージン
------------------------------------------------------------*/
/*------------------------------------------------------------
全勝セレクタ
------------------------------------------------------------*/
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.block {
  display: block;
}

.inline {
  display: inline;
}

.m-reset {
  margin: 0;
}

.p-reset {
  padding: 0;
}

/*------------------------------------------------------------
キーカラー
------------------------------------------------------------*/
.red {
  color: #ff0000;
}

.black {
  color: #000000;
}

.white {
  color: #fff;
}

.yellow {
  color: #face46;
}

.bg-black {
  background-color: black;
}

.bg-yellow {
  background-color: #face46;
}

.bg-gray {
  background-color: #4f4e4e;
}

.bg-lite-gray {
  background-color: #dedede;
}

.bg-red {
  background-color: #ff0000;
}

.bg-white {
  background-color: #fff;
}

a {
  text-decoration: none;
  color: #4f4e4e;
}

/*------------------------------------------------------------
フォント
------------------------------------------------------------*/
.f-size-ss {
  font-size: 0.6rem;
}

.f-size-s {
  font-size: 0.8rem;
}

.f-size-m {
  font-size: 1rem;
}

.f-size-l {
  font-size: 1.5rem;
  font-weight: bold;
}

.f-size-ll {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.1;
}

h1, h2 {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-size: 1.5rem;
}

h3, h4, h5 {
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  font-size: 1rem;
}

.body-tx {
  font-size: 1rem;
  line-height: 1.8;
  color: #4f4e4e;
}

/*------------------------------------------------------------
構造
------------------------------------------------------------*/
.main-width {
  width: 1000px;
  margin: auto;
}

html {
  margin: 0 auto;
}

figure {
  margin: 0;
}

header {
  background: #face46;
  width: 1000px;
  margin: auto 0;
}
header .title {
  width: 1000px;
  display: inline-flex;
  justify-content: space-between;
  font-weight: bold;
  text-align: center;
}
header .title h2 {
  color: #ff0000;
  background-color: #fff;
  padding: 10px 20px;
}
header .title h3 {
  color: #fff;
  background-color: #ff0000;
  padding: 10px 20px;
}
header .line-title {
  background-color: #fff;
  padding: 15px;
}

img {
  width: 100%;
}

footer {
  color: #4f4e4e;
  padding: 2% 0;
}
footer .box-equal ul.items {
  background: #4f4e4e;
  line-height: 1.9;
}
footer .box-equal ul.items li {
  margin-left: 15px;
}
footer .box-equal ul.items li a {
  color: #fff;
}
footer .box-equal h3 {
  color: white;
}
footer h1 {
  color: white;
  font-size: 1rem;
}
footer h1 p {
  font-size: 0.8rem;
  color: white;
}
footer #media-list {
  padding: 10px;
  background: #4f4e4e;
  color: white;
  margin-bottom: 10%;
}
footer #media-list .items {
  border: 1px solid white;
  background: #4f4e4e;
  color: white;
  padding: 10px;
  margin: 0;
  text-align: center;
}
footer #media-list .items a {
  color: white;
}
footer .company-info {
  font-size: 0.8rem;
  line-height: 1.5;
}
footer .company-info h1 {
  font-size: 1rem;
}

/*------------------------------------------------------------
レイアウト 
------------------------------------------------------------*/
.block {
  display: block;
}

.m-center {
  margin: 0 auto;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.border {
  border: 1px solid #000000;
}

.border-bottom {
  border-bottom: 1px solid black;
  padding-bottom: 0.5%;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 1%;
}
.flex .items-intro {
  display: flex;
  border-radius: 4px;
  padding: 0 6px;
}
.flex .items {
  display: flex;
  align-items: center;
  flex: 1;
  border-radius: 4px;
  padding: 0 6px;
}
.flex .items p {
  display: block;
  width: 100%;
}
.flex .items .small {
  font-size: 0.8rem;
}

.box-equal {
  display: flex;
  justify-content: center;
}
.box-equal .items {
  flex: 1;
  background: white;
  margin-bottom: 3%;
}
.box-equal .news-2div {
  padding-right: 30px;
}

.box-equal-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box-equal-wrap .items {
  text-align: center;
}

.card-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card-wrap .items {
  width: 32%;
  padding: 2%;
  background: #fff;
  margin-bottom: 4%;
  border-radius: 6px;
}
.card-wrap .items img {
  width: 100%;
  margin-bottom: 2%;
}

.box-equal-4div {
  display: flex;
  justify-content: center;
}
.box-equal-4div img.items {
  width: 25%;
  padding: 0 2px;
}
.box-equal-4div .items {
  width: 25%;
  padding: 0 2px;
}

.border-gray {
  border: 1px solid #4f4e4e;
  text-align: center;
}

.under-line {
  margin: 0;
  padding: 0;
}
.under-line li {
  border-bottom: 1px solid #4f4e4e;
  padding: 10px 0;
  list-style: none;
}

/*------------------------------------------------------------
リスト
------------------------------------------------------------*/
nav.gnavi {
  margin-bottom: 20px;
}
nav.gnavi ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
nav.gnavi ul li {
  margin: 0 20px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
nav.gnavi ul li a {
  text-decoration: none;
  color: #4f4e4e;
  display: block;
}

ul.navi {
  display: inline-flex;
  list-style: none;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
}
ul.navi li {
  margin-left: 20px;
  font-size: 0.8rem;
}
ul.navi li:last-child {
  border: 1px solid #4f4e4e;
  padding: 5px 20px;
  border-radius: 4px;
  display: block;
}
ul.navi li a {
  text-decoration: none;
  color: #4f4e4e;
}

/*------------------------------------------------------------
ボタン
------------------------------------------------------------*/
.btn-c-w {
  border: 1px solid #fff;
  border-radius: 10px;
}

.border {
  border: 1px solid #4f4e4e;
}

/*------------------------------------------------------------
セクション
------------------------------------------------------------*/
#bg-ztab {
  background-image: url("../img/bg-ztab.png");
  background-repeat: no-repeat;
  background-size: cover;
}

/*------------------------------------------------------------
マージン
------------------------------------------------------------*/
.w-100 {
  width: 100px;
}

.w-200 {
  width: 200px;
}

.w-300 {
  width: 300px;
}

.w-600 {
  width: 600px;
}

.w-800 {
  width: 800px;
}

.p-1000 {
  padding: 10px 0;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

.p-2000 {
  padding: 20px 0;
}

.p-3000 {
  padding: 30px 0;
}

.m-00 {
  margin: 0;
}

.m-05 {
  margin: 5px;
}

.m-bottom-01per {
  margin-bottom: 1%;
}

.m-bottom-02per {
  margin-bottom: 2%;
}

.m-bottom-05per {
  margin-bottom: 5%;
}

.m-bottom-10per {
  margin-bottom: 10%;
}

.p-bottom-02per {
  padding-top: 2%;
}

.p-bottom-05per {
  padding-top: 5%;
}

.p-bottom-10per {
  padding-top: 10%;
}

/*------------------------------------------------------------
custom
------------------------------------------------------------*/
.button-green {
  border: none;
  border-radius: 10px;
  background-color: #39AF4A;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  width: 100%;
}

.button-green-ol {
  border: 3px solid #39AF4A;
  border-radius: 10px;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  padding: 10px 20px;
  width: 100%;
}

.button-blue {
  border: none;
  border-radius: 10px;
  background-color: #4AC0F0;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  width: 100%;
}

.first-view {
  padding: 40px;
}
.first-view.flex-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .first-view.flex-wrap {
    flex-direction: column;
  }
}
.first-view-catch {
  width: 60%;
}
@media screen and (max-width: 999px) {
  .first-view-catch {
    width: 100%;
  }
}
.first-view-catch-paragraph {
  margin: 0;
  text-align: center;
  font-size: clamp(3rem, 5.5vw, 6rem);
  font-weight: 900;
}
@media screen and (max-width: 999px) {
  .first-view-catch-paragraph {
    font-size: 4rem;
    font-size: clamp(2.1rem, 7.5vw, 5rem);
  }
}
.first-view-catch-paragraph p {
  margin: 0;
}
.first-view-catch-paragraph p span {
  color: #f00;
}
.first-view-catch h2 {
  font-size: 1.5rem;
  padding: 8px 20px;
  margin: 30px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  color: #f00;
  font-weight: 900;
  background: #fff;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .first-view-catch h2 {
    font-size: 1.2rem;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  }
}
.first-view-catch h3 {
  font-size: 1.5rem;
  padding: 4px 20px;
  margin: 20px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 900;
  background: #E60012;
  text-align: center;
}
@media screen and (max-width: 999px) {
  .first-view-catch h3 {
    font-size: 1.2rem;
    font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  }
}
.first-view-catch-price {
  margin: 40px auto 0;
  max-width: 500px;
}
.first-view-line {
  width: 37%;
  margin-left: 3%;
  background: #fff;
}
@media screen and (max-width: 999px) {
  .first-view-line {
    width: 100%;
    margin: 60px auto 0;
  }
}
.first-view-line h2 {
  color: #fff;
  background: #39B04A;
  font-weight: bold;
  margin: 0;
  padding: 4px 20px;
  text-align: center;
}
.first-view-line-main {
  padding: 20px;
}
.first-view-line-description {
  margin: 10px auto;
  width: 100%;
  text-align: center;
  font-size: 2rem;
}
.first-view-line-figure {
  width: 100%;
  margin: 0 auto;
}
.first-view-line-figure img {
  width: 40%;
  max-width: 180px;
}
.first-view-line-figure.flex-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.first-view-line-figure figcaption {
  width: 60%;
  text-align: center;
  margin-left: 20px;
  color: #f00;
  font-weight: 900;
  font-size: 1.3rem;
  font-size: clamp(1.3rem, 1.74vw, 2rem);
}
@media screen and (max-width: 999px) {
  .first-view-line-figure figcaption {
    font-size: 1.3rem;
    font-size: clamp(1.1rem, 4.8vw, 2rem);
  }
}
.first-view-line-howto {
  padding: 0 20px 20px;
}
.first-view-line-howto.flex-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.first-view-line-howto.flex-wrap > * {
  width: calc(50% - 10px + 5px);
  margin-right: 10px;
}
.first-view-line-howto.flex-wrap > *:nth-of-type(2n) {
  margin-right: 0;
}
.first-view-line-howto.flex-wrap > *:nth-of-type(n + 3) {
  margin-top: 10px;
}
@media screen and (max-width: 999px) {
  .first-view-line-howto.flex-wrap {
    flex-direction: column;
  }
  .first-view-line-howto.flex-wrap .flex-item {
    width: 100%;
  }
  .first-view-line-howto.flex-wrap .flex-item:first-of-type {
    margin-bottom: 20px;
  }
  .first-view-line-howto.flex-wrap .flex-item:last-of-type {
    margin-left: 0;
    margin-bottom: 26px;
  }
  .first-view-line-howto.flex-wrap .flex-item:last-of-type .first-view-line-howto-caption {
    margin-bottom: 20px;
  }
}
.first-view-line-howto h2 {
  margin: 0;
  background: #404040;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  padding: 8px 20px;
}
.first-view-line-howto-figure {
  width: 100%;
  margin: 0;
}
.first-view-line-howto-figure img {
  width: 50%;
  margin: 0 auto;
}
.first-view-line-howto-caption {
  font-weight: bold;
  text-align: center;
  margin: 16px auto;
}
.first-view-line-howto-image {
  max-width: 180px;
  margin: 0 auto;
}
.first-view-line-howto .button-green {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.first-view-line-howto .button-green::before {
  content: "";
  display: block;
  margin: 0 4px 2px 0;
  width: 10px;
  height: 10px;
  background: #fff;
  clip-path: polygon(0 0, 86.6% 50%, 0 100%);
  aspect-ratio: 1;
}
.first-view-line-howto .button-green a {
  color: #fff;
}
.first-view-line-conversion {
  padding: 20px;
  border-top: 1px solid #ddd;
}
.first-view-line-conversion button {
  display: block;
  margin: 0 auto;
}
.first-view-line-conversion button.button-blue {
  margin-top: 10px;
}
.first-view-line-conversion button h2, .first-view-line-conversion button h3 {
  margin: 0;
  color: #fff;
}

#jata2-point {
  background: #fff;
}
#jata2-point h2 {
  text-align: center;
  font-weight: bold;
}
#jata2-point h2:first-of-type {
  font-weight: 900;
}
@media screen and (max-width: 999px) {
  #jata2-point h2:first-of-type span {
    display: block;
  }
  #jata2-point h2:not(:first-of-type) {
    text-align: left;
  }
}
#jata2-point .conditions .flex .items {
  margin-left: 20px;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.3);
  min-height: 200px;
}
#jata2-point .conditions .flex .items:first-of-type {
  margin-left: 0;
}
#jata2-point .conditions .flex .items p {
  font-size: 1.6rem;
  font-weight: bold;
}
#jata2-point .conditions .flex .items p span {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: bold;
  line-height: 1rem;
}
#jata2-point .conditions a {
  display: flex;
  justify-content: center;
  align-items: center;
}
#jata2-point .conditions a div {
  width: calc(100% - 30px);
}
#jata2-point .conditions a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("../img/icon_pdf-file.png");
  background-size: cover;
}
@media screen and (max-width: 999px) {
  #jata2-point .conditions .flex {
    display: flex;
    flex-wrap: wrap;
  }
  #jata2-point .conditions .flex > * {
    width: calc(50% - 10px + 5px);
    margin-right: 10px;
  }
  #jata2-point .conditions .flex > *:nth-of-type(2n) {
    margin-right: 0;
  }
  #jata2-point .conditions .flex > *:nth-of-type(n + 3) {
    margin-top: 10px;
  }
  #jata2-point .conditions .flex .items {
    flex: 0 1 auto;
    margin-left: 0;
  }
}

#bg-ztab h2 {
  border-radius: 100px;
  padding: 10px 20px;
  border-width: 5px;
}
#bg-ztab .flex .items {
  width: 50%;
}
#bg-ztab .flex .items:first-of-type {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
}
@media screen and (max-width: 999px) {
  #bg-ztab .flex {
    display: flex;
    flex-direction: column;
  }
  #bg-ztab .flex .items {
    width: 100%;
  }
}
#bg-ztab .card {
  border-radius: 10px;
}
#bg-ztab .card img {
  width: 100%;
}
#bg-ztab .card h4 {
  width: 100%;
  text-align: left;
}
#bg-ztab iframe {
  width: 560px;
  height: 315px;
}
@media screen and (max-width: 999px) {
  #bg-ztab iframe {
    width: 100%;
  }
}

#campaign .option {
  border-radius: 10px;
}
#campaign .flex .items {
  flex: 0 1 auto;
}
@media screen and (max-width: 999px) {
  #campaign .flex {
    display: flex;
    flex-direction: column;
  }
  #campaign .flex .items {
    width: 80%;
    margin: 0 auto;
  }
}

#qanda .questions {
  color: #f00;
  border-bottom: 1px solid #000;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  padding-bottom: 10px;
}
@media screen and (max-width: 999px) {
  #qanda .questions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }
}
#qanda .questions span {
  width: calc(100% - 72px);
}
#qanda .questions span:first-of-type {
  margin-bottom: 8px;
  width: 72px;
}
@media screen and (max-width: 999px) {
  #qanda .questions span:first-of-type {
    margin-bottom: auto;
  }
}
#qanda h2 {
  margin-top: 40px;
}
#qanda span {
  display: inline-block;
}

#intro .subtitle {
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 999px) {
  #intro h2 {
    margin: 10px 0;
  }
}
#intro .flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#intro .flex p {
  margin: 0;
}
#intro .flex .items-intro {
  width: 50%;
}
@media screen and (max-width: 999px) {
  #intro .flex {
    display: flex;
    flex-direction: column;
  }
  #intro .flex p {
    margin: 1rem 0 calc(1rem + 10px);
  }
  #intro .flex .items-intro {
    width: 100%;
  }
}
#intro h4 {
  margin: 40px 0 0;
  text-align: center;
  font-size: 1.6rem;
}

#line .first-view-line {
  margin: 0 auto 60px;
}
#line .first-view-line-description {
  border-bottom: 1px solid #333;
}
#line .first-view-line-figure img {
  order: 2;
  margin-left: 10px;
}
#line .first-view-line-figure figcaption {
  order: 1;
  margin-left: auto;
}
#line .first-view-line-main h2 {
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 5px;
  font-size: 2rem;
  font-weight: 900;
}

#footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
}
#footer img {
  max-width: 180px;
}/*# sourceMappingURL=base.css.map */