@charset "utf-8";

:root {
  --main-bg-color: #22c18d;
  --main-txt-color: #00c38e;
}

html {
  background: #fffbed;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  color: #000;
  font-weight: 400;
}

body {
  font-size: 16px;
  line-height: 1.8;
  color: #222;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
}

h2,
h3,
h4 {
  text-align: center;
  font-weight: bold;
}

input,
select {
  font-size: 16px;
}

li {
  list-style: none;
}

.bold {
  font-weight: bold;
}

.bg-02 {
  background-color: #ffd800;
}

.fs_child {
  font-size: 0.75em;
}

.text-primary {
  color: var(--main-txt-color);
}

.text-secondary {
  color: #ff5943;
}

.marker_y {
  font-weight: bold;
  vertical-align: baseline;
  background-color: #fff500;
}

.marker_g {
  vertical-align: baseline;
  background: linear-gradient(transparent 50%, #dedede 55%);
}

.content_ttl {
  font-size: min(38px, 7vw);
  font-weight: 900;
  margin-bottom: 6rem;
}

.content_ttl::after {
  content: "";
  display: block;
  width: 80px;
  height: 6px;
  background: var(--main-txt-color);
  margin: 0 auto;
  position: relative;
  bottom: -1.5rem;
}

.content_ttl span {
  font-weight: inherit;
}

.content_area {
  width: 95%;
  max-width: 1000px;
  padding-block: 50px 80px;
  margin: 0 auto;
}

.content_area.__nottl {
  padding-top: 70px;
}

.inline-block {
  display: inline-block;
}

@media (max-width: 960px) {
  .content_area {
    padding-block: 40px;
  }

  .content_area.__nottl {
    padding-top: 50px;
  }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    CTA
_______________________________________________________*/
.cta_btn {
  position: relative;
  display: block;
  width: min(380px, 100%);
  padding-block: 18px;
  margin: 10px auto 0;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
  color: #fff;
  background: #ff5943;
  border-radius: 7px;
  transition:
          opacity 0.3s,
          transform 0.2s ease,
          box-shadow 0.2s ease;
  box-shadow: 0 6px 0 #e21a00;
}

.cta_btn:hover {
  transform: translateY(3px);
  opacity: 0.8;
  box-shadow: 0 3px 0 #e21a00;
}

.cta_block {
  padding-block: 20px 40px;
  text-align: center;
  font-weight: bold;
  background-color: var(--main-bg-color);
  background-image: url(../img/bg-car.png);
}

.cta_block .content_area {
  padding-block: 0;
}

.cta_balloon {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 25px;
  padding: 10px 4rem 10px 1rem;
  border-radius: 100px;
  font-size: 30px;
  font-weight: bold;
  background-color: #ffd800;
  border: 4px solid #000;
}

.cta_balloon::before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 16px solid #ffd800;
  z-index: 2;
}

.cta_balloon::after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 14px solid #000;
  z-index: 1;
}

.cta_balloon img {
  position: absolute;
  right: 8rem;
  top: 50%;
  transform: translateY(-50%);
  max-width: 50px;
}

.cta {
  background-color: #fff;
  padding: 20px 10px 35px;
  border-radius: 10px;
}

.cta_ttl {
  font-size: 2.2rem;
}

.cta_ttl_24h {
  font-size: 0.8em;
}

.cta_btn_top {
  font-size: 0.6em;
}

.cta_btn_bottom_sp {
  display: none;
}

.cta_btn_txt {
  margin-top: 15px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

@media (max-width: 960px) {
  .cta_block {
    padding-bottom: 20px;
  }

  .cta_balloon {
    font-size: 20px;
  }

  .cta_balloon img {
    right: calc(50% - 100px);
    max-width: 30px;
  }

  .cta {
    padding: 20px 15px 25px;
  }

  .cta_ttl {
    font-size: 20px;
  }

  .cta_ttl_24h {
    display: none;
  }

  .cta_ttl_em {
    color: #1baade;
  }

  .cta_btn {
    font-size: clamp(20px, 7vw, 30px);
    background: #1baade;
    box-shadow: 0 6px 0 #0e7198;
  }

  .cta_btn:hover {
    box-shadow: 0 3px 0 #0e7198;
  }

  .cta_btn_top {
    color: #ffd800;
  }

  .cta_btn_bottom_sp {
    display: block;
    padding-top: 5px;
    font-size: 0.6em;
  }

  .cta_btn_txt {
    font-size: 18px;
  }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    ヘッダー
_______________________________________________________*/
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 2%;
  color: #fff;
  background-color: var(--main-bg-color);
}

.header h1 {
  display: flex;
  align-items: center;
}

.header h1 img {
  width: 35vw;
  max-width: 150px;
  height: 100%;
}

.header h1 span {
  font-size: 15px;
  font-weight: bold;
}

.header_txt {
  font-size: 13px;
}

@media (max-width: 960px) {
  .header {
    padding-block: 10px;
  }

  .header_txt {
    display: none;
  }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    フッター
_______________________________________________________*/
footer {
  padding-block: 20px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
}

footer .content_area {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 5px 0 20px;
}

footer .content_area p a {
  color: #000;
}

@media (max-width: 960px) {
  footer .content_area {
    flex-direction: column;
    gap: 5px;
  }
}

/*__________________________main__________________________*/
.balloon {
  position: relative;
  width: 340px;
  max-width: 95%;
  margin-inline: auto;
  padding: 10px 50px 10px 10px;
  border: 4px solid #000;
  border-radius: 100px;
  background: #ffd800;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.balloon span {
  display: inline-block;
  position: relative;
  top: -4px;
  margin-right: 5px;
  font-size: 16px;
  font-weight: inherit;
  line-height: 1.4;
  border-bottom: 3px dotted #000;
}

.balloon img {
  position: absolute;
  top: 0.4rem;
  right: calc(50% - 125px);
  width: 30px;
}

.balloon::before,
.balloon::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.balloon::before {
  bottom: -13px;
  width: 17px;
  height: 13px;
  background: #ffd800;
  z-index: 3;
}

.balloon::after {
  bottom: -18px;
  width: 25px;
  height: 18px;
  background: #000;
  z-index: 2;
}

.bg_pc {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  background-image: url(../img/bg-car.png);
  background-color: var(--main-bg-color);
}

.bg_pc::before {
  content: "";
  display: block;
  height: 525px;
  width: 100%;
  background-color: #fefbec;
  position: absolute;
  top: 0;
}

@media (max-width: 960px) {
  .bg_pc {
    display: block;
    padding-top: 5px;
  }

  .bg_pc::before {
    height: 30%;
  }

  .mv_satei {
    padding: 5px 10px 20px;
    background-color: var(--main-bg-color);
  }
}

.mv_img {
  width: 620px;
  max-width: 100%;
  position: relative;
  z-index: 10;
}

@media (max-width: 960px) {
  .mv_img {
    display: block;
    width: 98%;
    margin-inline: auto;
  }
}

/* ------------------------------------------------ 自動車税文言スタイル */
.jizei_text1 {
  font-weight: bold;
  font-size: clamp(11px, 3.6vw, 14px);
  letter-spacing: 0.01em;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #ADADAD;
}

.jizei_text1 span {
  color: #FC5943;
}

.jizei_text2 {
  font-size: clamp(10px, 3vw, 12px);
  text-align: center;
  font-weight: normal;
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    他社比較
_______________________________________________________*/
.compare {
  margin-top: 40px;
}

.compare_ttl span {
  display: inline-block;
  color: #ff5943;
  font-size: 2.2rem;
  font-weight: inherit;
  background: linear-gradient(transparent 60%, #fff500 60%);
}

.compare_table {
  box-shadow: 0 0 16px rgb(0 0 0 / 12%);
  margin: 2rem 0 4rem;
  width: 100%;
  background-color: var(--main-bg-color);
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
}

.compare_table thead {
  border-bottom: 1px solid #adadad;
}

.compare_table thead th {
  padding: 1rem;
  vertical-align: middle;
}

.compare_table thead th img {
  max-width: 200px;
}

.compare_table tbody tr:not(:last-child) {
  border-bottom: 1px dashed #adadad;
}

.compare_table tbody td {
  line-height: 1.4;
  padding: 1rem 0;
  vertical-align: middle;
  font-weight: bold;
}

.compare_table tbody td:not(:first-child) {
  width: 40%;
}

.compare_table tbody tr:nth-child(even) td:last-child {
  background-color: #efefef;
}

.compare_carnext {
  color: #ff5943;
  font-size: 4rem;
  font-weight: bold;
  background-color: #ffd800;
}

.compare_carnext span {
  font-weight: inherit;
}

.compare_other {
  font-size: 2.4rem;
  background-color: #fff;
}

.compare_other span {
  font-weight: inherit;
}

.compare_txt {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.compare_txt_em {
  font-size: 1.2em;
  font-weight: bold;
}

.compare_green {
  font-size: 1.8rem;
  color: #fff;
}

.compare_anywhere {
  font-size: 0.4em;
  color: #333;
  display: block;
}

@media (max-width: 960px) {
  .compare_ttl span {
    font-size: 22px;
  }

  .compare_table {
    margin-bottom: 25px;
  }

  .compare_table thead th img {
    max-width: 100px;
  }

  .compare_table tbody td:not(:first-child) {
    width: 35%;
  }

  .compare_green {
    font-size: 15px;
  }

  .compare_carnext {
    font-size: 30px;
  }

  .compare_other {
    font-size: 19px;
  }

  .compare_txt {
    font-weight: normal;
    text-align: left;
  }

  .compare_txt_em {
    font-size: 1.1em;
  }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    カーネクストが選ばれる理由
_______________________________________________________*/
.reason_list {
  position: relative;
  padding: 3rem;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 10px;
}

.reason_num {
  position: absolute;
  top: -14.5px;
  left: 170px;
  right: 0;
  z-index: 1;
}

.reason_num._01 {
  left: 70px;
}

.reason_num::after {
  content: "";
  display: inline-block;
  width: 130px;
  height: 100px;
  background: url("../img/reason_flag.png") center top / contain no-repeat;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.reason_num p {
  width: 100px;
  line-height: 1.1;
  padding-top: 1.2rem;
  padding-left: 16px;
  color: #fff;
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
}

.reason_num p span {
  font-size: 0.4em;
  display: block;
}

.reason_content {
  display: grid;
  grid-template-columns: 445px 1fr;
  grid-template-areas:
		"ttl ttl"
		"img txt";
  gap: 40px;
}

.reason_ttl {
  grid-area: ttl;
  font-size: 2.2rem;
  line-height: 3rem;
}

.reason_ttl_suppl {
  display: block;
}

.reason_ttl span {
  font-weight: inherit;
}

.reason_img {
  grid-area: img;
}

.reason_txt {
  grid-area: txt;
  font-size: 15px;
}

@media (max-width: 960px) {
  .reason_list {
    padding: 9rem 2rem 2rem;
  }

  .reason_num,
  .reason_num._01 {
    left: 0;
    margin: 0 auto;
    width: 120px;
  }

  .reason_content {
    grid-template-columns: 1fr;
    grid-template-areas:
			"ttl"
			"img"
			"txt";
    justify-items: center;
    gap: 20px;
  }

  .reason_ttl_suppl {
    font-size: .7em;
  }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    事例
_______________________________________________________*/
.jirei.content_area {
  width: 100%;
}

.jirei .jirei_wrap:not(:last-child) {
  margin-bottom: 40px;
}

.jirei_ttl {
  position: relative;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-size: 2.8rem;
  text-align: center;
  z-index: 1;
}

.jirei_ttl div {
  font-weight: bold;
}

.jirei_group_ttl_em {
  display: inline-block;
  border-radius: 5px;
  padding: 0 0.8rem 0 0.8rem;
  line-height: 1.5;
  margin-right: 0.4rem;
  color: #fff;
  background-color: var(--main-bg-color);
}

.jirei_block {
  display: flex;
  gap: 30px;
}

.jirei dl {
  background-color: #fff;
  border-radius: 10px;
  padding: 0 16px 16px;
  box-shadow: 0 0 16px rgb(0 0 0 / 12%);
  margin-top: 1rem;
}

.jirei dt {
  position: relative;
}

.jirei dd img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.jirei .price_ttl {
  background-color: #d34c1a;
  color: #fff;
  display: inline-block;
  line-height: 1.2;
  position: absolute;
  top: -0.5rem;
  left: -1rem;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  text-align: center;
  padding-top: 1em;
}

.jirei .price {
  color: #d34c1a;
  font-family: "Noto Sans JP", sans-serif;
  text-align: right;
  font-size: 40px;
  font-weight: 900;
}

.jirei .yen {
  font-size: 0.75em;
}

.jirei_md {
  font-size: 18px;
}

.jirei_tag {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 6px;
  border-radius: 3px;
  background-color: var(--main-bg-color);
  color: #fff;
  font-size: .8em;
  line-height: 1.4;
  vertical-align: 2px;
}

.jirei_sm {
  font-size: 14px;
}

@media (min-width: 961px) {
  .jirei_ttl div {
    display: inline;
    padding: 0 0.8rem;
    background-color: #fefbec;
  }

  .jirei_ttl::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 1px;
    top: 1em;
    border-bottom: 3px dashed #000;
    z-index: -1;
  }
}

@media (max-width: 960px) {
  .jirei_box {
    padding-bottom: 10px;
  }

  .jirei .jirei_wrap:not(:last-child) {
    margin-bottom: 30px;
  }

  .jirei_ttl {
    font-size: 20px;
    line-height: 1.5;
  }

  .jirei dl {
    width: 95%;
    margin-bottom: 0;
  }

  .jirei .price_ttl {
    width: 60px;
    height: 60px;
    padding-top: 12px;
    font-size: 15px;
  }

  .jirei .price {
    font-size: clamp(36px, 10vw, 45px);
  }

  .jirei dd img {
    margin-bottom: 5px;
  }
}

/* スライダー */
.slider .slick-list {
  padding: 0 10% 0 0 !important;
}

.slick-next {
  right: 8% !important;
}

.slick-prev {
  left: 0 !important;
}

.slick-arrow {
  z-index: 2 !important;
}

.slick-arrow::before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next::before {
  background: url("../img/arrow-right.png") !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
        よくあるご質問
    _______________________________________________________*/
.faqs {
  padding-top: 50px;
  background-image: url("../img/bg-faqs.png");
}

.faqs .content_area {
  padding-top: 0;
}

.has-children {
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 10px;
}

.has-children:not(:last-child) {
  margin-bottom: 1rem;
}

.has-children.is-open .btn-inner {
  border-bottom: 3px solid #d0b000;
  margin-top: 2px;
  margin-bottom: 0;
  background-color: #e0be01;
}

.acnav__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faqs h3 {
  text-align: left;
}

.faqs .btn-inner {
  max-width: 140px;
  width: 100%;
  height: fit-content;
  margin-right: 3rem;
  padding: 10px 5px;
  background-color: #ffd800;
  border-bottom: 5px solid #d0b000;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

.faqs .btn-inner:hover {
  border-bottom: 3px solid #d0b000;
  margin-top: 2px;
  margin-bottom: 0;
}

.faqs .faqs_q {
  position: relative;
  display: block;
  padding: 23px 20px 23px 50px;
  font-size: 18px;
  align-self: start;
}

.faqs .faqs_q::before {
  content: "Q.";
  color: var(--main-txt-color);
  margin-right: 5px;
  position: absolute;
  left: 24px;
}

.faqs .faqs_a {
  position: relative;
  display: none;
  border-top: 1px dashed #adadad;
  padding: 10px 15px 30px 50px;
  text-align: justify;
}

.faqs .faqs_a::before {
  content: "A.";
  font-size: 18px;
  color: #ff5943;
  position: absolute;
  left: 24px;
  font-weight: bold;
}

@media (max-width: 960px) {
  .faqs .faqs_q {
    padding: 15px 10px 15px 50px;
  }

  .acnav__label {
    flex-direction: column;
    margin-bottom: 1rem;
    cursor: none;
  }

  .faqs .btn-inner {
    margin-right: 0;
  }

  .faqs .faqs_a,
  .faqs .faqs_q {
    padding-left: 40px;
  }

  .faqs .faqs_a::before,
  .faqs .faqs_q::before {
    left: 15px;
  }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
        流れ
    _______________________________________________________*/
.flow {
  background-color: #fffbed;
}

.flow h2.content_ttl {
  margin-bottom: 2rem;
}

.flow_step_ttl {
  position: relative;
  top: 2rem;
  font-weight: 900;
  text-align: center;
  font-size: 1.8rem;
}

.flow_step_ttl::before,
.flow_step_ttl::after {
  content: "";
  display: inline-block;
  height: 40px;
  width: 4px;
  background: #000;
  transform: rotate(25deg);
  margin-left: 2rem;
  position: relative;
  top: 1rem;
}

.flow_step_ttl::before {
  transform: rotate(-25deg);
  margin-right: 2rem;
  margin-left: 0;
}

.flow ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: inherit;
  margin-bottom: 1rem;
  background-color: #ffd800;
  border-radius: 10px;
  text-align: center;
  padding: 3rem 3rem 2rem 3rem;
  font-weight: bold;
}

.flow li {
  display: grid;
  position: relative;
  grid-template-rows: auto;
}

.flow li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 50%;
  position: absolute;
  right: -7rem;
  top: 7rem;
  transform: rotate(0deg);
  background: url(../img/arrow-left.png) center / contain no-repeat;
}

.flow_step {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-self: start;
  font-size: 18px;
}

.flow_picture {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  align-self: center;
}

.flow_text {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  align-self: end;
  font-size: 18px;
}

@media (max-width: 960px) {
  .flow_step_ttl {
    top: 1rem;
    font-size: 20px;
  }

  .flow_step_ttl::before,
  .flow_step_ttl::after {
    margin-left: 1rem;
    top: 1.1rem;
  }

  .flow_step_ttl::before {
    margin-right: 1rem;
  }

  .flow h2.content_ttl {
    margin-bottom: 1rem;
  }

  .flow ol {
    padding: 2rem 1rem 2rem;
    gap: 2rem;
  }

  .flow li {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.5fr 3fr;
    gap: 1rem;
  }

  .flow li:not(:last-child)::after {
    width: 25px;
    height: 70px;
    right: 0;
    left: 0;
    top: 100px;
    margin: 0 auto;
    transform: rotate(90deg);
  }

  li .flow_picture {
    width: auto;
    height: 100%;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    justify-self: center;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .flow li:nth-child(3) .flow_picture img {
    height: 55%;
  }

  .flow_picture img {
    width: auto;
    height: 70%;
  }

  .flow_step {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    align-self: end;
    text-align: left;
  }

  .flow_text {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    align-self: start;
    text-align: left;
    font-size: 18px;
  }
}

/*‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
    はじめての方へ
_______________________________________________________*/
.hajimete_content {
  display: grid;
  grid-template-columns: minmax(320px, 480px) 1fr;
  gap: 40px;
}

.hajimete_ttl {
  margin: 0.5em 0;
  font-size: 3.2rem;
  text-align: left;
  line-height: 1.5;
}

.hajimete_ttl span {
  font-weight: inherit;
}

.hajimete_txt {
  font-size: 15px;
}

@media (max-width: 960px) {
  .hajimete_content {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .hajimete_ttl {
    margin-top: 0;
    font-size: 22px;
    text-align: center;
    line-height: 1.8;
  }
}