@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:wght@400;700&display=swap");
/*
suffix
560px < landscape <= 768px < tablet <= 1024px < laptop <= 1366px < desktop
        mobile    <= 768px
*/
:root {
  --font-family-body:"ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --font-family-roboto:"Roboto", sans-serif;
  --font-family-mix:"Roboto","ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  --font-family-maru:"fot-tsukuardgothic-std",sans-serif;
  --font-family-noto:"Noto Sans JP", sans-serif;
  --font-size-body:15px;
  --line-height-body:2;
  --header-height:55px;
  --color-text-body:#222;
  --color-grey:#D0D0D0;
  --color-dark-grey:#595757;
  --color-primary:#EA0D01;
  --color-primary-rgb:234, 13, 1;
  --color-cream:#FAF5ED;
  --color-marker:#FFFFA3;
  --color-bg-step1:#FFF1F0;
  --color-bg-step2:#FFE7E6;
  --color-bg-step3:#FFDAD9;
  --color-bg-footer:#474645;
  --color-required:#c30d23;
  --color-optional:#777777;
  --gutter:10px;
  --container-slim:1000px;
  --container:1200px;
  --container-number:1200;
  --container-wide:1366px;
}
@media (min-width: 768px) {
  :root {
    --header-height:80px;
    --gutter:20px;
  }
}

/* RESET */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, hr {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  text-align: left;
  text-decoration: none;
  vertical-align: baseline;
}

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

html {
  overflow-y: scroll;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, button, textarea, select {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

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

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

a:focus {
  outline: none;
}

a, span, small, strong, em {
  color: inherit;
  font-weight: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 0.625em;
}

body {
  color: var(--color-text-body);
  font: var(--font-size-body)/var(--line-height-body) var(--font-family-body);
}
body.mode-dev {
  width: 1366px;
  margin: 0 auto;
}
body.mode-dev--mobile {
  width: 375px;
  margin: 0 auto;
}

input, select, option, textarea, button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-text-body);
  font: var(--font-size-body)/var(--line-height-body) var(--font-family-body);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: smooth;
}

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

*[role=button], *[type=button], label {
  cursor: pointer;
}

my-icon {
  display: block;
  line-height: 1;
}

.color-primary {
  color: var(--color-primary);
}

.display-inline-block {
  display: inline-block;
}

.fw-normal,
.font-weight-normal {
  font-weight: normal;
}

.fw-bold,
.font-weight-bold {
  font-weight: bold;
}

.fw-lighter,
.font-weight-lighter {
  font-weight: lighter;
}

.fw-bolder,
.font-weight-bolder {
  font-weight: bolder;
}

.fw-100,
.font-weight-100 {
  font-weight: 100;
}

.fw-200,
.font-weight-200 {
  font-weight: 200;
}

.fw-300,
.font-weight-300 {
  font-weight: 300;
}

.fw-400,
.font-weight-400 {
  font-weight: 400;
}

.fw-500,
.font-weight-500 {
  font-weight: 500;
}

.fw-600,
.font-weight-600 {
  font-weight: 600;
}

.fw-700,
.font-weight-700 {
  font-weight: 700;
}

.fw-800,
.font-weight-800 {
  font-weight: 800;
}

.fw-900,
.font-weight-900 {
  font-weight: 900;
}

.hidden {
  display: none;
}

@media (min-width: 560px) {
  .hidden--landscape {
    display: none;
  }
}
@media (min-width: 768px) {
  .hidden--tablet {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hidden--laptop {
    display: none;
  }
}
@media (min-width: 1366px) {
  .hidden--desktop {
    display: none;
  }
}
@media (max-width: 559.98px) {
  .hidden--landscape-down {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .hidden--tablet-down {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  .hidden--laptop-down {
    display: none;
  }
}
@media (max-width: 1365.98px) {
  .hidden--desktop-down {
    display: none;
  }
}
@media (min-width: 768px) {
  .hidden--pc {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .hidden--mobile {
    display: none;
  }
}
.marker {
  -webkit-box-shadow: 0 -1.4em 0 var(--color-marker) inset;
  display: inline;
  padding: 0.2em 0;
          box-shadow: 0 -1.4em 0 var(--color-marker) inset;
}

.max-width-100 {
  max-width: 100px;
}

.max-width-110 {
  max-width: 110px;
}

.max-width-120 {
  max-width: 120px;
}

.max-width-130 {
  max-width: 130px;
}

.max-width-140 {
  max-width: 140px;
}

.max-width-150 {
  max-width: 150px;
}

.max-width-160 {
  max-width: 160px;
}

.max-width-170 {
  max-width: 170px;
}

.max-width-180 {
  max-width: 180px;
}

.max-width-190 {
  max-width: 190px;
}

.max-width-200 {
  max-width: 200px;
}

.max-width-210 {
  max-width: 210px;
}

.max-width-220 {
  max-width: 220px;
}

.max-width-230 {
  max-width: 230px;
}

.max-width-240 {
  max-width: 240px;
}

.max-width-250 {
  max-width: 250px;
}

.max-width-260 {
  max-width: 260px;
}

.max-width-270 {
  max-width: 270px;
}

.max-width-280 {
  max-width: 280px;
}

.max-width-290 {
  max-width: 290px;
}

.max-width-300 {
  max-width: 300px;
}

.max-width-310 {
  max-width: 310px;
}

.max-width-320 {
  max-width: 320px;
}

.max-width-330 {
  max-width: 330px;
}

.max-width-340 {
  max-width: 340px;
}

.max-width-350 {
  max-width: 350px;
}

.max-width-360 {
  max-width: 360px;
}

.max-width-370 {
  max-width: 370px;
}

.max-width-380 {
  max-width: 380px;
}

.max-width-390 {
  max-width: 390px;
}

.max-width-400 {
  max-width: 400px;
}

.max-width-410 {
  max-width: 410px;
}

.max-width-420 {
  max-width: 420px;
}

.max-width-430 {
  max-width: 430px;
}

.max-width-440 {
  max-width: 440px;
}

.max-width-450 {
  max-width: 450px;
}

.max-width-460 {
  max-width: 460px;
}

.max-width-470 {
  max-width: 470px;
}

.max-width-480 {
  max-width: 480px;
}

.max-width-490 {
  max-width: 490px;
}

.max-width-500 {
  max-width: 500px;
}

.max-width-510 {
  max-width: 510px;
}

.max-width-520 {
  max-width: 520px;
}

.max-width-530 {
  max-width: 530px;
}

.max-width-540 {
  max-width: 540px;
}

.max-width-550 {
  max-width: 550px;
}

.max-width-560 {
  max-width: 560px;
}

.max-width-570 {
  max-width: 570px;
}

.max-width-580 {
  max-width: 580px;
}

.max-width-590 {
  max-width: 590px;
}

.max-width-600 {
  max-width: 600px;
}

.max-width-610 {
  max-width: 610px;
}

.max-width-620 {
  max-width: 620px;
}

.max-width-630 {
  max-width: 630px;
}

.max-width-640 {
  max-width: 640px;
}

.max-width-650 {
  max-width: 650px;
}

.max-width-660 {
  max-width: 660px;
}

.max-width-670 {
  max-width: 670px;
}

.max-width-680 {
  max-width: 680px;
}

.max-width-690 {
  max-width: 690px;
}

.max-width-700 {
  max-width: 700px;
}

.max-width-710 {
  max-width: 710px;
}

.max-width-720 {
  max-width: 720px;
}

.max-width-730 {
  max-width: 730px;
}

.max-width-740 {
  max-width: 740px;
}

.max-width-750 {
  max-width: 750px;
}

.max-width-760 {
  max-width: 760px;
}

.max-width-770 {
  max-width: 770px;
}

.max-width-780 {
  max-width: 780px;
}

.max-width-790 {
  max-width: 790px;
}

.max-width-800 {
  max-width: 800px;
}

.max-width-810 {
  max-width: 810px;
}

.max-width-820 {
  max-width: 820px;
}

.max-width-830 {
  max-width: 830px;
}

.max-width-840 {
  max-width: 840px;
}

.max-width-850 {
  max-width: 850px;
}

.max-width-860 {
  max-width: 860px;
}

.max-width-870 {
  max-width: 870px;
}

.max-width-880 {
  max-width: 880px;
}

.max-width-890 {
  max-width: 890px;
}

.max-width-900 {
  max-width: 900px;
}

[class*=object-fit] {
  width: 100%;
  max-width: none;
  height: 100%;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-fit-fill {
  -o-object-fit: fill;
     object-fit: fill;
}

.object-fit-none {
  -o-object-fit: none;
     object-fit: none;
}

.object-fit-scale-down {
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.object-position-left {
  -o-object-position: left;
     object-position: left;
}

.object-position-right {
  -o-object-position: right;
     object-position: right;
}

.object-position-center {
  -o-object-position: center;
     object-position: center;
}

.object-position-top {
  -o-object-position: top;
     object-position: top;
}

.object-position-bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.object-position-center {
  -o-object-position: center;
     object-position: center;
}

.object-position-left-top {
  -o-object-position: left top;
     object-position: left top;
}

.object-position-left-bottom {
  -o-object-position: left bottom;
     object-position: left bottom;
}

.object-position-left-center {
  -o-object-position: left center;
     object-position: left center;
}

.object-position-right-top {
  -o-object-position: right top;
     object-position: right top;
}

.object-position-right-bottom {
  -o-object-position: right bottom;
     object-position: right bottom;
}

.object-position-right-center {
  -o-object-position: right center;
     object-position: right center;
}

.object-position-center-top {
  -o-object-position: center top;
     object-position: center top;
}

.object-position-center-bottom {
  -o-object-position: center bottom;
     object-position: center bottom;
}

.object-position-center-center {
  -o-object-position: center center;
     object-position: center center;
}

.ta-center,
.text-align-center {
  text-align: center;
}

.ta-left,
.text-align-left {
  text-align: left;
}

.ta-right,
.text-align-right {
  text-align: right;
}

.ta-justify,
.text-align-justify {
  text-align: justify;
}

.container {
  --full:1fr;
  --wide: clamp( 0% ,
    calc( var(--js-view-width) * 0.5 - var(--container) * 0.5 - var(--gutter) ) ,
    calc( var(--container-wide) * 0.5 - var(--container) * 0.5 ) );
  --content: clamp( 0% ,
    calc( var(--js-view-width)*0.5 - var(--container-slim) * 0.5 - var(--gutter) ) ,
    calc( var(--container) * 0.5 - var(--container-slim) * 0.5 ) );
  --slim: min(calc(100% - var(--gutter)*2), var(--container-slim));
  -ms-grid-columns: [full-start] var(--full) var(--gutter) [wide-start w-align-left-start] var(--wide) [content-start w-align-right-start] var(--content) [slim-start] var(--slim) [slim-end] var(--content) [w-align-left-end content-end] var(--wide) [wide-end w-align-right-end] var(--gutter) var(--full) [full-end];
  display: -ms-grid;
  display: grid;
  grid-template-columns: [full-start] var(--full) var(--gutter) [wide-start w-align-left-start] var(--wide) [content-start w-align-right-start] var(--content) [slim-start] var(--slim) [slim-end] var(--content) [w-align-left-end content-end] var(--wide) [wide-end w-align-right-end] var(--gutter) var(--full) [full-end];
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  width: 100%;
}
.container > * {
  grid-column: content;
}
.container--wideNogutter {
  --full:1fr;
  --wide: clamp( 0% ,
    calc( var(--js-view-width) * 0.5 - var(--container) * 0.5 ) ,
    calc( var(--container-wide) * 0.5 - var(--container) * 0.5 ) );
  --content: clamp( 0% ,
    calc( var(--js-view-width)*0.5 - var(--container-slim) * 0.5 - var(--gutter) ) ,
    calc( var(--container) * 0.5 - var(--container-slim) * 0.5 ) );
  --slim: min(calc(100% - var(--gutter)*2), var(--container-slim));
  -ms-grid-columns: [full-start] var(--full) [wide-start w-align-left-start] var(--wide) var(--gutter) [content-start w-align-right-start] var(--content) [slim-start] var(--slim) [slim-end] var(--content) [w-align-left-end content-end] var(--gutter) var(--wide) [wide-end w-align-right-end] var(--full) [full-end];
  display: -ms-grid;
  display: grid;
  grid-template-columns: [full-start] var(--full) [wide-start w-align-left-start] var(--wide) var(--gutter) [content-start w-align-right-start] var(--content) [slim-start] var(--slim) [slim-end] var(--content) [w-align-left-end content-end] var(--gutter) var(--wide) [wide-end w-align-right-end] var(--full) [full-end];
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  width: 100%;
}
.container--wideNogutter > * {
  grid-column: content;
}

.grid--row12, .grid--row11, .grid--row10, .grid--row9, .grid--row8, .grid--row7, .grid--row6, .grid--row5, .grid--row4, .grid--row3, .grid--row2, .grid--row1, .grid {
  display: -ms-grid;
  display: grid;
}

.grid--row1 {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}
.grid--row2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.grid--row3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.grid--row4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.grid--row5 {
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
}
.grid--row6 {
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
}
.grid--row7 {
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
}
.grid--row8 {
  -ms-grid-columns: (1fr)[8];
  grid-template-columns: repeat(8, 1fr);
}
.grid--row9 {
  -ms-grid-columns: (1fr)[9];
  grid-template-columns: repeat(9, 1fr);
}
.grid--row10 {
  -ms-grid-columns: (1fr)[10];
  grid-template-columns: repeat(10, 1fr);
}
.grid--row11 {
  -ms-grid-columns: (1fr)[11];
  grid-template-columns: repeat(11, 1fr);
}
.grid--row12 {
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
}
.grid__column1 {
  -ms-grid-column-span: 1;
  grid-column: span 1;
}
.grid__column2 {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}
.grid__column3 {
  -ms-grid-column-span: 3;
  grid-column: span 3;
}
.grid__column4 {
  -ms-grid-column-span: 4;
  grid-column: span 4;
}
.grid__column5 {
  -ms-grid-column-span: 5;
  grid-column: span 5;
}
.grid__column6 {
  -ms-grid-column-span: 6;
  grid-column: span 6;
}
.grid__column7 {
  -ms-grid-column-span: 7;
  grid-column: span 7;
}
.grid__column8 {
  -ms-grid-column-span: 8;
  grid-column: span 8;
}
.grid__column9 {
  -ms-grid-column-span: 9;
  grid-column: span 9;
}
.grid__column10 {
  -ms-grid-column-span: 10;
  grid-column: span 10;
}
.grid__column11 {
  -ms-grid-column-span: 11;
  grid-column: span 11;
}
.grid__column12 {
  -ms-grid-column-span: 12;
  grid-column: span 12;
}
.grid--gap5 {
  gap: 5px;
}
.grid--gapY5 {
  row-gap: 5px;
}
.grid--gapX5 {
  -webkit-column-gap: 5px;
          column-gap: 5px;
}
.grid--gap10 {
  gap: 10px;
}
.grid--gapY10 {
  row-gap: 10px;
}
.grid--gapX10 {
  -webkit-column-gap: 10px;
          column-gap: 10px;
}
.grid--gap15 {
  gap: 15px;
}
.grid--gapY15 {
  row-gap: 15px;
}
.grid--gapX15 {
  -webkit-column-gap: 15px;
          column-gap: 15px;
}
.grid--gap20 {
  gap: 20px;
}
.grid--gapY20 {
  row-gap: 20px;
}
.grid--gapX20 {
  -webkit-column-gap: 20px;
          column-gap: 20px;
}
.grid--gap25 {
  gap: 25px;
}
.grid--gapY25 {
  row-gap: 25px;
}
.grid--gapX25 {
  -webkit-column-gap: 25px;
          column-gap: 25px;
}
.grid--gap30 {
  gap: 30px;
}
.grid--gapY30 {
  row-gap: 30px;
}
.grid--gapX30 {
  -webkit-column-gap: 30px;
          column-gap: 30px;
}
.grid--gap35 {
  gap: 35px;
}
.grid--gapY35 {
  row-gap: 35px;
}
.grid--gapX35 {
  -webkit-column-gap: 35px;
          column-gap: 35px;
}
.grid--gap40 {
  gap: 40px;
}
.grid--gapY40 {
  row-gap: 40px;
}
.grid--gapX40 {
  -webkit-column-gap: 40px;
          column-gap: 40px;
}
.grid--gap45 {
  gap: 45px;
}
.grid--gapY45 {
  row-gap: 45px;
}
.grid--gapX45 {
  -webkit-column-gap: 45px;
          column-gap: 45px;
}
.grid--gap50 {
  gap: 50px;
}
.grid--gapY50 {
  row-gap: 50px;
}
.grid--gapX50 {
  -webkit-column-gap: 50px;
          column-gap: 50px;
}
.grid--gap55 {
  gap: 55px;
}
.grid--gapY55 {
  row-gap: 55px;
}
.grid--gapX55 {
  -webkit-column-gap: 55px;
          column-gap: 55px;
}
.grid--gap60 {
  gap: 60px;
}
.grid--gapY60 {
  row-gap: 60px;
}
.grid--gapX60 {
  -webkit-column-gap: 60px;
          column-gap: 60px;
}
.grid--gap65 {
  gap: 65px;
}
.grid--gapY65 {
  row-gap: 65px;
}
.grid--gapX65 {
  -webkit-column-gap: 65px;
          column-gap: 65px;
}
.grid--gap70 {
  gap: 70px;
}
.grid--gapY70 {
  row-gap: 70px;
}
.grid--gapX70 {
  -webkit-column-gap: 70px;
          column-gap: 70px;
}
.grid--gap75 {
  gap: 75px;
}
.grid--gapY75 {
  row-gap: 75px;
}
.grid--gapX75 {
  -webkit-column-gap: 75px;
          column-gap: 75px;
}
.grid--gap80 {
  gap: 80px;
}
.grid--gapY80 {
  row-gap: 80px;
}
.grid--gapX80 {
  -webkit-column-gap: 80px;
          column-gap: 80px;
}
.grid--gap85 {
  gap: 85px;
}
.grid--gapY85 {
  row-gap: 85px;
}
.grid--gapX85 {
  -webkit-column-gap: 85px;
          column-gap: 85px;
}
.grid--gap90 {
  gap: 90px;
}
.grid--gapY90 {
  row-gap: 90px;
}
.grid--gapX90 {
  -webkit-column-gap: 90px;
          column-gap: 90px;
}
.grid--gap95 {
  gap: 95px;
}
.grid--gapY95 {
  row-gap: 95px;
}
.grid--gapX95 {
  -webkit-column-gap: 95px;
          column-gap: 95px;
}
.grid--gap100 {
  gap: 100px;
}
.grid--gapY100 {
  row-gap: 100px;
}
.grid--gapX100 {
  -webkit-column-gap: 100px;
          column-gap: 100px;
}
@media (min-width: 768px) {
  .grid__column1--pc {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .grid__column2--pc {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
  .grid__column3--pc {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
  .grid__column4--pc {
    -ms-grid-column-span: 4;
    grid-column: span 4;
  }
  .grid__column5--pc {
    -ms-grid-column-span: 5;
    grid-column: span 5;
  }
  .grid__column6--pc {
    -ms-grid-column-span: 6;
    grid-column: span 6;
  }
  .grid__column7--pc {
    -ms-grid-column-span: 7;
    grid-column: span 7;
  }
  .grid__column8--pc {
    -ms-grid-column-span: 8;
    grid-column: span 8;
  }
  .grid__column9--pc {
    -ms-grid-column-span: 9;
    grid-column: span 9;
  }
  .grid__column10--pc {
    -ms-grid-column-span: 10;
    grid-column: span 10;
  }
  .grid__column11--pc {
    -ms-grid-column-span: 11;
    grid-column: span 11;
  }
  .grid__column12--pc {
    -ms-grid-column-span: 12;
    grid-column: span 12;
  }
  .grid--gap5--pc {
    gap: 5px;
  }
  .grid--gapY5--pc {
    row-gap: 5px;
  }
  .grid--gapX5--pc {
    -webkit-column-gap: 5px;
            column-gap: 5px;
  }
  .grid--gap10--pc {
    gap: 10px;
  }
  .grid--gapY10--pc {
    row-gap: 10px;
  }
  .grid--gapX10--pc {
    -webkit-column-gap: 10px;
            column-gap: 10px;
  }
  .grid--gap15--pc {
    gap: 15px;
  }
  .grid--gapY15--pc {
    row-gap: 15px;
  }
  .grid--gapX15--pc {
    -webkit-column-gap: 15px;
            column-gap: 15px;
  }
  .grid--gap20--pc {
    gap: 20px;
  }
  .grid--gapY20--pc {
    row-gap: 20px;
  }
  .grid--gapX20--pc {
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
  .grid--gap25--pc {
    gap: 25px;
  }
  .grid--gapY25--pc {
    row-gap: 25px;
  }
  .grid--gapX25--pc {
    -webkit-column-gap: 25px;
            column-gap: 25px;
  }
  .grid--gap30--pc {
    gap: 30px;
  }
  .grid--gapY30--pc {
    row-gap: 30px;
  }
  .grid--gapX30--pc {
    -webkit-column-gap: 30px;
            column-gap: 30px;
  }
  .grid--gap35--pc {
    gap: 35px;
  }
  .grid--gapY35--pc {
    row-gap: 35px;
  }
  .grid--gapX35--pc {
    -webkit-column-gap: 35px;
            column-gap: 35px;
  }
  .grid--gap40--pc {
    gap: 40px;
  }
  .grid--gapY40--pc {
    row-gap: 40px;
  }
  .grid--gapX40--pc {
    -webkit-column-gap: 40px;
            column-gap: 40px;
  }
  .grid--gap45--pc {
    gap: 45px;
  }
  .grid--gapY45--pc {
    row-gap: 45px;
  }
  .grid--gapX45--pc {
    -webkit-column-gap: 45px;
            column-gap: 45px;
  }
  .grid--gap50--pc {
    gap: 50px;
  }
  .grid--gapY50--pc {
    row-gap: 50px;
  }
  .grid--gapX50--pc {
    -webkit-column-gap: 50px;
            column-gap: 50px;
  }
  .grid--gap55--pc {
    gap: 55px;
  }
  .grid--gapY55--pc {
    row-gap: 55px;
  }
  .grid--gapX55--pc {
    -webkit-column-gap: 55px;
            column-gap: 55px;
  }
  .grid--gap60--pc {
    gap: 60px;
  }
  .grid--gapY60--pc {
    row-gap: 60px;
  }
  .grid--gapX60--pc {
    -webkit-column-gap: 60px;
            column-gap: 60px;
  }
  .grid--gap65--pc {
    gap: 65px;
  }
  .grid--gapY65--pc {
    row-gap: 65px;
  }
  .grid--gapX65--pc {
    -webkit-column-gap: 65px;
            column-gap: 65px;
  }
  .grid--gap70--pc {
    gap: 70px;
  }
  .grid--gapY70--pc {
    row-gap: 70px;
  }
  .grid--gapX70--pc {
    -webkit-column-gap: 70px;
            column-gap: 70px;
  }
  .grid--gap75--pc {
    gap: 75px;
  }
  .grid--gapY75--pc {
    row-gap: 75px;
  }
  .grid--gapX75--pc {
    -webkit-column-gap: 75px;
            column-gap: 75px;
  }
  .grid--gap80--pc {
    gap: 80px;
  }
  .grid--gapY80--pc {
    row-gap: 80px;
  }
  .grid--gapX80--pc {
    -webkit-column-gap: 80px;
            column-gap: 80px;
  }
  .grid--gap85--pc {
    gap: 85px;
  }
  .grid--gapY85--pc {
    row-gap: 85px;
  }
  .grid--gapX85--pc {
    -webkit-column-gap: 85px;
            column-gap: 85px;
  }
  .grid--gap90--pc {
    gap: 90px;
  }
  .grid--gapY90--pc {
    row-gap: 90px;
  }
  .grid--gapX90--pc {
    -webkit-column-gap: 90px;
            column-gap: 90px;
  }
  .grid--gap95--pc {
    gap: 95px;
  }
  .grid--gapY95--pc {
    row-gap: 95px;
  }
  .grid--gapX95--pc {
    -webkit-column-gap: 95px;
            column-gap: 95px;
  }
  .grid--gap100--pc {
    gap: 100px;
  }
  .grid--gapY100--pc {
    row-gap: 100px;
  }
  .grid--gapX100--pc {
    -webkit-column-gap: 100px;
            column-gap: 100px;
  }
}
@media (max-width: 767.98px) {
  .grid__column1--mobile {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .grid__column2--mobile {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
  .grid__column3--mobile {
    -ms-grid-column-span: 3;
    grid-column: span 3;
  }
  .grid__column4--mobile {
    -ms-grid-column-span: 4;
    grid-column: span 4;
  }
  .grid__column5--mobile {
    -ms-grid-column-span: 5;
    grid-column: span 5;
  }
  .grid__column6--mobile {
    -ms-grid-column-span: 6;
    grid-column: span 6;
  }
  .grid__column7--mobile {
    -ms-grid-column-span: 7;
    grid-column: span 7;
  }
  .grid__column8--mobile {
    -ms-grid-column-span: 8;
    grid-column: span 8;
  }
  .grid__column9--mobile {
    -ms-grid-column-span: 9;
    grid-column: span 9;
  }
  .grid__column10--mobile {
    -ms-grid-column-span: 10;
    grid-column: span 10;
  }
  .grid__column11--mobile {
    -ms-grid-column-span: 11;
    grid-column: span 11;
  }
  .grid__column12--mobile {
    -ms-grid-column-span: 12;
    grid-column: span 12;
  }
  .grid--gap5--mobile {
    gap: 5px;
  }
  .grid--gapY5--mobile {
    row-gap: 5px;
  }
  .grid--gapX5--mobile {
    -webkit-column-gap: 5px;
            column-gap: 5px;
  }
  .grid--gap10--mobile {
    gap: 10px;
  }
  .grid--gapY10--mobile {
    row-gap: 10px;
  }
  .grid--gapX10--mobile {
    -webkit-column-gap: 10px;
            column-gap: 10px;
  }
  .grid--gap15--mobile {
    gap: 15px;
  }
  .grid--gapY15--mobile {
    row-gap: 15px;
  }
  .grid--gapX15--mobile {
    -webkit-column-gap: 15px;
            column-gap: 15px;
  }
  .grid--gap20--mobile {
    gap: 20px;
  }
  .grid--gapY20--mobile {
    row-gap: 20px;
  }
  .grid--gapX20--mobile {
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
  .grid--gap25--mobile {
    gap: 25px;
  }
  .grid--gapY25--mobile {
    row-gap: 25px;
  }
  .grid--gapX25--mobile {
    -webkit-column-gap: 25px;
            column-gap: 25px;
  }
  .grid--gap30--mobile {
    gap: 30px;
  }
  .grid--gapY30--mobile {
    row-gap: 30px;
  }
  .grid--gapX30--mobile {
    -webkit-column-gap: 30px;
            column-gap: 30px;
  }
  .grid--gap35--mobile {
    gap: 35px;
  }
  .grid--gapY35--mobile {
    row-gap: 35px;
  }
  .grid--gapX35--mobile {
    -webkit-column-gap: 35px;
            column-gap: 35px;
  }
  .grid--gap40--mobile {
    gap: 40px;
  }
  .grid--gapY40--mobile {
    row-gap: 40px;
  }
  .grid--gapX40--mobile {
    -webkit-column-gap: 40px;
            column-gap: 40px;
  }
  .grid--gap45--mobile {
    gap: 45px;
  }
  .grid--gapY45--mobile {
    row-gap: 45px;
  }
  .grid--gapX45--mobile {
    -webkit-column-gap: 45px;
            column-gap: 45px;
  }
  .grid--gap50--mobile {
    gap: 50px;
  }
  .grid--gapY50--mobile {
    row-gap: 50px;
  }
  .grid--gapX50--mobile {
    -webkit-column-gap: 50px;
            column-gap: 50px;
  }
  .grid--gap55--mobile {
    gap: 55px;
  }
  .grid--gapY55--mobile {
    row-gap: 55px;
  }
  .grid--gapX55--mobile {
    -webkit-column-gap: 55px;
            column-gap: 55px;
  }
  .grid--gap60--mobile {
    gap: 60px;
  }
  .grid--gapY60--mobile {
    row-gap: 60px;
  }
  .grid--gapX60--mobile {
    -webkit-column-gap: 60px;
            column-gap: 60px;
  }
  .grid--gap65--mobile {
    gap: 65px;
  }
  .grid--gapY65--mobile {
    row-gap: 65px;
  }
  .grid--gapX65--mobile {
    -webkit-column-gap: 65px;
            column-gap: 65px;
  }
  .grid--gap70--mobile {
    gap: 70px;
  }
  .grid--gapY70--mobile {
    row-gap: 70px;
  }
  .grid--gapX70--mobile {
    -webkit-column-gap: 70px;
            column-gap: 70px;
  }
  .grid--gap75--mobile {
    gap: 75px;
  }
  .grid--gapY75--mobile {
    row-gap: 75px;
  }
  .grid--gapX75--mobile {
    -webkit-column-gap: 75px;
            column-gap: 75px;
  }
  .grid--gap80--mobile {
    gap: 80px;
  }
  .grid--gapY80--mobile {
    row-gap: 80px;
  }
  .grid--gapX80--mobile {
    -webkit-column-gap: 80px;
            column-gap: 80px;
  }
  .grid--gap85--mobile {
    gap: 85px;
  }
  .grid--gapY85--mobile {
    row-gap: 85px;
  }
  .grid--gapX85--mobile {
    -webkit-column-gap: 85px;
            column-gap: 85px;
  }
  .grid--gap90--mobile {
    gap: 90px;
  }
  .grid--gapY90--mobile {
    row-gap: 90px;
  }
  .grid--gapX90--mobile {
    -webkit-column-gap: 90px;
            column-gap: 90px;
  }
  .grid--gap95--mobile {
    gap: 95px;
  }
  .grid--gapY95--mobile {
    row-gap: 95px;
  }
  .grid--gapX95--mobile {
    -webkit-column-gap: 95px;
            column-gap: 95px;
  }
  .grid--gap100--mobile {
    gap: 100px;
  }
  .grid--gapY100--mobile {
    row-gap: 100px;
  }
  .grid--gapX100--mobile {
    -webkit-column-gap: 100px;
            column-gap: 100px;
  }
}

.section--gutter {
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}
.section--fillGutter {
  margin-right: calc(var(--gutter) * -1);
  margin-left: calc(var(--gutter) * -1);
}
.section--full {
  grid-column: full;
}
.section--wide {
  grid-column: wide;
}
.section--wideLeft {
  grid-column: w-align-left;
}
.section--wideRight {
  grid-column: w-align-right;
}
.section--slim {
  grid-column: slim;
}
.section--main {
  grid-column: main;
}
.section--aside {
  grid-column: aside;
}

.wrapper {
  width: 100%;
  padding-top: var(--header-height);
  padding-bottom: 60px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .wrapper {
    padding-bottom: 0;
  }
}

@media (hover: hover) {
  .button-image {
    -webkit-transition: 0.3s opacity ease-in-out;
    -o-transition: 0.3s opacity ease-in-out;
    transition: 0.3s opacity ease-in-out;
  }
  .button-image:hover {
    opacity: 0.6;
  }
}

.button-regular {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
          justify-content: center;
  height: 35px;
  border-radius: 18px;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  font-family: var(--font-family-noto);
}
@media (hover: hover) {
  .button-regular {
    -webkit-transition: 0.3s background-color ease-in-out;
    -o-transition: 0.3s background-color ease-in-out;
    transition: 0.3s background-color ease-in-out;
  }
  .button-regular:hover {
    background-color: rgba(var(--color-primary-rgb), 0.6);
  }
}
@media (min-width: 768px) {
  .button-regular {
    height: 50px;
    border-radius: 25px;
    font-size: 20px;
  }
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-logo__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 110px;
          flex: 0 0 110px;
  width: 110px;
  padding: 0 0 6px;
}
.header-logo__text {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex: 0 0 54px;
          align-items: center;
          justify-content: center;
  width: 54px;
  height: 16px;
  margin: 10.5px 0 0 12px;
  background-color: var(--color-dark-grey);
  color: #fff;
  font-size: 12px;
  font-family: var(--font-family-noto);
}
@media (min-width: 768px) {
  .header-logo__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 149px;
            flex: 0 0 149px;
    width: 149px;
    padding: 0;
  }
  .header-logo__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 78px;
            flex: 0 0 78px;
    width: 78px;
    height: 23px;
    margin: 2px 0 0 17.5px;
    font-size: 17px;
  }
}

.heading-t1--center .heading-t1__ja,
.heading-t1--center .heading-t1__en {
  text-align: center;
}
.heading-t1__ja {
  display: block;
  font-weight: bold;
  font-size: 28px;
  line-height: 39px;
}
.heading-t1__en {
  display: block;
  margin: 10px 0 0;
  font-weight: bold;
  font-size: 16px;
  font-family: var(--font-family-roboto);
}
@media (min-width: 768px) {
  .heading-t1__ja {
    font-size: 42px;
    line-height: 59px;
  }
  .heading-t1__en {
    margin: 12.5px 0 0;
    font-size: 22px;
    line-height: 29px;
  }
}

.heading-t2 {
  margin: 0 0 0.33em;
  padding: 0 0 0.38em;
  border-bottom: 1px solid #DBDBDB;
  font-weight: bold;
  font-size: 20px;
}

.link-text {
  color: var(--color-primary);
}
.link-text:hover {
  text-decoration: underline;
}

.site-header {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-transition: 0.3s -webkit-box-shadow ease-in-out;
  -o-transition: 0.3s box-shadow ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 99;
  position: absolute;
  top: 0;
  left: 0;
          align-items: center;
          justify-content: space-between;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--gutter);
  background-color: #fff;
  transition: 0.3s -webkit-box-shadow ease-in-out;
  transition: 0.3s box-shadow ease-in-out;
  transition: 0.3s box-shadow ease-in-out, 0.3s -webkit-box-shadow ease-in-out;
}
.site-header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.site-header__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 140px;
          flex: 0 0 140px;
  width: 140px;
}
@media (min-width: 768px) {
  .site-header {
    padding: 0 20px 0 29.5px;
  }
  .site-header.is-scrolled {
    -webkit-box-shadow: 0 3px 6px rgba(51, 51, 51, 0.16);
    position: fixed;
            box-shadow: 0 3px 6px rgba(51, 51, 51, 0.16);
  }
  .site-header__logo {
    margin: 5px 0 0;
  }
  .site-header__button {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    width: 200px;
  }
}

.site-footer {
  padding: 21px 60px 16px;
  background-color: var(--color-bg-footer);
  color: #fff;
  font-size: 13px;
}
.site-footer__copyright {
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 22px var(--gutter) 17px;
  }
  .site-footer__links {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            justify-content: center;
  }
  .site-footer__links li + li {
    margin: 0 0 0 0.5em;
  }
  .site-footer__links li + li::before {
    margin: 0 0.5em 0 0;
    content: "|";
  }
  .site-footer__links a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 767.98px) {
  .site-footer__links li {
    text-align: center;
  }
}

.site-fixedmenu {
  -ms-grid-columns: 1fr 1fr;
  -webkit-transform: translateY(101%);
      -ms-transform: translateY(101%);
  -webkit-transition: 0.3s -webkit-transform ease-in-out;
  -o-transition: 0.3s transform ease-in-out;
  display: -ms-grid;
  display: grid;
  z-index: 99;
  position: fixed;
  bottom: 0;
  left: 0;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 1px;
          transform: translateY(101%);
  transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s transform ease-in-out;
  transition: 0.3s transform ease-in-out, 0.3s -webkit-transform ease-in-out;
}
.site-fixedmenu.is-scrolled {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.site-fixedmenu__button {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-transition: 0.3s background-color ease-in-out;
  -o-transition: 0.3s background-color ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
          justify-content: center;
  height: 60px;
  gap: 0 5px;
  background-color: rgba(var(--color-primary-rgb), 0.8);
  transition: 0.3s background-color ease-in-out;
}
.site-fixedmenu__button:hover {
  background-color: rgba(var(--color-primary-rgb), 1);
}
.site-fixedmenu__webicon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23px;
          flex: 0 0 23px;
  width: 23px;
}
.site-fixedmenu__webicon .fillPath {
  fill: #fff;
}
.site-fixedmenu__phoneicon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 19.5px;
          flex: 0 0 19.5px;
  width: 19.5px;
}
.site-fixedmenu__phoneicon .fillPath {
  fill: #fff;
}
.site-fixedmenu__text {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
@media (min-width: 768px) {
  .site-fixedmenu {
    display: none;
  }
}

.home-mv {
  -webkit-box-align: end;
      -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
          align-items: flex-end;
  height: 560px;
}
.home-mv__content {
  z-index: 2;
  position: relative;
}
.home-mv__bg {
  -ms-grid-columns: (1fr)[4];
  -ms-grid-rows: 280px 280px;
  display: -ms-grid;
  display: grid;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  grid-template-rows: 280px 280px;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 100%;
}
.home-mv__bg figure {
  width: 100%;
  height: 100%;
}
.home-mv__bg picture {
  width: 100%;
  height: 100%;
}
.home-mv__text {
  font-size: 15px;
  line-height: 1.8;
}
.home-mv__text span {
  padding: 0.5em 0.8em 0.55em 0.6em;
  background-color: var(--color-primary);
  color: #fff;
}
.home-mv__title {
  font-size: 29px;
  line-height: 39px;
}
.home-mv__title span {
  color: #fff;
}
.home-mv__title i {
  font-weight: bold;
}
@media (min-width: 768px) {
  .home-mv {
    -webkit-box-align: start;
        -ms-flex-align: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            align-items: flex-start;
            justify-content: center;
    height: 565px;
  }
  .home-mv__bg {
    -ms-grid-rows: 282.5px 282.5px;
    grid-template-rows: 282.5px 282.5px;
  }
  .home-mv__content {
    padding: 223px 0 0;
  }
  .home-mv__text {
    font-size: 17.6px;
    text-align: center;
  }
  .home-mv__text span {
    padding: 0.43em 0.7em;
  }
  .home-mv__title {
    font-size: 39.2px;
    line-height: 51.8px;
    text-align: center;
  }
  .home-mv__title span {
    padding: 0.25em 0.35em 0.27em;
    background-color: var(--color-primary);
  }
}
@media (min-width: 1100px) {
  .home-mv__content {
    padding: 205px 0 0;
  }
  .home-mv__text {
    font-size: 22px;
  }
  .home-mv__title {
    font-size: 49px;
    line-height: 74px;
  }
}
@media (min-width: 1366px) {
  .home-mv {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 41.3616398243vw;
  }
  .home-mv__bg {
    -ms-grid-rows: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .home-mv__content {
    padding: 0 0 2vw;
  }
}
@media (max-width: 767.98px) {
  .home-mv__content {
    margin: 0 0 -10px;
  }
  .home-mv__text {
    margin: 0 0 2px;
  }
  .home-mv__title i {
    padding: 0.18em 0.27em 0.2em 0.35em;
    background-color: var(--color-primary);
  }
}

.home-catch {
  padding: 54.5px 0 55px;
}
.home-catch__title {
  font-weight: bold;
  font-size: 25px;
  line-height: 38px;
  text-align: center;
}
.home-catch__textbox {
  margin: 24px 0 0;
}
.home-catch__textbox p {
  text-align: center;
}
@media (min-width: 768px) {
  .home-catch {
    padding: 85.5px 0 92px;
  }
  .home-catch__title {
    font-size: 41px;
    line-height: 70px;
  }
  .home-catch__textbox {
    margin: 14.5px 0 0;
  }
  .home-catch__textbox p + p {
    margin-top: calc(var(--line-height-body) * 1em);
  }
}

.home-about {
  position: relative;
  padding: 0 0 49px;
}
.home-about__header {
  z-index: 2;
  position: relative;
}
.home-about__container {
  z-index: 2;
  position: relative;
}
.home-about::before {
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 30px);
  background-color: var(--color-cream);
  content: "";
}
.home-about__heading-en {
  display: block;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 53px;
  line-height: 1;
  font-family: var(--font-family-roboto);
  white-space: nowrap;
}
.home-about__heading-ja {
  display: block;
  margin: 5px 0 0;
  font-weight: bold;
  line-height: 1;
}
.home-about__feature {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          justify-content: center;
  padding: 22px var(--gutter) 0 0;
  gap: 0 30px;
}
.home-about__feature-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 123px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex: 0 0 123px;
          align-items: center;
          justify-content: center;
  width: 123px;
  height: 123px;
  padding: 10px 0 0;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  line-height: 29px;
  text-align: center;
}
.home-about__content {
  margin: 0 10px;
  padding: 12px var(--gutter) 0 0;
}
.home-about__image {
  margin: -60.5px 0 0;
  padding: 0 0 0 50px;
}
@media (min-width: 768px) {
  .home-about {
    padding: 0 0 95px;
  }
  .home-about::before {
    height: calc(100% - 46px);
  }
  .home-about__header {
    padding: 10px 0 0;
  }
  .home-about__heading-en {
    font-size: 82px;
  }
  .home-about__heading-ja {
    margin: 22px 0 0;
  }
}
@media (min-width: 1024px) {
  .home-about {
    --block-width:460px;
    --padding-right:25px;
  }
  .home-about__image {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - var(--block-width));
    margin: 0;
    padding: 0;
  }
  .home-about__content {
    max-width: var(--block-width);
    margin: 0;
    padding: 58px var(--padding-right) 0 0;
  }
  .home-about__feature {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 51px 0 0;
    gap: 0 14px;
  }
  .home-about__feature-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 160px;
            flex: 0 0 160px;
    width: 160px;
    height: 160px;
    padding: 5px 0 0;
    font-size: 30px;
    line-height: 40px;
  }
}

.home-attractive {
  padding: 45px 0 51px;
}
.home-attractive__header {
  padding: 0 0 56px;
}
@media (min-width: 768px) {
  .home-attractive {
    padding: 91.5px 0 100px;
  }
  .home-attractive__header {
    padding: 0 0 131px;
  }
}

.home-attractiveBlock + .home-attractiveBlock {
  margin-top: 80.5px;
}
.home-attractiveBlock.section--wideLeft .home-attractiveBlock__image figcaption {
  left: 12px;
}
.home-attractiveBlock.section--wideRight .home-attractiveBlock__image figcaption {
  right: 9.5px;
}
.home-attractiveBlock__content {
  z-index: 1;
  position: relative;
  background-color: var(--color-primary);
}
.home-attractiveBlock__content::before {
  position: absolute;
  right: -10px;
  bottom: -22px;
  width: 140px;
  height: 69px;
  background: url(../images/bg-dotted.svg) repeat right bottom/14px 13px;
  content: "";
}
.home-attractiveBlock__image {
  position: relative;
}
.home-attractiveBlock__image figcaption {
  z-index: 2;
  position: absolute;
  top: -26px;
  height: 49px;
}
.home-attractiveBlock__image figcaption img {
  width: auto;
  max-width: none;
  height: 100%;
}
.home-attractiveBlock__image picture {
  z-index: 1;
  position: relative;
}
.home-attractiveBlock__image picture img {
  -o-object-fit: cover;
  width: 100%;
  max-width: none;
  height: 100%;
     object-fit: cover;
}
.home-attractiveBlock__inner {
  z-index: 2;
  position: relative;
}
.home-attractiveBlock__content {
  padding: 24.5px 30px 22px;
}
.home-attractiveBlock__heading {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
}
.home-attractiveBlock__textbox {
  margin: 9.5px 0 0;
}
.home-attractiveBlock__textbox p {
  color: #fff;
}
@media (min-width: 768px) {
  .home-attractiveBlock {
    -webkit-box-align: center;
        -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            align-items: center;
  }
  .home-attractiveBlock + .home-attractiveBlock {
    margin-top: 99px;
  }
  .home-attractiveBlock__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 400px;
            flex: 0 0 400px;
    width: 400px;
    padding: 42px 0 41px 20px;
  }
  .home-attractiveBlock__content::before {
    right: -22px;
    bottom: -20px;
  }
  .home-attractiveBlock__heading {
    font-size: 24px;
    line-height: 40px;
  }
  .home-attractiveBlock__textbox {
    max-width: 360px;
    padding: 13px 0 0;
  }
  .home-attractiveBlock__image figcaption {
    top: -50px;
    height: 92px;
  }
  .home-attractiveBlock.section--wideLeft .home-attractiveBlock__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .home-attractiveBlock.section--wideLeft .home-attractiveBlock__image figcaption {
    left: 23.5px;
  }
  .home-attractiveBlock.section--wideLeft .home-attractiveBlock__image picture img {
    -o-object-position: right;
       object-position: right;
  }
  .home-attractiveBlock.section--wideLeft .home-attractiveBlock__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .home-attractiveBlock.section--wideRight {
    flex-direction: row-reverse;
  }
  .home-attractiveBlock.section--wideRight .home-attractiveBlock__image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .home-attractiveBlock.section--wideRight .home-attractiveBlock__image figcaption {
    right: 38.5px;
  }
  .home-attractiveBlock.section--wideRight .home-attractiveBlock__image picture img {
    -o-object-position: left;
       object-position: left;
  }
  .home-attractiveBlock.section--wideRight .home-attractiveBlock__content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (min-width: 1024px) {
  .home-attractiveBlock.section--wideLeft .home-attractiveBlock__image {
    margin: 0 -140px 0 0;
  }
  .home-attractiveBlock.section--wideRight .home-attractiveBlock__image {
    margin: 0 0 0 -140px;
  }
  .home-attractiveBlock__image picture {
    height: 489px;
  }
  .home-attractiveBlock__content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 600px;
            flex: 0 0 600px;
    width: 600px;
    padding: 42px 0 41px 50px;
  }
  .home-attractiveBlock__textbox {
    max-width: 500px;
  }
}
@media (max-width: 767.98px) {
  .home-attractiveBlock.section--wideLeft .home-attractiveBlock__image {
    margin: 0 calc(-1 * var(--gutter)) 0 0;
  }
  .home-attractiveBlock.section--wideLeft .home-attractiveBlock__content {
    margin: -16px 0 0 var(--gutter);
  }
  .home-attractiveBlock.section--wideRight .home-attractiveBlock__image {
    margin: 0 0 0 calc(-1 * var(--gutter));
  }
  .home-attractiveBlock.section--wideRight .home-attractiveBlock__content {
    margin: -16px var(--gutter) 0 0;
  }
}

.home-style {
  padding: 44.5px 0 49px;
  background-color: var(--color-cream);
}
.home-style__description {
  padding: 17px 0 0;
}
.home-style__schedule {
  padding: 70px 0 0;
}
@media (min-width: 768px) {
  .home-style {
    padding: 91.5px 0 100px;
  }
  .home-style__description {
    padding: 41px 0 0;
  }
  .home-style__schedule {
    padding: 103px 0 0;
  }
}
@media (min-width: 880px) {
  .home-style__schedule {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            justify-content: space-between;
    gap: 0 10px;
  }
  .home-style__schedule > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 450px;
            flex: 0 1 450px;
    max-width: 450px;
  }
}
@media (max-width: 879.98px) {
  .home-style__schedule {
    -ms-grid-columns: 100%;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 100%;
    gap: 79px 0;
  }
}
@media (max-width: 767.98px) {
  .home-style__header .heading-t1__en {
    margin: 4px 0 0;
  }
}

.home-schedule {
  position: relative;
  padding: 47px 24px 25px;
  border-radius: 10px;
  background-color: #fff;
}
.home-schedule__balloon {
  position: absolute;
  top: -48px;
  left: 8%;
  width: 84%;
  height: 80px;
  padding: 12px 0 0;
  border-radius: 40px;
  background-color: var(--color-primary);
  color: #fff;
}
.home-schedule__balloon::before {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 17px;
  height: 11px;
          transform: translateX(-50%);
  background-color: var(--color-primary);
  content: "";
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.home-schedule__balloon strong {
  display: block;
  font-weight: bold;
  font-size: 26px;
  line-height: 1;
  font-family: var(--font-family-mix);
  text-align: center;
}
.home-schedule__balloon span {
  display: block;
  padding: 8px 0 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  font-family: var(--font-family-mix);
  text-align: center;
}
.home-schedule__notes {
  margin: 8px -3px 0;
}
.home-schedule__checks {
  margin: 9px 0 0;
  padding: 6.5px 2px 9px 18px;
  border-radius: 10px;
  background-color: rgba(var(--color-primary-rgb), 0.1);
}
.home-schedule__checks li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
}
.home-schedule__checks li + li {
  margin-top: 6px;
}
.home-schedule__checks my-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17px;
          flex: 0 0 17px;
  width: 17px;
  padding: 10px 0 0;
}
.home-schedule__checks my-icon .fillPath {
  fill: var(--color-primary);
}
.home-schedule__checks span {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 18px;
}
@media (min-width: 768px) {
  .home-schedule {
    padding: 61px 30px 30px;
  }
  .home-schedule__balloon {
    top: -60px;
    left: 35px;
    width: calc(100% - 70px);
    height: 100px;
    padding: 15.5px 0 0;
    border-radius: 50px;
  }
  .home-schedule__balloon::before {
    bottom: -14px;
    width: 22px;
    height: 14px;
  }
  .home-schedule__balloon strong {
    font-size: 34px;
  }
  .home-schedule__balloon span {
    padding: 10.5px 0 0;
    font-size: 24px;
  }
  .home-schedule__notes {
    margin: 11px 3px 0 -3px;
  }
  .home-schedule__checks {
    margin: 8px 0 0;
    padding: 10.5px 23px 16px;
  }
  .home-schedule__checks li {
    gap: 0 11px;
  }
  .home-schedule__checks li + li {
    margin-top: 2px;
  }
  .home-schedule__checks my-icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 22px;
            flex: 0 0 22px;
    width: 22px;
    padding: 10px 0 0;
  }
}

.home-scheduleWeek {
  -ms-grid-columns: (1fr)[7];
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0 4px;
}
.home-scheduleWeek__day .home-scheduleWeek__week,
.home-scheduleWeek__day .home-scheduleWeek__content {
  background-color: #F2F2F2;
}
.home-scheduleWeek__day--holiday .home-scheduleWeek__week,
.home-scheduleWeek__day--holiday .home-scheduleWeek__content {
  background-color: #FDE7E6;
  color: var(--color-primary);
}
.home-scheduleWeek__day, .home-scheduleWeek__day--holiday {
  -ms-grid-rows: 26px 151px;
  display: -ms-grid;
  display: grid;
  grid-template-rows: 26px 151px;
  gap: 4px 0;
}
.home-scheduleWeek__week {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
          justify-content: center;
  height: 26px;
  font-weight: bold;
  font-size: 17px;
}
.home-scheduleWeek__content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: center;
  letter-spacing: 0.32em;
}
.home-scheduleWeek__content i {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          justify-content: center;
  margin: 0 0 0.15em;
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  font-family: var(--font-family-roboto);
  letter-spacing: 0;
}
.home-scheduleWeek__content span {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  font-weight: bold;
  font-size: 16px;
          writing-mode: vertical-rl;
}
@media (min-width: 768px) {
  .home-scheduleWeek {
    gap: 0 5px;
  }
  .home-scheduleWeek__day, .home-scheduleWeek__day--holiday {
    -ms-grid-rows: 32px 192px;
    grid-template-rows: 32px 192px;
    gap: 5px 0;
  }
  .home-scheduleWeek__day .home-scheduleWeek__content {
    padding: 8px 0 0;
  }
  .home-scheduleWeek__week {
    height: 32px;
    font-size: 21px;
  }
  .home-scheduleWeek__content i {
    font-size: 23px;
  }
  .home-scheduleWeek__content span {
    font-size: 21px;
  }
}

.home-benefits {
  padding: 45px 0 43px;
}
.home-benefits__cards {
  padding: 22px 0 0;
}
.home-benefits__cards {
  -ms-grid-columns: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 100%;
  gap: 53px 0;
}
@media (min-width: 768px) {
  .home-benefits {
    padding: 91px 0 92px;
  }
  .home-benefits__cards {
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: wrap;
            justify-content: center;
    padding: 49px 0 0;
    gap: 53px 60px;
  }
  .home-benefits__cards > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 360px;
            flex: 0 0 360px;
    width: 360px;
  }
}
@media (max-width: 767.98px) {
  .home-benefits__header .heading-t1__en {
    margin: 12px 0 0;
  }
}

.home-benefitsCard__heading {
  padding: 0 0 0 10px;
  border-left: 5px solid var(--color-primary);
  font-weight: bold;
  font-size: 22px;
  line-height: 29px;
}
.home-benefitsCard__textbox {
  padding: 13px 0 0;
}
@media (min-width: 768px) {
  .home-benefitsCard__heading {
    white-space: nowrap;
  }
}
@media (max-width: 767.98px) {
  .home-benefitsCard__heading--small {
    padding: 2px 0 3px 10px;
    font-size: 19px;
    line-height: 25px;
  }
}

.home-cases {
  padding: 46px 0 49px;
  background-color: var(--color-cream);
}
.home-cases__header {
  padding: 0 0 19px;
}
@media (min-width: 768px) {
  .home-cases {
    padding: 61px 0 96px;
  }
  .home-cases__header {
    padding: 0 0 48.5px;
  }
}
@media (max-width: 767.98px) {
  .home-cases__header .heading-t1__en {
    margin: 2px 0 0;
  }
}

.home-casesBlock__schedule {
  margin: 42px 0 0;
}
.home-casesBlock + .home-casesBlock {
  padding-top: 49px;
}
@media (min-width: 768px) {
  .home-casesBlock + .home-casesBlock {
    padding-top: 100px;
  }
  .home-casesBlock__schedule {
    margin: 0;
    padding: 66px 0 0;
  }
  .home-casesBlock__header.section--wideRight .home-casesBlockHeader__title span {
    padding: 0.35em 0.15em 0.1em 0.45em;
  }
  .home-casesBlock__header.section--wideLeft .home-casesBlockHeader__title span {
    padding: 0.17em 0.4em 0.25em 0.16em;
  }
}
@media (min-width: 1024px) {
  .home-casesBlock {
    --block-width:400px;
    --block-gap-x:50px;
  }
  .home-casesBlock__header.section--wideRight .home-casesBlockHeader {
    -ms-grid-columns: var(--block-width) var(--block-gap-x) 1fr;
    -ms-grid-rows:auto 0px auto 0px auto 0px auto;
    grid-template-columns: var(--block-width) 1fr;
        grid-template-areas: "heading image" "profile image" "textbox1 image" "textbox2 textbox2";
    gap: 0px var(--block-gap-x);
  }
  .home-casesBlock__header.section--wideRight .home-casesBlockHeader__heading {
    padding: 16px 0 0;
  }
  .home-casesBlock__header.section--wideRight .home-casesBlockHeader__profile {
    padding: 13px 0 0;
  }
  .home-casesBlock__header.section--wideRight .home-casesBlockHeader__textbox2 {
    padding: 34px 0 0;
  }
  .home-casesBlock__header.section--wideLeft .home-casesBlockHeader {
    -ms-grid-columns: 1fr var(--block-gap-x) var(--block-width);
    -ms-grid-rows:auto 0px auto 0px auto 0px auto;
    grid-template-columns: 1fr var(--block-width);
        grid-template-areas: "image heading" "image profile" "image textbox1" "textbox2 textbox2";
    gap: 0px var(--block-gap-x);
  }
  .home-casesBlock__header.section--wideLeft .home-casesBlockHeader__heading {
    -webkit-transform: translateX(-134px);
        -ms-transform: translateX(-134px);
    padding: 30px 0 0;
            transform: translateX(-134px);
  }
  .home-casesBlock__header.section--wideLeft .home-casesBlockHeader__profile {
    padding: 24px 0 0;
  }
  .home-casesBlock__header.section--wideLeft .home-casesBlockHeader__textbox2 {
    margin: 0 0 0 auto;
    padding: 48px 0 3px;
  }
}

.home-casesBlockHeader__heading {
  z-index: 2;
  position: relative;
}
.home-casesBlockHeader__title {
  font-size: 22px;
  line-height: 43px;
  white-space: nowrap;
}
.home-casesBlockHeader__title span {
  background-color: var(--color-primary);
  color: #fff;
  font-weight: bold;
  font-family: var(--font-family-mix);
}
.home-casesBlockHeader__image {
  z-index: 1;
  position: relative;
  margin: -27px calc(-1 * var(--gutter)) 0;
}
.home-casesBlockHeader__profile {
  padding: 14px 0 0;
  font-weight: bold;
}
.home-casesBlockHeader__textbox1 {
  margin: 5px 0 0;
}
.home-casesBlockHeader__textbox2 {
  margin: 1px 0 0;
}
.home-casesBlockHeader__textbox1 p + p, .home-casesBlockHeader__textbox2 p + p {
  margin-top: 2em;
}
@media (min-width: 768px) {
  .home-casesBlockHeader__title {
    font-size: 31px;
    line-height: 59px;
  }
}
@media (min-width: 1024px) {
  .home-casesBlockHeader {
    -ms-grid-rows: -webkit-min-content -webkit-min-content 1fr auto;
    -ms-grid-rows: min-content min-content 1fr auto;
    display: -ms-grid;
    display: grid;
    grid-template-rows: -webkit-min-content -webkit-min-content 1fr auto;
    grid-template-rows: min-content min-content 1fr auto;
  }
  .home-casesBlockHeader__heading {
    grid-area: heading;
  }
  .home-casesBlockHeader__image {
    grid-area: image;
    margin: 0;
  }
  .home-casesBlockHeader__profile {
    grid-area: profile;
    padding: 0;
  }
  .home-casesBlockHeader__textbox1 {
    grid-area: textbox1;
    padding: 15px 0 0;
  }
  .home-casesBlockHeader__textbox2 {
    grid-area: textbox2;
    max-width: var(--container);
  }
}
@media (min-width: 1024px){
  .home-casesBlockHeader__heading {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .home-casesBlock__header.section--wideLeft .home-casesBlockHeader > .home-casesBlockHeader__heading {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .home-casesBlockHeader__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  .home-casesBlock__header.section--wideLeft .home-casesBlockHeader > .home-casesBlockHeader__image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 5;
    -ms-grid-column: 1;
  }
  .home-casesBlockHeader__profile {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .home-casesBlock__header.section--wideLeft .home-casesBlockHeader > .home-casesBlockHeader__profile {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .home-casesBlockHeader__textbox1 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .home-casesBlock__header.section--wideLeft .home-casesBlockHeader > .home-casesBlockHeader__textbox1 {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .home-casesBlockHeader__textbox2 {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .home-casesBlock__header.section--wideLeft .home-casesBlockHeader > .home-casesBlockHeader__textbox2 {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
@media (max-width: 1023.98px) {
  .home-casesBlockHeader__heading {
    margin: 0 0 0 calc(-1 * var(--gutter));
  }
}
@media (max-width: 767.98px) {
  .home-casesBlockHeader__title span {
    padding: 8px 5px 3px 12px;
  }
}

.home-caseSchedule {
  padding: 15.5px 18px 28px;
  border-radius: 10px;
  background-color: #fff;
}
.home-caseSchedule__title {
  position: relative;
  margin: 0 0 19px;
  padding: 0 0 7px;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
.home-caseSchedule__title::after {
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60px;
  height: 3px;
          transform: translateX(-50%);
  background-color: var(--color-primary);
  content: "";
}
.home-caseSchedule__table table {
  width: 100%;
}
.home-caseSchedule__table th {
  width: 6.9em;
  color: var(--color-primary);
  font-family: var(--font-family-roboto);
}
.home-caseSchedule__table td {
  width: auto;
}
.home-caseSchedule__heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
          justify-content: center;
  margin: 0 0 10px;
}
.home-caseSchedule__heading span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 0 22px;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}
.home-caseSchedule__heading::before, .home-caseSchedule__heading::after {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 1px;
  background-color: var(--color-primary);
  content: "";
}
.home-caseSchedule__case1, .home-caseSchedule__case2 {
  display: inline-block;
}
@media (min-width: 768px) {
  .home-caseSchedule {
    padding: 36.5px 10px 42px;
  }
  .home-caseSchedule__title {
    margin: 0 0 46px;
    padding: 0 0 3.5px;
    font-size: 28px;
  }
  .home-caseSchedule__heading {
    margin: 2px 0 4px;
  }
  .home-caseSchedule__table th {
    width: 7.7em;
  }
  .home-caseSchedule__table th, .home-caseSchedule__table td {
    padding: 0.05em 0;
    line-height: 1.8;
  }
}
@media (min-width: 768px) {
  .home-caseSchedule__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
  }
  .home-caseSchedule__table {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    width: 50%;
  }
  .home-caseSchedule__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
            flex: 0 0 50%;
        align-self: center;
    width: 50%;
    text-align: right;
  }
  .home-caseSchedule__case1 {
    width: 92%;
  }
  .home-caseSchedule__case2 {
    width: 96%;
  }
}
@media (min-width: 1180px) {
  .home-caseSchedule__image {
    -ms-flex-item-align: start;
        align-self: flex-start;
    text-align: left;
  }
  .home-caseSchedule__case1 {
    -webkit-transform: translate(83px, 41px);
        -ms-transform: translate(83px, 41px);
    width: 462px;
            transform: translate(83px, 41px);
  }
  .home-caseSchedule__case2 {
    -webkit-transform: translate(67px, 73px);
        -ms-transform: translate(67px, 73px);
    width: 486px;
            transform: translate(67px, 73px);
  }
}
@media (max-width: 767.98px) {
  .home-caseSchedule__image {
    margin: 23px 0 0;
    text-align: center;
  }
  .home-caseSchedule__case1 {
    -webkit-transform: translateX(-3%);
        -ms-transform: translateX(-3%);
    width: 89%;
    max-width: 500px;
            transform: translateX(-3%);
  }
  .home-caseSchedule__case2 {
    width: 95%;
    max-width: 500px;
  }
}

.home-step {
  padding: 45.5px 0 46px;
}
.home-step__main {
  margin: 19px 0 0;
}
.home-step__illusts {
  -ms-grid-columns: 1fr 1fr 1fr;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.home-step__illustStep figure {
  z-index: 2;
  position: relative;
}
.home-step__illustStep div {
  z-index: 1;
  position: relative;
  padding: 11.5px 0 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 12px;
  font-family: var(--font-family-roboto);
  text-align: center;
}
.home-step__illustStep div::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 4px 4px;
  background-repeat: repeat;
  content: "";
  pointer-events: none;
}
.home-step__illustStep div::before {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 3px, 3px 3px, 3px 100%, 0% 100%);
  background-image: url(../images/bg-dotted-lt.svg);
  background-position: left top;
          clip-path: polygon(0% 0%, 100% 0%, 100% 3px, 3px 3px, 3px 100%, 0% 100%);
}
.home-step__illustStep--step1 div {
  background-color: var(--color-bg-step1);
}
.home-step__illustStep--step2 div {
  background-color: var(--color-bg-step2);
}
.home-step__illustStep--step3 div {
  background-color: var(--color-bg-step3);
}
.home-step__illustStep--step3 div::after {
  -webkit-clip-path: polygon(calc(100% - 3px) 0%, 100% 0%, 100% 100%, calc(100% - 3px) 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-dotted-rb.svg);
  background-position: right bottom;
  background-size: 4px 4px;
  background-repeat: repeat;
  content: "";
          clip-path: polygon(calc(100% - 3px) 0%, 100% 0%, 100% 100%, calc(100% - 3px) 100%);
  pointer-events: none;
}
.home-step__footer {
  margin: 22px 0 0;
}
@media (min-width: 768px) {
  .home-step {
    padding: 91px 0 111px;
  }
  .home-step__main {
    margin: 29px 0 0;
  }
  .home-step__content {
    z-index: 1;
    position: relative;
  }
  .home-step__footer {
    margin: 42px 0 0;
  }
}
@media (min-width: 768px) {
  .home-step__illusts {
    -ms-grid-columns: 1fr 1fr 3fr;
    z-index: 2;
    position: relative;
    grid-template-columns: 1fr 1fr 3fr;
    margin: 0;
    pointer-events: none;
  }
  .home-step__illustStep::before {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 2px, 2px 2px, 2px 100%, 0% 100%);
    background-size: 3px 3px;
            clip-path: polygon(0% 0%, 100% 0%, 100% 2px, 2px 2px, 2px 100%, 0% 100%);
  }
  .home-step__illustStep > div {
    display: none;
  }
  .home-step__illustStep--step1 {
    position: relative;
    height: 218px;
  }
  .home-step__illustStep--step1 figure {
    position: absolute;
    right: 4%;
    bottom: -8%;
    width: 85%;
  }
  .home-step__illustStep--step2 {
    position: relative;
    height: 181px;
  }
  .home-step__illustStep--step2 figure {
    position: absolute;
    right: -34%;
    bottom: 2%;
    width: 70%;
  }
  .home-step__illustStep--step3 {
    position: relative;
    height: 141px;
  }
  .home-step__illustStep--step3 figure {
    position: absolute;
    bottom: -5%;
    left: 41.9%;
    width: 19%;
  }
  .home-step__content {
    -ms-grid-columns: 1fr 1fr 3fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr 3fr;
  }
}
@media (max-width: 767.98px) {
  .home-step__illusts {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .home-step__illustStep--step1 figure {
    margin: 0 0 -19px;
    padding: 0 8% 0 7%;
  }
  .home-step__illustStep--step1 div {
    height: 44px;
  }
  .home-step__illustStep--step2 figure {
    margin: 0 0 -16px;
    padding: 0 14% 0px 16%;
  }
  .home-step__illustStep--step2 div {
    height: 62px;
  }
  .home-step__illustStep--step3 figure {
    margin: 0 0 -13px;
    padding: 0 18% 0 25%;
  }
  .home-step__illustStep--step3 div {
    height: 77px;
  }
}

.home-stepContent {
  position: relative;
  padding: 25px 20px 21px;
}
.home-stepContent::before, .home-stepContent::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 4px 4px;
  background-repeat: repeat;
  content: "";
  pointer-events: none;
}
.home-stepContent::before {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 3px, 3px 3px, 3px 100%, 0% 100%);
  background-image: url(../images/bg-dotted-lt.svg);
  background-position: left top;
          clip-path: polygon(0% 0%, 100% 0%, 100% 3px, 3px 3px, 3px 100%, 0% 100%);
}
.home-stepContent::after {
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%, calc(100% - 3px) 0%, calc(100% - 3px) calc(100% - 3px), 0% calc(100% - 3px));
  background-image: url(../images/bg-dotted-rb.svg);
  background-position: right bottom;
          clip-path: polygon(0% 100%, 100% 100%, 100% 0%, calc(100% - 3px) 0%, calc(100% - 3px) calc(100% - 3px), 0% calc(100% - 3px));
}
.home-stepContent--step1 {
  background-color: var(--color-bg-step1);
}
.home-stepContent--step2 {
  background-color: var(--color-bg-step2);
}
.home-stepContent--step3 {
  background-color: var(--color-bg-step3);
}
.home-stepContent__heading {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  font-family: var(--font-family-roboto);
  text-align: center;
}
.home-stepContent__copy {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
          justify-content: center;
  margin: 15px 0 0;
  padding: 11px 17px 13px;
  border-radius: 5px;
  background-color: var(--color-primary);
}
.home-stepContent__copy p {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 34px;
  font-family: var(--font-family-maru);
  text-align: center;
}
.home-stepContent__list {
  margin: 21.5px 0 0;
}
.home-stepContent__list li {
  position: relative;
  padding: 0 0 0 20px;
}
.home-stepContent__list li + li {
  margin-top: 18px;
}
.home-stepContent__list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-primary);
  content: "";
}
.home-stepContent__sub {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .home-stepContent {
    padding: 0;
  }
  .home-stepContent::before, .home-stepContent::after {
    background-size: 3px 3px;
  }
  .home-stepContent::before {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 2px, 2px 2px, 2px 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 2px, 2px 2px, 2px 100%, 0% 100%);
  }
  .home-stepContent::after {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 0%, calc(100% - 2px) 0%, calc(100% - 2px) calc(100% - 2px), 0% calc(100% - 2px));
            clip-path: polygon(0% 100%, 100% 100%, 100% 0%, calc(100% - 2px) 0%, calc(100% - 2px) calc(100% - 2px), 0% calc(100% - 2px));
  }
  .home-stepContent__heading {
    font-size: 21px;
  }
  .home-stepContent__copy {
    margin: 0;
    padding: 0;
  }
  .home-stepContent__copy p {
    font-size: 16px;
    line-height: 21px;
    letter-spacing: -0.08em;
  }
  .home-stepContent__list {
    margin: 0;
  }
  .home-stepContent__list li {
    padding: 0 0 0 12px;
    font-size: 12px;
    line-height: 18px;
  }
  .home-stepContent__list li + li {
    margin-top: 15px;
  }
  .home-stepContent__list li::before {
    top: 7px;
    width: 5px;
    height: 5px;
  }
  .home-stepContent__sub {
    -webkit-box-align: center;
        -ms-flex-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            align-items: center;
            justify-content: center;
    min-height: 48px;
    font-size: 15px;
    line-height: 25px;
  }
  .home-stepContent--step1 {
    padding: 19px 20px 20px;
  }
  .home-stepContent--step1 .home-stepContent__copy {
    height: 70px;
    margin: 5px 0 0;
  }
  .home-stepContent--step1 .home-stepContent__list {
    margin: 11px 0 0;
  }
  .home-stepContent--step2 {
    margin-top: -36px;
    padding: 31.5px 20px 20px;
  }
  .home-stepContent--step2::after {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), 0% calc(100% - 2px));
            clip-path: polygon(0% 100%, 100% 100%, 100% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), 0% calc(100% - 2px));
  }
  .home-stepContent--step2 .home-stepContent__copy {
    height: 70px;
    margin: 20px 0 0;
    padding: 8px 0 0;
  }
  .home-stepContent--step2 .home-stepContent__copy p {
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    white-space: nowrap;
  }
  .home-stepContent--step2 .home-stepContent__list {
    margin: 20px 0 0;
  }
  .home-stepContent--step3 {
    margin-top: -77px;
    padding: 12px 20px 32px 19px;
  }
  .home-stepContent--step3 .home-stepContent__copy {
    height: 55px;
    margin: 10px 0 0;
    border-radius: 8px;
  }
  .home-stepContent--step3 .home-stepContent__copy p {
    letter-spacing: -0.02em;
  }
  .home-stepContent--step3 .home-stepContent__list {
    padding: 7px 16px 0;
  }
  .home-stepContent--step1::after, .home-stepContent--step2::after {
    -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), 0% calc(100% - 2px));
            clip-path: polygon(0% 100%, 100% 100%, 100% calc(100% - 2px), calc(100% - 2px) calc(100% - 2px), 0% calc(100% - 2px));
  }
  .home-stepContent__row {
    -ms-flex-wrap: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        flex-wrap: nowrap;
    margin: 25px -18px 0 -9px;
  }
  .home-stepContent__column {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33%;
            flex: 0 0 33.33%;
    width: 33.33%;
  }
  .home-stepContent__column + .home-stepContent__column {
    position: relative;
  }
  .home-stepContent__column + .home-stepContent__column::before {
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: var(--color-primary);
    content: "";
  }
}
@media (max-width: 767.98px) {
  .home-stepContent__row {
    padding: 25px 0 0;
  }
  .home-stepContent__column .home-stepContent__list {
    margin: 16.5px 0 0;
  }
  .home-stepContent__column + .home-stepContent__column {
    margin: 26px 0 0;
    padding: 25px 0 0;
    border-top: 1px solid var(--color-primary);
  }
  .home-stepContent--step2::before, .home-stepContent--step3::before {
    -webkit-clip-path: polygon(0% 0%, 3px 0%, 3px 100%, 0px 100%);
            clip-path: polygon(0% 0%, 3px 0%, 3px 100%, 0px 100%);
  }
  .home-stepContent--step3 {
    padding: 25px 20px 26px;
  }
}

.home-recruitment {
  padding: 45px 0 49px;
  background-color: var(--color-cream);
}
.home-recruitment__heading .heading-t1__en {
  margin: 6px 0 0;
}
.home-recruitment__body {
  margin: 24px 0 0;
}
@media (min-width: 768px) {
  .home-recruitment {
    padding: 91.5px 0 100px;
  }
  .home-recruitment__heading .heading-t1__en {
    margin: 17.5px 0 0;
  }
  .home-recruitment__body {
    margin: 45px 0 0;
  }
}

.home-recruitmentBlock + .home-recruitmentBlock {
  margin-top: 30px;
}
.home-recruitmentBlock__heading {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
          justify-content: center;
  height: 60px;
  padding: 0 15px;
  border-radius: 10px 10px 0 0;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
.home-recruitmentBlock__heading span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.home-recruitmentBlock__content {
  padding: 20.5px 19px;
  border: 1px solid var(--color-primary);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
}
.home-recruitmentBlock__content dl {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.home-recruitmentBlock__content dl + dl {
  padding-top: 14px;
}
.home-recruitmentBlock__content li {
  padding-left: 1.5em;
  text-indent: -1.1em;
}
.home-recruitmentBlock__content li::before {
  content: "・";
}
@media (min-width: 768px) {
  .home-recruitmentBlock + .home-recruitmentBlock {
    margin-top: 50px;
  }
  .home-recruitmentBlock__heading span {
    max-width: 884px;
  }
  .home-recruitmentBlock__content {
    padding: 40px 15px;
  }
  .home-recruitmentBlock__content dl + dl {
    padding-top: 29px;
  }
  .home-recruitmentBlock__content li {
    padding-left: 1em;
    text-indent: -1em;
  }
}
@media (max-width: 767.98px) {
  .home-recruitmentBlock__heading {
    white-space: nowrap;
  }
  .home-recruitmentBlock__content li::before {
    margin-right: 0.4em;
    margin-left: -0.4em;
  }
}

.home-faq {
  padding: 46px 0 50px;
}
.home-faq__heading .heading-t1__en {
  margin: 4px 0 0;
}
.home-faq__body {
  padding: 18px 0 0;
}
@media (min-width: 768px) {
  .home-faq {
    padding: 91.5px 0 105px;
  }
  .home-faq__heading .heading-t1__en {
    margin: 17.5px 0 0;
  }
  .home-faq__body {
    padding: 39.5px 0 0;
  }
}

.home-faqBlock + .home-faqBlock {
  margin-top: 40px;
}
.home-faqBlock__heading.heading-t2 {
  margin: 0 0 0.9em;
  padding: 0 0 0.28em;
}
.home-faqBlock__content {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--color-grey);
}
.home-faqBlock__content + .home-faqBlock__content {
  margin-top: 18px;
}
.home-faqBlock__q {
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
  width: 100%;
  padding-right: 9px;
}
.home-faqBlock__q.is-open .home-faqBlock__q-icon::after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.home-faqBlock__q-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 37px;
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex: 0 0 37px;
          align-items: center;
          justify-content: center;
  width: 37px;
  height: 37px;
  padding: 0 0 2px 4px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: bold;
  font-weight: bold;
  font-size: 22px;
  font-family: var(--font-family-roboto);
}
.home-faqBlock__q-text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 0 0 13px;
  padding: 0 5px 0 0;
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
}
.home-faqBlock__q-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
          flex: 0 0 20px;
          align-items: center;
          justify-content: center;
  width: 20px;
  height: 20px;
}
.home-faqBlock__q-icon::before, .home-faqBlock__q-icon::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  content: "";
}
.home-faqBlock__q-icon::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
  -webkit-transition: 0.3s -webkit-transform ease-in-out;
  -o-transition: 0.3s transform ease-in-out;
          transform: rotate(90deg);
  transition: 0.3s -webkit-transform ease-in-out;
  transition: 0.3s transform ease-in-out;
  transition: 0.3s transform ease-in-out, 0.3s -webkit-transform ease-in-out;
}
.home-faqBlock__a {
  height: 0;
  overflow: hidden;
}
.home-faqBlock__a-in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px 0 0;
}
.home-faqBlock__a-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 37px;
  -ms-flex-item-align: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          flex: 0 0 37px;
          align-items: center;
      align-self: flex-start;
          justify-content: center;
  width: 37px;
  padding: 4px 0 0px 6px;
  color: var(--color-primary);
  font-weight: bold;
  font-weight: bold;
  font-size: 22px;
  line-height: 1;
  font-family: var(--font-family-roboto);
}
.home-faqBlock__a-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 0 0 13px;
}
@media (min-width: 768px) {
  .home-faqBlock + .home-faqBlock {
    margin-top: 40px;
  }
  .home-faqBlock__heading.heading-t2 {
    margin: 0 0 0.6em;
  }
  .home-faqBlock__a-in {
    padding: 24px 0 0;
  }
  .home-faqBlock__q {
    padding-right: 19px;
  }
  .home-faqBlock__content {
    padding: 0 0 17px;
  }
  .home-faqBlock__content + .home-faqBlock__content {
    margin-top: 16px;
  }
}
@media (max-width: 767.98px) {
  .home-faqBlock__q-icon {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin: 5.5px 0 0;
  }
}

/* common */
.wrapper.-other {
  padding-bottom: 0;
}
.container.-other {
  min-height: calc(100dvh - var(--header-height));
  grid-template-rows: auto 1fr auto;
}
.breadcrumb {
  border-top: 1px solid var(--color-grey);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
}
.breadcrumb-list__item {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--color-dark-grey);
}
.breadcrumb-list__item:not(:first-child)::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: 0 8px;
  border-top: 1px solid var(--color-dark-grey);
  border-right: 1px solid var(--color-dark-grey);
  transform: rotate(45deg);
}
.breadcrumb-list__link {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .breadcrumb {
    display: flex;
    justify-content: center;
  }
  .breadcrumb-list {
    width: 1040px;
  }
}

/* entry */
.entry-section {
  padding: 64px 0 128px;
}
.entry-section__title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
.entry-section__text {
  margin-top: 32px;
}
.entry-form {
  margin-top: 32px;
}
.entry-form-block {
  display: flex;
  flex-direction: column;
}
.entry-form-block:not(:first-child) {
  margin-top: 16px;
}
.entry-form-block__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: bold;
}
.entry-form-block__body {
  height: 40px;
}
.entry-form-block__label {
  padding: 4px 8px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: var(--color-cream);
}
.entry-form-block__label.-required {
  background-color: var(--color-required);
}
.entry-form-block__label.-optional {
  background-color: var(--color-optional);
}
.entry-form-policy {
  margin-top: 24px;
}
.entry-form-terms__heading {
  font-size: 16px;
  font-weight: bold;
}
.entry-form-terms__body {
  overflow-y: scroll;
  height: 160px;
  padding: 8px;
  border: 1px solid var(--color-grey);
  font-size: 14px;
}
.entry-form-agree {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.entry-form-agree__checkbox {
  appearance: auto;
}
.entry-form-agree__label {
  margin-left: 4px;
  font-size: 14px;
}
.entry-form-button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.entry-form-button__submit {
  width: 240px;
  height: 48px;
  border-radius: 24px;
}
.form-input {
  width: 100%;
  height: 100%;
  padding: 8px;
  border: 1px solid var(--color-grey);
  border-radius: 4px;
  font-size: 16px;
}
.form-input:focus {
  border-color: var(--color-primary);
}

@media (min-width: 768px) {
  .entry-section__title {
    font-size: 40px;
  }  
  .entry-form {
    margin-top: 64px;
  }
  .entry-form-block {
    flex-direction: row;
  }
  .entry-form-block:not(:first-child) {
    margin-top: 32px;
  }  
  .entry-form-block__heading {
    flex: 0 0 240px;
  }
  .entry-form-block__body {
    flex: auto;
    margin-left: 32px;
  }  
  .entry-form-policy {
    margin-top: 40px;
  }  
  .entry-form-button {
    margin-top: 80px;
  }
  .entry-form-button__submit {
    width: 480px;
    height: 64px;
    border-radius: 32px;
    font-size: 24px;
  }  
}
