:root {
  --color-01: #565656;
  --color-02: #FE8A8D;
  --color-03: #8aded3;
  --color-04: #FCB1B1;
  --color-05: #edfcfa;
  --color-06: #fafafa;
  --color-07: #1DB6A2;
  --color-08: #17D9BF;

  --ff-noto: "Noto Sans JP", sans-serif;
}

@media (max-width: 767px) {
  :root {
    --max: calc(100vw - (100vw - 100%));
    --gap: calc(20 / 390 * 100vw);
    --bg: url(images/bg_sm.svg) 50% 0 / 100%;
  }
}

@media (min-width: 768px) {
  :root {
    --max: calc(1000 / 1440 * 100vw);
    --gap: calc(40 / 1440 * 100vw);
    --bg: #fff url(images/bg_md.svg) 50% 0 / 100%;
  }
}

* {
  margin: unset;
  padding: unset;
}

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

html {
  height: 100%;
  font-family: var(--ff-noto);
}

html:focus-within {
  scroll-behavior: smooth;
}

@media (max-width: 767px) {
  html { font-size: calc(14 / 390 * 100vw); }
}

@media (min-width: 768px) {
  html { font-size: calc(16 / 1440 * 100vw); }
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
  font-family: var(--ff-noto);
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .125rem;
     -moz-text-size-adjust: none;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
  color: var(--color-01);
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

body::before {
  transition: opacity 1s;
  inset: 0;
  position: fixed;
  z-index: -1;
  background: var(--bg);
  content: "";
}

body.visible::before {
  opacity: .35;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  font-size: inherit;
  overflow-wrap: break-word;
}

:where(a) {
  display: inline-block;
  text-decoration: none;
  text-underline-offset: 2px;
  word-break: break-all;
  cursor: pointer;
  color: inherit;
  outline: revert;
}

:where(a, [tabindex]) {
  touch-action: manipulation;
}

:where(img, picture, svg) {
  display: block;
  max-width: 100%;
}

:where(img, svg) {
  border: unset;
  object-fit: cover;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

:where(ul, ol) {
  padding-inline-start: 0;
  list-style: none;
}

::-moz-selection {
  text-decoration: 2px #e4898d underline;
  background: rgb(228 137 141 / .25);
}

::selection {
  text-decoration: 2px #e4898d underline;
  background: rgb(228 137 141 / .25);
}

/* Minimize non-essential motion
-------------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* modules
-------------------------------------------------------------------------------- */
.screen-reader {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  word-wrap: normal;
}

.container {
  width: min(100% - var(--gap) * 2, var(--max));
  margin-inline: auto;
}

@media (max-width: 767px) {
  .sm { display: block; }
  .md { display: none !important; }
}

@media (min-width: 768px) {
  .container.\-inner {
    --max: calc(950 / 1440 * 100vw);
  }

  .sm { display: none !important; }
  .md { display: block; }
}

/* heading */
.m-heading {
  position: relative;
  /* letter-spacing: .15em; */
  font-size: 1.2857rem;

}

.m-heading > span {
  color: var(--color-08);
}

.m-heading.\-deco::before {
  position: absolute;
  inset-block: 0;
  height: 1px;
  background-color: var(--color-01);
  content: "";
}

@media (max-width: 767px) {
  .m-heading {
    line-height: calc(35 / 20);
    font-size: 1.42857rem;
  }

  .m-heading.\-deco::before {
    top: 1.25rem;
    width: 1.42857rem;
    margin-left: -2.142857rem;
  }

  .m-heading_small {
    font-size: .92857rem;
  }
}

@media (min-width: 768px) {
  .m-heading {
    font-size: 1.875rem;
  }

  .m-heading.\-deco::before {
    display: inline-block;
    width: 3.75rem;
    margin-left: -5.25rem;
    margin-block: auto;
  }

  .m-heading_small {
    font-size: .875rem;
  }
}

/* button */
.m-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: normal;
  color: #fff;
  background-color: var(--color-02);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 42 42'%3E%3Cpath d='M21 0c11.6 0 21 9.4 21 21s-9.4 21-21 21S0 32.6 0 21 9.4 0 21 0Zm-2.43 32.83L32.77 21 18.57 9.17a2 2 0 0 0-2.82.26 2 2 0 0 0 .26 2.82l10.51 8.76-10.51 8.76a2.01 2.01 0 0 0-.26 2.82 2.013 2.013 0 0 0 2.82.26Z' style='fill:%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  transition-property: translate, box-shadow;
  transition-duration: .25s;
}

.m-btn.\-p { --shadow-color: rgb(51 38 0 / .25);  background-color: var(--color-02); }
.m-btn.\-s { --shadow-color: rgb(11 40 36 / .25); background-color: var(--color-03); }

.m-btn > span {
  margin-top: .25em;
  margin-inline: .25em;
}

@media (max-width: 767px) {
  .m-btn {
    width: min(100%, 25rem);
    height: 4.285714rem;
    padding-inline: .85714rem 4.714285rem;
    font-size: 1.42857rem;
    border-radius: 2.142857rem;
    box-shadow: .285714rem .4285714rem .4285714rem var(--shadow-color);
    background-position: right .85714rem top 50%;
    background-size: 3rem;
  }

  .m-btn > span {
    font-size: calc(14 / 390 * 100vw);
  }

  .m-btn.\-row-sm {
    display: grid;
    grid-template-rows: repeat(2, max-content);
    align-content: center;
    justify-items: center;
    height: 7.142857rem;
    font-size: 1.642857rem;
    border-radius: 3.571428rem;
  }

  .m-btn.\-row-sm > span {
    margin: 0;
    font-size: 1.642857rem;
  }

  .m-btn.\-row-sm > span > span {
    font-size: 1.142857rem;
  }
}

@media (min-width: 768px) {
  .m-btn {
    width: min(31.25rem, 100%);
    height: 4.375rem;
    padding-inline: .75rem 4.1875rem;
    font-size: 1.5625rem;
    border-radius: 2.1875rem;
    box-shadow: .25rem .375rem .375rem var(--shadow-color);
    background-position: right .75rem top 50%;
    background-size: 2.6875rem;
  }

  .m-btn > span {
    font-size: 1rem;
  }

  .m-btn.\-row-sm,
  .m-btn.\-row-sm > span {
    margin: 0;
    font-size: 1.875rem;
  }

  .m-btn.\-row-sm > span > span {
    margin-inline: .5em;
    font-size: 1rem;
  }

  @media (hover: hover) {
    .m-btn:hover {
      box-shadow: .125rem .1875rem .1875rem var(--shadow-color);
      transition-duration: .125s;
      translate: .125rem .1875rem;
    }
  }
}

/* card */
.m-shadow-card {
  background: #fff;
}

@media (max-width: 767px) {
  .m-shadow-card {
    padding-inline: 1.071428rem;
    border-radius: 1rem;
    box-shadow: .285714rem .285714rem .5714285rem rgb(0 0 0 / .25);
  }
}

@media (min-width: 768px) {
  .m-shadow-card {
    padding-inline: 1.5625rem;
    border-radius: .875rem;
    box-shadow: .25rem .25rem .5rem rgb(0 0 0 / .25);
  }
}

/* list [indent] */
.m-indent-list > li {
  padding-left: 1.125em;
  text-align: justify;
  text-indent: -1.125em;
}

/* list [decoration marker] */
.m-deco-marker {
  display: grid;
  padding: 0;
}

.m-deco-marker > li {
  display: flex;
  align-items: center;
  column-gap: .5em;
  font-weight: 700;
}

.m-deco-marker > li > span {
  display: grid;
  flex-shrink: 0;
  place-content: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(90deg, #e5a980 0%, #eb99bf 100%);
  aspect-ratio: 1;
}


@media (max-width: 767px) {
  .m-deco-marker {
    justify-content: center;
    row-gap: .5rem;
  }

  .m-deco-marker > li {
    letter-spacing: .05rem;
  }

  .m-deco-marker > li > span {
    width: 1.571428rem;
  }
}

@media (min-width: 768px) {
  .m-deco-marker {
    row-gap: .25rem;
    font-size: 1.0625rem;
  }

  .m-deco-marker > li {
    letter-spacing: .25rem;
  }

  .m-deco-marker > li > span {
    width: 1.875rem;
    padding-left: .3125rem;
  }
}





/* header
-------------------------------------------------------------------------------- */
.header {
  position: absolute;
  inset-inline: 0;
}

.header_logo {
  height: auto;
}

@media (max-width: 767px) {
  .header_logo {
    width: 7.5rem;
    margin-top: 7rem;
  }
}

@media (min-width: 768px) {
  .header_logo {
    width: 11.25rem;
    margin-top: 6.25rem;
  }
}





/* contents [hero]
-------------------------------------------------------------------------------- */
.hero_wrap {
  display: grid;
}

.hero_heading {
  display: grid;
}

.hero_text-2 {
  justify-self: end;
  color: #9b9b9b !important;
}

.hero_logo {
  height: auto;
}

.hero_read {
  order: -1;
  font-weight: 700;
  letter-spacing: .125em;
}

.hero_read_2 {
margin-top: 1rem;
}

.hero_read > span {
  color: var(--color-08);
}

.hero_strong {
  display: block;
}

.hero_btn-wrap {
  display: grid;
}

@media (max-width: 767px) {
  .hero {
    background: url(images/bg_sm_hero.png) no-repeat 50% 0 / 100%;
  }

  .hero_container {
    padding-block: 9.7857rem 3.571428rem;
  }

  .hero_wrap {
    row-gap: 17.14285rem;
  }

  .hero_heading {
    row-gap: .142857rem;
  }

  .hero_text-2 {
    font-size: 1rem;
    color: #9b9b9b !important;
  }

  .hero_logo {
    width: 22.785714rem;
  }

  .hero_read {
    font-size: 1.32857rem;
    line-height: calc(36.2 / 25);
  }


  .hero_read_2 > br{
   display: none;
  }
  .hero_read_do {
    font-weight: 300;
    color: #565656 !important;
  }

  .hero_read_big {
    font-size: 2.142857rem;
  }

  .hero_btn-wrap {
    row-gap: 1.142857rem;
    margin-top: 2.35714rem;
  }
}

@media (min-width: 768px) {
  .hero {
    background: url(images/bg_md_hero.png) no-repeat 50% 0 / 100%;
  }

  .hero_container {
    padding-block: 12.125rem 5.625rem;
  }

  .hero_wrap {
    row-gap: 1.625rem;
  }

  .hero_heading {
    grid-template-columns: repeat(2, max-content);
  }

  .hero_text-2 {
    grid-area: 2 / 2;
    font-size: 1rem;
  }

  .hero_logo {
    grid-column-start: 2;
    width: 27.5rem;
  }

  .hero_read {
    font-size: 2rem;
    line-height: calc(46.34 / 32);
  }

  .hero_list {
    margin-top: 1.875rem;
    font-size: 1.25rem;
  }

  .hero_list > li {
    letter-spacing: .1em;
  }

  .hero_btn-wrap {
    row-gap: 1.25rem;
    margin-top: 1.25rem;
  }
}





/* contents [sec01]
-------------------------------------------------------------------------------- */
.sec01_read ~ .sec01_read {
  margin-top: 1em;
}

.sec01_read > span {
  font-weight: 700;
  color: var(--color-02);
}

@media (max-width: 767px) {
  .sec01_wrap {
    line-height: calc(22 / 14);
    letter-spacing: normal;
    display: flex;
    flex-direction: column-reverse;
  }

  .sec01_read {
    margin-top: 1.571428rem;
  }

  .sec01_read > span {
    font-weight: 700;
  }

  .sec01_image {
    width: 21.428571rem;
    height: auto;
    margin-inline: auto;
  }

  .sec01_list {
    margin-top: 1.571428rem;
  }

  .sec01_list > li {
    align-items: start;
  }
}

@media (min-width: 768px) {
  .sec01 {
    padding-block: 3rem 0.625rem;
  }

  .sec01_wrap {
    position: relative;
    display: grid;
    font-size: 1.125rem;
    line-height: calc(28 / 18);
  }

  .sec01_read {
    margin-top: 1.25rem;
  }

  .sec01_read > span {
    font-size: 1.25rem;
  }

  .sec01_image {
    bottom: 0;
    z-index: -1;
    width: 33.875rem;
    height: auto;
    margin-top: 2rem;
    margin-left: -5rem;
  }

  .sec01_list {
    row-gap: .5rem;
    margin-top: 5rem;
    position: absolute;
    right: -1.5625rem;
  }

}





/* contents [sec02]
-------------------------------------------------------------------------------- */
.sec02_wrap {
  display: grid;
}

.sec02_image {
  height: auto;
}

@media (max-width: 767px) {

  .sec02_wrap {
    position: relative;
  }
  .sec02 {
    padding-block: 1.714285rem 3.571428rem;
  }

  .sec02 ul {
    row-gap: 1.5rem;
  }

  .sec02_image {
    width: 11.285714rem;
    position: absolute;
    z-index: -1;
    top: 6rem;
    right: 0;
  }

  .sec02_list {
    margin-top: 1.571428rem;
    justify-content: left;
    padding-left: 1.5rem;
  }

  .sec02_list > .m-heading  {
    position: relative;
    left: 50%;
    transform: translateX(15%);

  }

  .sec02_foot {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.35714rem;
    font-weight: bold;
  }

}

@media (min-width: 768px) {
  .sec02 {
    padding-block: 0 6rem;
  }

  .sec02_wrap {
    grid-template-columns: max-content 1fr;
    align-items: start;
    column-gap: .875rem;
    /* margin-left: -7.5rem; */
  }

  .sec02_image {
    width: 24.75rem;
  }

  .sec02_list {
    row-gap: 1rem;
    margin-top: 1.25rem;
  }

  .sec02_list > .m-heading  {
    padding-block: 0 1rem;
  }

  .sec02_foot {
    display: grid;
    justify-content: center;
    justify-items: center;
    margin-top:3rem;
    font-weight: 700;
    font-size: 1.875rem;
    letter-spacing: .15em;
  }

  .sec02_foot-wrap {
    display: flex;
    align-items: end;
    margin-top: .625rem;
    line-height: 1;
  }

  .sec02_foot-small {
    margin-right: 1em;
    font-size: .8125rem;
    letter-spacing: normal;
  }
}





/* contents [sec03]
-------------------------------------------------------------------------------- */
.sec03 {
  background: var(--color-05);
}

.sec03_wrap {
  display: grid;
}

.sec03_card {
  position: relative;
  background: #fff;
}

.sec03_card::before,
.sec03_card::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  aspect-ratio: 1;
  background-color: var(--color-04);
  opacity: .35;
}

.sec03_term {
  position: relative;
  font-weight: 700;
}
.sec03_term > span {
  color: var(--color-07);
}

.sec03_desc {
  position: relative;
  line-height: calc(24 / 14);
}

.sec03_desc > p {
  margin-top: 1em;
  letter-spacing: normal;
  text-align: justify;
}

.sec03_image {
  width: 100%;
  height: auto;
}

.sec03_heading > span {
  color: var(--color-07);
}

.sec03_foot {
  text-align: center;
}

@media (max-width: 767px) {
  .sec03 {
    padding-block: 6.42857rem 5rem;
  }

  .sec03_wrap {
    row-gap: 2.142857rem;
    margin-top: 2.85714rem;
  }

  .sec03_card {
    width: 23.1429rem;
    margin-inline: auto;
    padding: 5.42857rem 1.071428rem 4.285714rem;
    border: .1429rem solid;
    border-radius: 1.4286rem;
  }

  .sec03_card::before {
    top: .92857rem;
    left: .92857rem;
    width: 3.9285714rem;
  }

  .sec03_card::after {
    right: .92857rem;
    bottom: .92857rem;
    width: 2.8571428rem;
  }

  .sec03_term {
    font-size: 1.285714rem;
    line-height: 1.5em;
  }

  .sec03_desc {
    margin-top: .5em;
  }

  .sec03_foot {
    margin-top: 3.571428rem;
    line-height: calc(30 / 18);
  }

  .sec03_foot > span {
    color: #000;
    font-size: 1.35714rem;
    letter-spacing: .05em;
    font-weight: 600;
  }
}

@media (min-width: 768px) {
  .sec03 {
    padding-block: 6.875rem 3.625rem;
  }

  .sec03_wrap {
    grid-template-columns: repeat(3, minmax(20.25rem, 1fr));
    column-gap: .875rem;
    margin-top: 3.25rem;
  }

  .sec03_card {
    padding: 3.25rem .9375rem 2.1875rem;
    border: .125rem solid;
    border-radius: 1.25rem;
  }

  .sec03_card::before {
    top: 1.75rem;
    left: .92857rem;
    width: 3.9375rem;
  }

  .sec03_card::after {
    right: .92857rem;
    bottom: .92857rem;
    width: 3rem;
  }

  .sec03_term {
    margin-bottom: 1em;
    font-size: 1.375rem;
    letter-spacing: .05em;
  }

  .sec03_desc {
    font-size: .875rem;
  }

  .sec03_foot {
    margin-top: 3.625rem;
    line-height: calc(36 / 21);
    letter-spacing: .25em;
  }
  .sec03_foot > span {
    color: #000;
    font-size: 1.4375rem;
    letter-spacing: .15em;
    font-weight: 600;
  }
}





/* contents [-]
-------------------------------------------------------------------------------- */
.sec04_wrap {
  display: grid;
}

.sec04_item-term {
  display: flex;
  align-items: center;
}

.sec04_term-item {
  display: grid;
}

.sec04_image {
  height: auto;
  border-radius: 50%;
}

.sec04_head {
    display: flex;
    align-items: end;
    column-gap: 1rem;
    margin-right: -12rem;
}

.sec04_heading > span {
  color: var(--color-08);
}

.sec04_card{
    margin-top: 2.25rem;
    display: flex;
    justify-content: space-between;
    padding: 1.875rem;
    border-radius: 1.25rem;
    box-shadow: .25rem .25rem 0 rgb(0 0 0 / .25);
    background:#D9D9D9;
    width: 70%;
    margin-left: 10%;
}

.sec04_card_term{
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    font-weight: 700;
}

.sec04_card_desc {
    font-size: .9375rem;
    line-height: calc(24 / 15);
}

.sec04_card a {
    margin-top: auto;
    background: #9D9D9D;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5em 1em;
    border-radius: 2.1875rem;
}

.sec04_list {
    padding: .75rem 1rem;
    border: .125rem solid;
    border-radius: 1.25rem;
    background: var(--color-06);
  }

.sec04_list-term {
    font-weight: 700;
    font-size: 1.5625rem;
    color: var(--color-08);
}

.sec04_list-desc {
    margin-top: .375rem;
}

@media (max-width: 767px) {
  .sec04 {
    padding-block: 7rem 4rem;
  }

  .sec04_head {
    flex-direction: column;
    gap: 1.5rem;
    margin-right: 0px;
  }

  .sec04_list {
    width: 100%;
  }

  .sec04_card {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    margin-left: 0%;
  }

  .sec04_card > a {
    margin-top: 0;
    width: 100%;
    text-align: center;
  }

  .sec04_read {
    margin-top: 2.14286rem;
    font-size: 1.285714rem;
    letter-spacing: .3571rem;
    text-align: center;
  }

  .sec04_wrap {
    row-gap: 2.4286rem;
    /* width: 19.1429rem; */
    margin-top: 3.5714rem;
    margin-inline: auto;
  }

  .sec04_item-term {
    column-gap: 1.4286rem;
  }

  .sec04_image {
    width: 6.4286rem;
  }

  .sec04_term-item {
    margin-top: 1.4286rem;
  }

  .sec04_name {
    font-size: 1.285712rem;
  }

  .sec04_comp {
    font-size: 1.07143rem;
  }

  .sec04_item-desc {
    margin-top: 1rem;
    font-size: .92857rem;
    line-height: calc(24 / 13);
  }
}

@media (min-width: 768px) {
  .sec04 {
    padding-block: 5rem 9.875rem;
  }

  .sec04_head {
    display: flex;
    align-items: center;
    column-gap: 6.5rem;
    margin-right: -12rem;
  }

  .sec04_heading {
    flex-shrink: 0;
  }

  .sec04_term {
    font-size: 1.25rem;
  }


  .sec04_read {
    margin-top: 1.375em;
    font-size: 1.5rem;
    letter-spacing: .15rem;
  }

  /*
  .sec04_list {
    padding: .75rem 1rem;
    border: .125rem solid;
    border-radius: 1.25rem;
    background: var(--color-06);
  }

  .sec04_list-term {
    font-weight: 700;
    font-size: 1.5625rem;
    color: var(--color-08);
  }

  .sec04_list-desc {
    margin-top: .375rem;
  }
  */

  .sec04_wrap {
    grid-template-columns: repeat(auto-fit, minmax(16.75rem, 1fr));
    gap: 4.125rem 4.5625rem;
    margin-top: 5.625rem;
  }

  .sec04_item-term {
    column-gap: 1.25rem;
  }

  .sec04_image {
    width: 5.625rem;
  }

  .sec04_term-item {
    margin-top: 1.25rem;
  }

  .sec04_name {
    font-size: 1.25rem;
  }

  .sec04_comp {
    font-size: .9375rem;
  }

  .sec04_item-desc {
    margin-top: 1.25rem;
    font-size: .875rem;
    line-height: calc(24 / 14);
  }
}





/* contents [sec05]
-------------------------------------------------------------------------------- */
.sec05 {
  position: relative;
  overflow: hidden;
  background: var(--color-03);
}

.sec05::before {
  position: absolute;
  font-weight: 700;
  font-size: 200px;
  color: #9ce5dc;
  content: "SENPAI";
}

.sec05 > .container {
  position: relative;
}

.sec05_heading {
  display: grid;
  justify-items: center;
  font-weight: 700;
  color: #fff;
}

.sec05_read {
  font-weight: 700;
  text-align: center;
}

.sec05_read.\-1 > span {
  color: var(--color-07);
}

.sec05_read.\-2 {
  display: grid;
  color: #000;
}

.sec05_item ~ .sec05_item {
  margin-top: 1em;
}

@media (max-width: 767px) {
  .sec05 {
    padding-top: 6.42857rem;
    padding-bottom: 3.571428rem;
  }

  .sec05::before {
    top: 6.785714rem;
    left: -1.142857rem;
    font-size: 7.14288rem;
  }

  .sec05_wrap {
    margin-top: 2.142857rem;
    padding-block: 5rem 2.42875rem;
  }

  .sec05_heading > [lang="en"] {
    font-size: 2.285714rem;
  }

  .sec05_read.\-1 {
    font-size: 1.35714rem;
  }

  .sec05_read.\-2 {
    margin-top: 3.571428rem;
    font-size: 1.714285rem;
  }

  .sec05_read.\-2 > span {
    font-size: 3.214285rem;
  }

  .sec05_read.\-3 {
    margin-top: 3.42857rem;
    font-size: 1.142857rem;
  }

  .sec05_wrap .m-btn {
    margin-top: 1.42857rem;
  }

  .sec05_list {
    margin-top: 2.142857rem;
  }
}

@media (min-width: 768px) {
  .sec05 {
    padding-top: 7rem;
    padding-bottom: 4.25rem;
  }

  .sec05::before {
    top: 2.5rem;
    left: 3.8125rem;
    font-size: 12.5rem;
  }

  .sec05_heading > [lang="en"] {
    font-size: 3rem;
  }

  .sec05_wrap {
    margin-top: 2.25rem;
    padding-block: 4rem 1.5rem;
  }

  .sec05_heading > [lang="en"] {
    font-size: 3rem;
  }

  .sec05_read.\-1 {
    font-size: 1.875rem;
  }

  .sec05_read.\-2 {
    margin-top: 2rem;
    font-size: 1.875rem;
  }

  .sec05_read.\-2 > span {
    font-size: 3.4375rem;
  }

  .sec05_read.\-3 {
    margin-top: 2.5rem;
    font-size: 1.125rem;
  }

  .sec05_wrap .m-btn {
    margin-top: 1.42857rem;
    margin-inline: auto;
  }

  .sec05_list {
    display: grid;
    justify-content: center;
    margin-top: 2.125rem;
  }

  .sec05_item {
    font-size: .875rem;
  }
}







/* contents [sec06]
-------------------------------------------------------------------------------- */
.sec06 {
  font-weight: 700;
  text-align: center;
  background: var(--color-02);
}

.sec06_heading > span {
  color: var(--color-07);
}

@media (max-width: 767px) {
  .sec06 {
    padding-block: 3.571428rem;
  }

  .sec06_wrap {
    padding-block: 4.285714rem 3.92857rem;
  }

  .sec06_heading {
    margin-top: 2.285714rem;
    font-size: 2.142857rem;
  }

  .sec06_heading > span {
    font-size: 1.85714rem;
  }

  .sec06_read.\-1 {
    font-size: 1.35714rem;
    letter-spacing: .05em;
  }

  .sec06_read.\-2 {
    margin-top: 3.571428rem;
    font-size: 1.142857rem;
  }

  .sec06_wrap .m-btn {
    margin-top: .85714rem;
  }
}

@media (min-width: 768px) {
  .sec06 {
    padding-block: 3.125rem;
  }

  .sec06_wrap {
    padding-block: 4.285714rem 3.92857rem;
  }

  .sec06_heading {
    margin-top: 2.5rem;
    font-size: 2.0625rem;
    letter-spacing: .15em;
  }

  .sec06_heading > span {
    font-size: 2.0625rem;
  }

  .sec06_read.\-1 {
    font-size: 1.4375rem;
    letter-spacing: .15em;
  }

  .sec06_read.\-2 {
    margin-top: 2.5rem;
    font-size: 1.125rem;
  }

  .sec06_wrap .m-btn {
    margin-top: 1.5rem;
    margin-inline: auto;
  }
}





/* contents [sec07]
-------------------------------------------------------------------------------- */
.sec07_heading {
  letter-spacing: normal;
  text-align: center;
}

.sec07_body {
  display: grid;
  justify-content: center;
  justify-items: center;
}

.sec07_desc {
  position: relative;
  width: 100%;
  font-weight: 700;
  text-align: center;
  border: 1px solid #919191;
  border-radius: 4em;
  background: #f5f5f5;
}

.sec07_desc:not(:last-of-type)::after {
  position: absolute;
  left: 50%;
  width: 1.7142857rem;
  height: 1.8571428rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 26'%3E%3Cpath fill='%23000' d='M10.94 25.22a1.5 1.5 0 0 0 2.12 0l9.547-9.546a1.5 1.5 0 1 0-2.122-2.12L12 22.037l-8.485-8.485a1.5 1.5 0 1 0-2.122 2.121l9.546 9.546ZM10.5 0v24.16h3V0h-3Z'/%3E%3C/svg%3E");
  content: "";
  translate: -50% 0;
}

.sec07_desc::before {
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}

.sec07_desc:nth-of-type(2)::before { background-image: url(images/sec07_1.png); }
.sec07_desc:nth-of-type(3)::before { background-image: url(images/sec07_2.png); }
.sec07_desc:nth-of-type(4)::before { background-image: url(images/sec07_3.png); }

@media (max-width: 767px) {
  .sec07 {
    padding-block: 5.714285rem;
  }

  .sec07_heading {
    font-size: 1.714285rem;
  }

  .sec07_body {
    margin-top: 2.142857rem;
  }

  .sec07_desc {
    padding: .89285rem 1.85714rem;
    font-size: 1.142857rem;
  }

  .sec07_desc:not(:last-of-type) {
    margin-bottom: 2.571428rem;
  }

  .sec07_desc:not(:last-of-type)::after {
    bottom: -2.35714rem;
  }

  .sec07_desc:nth-of-type(2)::before {
    top: .7142857rem;
    left: .285714rem;
    width: 4.0971rem;
    height: 4.0971rem;
  }

  .sec07_desc:nth-of-type(3)::before {
    top: -.285714rem;
    right: -2.142857rem;
    width: 6.94142rem;
    height: 4.2842rem;
  }

  .sec07_desc:nth-of-type(4)::before {
    top: 1rem;
    right: -1.42857rem;
    width: 10.2142857rem;
    height: 7.3571428rem;
  }

  .sec07_list {
    margin-top: 3.571428rem;
    font-size: .85714rem;
  }
}

@media (min-width: 768px) {
  .sec07 {
    padding-top: 8.25rem;
    padding-bottom: 3.625rem;
  }

  .sec07_heading {
    font-size: 1.875rem;
  }

  .sec07_body {
    margin-top: 3.75rem;
  }

  .sec07_desc {
    padding: .4375rem 6.4975583rem;
    font-size: 1.125rem;
    border-width: 2px;
  }

  .sec07_desc:not(:last-of-type) {
    margin-bottom: 3rem;
  }

  .sec07_desc:not(:last-of-type)::after {
    bottom: -2.5625rem;
  }

  .sec07_desc:nth-of-type(2)::before {
    top: -1rem;
    left: 2.5rem;
    width: 4.375rem;
    height: 4.375rem;
  }

  .sec07_desc:nth-of-type(3)::before {
    top: -1.375rem;
    right: 1.875rem;
    width: 7.25rem;
    height: 4.5rem;
  }

  .sec07_desc:nth-of-type(4)::before {
    top: .0625rem;
    right: .625rem;
    width: 10.8125rem;
    height: 7.8125rem;
  }

  .sec07_list {
    display: grid;
    justify-content: center;
    margin-top: 2.5rem;
    font-size: .8125rem;
    line-height: 2;
  }
}





/* contents [sec08]
-------------------------------------------------------------------------------- */
.sec08 {
  background: var(--color-06);
}

.sec08_heading {
  display: grid;
  justify-items: center;
  row-gap: .25em;
  font-weight: 700;
}

.sec08_heading > [lang="ja"] {
  color: var(--color-02);
}

.sec08_wrap {
  display: grid;
}

.sec08_card {
  border: 2px solid;
}

.sec08_term {
  margin-bottom: 1em;
  padding-bottom: .5em;
  font-weight: 700;
  border-bottom: 2px solid var(--color-02);
}

.sec08_desc {
  text-align: justify;
}

@media (max-width: 767px) {
  .sec08 {
    padding-top: 3.571428rem;
    padding-bottom: 6.071428rem;
  }

  .sec08_heading > [lang="en"] {
    font-size: 2.142857rem;
  }

  .sec08_wrap {
    row-gap: 1.42857rem;
    margin-top: 1.42857rem;
  }

  .sec08_card {
    padding: 2.142857rem 1.285714rem;
    border-radius: 1.42857rem;
    box-shadow: .285714rem .285714rem 0 rgb(0 0 0 / .25);
  }

  .sec08_term {
    font-size: 1.071428rem;
  }

  .sec08_desc {
    font-size: .92857rem;
    line-height: calc(20.8 / 13);
  }
}

@media (min-width: 768px) {
  .sec08 {
    padding-top: 4rem;
    padding-bottom: 5.5rem;
  }

  .sec08_heading > [lang="en"] {
    font-size: 2.375rem;
  }

  .sec08_wrap {
    row-gap: 1.125rem;
    margin-top: 2.25rem;
  }

  .sec08_card {
    padding: 1.875rem 3.125rem;
    border-radius: 1.25rem;
    box-shadow: .25rem .25rem 0 rgb(0 0 0 / .25);
  }

  .sec08_term {
    font-size: 1.25rem;
  }

  .sec08_desc {
    font-size: .9375rem;
    line-height: calc(24 / 15);
  }
}





/* footer
-------------------------------------------------------------------------------- */
.footer {
  background: var(--color-06);
}

.footer_container {
  display: grid;
  justify-content: center;
  justify-items: center;
}

.footer_logo {
  height: auto;
}

.footer_wrap {
  display: flex;
  flex-wrap: wrap;
}

.footer_wrap > a {
  text-decoration: underline;
  text-underline-offset: .25em;
}

@media (max-width: 767px) {
  .footer {
    padding-top: 6.071428rem;
    padding-bottom: 2.85714rem;
    font-size: .92857rem;
  }

  .footer_logo {
    width: 17.5rem;
  }

  .footer_wrap {
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 19.285714rem;
    margin-top: 2.571428rem;
  }
}

@media (min-width: 768px) {
  .footer {
    padding-top: 4.75rem;
    padding-bottom: 2.5rem;
    font-size: .8125rem;
  }

  .footer_logo {
    width: 15.875rem;
  }

  .footer_wrap {
    gap: 3.125rem;
    margin-top: 3.5rem;
  }
}
