@charset "UTF-8";
/*----------------------------------
    レスポンシブ用クランプ関数
    1440pxのvwで画面幅を縮め、画面幅768pxまでデザインを維持したい時
    768pxでは極端に小さくなるため、ここでは960pxの値を維持させる
-----------------------------------*/
/*----------------------------------
clamp-vw関数
VWでフォントサイズを制限する関数
$min-font: 最小フォントサイズ（px）
$max-font: 最大フォントサイズ（px）
$min-viewport: VW最小値（初期値: 320px）
$max-viewport: VW最大値（初期値: 1024px）
-----------------------------------*/
html {
  overflow-x: hidden;
  font-size: 1.6vw;
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: normal;
  color: #000;
  overflow-x: hidden;
  position: relative;
}
body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -10;
  background: url(../images/bg.webp) no-repeat center center/cover;
}

.fadeUpTrigger.fadeUp {
  -webkit-animation: fadeUpAnime 1s ease-out forwards;
          animation: fadeUpAnime 1s ease-out forwards;
}
@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
  list-style-type: none;
}

summary::-webkit-details-marker {
  display: none;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.footer {
  margin-inline: auto;
  max-width: 1000px;
  background-color: #154a9a;
  padding-block: 5%;
  text-align: center;
}
.footer_copyright {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.fixed {
  position: fixed;
  width: 100%;
  bottom: 0;
  aspect-ratio: 1000/140;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.container {
  margin-inline: auto;
  max-width: 1000px;
  background: #ffffff;
}

.u-hidden-pc {
  display: block;
}

.u-hidden-sp {
  display: none;
}

.after {
  background: url(../images/cost_bg.webp) no-repeat center center/cover;
}
.after_title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #333333;
  font-size: 3.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  -webkit-padding-before: 15.4%;
          padding-block-start: 15.4%;
}
.after_title .fukidasi {
  background-color: #F8F8F8;
  border-radius: 4.0625rem;
  -webkit-box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  position: absolute;
  z-index: 1;
  top: -2.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 2.625rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  color: #333333;
  width: 42.25rem;
  padding-block: 3.3%;
}
.after_title .fukidasi::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5.0625rem solid transparent;
  border-left: 5.0625rem solid transparent;
  border-top: 2.375rem solid #F8F8F8;
  border-bottom: 0;
  bottom: -2.25rem;
  -webkit-filter: drop-shadow(0px 0.5rem 0.375rem rgba(0, 0, 0, 0.1607843137));
          filter: drop-shadow(0px 0.5rem 0.375rem rgba(0, 0, 0, 0.1607843137));
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.after_example {
  width: 94%;
  margin-inline: auto;
  border: #154a9a 2px solid;
  border-radius: 3rem;
  background-color: #F8F8F8;
  -webkit-margin-before: 5.3%;
          margin-block-start: 5.3%;
  -webkit-padding-after: 6%;
          padding-block-end: 6%;
}
.after_example .head {
  background-color: #154a9a;
  font-size: 2.625rem;
  font-weight: 600;
  text-align: center;
  color: #FFFFFF;
  border-radius: 2.5rem 2.5rem 0 0;
  padding-block: 5.6%;
}
.after_example .img-wrap {
  margin-inline: 3%;
  -webkit-margin-before: 3.6%;
          margin-block-start: 3.6%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.after_example .img-wrap .before-img {
  position: relative;
  z-index: 0;
}
.after_example .img-wrap .before-img::after {
  content: "BEFORE";
  position: absolute;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #999999;
  padding: 3.2% 10.4%;
  top: 0;
  left: 0;
}
.after_example .img-wrap .after-img {
  position: relative;
  z-index: 0;
}
.after_example .img-wrap .after-img::after {
  content: "AFTER";
  position: absolute;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #154a9a;
  padding: 3.2% 12.7%;
  top: 0;
  left: 0;
}
.after_example .detail-wrap {
  margin-inline: 3%;
  -webkit-margin-before: 4%;
          margin-block-start: 4%;
  border: #AE845A 1px solid;
  background-color: #F4F3F0;
  padding:0px 20px 20px 20px;
}
.after_example .detail-wrap .number {
  text-align: center;
  font-family: din-2014, noto-sans, sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #333333;
}
.after_example .detail-wrap .number .size {
  font-size: 1.5rem;
  vertical-align: baseline;
  font-weight: 500;
  -webkit-margin-start: 0.625rem;
          margin-inline-start: 0.625rem;
}
.after_example .detail-wrap .price {
  text-align: center;
  -webkit-margin-before: 1.6%;
          margin-block-start: 1.6%;
  font-family: din-2014, noto-sans, sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #333333;
}
.after_example .detail-wrap .price .price-head {
  -webkit-margin-end: 3%;
          margin-inline-end: 3%;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #AE845A;
  border-radius: 0.625rem;
  padding: 1.3% 6.8%;
  display: inline-block;
  vertical-align: bottom;
}
.after_example .detail-wrap .price .size {
  -webkit-margin-start: 0.625rem;
          margin-inline-start: 0.625rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.after_example .detail-wrap .point {
  font-size: 1.5rem;
  line-height: 2;
  color: #333333;
  margin-bottom:20px;
  margin-inline: 0.5%;
  -webkit-margin-before: 3.5%;
          margin-block-start: 3.5%;
}

.company {
  background-color: #154a9a;
  -webkit-padding-after: 3%;
          padding-block-end: 3%;
}
.company_title {
  color: #FFFFFF;
  font-size: 3.25rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding-block: 11% 9%;
}
.company_img {
  aspect-ratio: 1000/507;
  height: auto;
}
/*.company_img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 41%;
     object-position: 41%;
  height: 100%;
}*/
.company_profile {
  margin-inline: 2.5%;
  background-color: #F8F8F8;
  padding: 5% 4%;
  color: #333333;
  font-size: 1.5rem;
  line-height: 2;
}
.company_profile th {
  font-weight: 400;
  width: 20%;
}
.company_map {
  margin-inline: 2.5%;
  border: 1px solid #707070;
}
.company_map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 948/481;
}

/*.compare {
  -webkit-margin-before: 3.4%;
          margin-block-start: 3.4%;
}*/
.compare_title {
	font-family: "Noto Serif JP", serif;
  position: relative;
  z-index: 0;
  text-align: center;
padding: 20px 0;
}
/*.compare_title::before {
  content: "ATTENTION";
  position: absolute;
  font-size: 7.3125rem;
  font-weight: 900;
  color: #FFFFFF;
  opacity: 0.3;
  text-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  top: -4%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}*/
/*.compare_title::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5.5rem solid transparent;
  border-left: 5.5rem solid transparent;
  border-top: 5.3125rem solid #154a9a;
  border-bottom: 0;
  bottom: -4.6875rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}*/
.compare_title .attention {
  position: relative;
  z-index: 0;
  font-size: 3.25rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
}
/*.compare_title .attention::before {
  content: "";
  position: absolute;
  width: 5.6%;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../images/attention.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25%;
}
.compare_title .attention::after {
  content: "";
  position: absolute;
  width: 5.6%;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../images/attention.webp) no-repeat center center/contain;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 70%;
}*/
.compare_title .back {
  color: #154a9a;
  font-size: 6rem;
  font-weight: 900;
font-family: "Noto Serif JP", serif;
}
.compare_title .row {
  font-size: 3.25rem;
  font-weight: 900;
}
.compare_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.compare_item {
  width: 33.3%;
}
.compare_item img {
  aspect-ratio: 333/500;
  -o-object-fit: cover;
     object-fit: cover;
}
.compare_item .detail {
  text-align: center;
  background-color:#39516B;
  color: #FFFFFF;
  font-size: 2.25rem;
  font-weight: 900;
  text-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  padding-block: 6%;
}
.compare_img {
  background: url(../images/compare_img.webp) no-repeat center center/cover;
  padding: 10% 0 30.5% 7%;
}
.compare_img p {
  font-family: "Noto Serif JP", serif;
  font-size:5rem;
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.4470588235);
  line-height: 1.3;
}
.compare_img p .size {
  font-size: 2.625rem;
}

.cost {
  background: url(../images/cost_bg.webp) no-repeat center center/cover;
  -webkit-padding-after: 17%;
          padding-block-end: 17%;
}
.cost_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 75%;
  margin-inline: auto;
  -webkit-padding-before: 40px;
          padding-block-start: 40px;
}
.cost_title h2 {
  font-size: 3.25rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  color: #333333;
  -webkit-padding-before: 9%;
          padding-block-start: 9%;
  -webkit-padding-start: 2%;
          padding-inline-start: 2%;
}
.cost_title h2 .back {
  color: #F8F8F8;
  background-color: #154a9a;
  padding: 2% 4.4%;
  margin-inline: -3.2% 2%;
}
.cost_title .row {
  -webkit-margin-before: 3%;
          margin-block-start: 3%;
  display: block;
}
.cost_title .img {
  width: 33%;
}
.cost_wrap {
  width: 94%;
  margin-inline: auto;
}
.cost_wrap .head {
  background-color: #154a9a;
  border-radius: 3.125rem 3.125rem 0 0;
  -webkit-margin-before: -0.625rem;
          margin-block-start: -0.625rem;
  text-align: center;
  padding:4% 0;
  font-size: 2.625rem;
  color: #FFFFFF;
}
.cost_wrap .head .border {
  color: #F8C592;
  font-size: 3.25rem;
  font-weight: 700;
}
.cost_wrap .head .price {
  -webkit-margin-before: -3.3%;
          margin-block-start: -3.3%;
  font-family: din-2014, noto-sans, sans-serif;
  font-size: 10rem;
  font-weight: 700;
  color: #FFFFFF;
}
.cost_wrap .head .price .back {
  color: #154a9a;
  font-size: 3.25rem;
  font-weight: 700;
  background-color: #FFFFFF;
  border-radius: 0.625rem;
  padding: 1.4% 5.8%;
  -webkit-margin-end: 2%;
          margin-inline-end: 2%;
  vertical-align: 2.375rem;
}
.cost_wrap .head .price .size {
  font-size: 3.5rem;
  font-weight: 500;
  color: #FFFFFF;
}
.cost_wrap .wrap {
  background-color: #F5F5F5;
  border: #154a9a 3px solid;
  border-radius: 0 0 3.125rem 3.125rem;
  -webkit-margin-before: -2.25rem;
          margin-block-start: -2.25rem;
  padding-block: 3%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.cost_wrap .wrap::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 11.5625rem solid transparent;
  border-left: 11.5625rem solid transparent;
  border-top: 3.9375rem solid #154a9a;
  border-bottom: 0;
  bottom: -3.9375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cost_wrap .text {
  -webkit-margin-before: 13%;
          margin-block-start: 13%;
  text-align: center;
  color: #333333;
  font-size: 2.625rem;
  font-weight: 500;
}
.cost_wrap .text span {
  position: relative;
}
.cost_wrap .text span::after {
  content: "";
  position: absolute;
  width: 78%;
  height: auto;
  aspect-ratio: 188/32;
  background: url(../images/cost_dot.webp) no-repeat center center/contain;
  top: -1.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.cost_item {
  color: #211303;
  text-shadow: 0.125rem 0.125rem 0.1875rem rgba(255, 157, 43, 0.3803921569);
  font-family: "Noto Serif JP", serif;
  font-size: 3.25rem;
  font-weight: 900;
  text-align: center;
  width: 33%;
  height: auto;
  aspect-ratio: 1/1;
  background: url(../images/cost_medal.webp) no-repeat center center/contain;
  -webkit-padding-before: 8%;
          padding-block-start: 8%;
}
.cost_item .size {
  font-size: 2.625rem;
}
.cost_price {
  -webkit-margin-before: 6%;
          margin-block-start: 6%;
}
.cost_price .price_item {
  border: #154a9a 2px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 94%;
  margin-inline: auto;
  -webkit-margin-before: 2%;
          margin-block-start: 2%;
}
.cost_price .price_item .head {
  width: 33%;
  background-color: #154a9a;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 500;
  color: #FFFFFF;
  padding-block: 1.5%;
}
.cost_price .price_item .detail {
  width: 67%;
  background-color: #F5F5F5;
  font-family: din-2014, noto-sans, sans-serif;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.cost_price .price_item .detail span:first-child {
  font-size: 2.25rem;
  -webkit-margin-start: 15%;
          margin-inline-start: 15%;
}
.cost_price .price_item .detail span:nth-child(2) {
  font-size: 5rem;
  font-weight: 700;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-before: 2%;
          margin-block-start: 2%;
}
.cost_price .price_item .detail span:nth-child(3) {
  font-size: 2.25rem;
  font-weight: 500;
  margin-inline: 4% 12%;
}
.cost_example {
  width:94%;
  margin-inline: auto;
  -webkit-margin-before: 7.2%;
          margin-block-start: 7.2%;
}
.cost_example .example_item {
  -webkit-margin-before: 6.4%;
          margin-block-start: 6.4%;
}
.cost_example .img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;justify-content: center;align-items: center;
}
.cost_example .img-wrap .before-img {
  position: relative;
  z-index: 0;
}
.cost_example .img-wrap .before-img::after {
  content: "BEFORE";
  position: absolute;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #999999;
  padding: 3.2% 10.4%;
  top: 0;
  left: 0;
}
.cost_example .img-wrap .after-img {
  border: #154a9a 1px solid;
  position: relative;
  z-index: 0;
}
.cost_example .img-wrap .after-img::after {
  content: "AFTER";
  position: absolute;
  font-size: 1.5rem;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #154a9a;
  padding: 3.2% 12.7%;
  top: 0;
  left: 0;
}
.cost_example .detail {
  background-color: #F4F3F0;
  border: #AE845A 1px solid;
  -webkit-margin-before: 4%;
          margin-block-start: 4%;
  /*padding-block: 3.1%;*/
  padding:0px 0 20px 0;
}
.cost_example .detail .number {
  text-align: center;
  font-family: din-2014, noto-sans, sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #333333;
}
.cost_example .detail .number .size {
  font-size: 1.5rem;
  vertical-align: baseline;
  font-weight: 500;
  -webkit-margin-start: 0.625rem;
          margin-inline-start: 0.625rem;
}
.cost_example .detail .price {
  text-align: center;
  -webkit-margin-before: 1.6%;
          margin-block-start: 1.6%;
  font-family: din-2014, noto-sans, sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  color: #333333;
}
.cost_example .detail .price .head {
  -webkit-margin-end: 3%;
          margin-inline-end: 3%;
  font-size: 1.5rem;
  font-weight: 500;
  color: #333333;
  background-color: #E3CDA4;
  border-radius: 0.625rem;
  padding: 1.3% 6.8%;
  display: inline-block;
  vertical-align: bottom;
}
.cost_example .detail .price .size {
  -webkit-margin-start: 0.625rem;
          margin-inline-start: 0.625rem;
  font-size: 1.5rem;
  font-weight: 500;
}

.cta {
  background-color: #154a9a;
  /*-webkit-box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  border: 0.625rem solid #FFFFFF;*/
  padding:1% 1% 4% 1%;
}
.cta_message {
  text-align: center;
  font-size: 2.625rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.4523809524;
  -webkit-margin-before: 3%;
          margin-block-start: 3%;
}
.cta_message .border {
  color: #F8C592;
  font-size: 3.25rem;
  /*-webkit-text-decoration: underline #FFFFFF 6px;
          text-decoration: underline #FFFFFF 6px;*/
}
.cta_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1%;
  margin-inline: 1.7%;
  -webkit-margin-before: 3.2%;
          margin-block-start: 3.2%;
}

.design_title {
  text-align: center;padding: 4% 0;
}
.design_title .row {
  display: inline-block;
}
.design_title .row:first-child {
  font-size: 3.25rem;
  color: #333333;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.design_title .row:first-child .size {
  font-size: 2.625rem;
}
.design_title .row:last-child {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4.6875rem;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.02em;
  background-color: #154a9a;
  padding: 2% 5%;
}
.design_title .row:last-child .size {
  font-size: 3.25rem;
}
.design_wrap {
  -webkit-margin-before: 2.5%;
          margin-block-start: 2.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.design_item {
  width: 33.3%;
}
.design_item img {
  aspect-ratio: 333/500;
  -o-object-fit: cover;
     object-fit: cover;
}
.design_item .detail {
  color: #FFFFFF;
  text-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  font-size: 2.25rem;
  font-weight: 900;
  text-align: center;
  background-color: #154a9a;
  padding-block: 7%;
}
.design_img {
  aspect-ratio: 1000/607;
  background: url(../images/design_img.webp) no-repeat center center/cover;
  text-align: center;
  padding-block: 47% 5%;
}
.design_img p {
  font-family: "Noto Serif JP", serif;
  font-size: 2.625rem;
  font-weight: 800;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.54);
  -webkit-box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  line-height: 2.0714285714;
  display: inline-block;
  padding-inline: 2%;
}

.faq_title {
  color: #333333;
  font-family: "Noto Serif JP", serif;
  font-size: 3.25rem;
  font-weight: 900;
  text-align: center;
  padding-block: 5% 2.8%;
}
.faq_wrap {
  -webkit-margin-before: 6.4%;
          margin-block-start: 6.4%;
}
.faq_wrap .head {
  color: #333333;
  font-family: "Noto Serif JP", serif;
  font-size: 2.625rem;
  font-weight: 900;
  text-align: center;
  -webkit-padding-after: 2%;
          padding-block-end: 2%;
}
.faq__item {
  margin-inline: 2.7%;
  background-color: #FFFFFF;
  -webkit-margin-before: 2%;
          margin-block-start: 2%;
}
.faq__item .js-summary {
  position: relative;
  font-size: 2.25rem;
  line-height: 1.4444444444;
  padding-block: 4.1%;
  padding-inline: 17% 10%;
  cursor: pointer;
  border:1px solid #ddd;
}
.faq__item .js-summary span {
  display: inline-block;
  width: 13.7%;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #154a9a;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 2.625rem;
  color: #FFFFFF;
  padding-block: 3%;
}
.faq__item .js-summary::after {
  content: "";
  position: absolute;
  width: 2.25rem;
  height: auto;
  aspect-ratio: 72/104;
  background: url(../images/faq_icon.webp) no-repeat center center/contain;
  right: 3%;
  top: 28%;
}
.faq__item .content {
  position: relative;
  font-size: 2.25rem;
  line-height: 1.4444444444;
  padding-block: 4.1%;
  padding-inline: 17% 7%;
}
.faq__item .content span {
  display: inline-block;
  width: 13.7%;
  height: auto;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-size: 2.625rem;
  padding-block: 3%;
}
.faq_text {
  margin-inline: 2.7%;
  font-size: 1.5rem;
  padding-block: 4%;
}
.faq_risk {
  margin-inline: 2.7%;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  text-align: center;
  font-size: 1.5rem;
  line-height: 2;
  -webkit-margin-before: 3%;
          margin-block-start: 3%;
  padding-block: 3%;
}

.form_title {
  color: #333333;
  font-size: 3.25rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding-block: 6% 5.4%;
}
.form_wrap:last-child {
  -webkit-padding-after: 14.5%;
          padding-block-end: 14.5%;
}
.form_wrap .head {
  margin-inline: 2.5%;
  background-color: #154a9a;
  padding-inline: 5%;
  padding-block: 3.7%;
}
.form_wrap .head span {
  color: #F8F8F8;
  font-size: 2.25rem;
  font-weight: 500;
}
.form_wrap .head span.required::after {
  content: "必須";
  font-size: 1.5rem;
  display: inline-block;
  padding: 0.3% 2.5%;
  background-color: #B84B44;
  -webkit-margin-start: 2%;
          margin-inline-start: 2%;
}
.form_wrap .input {
  background-color: #EAEAEA;
  margin-inline: 2.5%;
  padding: 5.5% 5.5% 2.7%;
}
.form_wrap .input input, .form_wrap .input select, .form_wrap .input textarea {
  background-color: #F8F8F8;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  width: 100%;
  -webkit-margin-after: 4%;
          margin-block-end: 4%;
  padding: 4.6% 3%;
  font-size: 2.25rem;
  font-weight: 600;
}
.form_wrap .input input[type=radio] {
  height: auto;
  width: 3rem;
  aspect-ratio: 1/1;
  background-color: #AAACAD;
  border-radius: 50%;
  position: relative;
  z-index: 0;
  padding: 0;
}
.form_wrap .input input[type=radio]::after {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #154a9a;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
}
.form_wrap .input input[type=radio]:checked::after {
  opacity: 1;
}
.form_wrap .input textarea {
  aspect-ratio: 839/575;
  height: auto;
}
.form_wrap .radio-part {
  color: #333333;
  font-size: 2.25rem;
  font-weight: 600;
  margin-inline: 1% 6%;
  vertical-align: text-bottom;
}
.form_wrap .policy {
  text-align: center;
  -webkit-margin-before: 1.5%;
          margin-block-start: 1.5%;
}
.form_wrap .policy input[type=checkbox] {
  background-color: #AAACAD;
  width: 4.125rem;
  height: auto;
  aspect-ratio: 1/1;
  -webkit-margin-end: 3%;
          margin-inline-end: 3%;
  position: relative;
  z-index: 0;
  cursor: pointer;
}
.form_wrap .policy input[type=checkbox]::after {
  content: "";
  position: absolute;
  width: 1.875rem;
  height: 90%;
  border-right: #154a9a 0.3125rem solid;
  border-bottom: #154a9a 0.3125rem solid;
  top: -0.25rem;
  right: 1.125rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_wrap .policy input[type=checkbox]:checked::after {
  opacity: 1;
}
.form_wrap .policy label {
  font-size: 2.1875rem;
  font-weight: 600;
  vertical-align: middle;
}
.form_wrap .policy-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: 2.25rem;
  font-weight: 600;
  -webkit-margin-before: 2%;
          margin-block-start: 2%;
}
.form_wrap .policy-submit {
  display: block;
  cursor: pointer;
  width: 84%;
  margin-inline: auto;
  -webkit-margin-before: 10%;
          margin-block-start: 10%;
  text-align: center;
  background-color: #B84B44;
  color: #F5F5F5;
  font-size: 2.25rem;
  font-weight: 700;
  padding-block: 3.7%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.form_wrap .policy-submit:disabled {
  background-color: #AAACAD;
}

.future {
  -webkit-margin-before: 4%;
          margin-block-start: 4%;
  -webkit-padding-after: 14%;
          padding-block-end: 14%;
  position: relative;
  z-index: 1;
}
.future::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #769cd5;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 9%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 9%, 100% 100%, 0 100%);
  z-index: -1;
}
.future_title {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 3%;
}
.future_title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #154a9a;
  -webkit-clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
          clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.future_title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
          clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  top: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -2;
}
.future_title .row {
  font-size: 2.625rem;
  font-weight: 900;
  color: #F5F5F5;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-family: "Noto Serif JP", serif;
  position: relative;
}
.future_title .row::before {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 2.1875rem;
  background: #F5F5F5;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(135deg);
          transform: translateY(-50%) rotate(135deg);
  left: -2.1875rem;
}
.future_title .row::after {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 2.1875rem;
  background: #F5F5F5;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  right: -2.1875rem;
}
.future_title .back {
  color: #154a9a;
  font-size: 3.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  background-color: #F5F5F5;
  -webkit-box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  display: inline-block;
  padding-inline: 4%;
  -webkit-margin-before: 2.2%;
          margin-block-start: 2.2%;
}
.future_item {
  -webkit-margin-before: 21%;
          margin-block-start: 21%;
  background-color: #EFEFEF;
  width: 94%;
  margin-inline: auto;
  -webkit-box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  position: relative;
  padding: 17% 2% 7%;
}
.future_item:first-child {
  -webkit-margin-before: 18%;
          margin-block-start: 18%;
}
.future_item .number {
  position: absolute;
  top: -11%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #154a9a;
  border-radius: 50%;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 2.625rem;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  aspect-ratio: 1/1;
  color: #FFFFFF;
  -webkit-padding-before: 5.5%;
          padding-block-start: 5.5%;
  padding-inline: 2.6%;
}
.future_item .number span {
  font-size: 5.25rem;
  line-height: 1.1904761905;
}
.future_item .head {
  text-align: center;
  color: #333333;
  font-size: 3.25rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
}
.future_item .head .size {
  font-size: 2.625rem;
  display: block;
  -webkit-margin-after: 2%;
          margin-block-end: 2%;
}
.future_item .img {
  -webkit-margin-before: 4%;
          margin-block-start: 4%;
}
.future_item .text {
  color: #333333;
  font-size: 1.5rem;
  line-height: 2;
  margin-inline: 4%;
  -webkit-margin-before: 4%;
          margin-block-start: 4%;
}

.fv {
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-padding-after: 5%;
          padding-block-end: 5%;
  background: url(../images/fv_bg.webp) no-repeat center center/cover;
}
.fv::after {
  content: "";
  position: absolute;
  width: 45.5%;
  height: auto;
  aspect-ratio: 1042/1796;
  background: url(../images/fv-human.webp?3) no-repeat center center/contain;
  bottom: 0;
  left: 58.7%;
  z-index: -1;
}
.fv_head {
	position:relative;
	z-index:-2;
  text-align: center;
  font-size: 2.25rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  padding-block: 2.2%;
  -webkit-box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
}
.fv_img {
  width: 75%;
  -webkit-padding-start: 3%;
          padding-inline-start: 3%;
  -webkit-padding-before: 3%;
          padding-block-start: 3%;
}
.fv_message .row {
  display: inline-block;
  background-color: #154a9a;
  font-size: 4.5rem;
  font-weight: 900;
  color: #F8F8F8;
  font-family: "Noto Serif JP", serif;
  padding-inline: 3.5%;
  -webkit-margin-before: 1.6%;
          margin-block-start: 1.6%;
}
.fv_message .size {
  font-size: 3.375rem;
}
.fv_logo {
  width:55%;
  -webkit-margin-before: 4.7%;
          margin-block-start: 4.7%;
  margin-inline: 2.7%;
}
.fv_way {
  font-size:2rem;
  border: #333 1px solid;
  border-radius: 60px;
  /*-webkit-box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);*/
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding:5px 20px;
  margin: 2% 0 0 2.5%;
}

.message {
  background: url(../images/message_bg.webp) no-repeat center center/cover;
  -webkit-padding-after: 8%;
          padding-block-end: 8%;
}
.message_wrap {
  position: relative;
}
.message_wrap .wrap {
  padding-block: 8% 6.5%;
  -webkit-padding-start: 7%;
          padding-inline-start: 7%;
}
.message_wrap .wrap .title {
  color: #FFFFFF;
  font-size: 3.25rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
}
.message_wrap .wrap p {
  width: 42%;
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 2;
  -webkit-margin-before: 4%;
          margin-block-start: 4%;
}
.message_wrap .img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
}
.message_profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: 3%;
}
.message_profile .name {
  width: 37%;
  background-color: #E3CDA4;
  font-size: 1.5rem;
  color: #333333;
  padding: 5%;
}
.message_profile .name span {
  font-size: 2.25rem;
}
.message_profile .career {
  width: 63%;
  background-color: #F5F5F5;
  color: #333333;
  font-size: 1.5rem;
  line-height: 2;
  padding: 5% 4%;
}

.private {
  position: relative;
  z-index: 0;
  padding:50px 0;
}
.private::after {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 2000/3442;
  background: url(../images/private_bg.webp) no-repeat center center/cover;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.private_title {
  text-align: center;
  color: #333333;
  font-size: 3.25rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  line-height: 1.9;
}
.private_title span {
  font-size: 2.625rem;
  display: block;
}
.private_galary {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 3%;
  padding-inline: 3.6%;
}
.private_galary .img {
  -webkit-margin-before: 5%;
          margin-block-start: 5%;
}
.private_text {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  padding-inline: 7%;
  -webkit-margin-before: 4%;
          margin-block-start: 4%;
}

.step {
  padding:50px 0px;
  position: relative;
  z-index: 0;
}
.step::after {
  content: "";
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 2003/5776;
  background: url(../images/step_bg.webp) no-repeat center center/cover;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.step_counseling .title {
  font-family: "Noto Serif JP", serif;
  font-size: 3.25rem;
  font-weight: 900;
  line-height: 1.6538461538;
  text-align: center;
}
.step_counseling .title span {
  background-color: #63829E;
  padding-inline: 6%;
  display: inline-block;
  -webkit-margin-before: 2%;
          margin-block-start: 2%;
}
.step_counseling .wrap {
  text-align: center;
  position: relative;
  -webkit-margin-before: 10%;
          margin-block-start: 10%;
  -webkit-padding-after: 2%;
          padding-block-end: 2%;
}
.step_counseling .wrap::before {
  content: "";
  position: absolute;
  width: 11.125rem;
  height: auto;
  aspect-ratio: 356/532;
  background: url(../images/step_title-left.webp) no-repeat center center/contain;
  bottom: 0;
  left: 8%;
  z-index: -1;
}
.step_counseling .wrap::after {
  content: "";
  position: absolute;
  width: 19.4375rem;
  height: auto;
  aspect-ratio: 626/488;
  background: url(../images/step_title-right.webp) no-repeat center center/contain;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.step_counseling .wrap .row {
  font-size: 2.625rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  display: block;
  -webkit-padding-end: 3%;
          padding-inline-end: 3%;
}
.step_counseling .wrap .row:first-child {
  color: #333333;
}
.step_counseling .wrap .row:last-child {
  color: #333333;
  -webkit-margin-before: 1%;
          margin-block-start: 1%;
}
.step_counseling .wrap .back {
  display: inline-block;
  color: #FFFFFF;
  font-size: 3.25rem;
  background-color: #154a9a;
  padding: 0.7% 2%;
  margin-inline: 0.625rem;
}
.step_counseling .counseling_item {
  background-color: #F5F5F5;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
          box-shadow: 0px 0.1875rem 0.375rem rgba(0, 0, 0, 0.1607843137);
  color: #333333;
  font-size: 2.25rem;
  margin-inline: 4%;
  text-align:center;
  /*-webkit-padding-start: 12%;
          padding-inline-start: 12%;*/
  padding-block: 2.8%;
}
.step_counseling .counseling_item:not(:first-child) {
  -webkit-margin-before: 1.7%;
          margin-block-start: 1.7%;
}
.step_wrap {
  padding-inline: 4%;
}
.step_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-margin-before: 7%;
          margin-block-start: 7%;
}
.step_item:not(:first-child) {
  -webkit-margin-before: 8.2%;
          margin-block-start: 8.2%;
}
.step_item .img {
  width: 46%;
}
.step_item .wrap {
  width: 50%;
}
.step_item .wrap .number {
  background: url(../images/step_head.webp) no-repeat center center/cover;
  width: 14.375rem;
  -webkit-padding-start: 14%;
          padding-inline-start: 14%;
  padding-block: 2%;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 500;
}
.step_item .wrap .head {
  color: #333333;
  font-size: 2.25rem;
  font-weight: 600;
  -webkit-margin-before: 7%;
          margin-block-start: 7%;
}
.step_item .wrap .text {
  color: #333333;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  -webkit-margin-before: 4%;
          margin-block-start: 4%;
}
.step_service {
  -webkit-margin-before:22%;
          margin-block-start:22%;
}
.step_service .title {
  /*background: url(../images/step_title.webp) no-repeat center center/contain;*/
  text-align: center;
  font-size: 3.25rem;
  font-weight: 900;
  font-family: "Noto Serif JP", serif;
  padding-block: 1.1%;
}
.step .service_wrap {
  padding-inline: 4%;
}
.step .service_wrap .step_item {
  -webkit-margin-before: 10%;
          margin-block-start: 10%;
}
.step .service_wrap .step_item:not(:first-child) {
  -webkit-margin-before: 8.7%;
          margin-block-start: 8.7%;
}

.strength {
  background-color: #154a9a;
  padding-block: 8% 7%;
}
.strength_title {
  width: 61%;
  margin-inline: auto;
}
.strength_img {
  -webkit-margin-before: 8%;
          margin-block-start: 8%;
  width: 94%;
  margin-inline: auto;
}
.strength_text {
  width: 94%;
  margin-inline: auto;
  -webkit-margin-before: 6%;
          margin-block-start: 6%;
  color: #F8F8F8;
  font-size: 1.5rem;
  line-height: 2;
}

.technique {
  padding-block: 2.8%;
}
.technique_title {
  font-family: "Noto Serif JP", serif;
  font-size: 3.25rem;
  font-weight: 700;
  text-align: center;
}
.technique_title .row {
  position: relative;
}
.technique_title .row::before {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 2.5rem;
  background: #154a9a;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(140deg);
          transform: translateY(-50%) rotate(140deg);
  left: -2.125rem;
}
.technique_title .row::after {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 2.5rem;
  background: #154a9a;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(40deg);
          transform: translateY(-50%) rotate(40deg);
  right: -2.125rem;
}
.technique_title .back {
  background-color: #154a9a;
  -webkit-box-shadow: 0.125rem 0.125rem 0.1875rem rgba(0, 0, 0, 0.6980392157);
          box-shadow: 0.125rem 0.125rem 0.1875rem rgba(0, 0, 0, 0.6980392157);
  font-size: 4.5rem;
  color: #FCF8F3;
  padding-inline: 2%;
  margin-inline: 0.3%;
}
.technique_wrap {
  width: 94%;
  margin-inline: auto;
  border:2px solid #154a9a;
  background-color: #FFFFFF;
  -webkit-margin-before: -8%;
          margin-block-start: -8%;
  -webkit-padding-after: 7.4%;
          padding-block-end: 7.4%;
  border-radius: 1.875rem;
}
.technique_item {
  padding-inline: 5%;
}
.technique_item:first-child {
  padding-block: 14% 10%;
}
.technique_item:first-child .head {
  background-color: #39516B;
  font-size: 2.5rem;
  color: #FFFFFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2.6% 5.7%;
  position: relative;
  z-index: 1;
}
.technique_item:first-child .wrap {
  background-color: #FCF8F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 3%;
  padding-block: 6% 0%;
  -webkit-margin-before: -3%;
          margin-block-start: -3%;
  position: relative;
  z-index: 0;
}
.technique_item:first-child .img {
  width: 53%;
}
.technique_item:first-child .method {
  font-size: 2.25rem;
  text-align: center;
  font-weight: 600;
  color: #333333;
  margin-inline: auto 4%;
  -webkit-padding-before: 7%;
          padding-block-start: 7%;
  position: relative;
}
.technique_item:first-child .method::after {
  content: "";
  position: absolute;
  width: 38.75rem;
  height: auto;
  aspect-ratio: 1240/131;
  background: url(../images/technique_line.webp) no-repeat center center/contain;
  right: -14%;
  bottom: 42%;
}
.technique_item:first-child .demerit {
  background-color: #39516B;
  font-size: 3rem;
  color: #FFFFFF;
  text-align: center;
  padding-block: 2.8%;
  position: relative;
}
.technique_item:first-child .demerit::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6.25rem solid transparent;
  border-left: 6.25rem solid transparent;
  border-top: 3.75rem solid #39516B;
  border-bottom: 0;
  bottom: -3.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.technique_item:last-child .head {
  color: #F8F8F8;
  font-size: 2.5rem;
  background-color: #154a9a;
  padding: 2.6% 5.7%;
  position: relative;
  z-index: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.technique_item:last-child .wrap {
  background-color: #FCF8F3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-inline: 3%;
  padding-block: 6% 0%;
  -webkit-margin-before: -3%;
          margin-block-start: -3%;
  position: relative;
  z-index: 0;
}
.technique_item:last-child .img {
  width: 53%;
}
.technique_item:last-child .method {
  text-align: center;
  margin-inline: auto 4%;
  font-size: 2.25rem;
  color: #333333;
  font-weight: 600;
  -webkit-padding-before: 4%;
          padding-block-start: 4%;
  position: relative;
}
.technique_item:last-child .method::after {
  content: "";
  position: absolute;
  width: 38.75rem;
  height: auto;
  aspect-ratio: 1240/131;
  background: url(../images/technique_line.webp) no-repeat center center/contain;
  right: -4%;
  bottom: 49%;
}
.technique_item:last-child .merit {
  color: #F8F8F8;
  font-size: 3rem;
  text-align: center;
  background-color: #154a9a;
  padding-block: 2.2%;
}
.technique_item:last-child .text {
  font-size: 1.5rem;
  color: #333333;
  line-height: 2;
  -webkit-margin-before: 4.4%;
          margin-block-start: 4.4%;
  padding-inline: 0.4%;
}
@media screen and (min-width: 992px) {
  html {
    font-size: 1rem;
  }
  .fixed {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5%;
    width: 6.25rem;
    height: 100%;
    aspect-ratio: auto;
    -webkit-transform: none;
            transform: none;
    left: auto;
    right: 0;
    bottom: 0.625rem;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .fixed .cta_item {
    display: inline-block;
    height: auto;
    aspect-ratio: 1/1;
    border: #FFFFFF 5px solid;
    border-radius: 0.75rem;
    -webkit-box-shadow: 0.125rem 0.125rem 0px rgba(216, 213, 213, 0.4862745098);
            box-shadow: 0.125rem 0.125rem 0px rgba(216, 213, 213, 0.4862745098);
    padding: 3%;
  }
  .fixed .cta_item:first-child {
    background-color: #EF8931;
  }
  .fixed .cta_item:nth-child(2) {
    background-color: #02BA4B;
  }
  .fixed .cta_item:nth-child(3) {
    background-color: #EF5456;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
  .form_wrap .policy-submit:hover {
    opacity: 0.8;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
  .u-hidden-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */