@charset "UTF-8";
/* GoogleFonts読み込み 下記のライセンス記述は削除禁止 */
/*!
* "Shippori Mincho" licensed under the SIL Open Font License 1.1
* by https://fonts.google.com/specimen/Shippori+Mincho
*/
@font-face {
  font-family: "Shippori Mincho";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Shippori-Mincho-400.woff2") format("woff2"), url("fonts/Shippori-Mincho-400.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Shippori Mincho vertical";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Shippori-Mincho-400-vertical.woff2") format("woff2"), url("fonts/Shippori-Mincho-400-vertical.woff") format("woff");
  font-display: swap;
}
/*
---------------------------------------------

    base settings

*/
:root {
  font-size: 62.5%;
  --s-2: calc(var(--s1) / 2);
  --s1: 0.8rem;
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);
  --s11: calc(var(--s1) * 11);
  --s12: calc(var(--s1) * 12);
}

@media screen and (max-width: 1100px) {
  :root {
    font-size: 0.9090909091vw;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222222;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
  clear: both;
}

ul,
ol,
dl,
p,
img,
form,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
  border: 0;
}

li {
  list-style: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "Helvetica Neue", Arial, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
img.img-height {
  width: auto;
  max-width: inherit;
  height: 100%;
}

a {
  color: #222222;
  transition: opacity 0.6s ease, color 0.6s ease;
  outline: none;
}

a:active {
  color: #222222;
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    color: #222222;
    text-decoration: none;
  }
}
p {
  line-height: 2;
}
p + p {
  margin-top: 1em;
}

strong {
  font-weight: 700;
}

em {
  font-style: italic;
  font-weight: normal;
}

small {
  font-size: 80%;
}

* {
  box-sizing: border-box;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

@media screen and (min-width: 768px) {
  .for-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .for-pc {
    display: none;
  }
}
/*
---------------------------------------------

    animation

*/
@keyframes tabAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loop01 {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/*
---------------------------------------------

    layout center

*/
.l-center {
  max-width: 110rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}
.l-center--narrow {
  max-width: 100rem;
}

/*
---------------------------------------------

    layout stack

*/
.l-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--s4);
}
.l-stack > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/*
---------------------------------------------

    layout cluster

*/
.l-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1) var(--s3);
}

/*
---------------------------------------------

    layout grid

*/
.l-grid {
  --minmum: calc((100% - var(--s5)) / 2);
  display: grid;
  grid-gap: var(--s5);
}

.l-grid-three {
  --minmum: calc((100% - var(--s4) * 2) / 3);
  display: grid;
  grid-gap: var(--s4);
}

.l-grid-four {
  --minmum: calc((100% - var(--s2) * 3) / 4);
  display: grid;
  grid-gap: var(--s2);
}

@supports (width: min(var(--minmum), 100%)) {
  .l-grid,
.l-grid-three,
.l-grid-four {
    grid-template-columns: repeat(auto-fill, minmax(min(var(--minmum), 100%), 1fr));
  }
}
/*
---------------------------------------------

    layout sidebar

*/
.l-sidebar {
  display: flex;
  gap: 6rem;
}
.l-sidebar__side {
  width: 28rem;
}
.l-sidebar__main {
  flex: 1;
}

.sidebar-box {
  position: sticky;
  top: var(--s2);
}

/*
---------------------------------------------

    layout column

*/
.l-column {
  display: flex;
  gap: var(--s5);
}
.l-column__side {
  width: 27rem;
}
.l-column__side02 {
  width: 32rem;
}
.l-column__side03 {
  width: 15rem;
}
.l-column__side04 {
  width: 37rem;
}
.l-column__side05 {
  width: 17rem;
}
.l-column__main {
  flex: 1;
}
.l-column--row-reverse {
  flex-direction: row-reverse;
}
.l-column--align-center {
  align-items: center;
}

/*
---------------------------------------------

    layout grid areas

*/
.l-grid-areas {
  display: grid;
  grid-template-areas: "img catch" "img text";
  grid-template-columns: 22rem 1fr;
  grid-template-rows: auto 1fr;
  grid-gap: 0 var(--s5);
}
.l-grid-areas__cell-01 {
  grid-area: catch;
}
.l-grid-areas__cell-02 {
  grid-area: img;
}
.l-grid-areas__cell-03 {
  grid-area: text;
}
.l-grid-areas--row-reverse {
  grid-template-areas: "catch img" "text img";
  grid-template-columns: 1fr 20rem;
}
.l-grid-areas--align-center {
  grid-template-rows: auto auto;
}
.l-grid-areas--align-center .l-grid-areas__cell-01 {
  place-self: end start;
}
.l-grid-areas--align-center .l-grid-areas__cell-02 {
  place-self: center;
}
.l-grid-areas--align-center .l-grid-areas__cell-03 {
  place-self: start;
}

/*
---------------------------------------------

    layout scroll x

*/
.l-scroll-x {
  width: 100%;
  padding-bottom: var(--s1);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: 0.6rem;
}
.l-scroll-x::-webkit-scrollbar {
  height: 0.6rem;
}
.l-scroll-x::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.l-scroll-x::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

/*
---------------------------------------------

    header 

*/
.header-area {
  width: 9rem;
  height: 100vh;
  padding: var(--s2) 0;
  background: #fff;
  position: fixed;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  border-left: solid 1px #222222;
  z-index: 99;
}
.header-area__name {
  display: inline-block;
  padding: var(--s1);
  font-size: 1.2rem;
  line-height: 1.2;
}
.header-area__name a {
  text-decoration: none;
}
.header-area__sponsor {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.2;
}
.header-area__logo {
  margin: 0 auto;
  width: 7rem;
  height: auto;
}

@media (hover: hover) {
  .header-area__logo a:hover,
.header-area__name a:hover {
    opacity: 0.6;
  }
}
.title-area {
  margin-top: var(--s4);
}
.title-area .l-center {
  padding-bottom: var(--s4);
  position: relative;
}
.title-area .l-center:after {
    content: "";
    width: 46.2rem;
    height: 26.9rem;
    background: url(img/h1-deco-pic.png) no-repeat center / contain;
    position: absolute;
    right: -11rem;
    top: 0;
  z-index: -1;
}

/*
---------------------------------------------

    main-area

*/
.main-area {
  margin-right: 9rem;
  overflow: clip;
}
.main-area--low {
  padding-bottom: var(--s5);
}

body {
  position: relative;
}
body:before {
  content: "";
  width: 177.6rem;
  height: 160rem;
  background: url(img/bg-way.png) no-repeat center top/contain;
  position: absolute;
  left: calc(50% - 130rem);
  top: 0;
  z-index: -1;
}

/*
---------------------------------------------

    main visual

*/
.mainvisual-inner {
  display: flex;
  justify-content: space-between;
}
.mainvisual-inner__pic {
  width: 60rem;
  margin-left: -18rem;
}
.mainvisual__title {
margin: var(--s12) 0 var(--s8);
    font-family: "Shippori Mincho", serif;
    font-size: 4rem;
    color: #2a4c7a;
    letter-spacing: 0.04em;
    line-height: 2;
}
.mainvisual__list {
  margin-left: var(--s8);
  margin-bottom: var(--s4);
}
.mainvisual__list__item {
  margin-bottom: var(--s2);
  padding: 0 0 var(--s1) var(--s5);
  width: fit-content;
  border-bottom: solid 1px #d5d5d5;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  position: relative;
}
.mainvisual__list__item:before {
  content: "";
  width: 2rem;
  height: 1.4rem;
  background: url(img/icon-check.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.5em;
}
.mainvisual__text {
  margin-left: var(--s8);
  margin-bottom: var(--s4);
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  color: #2a4c7a;
	line-height: 1.8;
}
.mainvisual__sponsor {
  margin-left: var(--s8);
color: #6b6b6b;
    line-height: 1.7;
    font-size: 1.4rem;

}
.mainvisual__text {
  flex: 1;
}

/*
---------------------------------------------

    lower parts

*/
#related-article {
  margin: var(--s10) 0;
  padding: var(--s4);
  background: #e7eff5;
}

/* タイトル部分 */
.related-article01-title {
  margin-bottom: var(--s2);
  padding-bottom: var(--s1);
  border-bottom: solid 1px #d5d5d5;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.related-article01-title span {
  display: flex;
  width: 4rem;
  margin-left: var(--s3);
}

/* リスト部分 */
.related-article01-list li {
  padding: 0 0 0 1.8em;
  font-family: "Shippori Mincho", serif;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.related-article01-list li::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(img/arrow-01-white-right.svg) no-repeat center/contain;
  position: absolute;
  top: 0.3em;
  left: 0;
}
.related-article01-list li + li {
  margin-top: 1em;
}

/* リンク部分 */
.related-article01-list a {
  text-decoration: none;
}
.relations-box__body .catch-01 {
    font-family: "Shippori Mincho", serif;
    font-size: 1.8rem;
    line-height: 1.5;
    color: #222222;
}
@media (hover: hover) {
  .related-article01-list a:hover {
    opacity: 0.7;
  }
	.relations-box__body .catch-01 {
    font-size: 1.6rem;
}
}

.box-relation {
  margin: var(--s10) 0;
  padding: var(--s4);
  background: #e7eff5;
}
.box-relation__title {
  margin-bottom: var(--s2);
  padding-bottom: var(--s1);
  border-bottom: solid 1px #d5d5d5;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.box-relation__title span {
  display: flex;
  width: 4rem;
  margin-left: var(--s3);
}
.box-relation__item {
  padding: 0 0 0 1.8em;
  font-family: "Shippori Mincho", serif;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.box-relation__item::before {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(img/arrow-01-white-right.svg) no-repeat center/contain;
  position: absolute;
  top: 0.1em;
  left: 0;
}
.box-relation__item + li {
  margin-top: 1em;
}
.box-relation__link {
  text-decoration: none;
}

@media (hover: hover) {
  .box-relation__link:hover {
    opacity: 0.7;
  }
}
.box-sv {
  margin: var(--s8) 0;
}
.box-sv__title {
  padding: var(--s7) 0;
  display: flex;
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  color: #fff;
  align-items: flex-end;
  position: relative;
}
.box-sv__title:before {
  content: "";
  width: calc((100vw - 110rem - 9rem) / 2 + 100%);
  height: 35rem;
  background: url(img/bg-sponsored.jpg) no-repeat right top/cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.box-sv__title span.tag {
  display: block;
  width: fit-content;
  height: fit-content;
  margin-right: var(--s2);
  padding: var(--s1);
  background: #2a4c7a;
  font-size: 2.4rem;
  color: #fff;
  writing-mode: vertical-rl;
}
.box-sv__title span.name {
  position: relative;
}
.box-sv__title span.name:before {
  content: "";
  width: 30.5rem;
  height: 6.9rem;
  background: url(img/txt-sponsored-by.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -3.5rem;
  z-index: -1;
}
.box-sv__body {
  padding: var(--s4) 0 0 var(--s4);
  background: #fff;
  border-left: solid 1px #d5d5d5;
  border-top: solid 1px #d5d5d5;
}

.box-summary {
  margin: var(--s12) 0;
  padding: var(--s5);
  background: #2a4c7a;
  color: #fff;
  position: relative;
}
.box-summary:before {
  content: "";
  width: 1px;
  height: 10rem;
  background: #809dc4;
  position: absolute;
  left: 50%;
  top: -5rem;
}
.box-summary__title {
  margin-bottom: var(--s2);
  padding-top: var(--s6);
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  z-index: 0;
}
.box-summary__title:before {
  content: "";
  width: 30.5rem;
  height: 9.7rem;
  background: url(img/txt-summary.png) no-repeat center/contain;
  position: absolute;
  left: 50%;
  top: -0.8rem;
  transform: translateX(-50%);
  z-index: -1;
}

.box-sponsored {
  margin: var(--s10) 0;
  padding-right: var(--s3);
  position: relative;
  z-index: 0;
}
.box-sponsored:before {
  content: "";
  width: 100%;
  height: calc(100% - 8rem);
  background: #fffef6;
  border: solid 1px #d5d5d5;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.box-sponsored__title {
  width: fit-content;
  padding: var(--s4) var(--s5);
  background: #2a4c7a;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 4rem;
  line-height: 1.5;
}
.box-sponsored__title span.sm {
  margin-bottom: var(--s1);
  display: block;
  font-size: 2rem;
}
.box-sponsored__title span.sm2 {
  font-size: 3.6rem;
}
.box-sponsored__title span.line {
  border-bottom: solid 1px #fff;
}
.box-sponsored__title--low {
  font-size: 2.4rem;
}
.box-sponsored__body {
  padding: var(--s5) 0 var(--s5) var(--s5);
}
.box-sponsored__pic {
  margin-top: 16rem;
  position: relative;
}
.box-sponsored__pic:before {
  content: "";
  width: 80%;
  height: 80%;
  background: url(img/deco-sv.jpg) no-repeat center/cover;
  position: absolute;
  right: -18%;
  bottom: -11%;
  z-index: -1;
}
.box-sponsored__pic img {
  border-radius: 20rem 20rem 0 0;
}
.box-sponsored__pic__name {
  padding: var(--s1) 0;
  background: #2a4c7a;
  color: #fff;
  font-family: "Shippori Mincho vertical";
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  position: absolute;
  right: -1.6rem;
  bottom: -6.5rem;
}
.box-sponsored__pic__name--sm {
  padding: var(--s1) var(--s-2);
  font-size: 1.8rem;
  right: -1.2rem;
  bottom: -5.5rem;
}
.box-sponsored__pic--02 {
  margin-top: 0;
}
.box-sponsored__pic--nodeco {
  margin-top: 0;
}
.box-sponsored__pic--nodeco:before {
  display: none;
}
.box-sponsored__doctor {
  margin-bottom: var(--s5);
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
}
.box-sponsored__doctor span {
  padding-right: var(--s4);
  margin-right: var(--s1);
  position: relative;
}
.box-sponsored__doctor span:before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: #222222;
  position: absolute;
  right: 0;
  top: 50%;
}
.box-sponsored__corp {
  margin-top: 1.2rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  z-index: 1;
}
.box-sponsored__corp-s {
  margin-top: 1.2rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.5rem;
  z-index: 1;
}
.box-sponsored--low {
  padding-bottom: var(--s4);
}
.box-sponsored--low .box-sponsored__body {
  padding-bottom: 0;
}
.box-sponsored--low .btn-column {
  justify-content: center;
}

.box-interview__q {
  margin: var(--s5) 0;
  min-height: 6rem;
  padding: 0 0 var(--s2) var(--s9);
  border-bottom: solid 1px rgba(213, 213, 213, 0.5);
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  color: #2a4c7a;
  display: flex;
  align-items: center;
  position: relative;
}
.box-interview__q:before {
  content: "";
  width: 5rem;
  height: 5rem;
  background: url(img/icon-q.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}
.box-interview__a {
  margin-bottom: var(--s5);
  min-height: 6rem;
  padding: 0 0 var(--s2) var(--s9);
  border-bottom: solid 1px rgba(213, 213, 213, 0.5);
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  position: relative;
}
.box-interview__a:before {
  content: "";
  width: 5rem;
  height: 5rem;
  background: url(img/icon-a.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
}

.box-comment {
  margin: var(--s10) 0;
  padding: var(--s4);
  background: #fffef6;
  border: solid 1px #d8d8d8;
}

/*
---------------------------------------------

    list

*/
.main-area .subList,
.main-area ul:not([class]) {
  margin: var(--s4) 0;
}
.main-area .subList li,
.main-area ul:not([class]) li {
  padding: 0 0 0 1.2em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
}
.main-area .subList li::before,
.main-area ul:not([class]) li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #2a4c7a;
  border-radius: 10rem;
  position: absolute;
  top: 0.5em;
  left: 0;
}
.main-area .subList li + li,
.main-area ul:not([class]) li + li {
  margin-top: 1em;
}
.main-area ol:not([class]) {
  counter-reset: number;
	margin: var(--s4) 0;
}
.main-area ol:not([class]) li {
  padding: 0 0 0 1.8em;
  font-size: 100%;
  line-height: 1.5;
  position: relative;
  counter-increment: number;
}
.main-area ol:not([class]) li::before {
  content: counter(number);
  width: 1.4em;
    height: 1.4em;
    background: #b3a266;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 2px;
    left: 0;
    font-size: 1.4rem;
}
.main-area ol:not([class]) li + li {
  margin-top: 1em;
}

/*
---------------------------------------------

    btn

*/
.btn-internal {
  margin: var(--s5) auto var(--s8);
  position: relative;
}
.btn-internal a {
  width: 40rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 1.4rem var(--s8);
  border: solid 1px #d5d5d5;
  background: #e7eff5 url("img/arrow-01-blue-right.svg") no-repeat center right var(--s3)/3.4rem auto;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  color: #2a4c7a;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-position 0.4s, opacity 0.4s;
}
.btn-internal--back a {
  max-width: 35rem;
  background-color: #fff;
  background-image: url("img/arrow-01-black-up.svg");
  border: solid 0.2rem #222222;
  color: #222222;
}

@media (hover: hover) {
  .btn-internal a:hover {
    opacity: 0.7;
  }
}
.btn-web {
  margin: var(--s5) auto;
  position: relative;
}
.btn-web a {
  width: 40rem;
  min-height: var(--s9);
  height: 100%;
  margin: 0 auto;
  padding: 1.4rem var(--s9);
  background: #398d78 url("img/icon-window.svg") no-repeat center right var(--s3)/3.4rem auto;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  transition: background-position 0.4s, opacity 0.4s;
}
.btn-web--header {
  margin: auto auto 0;
}
.btn-web--header a {
  width: 7rem;
  height: fit-content;
  padding: var(--s4) 0 var(--s8);
  background-position: center bottom 2rem;
  writing-mode: vertical-rl;
  font-family: "Shippori Mincho vertical";
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-align: start;
  justify-content: flex-start;
text-orientation: upright;
}
.btn-web--header a span.sm {
  display: block;
  font-size: 1.3rem;
  font-weight: 400;
}
.btn-web--youtube a {
  background: #b3a266 url("img/icon-youtube.svg") no-repeat center right var(--s3)/3.4rem auto;
}

@media (hover: hover) {
  .btn-web a:hover {
    opacity: 0.7;
  }
}
.btn-link {
  margin: var(--s2) auto;
  text-align: right;
}
.btn-link a {
  margin: 0;
  padding: var(--s-2) 3.4rem var(--s-2) 0;
  background: url("img/arrow-01-white-right.svg") no-repeat center right/2.4rem auto;
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  color: #2a4c7a;
  line-height: 1.5;
  text-decoration: none;
}
.btn-link--white a {
  color: #fff;
}

@media (hover: hover) {
  .btn-link a:hover {
    text-decoration: none;
    opacity: 0.6;
  }
}
.btn-tel {
  display: none;
}

.btn-column {
  margin: var(--s4) 0 var(--s2);
  display: flex;
  gap: var(--s3);
}
.btn-column .btn-internal,
.btn-column .btn-web {
  margin: 0;
}
.btn-column .btn-internal a,
.btn-column .btn-web a {
  max-width: 32rem;
}

/*
---------------------------------------------

    table

*/
table {
  width: 100%;
  margin: var(--s3) 0;
  border-collapse: collapse;
  border-top: 1px solid #c7c7c7;
  border-left: 1px solid #c7c7c7;
}

th,
td {
  padding: var(--s2);
  border-right: solid 1px #c7c7c7;
  border-bottom: solid 1px #c7c7c7;
  line-height: 1.5;
  word-break: break-all;
}

th {
  background: #f3efec;
}

td {
  background: #fff;
}

tbody th {
  background: #f3efec;
}

.l-scroll-x table {
  width: inherit;
}
.l-scroll-x table th,
.l-scroll-x table td {
  min-width: 20rem;
}

/*
---------------------------------------------

    caption

*/
.caption {
  margin-top: 0.8em;
  display: block;
  color: #999;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
}
.caption a {
  color: #999;
}
.caption--left {
  text-align: left;
}

.caption-scroll {
  margin-top: 0.8em;
  color: #999;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  word-break: break-all;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-color: #ddd transparent;
  scrollbar-width: thin;
}
.caption-scroll a {
  color: #999;
}
.caption-scroll::-webkit-scrollbar {
  height: 0.6rem;
}
.caption-scroll::-webkit-scrollbar-track {
  border-radius: 0.3rem;
  background: #eee;
}
.caption-scroll::-webkit-scrollbar-thumb {
  border-radius: 0.3rem;
  background: #ddd;
}

/*
---------------------------------------------

	catch

*/
.catch {
  margin-bottom: var(--s4);
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  line-height: 1.8;
  color: #2a4c7a;
	border-bottom: solid 1px #d5d5d5;
    padding-bottom: var(--s2);
}

.catch-01 {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  line-height: 1.5;
  color: #2a4c7a;
}

.catch-02 {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #398d78;
}

/*
---------------------------------------------

	text

*/
.marker {
  background: linear-gradient(transparent 70%, #ebdeb3 70%);
  font-weight: 700;
}

.txt_bold {
  font-weight: 700;
  color: #398d78;
}

/*
---------------------------------------------

	subgrid card

*/
.subgrid-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  grid-gap: var(--s2);
}

/*
---------------------------------------------

    float wrap

*/
.float-wrap {
  display: flow-root;
  margin: var(--s4) 0;
}
.float-wrap .float-img.fr {
  width: 30rem;
  margin-left: var(--s5);
  margin-bottom: var(--s2);
  float: right;
}
.float-wrap .float-img.fl {
  width: 30rem;
  margin-right: var(--s5);
  margin-bottom: var(--s2);
  float: left;
}
.float-wrap .float-img.ct {
  width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s2);
}

/*
---------------------------------------------

	pankuzu

*/
#pankuzu {
  width: 100%;
  margin: var(--s3) auto var(--s6);
  padding: var(--s1) 0;
  border-top: solid 1px #d5d5d5;
  border-bottom: solid 1px #d5d5d5;
  font-size: 1.2rem;
  color: #4d4d4d;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
#pankuzu a {
  color: #4d4d4d;
  text-decoration: none;
}

/*
---------------------------------------------

    footer

*/
.footer-area {
  margin-right: 9rem;
  padding: 9rem 0 0;
  background: #2a4c7a;
}

.footer-about {
  margin-bottom: var(--s8);
  padding: var(--s3) var(--s5);
  border-radius: 1rem;
  background: #fff;
  align-items: center;
}
.footer-about__side {
  width: 16rem;
}
.footer-about__main {
  padding-left: var(--s6);
  border-left: solid 1px #2a4c7a;
}
.footer-about__title {
  margin-bottom: var(--s2);
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
}
.footer-about__p {
  font-size: 1.3rem;
}
.footer-about .btn-link {
  margin: var(--s1) 0 0 auto;
}

.footer-main {
  max-width: 100rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--s3);
  padding-left: var(--s3);
  box-sizing: content-box;
}

.footer-bottom {
  padding: var(--s1) 0;
  background: #e7eff5;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  width: 13rem;
  margin: 0 auto;
}
.footer-logo__link {
  display: block;
}

@media (hover: hover) {
  .footer-logo__link:hover {
    opacity: 0.6;
  }
}
.footer-box + .footer-box {
  margin-top: var(--s5);
}

.footer-menu-title {
  margin-bottom: var(--s1);
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.5;
  border-bottom: 1px solid #909090;
}
.footer-menu-title__link {
  padding: var(--s1) 0;
  display: block;
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-menu-title__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.footer-menu__item {
  width: calc((100% - var(--s2) * 3) / 4);
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.5;
}
.footer-menu__link {
  padding: var(--s1);
  display: block;
  text-decoration: none;
  color: #fff;
}

@media (hover: hover) {
  .footer-menu__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.footer-menu-sub {
  margin-left: var(--s1);
}
.footer-menu-sub__item {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.5;
}
.footer-menu-sub__link {
  padding: var(--s-2) var(--s-2) var(--s-2) 1.2em;
  display: block;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.footer-menu-sub__link::before {
  content: "-";
  position: absolute;
  top: var(--s-2);
  left: 0;
}

@media (hover: hover) {
  .footer-menu-sub__link:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.footer-disclaimer {
  width: 70rem;
  margin: var(--s5) auto;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
}
.footer-disclaimer__label {
  display: inline;
}
.footer-disclaimer__text {
  display: inline;
}

.footer-nocopy {
  margin: var(--s5) 0;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

.footer-copyright {
  font-size: 1.2rem;
}
.footer-copyright__link {
  text-decoration: none;
}

@media (hover: hover) {
  .footer-copyright__link:hover {
    text-decoration: underline;
  }
}
.footer-sitemap {
  margin: 0;
  font-size: 1.2rem;
}
.footer-sitemap__link {
  text-decoration: none;
}

@media (hover: hover) {
  .footer-sitemap__link:hover {
    text-decoration: underline;
  }
}
/*
---------------------------------------------

    gnavi

*/
.gnavi-btn {
  width: 7rem;
  height: 7rem;
  display: block;
  background: url(img/txt-menu.png) no-repeat center bottom/4rem auto;
  position: fixed;
  bottom: 56%;
  right: 1rem;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: 3.6rem;
  height: 1px;
  display: inline-block;
  background: #32373c;
  position: absolute;
  left: 1.6rem;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 2.3rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 3.4rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 4.5rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(1.1rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  display: none;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-1.1rem) rotate(45deg);
}

.gnavi-area {
  width: 38rem;
  height: 100vh;
  margin-right: 9rem;
  padding: 7rem 0;
  background: #e7eff5;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
}
.gnavi-area__logo {
  width: 18rem;
  margin: 0 auto var(--s2);
}

.gnavi-box__title {
  padding: 1.2rem var(--s6) 1.2rem var(--s2);
  border-bottom: 1px solid #999;
  line-height: 1.5;
  display: block;
  cursor: pointer;
  transition: opacity 0.5s;
  position: relative;
}
.gnavi-box__title::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url("img/arrow-03-black-down.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%) rotate(0);
  transition: transform 0.3s;
}
.gnavi-box__title:hover {
  opacity: 1;
}
.gnavi-box__title.is-open::after {
  transform: translate(0, -50%) rotate(180deg);
}
.gnavi-box__content {
  background: rgba(255, 255, 255, 0.4);
}
.gnavi-box:first-child {
  border-top: 1px solid #999;
}

.gnavi-menu__item,
.gnavi-menu-sub__item {
  position: relative;
}
.gnavi-menu__item::before,
.gnavi-menu-sub__item::before {
  content: "└";
  position: absolute;
  top: var(--s2);
  left: var(--s2);
}
.gnavi-menu__link,
.gnavi-menu-sub__link {
  padding: 1.2rem var(--s2) 1.2rem var(--s5);
  display: block;
  line-height: 1.5;
  text-decoration: none;
}
.gnavi-menu__link:hover,
.gnavi-menu-sub__link:hover {
  opacity: 0.6;
}

.gnavi-menu__item {
  border-bottom: 1px solid #999;
}

.gnavi-menu-sub__item {
  border-top: 1px solid #999;
}

.is-gnavi-open .gnavi-area {
  opacity: 1;
  transform: translateX(0);
}

/*
---------------------------------------------

    page

*/
.page-top {
  width: 5rem;
  height: 5rem;
  position: fixed;
  right: 9rem;
  bottom: 4rem;
  z-index: 9;
  overflow: hidden;
}
.page-top__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (hover: hover) {
  .page-top__link:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    toggle sp

*/
.toggle-sp-content {
  display: block;
}

/*
---------------------------------------------

    toggle

*/
.toggle-btn {
  line-height: 1.5;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.toggle-btn::before {
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  background: url(img/toggle-bg.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.toggle-btn::after {
  content: "";
  width: 0.3rem;
  height: 2.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.toggle-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

.toggle-content {
  display: none;
}

/*
---------------------------------------------

    more

*/
.more-btn {
  max-width: 37rem;
  margin: var(--s5) auto;
  padding: var(--s3) var(--s7);
  background: #000;
  border: 0.2rem solid #000;
  border-radius: 10rem;
  color: #fff;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
  cursor: pointer;
}
.more-btn::before {
  content: "";
  width: 2.6rem;
  height: 0.4rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translate(0, -50%);
}
.more-btn::after {
  content: "";
  width: 0.4rem;
  height: 2.6rem;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 3.5rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more-btn.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}

@media (hover: hover) {
  .more-btn:hover {
    opacity: 0.6;
    color: #fff;
  }
}
.more-content {
  display: none;
}

/*
---------------------------------------------

    グラデーション  more-content

*/
.more__content {
  position: relative;
  height: auto;
  max-height: 13rem;
  overflow: hidden;
  transition: max-height 1s;
  z-index: 0;
}

.more__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: linear-gradient(to bottom, transparent 0%, #fff 100%);
}

.more__content.open {
  height: auto;
}

.more__content.open:after {
  z-index: -1;
  opacity: 0;
}

.more__content.sp-only {
  overflow: initial;
  max-height: initial;
}

.more__content.sp-only:after {
  content: none;
}

.more__btn {
  width: 12rem;
  min-width: 9rem;
  display: block;
  margin: 0 auto;
  padding: 0.4rem 3rem 0.4rem var(--s1);
  border-radius: 0.6rem;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  transition: opacity 0.3s;
}
.more__btn::before {
  content: "";
  width: 1.6rem;
  height: 0.2rem;
  background: #398d78;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.more__btn::after {
  content: "";
  width: 0.2rem;
  height: 1.6rem;
  background: #398d78;
  position: absolute;
  top: 50%;
  right: 0.7rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.more__btn--02:before {
  background-color: #fff;
}
.more__btn--02:after {
  background-color: #fff;
}

.more__btn.is-open::after {
  transform: translate(0, -50%) rotate(90deg);
}

.more__btn--02.is-open::before {
  background-image: url(img/more-close.png);
}

.more__btn.for-sp {
  display: none;
}

/*
---------------------------------------------

    sidebar

*/
.sidebanner {
  display: block;
  margin-bottom: var(--s5);
  padding: var(--s2);
  background: url(img/bg-banner.jpg) no-repeat center/cover;
  border-radius: var(--s2);
  text-decoration: none;
  font-family: "Shippori Mincho", serif;
  font-size: 1.7rem;
  color: #fff;
}
.sidebanner span {
  font-size: 2.6rem;
}
.sidebanner__img {
  margin-bottom: var(--s1);
  padding: var(--s1);
  border-radius: var(--s1);
  background: #fff;
  text-align: center;
}
.sidebanner__img img {
  width: 10rem;
}

@media (hover: hover) {
  .sidebanner:hover {
    opacity: 0.6;
	  color: #fff;
  }
}
.sidebar-box__title {
  padding-bottom: var(--s2);
  margin-bottom: var(--s3);
  border-bottom: solid 1px #2a4c7a;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  display: flex;
  align-items: center;
}
.sidebar-box__title span {
  display: flex;
  width: 4rem;
  margin-left: var(--s3);
}
.sidebar-box__inner {
  margin-top: var(--s3);
  padding: var(--s3);
  border: solid 1px #d5d5d5;
  background: #fff;
}

li.chapter-h-two {
  font-size: 1.5rem;
	position: relative;
    padding-left: 1.2rem;
}
li.chapter-h::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background: #2a4c7a;
    border-radius: 10rem;
    position: absolute;
    top: 0.5em;
    left: 0;
}
li.chapter-h-two + li {
  margin-top: var(--s2);
}
li.chapter-h-two a {
  text-decoration: none;
}

@media (hover: hover) {
  li.chapter-h-two a:hover {
    opacity: 0.6;
  }
}
/*
---------------------------------------------

    titles

*/
.pr-text {
  font-size: 1.4rem;
  color: #707070;
}

.main-area h1,
.main-area h2,
.main-area h3,
.main-area h4,
.main-area h5,
.main-area h6 {
  font-family: "Shippori Mincho", serif;
  word-wrap: break-word;
	letter-spacing: 0.04em;
	line-height: 1.6;
}
.main-area--low h1 a,
.main-area--low h2 a,
.main-area--low h3 a,
.main-area--low h4 a,
.main-area--low h5 a,
.main-area--low h6 a {
  display: block;
  padding-right: var(--s5);
  text-decoration: none;
}

@media (hover: hover) {
  .main-area h2 a:hover,
.main-area h3 a:hover,
.main-area h4 a:hover,
.main-area h5 a:hover,
.main-area h6 a:hover {
    opacity: 0.6;
  }
}
h1:not([class]) {
  max-width: 74.7rem;
  min-height: 18.8rem;
  margin: 0 auto var(--s3) 0;
  padding: var(--s6) 0 0;
  font-size: 4.4rem;
  color: #2a4c7a;
  display: flex;
  align-items: center;
  position: relative;
}
h1:not([class]):before {
  content: "";
  width: 47.4rem;
  height: 10.9rem;
  background: url(img/h1-deco.png) no-repeat center/contain;
  position: absolute;
  left: -5rem;
  top: 0;
  z-index: -1;
}

.main-area--low h2:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding: var(--s2) var(--s4);
  font-size: 3rem;
  background: url(img/h2-deco.png) no-repeat left -0.5rem top -0.5rem/5.5rem auto, url(img/h2-bg.jpg) no-repeat right center/29.8rem auto, #2a4c7a;
  color: #fff;
}
.main-area--low h2:not([class]) a {
  background: url(img/arrow-01-blue-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
  color: #fff;
}
.main-area--low h3:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding: 0 0 var(--s1) var(--s2);
  border-bottom: solid 1px #d5d5d5;
  border-left: solid 1px #d5d5d5;
  font-size: 2.4rem;
}
.main-area--low h3:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
}
.main-area--low h4:not([class]),
.main-area--low h5:not([class]) {
  margin: var(--s5) auto var(--s3);
  padding: 0.2rem 0 var(--s1) 0;
  font-size: 2.2rem;
  color: #2a4c7a;
  position: relative;
	border-bottom: 1px solid #d5d5d5;
}
.main-area--low h4:not([class]):before,
.main-area--low h5:not([class]):before {
  content: "";
  width: 4rem;
  height: 0.3rem;
  background: #2a4c7a;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-area--low h4:not([class]) a,
.main-area--low h5:not([class]) a {
  background: url(img/arrow-01-white-right.svg) no-repeat right center;
  background-size: 2.2rem auto;
  color: #2a4c7a;
}
.main-area--low h6:not([class]) {
  margin: var(--s5) auto var(--s3);
  font-size: 1.7rem;
}
.main-area--low .icon-title {
  margin: var(--s10) 0 var(--s5);
  padding: var(--s2);
  background: #222222;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
}
.main-area--low .icon-title:after {
  content: "";
  width: 100%;
  height: 100%;
  border-right: solid 1px #222222;
  border-bottom: solid 1px #222222;
  position: absolute;
  right: -0.8rem;
  bottom: -0.8rem;
}
.main-area--low .icon-title--check:before {
  content: "";
  width: 18.9rem;
  height: 4.7rem;
  background: url(img/icon-check-title.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -4.4rem;
}
.main-area--low .icon-title--point:before {
  content: "";
  width: 16.8rem;
  height: 4.7rem;
  background: url(img/icon-point.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: -4.4rem;
}

/*
---------------------------------------------

    TOP common

*/
section {
  padding: var(--s10) 0;
}

.common-title {
  margin-bottom: var(--s4);
  padding-bottom: 7rem;
  font-family: "Shippori Mincho", serif;
  font-size: 4.8rem;
  color: #2a4c7a;
  text-align: center;
  position: relative;
}
.common-title:after {
  content: "";
  width: 1px;
  height: 4.8rem;
  background: #2a4c7a;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.common-title span.sm {
  margin-bottom: var(--s1);
  display: block;
  font-size: 3.8rem;
  color: #222222;
}
.common-title span.sm2 {
  margin-bottom: var(--s1);
  display: block;
  font-size: 3.4rem;
  color: #222222;
}
.common-title a {
  padding-right: var(--s6);
  text-decoration: none;
  display: inline-block;
  background: url(img/arrow-02-black-right.svg) no-repeat right center/3.8rem auto;
}
.common-title--noline {
  padding-bottom: 0;
}
.common-title--noline:after {
  display: none;
}
.common-title--left {
  padding-bottom: 0;
  text-align: left;
}
.common-title--left:after {
  display: none;
}

.common-lead {
  margin: var(--s4) 0;
  text-align: center;
}
.common-lead--right {
  text-align: right;
}
.common-lead--left {
  text-align: left;
}

.txt-center {
  margin-bottom: var(--s-2);
  text-align: center;
}

/*
---------------------------------------------

    TOP section

*/
.sec-navigation {
  display: flex;
  align-items: flex-end;
  gap: var(--s5);
  margin-bottom: var(--s6);
}
.sec-navigation__title {
  font-family: "Shippori Mincho vertical";
  font-size: 2.4rem;
  writing-mode: vertical-rl;
}
.sec-navigation__title span {
  display: inline-block;
  margin-right: 0.4rem;
  padding: var(--s1) 0;
  background: #2a4c7a;
  color: #fff;
  letter-spacing: 0.1em;
}
.sec-navigation__body {
  flex: 1;
  padding-top: var(--s12);
}
.sec-navigation__link {
  display: block;
  padding: var(--s2) var(--s3) var(--s5);
  background: linear-gradient(to bottom, #e7eff5 0%, #fbf9ed 90%);
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  text-decoration: none;
  text-align: center;
  position: relative;
}
.sec-navigation__link:before {
  content: "";
  width: 3.4rem;
  height: 3.4rem;
  background: url(img/arrow-01-white-down.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: -1.6rem;
  transform: translateX(-50%);
}

@media (hover: hover) {
  .sec-navigation__link:hover {
    opacity: 0.6;
  }
}
.sec-why {
  padding: 28rem 0 0;
  background: url(img/txt-transition.png) no-repeat center top var(--s10)/auto 16.9rem;
  position: relative;
}
.sec-why:before {
  content: "";
  width: 100%;
  height: 81.5rem;
  background: #e7eff5;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec-why__nav {
  margin-bottom: 15rem;
}
.sec-why__item {
  padding-top: var(--s11);
  position: relative;
}
.sec-why__item + .sec-why__item {
  margin-top: 13rem;
}
.sec-why__body {
  max-width: 68rem;
  padding: var(--s10) var(--s5) var(--s8) var(--s11);
  position: relative;
  z-index: 0;
}
.sec-why__body:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #fff;
  border-top: solid 1px #d5d5d5;
  border-right: solid 1px #d5d5d5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec-why__body__tag {
  font-family: "Shippori Mincho vertical";
  font-size: 2rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
  position: absolute;
  left: 0;
  top: -5rem;
}
.sec-why__body__tag span {
  display: inline-block;
  margin-bottom: var(--s1);
  padding: var(--s1) 0;
  background: #2a4c7a;
  color: #fff;
  font-size: 2.4rem;
}
.sec-why__body__title {
  margin-bottom: var(--s5);
  font-family: "Shippori Mincho", serif;
  font-size: 4rem;
  color: #2a4c7a;
}
.sec-why__body--01:after {
  content: "1";
  font-family: "Shippori Mincho", serif;
  font-size: 26rem;
  position: absolute;
  right: var(--s4);
  top: 0;
  color: #f6f6f0;
  line-height: 1;
  z-index: -1;
}
.sec-why__body--02 {
  margin-left: auto;
  margin-right: 0;
  padding-right: 0;
  padding-left: 13rem;
}
.sec-why__body--02:before {
  left: 0;
  right: auto;
  border-right: none;
  border-left: solid 1px #d5d5d5;
}
.sec-why__body--02:after {
  content: "2";
  font-family: "Shippori Mincho", serif;
  font-size: 26rem;
  position: absolute;
  right: -1rem;
  top: 0;
  color: #f6f6f0;
  line-height: 1;
  z-index: -1;
}
.sec-why__body--02 .sec-why__body__tag {
  left: var(--s5);
}
.sec-why__body--03:after {
  content: "3";
  font-family: "Shippori Mincho", serif;
  font-size: 26rem;
  position: absolute;
  right: var(--s4);
  top: 0;
  color: #f6f6f0;
  line-height: 1;
  z-index: -1;
}
.sec-why__body .caption {
  margin-top: var(--s4);
}
.sec-why__pic {
  width: calc(50vw - 4.5rem);
  max-width: 83rem;
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
}
.sec-why__pic--left {
  left: auto;
  right: 50%;
}

.card-photo {
  margin-top: var(--s7);
  display: block;
  padding: var(--s6) var(--s2);
  background: url(img/bg-card-photo-1.jpg) no-repeat center/cover;
  text-decoration: none;
  position: relative;
	border: solid 1px #d5d5d5;
}
.card-photo:before {
  content: "";
  width: 4.8rem;
  height: 4.8rem;
  background: url(img/arrow-01-white-down.svg) no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: -2.4rem;
  transform: translateX(-50%);
}
.card-photo__num {
  width: 6rem;
  height: 6rem;
  font-family: "Shippori Mincho", serif;
  font-size: 3.6rem;
  line-height: 1;
  color: #2a4c7a;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: -4rem;
  transform: translateX(-50%);
}
.card-photo__num:after {
    content: "";
    width: 1px;
    height: 1.8rem;
    background: #c7c7c7;
    position: absolute;
    left: 50%;
    top: 100%;
}
.card-photo__title {
  margin-bottom: var(--s3);
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  text-align: center;
	text-shadow: #ffffff 1px 0 10px;
    color: #2a4c7a;
}
.card-photo:nth-of-type(2) {
  background-image: url(img/bg-card-photo-2.jpg);
}
.card-photo:nth-of-type(3) {
  background-image: url(img/bg-card-photo-3.jpg);
}
.card-photo p {
  padding: 0 var(--s3);
  text-align: center;
}

@media (hover: hover) {
  .card-photo:hover {
    opacity: 0.6;
  }
}
.bg-grade {
  margin-top: 10rem;
  padding: 14rem 0 0;
  background: linear-gradient(to bottom, #e7eff5 0%, #fbf9ed 80%, transparent 100%);
  position: relative;
  z-index: 0;
}
.bg-grade:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(img/bg-sec02-left.png) no-repeat left top/auto 46.8rem, url(img/bg-sec02-right.png) no-repeat right top/auto 46.8rem;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.subtitle-center {
  width: fit-content;
  margin: var(--s9) auto var(--s11);
  padding-bottom: var(--s1);
  border-bottom: solid 1px #2a4c7a;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  text-align: center;
  position: relative;
}
.subtitle-center:after {
  content: "";
  width: 1px;
  height: 4.8rem;
  background: #2a4c7a;
  position: absolute;
  left: 50%;
  top: 100%;
}

.card-voice {
  width: 28rem;
  padding: var(--s3);
  border-radius: 2rem;
  border: solid 1px #c7c7c7;
  background: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  text-align: center;
}
.card-voice-area01 {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s10);
  justify-content: center;
}
.card-voice-area02 {
  margin-top: var(--s7);
  padding: 0 var(--s3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.bg-people {
  padding-bottom: 11rem;
  background: url(img/bg-sec02-circle.png) no-repeat center bottom/auto 55rem;
}

.bg-way {
  padding-top: 0;
  background: url(img/txt-external.png) no-repeat;
  background-size: auto 28.8rem;
  background-position: left calc(50% + 28rem) top 12rem;
}
.bg-way .l-center {
  padding-top: 48rem;
  position: relative;
}
.bg-way .l-center:before {
  content: "";
  width: 172rem;
  height: 184.5rem;
  background: url(img/bg-way-02.png) no-repeat center/contain;
  position: absolute;
  left: -10rem;
  top: -17rem;
  z-index: -1;
}

.sec03-titleblock {
  margin-top: 9rem;
  padding-left: var(--s10);
  border-top: solid 1px #d8d8d8;
  position: relative;
}

.sec03-subtitle {
  padding: var(--s2) 0 0;
  font-family: "Shippori Mincho", serif;
  font-size: 3.4rem;
  color: #2a4c7a;
}
.sec03-subtitle span.st {
  font-size: 4.2rem;
}
.sec03-subtitle-tag {
  font-family: "Shippori Mincho vertical";
  font-size: 2.6rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
  position: absolute;
  left: 0;
  top: -6rem;
	text-orientation: upright;
}
.sec03-subtitle-tag span {
  margin-bottom: var(--s1);
  padding: var(--s1) 0;
  background: #2a4c7a;
  color: #fff;
}

.graph-area {
  margin-top: -7rem;
  padding-bottom: var(--s10);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: 3%;
  position: relative;
}
.graph-area:before {
  content: "";
  width: 82.4rem;
  height: 61.5rem;
  background: url(img/bg-sec03-deco.jpg) no-repeat center/contain;
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: -1;
}

.card-graph {
  width: 48.5%;
}
.card-graph:nth-of-type(2) {
    margin-top: 24rem;
}
.card-graph:nth-of-type(3) {
    margin-top: -18rem;
}
.card-graph__tag span {
  display: inline-block;
  padding: var(--s-2) var(--s2);
  background: #b3a266;
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
}
.card-graph__body {
  padding: var(--s4) 0 0 var(--s4);
  border-top: solid 1px #d5d5d5;
  border-left: solid 1px #d5d5d5;
}
.card-graph__title {
  margin: var(--s2) 0;
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  color: #2a4c7a;
}

.sec-summary {
  margin: 1rem 0 var(--s8);
  padding: var(--s7) 0;
  border-top: solid 1px #2a4c7a;
  border-bottom: solid 1px #2a4c7a;
}
.sec-summary__text {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  color: #2a4c7a;
}

.bg-grade02 {
  padding: 12rem 0 var(--s3);
  background: linear-gradient(to bottom, #e7eff5 0%, #fbf9ed 100%);
  position: relative;
  z-index: 0;
}

.sec04-titleblock {
  padding: var(--s12) var(--s5) var(--s5);
  position: relative;
}
.sec04-titleblock:before {
  content: "";
  width: 100vw;
  height: 80rem;
  background: #2a4c7a;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.sec04-titleblock .common-title {
  color: #fff;
  font-size: 5.2rem;
}
.sec04-titleblock .common-title span {
  color: #fff;
}

.sec04-leadblock {
  padding: var(--s8) var(--s5) var(--s8);
  padding-right: var(--s11);
  background: #fff;
  z-index: 0;
  position: relative;
}
.sec04-leadblock:before {
  content: "";
  width: 50%;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 100%;
  top: 0;
}
.sec04-leadblock .l-column__side03 {
  margin-top: -18rem;
}

.second-column {
  margin-top: var(--s5);
}

.sec04-body {
  margin-top: 8rem;
  padding: var(--s10) 0 var(--s8);
  position: relative;
  z-index: 0;
}
/*
.sec04-body:before {
  content: "";
  width: 100vw;
  height: calc(100% - var(--s4));
  background: #fff;
  position: absolute;
  left: -6rem;
  bottom: 0;
  z-index: -1;
}
*/
.sec04-body__tag {
  font-family: "Shippori Mincho vertical";
  font-size: 2.8rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.15em;
  position: absolute;
  left: 0;
  top: 0;
}
.sec04-body__tag span {
  margin-bottom: var(--s1);
  padding: var(--s1) 0;
  background: #2a4c7a;
  color: #fff;
}
.sec04-body__pic {
max-width: 100rem;
    padding: 1rem 0 2rem 11rem;
    border-top: 1px solid #d5d5d5;
    text-align: center;
    padding-top: 2rem;
}

.sec04-subtitle {
  margin: var(--s7) auto;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 3.6rem;
}

.card-management {
  padding: var(--s3);
  padding-top: var(--s5);
  background: #e7eff5;
  position: relative;
  grid-row: span 3;
}
.card-management__tag {
  display: inline-block;
  padding: 0 var(--s2) var(--s-2);
  background: #b3a266;
  position: absolute;
  left: 0;
  top: 0;
}
.card-management__tag img {
  width: 7.2rem;
}
.card-management__title {
  margin-bottom: var(--s2);
  font-family: "Shippori Mincho", serif;
  font-size: 2.8rem;
  color: #2a4c7a;
  text-align: center;
}

.bg-photo02 {
  padding-top: 42rem;
  background: url(img/bg-sec05.jpg) no-repeat center top 10rem/auto 27rem;
}

.box-story {
  padding: var(--s4);
  border-top: solid 1px #d5d5d5;
  border-left: solid 1px #d5d5d5;
  background: url(img/bg-sec05-box.jpg) no-repeat center/cover;
}
.box-story__titlebox {
  margin-bottom: var(--s5);
  padding-bottom: var(--s2);
  display: flex;
  gap: var(--s3);
  align-items: center;
  border-bottom: solid 1px #d5d5d5;
}
.box-story__titlebox .number {
  width: 8.7rem;
  height: 8.7rem;
  padding-top: 3.8rem;
  background: #b3a266 url(img/txt-story.png) no-repeat center top var(--s1)/5.2rem auto;
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  line-height: 1;
  color: #fff;
  display: flex;
  justify-content: center;
}
.box-story__title {
  font-family: "Shippori Mincho", serif;
  font-size: 3.2rem;
  color: #2a4c7a;
  flex: 1;
}
.box-story__catch {
  margin: var(--s2) 0 var(--s1);
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  color: #2a4c7a;
line-height: 1.6;
    border-left: 1px solid #2a4c7a;
    padding-left: 1.4rem;
}
.box-story__pic {
  width: 13rem;
  position: relative;
	border: 1px solid #2a4c7a;
    border-radius: 84px;
}
.box-story__prof {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  background: #e7eff5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
  text-align: center;
}
.box-story + .box-story {
  margin-top: var(--s8);
}
.box-story--low {
  margin: var(--s5) 0;
}

.bg-grade03 {
  padding: 24rem 0 0;
  background: url(img/txt-learnmore.png) no-repeat center top var(--s6)/auto 16.9rem;
  position: relative;
}
.bg-grade03:before {
  content: "";
  width: 100%;
  height: 93rem;
  background: linear-gradient(to bottom, #e7eff5 0%, #fbf9ed 90%, #fff 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.sec06-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem var(--s3);
}
.sec06-list__item {
  display: block;
  width: calc((100% - var(--s3) * 2) / 3);
  padding: var(--s2) var(--s3);
  border: solid 1px #2a4c7a;
  background: #fff url(img/arrow-01-blue-down.svg) no-repeat right var(--s1) center/3.2rem auto;
  border-radius: 1.2rem;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  text-decoration: none;
  position: relative;
}
.sec06-list__item:before {
  content: "1";
  font-family: "Shippori Mincho", serif;
  font-size: 2.7rem;
  color: #b3a266;
  position: absolute;
  left: var(--s2);
  top: 50%;
  transform: translateY(-50%);
}
.sec06-list__item:after {
  content: "";
  width: 1.8rem;
  height: 1px;
  background: #b3a266;
  position: absolute;
  left: 4rem;
  top: 50%;
}
.sec06-list__item:nth-of-type(2):before {
  content: "2";
}
.sec06-list__item:nth-of-type(3):before {
  content: "3";
}
.sec06-list__item:nth-of-type(4) {
  min-width: 39rem;
}
.sec06-list__item:nth-of-type(4):before {
  content: "4";
}
.sec06-list__item:nth-of-type(5) {
  min-width: 39rem;
}
.sec06-list__item:nth-of-type(5):before {
  content: "5";
}

@media (hover: hover) {
  .sec06-list__item:hover {
    opacity: 0.6;
  }
}
#sec06-1 {
  margin-top: var(--s10);
}

.sec06-cont__titleblock {
  padding: 10rem 0 5rem;
  position: relative;
}
.sec06-cont__titleblock:before {
  content: "";
  width: calc(100% + (100vw - 100%) / 2);
  height: 47rem;
  background: url(img/bg-sec06-1.jpg) no-repeat right center/cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.sec06-cont__body {
  padding: var(--s6);
  background: #fff;
}

.sec06-subtitle {
  padding-top: 10rem;
  font-family: "Shippori Mincho", serif;
  font-size: 4.4rem;
  color: #2a4c7a;
}
.sec06-subtitle a {
    color: #2a4c7a;
    text-decoration: none;
}
.sec06-subtitle--01 {
  background: url(img/txt-ma-basic.png) no-repeat left top/auto 8.1rem;
}
.sec06-subtitle--02 {
  margin-left: 50%;
  margin-bottom: var(--s7);
  background: url(img/txt-concerns.png) no-repeat left top/auto 8.1rem;
}
.sec06-subtitle--03 {
  margin-bottom: var(--s7);
  background: url(img/txt-by-medical.png) no-repeat center top/auto 8.1rem;
  text-align: center;
}
.sec06-subtitle--04 {
  margin-bottom: var(--s7);
  background: url(img/txt-exit.png) no-repeat left top/auto 8.1rem;
}
.sec06-subtitle--05 {
  width: fit-content;
  margin: 0 0 0 auto;
  background: url(img/txt-community.png) no-repeat left top/auto 8.1rem;
}

.card-knowledge {
  padding: var(--s4) 0;
  border-bottom: solid 1px #d5d5d5;
  grid-row: span 2;
}
.card-knowledge__title {
  min-height: 8.9rem;
  margin-bottom: var(--s2);
  padding: 0 var(--s4) 0 11.8rem;
  background: url(img/arrow-01-white-right.svg) no-repeat right center/2.4rem auto;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
  color: #2a4c7a;
  position: relative;
  display: flex;
  align-items: center;
}
.card-knowledge__title:hover {
    opacity: 0.6;
    transition: opacity 0.6s ease, color 0.6s ease;
}
.card-knowledge__title:before {
  content: "";
  width: 9.4rem;
  height: 8.9rem;
  background: url(img/icon-basic-box-1.png) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.card-knowledge__title a {
  text-decoration: none;
  display: block;
  position: absolute;
  top: 0;
  left: 22%;
    width: 78%;
  height: 100%;
  z-index: 2;
}

}
.card-knowledge__title--02:before {
  background-image: url(img/icon-basic-box-1.png);
}
.card-knowledge__title--03:before {
  background-image: url(img/icon-basic-box-1.png);
}
.card-knowledge__title--04:before {
  background-image: url(img/icon-basic-box-1.png);
}
.card-knowledge__title--05:before {
  background-image: url(img/icon-basic-box-1.png);
}
.card-knowledge__title--06:before {
  background-image: url(img/icon-basic-box-1.png);
}
.card-knowledge__title--07:before {
  background-image: url(img/icon-basic-box-1.png);
}
.card-knowledge__text {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #222222;
}

#sec06-2 {
  margin-top: var(--s10);
  position: relative;
  z-index: 0;
}
#sec06-2:before {
  content: "";
  width: calc(100vw - 9rem);
  min-height: 200rem;
  background: url(img/bg-way-03.png) no-repeat center top/100% auto;
  position: absolute;
  left: 50%;
  top: -25rem;
  z-index: -1;
  transform: translateX(-50%);
}

.sec06-2-list {
  --minmum: calc((100% - var(--s8)) / 2);
  grid-gap: var(--s8);
}

.card-concern {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 0;
}
.card-concern__pic {
  max-width: 48rem;
  margin-left: auto;
  position: relative;
  z-index: -1;
}
.card-concern__title {
  max-width: 46rem;
  margin-top: -3rem;
  padding: var(--s3) var(--s6) var(--s3) var(--s4);
  background: #fff url(img/arrow-01-white-right.svg) no-repeat right var(--s3) center/2.4rem auto;
  font-family: "Shippori Mincho", serif;
  font-size: 2.4rem;
	border-top: solid 1px #d5d5d5;
    border-left: solid 1px #d5d5d5;
}

@media (hover: hover) {
  .card-concern:hover {
    opacity: 0.6;
  }
}
#sec06-3 {
  margin-top: 12rem;
  position: relative;
}

.card-point {
  background: #fff;
  border: solid 1px #d5d5d5;
  text-decoration: none;
  grid-row: span 3;
}
.card-point__title {
  padding: var(--s3) var(--s7) var(--s3) var(--s3);
  background: url(img/arrow-01-white-right.svg) no-repeat right var(--s3) center/2.8rem auto;
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  color: #2a4c7a;
}
.card-point__title span {
  font-size: 2.6rem;
}
.card-point__body {
  padding: 0 var(--s3) var(--s4);
}

@media (hover: hover) {
  .card-point:hover {
    opacity: 0.6;
  }
}
#sec06-4 {
  margin-top: 15rem;
  padding: var(--s3) 0 0 0;
  background: url(img/bg-sec08-1.jpg) no-repeat center top/100% auto;
  position: relative;
}

.sec06-4-list {
  margin: 12rem 0 0 auto;
  padding: 0 var(--s5) var(--s5);
  background: #fff;
}
.sec06-4__link {
  display: block;
  padding: var(--s5) var(--s3) var(--s5) 0;
  background: url(img/arrow-01-white-right.svg) no-repeat right center/2.8rem auto;
  border-bottom: solid 1px rgba(42, 76, 122, 0.3);
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  text-decoration: none;
}
.sec06-4__link:last-of-type {
  border-bottom: none;
}

@media (hover: hover) {
  .sec06-4__link:hover {
    opacity: 0.6;
  }
}
#sec06-5 {
  margin-top: 17rem;
  padding: var(--s4) 0 16rem;
  background: url(img/bg-sec09-1.jpg) no-repeat center top/cover;
}

.sec06-5-list {
  max-width: 65rem;
  margin-top: -6rem;
}

.sec06-5__link {
  display: block;
  padding: var(--s5) var(--s3) var(--s5) 0;
  background: url(img/arrow-01-white-right.svg) no-repeat right center/2.8rem auto;
  border-bottom: solid 1px rgba(42, 76, 122, 0.3);
  font-family: "Shippori Mincho", serif;
  font-size: 2.2rem;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp base settings

  */
  :root {
    font-size: 2.6666666667vw;
  }

  body {
    font-size: 1.4rem;
  }

  .sp_br {
    display: inline;
  }

  .pc_br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      sp layout center

  */
  .l-center {
    padding-right: var(--s2);
    padding-left: var(--s2);
    box-sizing: border-box;
  }

  /*
  ---------------------------------------------

      sp layout stack

  */
  .l-stack {
    gap: var(--s2);
  }

  /*
  ---------------------------------------------

      sp layout cluster

  */
  .l-cluster {
    gap: var(--s1);
  }

  /*
  ---------------------------------------------

      sp layout grid

  */
  .l-grid {
    grid-gap: var(--s2);
    grid-template-columns: 100%;
  }

  .l-grid-three {
    grid-gap: var(--s2);
    grid-template-columns: 100%;
  }

  .l-grid-four {
    --minmum: calc((100% - var(--s2)) / 2);
    display: grid;
    grid-gap: var(--s3) var(--s2);
  }

  /*
  ---------------------------------------------

      sp layout sidebar

  */
  .l-sidebar {
    margin-top: var(--s4);
    flex-wrap: wrap;
  }
  .l-sidebar__side {
    display: none;
  }
  .l-sidebar__main {
    width: 100%;
  }

  /*
  ---------------------------------------------

      sp layout column

  */
  .l-column {
    gap: var(--s2);
    flex-wrap: wrap;
  }
  .l-column__side, .l-column__side02, .l-column__side03, .l-column__side04, .l-column__side05 {
    width: 100%;
  }
  .l-column__main {
    width: 100%;
  }

  /*
  ---------------------------------------------

      sp layout grid areas

  */
  .l-grid-areas {
    grid-template-areas: "catch" "img" "text";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    grid-gap: var(--s2);
  }
  .l-grid-areas .l-grid-areas__cell-03 {
    place-self: auto;
  }

  /*
  ---------------------------------------------

      sp layout scroll

  */
  .l-scroll-x-sp {
    width: 100%;
    margin-bottom: var(--s5);
    padding-bottom: 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .l-scroll-x-sp::-webkit-scrollbar {
    height: 0.6rem;
  }
  .l-scroll-x-sp::-webkit-scrollbar-track {
    border-radius: 0.3rem;
    background: #eee;
  }
  .l-scroll-x-sp::-webkit-scrollbar-thumb {
    border-radius: 0.3rem;
    background: #ddd;
  }
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      header area

  */
  .header-area {
    width: 100%;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    position: static;
  }
  .header-area__name {
    max-width: 18rem;
    margin: 0;
    padding: var(--s-2) 0 0 var(--s-2);
    font-size: 1rem;
    font-weight: 400;
    display: block;
  }
  .header-area__sponsor {
    padding-left: var(--s-2);
    font-size: 1rem;
    font-weight: 400;
  }
  .header-area__logo {
    display: none;
  }
  .header-area .btn-web {
    margin: 0;
  }

  h1.header-area__name {
    max-width: 100%;
    padding-right: 8rem;
    position: static;
  }

  .title-area {
    margin-top: 0;
    padding-top: var(--s4);
  }
  .title-area .l-center {
    padding-bottom: var(--s2);
  }
  .title-area .l-center:after {
    width: 16rem;
    height: 8.5rem;
    right: 4rem;
    top: -7.2rem;
  }

  .js-header-appear {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .js-header-appear.is-fixed {
    opacity: 1;
    visibility: visible;
  }

  /*
  ---------------------------------------------

      mainvisual

  */
  .mainvisual-inner {
    padding-top: var(--s1);
    flex-wrap: wrap;
  }
  .mainvisual-inner__pic {
    width: 100%;
    margin: 0 auto;
  }
  .mainvisual-inner__txt {
    width: 100%;
  }
  .mainvisual__title {
    margin: var(--s2) auto var(--s3);
    font-size: 2.4rem;
	  line-height: 1.8;
  }
  .mainvisual__list {
    margin-left: 0;
        margin-bottom: var(--s3);
  }
  .mainvisual__list__item {
    font-size: 1.8rem;
	  padding: 0 0 var(--s1) var(--s4);
  }
  .mainvisual__text {
    margin: 0 0 var(--s3);
    font-size: 1.6rem;
  }
  .mainvisual__sponsor {
    margin-left: 0;
  }

  /*
  ---------------------------------------------

      main-area

  */
  .main-area {
    margin-right: 0;
  }
  .main-area--low {
    overflow: initial;
  }

  body:before {
    width: 240%;
    right: 0;
    left: auto;
  }

  /*
  ---------------------------------------------

      sp btn

  */
  .btn-internal,
.btn-web {
    margin: var(--s3) auto;
  }
  .btn-internal a,
.btn-web a {
    width: 94%;
    min-height: 6rem;
    padding-right: 6rem;
    padding-left: 5rem;
    background-position: right 1.8rem center;
    background-size: 2.2rem auto;
    font-size: 1.5rem;
  }

  .btn-internal--pic1:before, .btn-internal--pic2:before {
    width: 9.6rem;
    height: 8rem;
  }

  .btn-web--header a {
    min-height: 5rem;
    height: auto;
    width: calc(100% - 13rem);
    padding: var(--s1) var(--s6) var(--s1) var(--s4);
    border-radius: 0 var(--s2) 0 0;
    background-size: 2.4rem auto;
    background-position: right var(--s2) center;
    writing-mode: initial;
    font-family: "Shippori Mincho", serif;
    font-size: 1.3rem;
    letter-spacing: normal;
    position: fixed;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
    z-index: 9;
  }
  .btn-web--header a:before {
    width: 6.2rem;
    height: 5.3rem;
    left: var(--s1);
    top: -0.5rem;
    transform: none;
  }

  .btn-link {
    margin: var(--s1) auto;
  }
  .btn-link a {
    padding-right: 2.8rem;
    background-size: 2rem auto;
    font-size: 1.5rem;
  }

  .btn-tel {
    margin: var(--s3) auto;
    display: block;
    position: relative;
  }
  .btn-tel a {
    width: 94%;
    min-height: var(--s7);
    margin: 0 auto;
    padding: var(--s1) var(--s6);
    background: #b3a266 url("img/icon-tel.png") no-repeat center left var(--s3)/2.2rem auto;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Shippori Mincho", serif;
    color: #fff;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
  }

  .btn-column {
    margin-top: var(--s2);
    flex-direction: column;
    gap: var(--s3);
  }
  .btn-column .btn-web,
.btn-column .btn-internal,
.btn-column .btn-tel {
    margin: 0;
  }
  .btn-column .btn-web--pic1, .btn-column .btn-web--pic2,
.btn-column .btn-internal--pic1,
.btn-column .btn-internal--pic2,
.btn-column .btn-tel--pic1,
.btn-column .btn-tel--pic2 {
    margin-top: 7rem;
  }
  .btn-column--top {
    margin: var(--s2) auto 0;
    gap: var(--s1);
  }
  .btn-column--top .box-btns {
    margin: 0 auto var(--s4);
  }

  /*
  ---------------------------------------------

      list

  */
  .main-area .subList,
.main-area ul:not([class]) {
    margin: var(--s4) 0;
  }
  .main-area .subList li:before,
.main-area ul:not([class]) li:before {
    width: 0.8rem;
    height: 0.8rem;
  }

  /*
  ---------------------------------------------

      sp table

  */
  table th,
table td {
    padding: 1.2rem;
  }

  .sp-table thead,
.sp-table tbody,
.sp-table tr {
    display: block;
  }
  .sp-table th,
.sp-table td {
    width: 100%;
    display: block;
  }

  .table-label thead {
    display: none;
  }
  .table-label tbody th {
    background: #f3efec;
  }
  .table-label td {
    padding: 0;
    display: flex;
    position: relative;
  }
  .table-label td::before {
    content: attr(data-label);
    width: 7em;
    background: #f3efec;
    border-right: solid 1px #c7c7c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    text-align: center;
  }
  .table-label__cell {
    padding: var(--s1) var(--s2);
  }

  .l-scroll-x table thead,
.l-scroll-x-sp table thead {
    display: table-header-group;
  }
  .l-scroll-x table tbody,
.l-scroll-x-sp table tbody {
    display: table-row-group;
  }
  .l-scroll-x table tr,
.l-scroll-x-sp table tr {
    display: table-row;
  }
  .l-scroll-x table th,
.l-scroll-x table td,
.l-scroll-x-sp table th,
.l-scroll-x-sp table td {
    width: inherit;
    min-width: 15rem;
    display: table-cell;
  }

  .l-scroll-x-sp table {
    width: inherit;
  }

  /*
  ---------------------------------------------

      sp caption

  */
  .caption {
    font-size: 0.9rem;
  }

  .caption-scroll {
    font-size: 0.9rem;
  }
  .caption-scroll::-webkit-scrollbar {
    height: 0.4rem;
  }
  .caption-scroll::-webkit-scrollbar-track {
    border-radius: 0.2rem;
  }
  .caption-scroll::-webkit-scrollbar-thumb {
    border-radius: 0.2rem;
  }

  /*
  ---------------------------------------------

  	sp catch

  */
  .catch,
.catch-01,
.catch-02 {
    margin-bottom: var(--s2);
    font-size: 1.8rem;
        line-height: 1.6;
  }

  /*
  ---------------------------------------------

      sp float wrap

  */
  .float-wrap .float-img.fr {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .float-wrap .float-img.fl {
    width: 100%;
    margin-right: 0;
    float: none;
  }
  .float-wrap .float-img.ct {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  /*
  ---------------------------------------------

  	sp pankuzu

  */
  #pankuzu {
    margin: var(--s1) 0 var(--s3);
  }

  /*
  ---------------------------------------------

      sp footer

  */
  .footer-area {
    margin-right: 0;
    padding: var(--s6) 0 0;
  }

  .footer-about {
    width: 88%;
    margin: 0 auto var(--s5);
    padding: var(--s3);
  }
  .footer-about__main {
    margin: 0 auto;
    padding: 0;
    border: none;
  }
  .footer-about-title {
    margin-bottom: var(--s1);
    font-size: 1.6rem;
  }
  .footer-about-p {
    font-size: 1.3rem;
  }

  .footer-main {
    padding-right: 0;
    padding-left: 0;
    box-sizing: border-box;
  }

  .footer-bottom {
    padding: var(--s1) 0 var(--s8);
  }

  .footer-logo {
    margin: 0 auto;
    width: 12rem;
  }

  .footer-box + .footer-box {
    margin-top: var(--s2);
  }

  .footer-menu-title {
    margin-bottom: 0;
  }
  .footer-menu-title__link {
    padding: var(--s1) var(--s4) var(--s1) var(--s2);
    position: relative;
  }
  .footer-menu-title__link::after {
    content: "";
    width: 1.4rem;
    height: 1.4rem;
    background: url("img/arrow-01-down.svg") no-repeat center/100%;
    position: absolute;
    top: 50%;
    right: var(--s2);
    transform: translate(0, -50%) rotate(0);
    transition: transform 0.3s;
  }
  .footer-menu-title__link.is-open::after {
    transform: translate(0, -50%) rotate(180deg);
  }
  .footer-menu-title__link--not-toggle::after {
    background: url("img/arrow-01-right.svg") no-repeat center/auto 1.4rem;
  }

  .footer-menu {
    padding: var(--s1) 0;
    background: rgba(255, 255, 255, 0.1);
    gap: 0;
  }
  .footer-menu__item {
    width: 100%;
  }
  .footer-menu__link {
    padding: var(--s1) var(--s2);
  }

  .footer-menu-sub {
    margin-left: var(--s2);
  }
  .footer-menu-sub__link {
    padding: var(--s1) var(--s2) var(--s1) 1.1em;
  }
  .footer-menu-sub__link::before {
    top: var(--s1);
  }

  .footer-disclaimer {
    width: calc(100% - var(--s2));
    margin: var(--s2) auto;
    padding: var(--s1) var(--s2);
  }

  .footer-nocopy {
    margin: var(--s2) var(--s1);
    font-size: 1rem;
  }

  .footer-copyright {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .footer-sitemap {
    display: none;
  }

  /*
  ---------------------------------------------

  	sp gnavi

  */
  .gnavi-btn {
    right: 0;
    top: 0;
    width: 5.2rem;
    height: 5.2rem;
    background-size: 2.8rem auto;
    background-position: center bottom var(--s-2);
    border-width: 0.2rem;
  }
  .gnavi-btn span {
    left: 1.4rem;
    width: 2.4rem;
  }
  .gnavi-btn span:nth-of-type(1) {
    top: 1.8rem;
  }
  .gnavi-btn span:nth-of-type(2) {
    top: 2.5rem;
  }
  .gnavi-btn span:nth-of-type(3) {
    top: 3.2rem;
  }
  .gnavi-btn.is-active span:nth-of-type(1) {
    top: 1.4rem;
  }
  .gnavi-btn.is-active span:nth-of-type(2) {
    display: none;
  }
  .gnavi-btn.is-active span:nth-of-type(3) {
    top: 3.6rem;
  }

  .gnavi-area {
    width: 100%;
    padding: var(--s4) 0;
    margin-right: 0;
  }
  .gnavi-area__logo {
    display: block;
    width: 9rem;
    margin: 0 auto var(--s2);
  }

  /*
  ---------------------------------------------

      sp page

  */
  .page-top {
    width: var(--s6);
    height: var(--s6);
    right: 0;
    bottom: var(--s1);
  }

  /*
  ---------------------------------------------

       sp toggle sp

  */
  .toggle-sp-content {
    display: none;
  }

  .toggle-btn:after {
    height: 1.6rem;
    width: 0.2rem;
    right: 1.1rem;
  }
  .toggle-btn:before {
    width: var(--s3);
    height: var(--s3);
  }

  /*
  ---------------------------------------------

      more

  */
  .more-btn {
    width: 88%;
    padding: 1.8rem var(--s7);
  }
  .more-btn:before {
    width: 2rem;
    height: 0.3rem;
  }
  .more-btn:after {
    height: 2rem;
    width: 0.3rem;
    right: 3.3rem;
  }

  /*
  ---------------------------------------------

  グラデーション  more-content

  */
  .more__content.sp-only {
    overflow: hidden;
    max-height: 10rem;
  }

  .more__content.sp-only:after {
    content: "";
  }

  .more__btn {
    width: 82%;
    font-size: 1.4rem;
  }
  .more__btn.for-sp {
    display: block;
  }

  /*
  ---------------------------------------------

      lower parts

  */
  .box-sv__title {
    padding: var(--s3) 0;
    font-size: 2rem;
  }
  .box-sv__title:before {
    width: calc(100% + var(--s2));
    height: 18rem;
  }
  .box-sv__title span.tag {
    font-size: 2rem;
  }
  .box-sv__title span.name {
    width: 20rem;
  }
	.box-sv__title span.name:before {
    content: "";
    left: -25px;
}
  .box-sv__body {
    padding-top: var(--s3);
    padding-left: var(--s3);
  }
  .box-sv__body .l-column {
    flex-direction: column-reverse;
  }

  .box-summary {
    margin: var(--s6) 0;
    padding: var(--s3);
  }
  .box-summary:before {
    height: 6rem;
    top: -3rem;
  }
  .box-summary__title {
    padding-top: var(--s3);
    font-size: 1.8rem;
  }
  .box-summary__title:before {
    height: 5.4rem;
  }

  .box-sponsored {
    margin: var(--s6) 0 var(--s8);
    padding-right: 0;
  }
  .box-sponsored:before {
    height: calc(100% - var(--s5));
  }
  .box-sponsored .l-column {
    flex-direction: column-reverse;
  }
  .box-sponsored .l-column__side02 {
    width: 8rem;
    margin: 0 0 0 auto;
    position: absolute;
    top: 15rem;
        right: 4rem;
  }
  .box-sponsored .l-column__side03 {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: var(--s2);
  }
  .box-sponsored__pic {
    margin-top: 0;
  }
  .box-sponsored__pic__name {
    padding: var(--s-2) var(--s1);
    writing-mode: initial;
    font-size: 1.6rem;
    bottom: 0;
    right: -13rem;
  }
  .box-sponsored__pic--02 {
    width: 10rem;
    margin-left: var(--s3);
  }
  .box-sponsored .l-grid-areas__cell-02 {
    display: flex;
    align-items: flex-end;
    gap: var(--s2);
  }
  .box-sponsored__title {
    padding: var(--s2);
    font-size: 2rem;
  }
  .box-sponsored__title span.sm,
.box-sponsored__title span.sm2 {
    font-size: 1.6rem;
  }
  .box-sponsored__body {
    padding: var(--s3);
  }
  .box-sponsored__doctor {
    font-size: 1.8rem;
        margin: var(--s3) 0 var(--s5);
  }
  .box-sponsored__corp, .box-sponsored__corp-s {
    padding-bottom: 4rem;
    font-size: 1.6rem;
	  padding-left: 2rem;
  }

  .box-comment {
    padding: var(--s3);
    padding-top: 0;
  }
  .box-comment .l-column__side05 {
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: var(--s2);
    margin-top: -2rem;
  }
  .box-comment .box-sponsored__pic {
    width: 10rem;
  }
	#related-article {
    margin: var(--s8) 0;
    padding: var(--s4) var(--s3);
}
.related-article01-title {
    font-size: 2rem;
}
	.relations-box__body .catch-01 {
    font-size: 1.6rem;
}
  .box-relation {
    padding: var(--s3);
  }
  .box-relation__title {
    font-size: 1.8rem;
  }

  .box-interview__q {
    font-size: 1.8rem;
	  padding: 0 0 var(--s2) var(--s7);
  }
  .box-interview__a {
    font-size: 1.6rem;
  }

  /*
  ---------------------------------------------

      SP titles

  */
  .pr-text {
    font-size: 1.2rem;
  }

  .main-area--low h2:not([class]),
.main-area--low h3:not([class]),
.main-area--low h4:not([class]),
.main-area--low h5:not([class]),
.main-area--low h6:not([class]) {
    margin: var(--s4) auto var(--s2);
  }
  .main-area--low h1:not([class]) {
    min-height: initial;
    margin: 0 auto var(--s2);
    padding-top: 2rem;
    font-size: 2.4rem;
  }
  .main-area--low h1:not([class]):before {
    height: 3.8rem;
    width: 100%;
    left: -1rem;
    top: 0;
    background-position: left top;
  }
  .main-area--low h2:not([class]) {
    padding: var(--s2) var(--s2) var(--s2) var(--s3);
    background-size: 4.5rem auto, 75% auto;
    font-size: 2.2rem;
  }
  .main-area--low h2:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h3:not([class]) {
    padding-left: var(--s2);
    font-size: 1.8rem;
  }
  .main-area--low h3:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h4:not([class]) {
    font-size: 1.6rem;
  }
  .main-area--low h4:not([class]):before {
    width: 2rem;
  }
  .main-area--low h4:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h5:not([class]) {
    font-size: 1.5rem;
  }
  .main-area--low h5:not([class]) a {
    background-size: 2rem auto;
    background-position: right center;
  }
  .main-area--low h6:not([class]) {
    font-size: 1.5rem;
  }
  .main-area--low .icon-title {
    margin: var(--s8) 0 var(--s4);
    font-size: 1.8rem;
  }
  .main-area--low .icon-title:before {
    width: 11rem;
    top: -3.5rem;
  }
  .main-area--low .icon-title--point:before {
    width: 10rem;
  }

  /*
  ---------------------------------------------

      SP end

  */
}
@media screen and (max-width: 767px) {
  /*
  ---------------------------------------------

      TOP common

  */
  section {
    padding: var(--s6) 0;
  }

  .common-title {
    padding-top: var(--s5);
    font-size: 2.4rem;
  }
  .common-title span.sm {
    font-size: 1.8rem;
  }
  .common-title span.sm2 {
    font-size: 2.1rem;
  }
  .common-title a {
    padding-right: var(--s4);
    background-size: 2.4rem auto;
  }
  .common-title span.bg-bk {
    font-size: 1.8rem;
  }

  .common-lead--right {
    text-align: left;
  }

  /*
  ---------------------------------------------

      TOP section

  */
  .sec-navigation {
    margin-bottom: var(--s3);
    flex-wrap: wrap;
    gap: var(--s3);
	  justify-content: center;
  }
  .sec-navigation__title {
    width: fit-content;
    writing-mode: initial;
    background: #2a4c7a;
    font-size: 2rem;
  }
  .sec-navigation__title span {
    margin-right: 0.6rem;
    padding: var(--s-2) 0 var(--s-2) var(--s1);
  }
  .sec-navigation__title span:first-of-type {
    margin-right: 0;
  }
  .sec-navigation__body {
    padding-top: 0;
    flex: initial;
    width: 100%;
  }
  .sec-navigation__link {
    padding: var(--s2) var(--s1) var(--s4);
    font-size: 1.6rem;
  }

  .sec-why {
    padding-top: var(--s8);
    background-size: auto 5.8rem;
    background-position: center top var(--s5);
  }
  .sec-why:before {
    height: 60rem;
  }
  .sec-why__item {
    padding-top: 13rem;
  }
  .sec-why__item + .sec-why__item {
    margin-top: var(--s8);
  }
  .sec-why__nav {
    margin-bottom: var(--s12);
  }
  .sec-why__body {
    padding: var(--s3) var(--s3) var(--s2) var(--s7);
  }
  .sec-why__body__title {
    margin-bottom: var(--s2);
    font-size: 2.1rem;
  }
  .sec-why__body__tag {
    font-size: 1.5rem;
  }
  .sec-why__body__tag span {
    font-size: 1.8rem;
  }
  .sec-why__body--01:after {
    font-size: 17rem;
  }
  .sec-why__body--02 {
    padding-right: 0;
  }
  .sec-why__body--02:after {
    font-size: 17rem;
  }
  .sec-why__body--02 .sec-why__body__tag {
    left: 1.2rem;
  }
  .sec-why__body--03:after {
    font-size: 17rem;
  }
  .sec-why__pic {
    width: 70%;
    right: calc(var(--s2) * -1);
    left: auto;
  }
  .sec-why__pic--left {
    right: auto;
    left: calc(var(--s2) * -1);
  }
.card-photo {
    margin-bottom: var(--s7);
	margin-top: 0;
}
  .card-photo__num {
    font-size: 2.8rem;
	  top: -3.4rem;
  }
  .card-photo__title {
    font-size: 2.1rem;
  }

  .bg-grade {
    padding-top: var(--s5);
  }
  .bg-grade:before {
    background-size: 45% auto, 45% auto;
  }

  .subtitle-center {
    margin-bottom: var(--s6);
    font-size: 1.8rem;
  }
  .subtitle-center:after {
    height: 3rem;
  }

  .card-voice-area01 {
    gap: var(--s2);
  }

  .card-voice-area02 {
    margin-top: var(--s2);
    padding: 0;
    gap: var(--s2);
    justify-content: center;
  }

  .card-voice {
    width: 80%;
    padding: var(--s2);
    font-size: 1.6rem;
  }

  .bg-people {
    padding-bottom: 17rem;
    background-size: auto 30rem;
  }

  .bg-way {
    background-size: auto 10.5rem;
    background-position: right top var(--s5);
  }
  .bg-way .l-center {
    padding-top: 12rem;
  }

  .sec03-titleblock {
    margin-top: 10rem;
    padding-left: var(--s6);
  }

  .sec03-subtitle {
    font-size: 2.4rem;
  }
  .sec03-subtitle span.st {
    font-size: 2.8rem;
  }
  .sec03-subtitle-tag {
    font-size: 1.8rem;
  }

  .graph-area {
    margin-top: 0;
    padding-bottom: 0;
  }

  .card-graph {
    margin-top: var(--s2);
    width: 100%;
  }
	
  .card-graph__tag span {
    font-size: 1.5rem;
  }
  .card-graph__body {
    padding: var(--s2) 0 0 var(--s2);
  }
  .card-graph__title {
    font-size: 2rem;
  }
  .card-graph:nth-of-type(2) {
    margin-top: var(--s6);
  }
.card-graph:nth-of-type(3) {
    margin-top: 4rem;
}
  .sec-summary {
    margin: var(--s8) 0 var(--s6);
    padding: var(--s3) 0;
  }
  .sec-summary__text {
    font-size: 1.6rem;
  }

  .sec04-titleblock {
    padding: 0 0 0 var(--s2);
  }
  .sec04-titleblock:before {
    height: 22rem;
  }
  .sec04-titleblock .common-title {
    font-size: 2.4rem;
  }

  .sec04-leadblock {
    padding: var(--s2) var(--s2) var(--s3) 0;
  }
  .sec04-leadblock .l-column {
    flex-direction: column-reverse;
    gap: var(--s5);
  }
  .sec04-leadblock .l-column__side03 {
    margin-top: 0;
    display: flex;
    align-items: flex-end;
    gap: var(--s2);
  }

  .bg-grade02 {
    padding-top: 4rem;
  }

  .sec04-body {
    padding: var(--s2) 0;
	  margin-top: 4rem;
  }
  .sec04-body:before {
    left: 0;
  }
  .sec04-body__tag {
    margin-bottom: var(--s1);
        writing-mode: initial;
        font-size: 1.8rem;
        position: static;
        line-height: 1.8;
  }
  .sec04-body__tag span {
    padding: var(--s-2) var(--s1);
  }
  .sec04-body__pic {
        margin-bottom: var(--s3);
        padding: 2rem 0 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        text-align: left;
    }
.sec04-body__pic img {
    max-width: none;
    width: 630px;
}
  .sec04-subtitle {
    margin: var(--s4) 0;
    font-size: 2.1rem;
  }

  .card-management__title {
    padding-bottom: 1rem;
        margin-bottom: 0;
        font-size: 2.2rem;
        border-bottom: 1px solid #c3c4c7;
  }

  .bg-photo02 {
    padding-top: 10rem;
    background-size: 100% auto;
    background-position: center top var(--s4);
  }

  .box-story {
    padding: var(--s2);
  }
  .box-story__titlebox {
    margin-bottom: var(--s3);
    align-items: flex-start;
  }
  .box-story__titlebox .number {
    width: 6rem;
    height: 6rem;
    padding-top: 2.8rem;
    background-size: 4rem auto;
    font-size: 2.4rem;
  }
  .box-story__title {
    font-size: 2rem;
  }
  .box-story__pic {
    margin: 0 auto var(--s3);
  }
  .box-story__catch {
    font-size: 1.8rem;
  }

  .bg-grade03 {
    padding-top: var(--s8);
    background-size: auto 5.8rem;
    background-position: center top var(--s5);
  }
  .bg-grade03:before {
    height: 70rem;
  }

  .sec06-list {
    gap: var(--s2);
  }
  .sec06-list__item {
    width: 100%;
    font-size: 1.5rem;
  }
  .sec06-list__item:nth-of-type(4), .sec06-list__item:nth-of-type(5) {
    min-width: initial;
  }

  .sec06-cont__titleblock {
    padding: var(--s4) 0;
  }
  .sec06-cont__titleblock:before {
    height: 20rem;
  }

  .sec06-subtitle {
    padding-top: var(--s7);
    font-size: 2.2rem;
  }
  .sec06-subtitle--01, .sec06-subtitle--02, .sec06-subtitle--03, .sec06-subtitle--04, .sec06-subtitle--05 {
    background-size: auto 5rem;
  }
  .sec06-subtitle--02 {
    margin-left: auto;
    width: fit-content;
  }
  .sec06-subtitle--03 {
    margin-bottom: var(--s4);
  }
  .sec06-subtitle--04 {
    margin-bottom: 0;
  }

  .sec06-cont__body {
    padding: var(--s2);
  }

  .card-knowledge {
    padding-top: var(--s2);
  }
  .card-knowledge__title {
    min-height: 6.5rem;
    margin-bottom: 0;
    padding-left: 8rem;
    background-size: 2rem auto;
    font-size: 1.8rem;
  }
	.card-knowledge__title a {
    text-decoration: none;
    display: block;
    position: unset;
    width: 100%;
    height: 100%;
}
  .card-knowledge__title:before {
    width: 6.5rem;
  }

  #sec06-2:before {
    width: 100vw;
    top: -7rem;
  }

  #sec06-3,
#sec06-4,
#sec06-5 {
    margin-top: var(--s10);
  }

  #sec06-5 {
    padding-bottom: var(--s8);
  }

  .card-concern__pic {
    max-width: 95%;
  }
  .card-concern__title {
    max-width: 95%;
    padding: var(--s2) var(--s7) var(--s2) var(--s3);
    font-size: 1.8rem;
  }

  .card-point__title {
    padding-bottom: var(--s2);
    background-size: 2rem auto;
    font-size: 1.7rem;
  }
  .card-point__title span {
    font-size: 2rem;
  }

  .sec06-4-list {
    margin-top: 0;
    padding: 0 0 var(--s2) var(--s2);
  }

  .sec06-4__link {
    padding: var(--s3) var(--s5) var(--s3) 0;
    font-size: 1.8rem;
    background-size: 2rem auto;
  }

  .sec06-5-list {
    margin-top: var(--s2);
  }

  .sec06-5__link {
    padding: var(--s3) var(--s5) var(--s3) 0;
    font-size: 1.8rem;
    background-size: 2rem auto;
  }

  /*
  ---------------------------------------------

      SP end

  */
}
