html {
  font-size: 1.302vw;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  color: #523939;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.01rem;
}

a {
  display: block;
  transition: 0.2s;
}

dt {
  font-weight: normal;
}

img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}
.bn{
  border: none!important;
}

/* Set core root defaults */

/* Set core body defaults */

body {
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*
 * font
 * -------------------------------------------------------------
 */

@font-face {
  font-display: swap;
  font-family: "HigureGothic";
  font-weight: 700;
  /* フォント名を指定 */
  src: url("./../fonts/HigureGothic-Bold.woff2");
}

@font-face {
  font-display: swap;
  font-family: "HigureGothic";
  font-weight: 500;
  /* フォント名を指定 */
  src: url("./../fonts/HigureGothic-Medium.woff2");
}

/*
 * footer
 * -------------------------------------------------------------
 */

.footer {
  background: #1b5f5a;

}

.copy{
  color: #FFF;
  text-align: center;
  font-size: 1.1em;
  padding: 1rem;
}

/*
 * header
 * -------------------------------------------------------------
 */

.header {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.header__inner {
  padding: 1.2rem 4.1rem 0;
}

.header__logo {
  max-width: 14.9rem;
}

.header__center-logo {
  left: 50%;
  margin: 0 auto;
  max-width: 25rem;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
}

.header__phone {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header__phone a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #523939;
  transition: all 0.2s ease;
}

.header__phone a:hover {
  opacity: 0.7;
}

.header__phone-text {
  font-size: 1.6em;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #666;
}

.header__phone-number {
  font-size: 4em;
  font-weight: 700;
  color: #FF710C;
  font-family: "HigureGothic", sans-serif;
}

/* スマホ版の電話ボタン */
.header__phone-btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

/* 3つのボタンを横並びで動揺に追従 */
.header__phone-buttons {
  display: flex !important;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  gap: 0;
  flex-direction: row;
}

.header__phone-btn--line {
  background: #00C300!important;
  border-radius: 0;
  box-shadow: none;
}

.header__phone-btn--line:hover {
  background: #00A000!important;
  transform: scale(1.05);
}

.header__phone-btn--phone {
  background: #FF710C;
  border-radius: 0;
  box-shadow: none;
}

.header__phone-btn--phone:hover {
  background: #E65A00;
  transform: scale(1.05);
}

.header__phone-btn--email {
  background: #1A4B96!important;
  border-radius: 0;
  box-shadow: none;
}

.header__phone-btn--email:hover {
  background: #153A7A;
  transform: scale(1.05);
}

.header__phone-btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  border-right: 1px solid #fff;
  height: 10rem;
  background: #FF710C;
  text-decoration: none;
  transition: all 0.2s ease;
}

.header__phone-btn-link:hover {
  background: #E65A00;
  transform: scale(1.05);
}

.header__phone-btn-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.header__phone-icon {
  width: 4rem;
  height: 4rem;
}

.header__phone-btn-text {
  color: white;
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  line-height: 1;
}


/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
  margin: auto;
  padding: 0 2.6rem;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
  overflow: hidden;
}

/*
 * c-col-block
 * -------------------------------------------------------------
 */

.c-col-block {
  margin-top: 13.3rem;
}

.c-col-block__items {
  display: flex;
  flex-direction: column;
  gap: 10.5rem;
}

.c-col-block__item {
  background: #fff;
  border-radius: 2rem;
  padding: 0 5rem;
}

.c-col-block__item-inner {
  position: relative;
  top: -7.2rem;
}

.c-col-block__img {
    height: auto; /* 高さ制限を解除 */
    max-width: 55.1rem;
    margin: 0 auto;
    border-radius: 2.1rem;
    overflow: hidden;
}

.c-col-block__img img {
    width: 100%;
    height: auto;
    object-fit: cover; /* トリミングは維持したいなら */
    display: block;
}

.c-col-block__ttl {
  font-family: "HigureGothic";
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.275;
  margin-top: 4.5rem;
  text-align: center;
}

.c-col-block__ttl span {
  color: #FF710C;
}

.c-col-block__text {
  font-size: 2.6rem;
  letter-spacing: 0;
  line-height: 1.73;
  margin-top: 2.3rem;
}

/*
 * c-cta
 * -------------------------------------------------------------
 */

.c-cta.--top {
  background: url(./../images/cta_bg_curved.webp) no-repeat top/100%;
  margin-top: -14rem;
  padding: 7rem 0 5rem;
  position: relative;
}

.c-cta {
  background: url(./../images/cta_bg.webp) no-repeat top/cover;
  padding: 4.5rem 0;
}


.c-cta__item {
  margin: 0 auto;
  max-width: 60.1rem;
}

.c-cta__lead {
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.3rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.c-cta__ttl {
  color: #AA3901;
  font-family: "Zen Maru Gothic", serif;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 1rem;
  text-align: center;
}

.c-cta .c-marker {
  background: linear-gradient(transparent 67%, #FFFF00 0%);
  display: inline-block;
  line-height: 1;
}

.c-cta__ttl .fz-m {
  font-size: 7.2rem;
  font-weight: bold;
}

.c-cta__ttl .fz-l {
  font-size: 8rem;
  font-weight: bold;
}

.c-cta__ttl .lts-0 {
  letter-spacing: 0;
}

/*
 * 新しいボタンレイアウト用のスタイル
 * -------------------------------------------------------------
 */
.c-cta__btn-container {
  margin: 3rem auto 0;
  max-width: 100%;
}

.c-cta__btn-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.c-cta__btn-row--bottom {
  margin-bottom: 0;
}

.c-cta__btn-wrap--line .c-cta__btn {
  background: #4CAF50;
  box-shadow: 0px 4px 0px #388E3C;
}

.c-cta__btn-wrap--email .c-cta__btn {
  background: #FF9800;
  box-shadow: 0px 4px 0px #F57C00;
}

.c-cta__btn-wrap--phone .c-cta__btn {
  background: #234991;
  box-shadow: 0px 4px 0px #0a1b3b;
}

.c-cta__btn {
  align-items: center;
  border-radius: 1rem;
  color: #FFFFFF;
  display: flex;
  font-family: "HigureGothic";
  font-size: 2.4rem;
  font-weight: 500;
  gap: 1.5rem;
  height: 8rem;
  justify-content: center;
  line-height: 1.325;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
  max-width: 35rem;
}

.c-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 0px rgba(0,0,0,0.2);
}

.c-cta__btn-text {
  font-size: 1.3em;
}

.c-cta__btn-arrow {
  background: url(./../images/cta_btn_arrow.svg) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 4rem;
  width: 4rem;
}

.c-cta__note {
  color: #000000;
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 2rem;
  text-align: center;
}
.mail{
  margin-top:1rem;
}
.mail img{
  margin-bottom: 1rem!important;
}

/* スマホ版専用のスタイル */
@media screen and (max-width: 768px) {
  .c-cta__btn-text {
    font-size: 1.2em;
  }
  .fv{
    padding-top: 7rem;
  }
  .mail img{
    width: 4rem;
        height: 3rem!important;
        margin-bottom: 0.5rem;
  }
  .header__phone-icon{
    width: 4rem;
    height: 3rem;
    margin-bottom: 0.5rem;
  }
  .header__phone-btn-content .header__phone-icon{
    width: 4rem;
    height:4rem;
    margin-bottom: 0.5rem;
  }
  
  .c-cta__btn {
    height: 11rem;
    gap: 2.5rem;
    margin-bottom: 1rem;
    font-size: 3em;
    width: 100%;
  }
  .c-cta__btn{
    width: 100%;
    margin:0.8rem auto;
  }
 
  
  .c-cta__btn-row {
    max-width: 100%;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .c-cta__btn-arrow {
    height: 4rem;
    width: 4rem;
  }
  
  .sp {
    display: block;  
  }
  
  .pc {
    display: none;
  }
  
  .c-cta__btn-wrap {
    width: 100%;
  }
}

/*
 * c-grid
 * -------------------------------------------------------------
 */

.c-grid {
  background: #fff;
  font-family: "HigureGothic";
  font-weight: 500;
  padding: 4.5rem 2.8rem 3rem;
  position: relative;
}

.c-grid__heading {
  border: 2px solid #363636;
  color: #363636;
  font-size: 4rem;
  margin: 0 auto;
  padding: 0.8rem 2.5rem;
  width: -moz-fit-content;
  width: fit-content;
}

.c-grid__items {
  grid-gap: 3rem 1.5rem;
  display: grid;
  gap: 3rem 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
}

.c-grid__img {
  border-radius: 1.7rem;
}

.c-grid__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.c-grid__ttl {
  font-feature-settings: "palt";
  font-size: 2.6rem;
  letter-spacing: 0;
  line-height: 1.2;
  margin-top: 1.8rem;
  text-align: center;
}

.c-grid__text {
  font-size: 2.2rem;
  letter-spacing: 0;
  line-height: 1.27;
  margin-top: 1.2rem;
}

.c-grid__text.--center {
  text-align: center;
}

.c-grid__position-img {
  bottom: -2.7rem;
  max-width: 40.4rem;
  position: absolute;
  right: -1.7rem;
  width: 100%;
}

/*
 * c-lead-ttl
 * -------------------------------------------------------------
 */

.c-lead-ttl {
  font-family: "HigureGothic";
  font-size: 5.8rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  margin-top: 4rem;
  text-align: center;
}

/*
 * c-marker
 * -------------------------------------------------------------
 */

.c-marker {
  background: linear-gradient(transparent 67%, #FFFF00 0%);
  display: inline-block;
  line-height: 1;
}

/*
 * c-sec-ttl
 * -------------------------------------------------------------
 */

.c-sec-ttl {
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #FF710C;
  border-radius: 4.6rem;
  color: #FF710C;
  display: flex;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  height: 4.8rem;
  justify-content: center;
  line-height: 1;
  margin: 0 auto;
  padding: 0.6rem 1.8rem;
  position: relative;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}

.c-sec-ttl::after {
  background: #ff710c;
  bottom: -2rem;
  content: "";
  display: block;
  height: 1.8rem;
  margin: 1.1rem auto 0;
  position: absolute;
  width: 0.2rem;
}

/*
 * c-slide-guide
 * -------------------------------------------------------------
 */

.c-slide-guide {
  border-radius: 3.15rem 0px 0px 3.15rem;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  gap: 1.4rem;
  height: 5.6rem;
  letter-spacing: 0;
  max-width: 21.1rem;
  padding: 1rem 1rem 1rem 2.7rem;
  position: absolute;
  width: 100%;
  z-index: 11;
}

.c-slide-guide::after {
  content: "→";
  font-size: 2.8rem;
  margin-left: 1rem;
}

/*
 * c-textarea
 * -------------------------------------------------------------
 */

.c-textarea {
  background: #fff;
  padding: 3.5rem 0;
}

.c-textarea.--reason {
  padding: 6.5rem 0 3.4rem;
}

.c-textarea__text {
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.67;
  padding: 0 2.6rem;
}

.c-textarea .bold {
  font-weight: bold;
}

/*
 * u-color
 * -------------------------------------------------------------
 */

.u-color {
  color: #FF710C;
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
  display: none;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
  display: block;
}


/*
 * about
 * -------------------------------------------------------------
 */

.about {
  background: #fff;
  padding: 4.4rem 0 4rem;
}
.about__text02 small {
    vertical-align: bottom;
    margin-top: 1.5rem;
}

.about__sec-ttl {
  padding: 1rem 3.8rem;
}

.about__heading {
  margin-top: 6rem;
  position: relative;
}

.about__img-left {
  left: -0.5rem;
  max-width: 20.6rem;
  position: absolute;
  top: -0.5rem;
  width: 100%;
  z-index: 1;
}

.about__img-right {
  max-width: 19.3rem;
  position: absolute;
  right: -0.2rem;
  top: -7.4rem;
  width: 100%;
  z-index: 1;
}

.about__lead {
  color: #574848;
  font-family: "HigureGothic";
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  position: relative;
  z-index: 2;
  
}

.about__lead .fz-s {
  font-size: 3.8rem;
}

.about__lead .fz-l {
  font-size: 6.4rem;
}

.about__lead .c-1 {
  color: #AA3901;
  left: 2rem;
}

.about__lead .c-2 {
  color: #1A736D;
  right: 2rem;
}

.about__lead small {
  font-size: 4.1rem;
}

.about__body {
  margin-top: 4rem;
}

.about__text {
  color: #574848;
  font-size: 2.7rem;
  text-align: center;
}

.abouot__chart {
  left: 2.3rem;
  margin: 3.7rem auto 0;
  max-width: 55.2rem;
  position: relative;
}

.about__text02 {
  align-items: center;
  border: 2px dashed #523939;
  display: flex;
  font-family: "HigureGothic";
  font-size: 2.8rem;
  font-weight: 500;
  height: 7.9rem;
  justify-content: center;
  margin: 3rem auto 0;
  max-width: 50.6rem;
}

.about__text02 .fz-l {
  font-size: 4.1rem;
}

.about__text02 small {
  font-size: 2.8rem;
}

.about__guide {
  font-family: "HigureGothic";
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
  padding-top: 2.5rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.about__guide::before {
  background: url(./../images/about_arrow.svg) no-repeat center/100%;
  content: "";
  display: block;
  height: 11rem;
  left: 50%;
  position: absolute;
  top: 1.1rem;
  transform: translateX(-50%);
  width: min(15.8rem, 100%);
  z-index: -1;
}

.about__guide small {
  font-size: 2.8rem;
}

/*
 * buy-cases
 * -------------------------------------------------------------
 */

.buy-cases {
  background: #1a736d;
  padding: 5.2rem 0 8.5rem;
}

.buy-cases__sec-ttl {
  color: #FFFFFF;
  font-family: "HigureGothic";
  font-size: 4.7rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.buy-cases__items {
  grid-gap: 3rem 4rem;
  display: grid;
  gap: 3rem 4rem;
  grid-template-columns: repeat(2, 1fr);
  margin: 4.5rem auto 0;
  max-width: 61.8rem;
}

.buy-cases__item {
  border-radius: 2.3rem;
  display: flex;
  flex-direction: column;
  height: 35.5rem;
  overflow: hidden;
  text-align: center;
}

.buy-cases__img {
    width: 100%;
    height: 74px;
    padding-bottom: 69%;
    position: relative;
    overflow: hidden;
}

.buy-cases__img img {
 height: auto;
     width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.buy-cases__details {
  background: #fff;
  display: flex;
  flex-grow: 1; /* 高さを可能な限り伸ばす */
  flex-direction: column;
  height: 100%;
  margin-top: -1px;
  padding: 1.6rem 1rem;
}

.buy-cases__ttl {
  color: #363636;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.34;
  padding-bottom: 2rem;
}

.buy-cases__price {
  color: #1A736D;
  font-size: 3.2rem;
  font-weight: 700;
  margin-top: auto;
}

.buy-cases__price small {
  font-size: 2.6rem;
}

/*
 * buy-items
 * -------------------------------------------------------------
 */

.buy-items__inner {
  background: url(./../images/grid_bg.webp) repeat-y center/100% 20.8rem;
  padding-bottom: 8rem;
  padding-top: 4rem;
}

.buy-items.--top .buy-items__inner {
  padding-bottom: 4.5rem;
  padding-top: 2.6rem;
}

.buy-items__header {
  padding-bottom: 4rem;
}

.buy-items__header-ttl {
  margin: 0 auto;
  max-width: 50.6rem;
}

.buy-items__header-ttl.--bot {
  align-items: center;
  color: #AA3901;
  display: flex;
  font-family: "HigureGothic";
  font-size: 5rem;
  font-weight: 700;
  gap: 2rem;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

.buy-items__header-ttl.--bot::before {
  background: url(./../images/title_deco_left.svg) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 7.1rem;
  width: 3.6rem;
}

.buy-items__header-ttl.--bot::after {
  background: url(./../images/title_deco_right.svg) no-repeat center/100%;
  content: "";
  display: inline-block;
  height: 7.1rem;
  width: 3.6rem;
}

.buy-items__header-text {
  font-size: 2.6rem;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 2rem;
}

.buy-items__note {
  display: block;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 2.3rem;
}

.buy-items__flex {
  display: flex;
  gap: 3.1rem;
  margin-top: 4rem;
}

.buy-items__flex-item {
  background: #fff;
  border-radius: 1.6rem;
  padding: 3rem 1.8rem;
}

.buy-items__flex-ttl {
  color: #AA3901;
  font-family: "HigureGothic";
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}

.buy-items__flex-ttl.--sm {
  font-size: 4.2rem;
}

.buy-items__flex-ttl.--sm span {
  font-size: 5.8rem;
}

.buy-items__flex-ttl.--lg {
  font-size: 4.4rem;
}

.buy-items__flex-ttl.--lg span {
  font-size: 5rem;
}

.buy-items__flex-text {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.625;
  margin-top: 1rem;
}

.buy-items__note {
  font-size: 1.4rem;
  letter-spacing: 0;
  margin-top: 1rem;
}

.buy-items__note.--mt15 {
  margin-top: 2rem;
}

/*
 * campaign
 * -------------------------------------------------------------
 */

.campaign {
  padding: 5.7rem 0 5.3rem;
}

.campaign__text {
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.7;
  margin-top: 2.5rem;
}

.campaign__img {
  border-radius: 2.1rem;
  margin: 3rem auto 0;
  max-width: 55.1rem;
}

/*
 * cases
 * -------------------------------------------------------------
 */

.cases {
  background: url(./../images/cases_bg.webp) no-repeat center/cover;
  padding: 6.6rem 0 8.4rem;
}

.cases__details {
  margin-top: 7rem;
  position: relative;
}

.cases__slide-guide {
  background: #ff710c;
  right: -2.6rem;
  top: -2.25rem;
}

/* slider
--------------------------------------- */

.cases-slider__slide {
  background: #fff;
  border: 0.5rem solid #FF710C;
  border-radius: 3.7rem;
  display: flex;
  flex-direction: column;
  height: 136.5rem;
  padding: 6.3rem 4.4rem 7.2rem;
}

.cases-slider__slide-ttl {
  background: #ff710c;
  border-radius: 0 1rem 0 0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  height: 4.5rem;
  letter-spacing: 0.05em;
  max-width: 36rem;
  padding: 1.1rem 1.2rem;
  position: absolute;
  right: -1px;
  top: 0;
  width: 100%;
}

.cases-slider__slide-header {
  border-bottom: 0.3rem dashed #523939;
}

.cases-slider__slide-header dl {
  align-items: center;
  display: flex;
  font-family: "HigureGothic";
  gap: 4.6rem;
  padding: 3rem 0 2.6rem;
}

.cases-slider__slide-header dl dt {
  background: #f6f3e0;
  font-size: 2.7rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  min-width: 24.3rem;
  padding: 1.6rem 1rem;
  text-align: center;
}

.cases-slider__slide-header dl dd {
  flex: 1;
  font-size: 2.8rem;
  font-weight: 500;
  position: relative;
  top: -0.6rem;
}

.cases-slider__slide-header dl dd .fz-l {
  font-size: 4.6rem;
  font-weight: 500;
}

.cases-slider__slide-header dl dd small {
  font-size: 2.3rem;
}

.cases-slider__slide-header dl dd .c-marker {
  color: #AA3901;
}

/* data */

.cases-slider__data li {
  align-items: center;
  display: flex;
}

.cases-slider__data li p {
  position: relative;
  top: 0.5rem;
  width: 15rem;
}

.cases-slider__data li strong {
  margin-left: auto;
}

.cases-slider__body {
  display: flex;
  flex-direction: column;
  padding: 1rem 0 0 0;
}

.cases-slider__price {
  font-family: "HigureGothic";
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 0;
  text-align: right;
}

.cases-slider__price strong {
  color: #AA3901;
  font-size: 9.3rem;
  font-weight: 700;
  margin-left: 1.8rem;
}

.cases-slider__price .fz-md {
  color: #523939;
  font-size: 5.8rem;
  font-weight: 700;
}

/* table
--------------------------------- */

.cases-slider__table-wrap {
  margin-top: 3.8rem;
}

.cases-slider__table {
  border-collapse: collapse;
  font-size: 2.8rem;
  width: 100%;
}

.cases-slider__table th,
.cases-slider__table td {
  border: 0.3rem solid #FF710C;
  border-bottom: none;
  font-weight: 500;
  height: 6.5rem;
  padding: 0 1rem;
  text-align: center;
  vertical-align: middle;
}

.cases-slider__table th {
  background: #ffdbc1;
}

.cases-slider__table th:first-of-type {
  width: 12.5rem;
}

.cases-slider__table:last-of-type th,
.cases-slider__table:last-of-type td {
  border-bottom: 0.3rem solid #FF710C;
}

.cases-slider__text {
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 3rem;
}

/* slider nav
---------------------------------------- */

.cases-slider__nav {
  align-items: center;
  display: flex;
  gap: 10.2rem;
  justify-content: center;
  margin-top: 6rem;
}

.cases-slider__prev,
.cases-slider__next {
  height: 9.2rem !important;
  position: static !important;
  width: 9.2rem !important;
}

.cases-slider__prev {
  background: url(./../images/prev.webp) no-repeat center/100%;
}

.cases-slider__prev {
  position: static !important;
}

.cases-slider__next {
  background: url(./../images/next.webp) no-repeat center/100%;
}

.cases-slider__pagination {
  position: static !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.cases-slider__pagination {
  display: flex;
  gap: 3.3rem;
  justify-content: center;
}

.cases-slider__pagination .swiper-pagination-bullet {
  margin: 0 !important;
}

.cases-slider__pagination .swiper-pagination-bullet {
  background: transparent;
  border: 1px solid #523939;
  cursor: pointer;
  height: 1.3rem;
  opacity: 1;
  width: 1.3rem;
}

.cases-slider__pagination .swiper-pagination-bullet-active {
  background: #523939;
}

/*
 * faq
 * -------------------------------------------------------------
 */

.faq {
  padding: 4rem 0 6.5rem;
}

.faq__lead-text {
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.8;
  margin-top: 2.5rem;
}

.faq__details {
  margin-top: 6.25rem;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 3.7rem;
}

.faq__item {
  background: #fff9ee;
  border-radius: 3.3rem;
  letter-spacing: 0;
  padding: 5.2rem 3.2rem;
}

.faq__ttl {
  background: #fff;
  color: #1B5F5A;
  font-size: 3rem;
  font-weight: 500;
  height: 12.4rem;
  line-height: 1.53;
  padding: 1.2rem 1rem 2rem 9rem;
  position: relative;
}

.faq__q {
  display: block;
  height: 6.7rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 6.7rem;
}

.faq__desc {
  color: #363636;
  display: flex;
  flex: 1;
  font-size: 2.5rem;
  gap: 2.6rem;
  line-height: 1.76;
  margin-top: 2.2rem;
  padding-left: 1.7rem;
}

.faq__a {
  color: #1B5F5A;
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.5;
}

/*
 * float
 * -------------------------------------------------------------
 */

.float {
  display: none;
  position: fixed;
  right: 0;
  top: 20rem;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.float.is-visible {
  opacity: 1;
}

.float__btn {
  min-width: 16rem;
  transition: all 0.3s ease;
  width: min(24.1rem, 12.521vw);
}

.float__btn:hover {
  filter: brightness(115%);
}

/* 新しい追従メニュー */
.float__menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: auto;
}

.float__menu-item {
  display: block;
}

.float__menu-btn {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.float__menu-btn img {
  display: block;
  height: auto;
  width: auto;
  transition: all 0.3s ease;
}

.float__menu-btn:hover img {
  transform: translateY(-0.2rem);
}



/*
 * flow
 * -------------------------------------------------------------
 */

.flow {
  background: #1a736d;
  padding: 6rem 0 8.4rem;
}

.flow__inner {
  padding: 0;
}

.flow__lead-ttl {
  color: #fff;
}

.flow__details {
  margin-top: 6rem;
  padding-left: 8rem;
  position: relative;
}

/* slider
--------------------------------------- */

.flow-slider .swiper-slide {
  flex-shrink: 0;
  height: auto;
  width: 41.3rem;
}

.flow-slider__slide {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.flow-slider__img {
  aspect-ratio: 401/358;
}

.flow-slider__img img {
  -o-object-fit: cover;
  aspect-ratio: 401/358;
  height: 100%;
  object-fit: cover;
}

.flow-slider__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-top: -2.3rem;
  padding: 0 1.5rem;
}

.flow__slider-step {
  align-items: center;
  background: #fff;
  border: 0.2rem solid #FF710C;
  border-radius: 4.1rem;
  color: #FF710C;
  display: block;
  display: flex;
  font-family: "HigureGothic";
  font-size: 3rem;
  font-weight: 700;
  gap: 1rem;
  height: 4.2rem;
  justify-content: flex-end;
  margin: 0 auto;
  max-width: 15.1rem;
  padding-left: 2.3rem;
  text-transform: uppercase;
}

.flow__slider-num {
  align-items: center;
  background: #ff710c;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  display: grid;
  font-size: 2.8rem;
  height: 4.1rem;
  justify-items: center;
  place-items: center;
  width: 4.1rem;
}

.flow-slider__ttl {
  color: #fff;
  font-family: "HigureGothic";
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 3rem;
  text-align: center;
}

.flow-slider__text {
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.5;
  margin-top: 1.6rem;
}

.flow-slider__scrollbar {
  background: rgba(255, 255, 255, 0.35) !important;
  position: static !important;
}

.flow-slider__scrollbar {
  margin: 10rem auto 0 5rem;
  max-width: 51.6rem;
}

.flow-slider__scrollbar .swiper-scrollbar-drag {
  background: #fff !important;
}

/*
 * fv
 * -------------------------------------------------------------
 */

.fv__item {
  bottom: -3rem;
  max-width: 48.8rem;
  position: absolute;
  right: 7rem;
  width: 100%;
  z-index: 1;
}

/*
 * greeting
 * -------------------------------------------------------------
 */

.greeting {
  padding: 6.5rem 0 5rem;
}

.greeting__sec-ttl {
  padding: 1rem 2.3rem;
}

.greeting__body {
  display: contents;
}

.greeting__img {
  margin: 4rem auto 0;
  max-width: 56.1rem;
}

.greeting__text {
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 2.2;
  margin-top: 3.5rem;
}

.greeting__text .bold {
  display: block;
  font-size: 3.3rem;
  font-weight: 700;
}

.greeting__name {
  display: block;
  margin-left: auto;
  margin-top: 4rem;
  max-width: 19.3rem;
  text-align: right;
}

/*
 * option
 * -------------------------------------------------------------
 */

.option {
  background: #fff6ec;
  background: linear-gradient(180deg, #FFF6EC 77.88%, rgba(255, 255, 255, 0) 100%);

}

.option__lead-text {
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.8;
  margin-top: 2.5rem;
}

.option__textarea {
  background: none;
}

.option__textarea-text {
  padding: 0;
}

/*
 * plan
 * -------------------------------------------------------------
 */

.plan {
  padding: 4.6rem 0 0;
}

.plan__heading {
  margin-top: 4rem;
}

.plan__text {
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.7;
  margin-top: 3rem;
}

.plan__text .bold {
  font-weight: 700;
}

.plan__img {
  margin: 3rem calc(50% - 50vw) 0;
  width: 100vw;
}

.plan__details {
  background: #fff;
  margin-top: -11rem;
  position: relative;
}

.plan__details::before {
  background: url(./../images/pc/plan_bg.webp) no-repeat center/100%;
  background-attachment: fixed;
  content: "";
  display: block;
  display: none;
  height: 100%;
  margin: 0px calc(-25vw - 50%);
  position: absolute;
  width: 200vw;
  z-index: -1;
}

.plan__details-ttl {
  background: #1a736d;
  color: #fff;
  font-family: "HigureGothic";
  font-size: 3.8rem;
  font-weight: 500;
  letter-spacing: 0;
  padding: 1.9rem;
  text-align: center;
}

.plan__details-ttl small {
  font-size: 2.8rem;
}

.plan__table-wrap {
  margin: 4.3rem auto 0;
  max-width: 64.3rem;
}

.plan__table {
  border: 1px solid #00A99D;
  border-collapse: collapse;
  font-size: 2.8rem;
  width: 100%;
}

.plan__table th,
.plan__table td {
  padding: 1.1rem 1.2rem;
}

.plan__table thead th {
  background: #fbf8e3;
  border-bottom: 1px solid #00A99D;
  font-family: "HigureGothic";
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.plan__table thead th small {
  font-size: 2.4rem;
}

.plan__table th {
  border-right: 1px solid #00A99D;
}

.plan__table tbody th,
.plan__table tbody td {
  border-bottom: 1px solid #00A99D;
  font-weight: 400;
  letter-spacing: 0;
}

.plan__note {
  display: block;
  font-size: 2.3rem;
  letter-spacing: 0;
  margin-top: 1.5rem;
}

.plan__bot {
  padding: 0.5rem 0 7rem;
}

/*
 * pro
 * -------------------------------------------------------------
 */

.pro {
  background: #1a736d;
  padding: 4rem 0;
}

.pro__sec-ttl {
  align-items: flex-end;
  color: #fff;
  display: flex;
  font-family: "Zen Maru Gothic", serif;
  font-size: 3.3rem;
  font-weight: 500;
  gap: 3rem;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.42;
  text-align: center;
}

.pro__sec-ttl::before,
.pro__sec-ttl::after {
  background: #fff;
  content: "";
  display: inline-block;
  height: 8.7rem;
  position: relative;
  top: 1rem;
  width: 0.3rem;
}

.pro__sec-ttl::before {
  transform: rotate(-40deg);
}

.pro__sec-ttl::after {
  transform: rotate(40deg);
}

.pro__list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 2rem auto auto auto;
}

.pro__list-item {
  width: calc(25.333% - 14px);
  text-align: center;
}

.pro__list-img {
  margin-bottom: 10px;
}

.pro__list-img img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.pro__name {
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 1rem;
  text-align: center;
  margin-top: 1rem;
}

.pro__img {
  margin: 5rem calc(50% - 50vw) 0;
  width: 100vw;
}

/*
 * reason
 * -------------------------------------------------------------
 */

.reason {
  background: #fff6ec;
}

.reason__inner {
  padding-bottom: 5rem;
  padding-top: 5.6rem;
}

.reason__sec-ttl {
  padding: 1rem 1.8rem;
}

.reason__flex {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  margin-top: 4.7rem;
}

.reason__flex-item {
  display: flex;
  gap: 2.6rem;
}

.reason__img {
  aspect-ratio: 288/248;
  border-radius: 1.4rem;
  max-width: 28.8rem;
  overflow: hidden;
  width: 100%;
}

.reason__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.reason__details {
  flex: 1;
  padding-right: 2rem;
  padding-top: 1.4rem;
}

.reason__ttl {
  font-family: "HigureGothic";
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.reason__text {
  font-size: 2.6rem;
  letter-spacing: 0;
  line-height: 1.6;
  margin-top: 2.5rem;
}

/*
 * service-bot
 * -------------------------------------------------------------
 */

.service-bot {
  padding-top: 8rem;
}

.service-bot__img {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.service-bot__textarea {
  padding: 4rem 0 6rem;
}

.service-bot__text {
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.7;
}

.service-bot__text span {
  font-weight: 700;
}

.service-bot__lead-wrap {
  background: #f45e5c;
  padding: 2rem 0 2.8rem;
  position: relative;
  text-align: center;
}

.service-bot__lead-wrap::after {
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #f45e5c;
  bottom: -3.1rem;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  display: block;
  height: 3.8rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 15.5rem;
}

.service-bot__lead {
  color: #fff;
  font-family: "HigureGothic";
  font-size: 4.3rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
}

.service-bot__lead small {
  display: block;
  font-size: 3rem;
  letter-spacing: 0.06em;
}

.service-bot__lead span {
  color: #FFFF00;
}

.service-bot__flex {
  align-items: center;
  background: #FFDDDD;
  display: flex;
  gap: 1.7rem;
  padding: 3rem 2.6rem 5rem;
}

.service-bot__flex-textarea {
  display: contents;
}

.service-bot__flex-textarea::before {
  background: url(./../images/pc/service_bot_fukidashi.webp) no-repeat center/100%;
  content: "";
  display: none;
  height: 25rem;
  left: 57%;
  max-width: 55.6rem;
  position: absolute;
  top: 48%;
  transform: translate(-50%, -50%);
  width: 115%;
}

.service-bot__flex-text {
  flex: 1;
  font-size: 2.8rem;
  letter-spacing: 0;
  line-height: 1.8;
}

.service-bot__flex-text span {
  color: #aa3901;
  font-weight: 700;
}

.service-bot__flex-img {
  max-width: 27.4rem;
}

/*
 * service
 * -------------------------------------------------------------
 */

.service {
  padding-bottom: 7.3rem;
}

.service__lead-ttl {
  background: #95cc4d;
  color: #fff;
  line-height: 1.22;
  margin-top: 0;
  padding: 3.8rem 0 3rem;
}

.service__lead-ttl span {
  color: #FFFF00;
}

.service__details {
  background: #fff;
  border: 1rem solid #95cc4d;
  padding: 6.4rem 0 5rem 4.4rem;
  position: relative;
}

.service__slide-guide {
  background: #95cc4d;
  right: -3.5rem;
  top: 3.8rem;
}

/* slider
--------------------------------------- */

.service-slider {
  -webkit-clip-path: inset(0% -50vw 0% 0%);
  clip-path: inset(0% -50vw 0% 0%);
}

.service-slider .swiper-slide {
  flex-shrink: 0;
  height: auto;
  width: 41.3rem;
}

.service-slider__slide {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-slider__img {
  aspect-ratio: 413/255;
  border-radius: 4.8rem 4.8rem 0 0;
  min-height: 25.5rem;
  overflow: hidden;
}

.service-slider__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.service-slider__body {
  background: #F8F8F7;
  border: 1px solid #E0DEDE;
  border-radius: 0 0 4.8rem 4.8rem;
  border-top: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 3rem 2rem 3rem 3rem;
}

.service-slider__ttl {
  font-family: "HigureGothic";
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}

.service-slider__text {
  font-size: 2.6rem;
  letter-spacing: 0;
  line-height: 1.57;
  margin-top: 3rem;
}

.service-slider__scrollbar {
  position: static !important;
}

.service-slider__scrollbar {
  margin: 5.2rem auto 0;
  max-width: 51.6rem;
}

.service-slider__scrollbar .swiper-scrollbar-drag {
  background: #a0a0a0 !important;
}
    .buy-cases__img img {
        height: auto;
    }

    .buy-cases__details {
        padding: 1rem;
    }

@media screen and (min-width: 769px) {

  html {
    font-size: min(10px, 1.05vw);
  }
  .sp{
    display: none;
  }
  .pc{
    display: block;
  }



  .header {
    background: #fff;
    position: static;
  }

  .header__inner {
    height: 12.2rem;
    margin: 0 auto;
    max-width: 100rem;
    padding: 2rem 0 0 0;
    position: relative;
  }

  .l-inner {
    max-width: 90rem;
    padding: 0 2.4rem;
  }

  .c-col-block {
    margin-top: 18rem;
  }

  .c-col-block__items {
    grid-gap: 18.3rem 3.4rem;
    display: grid;
    gap: 18.3rem 3.4rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .c-col-block__item {
    border-radius: 1.3rem;
    max-height: 48.5rem;
    padding: 0 2.5rem;
  }

  .c-col-block.--option .c-col-block__item {
    max-height: 60rem;
  }

  .c-col-block__item-inner {
    top: -13.6rem;
  }

  .c-col-block__img {
    aspect-ratio: 330/213;
    border-radius: 1.3rem;
    max-width: 33rem;
  }

  .c-col-block__ttl {
    font-size: 2.6rem;
    line-height: 1.38;
    margin-top: 3.2rem;
  }

  .c-col-block__text {
    font-size: 1.6rem;
    line-height: 2.1;
    margin-top: 0.6rem;
  }

  .c-cta.--top {
    background: url(./../images/pc/cta_bg_curved.webp) no-repeat top/cover;
    margin-top: 0;
    margin-top: -7rem;
    padding: 5rem 0 18rem;
  }

  .c-cta {
    background: url(./../images/pc/cta_bg.webp) no-repeat top/cover;
    padding: 3rem 0 4rem;
  }


  .c-cta__lead {
    font-size: 2.7rem;
    letter-spacing: 0.1em;
    margin-top: 3rem;
  }

  .c-cta__ttl {
    font-size: 5.2rem;
    letter-spacing: 0.09em;
  }

  .c-cta .c-marker {
    background: linear-gradient(transparent 82%, #FFFF00 0%);
  }

  .c-cta__ttl .fz-m {
    font-size: 8.6rem;
  }

  .c-cta__ttl .fz-l {
    font-size: 9.3rem;
    letter-spacing: -0.01em;
  }

 

  /* 新しいボタンレイアウト用のPC版スタイル */
  .c-cta__btn-container {
    margin-top: 1.8rem;
    max-width: 100%;
    padding: 0 4rem;
  }
  
  .c-cta__btn-row {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  
  .c-cta__btn {
    font-size: 1.8rem;
    height: 8rem;
    max-width: 40rem;
    margin:1.5rem auto auto auto;
  }
  



  .c-cta__note {
    font-size: 1.4rem;
    margin-top: 1.6rem;
  }

  .c-grid {
    border-radius: 1.6rem;
    padding: 3.3rem 4.8rem 11rem;
  }

  .c-grid__heading {
    font-size: 2.8rem;
    padding: 0.6rem 2.6rem;
  }

  .c-grid__items {
    gap: 2rem 0.7rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 4.5rem;
  }

  .c-grid__img {
    aspect-ratio: 178/104;
    margin: 0 auto;
    max-width: 17.8rem;
  }

  .c-grid__ttl {
    font-size: 1.7rem;
    margin-top: 1.1rem;
  }

  .c-grid__text {
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin: 1.5rem auto 0;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
  }

  .c-grid__text.--ltsp {
    letter-spacing: -0.07em;
  }

  .c-grid__position-img {
    right: 11.3rem;
  }

  .c-lead-ttl {
    font-size: 5rem;
    letter-spacing: 0.02em;
    margin-top: 2rem;
  }

  .c-marker {
    background: linear-gradient(transparent 70%, #FFFF00 0%);
    padding-bottom: 0.5rem;
  }

  .c-sec-ttl {
    font-size: 1.6rem;
    height: 4.5rem;
  }

  .c-textarea {
    padding: 2.5rem 0 1rem;
  }

  .c-textarea.--reason {
    background: none;
  }

  .c-textarea__text {
    font-size: 1.8rem;
    line-height: 2;
    margin: 0 auto;
    max-width: 90rem;
    padding: 0 2.4rem;
  }

  .c-textarea .bold {
    font-size: 2.6rem;
  }

  .c-textarea.--reason .bold {
    color: #FF710C;
    margin: 0 0.4rem;
  }

  .c-textarea .fz-l {
    font-size: 3rem;
    font-weight: 700;
    position: relative;
    top: -2.4rem;
  }

  .u-pc {
    display: block;
  }

  .u-sp {
    display: none!important;
  }

  .about {
    background: url(./../images/pc/about_bg.webp) no-repeat center/95.2vw #fff;
    background-position: 1rem 8rem;
    border-radius: 12.6rem 12.6rem 0 0;
    margin-top: -15rem;
    padding: 7.7rem 0 5.2rem;
    position: relative;
    z-index: 1;
  }

  .about__sec-ttl {
    padding: 0.5rem 1.8rem;
  }

  .about__heading {
    margin-top: 1.6rem;
  }

  .about__lead {
    font-size: 4rem;
    letter-spacing: 0.06em;
    line-height: 1.55;
  }

  .about__lead .fz-s {
    font-size: 3rem;
  }

  .about__lead .fz-l {
    font-size: 5.8rem;
    position: relative;
  }

  .about__lead small.pc-position {
    position: relative;
    right: 5rem;
  }

  .about__lead .c-marker {
    font-size: 4.6rem;
    margin-top: 1.3rem;
  }

  .about__body {
    margin-top: 5rem;
  }

  .about__text {
    font-size: 2.5rem;
  }

  .abouot__chart {
    margin-top: 1.5rem;
    max-width: 58rem;
  }

  .about__text02 {
    font-size: 3rem;
    height: 8.5rem;
    margin-top: 1.3rem;
    max-width: 61rem;
  }

  .about__text02 .fz-l {
    font-size: 5rem;
  }

  .about__guide {
    font-size: 4rem;
    font-weight: 700;
    padding-top: 1.8rem;
    padding-top: 2.5rem;
  }

  .about__guide::before {
    height: 15.7rem;
    top: 0.8rem;
    width: min(22.5rem, 100%);
  }

  .about__guide small {
    font-size: 4rem;
  }

  .buy-cases {
    padding: 6.2rem 0 10.3rem;
  }

  .buy-cases__sec-ttl {
    font-size: 4rem;
  }

  .buy-cases__items {
    gap: 1.9rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 6rem;
    max-width: 100%;
  }

  .buy-cases__item {
    height: 27.5rem;
  }

  .buy-cases__img {
    aspect-ratio: 198/152;
  }

  .buy-cases__details {
    padding: 0.8em 1rem 1.4rem;
  }

  .buy-cases__ttl {
    align-items: center;
    display: flex;
    font-size: 1.9rem;
    height: 3em;
    justify-content: center;
    padding-bottom: 0;
  }

  .buy-cases__ttl.--ltsp {
    letter-spacing: -0.06em;
  }

  .buy-cases__price {
    font-size: 2.6rem;
    letter-spacing: 0.03em;
  }

  .buy-cases__price small {
    font-size: 1.6rem;
  }

  .buy-items {
    background: url(./../images/pc/buy_bg.webp) no-repeat center/cover;
  }

  .buy-items__inner {
    background: none;
    padding-bottom: 8rem;
    padding-top: 7.4rem;
  }

  .buy-items.--top .buy-items__inner {
    padding-bottom: 2.5rem;
    padding-top: 5.5rem;
  }

  .buy-items__header-ttl.--bot {
    font-size: 4rem;
    gap: 2.5rem;
  }

  .buy-items__header-ttl.--bot::before {
    height: 5.4rem;
    position: relative;
    top: -0.3rem;
    width: 2.7rem;
  }

  .buy-items__header-ttl.--bot::after {
    height: 5.4rem;
    position: relative;
    top: -0.3rem;
    width: 2.7rem;
  }

  .buy-items__header-text {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.85;
    margin-top: 2.4rem;
    text-align: center;
  }

  .buy-items__flex {
    gap: 3.7rem;
  }

  .buy-items__flex-item {
    padding: 3rem 2rem;
  }

  .buy-items__flex-ttl.--sm {
    font-size: 4rem;
  }

  .buy-items__flex-ttl.--sm span {
    font-size: 5.4rem;
  }

  .buy-items__flex-ttl.--lg {
    font-size: 4rem;
  }

  .buy-items__flex-ttl.--lg span {
    font-size: 4.9rem;
  }

  .buy-items__flex-text {
    font-size: 1.7rem;
    line-height: 2;
  }

  .campaign {
    padding: 6.4rem 0 7rem;
  }

  .campaign__sec-ttl {
    padding: 0.6rem 3rem;
  }

  .campaign__text {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-top: 2.8rem;
  }

  .campaign__img {
    border-radius: 2.9rem;
    margin-top: 5rem;
    max-width: 100%;
  }

  .cases {
    background: url(./../images/pc/cases_bg.webp) no-repeat center/cover;
    padding: 8.8rem 0 7.2rem;
  }

  .cases__details {
    margin: 0 calc(50% - 50vw);
    margin-top: 6rem;
    width: 100vw;
  }

  .cases-slider .swiper-slide {
    max-width: 75.3rem;
    width: 100%;
  }

  .cases-slider {
    padding: 0 4rem !important;
  }

  .cases-slider {
    overflow: visible;
  }

  .cases-slider .swiper-wrapper {
    align-items: stretch;
  }

  .cases-slider__slide {
    border-radius: 2.2rem;
    height: 68rem;
    padding: 5rem 4rem;
    padding: 5rem 3rem;
    position: relative;
  }

  .cases-slider__slide-header {
    align-items: flex-end;
    border-bottom: none;
    display: flex;
    gap: 3rem;
  }

  .cases-slider__img {
    max-width: 39rem;
  }

  .cases-slider__slide-header dl {
    flex: 1;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
    position: relative;
    top: 1.4rem;
  }

  .cases-slider__slide-header dl dt {
    font-size: 1.5rem;
    max-width: 26rem;
    min-width: auto;
    padding: 0.8rem 1rem;
    width: 100%;
  }

  .cases-slider__slide-header dl dt .u-pc {
    display: inline-block;
    margin: 0 0.2em;
  }

  .cases-slider__slide-header dl dd {
    font-size: 1.8rem;
    top: auto;
  }

  .cases-slider__slide-header dl dd .fz-l {
    font-size: 3.4rem;
  }

  .cases-slider__slide-header dl dd small {
    font-size: 1.8rem;
  }

  .cases-slider__data {
    padding: 0 1rem;
  }

  .cases-slider__data li {
    align-items: flex-end;
  }

  .cases-slider__data li p {
    top: 0;
    width: auto;
  }

  .cases-slider__body {
    padding: 0;
  }

  .cases-slider__price {
    border-top: 0.2rem dashed #523939;
    font-size: 1.8rem;
    margin-top: 1.2rem;
    position: relative;
    right: 0.5rem;
  }

  .cases-slider__price strong {
    font-size: 5.1rem;
    letter-spacing: 0;
    margin-left: 0;
    position: relative;
    top: 0.8rem;
  }

  .cases-slider__price .fz-md {
    font-size: 2.4rem;
  }

  .cases-slider__table-wrap {
    margin-top: 5.5rem;
  }

  .cases-slider__table {
    font-size: 1.8rem;
  }

  .cases-slider__table th,
  .cases-slider__table td {
    height: 5.1rem;
  }

  .cases-slider__table td {
    padding-left: 2.5rem;
    text-align: left;
  }

  .cases-slider__table th:first-of-type {
    width: 11.7rem;
  }

  .cases-slider__text {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 2rem;
  }

  .cases-slider__nav {
    gap: 7.4rem;
    margin-top: 3rem;
  }

  .cases-slider__prev,
  .cases-slider__next {
    height: 6.5rem !important;
    margin-top: 0 !important;
    width: 6.5rem !important;
  }

  .cases-slider__pagination {
    gap: 2.3rem;
  }

  .cases-slider__pagination .swiper-pagination-bullet {
    height: 0.9rem;
    width: 0.9rem;
  }

  .faq {
    padding: 6rem 0 7rem;
  }

  .faq__lead-text {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-top: 4.5rem;
  }

  .faq__details {
    margin-top: 4rem;
  }

  .faq__items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem 2.4rem;
    justify-content: center;
  }

  .faq__item {
    border-radius: 1.9rem;
    padding: 3rem 2.4rem;
    width: calc(50% - 1.2rem);
  }

  .faq__ttl {
    font-size: 1.7rem;
    height: 6.9rem;
    padding: 1rem 1.5rem 1rem 3.4rem;
  }

  .faq__q {
    font-size: 2rem;
    height: 3rem;
    left: -0.6rem;
    top: -0.9rem;
    width: 3rem;
  }

  .faq__desc {
    font-size: 1.6rem;
    gap: 1rem;
    line-height: 1.8;
    padding-left: 0;
  }

  .faq__a {
    font-size: 2.4rem;
  }

  .flow {
    padding: 6rem 0 6.5rem;
  }

  .flow__lead-ttl {
    font-size: 4rem;
    margin-top: 0;
  }

  .flow__details {
    margin-top: 5rem;
    padding: 0;
  }

  .flow__items {
    display: flex !important;
  }

  .flow__items {
    flex-wrap: wrap;
    gap: 4rem 2.3rem;
    justify-content: center;
  }

  .flow-slider .swiper-slide {
    max-width: 26.5rem;
    width: 33.3333%;
  }

  .flow-slider__body {
    margin-top: -1.5rem;
    padding: 0;
  }

  .flow__slider-step {
    font-size: 1.6rem;
    gap: 0.7rem;
    height: 2.7rem;
    letter-spacing: 0.06em;
    max-width: 9.6rem;
    padding: 0 0 0 1.7rem;
  }

  .flow__slider-num {
    font-size: 1.8rem;
    height: 2.6rem;
    width: 2.6rem;
  }

  .flow-slider__ttl {
    font-size: 2.2rem;
    letter-spacing: 0.09em;
    margin-top: 2rem;
  }

  .flow-slider__text {
    font-size: 1.6rem;
    line-height: 1.625;
    margin-top: 1.4rem;
  }

  .flow-slider__scrollbar {
    display: none;
  }

  .fv {
    background: url(./../images/pc/fv_bg.webp) no-repeat top/cover;
    height: 80rem;
    padding-bottom: 5rem;
  }

  .fv__inner {
    margin: 0 auto;
    max-width: 105rem;
    padding: 0 1rem;
    position: relative;
  }

  .fv__main {
    position: relative;
    top: 3rem;
  }

  .greeting {
    padding: 7rem 0;
  }

  .greeting__sec-ttl {
    padding: 0.6rem 2.7rem;
  }

  .greeting__body {
    display: flex;
    gap: 2.8rem;
    margin-top: 9rem;
  }

  .greeting__img {
    margin: 0;
    max-width: 30.9rem;
    width: 100%;
  }

  .greeting__text {
    font-size: 1.8rem;
    line-height: 2;
    margin-top: 0;
  }

  .greeting__text .bold {
    font-size: 2.5rem;
  }

  .greeting__name {
    max-width: 14.4rem;
  }

  .option {
    background: linear-gradient(180deg, #FFF6EC 49%, rgba(255, 255, 255, 0) 72%);

  }

  .option__sec-ttl {
    padding: 0.6rem 2.9rem;
  }

  .option__lead-text {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-top: 4.5rem;
  }

  .option__textarea {
    padding: 4rem 0 5rem;
  }

  .option__textarea-text .bold {
    font-size: 1.8rem;
  }

  .plan__heading {
    margin-top: 2rem;
  }

  .plan__text {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }

  .plan__text .bold {
    font-weight: 400;
  }

  .plan__details {
    background: none;
    margin-top: 6rem;
    padding-bottom: 7.3rem;
    position: relative;
  }

  .plan__details::before {
    display: block;
  }

  .plan__details-inner {
    background: #fff;
  }

  .plan__details-ttl {
    font-size: 2.7rem;
    padding: 2rem;
  }

  .plan__details-ttl small {
    font-size: 2.4rem;
  }

  .plan__note {
    font-size: 1.4rem;
    margin-top: 2rem;
  }

  .plan__bot {
    padding: 0 3.5rem 4rem;
  }

  .pro {
    padding: 6rem 0;
  }

  .pro__sec-ttl {
    font-size: 2.8rem;
    gap: 6rem;
    line-height: 1.678;
  }

  .pro__list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 2rem auto auto auto;
  }

  .pro__list-item {
    width: calc(25.333% - 14px);
    text-align: center;
  }

  .pro__list-img {
    margin-bottom: 10px;
  }

  .pro__list-img img {
    width: 100%;
    height: auto;
    border-radius: 50%;
  }

  .pro__name {
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    margin-top: 1rem;
  }

  .reason {
    background: url(./../images/pc/reason_bg.webp) no-repeat center/cover;
    background-attachment: fixed;
    padding: 5rem 0 4.3rem;
  }

  .reason__inner {
    padding: 0 2.4rem;
  }

  .reason__sec-ttl {
    padding: 0.6rem 1.7rem;
  }

  .reason__flex {
    flex-direction: row;
    gap: 7rem;
  }

  .reason__flex-item {
    align-items: center;
    flex-direction: column;
  }

  .reason__img {
    aspect-ratio: 258/248;
    border-radius: 50%;
    max-width: 25.8rem;
  }

  .reason__details {
    padding-top: 0;
  }


  .reason__ttl {
    font-size: 2.6rem;
    text-align: center;
  }

  .reason__text {
    font-size: 1.6rem;
    line-height: 1.9;
    margin-top: 1.5rem;
  }

  .service-bot {
    background: #fdd;
  }

  .service-bot__img {
    border-radius: 2.9rem;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
  }

  .service-bot__textarea {
    padding-top: 3rem;
  }

  .service-bot__text {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }

  .service-bot__text span {
    font-size: 2.1rem;
  }

  .service-bot__text .u-color {
    font-size: 2.1rem;
  }

  .service-bot__lead-wrap {
    padding: 3rem 0 4rem;
  }

  .service-bot__lead {
    font-size: 4rem;
    letter-spacing: 0.02em;
    line-height: 1.37;
  }

  .service-bot__flex {
    gap: 4.4rem;
    margin: 0 auto;
    max-width: 84.2rem;
    padding: 5rem 2.4rem 2rem;
  }

  .service-bot__flex-textarea {
    display: block;
    flex: 1;
    max-width: 55.6rem;
    padding-left: 6.7rem;
    position: relative;
  }

  .service-bot__flex-textarea::before {
    display: block;
  }

  .service-bot__flex-text {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.89;
    max-width: 43.6rem;
    position: relative;
    top: -1rem;
  }

  .service-bot__flex-img {
    max-width: 24rem;
  }

  .service {
    padding-bottom: 0;
  }

  .service__lead-ttl {
    font-size: 4rem;
    letter-spacing: 0;
    margin-top: 0;
    padding: 2.6rem 0 2rem;
  }

  .service__details {
    padding: 3rem 2.2rem 0;
  }

  .service__items {
    display: grid !important;
  }

  .service__items {
    grid-gap: 1.4rem;
    gap: 1.4rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .service-slider {
    -webkit-clip-path: none;
    clip-path: none;
  }

  .service-slider .swiper-slide {
    width: auto;
  }

  .service-slider__img {
    aspect-ratio: 254/180;
    border-radius: 1.4rem 1.4rem 0 0;
    min-height: 18rem;
    min-width: auto;
  }

  .service-slider__body {
    border-radius: 0 0 1.4rem 1.4rem;
    padding: 1.4rem 1.5rem 2rem;
  }

  .service-slider__ttl {
    align-items: center;
    display: flex;
    font-size: 2rem;
    height: 2.8em;
    justify-content: center;
    line-height: 1.35;
  }

  .service-slider__text {
    font-size: 1.6rem;
    line-height: 1.56;
    margin-top: 1.2rem;
  }

}

@media screen and (min-width: 1025px) {

  html {
    font-size: 10px;
    font-size: min(10px, 0.7353vw);
  }

  a[href^="tel:"] {
    pointer-events: none;
  }

  .float {
    display: block;
  }
  
  .float__menu {
    display: flex;
  }

}

@media screen and (min-width: 1440px) {

  .cases-slider .swiper-slide {
    max-width: 85.3rem;
  }

  .cases-slider__slide-header {
    align-items: center;
  }

  .cases-slider__img {
    max-width: 47rem;
  }

  .cases-slider__slide-header dl {
    top: 1rem;
  }

  .float {
    right: 3.7rem;
  }

}






/*# sourceMappingURL=style.css.map */