/* 全体 */
:root {
  --serif: "Noto Serif", serif;
  --sans-serif: "Noto Sans JP", sans-serif;
  --roboto: "Roboto", sans-serif;
  --beige: #b1872c;
}
* {
  box-sizing: border-box;
  appearance: none;
  padding: 0;
  margin: 0;
}
html,
body {
  margin: 0;
  padding: 0;
  color: #231814;
  font-family: var(--serif);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 200%;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
.no_wbr {
  word-break: normal;
  overflow-wrap: normal;
}
.section_inner {
  max-width: 1024px;
  margin: auto;
  padding: 96px 0;
}

@media (max-width: 799px) {
  .section_inner {
    padding: 72px 24px;
  }
  .risk_cell1 {
    margin-right: 0;
  }
}
.section_title {
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  font-size: clamp(40px, 5.21vw + 8px, 56px);
  margin-bottom: 64px;
}
.section_lead {
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 200%;
  margin-bottom: 64px;
  text-align: center;
}
/*ふわっと出現*/
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left {
  transform: translateX(-50px);
}

.fade-right {
  transform: translateX(50px);
}

.show {
  opacity: 1;
  transform: translate(0, 0);
}

/*　header　*/
.header_menu {
  display: flex;
  position: fixed;
  top: 0;
  z-index: 9;
  justify-content: space-between;
  width: 100%;
  flex: 1 1 auto;
  gap: 0;
  transition: background 0.3s ease;
  z-index: 1000;
  height: 118px;
  background: transparent;
}
.header_menu.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@media (max-width: 799px) {
  .header_menu {
    height: 80px;
    background: transparent;
  }
}

.header_menu h1 {
  text-align: left;
  font-size: clamp(24px, 2vw + 7px, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.44px;
  flex: 1;
  padding: 16px;
  display: grid;
  place-items: center start;
}
@media (max-width: 799px) {
  .header_menu h1 {
    place-content: center;
  }
}
a.btn_phone {
  background: #4E4E4E;
  flex: 0 0 326px;
  color: #fff;
  font-family: var(--sans-serif);
  font-size: 14px;
  letter-spacing: 0.23px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 2px;
  justify-content: center;
}
a.btn_phone > *:nth-child(1) {
    padding-bottom: 13px;
    font-weight: 300;
    font-size: 17px;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
}
a.btn_phone > *:nth-child(2) {
    font-family: Arial;
    font-size: 32px;
    font-style: normal;
    font-weight: 100;
    line-height: 1;
    letter-spacing: 0.01em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding-bottom: 10px;
}

a.btn_phone > *:nth-child(2)::before {
    content: "";
    display: block;
    width: 17px;
    height: 26px;
    background-image: url("../img/icon_smartphone-fff.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 1px;
}
a.btn_phone > *:nth-child(3) {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
}
@media (max-width: 799px) {
  a.btn_phone {
    display: none;
  }
}
a.btn_web {
  font-family: var(--sans-serif);
  background: #b09767;
  flex: 0 0 260px;
  color: white;
  font-size: 14px;
  letter-spacing: 0.23px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 12px;
  justify-content: center;
  gap: 8px;
}
a.btn_web > *:nth-child(1) {
  font-size: 14px;
}
a.btn_web > *:nth-child(2) {
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.23px;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  position: relative;
}
a.btn_web > *:nth-child(2)::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("../img/icon_web.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
a.btn_web > *:nth-child(2)::after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url("../img/icon_subtract.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 799px) {
  a.btn_web {
    display: none;
  }
}
a.btn_menu {
  background: #4e4e4e;
  flex: 0 0 140px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
a.btn_menu::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  background-image: url("../img/icon_menu.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 799px) {
  a.btn_menu {
    display: none;
  }
}
/* mv */
.mv {
  width: 100%;
  position: relative;
}
.mv_bg {
  position: relative;
  height: auto;
  width: 100%;
}
.mv_bg img {
  position: relative;
  aspect-ratio: 1920 / 1152;
  height: fit-content;
  width: 100%;
  left: 0;
  top: 0;
  display: block;
  z-index: 1;
}
@media (max-width: 799px) {
  .mv_bg img {
    position: relative;
    aspect-ratio: 585 / 816;
    height: fit-content;
    width: 100%;
    left: 0;
    top: 0;
    display: block;
    z-index: 1;
  }
}
.mv_frame {
  padding: 32px 64px;
  position: absolute;
  right: 0;
  left: 0;
  height: fit-content;
  width: 55%;
  display: grid;
  place-content: center;
  z-index: 3;
  top: auto;
  bottom: 145px;
  margin: auto;
}
@media (max-width: 799px) {
  .mv_frame {
    padding: 0;
    position: absolute;
    right: 0;
    left: 0;
    height: fit-content;
    width: 100%;
    display: grid;
    place-content: center;
    z-index: 3;
    top: auto;
    bottom: 40px;
    margin: auto;
  }
}

.mv_frame .mv_line {
    background: rgba(255, 255, 255, 0.8);
    padding: 1px 2vw 13px;
    margin-bottom: 18px;
    white-space: nowrap;
    width: 694px;
    text-align: center;
}
.mv_line.mv_line-sub {
    width: 408px;
    margin: auto;
    text-align: center;
    padding: 18px 1vw 12px;
}
@media (max-width: 799px) {
  .mv_frame .mv_line {
    padding: 16px;
    margin-bottom: 18px;
    text-align: center;
    width: 100%;
  }
  .mv_line.mv_line-sub {
    width: 70%;
  }
}
.mv_frame .mv_line .style1 {
  font-size: 47px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.mv_frame .mv_line .style2 {
  color: #b1872c;
  font-size: 79px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.mv_frame .mv_line .style3 {
  color: #b0872c;
  font-size: 57px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}

.mv_frame .mv_line .style4 {
  color: #b0872c;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  vertical-align: sub;
}
.mv_frame .mv_line .style5 {
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    font-feature-settings: "palt";
    vertical-align: -0.1em;
}

@media (max-width: 799px) {
  .mv_frame .mv_line .style1 {
    font-size: 24px;
  }
  .mv_frame .mv_line .style2 {
    font-size: 42px;
  }

  .mv_frame .mv_line .style3 {
    font-size: 29px;
  }
  .mv_frame .mv_line .style4 {
    font-size: 25px;
  }
  .mv_frame .mv_line .style5 {
    font-size: 18px;
  }
}
/* 見出し汎用　*/
.section_title_alphabet {
  color: #bbb;
  font-size: clamp(36px, 4.69vw + 7px, 64px);
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 4px;
  text-align: center;
}
.section_title_alphabet::first-letter {
  color: #b2995f;
}

.section_title_bar {
  border: 0;
  border-bottom: 1px solid #444;
  display: grid;
  width: 80px;
  height: 1px;
  margin: 8px auto 88px;
  appearance: none;
}
.beige {
  color: #b1872c;
}
.beige_bg {
  background-color: #b2995f;
}
.white {
  color: white;
}
.white_bg {
  background-color: rgba(255, 255, 255, 0.8);
}
.underbar {
  border-bottom: 3px solid #f4db10;
}
.font_14px {
  font-size: clamp(13px, 1.62vw + 7px, 14px);
  line-height: 130%;
  font-weight: 300;
}
.font_16px {
  font-size: clamp(15px, 1.87vw + 7px, 16px);
  line-height: 130%;
  font-weight: 300;
}

.font_22px {
  font-size: clamp(16px, 2vw + 7px, 22px);
  line-height: 130%;
  font-weight: 300;
}

.font_24px {
  font-size: clamp(18px, 2.25vw + 7px, 24px);
  line-height: 130%;
  font-weight: 300;
}

.font_32px {
  font-size: clamp(22px, 2.75vw + 7px, 32px);
  line-height: 130%;
  font-weight: 300;
}

.font_36px {
  font-size: clamp(24px, 3vw + 7px, 36px);
  line-height: 130%;
  font-weight: 300;
}

.font_40px {
  font-size: clamp(30px, 3.75vw + 7px, 40px);
  line-height: 130%;
  font-weight: 300;
}

.font_48px {
  font-size: clamp(32px, 4vw + 7px, 48px);
  line-height: 130%;
  font-weight: 300;
}

.font_52px {
  font-size: clamp(34px, 4.25vw + 7px, 52px);
  line-height: 130%;
  font-style: normal;
  font-weight: 300;
}

.font_64px {
  font-size: clamp(36px, 4.5vw + 7px, 64px);
  line-height: 130%;
  font-style: normal;
  font-weight: 300;
}

.font_72px {
  font-size: clamp(38px, 4.75vw + 7px, 72px);
  line-height: 130%;
  font-weight: 300;
}

.font_82px {
  font-size: clamp(40px, 5vw + 7px, 82px);
  line-height: 130%;
  font-style: normal;
  font-weight: 300;
}

.font_92px {
  font-size: clamp(44px, 5.5vw + 7px, 92px);
  line-height: 130%;
  font-style: normal;
  font-weight: 300;
}

/* info */
.info {
  background: #f8f6f4;
  position: relative;
  padding-top: clamp(24px, 3.12vw + 7px, 80px);
}

.info h3 {
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  font-size: 0;
  vertical-align: sub;
}
.info h3 span {
  line-height: 160%;
}
.info ul {
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  font-size: 0;
  vertical-align: sub;
  display: flex;
  flex-direction: column;
}
.info li span {
  line-height: 160%;
}
.info_clm {
  display: flex;
  gap: 64px;
  position: relative;
  min-height: 700px;
  overflow: hidden;
}
.info_clm > *:last-child {
  padding-bottom: 64px;
}
@media (max-width: 799px) {
  .info_clm {
    margin-top: 32px;
  }
}

@media (max-width: 799px) {
  .info_clm {
    flex-direction: column;
  }
  .info_clm img {
    margin-top: 32px;
  }
  .info .section_title_bar {
    display: none;
  }
}
.info_image {
    flex: 1 1 calc(60% - 32px);
    /* transform: skewX(-10deg); */
    clip-path: polygon(0% 0, 100% 0, 88% 100%, 0% 100%);
    overflow: hidden;
    background-image: url("../img/info_image01.webp");
    background-position: left;
    background-size: cover;
    height: 690px;
    position: absolute;
    left: -40px;
    right: 50vw;
    top: 0;
    z-index: 3;
}
@media (max-width: 799px) {
  .info_image {
    flex: 1 1 calc(60% - 32px);
    clip-path: none;
    overflow: hidden;
    background-image: url("../img/info_image01.webp");
    background-position: left;
    background-size: cover;
    height: 280px;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 3;
  }
}
.info_content {
  font-size: 0;
  flex: 1 1 calc(80% - 32px);
  padding-left: 5vw;
  position: relative;
  margin-right: -40px;
  margin-left: 36vw;
  z-index: 4;
  margin-top: 48px;
  text-align: left;
  z-index: 10;
}
@media (max-width: 799px) {
  .info_content {
    left: 0;
    margin-left: 0;
  }
}
.info_content::before {
  content: "";
  background: rgba(255, 255, 255, 0.7);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  position: absolute;
  right: 0;
  left: 0;
  z-index: 4;
  height: 100%;
  z-index: -1;
}

.info_content h3 {
  margin-top: 24px;
}
.info_content_line1 {
  padding-left: 10vw;
  height: 64px;
  width: 80vw;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}

.info_content_line2 {
  padding-left: 9vw;
  height: 64px;
  width: 80vw;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}
.info_content_line3 {
  padding-left: 9vw;
  margin-bottom: 32px;
  width: 76vw;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}
.info_content_line4 {
  padding-left: 6.5vw;
  margin-bottom: 16px;
  width: 76vw;
}
.info_content_line5 {
  padding-left: 5vw;
  margin-bottom: 16px;
  width: 73vw;
}
.info_content_line6 {
  padding-left: 3.5vw;
  margin-bottom: 16px;
  width: 75vw;
}
.info_content_line7 {
    padding-left: 2vw;
    margin-bottom: 28px;
    width: 75vw;
}
@media (max-width: 799px) {
  .info_content_line1 {
    padding-left: 15vw;
    height: 64px;
    width: 78vw;
  }

  .info_content_line2 {
    padding-left: 13vw;
    height: 64px;
    width: 78vw;
  }
  .info_content_line3 {
    padding-left: 11vw;
    margin-bottom: 32px;
    width: 85vw;
  }
  .info_content_line4 {
    padding-left: 9vw;
    margin-bottom: 16px;
    width: 90vw;
  }
  .info_content_line5 {
    padding-left: 7vw;
    margin-bottom: 16px;
    width: 90vw;
  }
  .info_content_line6 {
    padding-left: 5vw;
    margin-bottom: 16px;
    width: 90vw;
  }
  .info_content_line7 {
    padding-left: 3vw;
    margin-bottom: 40px;
    width: 97vw;
    font-feature-settings: "palt";
  }
}
.info_checkicon::before {
  background-image: url("../img/icon_check_simple.webp");
  background-repeat: no-repeat;
  background-size: con;
  width: 32px;
  height: 32px;
  background-size: contain;
  content: "";
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
}
@media (max-width: 799px) {
  .info_checkicon::before {
    background-image: url("../img/icon_check_simple.webp");
    background-repeat: no-repeat;
    background-size: con;
    width: 20px;
    height: 20px;
    background-size: contain;
    content: "";
    display: inline-block;
    margin-right: 12px;
    vertical-align: middle;
  }
}
.info_font_24px {
  font-size: clamp(13px, 1.62vw + 7px, 24px);
  line-height: 130%;
  font-weight: 300;
}

.info_font_33px {
  font-size: clamp(18px, 2.25vw + 7px, 33px);
  line-height: 130%;
  font-weight: 300;
}

.info_font_36px {
  font-size: clamp(24px, 3vw + 7px, 36px);
  line-height: 130%;
  font-weight: 300;
}

.info_font_40px {
  font-size: clamp(22px, 2.75vw + 7px, 40px);
  line-height: 130%;
  font-weight: 300;
}

.info_font_48px {
  font-size: clamp(32px, 4vw + 7px, 48px);
  line-height: 130%;
  font-weight: 300;
}
.info_buttons {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    width: 544px;
    margin: auto;
    margin-left: 1.8vw;
    margin-bottom: 105px;
}
@media (max-width: 1024px) {
  .info_buttons_information {
    flex-direction: column;
  }
}
.info_buttons-footer {
    margin-top: 40px;
}
.info_buttons > * {
  min-width: 266px;
}
@media (max-width: 799px) {
  .info_buttons {
    display: none;
  }
  .info_font_48px {
    font-size: clamp(29px, 4vw + 7px, 48px);
  }
  .info_font_33px {
    font-size: clamp(16px, 2.25vw + 7px, 33px);
    font-feature-settings: "palt";
  }
}
.info_button_phone {
  background: white;

  color: #868686;
  font-size: 23px;
  letter-spacing: 0.23px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  height: 96px;
  border: 1px solid #d9d9d9;
}
.info_button_phone > *:nth-child(1) {
  color: #231814;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  margin-bottom: 6px;
  display: flex;
  flex-direction: row;
  gap: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 16px;
}
.info_button_phone > *:nth-child(1)::after {
  content: "";

  border-bottom: 1px solid #bebebe;
  height: 1px;
  display: grid;
  place-content: center;
  width: 100px;
}
.info_button_phone > *:nth-child(2) {
    color: #868686;
    font-family: var(--roboto);
    font-size: 36px;
    font-style: normal;
    line-height: 1;
    font-weight: 300;
    line-height: 1;
    max-width: 320px;
}
.info_button_phone > *:nth-child(2)::before {
  content: "";
  flex: 0 0 40px;
  background-image: url("../img/icon_smartphone.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 40px;
  display: inline-block;
  margin-top: 3px;
  margin-right: 5px;
  vertical-align: middle;
}
.info_button_web {
  background: #b09767;
  color: white;
  display: flex;
  flex-direction: row;
  text-align: center;

  justify-content: center;
  align-items: center;
  height: 96px;
  gap: 24px;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.info_button_web span {
  display: flex;
  align-items: center;
}
.info_button_web > *:nth-child(1)::before {
  content: "";
  flex: 0 0 40px;
  background-image: url("../img/icon_web.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.info_buttons_sp {
  display: none;
}
.info_buttons_sp > * {
  flex: 1 1 300px;
}
@media (max-width: 799px) {
  .info_buttons_sp {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin-inline: auto;
  }
}
.info_button_phone_sp {
  background: white;

  color: #868686;
  font-size: 23px;
  letter-spacing: 0.23px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  height: 70px;
  border: 1px solid #d9d9d9;
}
.info_button_phone_sp > *:nth-child(1) {
  color: #231814;

  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  display: flex;
  flex-direction: row;
  gap: 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.info_button_phone_sp > *:nth-child(1) {
  color: #868686;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%;
  max-width: 320px;
}
.info_button_phone_sp > *:nth-child(1)::before {
  content: "";
  flex: 0 0 40px;
  background-image: url("../img/icon_smartphone.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 40px;
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.info_button_web_sp {
  background: #b09767;
  color: white;
  display: flex;
  flex-direction: row;
  text-align: center;

  justify-content: center;
  align-items: center;
  height: 70px;
  gap: 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.info_button_web_sp > *:nth-child(1)::before {
  content: "";
  flex: 0 0 40px;
  background-image: url("../img/icon_web.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
/*concern*/
.concern {
  background-image: url("../img/concern_bg.webp");
  background-position: center;
  background-size: cover;
}
@media (max-width: 799px) {
  .concern .section_inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.concern .section_title {
  font-size: 0;
  line-height: 160%;
}
.concern_list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 799px) {
  .concern_list {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
}
.concern_list_item {
  flex: 0 0 calc((100% - 48px * 2) / 3);
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  height: fit-content;
  text-align: center;
  background-color: white;
}

@media (max-width: 799px) {
  .concern_list_item {
    flex: 1 1 100%;
    flex-direction: row;
    gap: 24px;
  }
}

.concern_list_item img {
  border-radius: 0;
}
@media (max-width: 799px) {
  .concern_list_item img {
    width: 200px;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }
  .concern_list_item p {
    text-align: left;
  }
}

.concern_bottomtext {
  padding: 24px;
  max-width: 860px;
  margin: auto;
  margin-top: 64px;
  text-align: center;
  background: #b4874d;
  font-weight: 600;
  color: white;
  position: relative;
}
@media (max-width: 799px) {
  .concern_bottomtext {
    text-align: left;
    word-break: normal;
    overflow-wrap: normal;
  }
}
.concern_bottomtext::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url("../img/dot.webp");
  opacity: 0.4;
}
.solution {
  background-image: url("../img/solution_bg.webp");
  background-position: left center;
  background-size: cover;
}
@media (max-width: 799px) {
  .solution {
    background-image: none;
  }
}

.solution_font_32px {
  font-size: clamp(22px, 2.75vw + 7px, 32px);
  line-height: 130%;
  font-weight: 300;
}
.solution_font_36px {
  font-size: clamp(24px, 3vw + 7px, 36px);
  line-height: 130%;
  font-weight: 300;
}
.solution_font_64px {
  font-size: clamp(36px, 4.5vw + 7px, 64px);
  line-height: 130%;
  font-style: normal;
  font-weight: 300;
}

.solution .section_inner {
  padding-top: 0;
  max-width: 1280px;
}
@media (max-width: 1024px) {
  .solution .section_inner {
    padding: 0;
  }
}
.solution_title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  flex-direction: column;
  font-size: 0;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
  margin: auto;
  margin-top: 0;
}
@media (max-width: 1024px) {
  .solution_title {
      background-image: url("../img/solution_bg_sp.webp");
      background-size: cover;
      background-position: left top;
      height: 500px;
      width: 100%;
      padding-right: 28px;
      gap: 12px;
  }
}
.solution_title > * {
  padding: 32px 12px;
}
.solution_title > *.beige_bg {
    padding: 32px 8px;
}
.solution_clm {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

@media (max-width: 1024px) {
  .solution_clm {
    margin: 0 auto;
    display: grid;
    place-content: center;
    gap: 0;
  }
  .solution_title > * {
      padding: 16px 8px 20px 7px;
  }
  .solution_title > *.beige_bg {
      padding: 16px 5px 32px 2px;
  }
}
.solution_text {
    margin: 0;
    width: 34%;
    margin-right: 3%;
    word-break: normal;
    overflow-wrap: normal;
}
@media (max-width: 1024px) {
  .solution_text {
      background-color: #f5f3ed;
      padding: 24px;
      width: 100%;
      margin: 0;
  }
}
.solution_empty {
    width: 28%;
}
.solution_image {
    width: 26%;
}
.solution_white-opt {
    max-width: 676px;
    width: calc(100% - 48px);
    padding: 29px 0 32px;
    color: #333;
    font-size: 25px;
    background: rgba(255,255,255,0.7);
    margin: 24px auto 0;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 1024px) {
  .solution_image {
    display: none;
  }
  .solution_white-opt {
      padding: 24px;
      margin: 0 auto;
      font-size: 22px;
  }
}
.solution_image img {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  width: 100%;
  max-width: 337px;
  object-fit: cover;
  overflow: hidden;
}
/* price */
.price {
  background-image: url("../img/slash.webp");
  background-position: center;
  background-repeat: repeat;
}
.price .section_inner {
  max-width: 1680px;
}
.price_subtitle {
  color: #444;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.96px;
}
.price_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: clamp(16px, 2.08vw + 5px, 36px);
  width: 100%;
}
@media (max-width: 799px) {
  .price_list {
    flex-direction: column;
  }
}
.price_list > * {
  flex: 0 0 calc((100% - 72px) / 3);
  text-align: center;
  border: 1px solid #b1b1b1;
  background: #fff;
  padding: clamp(8px, 1.04vw + 7px, 36px);
}
@media (max-width: 799px) {
  .price_list > * {
    flex: 1;
    padding: 24px;
  }
}
.price_list figure {
  background-color: #dfd6c0;
  display: grid;
  place-content: center;
  aspect-ratio: 1 / 1;
  max-width: 120px;
  margin: 0 auto 24px auto;
  border-radius: 999px;
}
.price_list figure img {
  width: 70%;
  margin: auto;
}
.price_list h3 {
  color: #3e3e3e;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%; /* 40px */
  letter-spacing: 1.399px;
}
.price_list p {
  color: #3e3e3e;
  text-align: center;

  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 200%;
  letter-spacing: 1.399px;
}
/* risk */
.risk {
  overflow: hidden;
  position: relative;
}
.risk::before {
  content: "";
  background-image: url("../img/risk_bg.webp");
  background-position: left;
  background-size: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 799px) {
  .risk::before {
    content: "";
    display: none;
  }
}
.risk .section_inner {
  position: relative;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr 1fr;
  grid-template-rows: auto auto;
}

.risk_cell1 {
  grid-column: 1;
  grid-row: 1 / span 2; /* 2行にまたがる */
}

.risk_cell2 {
  grid-column: 2;
  grid-row: 1; /* 1行目 */
}

.risk_cell3 {
  grid-column: 2;
  grid-row: 2; /* 2行目 */
}

.risk_cell4 {
  grid-column: 3;
  grid-row: 1 / span 2; /* 2行にまたがる */
}
@media (max-width: 799px) {
  .risk .section_inner {
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 0px;
  }
  .risk_cell1 {
    grid-row: 2;
    width: 100%;
    grid-column: 1 / -1; /* グリッドの全列にまたがる */
    position: relative;
    display: flex;
    justify-content: flex-start; /* 横方向を左寄せ */
    align-items: flex-start;
  }
  .risk_cell1::before {
    content: "";
    background-image: url("../img/risk_bg.webp");
    background-position: right;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 500px;
    z-index: -1; /* 背景として後ろに */
  }
  .risk_cell2 {
    grid-row: 1;
    grid-column: 1; /* 先頭に移動 */
  }
  .risk_cell3 {
    grid-row: 3;
    grid-column: 1;
  }
  .risk_cell4 {
    grid-row: 4;
    grid-column: 1;
  }
}

.risk .section_title {
  color: #231814;
  text-align: center;
  font-size: clamp(40px, 5vw + 7px, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.8px;
  margin-bottom: 32px;
}
@media (max-width: 799px) {
  .risk .section_title {
    margin-top: 64px;
    font-size: clamp(24px, 3vw + 7px, 28px);
  }
}
.risk_font_40px {
  font-size: clamp(24px, 3vw + 7px, 40px);
}
.risk .section_lead {
  margin-bottom: 32px;
  font-size: 16px;
}
@media (max-width: 799px) {
  .risk .section_lead {
    margin: auto;
    font-size: 15px;
    text-align: left;
    word-break: normal;
    overflow-wrap: normal;
    padding: 24px;
  }
}
.risk_catchcopy {
  writing-mode: vertical-rl;
  text-orientation: upright;
  display: flex;
  gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: fit-content;
}
@media (max-width: 1200px) {
  .risk_catchcopy {
    transform-origin: top right;
    gap: 12px;
  }
}
@media (max-width: 799px) {
  .risk_catchcopy {
    transform-origin: top right;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
    left: 0;
    top: 0;
    gap: 10px;
    margin: auto;
    width: 95%;
    z-index: 3;
  }
  .risk::after {
    content: "";
    position: absolute;
    background-image: url("../img/risk_bg.webp");
    background-position: right;
    background-size: cover;
    height: fit-content;
    width: 100vw;
    height: 500px;
    z-index: 0;
  }
}
.risk_catchcopy > * {
  padding: 48px 16px;
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 2vw + 7px, 35px);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  word-break: normal;
  overflow-wrap: normal;
  background-color: rgba(178, 153, 95, 0.7);
}
@media (max-width: 799px) {
  .risk_catchcopy > * {
    text-align: center;
    padding: 40px 8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
  }
}
.risk_catchcopy > *:nth-child(1) {
  margin-top: 0;
}
.risk_catchcopy > *:nth-child(2) {
  margin-top: 78px;
}
.risk_catchcopy > *:nth-child(3) {
  margin-top: 156px;
}
@media (max-width: 1200px) {
  .risk .section_inner > * {
    margin: auto;
    margin-left: 30%;
  }
}
@media (max-width: 799px) {
  .risk .section_inner > * {
    margin: auto;
  }
}
.risk_list {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: minmax(auto, auto);
  gap: 32px;
  margin: auto;
}
@media (max-width: 799px) {
  .risk_list {
    display: flex;
    flex-direction: column;
    padding: 24px;
  }
}
.risk_list > * {
  display: grid;
  place-content: center;
  border: 1px solid #b1b1b1;
  text-align: center;
  background: rgba(255, 255, 255, 0.7);
  padding: 48px;
  color: #231814;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.risk_desc {
  width: 220px;
  display: block;
  position: relative;
  margin: 48px auto 0 auto;
  padding: 40px 0px 0px 40px;
  font-family: var(--sans-serif);
}

.risk_desc::before {
  content: "";
  width: 260px;
  height: 155px;
  display: block;
  position: absolute;
  left: 0;
  top: 20px;
  border-top: 1px solid #281614;
  border-left: 1px solid #281614;
}

.risk_desc::after {
  content: "";
  width: 260px;
  height: 155px;
  display: block;
  position: absolute;
  left: -20px;
  top: 0;
  border-bottom: 1px solid #281614;
  border-right: 1px solid #281614;
}
@media (max-width: 799px) {
  .risk_desc {
    width: 90vw;
    color: #b4874d;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    height: fit-content;
    display: grid;
    place-content: center;
    margin: 0 auto 0 auto;
    padding: 24px;
    position: relative;
    height: 240px;
  }
  .risk_desc::before {
    content: "";
    width: 90vw;
    height: 155px;
    display: block;
    position: absolute;
    left: 0;
    right: -24px;
    top: 0;
    bottom: -24px;
    margin: auto;
    border-top: 1px solid #b4874d;
    border-left: 1px solid #b4874d;
  }

  .risk_desc::after {
    content: "";
    width: 90vw;
    height: 155px;
    display: block;
    position: absolute;
    left: -24px;
    right: 0;
    top: -24px;
    bottom: 0;
    margin: auto;
    border-bottom: 1px solid #b4874d;
    border-right: 1px solid #b4874d;
  }
}
/* number */
.number {
  position: relative;
}
.number::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url("../img/number_bg.webp");
  background-position: left;
  background-size: cover;
  overflow: hidden;
  z-index: -1;
}
@media (max-width: 799px) {
  .number::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url("../img/number_bg.webp");
    background-position: left 0px top 50%;
    background-size: cover;
    overflow: hidden;
    z-index: -1;
  }
}
.number .section_inner {
  display: flex;
}

.number .inner-left {
  margin: auto;
  width: 55%;
}
.number .inner-right {
  margin: auto;
  padding: 120px 0;
  width: 45%;
}
@media (max-width: 1320px) {
  .number .inner-left {
    display: none;
  }
  .number .inner-right {
    margin: auto;
    padding: 260px 0 0 0;
    width: 60%;
  }
}
@media (max-width: 799px) {
  .number {
    padding: 24px;
    position: relative;
    z-index: 3;
  }
  .number::before {
    background-image: url("../img/number_bg.webp");
    background-position: left;
  }
  .number .section_inner {
    padding: 180px 24px 0 0;
    flex-direction: column;
    position: relative;
    bottom: -100px;
    z-index: 5;
  }
  .number .inner-left {
    height: 200px;
    width: 100%;
  }
  .number .inner-right {
    margin: auto;
    padding: 24px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.7);
  }
}
.number .section_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 580px;
  gap: 0;
}
@media (max-width: 799px) {
  .number .section_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 580px;
    margin: auto;
    margin-bottom: 32px;
    gap: 0;
  }
}
.number_title02 {
  display: flex;
}
@media (max-width: 799px) {
  .number_title01 {
    font-size: 19px;
  }
  .number_title02 > *:nth-child(1) {
    font-size: 32px;
  }
  .number_title02 > *:nth-child(2) {
    font-size: 26px;
  }
  .number_title03 {
    font-size: 32px;
  }
}
.number .section_title > * {
  padding: 0;
}

.number ul {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 16px;
  position: relative;
  right: 0;
  z-index: 5;
  font-size: 0;
}
@media (max-width: 799px) {
  .number ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: auto;
    width: 100%;
  }
}

.number ul > * {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.number ul > *:first-child {
  grid-column: span 2;
}
@media (max-width: 799px) {
  .number ul > *:nth-child(2) {
    display: none;
  }
}
.number ul > * > span {
  display: grid;
  place-content: center;
}

.number .column {
  display: flex;
  flex-direction: column;
  line-height: 100%;
}
.number .baseline {
  position: relative;
  margin-bottom: -15px;
}
.number_font_24px {
  font-size: clamp(18px, 2.25vw + 7px, 24px);
  line-height: 130%;
  font-weight: 300;
}
.number_font_32px {
  font-size: clamp(18px, 2.25vw + 7px, 32px);
  line-height: 130%;
  font-weight: 300;
}
.number_font_64px {
  font-size: clamp(36px, 4.5vw + 7px, 64px);
  line-height: 130%;
  font-style: normal;
  font-weight: 300;
}
/* cta */
.cta {
  background-image: url("../img/cta_bg.webp");
  background-position: center top;
  background-size: cover;
  height: fit-content;
  overflow: hidden;
  margin-top: 0;
  padding-block: 104px;
}
@media (max-width: 799px) {
  .cta {
    background-image: none;
    padding: 0 24px;
  }

  .cta::before {
    content: "";
    background-image: url("../img/cta_bg_sp.webp");
    background-position: top;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 88vw;
    z-index: 0;
  }
}
.cta .section_inner {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 0 24px;
  width: fit-content;
}
@media (max-width: 799px) {
  .cta .section_inner {
      position: relative;
      z-index: 3;
      background-color: rgba(255, 255, 255, 0.56);
      width: 100%;
      margin-top: 45vw;
      padding: 0 12px;
  }
}
.cta .section_inner_inner {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 650px;
  margin: auto;
}
@media (max-width: 799px) {
  .cta .section_inner_inner {
      padding: 32px 12px 48px;
      gap: 16px;
  }
}
.cta .section_title {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
.cta .section_title > * {
  line-height: 130%;
  text-align: center;
}
.cta_subtitle {
  color: #c6aab8;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.9px;
  margin-top: 6px;
  margin-bottom: 16px;
}
.cta p {
  font-family: var(--sans-serif);
  color: #444;
}
@media (max-width: 799px) {
  .cta p {
    margin-bottom: 0;
  }
  .cta_subtitle {
      margin-top: 16px;
      margin-bottom: 8px;
  }
}
.cta_phone {
  background-color: #f6f6f6;
  padding: 7px;
  width: 520px;
}
@media (max-width: 799px) {
  .cta_phone {
    width: 100%;
    min-width: 300px;
    margin-top: 24px;
  }
}
.cta_border {
  border: 1px solid #b2995f;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 799px) {
  .cta_border {
    flex-direction: column;
    gap: 0px;
  }
}
.cta_number {
  color: #b2995f;
  font-size: clamp(30px, 3.75vw + 7px, 36px);
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta_number img {
  height: clamp(30px, 3.75vw + 7px, 36px);
  width: auto;
  object-fit: contain;
}
.cta_text_left {
  color: #2d2d2d;
  text-align: left;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  font-family: var(--sans-serif);
}
@media (max-width: 799px) {
  .cta_text_left {
    display: grid;
    place-content: center;
  }
}
.cta_text_right {
  color: #2d2d2d;
  text-align: right;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  font-family: var(--sans-serif);
  display: block;
}
@media (max-width: 799px) {
  .cta_text_right br {
    display: none;
  }
}
.cta_web {
  background-color: #b2995f;
  padding: 7px;
  width: 520px;
  position: relative;
}
@media (max-width: 799px) {
  .cta_web {
    margin-bottom: 32px;
    width: 100%;
    min-width: 300px;
  }
}
.cta_web_border {
  border: 1px solid white;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cta_web img {
  height: 30px;
  width: auto;
  object-fit: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 36px;
  margin: auto;
}
@media (max-width: 799px) {
  .cta_web img {
    height: 20px;
    right: 15px;
  }
}
.cta_web_text01 {
  color: #fff;
  text-align: center;
  font-family: var(--sans-serif);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.cta_web_text02 {
  color: #fff;
  text-align: center;
  font-size: clamp(17px, 2.12vw + 7px, 23px);
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
@media (max-width: 799px) {
  .cta_web_text02 {
    margin-top: 6px;
  }
}
.cta_font_48px {
  font-size: clamp(32px, 4vw + 7px, 48px);
  line-height: 130%;
  font-weight: 300;
}
/* case */
.case {
  background-image: url("../img/case_bg.webp");
  background-size: cover;
  background-position: left center;
  height: fit-content;
  padding-left: 20%;
}
@media (max-width: 799px) {
  .case {
    background-image: none;
    padding-left: 0;
    position: relative;
  }
  .case::before {
    content: "";
    display: block;
    background-image: url("../img/case_bg.webp");
    background-size: cover;
    background-position: left top;
    height: 500px;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .cta_font_48px:first-child {
      margin-bottom: 4px;
  }
}
.case .section_inner {
  width: 100%;
}
@media (max-width: 1000px) {
  .case .section_inner {
    margin-left: auto;
    width: 100%;
    padding: 0;
    padding-top: 500px;
  }
}

.case .section_title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-start;
  align-items: flex-start;
}
.case .section_title > * {
  line-height: 110%;
}

@media (max-width: 799px) {
  .case_content {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 24px;
    position: relative;
    width: 100%;
    margin-top: -120px;
    z-index: 5;
  }
  .case .section_title {
    gap: 8px;
    justify-content: flex-start;
    align-items: flex-start;
    writing-mode: vertical-rl;
    text-orientation: upright;
    position: absolute;
    z-index: 3;
    top: 15px;
    right: 15px;
    left: auto;
    height: 400px;
    width: fit-content;
  }
  .case .section_title .font_64px {
    color: #231814;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: 7.131px;
  }
  .case .section_title .font_92px {
    color: #b4874d;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 8px;
  }
}

.case_list {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--sans-serif);
  gap: 48px;
  margin-top: 32px;
}
@media (max-width: 799px) {
  .case_list {
    flex-direction: column;
    gap: 24px;
    flex-wrap: nowrap;
  }
}
.case_list > * {
  flex: 1 1 calc(45% - 8px);
  min-width: 0;
}
@media (max-width: 799px) {
  .case_list > * {
    flex: 1 1 100%;
  }
}

.case_list img {
  width: 100%;
  display: block;
}
.case_list figure {
  display: flex;
}
.case_list h3 {
  color: #2e2e2e;
  font-size: 30.2px;
  font-style: normal;
  font-weight: 400;
  line-height: 30.16px; /* 99.868% */
  letter-spacing: 2.413px;
  margin-bottom: 12px;
  font-family: var(--serif);
}
.case_list h3 span {
  background-color: #b2995f;
  color: white;
  padding: 12px 20px;
  display: inline-block;
  margin-right: 12px;
}
.case_note {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-top: 32px;
}
@media (max-width: 799px) {
  .case_note {
    position: relative;
  }
}
.case_note > * {
  min-width: 0;
}
.case_note::before {
  content: "※";
}
/* attempt */
.attempt {
  overflow: hidden;
  background-color: #f5f3ed;
}
.attempt .section_inner {
  padding: 0 128px;
  max-width: 1860px;
}
@media (max-width: 799px) {
  .attempt .section_inner {
    padding: 0;
  }
}
.attempt .section_title {
  background-image: url("../img/attempt_bg.webp");
  background-size: cover;
  background-position: center;
  height: fit-content;
  display: grid;
  place-content: center;
  position: relative;
}
@media (max-width: 799px) {
  .attempt .section_title {
    background-image: url("../img/attempt_bg_sp.webp");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100vw;
    height: auto;

    aspect-ratio: 922 / 578;
  }
}
.attempt .section_title_circle {
  padding: 24px;
  color: #231814;
  font-size: 65px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 1.95px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.88);
  aspect-ratio: 1 / 1;
  max-width: 780px;
  height: auto;
  width: 100%;
  display: grid;
  place-content: center;
  margin: auto;
  position: relative;
  margin-top: -48px;
  margin-bottom: 48px;
}
@media (max-width: 1320px) {
  .attempt .section_title_circle {
    transform: scale(0.8);
    transform-origin: top center;
  }
}
@media (max-width: 799px) {
  .attempt .section_title_circle {
    transform: scale(1);
    transform-origin: top center;
    margin: auto;
    position: absolute;
    font-size: 26px;
    width: 320px;
    left: 0;
    right: 0;
    bottom: -72px;
  }
  .attempt .section_title_circle .font_48px {
    font-size: 20px;
  }
}
.attempt_number {
  background: #baac82;
  color: white;
  font-size: 32px;
  font-family: var(--roboto);
  font-weight: 400;
  aspect-ratio: 1 / 1;
  width: 174px;
  height: 174px;
  display: grid;
  place-content: center;
  padding: 12px;
}
@media (max-width: 799px) {
  .attempt_number {
    font-size: 21px;
    width: 82px;
    height: 82px;
    padding: 0;
    aspect-ratio: 1 / 1;
  }
}
.attempt_number > span {
  font-size: 64px;
  font-weight: 500;
  margin-top: 24px;
  text-align: center;
}
@media (max-width: 799px) {
  .attempt_number > span {
    font-size: 32px;
    margin-top: 0;
  }
}
.attempt_alphabet {
  color: #d9d9d9;
  font-family: Arial;
  font-size: clamp(40px, 5vw + 7px, 80px);
  font-style: italic;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 2.17px;
  height: 174px;
  margin-right: 12px;
  margin-left: 12px;
}

@media (max-width: 799px) {
  .attempt .section_title_circle .section_title_alphabet {
    margin-top: -56px;
  }
}
.attempt_list {
  position: relative;
}
.attempt_list li:nth-child(odd) {
  margin-right: 120px;
}
@media (max-width: 799px) {
  .attempt_list li:nth-child(odd) {
    margin-right: 0;
  }
}
.attempt_list li:nth-child(odd) .attempt_number {
  position: absolute;
  left: 56px;
  top: -56px;
}
@media (max-width: 799px) {
  .attempt_list li:nth-child(odd) .attempt_number {
    left: 18px;
    top: -36px;
  }
}
.attempt_list li:nth-child(odd) .attempt_alphabet {
  position: absolute;
  right: 0;
  top: -36px;
}
@media (max-width: 799px) {
  .attempt_list li:nth-child(odd) .attempt_alphabet {
    font-size: 32px;
    height: 60px;
    margin-top: 120px;
  }
}
.attempt_list li:nth-child(even) {
  margin-left: 120px;
}
@media (max-width: 799px) {
  .attempt_list li:nth-child(even) {
    margin-left: 0;
  }
}
.attempt_list li:nth-child(even) .attempt_number {
  position: absolute;
  right: 56px;
  top: -56px;
}
@media (max-width: 799px) {
  .attempt_list li:nth-child(even) .attempt_number {
    right: 18px;
    top: -36px;
  }
}
.attempt_list li:nth-child(even) .attempt_alphabet {
  position: absolute;
  left: 0;
  top: -36px;
}
@media (max-width: 799px) {
  .attempt_list li:nth-child(even) .attempt_alphabet {
    font-size: 32px;
    height: 60px;
    margin-top: 120px;
  }
}
.attempt_list li {
  background: white;
  position: relative;
  margin-top: 112px;
}

.attempt_list h3 {
  color: #333;
  font-size: clamp(36px, 4.5vw + 7px, 62px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 2px;
  margin-top: 64px;
}
@media (max-width: 799px) {
  .attempt_list h3 {
    font-size: 32px;
    margin-top: 0px;
    background: #f5f3ed;
    padding: 16px;
  }
}
.attempt_image {
  margin-top: 96px;
  flex: 1;
  position: relative;
}
.attempt_image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  min-width: 240px;
  position: relative;
  width: clamp(360px, 45.05vw + 7px, 700px);
  top: 0;
}
@media (max-width: 799px) {
  .attempt_list li:nth-child(odd) .attempt_image {
    margin-top: -30px;
    right: 20px;
    min-width: 0;
    flex: 1;
    position: absolute;
    top: -40px;
  }

  .attempt_list li:nth-child(even) .attempt_image {
    margin-top: -30px;
    left: 20px;
    min-width: 0;
    flex: 1;
    position: absolute;
    top: -40px;
  }

  .attempt_list li .attempt_image img {
    position: relative;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    right: 0;
    width: 200px;
  }
}
.attempt_text {
  min-width: 430px;
  flex: 2;
}
@media (max-width: 799px) {
  .attempt_text {
    min-width: 300px;
    flex: 2;
    position: relative;
    left: 0;
    right: 0;
    margin: 0;
  }
  .attempt_list li:nth-child(even) .attempt_text {
    padding-top: 128px;
  }
}
.attempt_subtitle {
  color: #444;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
}
@media (max-width: 799px) {
  .attempt_subtitle {
    padding-top: 12px;
  }
}
.attempt_desc {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  word-break: normal;
  overflow-wrap: normal;
}
@media (max-width: 799px) {
  .attempt_desc {
    padding-top: 12px;
  }
}
.attempt_border {
  border: none;
  height: 2px;
  border-bottom: 1px solid #444;
  display: block;
  margin: 14px auto 28px;
  appearance: none;
}

.attempt_list li .attempt_item_content {
  display: flex;
  position: relative;
  gap: clamp(16px, 1.25vw + 7px, 48px);
}
.attempt_list li:nth-child(odd) .attempt_item_content {
  right: -10%;
}
.attempt_list li:nth-child(odd) .attempt_text {
  margin-top: 128px;
}
@media (max-width: 799px) {
  .attempt_list li:nth-child(odd) .attempt_item_content {
    right: 0;
    left: 0;
    padding: 24px;
  }
}
.attempt_list li:nth-child(even) .attempt_item_content {
  flex-direction: row-reverse;
  left: -10%;
}
@media (max-width: 799px) {
  .attempt_list li:nth-child(even) .attempt_item_content {
    right: 0;
    left: 0;
    padding: 24px;
  }
}

.attempt_content_clm {
  display: flex;
  gap: 24px;
  margin-bottom: 64px;
  align-items: stretch;
  justify-content: space-between;
}
.attempt_content_clm > * {
  min-width: 0;
  flex: 1 1 calc(50% - 24px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
}
.attempt_content_clm h4 {
  color: #464646;
  text-align: center;

  font-style: normal;
  font-weight: 350;
  line-height: 140%;
  letter-spacing: 2.17px;
  flex: 0 0 100px;
  display: grid;
  place-content: center;
  font-family: var(--sans-serif);
  font-size: clamp(16px, 1vw + 7px, 27px);
}

.attempt_content_clm p {
  background: #f5f3ed;
  padding: 32px;
  flex: 1 1 auto;
  word-break: normal;
  overflow-wrap: normal;
  font-family: var(--sans-serif);
  font-size: clamp(13px, 1.62vw + 7px, 16px);
}
@media (max-width: 799px) {
  .attempt_content_clm {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
  }
  .attempt_content_clm > * {
    display: grid;
    grid-template-columns: calc(35% - 8px) calc(65% - 8px);
    grid-template-rows: auto auto;
    gap: 16px;
  }

  .attempt_content_clm figure {
    grid-column: 1;
    grid-row: 1 / span 2;
  }
  .attempt_content_clm figure img {
    width: 110px;
    height: 124px;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .attempt_content_clm h4 {
    text-align: left;
    grid-column: 2;
    grid-row: 1;
    display: block;
    width: 100%;
    font-size: 16px;
  }

  .attempt_content_clm p {
    grid-column: 2;
    grid-row: 2;
    text-align: left;
    padding: 12px;
    font-size: 13px;
  }
}
.attempt_item_content_img img {
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.attempt_content_clm figure {
  flex: 0 0 140px;
}

/* team */
.team {
  overflow: hidden;
  background-image: url("../img/team_bg.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}
.team .section_title {
  text-align: left;
}
.team_image {
  position: relative;
}
.team_image .team_image_circle {
  position: absolute;
  bottom: -360px;
  right: 12%;
  margin: auto;
  max-width: 600px;
  width: 100%;
  z-index: 2;
}
@media (max-width: 799px) {
  .team_image .team_image_circle {
    position: absolute;
    bottom: -100px;
    right: 5%;
    margin: auto;
    max-width: 240px;
    width: 100%;
    z-index: 2;
  }
}
.team_content {
  position: relative;
}
.team_content::before {
  position: static;
  display: block;
  width: 100%;
  aspect-ratio: 1941 / 800;
  z-index: 0;
  content: "";
}
.team_content .section_inner {
  padding-bottom: 0;
  max-width: 1080px;
}

.team_clm {
  display: flex;
  gap: 48px;
}
@media (max-width: 799px) {
  .team_clm {
    gap: 0;
    display: block;
  }
}
.team_list {
  margin-top: 32px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team_list > li {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 32px;
  flex: 0 0 calc(50% - 12px);
}
@media (max-width: 799px) {
  .team_list > li {
      gap: 6px;
      font-size: 15px;
      flex: 0 0 calc(50% - 8px);
  }
}
.team_list > li::before {
  display: block;
  background-position: center;
  background-size: cover;
  content: "";
  background-image: url("../img/team_icon_check.webp");
  width: 32px;
  height: 32px;
  aspect-ratio: 1 / 1;
}
@media (max-width: 799px) {
  .team_list > li::before {
    width: 18px;
    height: 18px;
    aspect-ratio: 1 / 1;
  }
}
.team h3 {
  color: #231814;
  font-size: clamp(28px, 1.75vw + 7px, 52px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 1px;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 799px) {
  .team h3 {
    font-size: 24px;
    text-align: center;
  }
}
.team_footer_list {
  position: relative;
  display: flex;
  gap: 24px;
  margin: auto;
  margin-top: 56px;
}
.team_footer_list > * {
  display: flex;
  gap: 12px;
  background-color: white;
  padding: 12px;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

@media (max-width: 1320px) {
  .team_footer_list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .team_footer_list > * {
    border: 1px solid #ddd;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex: 0 0 calc(50% - 12px);
    text-align: center;
    padding: 8px;
  }
}
.team_footer_visual {
  margin-top: -80px;
}
.team_font_14px {
  font-size: clamp(10px, 1.25vw + 7px, 14px);
  line-height: 130%;
  font-style: normal;
  font-weight: 300;
}
.team_font_22px {
  font-size: clamp(14px, 1.75vw + 7px, 22px);
  line-height: 110%;
  font-weight: 300;
}

.team_font_48px {
  font-size: clamp(32px, 4vw + 7px, 48px);
  line-height: 130%;
  font-weight: 300;
}
.team_font_52px {
  font-size: clamp(34px, 4.25vw + 7px, 52px);
  line-height: 130%;
  font-style: normal;
  font-weight: 300;
}

.team_font_82px {
  font-size: clamp(36px, 4.5vw + 7px, 82px);
  line-height: 130%;
  font-style: normal;
  font-weight: 300;
}
.team_font_92px {
  font-size: clamp(60px, 7.5vw + 7px, 92px);
  line-height: 130%;
  font-style: normal;
  font-weight: 300;
}

/* access */
.access {
  padding-top: 64px;
}
.access_content {
  display: flex;
  gap: 64px;
  margin-top: 64px;
  overflow: hidden;
}
@media (max-width: 799px) {
  .access_content {
    flex-direction: column;
  }
}
.access_left {
  flex: 1;
  padding-left: 24px;
}
@media (max-width: 799px) {
  .access_left {
    padding: 24px;
  }
}
.access_left_margin {
  margin-left: 10vw;
}
@media (max-width: 1100px) {
  .access_left_margin {
    margin-left: 0;
  }
}
.access_right {
  flex: 1;
}
.access_title {
  color: #444;
  font-size: clamp(36px, 4.5vw + 7px, 62px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.access_subtitle {
  color: #373737;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.access_address {
  color: #000;
  font-size: clamp(15px, 1.87vw + 7px, 16px);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 1.5vw;
}
.access_table {
  margin-top: 3vw;
  table-layout: auto;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border-left: 1px solid #444;
}
.access_table td,
.access_table th {
  border-right: 1px solid #444;
  padding: clamp(6px, 0.75vw + 7px, 16px);
  text-align: center;
  font-family: var(--sans-serif);
  font-weight: 300;
  color: #333;
  font-size: clamp(12px, 1.5vw + 7px, 14px);
  font-style: normal;
}
.access_table th:nth-child(1),
.access_table td:nth-child(1) {
  white-space: nowrap;
}
.access_photo img {
  aspect-ratio: 1200 / 700;
  object-fit: cover;
  min-width: 560px;
}
@media (max-width: 799px) {
  .access_photo img {
    min-width: 0;
    width: 100vw;
  }
}

.copyright {
  padding: 24px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media (max-width: 799px) {
  .pc {
    display: none;
  }
}

.risk_cell1 {
  margin-right: 48px;
}
@media (min-width: 800px) {
.risk_list > * {
    padding: 48px 45px;
}
}

@media (max-width: 799px) {
  .floating-bnr {
      position: fixed;
      bottom: 0;
      left: 0;
      display: flex;
      width: 100%;
      z-index: 99;
      transform: translateY(100%);
      transition: .3s;
  }
  .floating-bnr.floating-bnr-show {
      transform: translateY(0);
  }
.floating-bnr a {
    width: 50%;
    font-family: 'Noto Sans JP';
    font-size: 23px;
    border: none;
}
  .floating-bnr-tel {
    background-color: #4E4E4E;
  }
.floating-bnr-tel > *:nth-child(1) {
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Noto Sans JP';
}
.floating-bnr-tel > *:nth-child(1)::before {
    filter: brightness(2);
    margin-right: 0;
    aspect-ratio: 12 / 19;
    height: 1.5em;
    width: auto;
    flex: 0 1 auto;
    line-height: 1;
    background-position: center;
}

body {
      padding-bottom: 70px;
  }
}
