/* ----------------------------------------------------- */
/* color */
/* ----------------------------------------------------- */
:root {
  --c-red1: #DC1428;
  --c-red2: #F4ECEC;
  --c-blue1: #0E4D96;
  --c-blue2: #ECF0F4;
  --c-yellow1: #f2f255;
  --c-gray1: #f4f4f4;
  --c-gray2: #D9D9D9;
  --c-gray3: #ccc;
}

.m-red1 {
  color: var(--c-red1);
}

.m-blue1 {
  color: var(--c-blue1);
}

.m-yellow1 {
  color: var(--c-yellow1);
}


/* ----------------------------------------------------- */
/* reset */
/* ----------------------------------------------------- */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap'); */

* {
  box-sizing: border-box;
}

body,
div,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
form,
input,
textarea,
fieldset,
pre,
blockquote,
figure,
figcaption {
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  /* letter-spacing: 0.01em; */
  line-height: 1.7;
  font-weight: 500;
}

body {
  overscroll-behavior-y: none;
}

/* Chromeで、背景画像を印刷をデフォルトに設定 */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }
}

header,
footer,
nav,
menu,
main,
article,
aside,
section,
details,
figcaption,
figure {
  display: block
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

th {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

caption,
th {
  text-align: left;
}

img {
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

a img {
  border: none;
}

a:hover,
a:hover img {
  text-decoration: none;
}

i {
  font-style: normal;
}

strong {
  font-weight: normal;
}

@media screen and (min-width: 768px),
print {
  a[href^=tel] {
    cursor: default;
  }

  a[href^=tel]:hover {
    text-decoration: none;
  }
}

small {
  font-size: 1em;
}

.range {
  position: relative;
}

.range a::before {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  content: "";
}


/* ----------------------------------------------------- */
/* reset form */
/* ----------------------------------------------------- */
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
button {
  -webkit-appearance: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select,
option,
button {
  max-width: 100%;
  padding: 0;
  border-radius: 0px;
  border: 1px solid #8b8b8b;
  background-color: #fff;
  background-image: none;
  box-shadow:
    0px 0px 0px rgba(0, 0, 0, 0),
    inset 0px 0px 0px rgba(0, 0, 0, 0);
  font-size: 18px;
}

@media screen and (min-width: 768px),
print {

  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=number],
  textarea,
  select,
  option,
  button {
    font-size: 16px;
  }
}

select {
  background-color: #fff;
}

input[type=text]::-webkit-input-placeholder,
input[type=text]::-moz-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=text]::placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=tel]::-moz-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=tel]::placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=email]::-moz-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=email]::placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=number]::-moz-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=number]::placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-input-placeholder,
textarea:-ms-input-placeholder,
textarea::placeholder {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #999;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}


/* ----------------------------------------------------- */
/* init */
/* ----------------------------------------------------- */
input,
textarea,
select,
option {
  font-size: 16px;
}

html {
  scroll-behavior: smooth;
  font-size: 14px;
  color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* line-height: 1.3; */
  line-height: 1.4;
}

p,
li,
dt,
dd,
th,
td {
  /* line-height: 1.6; */
  line-height: 1.7;
}

img {
  width: 100%;
  height: auto;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

@media screen and (min-width: 768px),
print {
  html {
    font-size: 16px;
  }
}

/* reCAPTCHA非表示 */
.grecaptcha-badge {
  display: none;
}


/* ----------------------------------------------------- */
/* common */
/* ----------------------------------------------------- */
/* マージン  */
.m-mt35-70 {
  margin-top: 35px;
}

@media screen and (min-width: 768px),
print {
  .m-mt35-70 {
    margin-top: 70px;
  }
}

/* 表示・非表示 */
@media screen and (max-width: 767px) {
  .m-hidden-sp {
    display: none !important;
  }
}

@media screen and (min-width: 768px),
print {
  .m-hidden-pc {
    display: none !important;
  }
}

/* 注釈 */
.m-small {
  word-break: break-all;
  font-size: 11px;
  font-weight: 400;
}

@media screen and (min-width: 768px),
print {
  .m-small {
    font-size: 12px;
  }
}

/* リンクテキスト */
.m-link {
  text-align: right;
}

.m-link span {
  padding-left: 1.4em;
  background: url(../img/icon-arrow-circle-r.svg) no-repeat left 6px / 1em;
}

.m-link a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media screen and (min-width: 768px),
print {
  .m-link a:hover {
    filter: brightness(120%);
  }
}

/* flex pc only */
@media screen and (min-width: 768px),
print {
  .m-flex-pc {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .m-flex-pc>* {
    width: 48%;
  }
}

/* 見出し ---------------------------------------------- */
/* m-heading-a */
.m-heading-a {
  margin-bottom: 0.9em;
  font-size: 7vmin;
  /* 28px */
}

.m-heading-a span {
  display: table;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--c-red1);
  font-size: 0.5em;
  line-height: 1;
  color: var(--c-red1);
  text-transform: uppercase;
}

@media screen and (min-width: 768px),
print {
  .m-heading-a {
    font-size: 36px;
  }

  .m-heading-a span {
    font-size: 0.6em;
  }
}

/* m-heading-b */
.m-heading-b {
  margin-bottom: 50px;
  text-align: center;
  font-weight: 800;
  font-size: 8vmin;
}

.m-heading-b span {
  /* font-size: 0.8em; */
  font-size: 0.65em;
}

@media screen and (min-width: 768px),
print {
  .m-heading-b {
    margin-bottom: 70px;
    /* font-size: 52px; */
    font-size: 44px;
  }

  .m-heading-b span {
    font-size: 0.65em;
  }
}

/* m-heading-c */
.m-heading-c {
  margin-bottom: 15px;
  text-align: center;
  font-size: 22px;
}

.m-heading-c span {
  font-size: 16px;
}

@media screen and (min-width: 768px),
print {
  .m-heading-c {
    /* margin-bottom: 15px; */
    margin-bottom: 32px;
    font-size: 30px;
  }

  .m-heading-c span {
    /* font-size: 22px; */
    font-size: 18px;
  }
}


/* ----------------------------------------------------- */
/* conversion */
/* ----------------------------------------------------- */
/* l-conversion-a */
.l-conversion-a {
  margin: 50px 10%;
}

.l-conversion-a .m-btn-cv br {
  display: none;
}

@media screen and (min-width: 768px),
print {
  .l-conversion-a {
    width: min(100%, 940px);
    margin: 40px auto;
    padding: 0 20px;
  }

  .l-conversion-a .m-btn-cv {
    flex-direction: row;
  }

  .l-conversion-a .m-btn-cv>* {
    width: 49%;
  }
}

/* l-conversion-b */
.l-conversion-b .m-btn-cv {
  flex-direction: row;
  justify-content: space-between;
  margin: 40px;
  margin: 50px 5%;
}

.l-conversion-b .m-btn-cv br {
  display: inline;
}

.l-conversion-b .m-btn-cv a {
  padding: 3vmin 0;
}

.l-conversion-b .m-btn-cv>* {
  width: 49%;
}

.l-conversion-b .m-btn-cv a {
  border-radius: 5px;
}

.l-conversion-b .m-btn-cv span {
  display: none;
}

.l-conversion-b .m-btn-cv .m-angle-anime {
  display: block;
}

@media screen and (min-width: 768px),
print {
  .l-conversion-b {
    width: min(100%, 940px);
    margin: 40px auto 0;
    padding: 0 20px;
  }

  .l-conversion-b .m-btn-cv {
    margin: 0;
  }

  .l-conversion-b .m-btn-cv span {
    display: block;
  }

  .l-conversion-b .m-btn-cv a {
    padding: 22px 0;
    border-radius: 9999px;
  }

  .l-conversion-b .m-btn-cv br {
    display: none;
  }
}

/* l-conversion-c */
.l-conversion-c .cv-catch {
  position: relative;
  display: table;
  margin: 0 auto 15px;
  font-weight: 600;
  font-size: 18px;
}

.l-conversion-c .cv-catch::before,
.l-conversion-c .cv-catch::after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  border-left: 1px solid #333;
}

.l-conversion-c .cv-catch::before {
  left: 0;
  top: 0;
  transform: translateX(-14px) rotate(-18deg);
}

.l-conversion-c .cv-catch::after {
  right: 0;
  top: 0;
  transform: translateX(14px) rotate(18deg);
}

.l-conversion-c .m-btn-cv {
  padding: 0 10%;
}

@media screen and (min-width: 768px),
print {
  .l-conversion-c .m-btn-cv {
    width: 437px;
    margin: auto;
    padding: 0;
  }
}

/* m-btn-cv cv共通 */
.m-btn-cv {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.m-btn-cv .br {
  display: none;
}

@media screen and (min-width: 768px),
print {
  .m-btn-cv {
    display: flex;
    flex-wrap: nowrap;
    gap: 3%;
  }

  .m-btn-cv .br {
    display: inline;
  }
}

/* conversion btn */
.m-btn-cv a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vmin 0;
  border-radius: 9999px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-weight: 700;
  font-size: 3.5vmin;
  line-height: 1.4;
  color: #fff;
}

.m-btn-siryo a {
  background-image: linear-gradient(135deg, #3646AB, #1C036F);
}

.m-btn-inquiry a {
  background-image: linear-gradient(135deg, #76E3B9, #3CBABF);
}

@media screen and (min-width: 768px),
print {
  .m-btn-cv a {
    padding: 22px 0;
    border-radius: 9999px;
    font-size: 16px;
    transition: filter 0.4s;
  }

  .btn-tap-tel img,
  .m-btn-cv li {
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.2));
  }

  .m-btn-cv a {
    transition: filter 0.6s;
  }

  .btn-tap-tel a {
    cursor: pointer;
  }

  .m-btn-siryo a:hover {
    filter: brightness(140%);
  }

  .m-btn-inquiry a:hover {
    filter: brightness(110%);
  }
}

/* アニメーション */
.m-angle-anime {
  display: flex;
  position: absolute;
  transform: scale(0.8, 1);
  right: 5%;
  top: 50%;
  translate: 0 -50%;
  font-size: 0.8em;
}

.m-angle-anime i::before {
  font-family: icomoon;
  content: "\e91f";
}

.m-angle-anime i {
  animation-name: fade;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 0.8s;
}

.m-angle-anime i:nth-of-type(2) {
  animation-delay: 0.6s;
}

.m-angle-anime i:nth-of-type(1) {
  animation-delay: 1.2s;
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* m-angle-anime-column */
.m-angle-anime-column span {
  display: flex;
  flex-direction: column;
  font-size: 15px;
}

.m-angle-anime-column i::before {
  font-family: icomoon;
  content: "\e900";
  color: #949494;
}

.m-angle-anime-column i {
  line-height: 0.9;
  transform: scale(2, 1);
  animation: fade2 0.8s both infinite linear;
}

.m-angle-anime-column i:nth-of-type(2) {
  animation-delay: 0.6s;
}

.m-angle-anime-column i:nth-of-type(1) {
  animation-delay: 1.2s;
}

@keyframes fade2 {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* m-btn-conversion-wrap */
.m-btn-conversion-wrap {
  padding: 0 5%;
  margin-bottom: 25px;
  background-color: #e9e9e9;
}

.m-btn-conversion li a {
  display: block;
  height: 16vmin;
  line-height: 16vmin;
  border-radius: 8px;
  text-align: center;
  font-size: 6vmin;
  color: #000;
}

.m-btn-conversion li a span::before {
  margin-right: 3vmin;
}

.m-btn-conversion li:first-of-type {
  margin-bottom: 25px;
}

.m-btn-conversion li:first-of-type a {
  background-color: #005e3c;
  color: #fff;
}

.m-btn-conversion li:first-of-type span::before {
  font-family: icomoon;
  content: "\e940";
  vertical-align: middle;
  display: inline-block;
}

.m-btn-conversion li:last-of-type a {
  background-color: #c4000f;
  color: #fff;
}

.m-btn-conversion li:last-of-type span::before {
  font-family: icomoon;
  content: "\e941";
  vertical-align: middle;
  display: inline-block;
}

@media screen and (min-width: 768px),
print {
  .m-btn-conversion-wrap {
    width: min(100%, 1240px);
    margin: auto;
    margin-bottom: 70px;
    padding: 0 20px;
  }

  .m-btn-conversion {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .m-btn-conversion li {
    width: 48%;
  }

  .m-btn-conversion li a {
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 80px;
    line-height: 80px;
    padding-left: 0;
    border-radius: 8px;
    text-align: center;
    font-size: 26px;
  }

  .m-btn-conversion li a::after {
    transition: width 0.6s;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    display: block;
    width: 0%;
    height: 100%;
    background-color: #c9b935;
  }

  .m-btn-conversion li a:hover::after {
    width: 100%;
  }

  .m-btn-conversion li a span::before {
    margin-right: 12px;
    font-size: 44px;
  }

  .m-btn-conversion li:first-of-type {
    margin-bottom: 0;
  }

  .m-btn-conversion li:first-of-type a::after {
    background-color: #002b1b;
  }

  .m-btn-conversion li:first-of-type span::before {}

  .m-btn-conversion li:last-of-type a::after {
    background-color: #91000b;
  }

  .m-btn-conversion li:last-of-type span::before {}

  .l-block1 .m-btn-conversion li a,
  .l-block2 .m-btn-conversion li a {
    height: 54px;
    line-height: 54px;
    padding-left: 0;
    text-align: center;
    font-size: 22px;
  }

  .l-block1 .m-btn-conversion li a::before,
  .l-block2 .m-btn-conversion li a::before {
    width: 28px;
    height: 28px;
    line-height: 28px;
    margin-right: 5px;
    font-size: 14px;
  }

  .l-block1 .m-btn-conversion li a span::before,
  .l-block2 .m-btn-conversion li a span::before {
    margin-right: 5px;
  }
}

/* m-btn-conversion-inquiry */
.m-btn-conversion-inquiry {
  text-align: center;
}

.m-btn-conversion-inquiry a {
  display: block;
  height: 16vmin;
  line-height: 16vmin;
  padding-left: 0;
  border-radius: 8px;
  text-align: center;
  font-size: 6vmin;
  color: #333;
}

.m-btn-conversion-inquiry a span::before {
  margin-right: 3vmin;
}

.m-btn-conversion-inquiry a {
  background-color: #005e3c;
  color: #fff;
}

.m-btn-conversion-inquiry span::before {
  font-family: icomoon;
  content: "\e940";
  vertical-align: middle;
  display: inline-block;
}

@media screen and (min-width: 768px),
print {
  .m-btn-conversion-inquiry a {
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 54px;
    line-height: 54px;
    padding-left: 0;
    border-radius: 8px;
    text-align: center;
    font-size: 22px;
  }

  .m-btn-conversion-inquiry a::after {
    transition: width .6s;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    display: block;
    width: 0%;
    height: 100%;
    background-color: #c9b935;
  }

  .m-btn-conversion-inquiry a:hover::after {
    width: 100%;
  }

  .m-btn-conversion-inquiry a span::before {
    margin-right: 12px;
    font-size: 44px;
  }

  .m-btn-conversion-inquiry a::before {
    width: 28px;
    height: 28px;
    line-height: 28px;
    margin-right: 5px;
    font-size: 14px;
  }

  .m-btn-conversion-inquiry a span::before {
    margin-right: 5px;
  }

  .m-btn-conversion-inquiry a::after {
    background-color: #002b1b;
  }

  .m-btn-conversion-inquiry span::before {}
}


/* ----------------------------------------------------- */
/* header */
/* ----------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 4vmin 5%;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header .logo {
  width: 35vmin;
}

.btn-open {
  display: flex;
  flex-direction: column;
  border: none;
  background-color: transparent;
  justify-content: space-between;
  width: 10vmin;
  height: 7vmin;
}

.btn-open span {
  display: block;
  width: 100%;
  height: 1vmin;
  background-color: var(--c-red1);
}

@media screen and (min-width: 768px),
print {
  header {
    position: absolute;
    height: 70px;
    padding: 0 30px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  header .logo {
    width: 180px;
  }

  .btn-open {
    display: none;
  }
}


/* ----------------------------------------------------- */
/* gnavi */
/* ----------------------------------------------------- */
/* @media screen and (max-width: 767px) {
  html.scrollStop {
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
  }
} */

/* gnavi */
.gnavi {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 40;
  width: 100%;
  height: 100dvh;
  /* padding-top: 40px; */
  padding-top: 15px;
  background-color: #333;
  color: #fff;
  transform: translate(100%, 0);
  transition: transform .4s;
}

.gnavi .btn-close {
  -webkit-appearance: none;
  display: block;
  margin-left: auto;
  margin-right: 6%;
  padding: 0;
  border: none;
  background-color: rgba(0, 0, 0, 0);
}

.gnavi .btn-close::before {
  font-family: icomoon;
  content: "\e936";
  color: #fff;
  font-size: 6vmin;
  cursor: pointer;
}

.gnavi .btn-close::after {
  content: "close";
  display: block;
  font-weight: 400;
  text-align: left;
  font-size: 3.2vmin;
  color: #fff;
}

/* .gnavi a{ font-size: 16px; } */
.gnavi>ul {
  /* margin-top: 1.5em; */
  margin-top: 15px;
  border-top: 1px solid #fff;
}

.gnavi>ul>li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #fff;
}

.gnavi>ul>li>a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* padding: 0.6em 2em; */
  padding: 0.6em 2em;
  font-size: 4vmin;
}

.gnavi>ul>li>a::after {
  font-family: icomoon;
  content: "\e935";
}

.gnavi.on {
  transform: translate(0, 0);
}

.gnavi-line {
  width: 84%;
  margin: 30px auto 0;
}

.gnavi-line a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9em;
  padding: 1em 1.4em;
  border-radius: 5px;
  background-color: #fff;
  text-align: left;
  font-size: 5.5vmin;
  line-height: 1.3;
  color: #000;
}

.gnavi-line a::after {
  font-family: icomoon;
  content: "\e935";
  margin-left: auto;
  font-size: 1.3em;
  color: #06C755;
}

.gnavi-line img {
  width: 17%;
}

.gnavi-line i {
  color: #06C755;
}

@media screen and (min-width: 768px),
print {
  .gnavi {
    position: static;
    transform: unset;
    transition: unset;
    width: auto;
    height: auto;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
  }

  .gnavi .btn-close {
    display: none;
  }

  .gnavi>ul {
    position: static;
    display: flex;
    gap: 0 1.4em;
    margin-top: 0;
    border: none;
  }

  .gnavi>ul>li {
    border: none;
  }

  .gnavi>ul>li>a {
    position: relative;
    /* height: 40px; */
    /* line-height: 40px; */
    padding: 0;
    color: #000;
    font-size: 1.32vw;
    transition: color 0.4s;
  }

  .gnavi>ul>li>a:hover {
    color: #c4000f;
  }

  .gnavi>ul>li>a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background-color: #c4000f;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .gnavi>ul>li>a:hover::after {
    opacity: 1;
  }

  .fade .gnavi>ul>li>a::after {
    bottom: -5px;
  }

  .gnavi-line {
    display: none;
  }
}

@media screen and (min-width: 1100px),
print {
  .gnavi>ul>li>a {
    font-size: 16px;
  }
}

/* sub-menu */
/* .sub-menu { display: none; } */
.sub-menu {
  display: block;
  width: 100%;
}

.sub-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5em;
  border-top: 1px dotted #aaa;
  padding: 0 8.2% 1em;
  padding-right: 0;
}

.sub-menu li {
  padding-top: 1em;
  font-size: 0.9em;
}

.sub-menu a::before {
  content: "●";
  padding-right: 0.3em;
}

@media screen and (min-width: 768px),
print {
  .sub-menu {
    position: absolute;
    /* right: 0; */
    top: 60px;
    display: none;
    /* width: 100%; */
    width: auto;
    background-color: #333;
  }

  .sub-menu ul {
    display: block;
    padding: 0.2em 0;
    border-top: none;
  }

  .sub-menu li {
    padding: 0.8em 1em;
    line-height: 1;
  }

  .sub-menu li:first-of-type {
    border-left: none;
  }

  .sub-menu a {
    display: block;
    padding: 0;
    border: none;
    font-size: 0.9em;
    color: #fff;
    transition: opacity 0.4s;
  }

  .sub-menu a::before {
    display: none;
  }

  .sub-menu a:hover {
    opacity: 0.7;
  }

  .fade .sub-menu {
    top: 50px;
  }
}


/* ----------------------------------------------------- */
/* footer-owned-media  */
/* ----------------------------------------------------- */
.footer-owned-media {
  padding: 60px 10%;
  background-color: var(--c-gray1);
}

.footer-owned-media ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (min-width: 768px),
print {
  .footer-owned-media {
    padding: 110px 20px;
  }

  .footer-owned-media ul {
    flex-direction: row;
    gap: 0;
    width: min(100%, 800px);
    margin: auto;
  }

  .footer-owned-media a {
    transition: filter 0.3s;
  }

  .footer-owned-media a:hover {
    filter: brightness(90%);
  }
}


/* ----------------------------------------------------- */
/* footer  */
/* ----------------------------------------------------- */
.grecaptcha-badge {
  visibility: hidden;
}

footer {
  /* padding: 40px 5% 12vmin; */
  padding: 40px 5%;
  background-color: #333;
  color: #fff;
}

@media screen and (min-width: 768px),
print {
  footer {
    padding: 50px 20px;
  }
}

/* footer-navi ----------------------------------------- */
/* 共通 */
.footer-navi {
  margin-bottom: 35px;
}

.footer-navi li {
  line-height: 2;
}

/* current navi */
.footer-navi>ul>li {
  margin-bottom: 6px;
  font-weight: 700;
}

/* child navi */
.footer-navi ul ul li {
  font-weight: 400;
}

.footer-navi ul ul li::before {
  content: "・";
}

/* .footer-navi .column-clear li { width: 100%; } */
@media screen and (min-width: 768px),
print {
  /* 共通 */
  .footer-navi {
    display: flex;
    width: min(100%, 1000px);
    margin: 0 auto 60px;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 40px;
  }

  .footer-navi li {
    font-size: 16px;
    width: fit-content;
  }

  .footer-navi a:hover {
    text-decoration: underline;
    text-decoration-color: #999;
    text-underline-offset: 4px;
  }
}

/* footer-bottom --------------------------------------- */
@media screen and (min-width: 768px),
print {
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 1000px);
    margin: auto;
  }
}

/* sns-list -------------------------------------------- */
.sns-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4.1vmin;
  background: url(../img/logo_r_w.svg) no-repeat right center / auto 100%;
}

.sns-list li {
  width: auto;
}

.sns-list img {
  display: block;
  width: auto;
  height: 6.5vmin;
}

@media screen and (min-width: 768px),
print {
  .sns-list {
    gap: 24px;
    background: none;
  }

  .sns-list a {
    transition: filter 0.4s;
  }

  .sns-list a:hover {
    filter: brightness(120%);
  }

  .sns-list img {
    height: 30px;
  }
}

/* copylight ------------------------------------------- */
.copyright {
  /* padding: 30px 0 32vmin; */
  padding: 30px 0 0;
  text-align: center;
  font-weight: 400;
  font-size: 10px;
}

@media screen and (min-width: 768px),
print {
  .copyright {
    padding: 80px 0 0;
    background: url(../img/logo_r_w.svg) no-repeat right center / 100% auto;
    font-size: 12px;
  }
}

/* return-top ------------------------------------------ */
/* @media screen and (min-width: 768px), print {
  .return-top {
    transition: background-color .8s;
    position: absolute;
    top: 30px;
    bottom: 0;
    right: 20px;
    width: 56px;
    height: 56px;
    line-height: 56px;
    border-radius: 8px;
  }
  .return-top:hover { background-color: rgba(255, 255, 255, 0.7); }
  .return-top::before { font-size: 34px; }
} */


/* ----------------------------------------------------- */
/* footer-conversion  */
/* ----------------------------------------------------- */
.footer-conversion {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.5s;
}

.footer-conversion.fade {
  opacity: 1;
}

.footer-conversion .btn-tap-tel {
  position: absolute;
  right: 3%;
  bottom: 23vmin;
  width: 19vmin;
}

.footer-conversion .m-btn-cv {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1em 5%;
}

.footer-conversion .m-btn-cv li {
  width: 49%;
}

.footer-conversion .m-btn-cv .br {
  display: inline;
}

.footer-conversion .m-btn-cv a {
  padding: 3vmin 0;
  border-radius: 5px;
}

.footer-conversion .m-btn-cv span {
  display: none;
}

.footer-conversion .m-btn-cv .m-angle-anime {
  display: block;
}

@media screen and (min-width: 768px),
print {
  .footer-conversion {
    right: 0;
    z-index: 100;
    bottom: 30px;
    translate: unset;
    width: 110px;
  }

  .footer-conversion .btn-tap-tel {
    position: static;
    width: 60px;
    margin: auto;
  }

  .footer-conversion .m-btn-cv {
    display: block;
    padding: 0;
    background-color: rgba(0, 0, 0, 0);
  }

  .footer-conversion .m-btn-cv ul {
    padding: 0;
  }

  .footer-conversion .m-btn-cv li {
    width: 100%;
    margin-top: 1em;
    border-radius: 10px 0 0 10px;
  }

  .footer-conversion .m-btn-cv a {
    display: block;
    height: auto;
    padding: .5em 0;
    border-radius: 10px 0 0 10px;
    border: none;
    box-shadow: none;
    font-size: 14px;
  }

  .footer-conversion .m-btn-cv span {
    display: inline;
  }

  .footer-conversion .m-btn-cv a::after,
  .footer-conversion .m-btn-cv a .m-angle-anime {
    position: static;
    translate: unset;
    display: block;
    margin: auto;
  }
}


/* ----------------------------------------------------- */
/* top keyvisual */
/* ----------------------------------------------------- */
.key-top {
  overflow: hidden;
  position: relative;
  height: 100svh;
}

.key-top::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .05;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* slider */
.slider {
  display: flex;
  flex-direction: column;
}

.item1 {
  animation: slide1 140s infinite linear;
}

.item2 {
  animation: slide2 140s -70s infinite linear;
}

@keyframes slide1 {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

@keyframes slide2 {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-200%);
  }
}

/* catch */
.key-top .catch {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  padding: 20px 5%;
  border-radius: 10px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.9);
}

.key-top .catch h1,
.key-top .catch p {
  text-align: center;
  white-space: nowrap;
}

.key-top .catch h1 {
  font-weight: 900;
  font-size: 8.5vmin;
}

.key-top .catch h1 span {
  /* font-weight: 700; */
  font-weight: 600;
  font-size: 5vmin;
}

.key-top .catch h1 i {
  font-size: 1.55em;
  color: var(--c-blue1);
}

.key-top .catch p {
  padding: 16px 0 10px;
  /* font-weight: 600; */
  font-weight: 500;
  font-size: 4.5vmin;
  line-height: 1.4;
}

/* read */
.key-top .read {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 13px 10%;
  background: var(--c-blue1) url(../img/top/key-top-read-sp.png) no-repeat right 5% bottom / auto 95%;
  font-size: 6vmin;
  color: #fff;
  line-height: 1.4;
  font-weight: 700;
}

.key-top .read span {
  margin-left: 0.5em;
  font-size: 2.5vmin;
  font-weight: 400;
}

@media screen and (min-width: 768px),
print {
  .key-top {
    /* height: 655px; */
    height: calc(100vh - 146px);
    height: calc(100svh - 146px);
    min-height: 538px;
  }

  /* catch */
  .key-top .catch {
    width: 640px;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.9);
    transform: translate(-50%, calc(-50% + (70px / 2)));
  }

  .key-top .catch h1 {
    font-size: 54px;
  }

  .key-top .catch h1 span {
    font-size: 29px;
  }

  .key-top .catch h1 i {
    font-size: 75px;
  }

  .key-top .catch p {
    padding: 20px 0 10px;
    font-size: 20px;
  }

  /* read */
  .key-top .read {
    transform: rotate(5deg);
    position: absolute;
    right: 20px;
    bottom: 5px;
    width: 220px;
    height: 220px;
    padding: 28px 0 0;
    border-radius: 50%;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
    background: var(--c-blue1) url(../img/top/key-top-read-pc.png) no-repeat center bottom -55px / 75% auto;
    text-align: center;
    font-size: 25px;
    line-height: 1.2;
    color: #fff;
  }

  .key-top .read i {
    display: inline-block;
    font-size: 17px;
  }

  .key-top .read span {
    display: block;
    margin-left: 0;
    font-size: 12px;
    margin-top: 3px;
  }
}


/* ----------------------------------------------------- */
/* top */
/* ----------------------------------------------------- */
/* top-sec1 -------------------------------------------- */
.top-sec1 {
  padding: 64px 5%;
  background-color: var(--c-gray1);
}

.top-sec1 p {
  margin-bottom: 24px;
}

.top-sec1 iframe {
  border: 1px solid var(--c-gray1);
  }

@media screen and (min-width: 768px),
print {
  .top-sec1 {
    margin: 120px 0 120px;
    padding: 80px 20px;
    background: none;
    position: relative;
  }

  .top-sec1::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 85vw;
    height: 100%;
    z-index: -1;
    background-color: var(--c-gray1);
    pointer-events: none;
    border-radius: 10px;
  }

  .top-sec1 .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 1200px);
    margin: auto;
    flex-direction: column;
    gap: 40px;
  }

  .top-sec1 .inner>* {
    max-width: 800px;
    width: 100%;
  }

  .top-sec1 p:last-child {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 1100px),
print {
  .top-sec1 .inner {
    flex-direction: row;
  }

  .top-sec1 .inner>* {
    width: 48%;
  }
}

/* /.top-sec1 ------------------------------------------ */

/* top-sec2-head --------------------------------------- */
.top-sec2-head {
  margin-bottom: 80px;
  padding: 80px 5%;
  background: url(../img/top/top-sec2-head-bg-sp.jpg) no-repeat center / cover;
}

.top-sec2-head section {
  padding: 30px 5%;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.top-sec2-head .m-heading-b {
  margin-bottom: 10px;
}

@media screen and (min-width: 768px),
print {
  .top-sec2-head {
    margin-bottom: 120px;
    padding: 100px 20px;
    background: url(../img/top/top-sec2-head-bg-pc.jpg) no-repeat center / cover;
  }

  .top-sec2-head section {
    width: min(100%, 800px);
    margin: auto;
    padding: 56px 30px;
  }

  .top-sec2-head .m-heading-b {
    margin-bottom: 24px;
  }
}

/* /.top-sec2-head ------------------------------------- */

/* top-sec2-tab ---------------------------------------- */
.top-sec2-tab-wrap {
  padding: 0 2%;
  border-bottom: 3px solid var(--c-red1);
}

.top-sec2-tab p {
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  font-size: 22px;
}

.top-sec2-tab p i {
  position: relative;
  left: -15px;
  top: 4px;
  z-index: -1;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: var(--c-yellow1);
}

.top-sec2-tab p i::before,
.top-sec2-tab p i::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--c-yellow1);
  animation: pulsate 2s linear infinite;
}

.top-sec2-tab p i::after {
  animation-delay: 1s;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.top-sec2-tab .m-angle-anime-column {
  display: table;
  margin: auto;
}

.top-sec2-tab .m-angle-anime-column span {
  font-size: 20px;
}

.top-sec2-tab ul {
  position: relative;
  height: 60px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-top: 20px;
}

.top-sec2-tab li {
  width: 100%;
}

.top-sec2-tab li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 40px;
  border-radius: 10px 10px 0 0;
  border: 2px solid var(--c-red1);
  border-bottom: none;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-red1);
}

.top-sec2-tab li.show a {
  height: 50px;
  background-color: var(--c-red1);
  color: #fff;
  font-size: 1.2em;
}

.top-sec2-tab li#carrepairBtn a::before{
  font-family: icomoon;
  content: "\e94a";
  font-size: 1.4em;
  font-weight: 500;
}

.top-sec2-tab li#woodrepairBtn a::before{
  font-family: icomoon;
  content: "\e93b";
  font-size: 1.4em;
  font-weight: 500;
}

.top-sec2-tab li a img {
  display: none;
  width: 1.3em;
}

@media screen and (min-width: 768px),
print {
  .top-sec2-tab-wrap {
    padding: 0 20px;
  }

  .top-sec2-tab {
    position: relative;
    width: min(100%, 1000px);
    margin: auto;
  }

  .top-sec2-tab p {
    margin-bottom: 35px;
    font-size: 36px;
  }

  .top-sec2-tab p i {
    left: -20px;
    top: 8px;
    width: 44px;
    height: 44px;
  }

  .top-sec2-tab p i::before,
  .top-sec2-tab p i::after {
    width: 44px;
    height: 44px;
  }

  .top-sec2-tab .m-angle-anime-column span {
    font-size: 30px;
  }

  .top-sec2-tab ul {
    height: 90px;
    margin-top: 40px;
  }

  .top-sec2-tab li a{
    transition: background-color .2s, color .2s;
  }

  .top-sec2-tab li:not(.show):hover a{
    /* background-color: var(--c-red2); */
    background-color: var(--c-red1);
    color: #fff;
  }

  .top-sec2-tab li a {
    /* height: 70px; */
    height: 65px;
    font-size: 18px;
  }
  .top-sec2-tab li.show a {
    /* height: 90px; */
    height: 80px;
    background-color: var(--c-red1);
    color: #fff;
    font-size: 21px;
  }
}

@media screen and (min-width: 1300px),
print {
  .top-sec2-tab>img {
    position: absolute;
    right: -140px;
    bottom: 0;
    z-index: 1;
    display: block;
    width: 183px;
  }
}

/* /.top-sec2-tab -------------------------------------- */

/* top-tab --------------------------------------------- */
/* #carrepair{ display: none; } */
#woodrepair {
  display: none;
}

/* /.top-tab --------------------------------------------- */

/* top-tab-sec1 ---------------------------------------- */
.top-tab-sec1 {
  padding: 60px 5%;
  background-color: var(--c-red2);
}

.top-tab-sec1 .m-flex-pc {
  display: flex;
  flex-direction: column-reverse;
}

.top-tab-sec1 .m-heading-a {}

.top-tab-sec1 .read {
  margin-bottom: 20px;
}

.top-tab-sec1 ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
  padding-top: 31px;
  border-top: 1px solid var(--c-gray2);
}

.top-tab-sec1 .m-link {
  margin-top: 20px;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec1 {
    padding: 110px 20px;
  }

  .top-tab-sec1 .inner {
    width: min(100%, 1000px);
    margin: auto;
  }

  .top-tab-sec1 .m-flex-pc {
    flex-direction: row;
  }

  .top-tab-sec1 .m-flex>div {
    order: 1;
  }

  .top-tab-sec1 .m-heading-a {
    margin-bottom: 16px;
  }

  .top-tab-sec1 .read {
    margin-bottom: 0;
  }

  .top-tab-sec1 ul {
    flex-direction: row;
    gap: 0;
    margin-top: 40px;
    padding-top: 41px;
  }
}

/* /.top-tab-sec1 -------------------------------------- */

/* top-tab-sec2 ---------------------------------------- */
.top-tab-sec2 {
  overflow: hidden;
  padding: 60px 0 10px;
}

.top-tab-sec2>h2 {
  margin-bottom: 60px;
  text-align: center;
  font-size: 7vmin;
  background: url(../img/top/top-tab-sec2-text.png) repeat-x 0 center / 500px auto;
  animation: scroll-text1 25s linear both infinite;
}

@keyframes scroll-text1 {
  100% {
    background-position: -1000px center;
  }
}

.top-tab-sec2>h2 span {
  opacity: 0.1;
  position: absolute;
  bottom: -2vmin;
  z-index: -1;
  display: block;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 12.7vmin;
  color: var(--c-blue1);
  white-space: nowrap;
}

.top-tab-sec2>h2 i {
  /* font-size: 0.7em; */
  font-size: 0.65em;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec2 {
    padding: 110px 20px;
  }

  .top-tab-sec2>h2 {
    width: min(100%, 1000px);
    margin: auto;
    padding-top: 15px;
    margin-bottom: calc(60px + 50px);
    font-size: 44px;
    background: url(../img/top/top-tab-sec2-text.png) no-repeat center top / 700px auto;
    animation: none;
  }

  .top-tab-sec2>h2 i {
    /* font-size: 28px; */
  }
}

/* top-tab-sec2-child1 ------------  */
.top-tab-sec2-child1 {
  padding: 0 10% 30px;
  background: linear-gradient(transparent 20%, var(--c-gray1) 20%);
}

.top-tab-sec2-child1 h3 {
  margin: 20px 0 5px;
  font-size: 5.5vmin;
}

.top-tab-sec2-child1 p {
  font-size: 0.8em;
  white-space: nowrap;
  font-weight: 400;
}

.top-tab-sec2-child1 dl div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 16px;
}

.top-tab-sec2-child1 dt {
  background-color: var(--c-blue1);
  text-align: center;
  color: #fff;
  width: 40%;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec2-child1 {
    align-items: flex-end;
    width: min(100%, 1200px);
    margin: auto;
    margin-bottom: 80px;
    padding: 35px 0 50px;
    background: linear-gradient(to right, transparent 20%, var(--c-gray1) 20%);
  }

  .top-tab-sec2-child1>* {
    width: 47%;
  }

  .top-tab-sec2-child1 img {
    margin-top: -80px;
  }

  .top-tab-sec2-child1 h3 {
    margin: 0 0 5px;
    font-size: 28px;
  }

  .top-tab-sec2-child1 p {
    margin-bottom: 25px;
  }

  .top-tab-sec2-child1 dl div {
    gap: 10px;
    margin-top: 10px;
    font-size: 16px;
  }

  .top-tab-sec2-child1 dt {
    width: 30%;
  }
}

/* top-tab-sec2-child2 ------------  */
/* 下アングル */
.top-tab-sec2-child2 {
  position: relative;
}

.top-tab-sec2-child2::before,
.top-tab-sec2-child2::after {
  position: absolute;
  bottom: -100px;
  content: "";
  width: 70%;
  height: 70px;
}

.top-tab-sec2-child2::before {
  left: -20%;
  transform: rotate(30deg);
  transform-origin: right bottom;
  background: linear-gradient(-60deg, var(--c-gray1) 70%, transparent);
}

.top-tab-sec2-child2::after {
  right: -20%;
  transform: rotate(-30deg);
  transform-origin: left bottom;
  background: linear-gradient(60deg, var(--c-gray1) 70%, transparent);
}

.top-tab-sec2-child2 ol {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 40px auto 0;
  padding-top: 41px;
  border-top: 1px solid var(--c-gray2);
}

.top-tab-sec2-child2 ol>li {
  position: relative;
  margin-bottom: 60px;
  background-color: #fff;
}

.top-tab-sec2-child2 .triangle {
  padding-bottom: 41px;
  border-bottom: 1px solid var(--c-gray2);
}

.top-tab-sec2-child2 .triangle::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 45px solid transparent;
  border-left: 45px solid transparent;
  border-top: 29px solid var(--c-gray1);
  border-bottom: 0;
}

.top-tab-sec2-child2 h3 {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 7vmin;
}

.top-tab-sec2-child2 h3 span {
  padding: 0.3em 1em 0.2em;
  background-color: var(--c-blue1);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 0.5em;
  color: #fff;
  text-transform: uppercase;
}

.top-tab-sec2-child2 p {
  margin: 16px 0 16px;
  font-weight: 700;
  font-size: 18px;
}

.top-tab-sec2-child2 section ul {
  margin-bottom: 30px;
  padding-left: 1.4em;
  list-style-type: disc;
}

.top-tab-sec2-child2 section li {
  margin-top: 0.2em;
}

@media screen and (min-width: 768px),
print {

  /* 下アングル */
  .top-tab-sec2-child2::before,
  .top-tab-sec2-child2::after {
    bottom: -180px;
    width: 70%;
    height: 130px;
  }

  .top-tab-sec2-child2::before {
    left: -17.5%;
    background: linear-gradient(-60deg, var(--c-gray1) 70%, transparent);
  }

  .top-tab-sec2-child2::after {
    right: -22.5%;
    background: linear-gradient(60deg, var(--c-gray1) 70%, transparent);
  }

  .top-tab-sec2-child2 ol {
    position: relative;
    width: min(100%, 1240px);
    border-top: none;
    padding: 0 20px;
    padding-left: 100px;
  }

  .top-tab-sec2-child2 ol::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 61px;
    display: block;
    height: 76%;
    border-left: 2px dashed #ccc;
  }

  .top-tab-sec2-child2 ol>li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 50px;
    margin-bottom: 60px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  }

  .top-tab-sec2-child2 ol>li::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 1px solid var(--c-blue1);
    background-color: var(--c-blue1);
  }

  .top-tab-sec2-child2 ol>li:nth-of-type(2n)::before {
    background-color: #fff;
  }

  .top-tab-sec2-child2 .triangle {
    border-bottom: none;
  }

  .top-tab-sec2-child2 .triangle::after {
    bottom: -41px;
    z-index: -1;
    border-right: 63px solid transparent;
    border-left: 63px solid transparent;
    border-top: 41px solid var(--c-gray1);
  }

  .top-tab-sec2-child2 section{
    width: 66%;
  }

  .top-tab-sec2-child2 h3 {
    font-size: 30px;
  }

  .top-tab-sec2-child2 p {
    margin: 16px 0;
    font-size: 22px;
  }

  .top-tab-sec2-child2 section ul {
    margin-bottom: 0;
  }

  .top-tab-sec2-child2 picture {
    width: 30%;
  }
}

@media screen and (min-width: 1200px),
print {
  .top-tab-sec2-child2 ol>li {
    padding: 50px 100px;
  }
}

/* top-tab-wood-sec2-child3 ------------ */
.top-tab-wood-sec2-child3 {
  padding: 0 5%;
}

/* 画像 */
.top-tab-wood-sec2-child3 .img-wrap {
  position: relative;
  padding-right: 5%;
}

.top-tab-wood-sec2-child3 .catch {
  position: absolute;
  top: -12%;
  right: 0;
  width: 20%;
  animation: rotate-a 10s infinite both linear;
}

@keyframes rotate-a {
  100% {
    transform: rotate(360deg);
  }
}

.top-tab-wood-sec2-child3 .sub {
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 36%;
}

/* 吹き出し */
.top-tab-wood-sec2-child3 .text {
  position: relative;
  margin: 50px 5% 0;
  border-radius: 10px;
  box-shadow: 0 0 0 1px #333;
}

.top-tab-wood-sec2-child3 .text p {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 20px 0;
  border-radius: 10px;
  background-color: #fff;
  /* font-weight: 700; */
  font-weight: 600;
  font-size: 4.3vmin;
}

.top-tab-wood-sec2-child3 .text::before {
  content: "";
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11px solid transparent;
  border-left: 11px solid transparent;
  border-bottom: 22px solid #333;
  border-top: 0;
}

.top-tab-wood-sec2-child3 .text p::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 21px solid #fff;
  border-top: 0;
}

.top-tab-wood-sec2-child3 .text p i {
  display: block;
  margin-bottom: 0.5em;
}

@media screen and (min-width: 768px),
print {
  .top-tab-wood-sec2-child3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: min(100%, 1240px);
    margin: auto;
    padding: 0 20px;
    padding-left: 100px;
  }

  /* 画像 */
  .top-tab-wood-sec2-child3 .img-wrap {
    order: 1;
    width: 60%;
    padding-right: 100px;
  }

  .top-tab-wood-sec2-child3 .catch {
    top: -30px;
    right: 50px;
    width: 100px;
  }

  .top-tab-wood-sec2-child3 .sub {
    bottom: -40px;
    width: 40%;
  }

  /* 吹き出し */
  .top-tab-wood-sec2-child3 .text {
    width: 40%;
    margin: 0;
  }

  .top-tab-wood-sec2-child3 .text p {
    /* padding: 1em; */
    padding: 1.5em 1em;
    font-size: 20px;
  }

  .top-tab-wood-sec2-child3 .text::before {
    display: none;
  }

  .top-tab-wood-sec2-child3 .text p::before {
    display: none;
  }

  .top-tab-wood-sec2-child3 .text::after {
    content: "";
    position: absolute;
    bottom: 44px;
    right: -36px;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 24px solid #333;
    border-right: 0;
  }

  .top-tab-wood-sec2-child3 .text p::after {
    content: "";
    position: absolute;
    bottom: 45px;
    right: -34px;
    transform: translateX(-50%);
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 23px solid rgba(255, 255, 255, 1);
    border-right: 0;
  }
}

/* conversion */
@media screen and (min-width: 768px),
print {
  .top-tab-sec2 .l-conversion-a {
    padding: 80px 0 0;
  }
}

/* /.top-tab-sec2 -------------------------------------- */

/* top-tab-sec3 ---------------------------------------- */
.top-tab-sec3 {
  padding-bottom: 100px;
  background-image: linear-gradient(transparent 69%, #333 69%);
}

.top-tab-sec3 h2 {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.top-tab-sec3 h2 span {
  padding-left: 5%;
  padding-right: 1em;
  background-color: #fff;
}

.top-tab-sec3 h2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 2px;
  border-top: 2px solid var(--c-red1);
}

.top-tab-sec3 .swiper {
  margin-left: 54px;
  margin-right: 5%;
}

.top-tab-sec3 .swiper-slide a {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid var(--c-gray2);
}

.top-tab-sec3 .swiper-slide a::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent var(--c-red1) transparent;
  border-width: 0px 0px 13px 13px;
}

/* nextボタン */
.top-tab-sec3 .swiper-container {
  position: relative;
}

.top-tab-sec3 .swiper-button-next {
  left: 8px;
  right: auto;
  width: 38px;
  height: 38px;
}

.top-tab-sec3 .swiper-button-next::after {
  display: none;
}

/* dot */
.top-tab-sec3 .swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
  left: 54px;
  top: auto;
  bottom: -40px;
}

.top-tab-sec3 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
}

.top-tab-sec3 .swiper-pagination-bullet-active {
  background-color: var(--c-red1);
}

/* content */
.top-tab-sec3 .before {
  padding: 20px 5%;
}

.top-tab-sec3 .after {
  padding: 0 5% 20px;
}

.top-tab-sec3 .before dt,
.top-tab-sec3 .after dt {
  display: table;
  margin-bottom: 10px;
  padding: 0.2px 1em;
  border-radius: 9999px;
  border: 1px solid #333;
  /* font-weight: 700; */
  font-size: 14px;
}

.top-tab-sec3 .after dt {
  background-color: #333;
  color: #fff;
}

.top-tab-sec3 .before dd,
.top-tab-sec3 .after dd {
  margin-top: 5px;
  padding-left: 1.5em;
  background: url(../img/icon-no-check2.svg) no-repeat left 4px / auto 1em;
  line-height: 1.5;
}

.top-tab-sec3 .after dd {
  background-image: url(../img/icon-check2.svg);
}

.top-tab-sec3 .m-link {
  margin-top: 15px;
  padding-right: 5%;
}

.top-tab-sec3 .m-link span {
  color: #fff;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec3 {
    padding: 0 0 110px;
    padding-right: 0;
    background-image: linear-gradient(transparent 66%, #333 66%);
  }

  .top-tab-sec3 .inner {
    width: min(100%, 1040px);
    padding-left: 20px;
    padding-right: 20px;
    margin: auto;
  }

  .top-tab-sec3 h2 {
    margin-bottom: 30px;
    font-size: 28px;
  }

  .top-tab-sec3 h2 span {
    padding-left: 0;
  }

  .top-tab-sec3 .swipe-container {
    width: min(100%, 1200px);
    margin: auto;
  }

  .top-tab-sec3 .swiper {
    margin: 0 auto;
    width: 100%;
  }

  .top-tab-sec3 .swiper-slide a {
    transition: filter 0.5s;
  }

  .top-tab-sec3 .swiper-slide a:hover {
    filter: brightness(90%);
  }

  .top-tab-sec3 .swiper-slide a::after {
    border-width: 0px 0px 20px 20px;
  }

  /* nextボタン */
  .top-tab-sec3 .swiper-button-next {
    width: 64px;
    height: 64px;
    left: 8px;
    right: auto;
    transition: filter 0.3s;
  }

  .top-tab-sec3 .swiper-button-next:hover {
    filter: brightness(90%);
  }

  /* dot */
  .top-tab-sec3 .swiper-pagination-bullets.swiper-pagination-horizontal {
    left: 92px;
    bottom: -40px;
  }

  /* content */
  .top-tab-sec3 .before {
    margin: 0 30px;
    padding: 30px 0 19px;
    border-bottom: 1px solid var(--c-gray3);
  }

  .top-tab-sec3 .after {
    margin: 0 30px;
    padding: 20px 0 30px;
  }

  .top-tab-sec3 .before dt,
  .top-tab-sec3 .after dt {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .top-tab-sec3 .before dd,
  .top-tab-sec3 .after dd {
    margin-top: 6px;
    padding-left: 1.5em;
    background-position: left 5px;
    line-height: 1.5;
  }

  .top-tab-sec3 .m-link {
    padding-right: 0;
  }
}

@media screen and (min-width: 1100px),
print {
  .top-tab-sec3 .inner {
    width: min(100%, 1240px);
  }
}



/* /.top-tab-sec3 -------------------------------------- */

/* top-tab-sec4 ---------------------------------------- */
.top-tab-sec4 {
  padding-top: 60px;
}

.top-tab-sec4 h2 {
  margin-bottom: 35px;
  text-align: center;
  font-size: 8vmin;
  background: url(../img/top/top-tab-sec4-text.png) repeat-x 0 center / 3000px auto;
  animation: scroll-text2 60s linear both infinite;
}

@keyframes scroll-text2 {
  100% {
    background-position: -3000px center;
  }
}

.top-tab-sec4 .list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 60px;
  padding: 0 10%;
}

.top-tab-sec4 .list li {
  padding: 1.3em 0;
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  background-color: var(--c-gray1);
  text-align: center;
  font-size: 4vmin;
}

.top-tab-sec4 .list li .m-red1 {
  font-weight: 700;
}

.top-tab-sec4 .bg-red {
  position: relative;
  padding: 70px 0 65px;
  background-color: var(--c-red1);
}

.top-tab-sec4 .bg-red::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 32px solid transparent;
  border-left: 32px solid transparent;
  border-top: 40px solid #ffffff;
  border-bottom: 0;
}

.top-tab-sec4 .bg-red p {
  font-weight: 700;
  text-align: center;
  font-size: 10vmin;
  line-height: 1.2;
  color: #fff;
}

.top-tab-sec4 .bg-red p span {
  font-size: 0.6em;
}

.top-tab-sec4 .bg-red .l-conversion-a {
  margin: 40px 10% 0;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec4 {
    padding-top: 120px;
  }

  .top-tab-sec4 h2 {
    padding-top: 30px;
    margin-bottom: 80px;
    font-size: 44px;
    background: url(../img/top/top-tab-sec4-text.png) repeat-x 0 0 / 2500px auto;
    animation: scroll-text 80s linear both infinite;
  }

  @keyframes scroll-text {
    100% {
      background-position: -2500px 0;
    }
  }

  .top-tab-sec4 .list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: min(100%, 1240px);
    margin: 0 auto 120px;
    padding: 0 20px;
    gap: 8px;
  }

  .top-tab-sec4 .list li {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    /* width: 100%; */
    /* width: calc((100% - (8px *4)) / 5); */
    width: 233px;
    height: 150px;
    padding: 0;
  }

  .top-tab-sec4 .bg-red {
    padding: 75px 0 120px;
  }

  .top-tab-sec4 .bg-red::before {
    border-right: 57px solid transparent;
    border-left: 57px solid transparent;
    border-top: 50px solid #ffffff;
  }

  .top-tab-sec4 .bg-red p {
    font-size: 75px;
  }

  .top-tab-sec4 .bg-red .l-conversion-a {
    margin: 54px auto 0;
  }
}

/* /.top-tab-sec4 -------------------------------------- */

/* top-tab-sec5 ---------------------------------------- */
/* top-tab-sec5 */
.top-tab-sec5-bg {
  padding: 0 5%;
}

.top-tab-sec5 {
  padding: 60px 0;
  border-bottom: 1px solid var(--c-gray2);
}

.top-tab-sec5:last-child {
  border-bottom: none;
}

.top-tab-sec5 .number {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.1em;
  margin-bottom: 30px;
  /* font-family: "Roboto", sans-serif; */
  /* font-variation-settings: "wdth" 80;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400; */
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  font-size: 10vmin;
  line-height: 1;
}

.top-tab-sec5 .number::after {
  content: "";
  position: absolute;
  /* bottom: -5px; */
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  /* width: 60px; */
  width: 32px;
  border-top: 2px solid #333;
}

.top-tab-sec5 .number span {
  font-size: 0.4em;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec5-bg {
    background-color: var(--c-gray1);
    /* padding: 100px 20px; */
    padding: 100px 60px;
  }

  .top-tab-sec5 {
    position: relative;
    width: min(100%, 1200px);
    margin: 0 auto 100px;
    padding: 75px 20px;
    border-radius: 10px;
    border-bottom: none;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }

  .top-tab-sec5:last-child {
    margin-bottom: 0;
  }

  .top-tab-sec5 .number {
    position: absolute;
    top: -30px;
    left: -55px;
    display: table;
    margin-bottom: 0;
    padding-left: 20px;
    text-align: left;
    font-size: 70px;
  }

  .top-tab-sec5 .number::after {
    bottom: 5px;
    left: 10px;
    transform: rotate(-45deg);
    width: 180px;
  }

  .top-tab-sec5 .number span {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    transform: rotate(-90deg);
    transform-origin: left top;
    font-size: 0.25em;
  }
}

/* top-tab-sec5-child-a */
.top-tab-sec5-child-a {
  margin-top: 50px;
}

.top-tab-sec5-child-a h3 {
  margin-bottom: 16px;
  text-align: center;
  font-size: 20px;
}

.top-tab-sec5-child-a>.m-small {
  margin-top: 1em;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec5-child-a {
    width: min(100%, 1000px);
    margin: 70px auto 0;
  }

  .top-tab-sec5-child-a h3 {
    margin-bottom: 25px;
    font-size: 24px;
  }
}

/* nensyu */
.top-tab-sec5-child-a>.nensyu {
  padding: 30px 5%;
  border-radius: 10px;
  background-color: var(--c-gray1);
  text-align: center;
}

.top-tab-sec5-child-a .text1 {
  margin: 10px 0 15px;
  line-height: 1.3;
  font-weight: 700;
  /* font-size: 24px; */
  font-size: 22px;
}

.top-tab-sec5-child-a img {
  width: 30%;
}

.top-tab-sec5-child-a .text1 i {
  margin: 0 0.1em;
  color: var(--c-blue1);
  font-size: 1.5em;
}

.top-tab-sec5-child-a .text1 span {
  display: block;
  font-weight: 400;
  font-size: 14px;
  margin-top: 3px;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec5-child-a>.nensyu {
    display: flex;
    justify-content: center;
    align-items: bottom;
    gap: 30px;
    padding: 50px 20px;
    text-align: left;
  }

  .top-tab-sec5-child-a .text1 {
    margin: 0;
    font-size: 24px;
  }

  .top-tab-sec5-child-a img {
    width: 100px;
  }

  .top-tab-sec5-child-a .text1 i {
    color: var(--c-blue1);
    font-size: 2em;
  }

  .top-tab-sec5-child-a .text1 span {
    display: inline;
    font-size: 16px;
  }
}

/* owner */
.top-tab-sec5-child-a .owner dl {
  overflow: hidden;
  margin-top: 10px;
  padding-top: 16px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.top-tab-sec5-child-a .owner dt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
}

.top-tab-sec5-child-a .owner img {
  width: 54px;
}

.top-tab-sec5-child-a .owner dt span::after {
  content: "さん";
  font-size: 0.7em;
}

.top-tab-sec5-child-a .owner dd {
  margin-top: 24px;
  padding-bottom: 16px;
  background-color: var(--c-red2);
  text-align: center;
}

.top-tab-sec5-child-a .owner dd p:nth-of-type(1) {
  border-radius: 9999px;
  transform: translateY(-50%);
  border: 1px solid var(--c-red1);
  background-color: #fff;
  /* width: 90%; */
  width: 80%;
  margin: auto;
  /* font-weight: 700; */
  color: var(--c-red1);
  font-size: 16px;
}

.top-tab-sec5-child-a .owner dd p:nth-of-type(2) {
  display: table;
  margin: -5px auto 0;
  line-height: 1.2;
}

.top-tab-sec5-child-a .owner dd p:nth-of-type(2) span {
  font-weight: 700;
  /* font-size: 24px; */
  font-size: 22px;
}

.top-tab-sec5-child-a .owner dd p:nth-of-type(2) span i {
  margin: 0 0.1em;
  font-size: 1.5em;
  color: var(--c-red1);
}

.top-tab-sec5-child-a .owner dd p:nth-of-type(2) .m-small {
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec5-child-a .owner {
    display: flex;
    justify-content: space-between;
    gap: 24px;
  }

  .top-tab-sec5-child-a .owner li {
    width: 100%;
  }

  .top-tab-sec5-child-a .owner dl {
    margin-top: 0;
    padding-top: 20px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  }

  .top-tab-sec5-child-a .owner dt {
    flex-direction: column;
    gap: 10px;
    font-size: 22px;
  }

  .top-tab-sec5-child-a .owner img {
    width: 130px;
  }

  .top-tab-sec5-child-a .owner dd {
    margin-top: 20px;
    padding: 20px 0;
  }

  .top-tab-sec5-child-a .owner dd p:nth-of-type(1) {
    transform: translateY(0);
    width: 90%;
    padding: 3px 0;
    /* font-size: 18px; */
    font-size: 1.7vmin;
  }

  .top-tab-sec5-child-a .owner dd p:nth-of-type(2) {
    margin: 10px auto 0;
  }

  .top-tab-sec5-child-a .owner dd p:nth-of-type(2) .m-small {
    margin-top: 6px;
  }
}

/* graph */
.top-tab-sec5 .graph {
  margin-bottom: 40px;
}

.top-tab-sec5 .graph p:first-child {
  margin-bottom: 10px;
  padding: 24px 5% 16px;
  border-radius: 10px;
  border: 1px solid var(--c-gray2);
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec5 .graph {
    width: min(100%, 800px);
    margin: 0 auto 40px;
  }

  .top-tab-sec5 .graph p:first-child {
    padding: 30px 70px;
  }
}

/* point */
.top-tab-sec5 .point {
  margin-bottom: 45px;
  padding: 20px 5%;
  border-radius: 10px;
  background: var(--c-blue2) url(../img/top/top-tab-sec5-lady.png) no-repeat right 5% bottom / 25% auto;
}

.top-tab-sec5 .point h3 {
  display: table;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--c-blue1);
  font-size: 16px;
  color: var(--c-blue1);
}

.top-tab-sec5 .point p:last-of-type {
  margin-top: 10px;
}

.top-tab-sec5 .point p:last-of-type .m-red1 {
  font-weight: 700;
  font-size: 1.2em;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec5 .point {
    width: min(100%, 800px);
    margin: 0 auto 40px;
    padding: 35px 90px;
    padding-right: 180px;
    background-position: right 65px bottom;
    background-size: 122px auto;
  }

  .top-tab-sec5 .graph p:first-child {
    padding: 40px 70px 20px;
  }
}

/* cause */
.top-tab-sec5 .cause h3 {
  margin-bottom: 15px;
  padding: 0.2em 0;
  border-radius: 9999px;
  border: 1px solid var(--c-blue1);
  color: var(--c-blue1);
  text-align: center;
  font-size: 16px;
}

.top-tab-sec5 .cause-list1 {
  width: fit-content;
  margin: 0 auto;
}

.top-tab-sec5 .cause-list1 li {
  width: fit-content;
  margin-top: 5px;
  padding-left: 1.4em;
  background: url(../img/icon-check2.svg) no-repeat left 5px / auto 1em;
  /* font-weight: 400; */
}

.top-tab-sec5 .cause-list2 {
  margin: 45px 0 5px;
}

.top-tab-sec5 .cause-list2 li {
  display: flex;
  margin-top: 8px;
}

.top-tab-sec5 .cause-list2 img {
  width: 35%;
}

.top-tab-sec5 .cause-list2 div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65%;
  background-color: var(--c-blue1);
  font-weight: 700;
  color: #fff;
  font-size: 26px;
}

.top-tab-sec5 .cause-list2 p {
  margin-top: -3vmin;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

.top-tab-sec5 .cause-list2 span {
  font-size: 14px;
}

.top-tab-sec5 .cause-list2 i {
  font-size: 20px;
}

.top-tab-sec5 .m-small {
  margin-top: 5px;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec5 .cause {
    flex-wrap: wrap;
    width: min(100%, 960px);
    margin: auto;
  }

  .top-tab-sec5 .cause.car {
    width: min(100%, 800px);
  }

  .top-tab-sec5 .cause h3 {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .top-tab-sec5 .cause>div {
    order: 1;
  }

  .top-tab-sec5 .cause.car>div {
    width: 38%;
  }

  .top-tab-sec5 .cause.car .cause-list2 {
    width: 58%;
  }

  .top-tab-sec5 .cause.car .top-tab-sec5 .cause-list1 {
    margin: auto;
  }

  .top-tab-sec5 .cause.car .top-tab-sec5 .cause-list1 li {
    margin-top: 5px;
    padding-left: 1.4em;
    background: url(../img/icon-check2.svg) no-repeat left 5px / auto 1em;
    font-weight: 400;
  }

  .top-tab-sec5 .cause-list2 {
    display: flex;
    gap: 10px;
    margin: 0;
  }

  .top-tab-sec5 .cause-list2 li {
    display: block;
    width: 100%;
    margin-top: 0;
  }

  .top-tab-sec5 .cause-list2 img {
    width: 100%;
  }

  .top-tab-sec5 .cause-list2 div {
    display: block;
    width: 100%;
    font-size: 37px;
  }

  .top-tab-sec5 .cause-list2 p {
    margin-top: 0;
    padding-bottom: 20px;
    text-align: center;
  }

  .top-tab-sec5 .cause-list2 span {
    font-size: 17px;
  }

  .top-tab-sec5 .cause-list2 i {
    font-size: 23px;
  }

  .top-tab-sec5 .cause .m-small {
    order: 2;
    width: 100%;
  }
}

/* media */
.top-tab-sec5 .media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top-tab-sec5 .media h3 {
  margin-bottom: 15px;
  padding: 0.2em 0;
  border-radius: 9999px;
  border: 1px solid var(--c-blue1);
  text-align: center;
  font-weight: 700;
  color: var(--c-blue1);
}

.top-tab-sec5 .media dl div {
  margin-top: 10px;
  padding-left: 14px;
  border-left: 3px solid var(--c-blue1);
}

.top-tab-sec5 .media dt {
  font-weight: 700;
  font-size: 16px;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec5 .media {
    gap: 0;
    width: min(100%, 1000px);
    margin: auto;
    flex-direction: column-reverse;
  }

  .top-tab-sec5 .m-flex-pc>* {
    width: 100%;
    max-width: 700px;
  }

  .top-tab-sec5 .media img {
    order: 1;
  }

  .top-tab-sec5 .media h3 {
    font-size: 20px;
  }

  .top-tab-sec5 .media dt {
    font-size: 17px;
  }
}

@media screen and (min-width: 1100px),
print {
  .top-tab-sec5 .media {
    padding-left: 50px;
    flex-direction: row;
  }

  .top-tab-sec5 .m-flex-pc>* {
    width: 48%;
  }
}

/* /.top-tab-sec5 -------------------------------------- */

/* top-tab-sec6 ---------------------------------------- */
.top-tab-sec6 {
  background-color: var(--c-red1);
  text-align: center;
  color: #fff;
}

.top-tab-sec6>div {
  padding: 10vmin 0;
}

.top-tab-sec6 h2 {
  font-weight: 800;
  font-size: 8vmin;
}

.top-tab-sec6 h2 span {
  font-size: 0.8em;
}

.top-tab-sec6 .text1 {
  margin: 5vmin 0;
  font-size: 18px;
}

.top-tab-sec6 .text2 {
  display: table;
  margin: auto;
}

.top-tab-sec6 .text2 span:nth-child(1) {
  display: inline-block;
  margin-right: 0.5em;
  padding: 0.1em 1em;
  border-radius: 5px;
  background-color: #fff;
  color: var(--c-red1);
  font-weight: 700;
  font-size: 18px;
  transform: translateY(-6px);
}

.top-tab-sec6 .text2 span:nth-child(2) {
  font-weight: 700;
  font-size: 38px;
}

.top-tab-sec6 .text2 span:nth-child(3) {
  font-weight: 400;
  font-size: 28px;
}

.top-tab-sec6 .text2 .m-small {
  display: block;
  margin-top: -6px;
  text-align: right;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec6 {
    display: flex;
    text-align: left;
  }

  .top-tab-sec6 picture {
    width: 53%;
  }

  .top-tab-sec6>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 47%;
    padding: 0;
    padding-left: 20px;
  }

  .top-tab-sec6 h2 {
    font-size: 4vw;
  }

  .top-tab-sec6 h2 span {
    font-size: 0.65em;
  }

  .top-tab-sec6 .text1 {
    margin: 20px 0 30px;
    line-height: 1.4;
    /* font-size: 2.5vw; */
    font-size: 2vw;
    max-width: 600px;
  }

  .top-tab-sec6 .text2 {
    display: block;
    margin: auto;
  }

  .top-tab-sec6 .text2 span:nth-child(1) {
    display: table;
    font-size: 20px;
    transform: translateY(0);
  }

  .top-tab-sec6 .text2 span:nth-child(2) {
    font-size: 4vw;
  }

  .top-tab-sec6 .text2 span:nth-child(3) {
    font-size: 32px;
  }

  .top-tab-sec6 .text2 .m-small {
    display: inline;
    margin-top: 0;
    text-align: left;
  }
}

@media screen and (min-width: 1100px),
print {
  .top-tab-sec6 h2 {
    font-size: 44px;
  }

  .top-tab-sec6 h2 span {
    font-size: 28px;
  }

  .top-tab-sec6 .text1 {
    font-size: 24px;
  }

  .top-tab-sec6 .text2 span:nth-child(2) {
    font-size: 44px;
  }
}

/* /.top-tab-sec6 -------------------------------------- */

/* top-tab-sec7 ---------------------------------------- */
.top-tab-sec7-bg {
  padding: 60px 0;
  background-color: var(--c-gray1);
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec7-bg {
    padding: 100px 20px;
  }
}

/* content1 */
.top-tab-sec7 .content1 {
  margin: 0 5% 30px;
}

.top-tab-sec7 .content1 img {
  display: block;
  margin-top: 25px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec7 .content1 {
    width: min(100%, 1000px);
    margin: 0 auto 50px;
  }

  .top-tab-sec7 .content1>div {
    order: 1;
  }

  .top-tab-sec7 .content1 .m-heading-c {
    text-align: left;
    margin-bottom: 24px;
  }

  .top-tab-sec7 .content1 img {
    display: block;
    margin-top: 25px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  }
}

/* content2 */
.top-tab-sec7 .content2 {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec7 .content2 {
    width: min(100%, 1000px);
    margin: 0 auto 50px;
  }

  .top-tab-sec7 .content2 img {
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  }
}

/* content3 */
.top-tab-sec7 .content3 {
  padding: 0 5%;
}

.top-tab-sec7 .content3 li {
  margin-top: 16px;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

/* owner */
.top-tab-sec7 .content3 .owner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 15px 5%;
}

.top-tab-sec7 .content3 .owner img {
  width: 25%;
}

.top-tab-sec7 .content3 .owner dt {
  font-weight: 700;
  font-size: 18px;
}

.top-tab-sec7 .content3 .owner dt::after {
  content: "さん";
  font-size: 0.7em;
}

/* uriage */
.top-tab-sec7 .content3 .bg {
  padding: 5px 10% 15px;
  background-color: var(--c-red2);
}

.top-tab-sec7 .content3 .uriage1,
.top-tab-sec7 .content3 .uriage2,
.top-tab-sec7 .content3 .uriage3 {
  padding: 4px 5% 5px;
}

.top-tab-sec7 .content3 .uriage1>*,
.top-tab-sec7 .content3 .uriage2>*,
.top-tab-sec7 .content3 .uriage3 {
  font-weight: 700;
  font-size: 16px;
}

.top-tab-sec7 .content3 .uriage1 span,
.top-tab-sec7 .content3 .uriage2 span,
.top-tab-sec7 .content3 .uriage3 span {
  font-size: 24px;
  padding: 0 1px;
}

.top-tab-sec7 .content3 .uriage1,
.top-tab-sec7 .content3 .uriage2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.top-tab-sec7 .content3 .uriage2 {
  background-color: #fff;
  color: var(--c-red1);
}

.top-tab-sec7 .content3 .uriage3 {
  margin-bottom: 4px;
  background-color: var(--c-red1);
  text-align: center;
  color: #fff;
}

.top-tab-sec7 .content3 .m-small {
  text-align: right;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec7 .content3 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: min(100%, 1000px);
    margin: auto;
    padding: 0;
    gap: 24px;
  }

  .top-tab-sec7 .content3 li {
    /* width: 31%; */
    width: calc((100% - 48px) / 3);
    min-width: 280px;
    margin-top: 0;
  }

  /* owner */
  .top-tab-sec7 .content3 .owner {
    display: block;
    ;
    padding: 25px 0;
    text-align: center;
  }

  .top-tab-sec7 .content3 .owner img {
    display: block;
    width: 100px;
    margin: 0 auto 15px;
  }

  .top-tab-sec7 .content3 .owner dt {
    font-size: 22px;
  }

  /* uriage */
  .top-tab-sec7 .content3 .bg {
    padding: 25px 20px;
  }

  .top-tab-sec7 .content3 .uriage1,
  .top-tab-sec7 .content3 .uriage2,
  .top-tab-sec7 .content3 .uriage3 {
    padding: 4px 10px 5px;
  }

  .top-tab-sec7 .content3 .uriage1>*,
  .top-tab-sec7 .content3 .uriage2>*,
  .top-tab-sec7 .content3 .uriage3 {
    font-size: 16px;
  }

  .top-tab-sec7 .content3 .uriage1 span,
  .top-tab-sec7 .content3 .uriage2 span,
  .top-tab-sec7 .content3 .uriage3 span {
    font-size: 26px;
  }
}

@media screen and (min-width: 1100px),
print {
  .top-tab-sec7 .content3 .uriage1>*,
  .top-tab-sec7 .content3 .uriage2>*,
  .top-tab-sec7 .content3 .uriage3 {
    font-size: 18px;
  }
}

/* /.top-tab-sec7 -------------------------------------- */

/* top-tab-sec8 ---------------------------------------- */
.top-tab-sec8 {
  padding: 60px 5%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: left top, right top;
  background-size: 50% auto;
  background-image:
    url(../img/top/top-tab-sec8-bg-l.png),
    url(../img/top/top-tab-sec8-bg-r.png);
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec8 {
    padding: 100px 20px;
    background-size: 40% auto;
  }
}

/* content1 wood only */
.top-tab-sec8 .content1 {
  margin-bottom: 30px;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--c-gray2);
}

.top-tab-sec8 .content1>p {
  padding-top: 20px;
}

.top-tab-sec8 .content1 h4 {
  margin: 30px 0 20px;
  padding: 0.2em 0;
  border-radius: 9999px;
  border: 1px solid var(--c-blue1);
  color: var(--c-blue1);
  text-align: center;
  font-size: 16px;
}

.top-tab-sec8 .content1 p {
  margin-top: 10px;
}

.top-tab-sec8 .content1 section img {
  display: block;
  width: 80%;
  margin: auto;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec8 .content1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 1000px);
    margin: 0 auto 30px;
    padding: 40px 50px;
    border-radius: 10px;
    border-bottom: none;
    background-color: #fff;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  }

  .top-tab-sec8 .content1>img,
  .top-tab-sec8 .content1>div {
    width: 48%;
  }

  .top-tab-sec8 .content1 .m-heading-c {
    text-align: left;
    margin-bottom: 16px;
  }

  .top-tab-sec8 .content1>p {
    padding-top: 0;
  }

  .top-tab-sec8 .content1 section {
    width: 100%;
  }

  .top-tab-sec8 .content1 h4 {
    margin: 45px 0 20px;
    font-size: 18px;
  }

  .top-tab-sec8 .content1 section img {
    width: 80%;
  }
}

/* content2 */
.top-tab-sec8 .content2 li:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--c-gray2);
}

.top-tab-sec8 .content2 p {
  margin-top: 20px;
}

@media screen and (min-width: 768px),
print {
  .top-tab-sec8 .content2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0;
    width: min(100%, 1000px);
    margin: auto;
  }

  .top-tab-sec8 .content2 li:not(:last-child) {
    margin: 0;
  }

  .top-tab-sec8 .content2 li {
    width: 48%;
    padding: 40px 50px;
    border-radius: 10px;
    border-bottom: none;
    background-color: #fff;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  }

  .top-tab-sec8 .content2 p {
    margin-top: 16px;
  }
}

/* /.top-tab-sec8 -------------------------------------- */


/* top-sec3 -------------------------------------------- */
.top-sec3 {
  padding-bottom: 60px;
  background-color: var(--c-blue2);
}

@media screen and (min-width: 768px),
print {
  .top-sec3 {
    padding-bottom: 100px;
  }
}

/* top-sec3-heading */
.top-sec3-heading {
  position: relative;
  margin-bottom: 50px;
  padding: 0 5%;
  background-color: var(--c-blue1);
  color: #fff;
}

.top-sec3-heading::before {
  content: "";
  position: absolute;
  bottom: -29px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 45px solid transparent;
  border-left: 45px solid transparent;
  border-top: 29px solid var(--c-blue1);
  border-bottom: 0;
}

.top-sec3-heading h2 {
  padding: 20px 0 15px;
  background: url(../img/top/top-sec3-lady.png) no-repeat right -6% bottom / 48% auto;
}

.top-sec3-heading h2 span {
  display: block;
  line-height: 1.8;
}

.top-sec3-heading h2 span:nth-of-type(1) {
  font-size: 14px;
}

.top-sec3-heading h2 span:nth-of-type(2) {
  font-size: 16px;
}

.top-sec3-heading h2 span:nth-of-type(2) i {
  text-emphasis: filled dot var(--c-yellow1);
}

.top-sec3-heading h2 span:nth-of-type(3) {
  line-height: 1.5;
  font-size: 22px;
}

@media screen and (min-width: 768px),
print {
  .top-sec3-heading {
    padding: 0 20px;
    margin-bottom: 100px;
  }

  .top-sec3-heading::before {
    bottom: -39px;
    border-right: 50px solid transparent;
    border-left: 50px solid transparent;
    border-top: 40px solid var(--c-blue1);
  }

  .top-sec3-heading h2 {
    width: min(100%, 750px);
    margin: auto;
    padding: 70px 0 50px;
    background: url(../img/top/top-sec3-lady.png) no-repeat right bottom / 246px auto;
  }

  .top-sec3-heading h2 span {
    line-height: 1.6;
  }

  .top-sec3-heading h2 span:nth-of-type(1) {
    display: inline;
    font-size: 22px;
  }

  .top-sec3-heading h2 span:nth-of-type(2) {
    display: inline-block;
    margin-left: -0.2em;
    font-size: 22px;
  }

  .top-sec3-heading h2 span:nth-of-type(3) {
    line-height: 1.4;
    font-size: 34px;
  }
}

/* content1 */
.top-sec3 .content1 {
  margin-bottom: 50px;
}

.top-sec3 .content1>img {
  display: block;
  width: 80%;
  margin: 0 auto 30px;
}

.top-sec3 .content-list {
  padding: 0 5%;
}

.top-sec3 .content-list h3 {
  margin-top: 24px;
  padding-left: 1.5em;
  background: url(../img/icon-check2.svg) no-repeat left center / auto 1em;
  border-bottom: 1px solid #333;
  line-height: 2;
  font-size: 16px;
}

.top-sec3 .content-list ul li {
  margin-top: 5px;
}

.top-sec3 .content-list ul li::before {
  content: "・";
}

.top-sec3 .content-list .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top-sec3 .content-list .flex>* {
  width: 48%;
}

@media screen and (min-width: 768px),
print {
  .top-sec3 .content1 {
    margin-bottom: 90px;
    padding: 0 20px;
  }

  .top-sec3 .content1>img {
    width: min(100%, 600px);
    margin: 0 auto 40px;
  }

  .top-sec3 .content-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px 0;
    width: min(100%, 800px);
    margin: auto;
    padding: 0;
  }

  .top-sec3 .content-list>li {
    width: 45%;
  }

  .top-sec3 .content-list h3 {
    margin: 0 0 10px;
    padding-left: 1.5em;
    line-height: 2;
    font-size: 17px;
  }

  .top-sec3 .content-list ul li {
    margin-top: 5px;
  }

  .top-sec3 .content-list .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .top-sec3 .content-list .flex>* {
    width: 48%;
  }
}

/* content2 */
.top-sec3 .content2-box {
  margin-bottom: 60px;
  padding: 0 5%;
}

.top-sec3 .content2 {
  position: relative;
  padding: 40px 5%;
  border-radius: 20px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.top-sec3 .content2 .plus {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
}

.top-sec3 .content2 .plus::before,
.top-sec3 .content2 .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 48%;
  border-top: 3px solid #fff;

}

.top-sec3 .content2 .plus::before {
  transform: translate(-50%, -50%);
}

.top-sec3 .content2 .plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media screen and (min-width: 768px),
print {
  .top-sec3 .content2-box {
    width: min(100%, 1000px);
    margin: 0 auto 110px;
  }

  .top-sec3 .content2-box {
    padding: 0 20px;
  }

  .top-sec3 .content2 {
    align-items: stretch;
    padding: 70px 55px;
  }

  .top-sec3 .content2 .plus {
    width: 56px;
    height: 56px;
  }

  .top-sec3 .content2 .plus::before,
  .top-sec3 .content2 .plus::after {
    border-top: 4px solid #fff;
  }

  .top-sec3 .content2 .plus::before {
    transform: translate(-50%, -50%);
  }

  .top-sec3 .content2 .plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

/* content2-sec */
.top-sec3 .content2-sec {
  position: relative;
}

.top-sec3 .content2-sec h3 {
  margin-bottom: 15px;
  padding: 0.2em 0;
  border-radius: 9999px;
  border: 1px solid var(--c-red1);
  text-align: center;
  color: var(--c-red1);
}

.top-sec3 .content2-sec section:last-child {
  margin-top: 32px;
}

.top-sec3 .content2-sec section div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
}

.top-sec3 .content2-sec section div img {
  width: 30%;
}

.top-sec3 .content2-sec section div p {
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.4;
  font-size: 5vmin;
}

.top-sec3 .content2-sec section div p span {
  font-size: 0.8em;
  font-weight: 500;
}

@media screen and (min-width: 768px),
print {
  .top-sec3 .content2-sec {
    position: relative;
  }

  .top-sec3 .content2-sec h3 {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .top-sec3 .content2-sec section:last-child {
    margin-top: 50px;
  }

  .top-sec3 .content2-sec section div {
    justify-content: flex-start;
    gap: 5%;
  }

  .top-sec3 .content2-sec section div img {
    width: 30%;
  }

  .top-sec3 .content2-sec section div p {
    font-size: 20px;
  }

  .top-sec3 .content2-sec section div p span {
    font-size: 0.8em;
  }
}

/* content2-present */
.top-sec3 .content2-present {
  position: relative;
  margin-top: 50px;
  padding: 20px 0;
  border-radius: 20px;
  border: 1px solid var(--c-gray2);
  text-align: center;
}

.top-sec3 .content2-present h3 {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(10px, -20px) rotate(20deg);
  width: 84px;
  height: 84px;
  padding-top: 18px;
  border-radius: 50%;
  background-color: var(--c-blue1);
  text-align: center;
  font-size: 12px;
  color: #fff;
}

.top-sec3 .content2-present h3 span {
  font-size: 10px;
}

.top-sec3 .content2-present img {
  width: 60%;
}

@media screen and (min-width: 768px),
print {
  .top-sec3 .content2-present {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    padding: 20px 0 0;
  }

  .top-sec3 .content2-present h3 {
    transform: translate(30px, -50px) rotate(20deg);
    width: 150px;
    height: 150px;
    padding-top: 37px;
    box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.25);
    font-size: 20px;
  }

  .top-sec3 .content2-present h3 span {
    font-size: 17px;
  }

  .top-sec3 .content2-present img {
    width: 80%;
  }

  .top-sec3 .content2-present p {
    font-size: 2cqmin;
  }
}

/* content3 */
.top-sec3 .content3 {
  padding: 0 5%;
}

.top-sec3 .content3 h3 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 20px;
}

.top-sec3 .content3 ol {
  padding-left: 16px;
}

.top-sec3 .content3 li {
  position: relative;
  padding: 24px 40px;
  border-radius: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--c-blue1);
  background-color: #fff;
  text-align: center;
}

.top-sec3 .content3 li>div {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--c-blue1);
  text-align: center;
  line-height: 1;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  padding-top: 4px;
}

.top-sec3 .content3 li>div span {
  font-size: 0.5em;
}

.top-sec3 .content3 li:not(:last-child) {
  margin-bottom: 16px;
}

.top-sec3 .content3 li:not(:last-child)::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 12px solid var(--c-blue1);
  border-bottom: 0;
}

.top-sec3 .content3 h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 15px;
  font-size: 18px;
}

.top-sec3 .content3 h4 span{
  display: flex;
  justify-content: center;
  gap: 8px
}

.top-sec3 .content3 h4 img {
  /* width: 1.8em; */
  width: auto;
  height: 24px;
}

.top-sec3 .content3 li:nth-of-type(1) h4 img {
  height: 20px;
}

@media screen and (min-width: 768px),
print {
  .top-sec3 .content3 {
    padding: 0 20px;
  }

  .top-sec3 .content3 h3 {
    margin-bottom: 80px;
    font-size: 34px;
  }

  .top-sec3 .content3 ol {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    width: min(100%, 1000px);
    margin: auto;
    padding-left: 0;
  }

  .top-sec3 .content3 li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 56px 24px 24px;
  }

  .top-sec3 .content3 li>div {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    font-size: 22px;
    line-height: 1;
    padding-top: 5px;
  }

  .top-sec3 .content3 li>div span {
    font-size: 0.5em;
  }

  .top-sec3 .content3 li:not(:last-child) {
    margin-bottom: 0;
    padding-top: 50px;
  }

  .top-sec3 .content3 li:not(:last-child)::before {
    top: 50%;
    transform: translateY(-50%);
    right: -23px;
    left: auto;
    transform: translate(0, -50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 14px solid var(--c-blue1);

    border-right: 0;
  }

  .top-sec3 .content3 h4 {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .top-sec3 .content3 h4 span{
    gap: 16px
  }

  .top-sec3 .content3 li:nth-of-type(1) h4 img {
    /* width: 62px; */
    height: 42px;
    width: auto;
  }

  .top-sec3 .content3 li:nth-of-type(2) h4 img {
    /* width: 54px; */
    height: 50px;
    width: auto;

  }

  .top-sec3 .content3 li:nth-of-type(3) h4 img {
    /* width: 56px; */
        height: 50px;
    width: auto;

  }
}

/* l-conversion-c */
.top-sec3 .l-conversion-c {
  margin-top: 60px;
}

@media screen and (min-width: 768px),
print {
  .top-sec3 .l-conversion-c {
    margin-top: 110px;
  }
}

/* /.top-sec3 ------------------------------------------ */


/* top-sec4 -------------------------------------------- */
.top-sec4 {
  padding: 60px 5%;
}

.top-sec4-child h3 {
  position: relative;
  margin: 60px 0 25px;
  font-size: 5vmin;
  line-height: 1.4;
}

.top-sec4-child h3::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  border-top: 2px solid var(--c-red1);
}

.top-sec4-child section {
  margin-top: 10px;
  padding: 30px 5%;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--c-gray2);
}

.top-sec4-child section .heading {
  display: flex;
  align-items: center;
  gap: 5%;
  margin-bottom: 20px;
}

.top-sec4-child section .heading h4 {
  font-size: 22px;
}

.top-sec4-child section .heading img {
  width: 30%;
}

.top-sec4-child section .heading span {
  padding: 0 1em;
  border: 1px solid var(--c-blue1);
  font-size: 12px;
  font-weight: 500;
}

.top-sec4-child section .heading span.house {
  background-color: #fff;
  color: var(--c-blue1);
}

.top-sec4-child section .heading span.car {
  background-color: var(--c-blue1);
  color: #fff;
}

.top-sec4-child section .heading i {
  display: block;
  margin: 5px 0 3px;
  font-weight: 500;
  /* font-weight: 400; */
  font-size: 12px;
}

@media screen and (min-width: 768px),
print {
  .top-sec4 {
    padding: 110px 20px;
  }

  .top-sec4-child {
    width: min(100%, 1200px);
    margin: auto;
  }

  .top-sec4-child h3 {
    margin: 80px 0 30px;
    font-size: 22px;
  }

  .top-sec4-child h3 span {
    position: relative;
    z-index: 1;
    padding-right: 1em;
    background-color: #fff;
  }

  .top-sec4-child h3::after {
    bottom: 50%;
  }

  .top-sec4-child section {
    overflow: hidden;
    display: flex;
    gap: 30px;
    padding: 0 30px 0 0;
    margin-top: 24px;
  }

  .top-sec4-child section .top-sec4-child-inner {
    display: flex;
    align-items: center;
    padding: 10px 0;
  }

  .top-sec4-child section img {
    width: 30%;
    object-fit: cover;
    object-position: center;
  }

  .top-sec4-child section .heading {
    display: block;
    margin-bottom: 20px;
  }

  .top-sec4-child section .heading h4 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 22px;
  }

  .top-sec4-child section .heading {
    font-size: 22px;
  }

  .top-sec4-child section img {
    width: 30%;
  }

  .top-sec4-child section .heading span {
    font-size: 16px;
    flex-shrink: 0;
  }

  .top-sec4-child section .heading i {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
  }
}

/* /.top-sec4 ------------------------------------------ */

/* top-sec-qa ------------------------------------------ */
.top-sec-qa-bg {
  padding: 60px 5%;
  background-color: var(--c-gray1);
}

.top-sec-qa section {
  margin-top: 10px;
  padding: 30px 5%;
  border-radius: 10px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.top-sec-qa section h3 {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--c-gray3);
  font-size: 16px;
  font-weight: 500;
}

.top-sec-qa section h3::before {
  content: "Q. ";
  position: absolute;
  top: -3px;
  left: 0;
  display: table;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: var(--c-blue1);
  font-size: 20px;
}

.top-sec-qa section dt {
  position: relative;
  margin-bottom: 8px;
  padding-left: 1.8em;
  /* font-weight: 700; */
  font-weight: 600;
  font-size: 16px;
  color: var(--c-red1);
}

.top-sec-qa section dt::before {
  content: "A. ";
  position: absolute;
  top: -3px;
  left: 0;
  display: table;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  color: var(--c-red1);
}

.top-sec-qa section dd {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3.2em;
  padding-right: 30px;
  transition: max-height 1s ease;
}

.top-sec-qa section dd.expanded {
  -webkit-line-clamp: unset;
  display: block;
  max-height: 1000px;
}

/* +-アイコン */
.top-sec-qa section dd .icon {
  display: block;
  position: absolute;
  right: 0;
  bottom: 2px;
  width: 20px;
  height: 20px;
}

.top-sec-qa section dd .icon i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #333;
}

.top-sec-qa section dd .icon i:last-child {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: transform 0.5s;
}

.top-sec-qa section dd.expanded .icon i:last-child {
  transform: translateY(-50%) rotate(360deg);
}

@media screen and (min-width: 768px),
print {
  .top-sec-qa-bg {
    padding: 120px 20px;
  }

  .top-sec-qa .flex {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 2%;
    width: min(100%, 1200px);
    margin: auto;
  }

  .top-sec-qa section {
    width: 49%;
    min-width: 300px;
    margin-top: 0;
    padding: 40px 35px;
  }

  .top-sec-qa section h3 {
    padding-left: 30px;
    margin-bottom: 20px;
    padding-bottom: 21px;
  }

  .top-sec-qa section h3::before {
    top: -5px;
    font-size: 24px;
  }

  .top-sec-qa section dt {
    margin-bottom: 5px;
    padding-left: 30px;
    font-size: 18px;
  }

  .top-sec-qa section dt::before {
    top: -3px;
    display: table;
    font-size: 24px;
  }

  .top-sec-qa section dd,
  .top-sec-qa section dd.expanded {
    overflow: visible;
    display: block;
    -webkit-box-orient: initial;
    -webkit-line-clamp: unset;
    max-height: 100%;
    padding-right: 0;
  }

  /* +-アイコン */
  .top-sec-qa section dd .icon {
    display: none;
  }
}

@media screen and (min-width: 1100px),
print {
  .top-sec-qa section h3 {
    height: 2em;
    box-sizing: content-box;
  }

  .top-sec-qa section {
    width: 32%;
  }
}

/* /.top-sec-qa ---------------------------------------- */


/* top-sec-news ---------------------------------------- */
.top-sec-news {
  padding: 60px 5%;
}

.top-sec-news .m-heading-b {
  margin-bottom: 10px;
}

.top-sec-news .read {
  margin-bottom: 50px;
  text-align: center;
}

.top-sec-news li:not(:last-child) {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-gray2);
}

.top-sec-news a {
  display: table;
}

.top-sec-news dt {
  font-family: "Roboto", sans-serif;
  color: var(--c-blue1);
  font-size: 12px;
  margin-bottom: 5px;
}

.top-sec-news dd {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-sec-news dd br {
  display: none;
}

.top-sec-news .m-link {
  margin-top: 35px;
}

.top-sec-news .m-link a {
  margin-left: auto;
}

@media screen and (min-width: 768px),
print {
  .top-sec-news {
    padding: 120px 5%;
  }

  .top-sec-news .m-heading-b {
    margin-bottom: 10px;
  }

  .top-sec-news .read {
    margin-bottom: 64px;
    text-align: center;
  }

  .top-sec-news ol {
    width: min(100%, 1000px);
    margin: auto;
  }

  .top-sec-news li:not(:last-child) {
    margin-bottom: 45px;
    padding-bottom: 46px;
  }

  .top-sec-news a {
    transition: opacity 0.3;
  }

  .top-sec-news a:hover {
    opacity: 0.8;
  }

  .top-sec-news dl {
    display: flex;
  }

  .top-sec-news dt {
    width: 180px;
    font-size: 16px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .top-sec-news dd {
    overflow: visible;
    display: block;
    -webkit-box-orient: initial;
    -webkit-line-clamp: unset;
  }

  .top-sec-news .m-link {
    width: min(100%, 1000px);
    margin: 40px auto 0;
  }
}

/* /.top-sec-news -------------------------------------- */


/* top-sec-support ------------------------------------- */
.top-sec-support {
  padding: 60px 5% 60px;
  background-color: var(--c-gray1);
}

.top-sec-support h2 {
  margin: 20px 0;
  text-align: center;
  font-size: 5vmin;
}

.top-sec-support .l-conversion-a {
  margin-bottom: 0;
}

@media screen and (min-width: 768px),
print {
  .top-sec-support {
    padding: 110px 20px;
  }

  .top-sec-support section {
    width: min(100%, 1000px);
    margin: 0 auto 80px;
  }

  .top-sec-support img {
    order: 1;
  }

  .top-sec-support h2 {
    margin: 0 0 20px;
    text-align: left;
    font-size: 24px;
  }
}

/* /.top-sec-support ----------------------------------- */


/* top-sec-truth --------------------------------------- */
.top-sec-truth {
  padding: 60px 5%;
}

.top-sec-truth li:not(:last-child) {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-gray2);
}

.top-sec-truth ul {
  counter-reset: num;
}

.top-sec-truth li section h3 {
  counter-increment: num;
  margin-bottom: 15px;
  font-size: 18px;
}

.top-sec-truth li section h3::before {
  content: "COLUMN 0" counter(num);
  display: table;
  margin-bottom: 5px;
  padding: 0.2em 0.7em 0.1em;
  background-color: var(--c-red1);
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}

@media screen and (min-width: 768px),
print {
  .top-sec-truth {
    padding: 110px 20px;
  }

  .top-sec-truth li:not(:last-child) {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .top-sec-truth ul {
    position: relative;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 90px 0;
    width: min(100%, 1000px);
    margin: auto;
  }

  .top-sec-truth ul::before {
    content: "";
    position: absolute;
    top: 47%;
    display: block;
    width: 100%;
    border: 1px solid var(--c-gray2);
  }

  .top-sec-truth li section h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .top-sec-truth li section h3::before {
    margin-bottom: 8px;
    font-size: 14px;
  }
}

/* /.top-sec-truth ------------------------------------- */