@charset "utf-8";


/* test */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-wrap: unset;
  word-break: normal;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, "BIZ UDGothic", sans-serif;
  color: #3E3A39;
}

a {
  text-decoration: none;
  color: #222222;
  line-height: 1.5;
  font-family: "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, "BIZ UDGothic", sans-serif;
}

a:hover {
  filter: brightness(0.9);
  transition: all 0.2s;
}
figure, picture, img {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
h1,
h2,
h3,
h4 {
  font-family: 'Shippori Mincho', serif;
}

p {
  font-family: "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, "BIZ UDGothic", sans-serif;
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  display: block;
  width: 100%;
}

picture,
picture>img {
  display: block;
  width: 100%;
  height: auto;
}

.main_container,
footer {
  background-color: #fff;
  position: relative;
  z-index: 1;
  width: 100%;
}

.area_inner {
  padding: 0 44px;
  margin: 0 auto;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
}

.inner2 {
  max-width: 1000px;
  margin: 0 auto;
}

.inner3 {
  max-width: 690px;
  margin: 0 auto;
}

h2 {
  line-height: 1.6;
}

@media(max-width:1200px) {
  .inner {
    max-width: 90%;
  }
}

@media(max-width:1080px) {
  .inner2 {
    max-width: 90%;
  }
}

@media(max-width:768px) {
  .inner3 {
    max-width: 90%;
  }
}

@media(max-width:540px) {
  .inner2 {
    max-width: 325px;
  }

  .inner3 {
    max-width: 325px;
  }
}

/* header */
header {
  position: fixed;
  transition: all 0.3s ease-in;
  z-index: 10;
  background: #F0EBE3;
  padding: 15px 5%;
  width: 100%;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_logo {
  max-width: 232px;
}

.top_logo img {
  display: block;
  margin: 0 auto;
}

/* ヘッダーのCTA */

.cta {
  position: relative;
  display: inline-block;
  padding: 18px;
  background: #004EA2;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 2px 3px 7px rgba(0, 0, 0, .7);
  text-decoration: none;
  line-height: 1;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  width: 325px;
}

.cta__label {
  display: block;
  text-align: center;
}

/* 矢印 */
.cta::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: transform .25s ease;
}

.cta:hover {
  transform: translateY(-3px);
  box-shadow: 4px 6px 14px rgba(0, 0, 0, .45);
  background: #065fbe;
}

.cta:hover::after {
  transform: translate(4px, -50%) rotate(45deg);
}

@media(max-width:768px) {
  .cta_box {
    position: fixed;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    z-index: 5;
    padding: 16px;
  }

  .cta {
    display: block;
    width: 100%;
    max-width: none;
    text-align: center;
    border-radius: 0;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, .2);
    margin: 0 auto;
  }

  .cta::after {
    right: 16px;
  }

  header {
    justify-content: center;
  }

  header {
    justify-content: center;
  }
}

@media(max-width:540px) {
  header a img {
    max-width: 155px;
  }

  .cta {
    max-width: 325px;
  }
}

/* メインビジュアル */
.mv {
  position: relative;
  width: 100%;
  max-height: 85svh;
  overflow: clip;
}

.mv_text_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}

.mv .mv_text {
  text-align: center;
}

.mv_text_p {
  font-size: clamp(42px,
      calc(42px + (72 - 42) * ((100vw - 768px) / (1024 - 768))),
      72px);
  color: #ffffff;
  font-family: 'Shippori Mincho', serif;
  letter-spacing: 0.3em;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

@media(max-width:768px) {
  .mv_text_p {
    writing-mode: vertical-rl;
    text-align: left;
  }

  .mv_text_block {
    display: block;
  }

  .mv .mv_text {
    width: fit-content;
    margin-left: auto;
  }

  .mv_text_container {
    max-width: 95%;
  }
}



/* MVスライドショー */
.slideshow {
  --slide-count: 4;
  --duration: 12s;
  position: relative;
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: inherit;
  margin-top: 70px;
}

.slideshow>picture {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade var(--duration) linear infinite;
  pointer-events: none;
}

.slideshow picture>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* nth-childで自動的にディレイを計算 */
.slideshow>picture:nth-child(1) {
  animation-delay: calc((var(--duration) / var(--slide-count)) * 0);
}

.slideshow>picture:nth-child(2) {
  animation-delay: calc((var(--duration) / var(--slide-count)) * 1);
}

.slideshow>picture:nth-child(3) {
  animation-delay: calc((var(--duration) / var(--slide-count)) * 2);
}

.slideshow>picture:nth-child(4) {
  animation-delay: calc((var(--duration) / var(--slide-count)) * 3);
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.mv_inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 3;
  top: -80px;
}

.mv_asset {
  position: absolute;
  right: 3%;
  top: -60px;
  max-width: 226px;
}

@media (max-width: 768px) {
  .slideshow {
    aspect-ratio: 375 / 465;
    margin-top: 40px;
  }

  .mv_inner {
    max-width: 95%;
  }

  .mv_asset {
    right: 0;
    left: 0;
    top: -40px;
  }
}

@media(max-width:1280px) {
  .mv_asset {
    max-width: 151px;
    top: -45px;
  }
}

/* about */
.about {
  padding-top: 75px;
  background: #E2DDD7;
  padding-bottom: 120px;
}

.about h2 {
  text-align: center;
  font-size: clamp(25px,
      calc(25px + (50 - 25) * ((100vw - 768px) / (1024 - 768))),
      50px);
  letter-spacing: 0.1em;
  font-weight: bold;
}

.about h2 span {
  font-size: clamp(44px,
      calc(44px + (87 - 44) * ((100vw - 768px) / (1024 - 768))),
      87px);
  letter-spacing: 0.05em;
}

.about h2 .about_fz {
  font-size: clamp(33px,
      calc(33px + (67 - 33) * ((100vw - 768px) / (1024 - 768))),
      67px);
}

.about_text {
  padding-top: 60px;
  padding-bottom: 60px;
  font-size: clamp(14px,
      calc(14px + (20 - 14) * ((100vw - 768px) / (1024 - 768))),
      20px);
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}

.about_h3 {
  margin: 0 auto;
  width: fit-content;
}

.about_h3 h3 {
  font-size: clamp(18px,
      calc(18px + (27 - 18) * ((100vw - 768px) / (1024 - 768))),
      27px);
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: normal;
  border-bottom: 1px solid #333;
  display: inline-block;
  padding: 0 20px 25px;
}

.about_h3 ruby rt {
  font-size: clamp(8px,
      calc(8px + (12 - 8) * ((100vw - 768px) / (1024 - 768))),
      12px);
  padding-bottom: 5px;
}

/* セクションタイトル下の縦線 */
.vertical_border {
  width: 1.5px;
  height: 36px;
  display: block;
  margin: 0 auto;
  background: #3E3A39;
}

.sec_sub_title {
  padding-top: 35px;
  font-size: clamp(22px,
      calc(22px + (33 - 22) * ((100vw - 768px) / (1024 - 768))),
      33px);
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: normal;
  padding-bottom: 40px;
}

.sec_space {
  padding-top: 120px;
}

@media(max-width:768px) {
  .about {
    padding-top: 50px;
    padding-bottom: 100px;
  }

  .about_text {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .sec_space {
    padding-top: 50px;
  }

  .sec_sub_title {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}

@media(max-width:540px) {
  .vertical_border {
    height: 24px;
    width: 1px;
  }

  .about_text {
    text-align: left;
    letter-spacing: 0.05em;
  }

  .about_h3 h3 {
    padding: 0 15px 20px;
  }
}

/* メリット */

.sec1_merit {
  background: #F4F4F4;
  width: 100%;
}

.title_svg {
  max-width: 140px;
  margin: 0 auto;
}

@media(max-width:540px) {
  .title_svg {
    margin: 0;
    max-width: 100px;
  }
}

.merit_container {
  padding-top: 60px;
  padding-bottom: 150px;
}

.number_svg {
  max-width: 54px;
}

.merit_box {
  padding-bottom: 65px;
}

.merit_box h3 {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 2.625rem;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.merit_box p {
  font-size: clamp(14px,
      calc(14px + (17 - 14) * ((100vw - 768px) / (1024 - 768))),
      17px);
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: 500;
  text-wrap: balance;
  word-break: auto-phrase;
}

.merit_list h3 {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}

.merit_list ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.merit_list ul li {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.merit_list ul li::before {
  content: "■";
  font-size: 1.2rem;
  color: #004EA2;
  opacity: .3;
  display: inline-block;
  line-height: 1;
}

@media(max-width:768px) {
  .merit_container {
    padding-top: 30px;
    padding-bottom: 90px;
  }
}

@media(max-width:540px) {
  .merit_b {
    display: block;
  }

  .merit_box {
    padding-bottom: 90px;
  }

  .merit_box p {
    text-wrap: unset;
    word-break: unset;
  }
}

/* model */
.sec2_model {
  background-image: url(./img/back_image1.webp);
}

.model_container {
  padding-top: 40px;
}

.model_container h3 {
  text-align: center;
  font-size: clamp(21px,
      calc(21px + (24 - 21) * ((100vw - 540px) / (768 - 540))),
      24px);
  font-weight: 600;
  line-height: 1.5;
}

.model_A {
  font-size: clamp(21px,
      calc(21px + (24 - 21) * ((100vw - 768px) / (1024 - 768))),
      24px);
  text-align: center;
  font-family: 'Shippori Mincho', serif;
}

.model_box p {
  font-size: clamp(18px,
      calc(18px + (22 - 18) * ((100vw - 768px) / (1024 - 768))),
      22px);
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: normal;
  margin-bottom: 30px;
  border-left: 1px solid #80A6D1;
  padding-left: 14px;
  font-family: 'Shippori Mincho', serif;
}

.model_case {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #BBBBBB;
}

.model_box2 {
  max-width: 325px;
}

.model_inbox {
  background: #fff;
  border: 1px solid #BBBBBB;
  padding: 4%;
}

.inbox_title {
  font-size: 1.125rem;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.13;
  font-family: 'Shippori Mincho', serif;
}

.model_en {
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0;
  font-weight: 900;
  line-height: 1.13;
  font-family: 'Shippori Mincho', serif;
}

.model_price {
  font-size: 2.25rem;
  font-weight: 600;
  font-family: 'Shippori Mincho', serif;
}

.inbox_line {
  content: "";
  width: 95%;
  margin: 0 auto;
  height: 1px;
  background: #BBBBBB;
  margin-top: 14px;
  margin-bottom: 10px;
}

.inbox_text {
  font-size: 0.75rem;
  font-weight: 500;
}

.model_img {
  max-width: 215px;
  margin: 0 30px 0 0;
  width: 100%;
}

.model_img img {
  max-width: 215px;
}

@media (min-width:769px) {
  .pc_content {
    display: contents;
  }
}

@media (max-width:768px) {
  .pc_content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .model_case {
    flex-direction: column;
    border-bottom: none;
  }

  .model_box2 {
    order: 2;
  }

  .model_img {
    order: 1;
    margin: 0;
  }

  .model_container h3 {
    margin-bottom: 30px;
  }
}

@media (max-width:540px) {
  .model_img {
    max-width: 160px;
  }

  .model_img img {
    max-width: 160px;
  }

  .model_box p span {
    display: block;
  }

  .model_container.inner2 {
    max-width: 325px;
  }

  .model_case {
    max-width: 325px;
    margin: 0 auto;
    position: relative;
  }

  .model_box {
    position: absolute;
    left: 0;
  }

  .model_container h3 {
    text-align: left;
  }

  .pc_content {
    align-items: flex-end;
    margin-top: -19%;
  }

  .model_inbox {
    margin-bottom: 10px;
  }
}

/* 声 */
.sec3_voice {
  padding-top: 140px;
  padding-bottom: 140px;
  background-image: url(./img/back_image1.webp);
  overflow: hidden;
}

.slide_voice p {
  font-size: clamp(13px,
      calc(13px + (18 - 13) * ((100vw - 768px) / (1024 - 768))),
      18px);
  line-height: 2;
  font-weight: 500;
}

.slide_inbox {
  max-width: 450px;
  min-width: 250px;
  width: 100%;
}

.slide_inbox h3 {
  font-size: clamp(18px,
      calc(18px + (27 - 18) * ((100vw - 768px) / (1024 - 768))),
      27px);
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 500;
  margin-top: -5%;
  margin-left: 3%;
}

.slide_inbox h3 span {
  font-size: clamp(48px,
      calc(48px + (72 - 48) * ((100vw - 768px) / (1024 - 768))),
      72px);
  line-height: 1;
  letter-spacing: 0.1em;
  color: #004EA2;
}

.voice_name {
  font-size: clamp(14px,
      calc(14px + (21 - 14) * ((100vw - 768px) / (1024 - 768))),
      21px);
  font-weight: 500;
  line-height: 1;
  text-align: right;
  margin-top: 14px;
}

.slide_voice p span {
  background: linear-gradient(transparent 40%, #fff89e 50%);
}

.slider-wrapper {
  width: 100vw;
  overflow: hidden;
  margin-left: calc(50% - 50vw);
}

@media (min-width: 1200px) {
  .slider-wrapper {
    width: calc(50vw + (var(--cw) / 2));
    position: relative;
    left: calc(50% - (var(--cw) / 2));
    margin-left: 0;
  }
}

.slider-track {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
  will-change: transform;
  transform: translateX(0);
}

/* 各スライド */
.slide {
  flex: 0 0 auto;
  width: clamp(300px, 80%, 1060px);
  background: #fff;
  border: 1px solid rgba(204, 204, 204, 0.4);
  padding: 3% 5%;
  max-height: 650px;
}

/* 画像部分 */
.slide img {
  display: block;
  width: 100%;
  aspect-ratio: 450 / 375;
  object-fit: cover;
  pointer-events: none;
  max-width: 450px;
}

.slide_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  height: 100%;
}

.slide_voice {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media(max-width:768px) {
  .slide_box {
    flex-direction: column;
    align-items: center;
  }

  .slide {
    max-height: 100%;
  }
}

@media(max-width:540px) {}

/* ideal */
.sec4_ideal {
  padding-bottom: 120px;
  background: #F4F4F4;
}

.ideal_container {
  padding-top: 120px;
}

.ideal_area {
  padding-top: 70px;
}

.ideal_area ul li {
  font-size: clamp(14px,
      calc(14px + (18 - 14) * ((100vw - 768px) / (1024 - 768))),
      18px);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

.ideal_area .ideal1,
.ideal_area .ideal2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ideal_area .ideal1 {
  gap: 20px;
}

.ideal_area .ideal2 {
  gap: 30px;
  position: relative;
  z-index: 2;
}

.ideal_area .ideal1 li::before {
  content: "■";
  font-size: clamp(14px,
      calc(14px + (18 - 14) * ((100vw - 768px) / (1024 - 768))),
      18px);
  color: #004EA2;
  opacity: .3;
  display: inline-block;
  line-height: 1;
}

.ideal_line,
.ideal_line2 {
  content: "";
  display: block;
  width: 95%;
  margin: 0 auto;
  height: 1px;
  background: #BBBBBB;
}

.ideal_line {
  margin-top: 50px;
  margin-bottom: 60px;
}

.ideal_line2 {
  margin-top: 90px;
}

.ideal_area h3 {
  font-size: 1.3125rem;
}

.ideal_area .ideal2 li::before {
  content: "●";
  font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 768px) / (1024 - 768))), 18px);
  color: #FFE864;
  display: inline-block;
  line-height: 1;
}

.ideal_area .ideal2 li p {
  font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 768px) / (1024 - 768))), 18px);
}

.ideal_case {
  position: relative;
  z-index: 1;
}

.ideal_case img {
  position: absolute;
  right: 0;
  top: 25%;
  max-width: 220px;
}

.ideal_text_p {
  font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 768px) / (1024 - 768))), 18px);
  padding: 20px 0;
}

.area_link {
  display: block;
  width: fit-content;
  padding: 20px 0 0 0;
  font-size: clamp(14px, calc(14px + (18 - 14) * ((100vw - 768px) / (1024 - 768))), 18px);
  color: #3E3A39;
  border-bottom: 1px solid #3E3A39;
  line-height: 1;
  text-align: right;
}

.link_box {
  display: block;
  display: flex;
  justify-content: flex-end;
}

.ideal_break {
  padding-left: 10px;
}

/* faq */
.sec5_faq {
  padding-top: 200px;
  padding-bottom: 130px;
}

.faq-accordion {
  margin: 42px auto 0;
}

.panel {
  overflow: hidden;
  padding-bottom: 50px;
}

.panel-header {
  width: 100%;
  padding: 20px 10px 20px 0;
  display: flex;
  align-items: center;
  border: none;
  cursor: pointer;
  transition: background .3s, border-color .3s;
  color: #3E3A39;
  font-size: clamp(13px, calc(2.4vw + 4px), 16px);
  line-height: 1;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 78, 162, 0.2);
}

.panel-header p {
  font-size: clamp(15px,
      calc(15px + (22 - 15) * ((100vw - 768px) / (1024 - 768))),
      22px);
  text-align: left;
  margin-left: 5px;
}

.A_text,
.Q_text {
  color: #004EA2;
  font-size: clamp(23px,
      calc(23px + (34 - 23) * ((100vw - 768px) / (1024 - 768))),
      34px);
  margin-right: 18px;
  line-height: 1;
  font-family: 'Shippori Mincho', serif;
}

.panel-body {
  padding: 20px 10px 20px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.panel-body p {
  font-size: clamp(15px, calc(15px + (22 - 15) * ((100vw - 768px) / (1024 - 768))),
      22px);
  line-height: 1.7;
  font-weight: 500;
}

.icon {
  margin-left: auto;
  width: 16px;
  height: 16px;
  position: relative;
}

.icon::before,
.icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: #004EA2;
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}

.icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.panel-header.active .icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.panel-header.active .icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.panel-content {
  height: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

@media(max-width:540px) {
  .panel-header {
    border-bottom: none;
    padding: 20px 10px 16px 13px;
  }

  .panel-body {
    padding: 16px 10px 20px 13px;
  }

  .panel {
    padding-bottom: 18px;
  }

  .ideal_break {
    padding-left: 0px;
  }
}

/* footer */
.footer {
  padding-top: 90px;
  background: #3E3A39;
}

.footer_container {
  padding: 0 6% 70px;
}

.f_logo {
  max-width: 280px;
}

.f_logo_name {
  padding-top: 16px;
  font-size: clamp(13px, calc(13px + (19 - 13) * ((100vw - 768px) / (1080 - 768))), 19px);
  color: #FFF;
  line-height: 1.13;
}

.f_about {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.f_Company p,
.f_Company address {
  font-size: clamp(10px, calc(10px + (12 - 10) * ((100vw - 768px) / (1080 - 768))), 12px);
  font-weight: 300;
  color: #fff;
  line-height: 1.8;
  font-style: normal;
}

.f_sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.f_sns a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.f_sns img {
  width: 32px;
  height: auto;
  transition: filter 0.3s ease;
}

.f_sns a:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  background: #f9f9f9;
}

.f_small {
  padding: 30px 6% 16px;
  background: #222222;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.f_policy {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.f_policy a {
  color: #fff;
  font-size: clamp(10px, calc(10px + (12 - 10) * ((100vw - 768px) / (1024 - 768))), 12px);
  line-height: 1.13;
}

small {
  font-size: clamp(10px,
      calc(10px + (12 - 10) * ((100vw - 768px) / (1024 - 768))),
      12px);
  color: #fff;
  line-height: 1.13;
}

.slide_sec {
  --cw: 1200px;
  max-width: var(--cw);
  margin: 0 auto;
  position: relative;
  overflow: visible;
  padding-top: 60px;
}

.slide_sec .arrow {
  position: absolute;
  top: calc(50% + 15px);
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 78, 162, 0.3);
  border: 1px solid rgba(0, 0, 0, .15);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
  cursor: pointer;
  z-index: 5;
  transition: transform .2s ease, opacity .2s ease;
  opacity: .95;
  color: #fff;
}

.slide_sec .arrow:hover {
  transform: translateY(-50%) scale(1.06);
}

.slide_sec .arrow:active {
  transform: translateY(-50%) scale(.98);
}

.slide_sec .arrow.prev {
  left: max(-20px, calc(50% - var(--cw)/2 - 28px));
}

.slide_sec .arrow.next {
  right: max(40px, calc(50% - var(--cw)/2 - 28px));
}

/* ページネーション */
.pagination button {
  background: none;
  border: none;
  padding: 0;
  font-size: 8px;
  line-height: 1;
  cursor: pointer;
  color: #7FA6C9;
}

.pagination button.active {
  color: #004EA2;
}

.pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 0 44px;
  max-width: 150px;
  margin: 30px auto 0;
}

.pagination .pag-arrow {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  width: auto;
  height: auto;
  font-size: 36px;
  line-height: 1;
  color: #004EA2;
  cursor: pointer;
}

.pagination .pag-arrow.prev {
  left: 12px;
}

.pagination .pag-arrow.next {
  right: 12px;
}

.pagination .pag-arrow:disabled {
  opacity: .35;
  pointer-events: none;
}

@media(max-width:1280px) {
  .slide_sec .arrow.prev {
    left: max(8px, calc(50% - var(--cw)/2 - 28px));
  }

  .slide_sec .arrow.next {
    right: max(8px, calc(50% - var(--cw)/2 - 28px));
  }

  .slide_sec {
    --cw: 90%;
  }

  .slider-wrapper {
    margin-left: auto;
  }
}

@media(max-width:1024px) {
  .f_about {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 35px;
  }

  .f_Company {
    order: 2;
  }

  .f_sns {
    order: 1;
    margin-bottom: 20px;
  }
}

@media(max-width:768px) {
  .slide_sec .arrow {
    top: calc(55% + 15px);
    width: 26px;
    height: 26px;
  }

  .sec3_voice {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .sec4_ideal {
    padding-bottom: 100px;
  }

  .sec5_faq {
    padding-top: 100px;
    padding-bottom: 75px;
  }

  .panel-body {
    align-items: flex-start;
  }

  .f_small {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
  }

  .f_policy {
    margin-bottom: 6px;
  }

  .footer {
    margin-bottom: 84px;
  }
}

@media(max-width:540px) {
  .slide_sec .arrow.prev {
    left: max(-10px, calc(50% - var(--cw)/2 - 28px));
  }

  .slide_sec .arrow.next {
    right: max(8px, calc(50% - var(--cw)/2 - 28px));
  }

  .slide {
    padding: 0 0 6%;
  }

  .slide_voice {
    padding: 0 5%;
  }

  .slide_inbox h3 {
    margin-left: 5%;
  }

  .slide_sec {
    padding-top: 35px;
  }

  .ideal_container {
    padding-top: 50px;
  }

  .ideal_area {
    padding-top: 30px;
  }

  .ideal_area ul li {
    align-items: flex-start;
    gap: 0.2em;
  }

  .ideal_area .ideal1 li::before {
    line-height: normal;
  }

  .ideal_area .ideal2 li::before {
    line-height: normal;
  }

  .ideal_line {
    margin-bottom: 50px;
  }

  .ideal_line2 {
    margin-top: 56px;
    margin-bottom: 50px;
  }

  .ideal2 li span {
    display: block;
  }

  .ideal_case img {
    top: 20%;
    right: 1%;
  }

  .footer {
    padding-top: 30px;
    margin-bottom: 85px;
  }

  .footer_container {
    padding: 0 0 40px;
    max-width: 325px;
    margin: 0 auto;
  }

  .f_small {
    padding: 12px 0;
  }

  .f_sns img {
    width: 27px;
  }

  .f_sns {
    gap: 18px;
  }

  .f_logo {
    max-width: 191px;
  }

  .slide_box {
    gap: 12px;
  }

}

@media(max-width:440px) {
  .slide_voice {
    padding: 0 7%;
  }

  .slide_inbox h3 {
    margin-left: 0;
    padding: 0 7%;
  }
}