@charset "UTF-8";
:root {
  --color-main: #227d51;
  --color-sub: #c7ceaa;
  --color-txt: #333;
	--color-border: #9f9f9f;
  --font-base:"Noto Sans JP",'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3',"Yu Gothic","メイリオ",Meiryo,sans-serif;
  --font-sub: "Shippori Mincho B1", serif;
  --font-en: "Playfair Display", serif;
  --font-num: "Roboto", sans-serif;
  --lineHeight-xs: 1.2;
  --lineHeight-s: 1.4;
  --lineHeight-m: 1.6;
  --lineHeight-l: 1.8;
  --lineHeight-xl: 2;
  --trans-min01: all .1s linear;
  --trans-min02: all .2s linear;
  --headerHeight-pc: 74px;
  --headerHeight-sp: 66px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  width: 100%;
  margin: 0 auto;
  font-weight: 400;
  font-size: 17px;
  -webkit-text-size-adjust: 100%;
  color: var(--color-txt);
  font-family: var(--font-base);
  line-height: 1.6;
  word-break: break-all;
  overflow-x: clip;
  letter-spacing: .02em;
}
main {
  display: block;
  padding-top: var(--headerHeight-pc);
  overflow: clip;
}
img {
  vertical-align: top;
  max-width: 100%;
}
p a,
li a {
  text-decoration: underline;
  transition: var(--trans-min01);
}
p a:hover,
li a:hover {
  text-decoration-color: transparent;
}
sub,
sup {
  font-size: 65%;
}
picture {
  display: block;
}

/* ユーティリティ */
.u_pcOnly {
  display: block;
}
.u_spOnly {
  display: none;
}
.u_ta_c {
  text-align: center;
}
.u_ta_l {
  text-align: left;
}
.u_ta_r {
  text-align: right;
}
.u_ti_1em {
  padding-left: 1em;
  text-indent: -1em;
}
.u_ti_2em {
  padding-left: 2em;
  text-indent: -2em;
}
.u_ti_3em {
  padding-left: 3em;
  text-indent: -3em;
}
.u_fw_400 { font-weight: 400; }
.u_fw_500 { font-weight: 500; }
.u_fw_600 { font-weight: 600; }
.u_fw_700 { font-weight: 700; }

.u_mb_xs { margin-bottom: 10px; }
.u_mb_s  { margin-bottom: 20px; }
.u_mb_m  { margin-bottom: 30px; }
.u_mb_md { margin-bottom: 40px; }
.u_mb_l  { margin-bottom: 50px; }
.u_mb_xl { margin-bottom: 60px; }
.u_mb_xxl { margin-bottom: 80px; }

.u_mAuto {
  margin-inline: auto;
}

.u_fc_main {
  color: var(--color-main);
}
.u_td_u {
  text-decoration: underline;
  text-underline-offset: 0.2em; 
}
.u_va-m {
  vertical-align: middle;
}

.ly_wrap_l {
  width: calc(100% - 30px);
  max-width: 1123px;
  margin-inline: auto;
}
.ly_wrap_m {
  width: calc(100% - 30px);
  max-width: 1006px;
  margin-inline: auto;
}
.ly_wrap_s {
  max-width: 890px;
  margin-inline: auto;
}
.ly_wrap_xs {
  max-width: 724px;
  margin-inline: auto;
}
.u_border_t {
  border-top: 1px solid var(--color-border);
}

/* header */
#header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
  background-color: #c00;
  width: 100%;
  height: 74px;
}
#header .header_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  min-width: inherit;
}
#header .logoArea {
  height: 22px;
  padding-left: 40px;
  margin-right: 40px;
}
#header .logoArea .l-logo_image {
  height: 22px;
  width: 328px;
}
#header .header_nav {
  display: block;
  position: static;
  background-color: transparent;
  width: auto;
  transform: none;
  z-index: 100;
}
#header .header_nav.non-active {
  display: block;
}
#header .header_nav_ul {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: clamp(10px, 3vw, 50px);
  margin-right: 40px;
}
#header .header_nav_ul > li {
  position: relative;
  width: auto;
  text-align: center;
}
#header .header_nav_ul li a,
#header .header_nav_ul li button {
  color: #fff;
  font-size: 14px;
  letter-spacing: .2em;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 74px;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: .2em;
}
#header .header_nav_ul li a:hover,
#header .header_nav_ul li button:hover {
  text-decoration-color: #fff;
}
#Toggle {
  display: none;
}

/* footer */
#footer {
  padding: 60px 40px;
  color: #474747;
  font-size: 14px;
  font-family: YuGothic, " 游ゴシック", " メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", " ヒラギノ角ゴ Pro W3", "Lucida Grande", "LucidaSans Unicode", Arial, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fff;
}
#footer .logoArea {
  margin-bottom: 20px;
}
#footer .logoArea .imgsize img {
  display: block;
  margin-top: 20px;
  height: 22px;
}
#footer .copyright {
  margin-top: 20px;
}

/* レポートを見るボタン */
.floatingBtn_wrap {
  animation: fadeIn 2.4s linear forwards;
  position: relative;
  z-index: 1;
}
.floatingBtn {
  position: fixed;
  right: 0;
  bottom: 30px;
  width: 210px;
  height: 80px;
  cursor: pointer;
  background-color: rgb(34 125 81 / 90%);
  transition: background-color .1s linear;
}
.floatingBtn:hover {
  background-color: rgb(28 102 66 / 90%);
}
.floatingBtn_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 8px;
}
.floatingBtn span {
  display: block;
  text-align: center;
  line-height: 1.4;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  font-family: var(--font-sub);
  letter-spacing: 0.04em;
}
.floatingBtn_icon {
  width: 16px;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
}

/* コンポーネント */
.c_p-l {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: -.02em;
}
.c_p {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: -.02em;
}
.c_p-m {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: -.02em;
}
.c_p-s {
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: -0.05em;
}
.c_p-xs {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: -0.05em;
}
.c_list > li {
  position: relative;
  padding-left: .7em;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}
.c_list > li + li {
  margin-top: 2px;
}
.c_list > li::before {
  position: absolute;
  content: "";
  left: 0;
  top: .6em;
  width: .4em;
  height: .4em;
  border-radius: 100%;
  background-color: var(--color-main);
}
.c_anchor {
  color: var(--color-main);
  font-weight: 700;
  text-underline-offset: 0.2em;
  position: relative;
}
.c_anchor::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 6px;
  vertical-align: -.1em;
  background: url(../img/icon_anchor.svg) no-repeat center / contain;
}
.c_textbox_head {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background-color: #d4cb91;
  text-align: center;
  padding: 6px 20px;
}
.c_textbox_inner {
  background-color: #fff;
  padding: 32px 20px;
}
.c_textbox_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.c_textbox_grid_item {
  display: grid;
  gap: 10px;
  grid-template-rows: subgrid;
  grid-row: span 4;
}
.c_textbox_grid_item--m {
  gap: 25px;
  grid-row: span 2;
}
.c_textbox_grid_title {
  font-size: 18px;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-align: center;
  padding-bottom: 6px;
  margin-inline: 30px;
  border-bottom: 1px solid var(--color-txt);
}
.c_textbox_grid_title--main {
  color: var(--color-main);
  border-bottom: 1px solid var(--color-main);
}
.c_textbox_grid_title.title-fb{
  margin-inline: 0;
}
.c_textbox_grid_subtitle {
  font-size: 16px;
  font-weight: 500;
}
.c_textbox_grid_img {
  padding-inline: 14px;
}
.c_bubble {
  position: relative;
}
.c_bubble_title {
  position: relative;
  top: 18px;
  width: fit-content;
  min-width: 464px;
  margin-inline: auto;
  padding: 5px 10px;
  background-color: #c5963c;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
.c_bubble_title::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -25px;
  width: 30px;
  height: 26px;
  margin-inline: auto;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: #c5963c;
}
.c_bubble_inner {
  background-color: rgb(199 206 170 / 30%);
  padding: 60px 110px 50px;
}
.c_bubble_text {
  font-size: 16px;
  font-weight: 500;
}
.c_table {
  width: 100%;
  margin-inline: auto;
  table-layout: fixed;
  border-top: 1px solid var(--color-border);
}
.c_table--m {
  max-width: 800px;
}
.c_table th,
.c_table td {
  padding: 8px 20px;
  min-height: 44px;
  font-weight: 500;
  letter-spacing: 0;
  font-size: 17px;
  font-weight: 500;
  border-left: 1px solid var(--color-border);
  vertical-align: middle;
}
.c_table th:last-child,
.c_table td:last-child {
  border-right: 1px solid var(--color-border);
}
.c_table th {
  background-color: rgb(199 206 170 / 70%);
  text-align: center;
}
.c_table--s th{
  padding: 3px 20px;
}
.c_table th.bg_main {
  color: #fff;
  background-color: var(--color-main);
}
.c_table th.bg_sub {
  background-color: rgb(214 186 132 / 100%);
}
.c_table td {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
}
.c_table td > span {
  font-size: 14px;
}
.c_fadein {
  opacity: 0;
}
.c_fadein.mv.is-show {
  animation: fadeIn 2.4s linear forwards;
}
.c_fadein.is-show {
  animation: fadeIn 0.8s linear forwards;
}
.c_fadein:has(.c_fadein-01) {
  animation: none;
  opacity: 1;
}
.c_fadein-01,
.c_fadein-02,
.c_fadein-03 {  
  opacity: 0;
}
.c_fadein.is-show .c_fadein-01,
.c_fadein.is-show .c_fadein-02,
.c_fadein.is-show .c_fadein-03 {
  animation: fadeIn 1.2s linear forwards;
}
.c_fadein.is-show .c_fadein-02 {
  animation-delay: 0.3s;
}
.c_fadein.is-show .c_fadein-03 {
  animation-delay: 0.6s;
}

/* TOP */
.mv {
  position: relative;
  padding-top: 40px;
}
.mv::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  background: url('../img/bg_mv.webp') no-repeat left top;
  background-size: max(1366px, 100%) auto;
  z-index: -10;
}
.mv::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(to top, #fff 140px, transparent 100%);
  pointer-events: none;
  z-index: -1;
}
.mv_subtitle {
  font-size: 26px;
  letter-spacing: 0.12em;
  font-family: var(--font-sub);
  font-weight: 700;
  text-align: center;
  color: #333;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 130px;
  position: relative;
}
.mv_subtitle::after,
.mv_subtitle::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin-block: auto;
  width: 100px;
  height: 1px;
  background-color: var(--color-main);
}
.mv_subtitle::before {
  left: 0;
}
.mv_subtitle::after {
  right: 0;
}
.mv_title {
  font-size: 60px;
  letter-spacing: 0.16em;
  line-height: 1.2;
  color: var(--color-main);
  font-weight: 700;
  font-family: var(--font-sub);
  text-align: center;
}
.mv_lead {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  font-family: var(--font-sub);
  margin-top: 14px;
  line-height: 1.4;
}
.mv_inner {
  margin-top: 30px;
}
.mv_box_header {
  background-color: rgb(34 125 81 / 90%);
  display: flex;
}
.mv_box_header_sub {  
  padding: 10px 60px;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-right: 1px solid #fff;
}
.mv_box_header_main {
  flex-grow: 1;
  padding: 4px 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #fff;
}
.mv_box_header_main > strong {
  font-size: 34px;
  font-family: var(--font-sub);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.mv_box_inner {
  padding: 18px 28px 76px;
  background-color: rgb(255 255 255 / 95%);
}
.mv_box_dl {
  min-width: 600px;
  margin-inline: auto;
  border: 1px solid var(--color-border);
}
.mv_box_dl tr + tr {
  border-top: 1px solid var(--color-border);
}
.mv_box_dl th,
.mv_box_dl td {
  padding: 10px 16px;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: 500;
}
.mv_box_dl th {
  background-color: rgb(199 206 170 / 70%);
  min-width: 160px;
}

/* about */
.about {
  background: url('../img/bg_about.png') repeat center center;
  position: relative;
}
.about_main {  
  padding-block: 90px 88px;
  position: relative;
}
.about_main::after {
  position: absolute;
  content: "";
  right: -600px;
  top: 0;
  width: 100%;
  height: 100%;
  max-height: 880px;
  max-width: 880px;
  background: url('../img/bg_about_circle.jpg') no-repeat left center /cover;
  clip-path: circle(440px at 52% 44%);
}
.about_inner {
  padding-right: 30%;
}
.about_text {
  font-size: 22px;
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 2;
}

/* features */
.features {
  position: relative;
}
.features_nav {
  background: url('../img/bg_features_nav.png') repeat center center;
}
.features_nav_inner {
  padding-block: 76px 66px;
  position: relative;
}
.features_nav_inner::before {
  content: "";
  position: absolute;
  left: -240px;
  top: 0;
  width: 488px;
  height: 222px;
  background: url('../img/deco_01.png') no-repeat center center / contain;
}
.features_nav_inner::after {
  content: "";
  position: absolute;
  right: -256px;
  bottom: -166px;
  width: 709px;
  height: 308px;
  background: url('../img/deco_02.png') no-repeat center center / contain;
}
.features_nav_title {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 34px;
  font-size: 32px;
  color: #fff;
  font-family: var(--font-sub);
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
}
.features_anchor {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.features_anchor_item {
  width: calc((100% - 40px) / 3);
  background-color: #fff;
  padding: 14px 2px 40px;
  text-align: center;
  transition: var(--trans-min02);
}
.features_anchor_item:hover {
  background-color: var(--color-sub);
}
.features_anchor_num {
  width: 66px;
  height: 66px;
  margin-inline: auto;
  margin-bottom: 10px;
  border-radius: 100%;
  display: grid;
  place-content: center;
  border: 1px solid var(--color-main);
  font-size: 70px;
  font-family: var(--font-en);
  color: var(--color-main);
  padding-bottom: 26px;
}
.features_anchor_text {
  font-size: 22px;
  letter-spacing: 0;
  line-height: 1.8;
  font-weight: 600;
  font-family: var(--font-sub);
}
.features_content {
  position: relative;
  padding-bottom: 80px;
}
.features_content::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  background: url('../img/bg_features_content.png') repeat center center;
  z-index: -10;
}
.features_item {
  padding-block: 80px 30px;
  position: relative;
}
.features_item#content_2::before {
  content: "";
  position: absolute;
  left: -168px;
  top: -73px;
  width: 646px;
  height: 326px;
  background: url('../img/deco_03.png') no-repeat center center / contain;
  z-index: -10;
}
.features_item#content_3::before {
  content: "";
  position: absolute;
  right: -186px;
  top: 60px;
  width: 597px;
  height: 282px;
  background: url('../img/deco_04.png') no-repeat center center / contain;
  z-index: -10;
}
.features_item_head {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features_item_head_label {
  font-size: 28px;
  font-family: var(--font-sub);
  color: var(--color-main);
  font-weight: 700;
  letter-spacing: 0.05em;
} 
.features_item_head_num {
  width: 88px;
  height: 88px;
  border-radius: 100%;
  background-color: var(--color-main);
  display: grid;
  place-content: center;
  font-size: 80px;
  font-family: var(--font-en);
  color: #fff;
  padding-bottom: 26px;
}
#content_3 .features_item_head_num {
  padding-bottom: 32px;
}
.features_item_head_title {
  font-size: 32px;
  font-family: var(--font-sub);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 10px;
  text-align: center;
}
.features_answerbox_title {
  font-size: 17px;
  border: 3px solid var(--color-main);
  padding: 14px 36px;
  margin-inline: auto;
  text-align: center;
  width: fit-content;
  border-radius: 50px;
  background-color: #fff;
  color: var(--color-main);
  font-weight: 700;
}
.features_answerbox_main {
  display: flex;
  justify-content: center;
}
.features_band {
  background-color: #181a2b;
  max-width: 890px;
  margin-inline: auto;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 3px 16px;
  letter-spacing: 0.05em;
}

/* faq */
.faq {
  position: relative;
  padding-block: 84px 74px;
}
.faq::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  background-color: rgb(199 206 170 / 50%);
  z-index: -10;
}
.faq_inner {
  position: relative;
}
.faq_inner::before,
.faq_inner::after,
.faq_deco {
  content: "";
  position: absolute;
  width: 147px;
  height: 150px;
  background: url('../img/deco_05.png') no-repeat center center / contain;
  z-index: -1;
}
.faq_inner::before {
  left: -54px;
  top: -30px;
}
.faq_inner::after {
  right: -84px;
  top: 46%;
}
.faq_deco {
  left: -84px;
  bottom: -40px;
}
.faq_title {
  font-size: 32px;
  font-weight: 600;
  font-family: var(--font-sub);
  letter-spacing: 0;
  line-height: 1.4;
  background-color: #fff;
  padding: 0 30px;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 50px;
}
.faq_item + .faq_item {
  margin-top: 56px;
}
.faq_q {
  background-color: var(--color-main);
  padding: 6px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.faq_q_icon,
.faq_a_icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: grid;
  place-content: center;
  border-radius: 100%;
  background-color: #fff;
  color: var(--color-main);
  font-size: 34px;
  letter-spacing: 0.05em;
  font-weight: 500;
  font-family: var(--font-num);
}
.faq_q_text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.faq_a {
  padding: 10px 20px 0;
  display: flex;
  gap: 16px;
}
.faq_a_icon {
  width: 64px;
  height: 64px;
  border: 3px solid var(--color-main);
  font-size: 27px;
}
.faq_a_main p {
  line-height: 2;
}

/* info */
.info {
  padding-block: 88px 90px;
}
.info_box {
  background-color: #f5f3ed;
  padding: 50px 56px 60px;
}
.info_title {
  font-size: 22px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #333;
  border-bottom: 1px solid var(--color-main);
  padding-bottom: 6px;
  width: fit-content;
  margin-inline: auto;
}
.info_acco_item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.info_acco_item + .info_acco_item {
  margin-top: 30px;
}
.info_acco_header {
  flex-shrink: 0;
  width: 230px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  background: var(--color-main);
  letter-spacing: .12em;
  padding: 12px;
  border: none;
  cursor: default;
  pointer-events: none;
}
.info_acco_content {
  flex-grow: 1;
}
.info_acco_list {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  height: 100%;
}
.info_acco_list_item {
  background-color: #fff;
  border: 2px solid var(--color-main);
  border-radius: 6px;
  flex-grow: 1;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 16px;
  color: var(--color-main);
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: var(--trans-min02);
}
.info_acco_list_item:hover {
  background-color: var(--color-main);
  color: #fff;
}
.info_acco_list_item:hover::after {
  background-color: #fff;
}
.info_acco_list_item::after {
  content: "";
  display: inline-block;
  background-color: var(--color-main);
  vertical-align: -4px;
  margin-left: 10px;
  flex-shrink: 0;
  transition: var(--trans-min02);
}
.info_acco_list_item[target="_blank"]::after {
  width: 18px;
  height: 19px;
  mask: url(../img/icon_blank.svg) no-repeat center / contain;
}
.info_acco_list_item[href*=".pdf"]::after {
  width: 20px;
  height: 21px;
  mask: url(../img/icon_pdf.svg) no-repeat center / contain;
}

/* disclaimer */
.disclaimer {
  border-top: 1px solid var(--color-border);
  position: relative;
}
.disclaimer_sec +.disclaimer_sec {
  margin-top: 26px;
}
.disclaimer_inner {
  padding-block: 42px 95px;
}
.disclaimer_title {
  font-size: 14px;
  margin-bottom: 2px;
  font-weight: 700;
}
.disclaimer_list li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.disclaimer_list li + li {
  margin-top: 2px;
}
.disclaimer_text {
  font-size: 14px;
  letter-spacing: 0.05em;
}
.wrapper-iframe-footer {
  position: relative;
  z-index: 1;
}

/* TOPに戻るボタン */
.scroll-top {
  position: absolute;
  right: 0;
  top: -93px;
  width: 93px;
  height: 93px;
  cursor: pointer;
}
.scroll-top img {
  width: 100%;
  height: auto;
}

/* アテンションエリア */
.attention_box{
  background-color: #fff;
  padding: 40px;
  border: 1px solid #227d51;
}


@media screen and (max-width: 900px) {
  main {
    padding-top: var(--headerHeight-sp);
  }
  #header {
    height: auto;
    padding: 14px 0;
  }
  #header .logoArea {
    height: 38px;
    padding-left: 26px;
    margin-right: 0;
  }
  #header .logoArea .l-logo_image {
    width: 139px;
    height: 38px;
  }
  #header .header_nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    transform: translateY(-100%);
    transition: all 0.6s;
  }
  #header .header_nav.active {
    transform: translateY(0%);
    top: 100%;
  }
  #header .header_nav.non-active {
    display: none;
  }
  #header .header_nav_ul {
    flex-wrap: wrap;
    padding: 4% 0;
    gap: 0;
    margin-right: 0;
  }
  #header .header_nav_ul > li {
    width: 100%;
    text-align: left;
    padding: min(4%, 16px) 0;
    margin-left: 4%;
  }
  #header .header_nav_ul li a,
  #header .header_nav_ul li button {
    height: auto;
    justify-content: flex-start;
    text-align: left;
  }
  #Toggle {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5%;
    width: 7%;
    height: 30%;
    max-width: 27px;
    cursor: pointer;
    z-index: 100;
  }
  #Toggle span {
    display: block;
    position: absolute;
    width: 100%;
    border-bottom: solid 2px #fff;
    transition: 0.35s ease-in-out;
    left: 0;
  }
  #Toggle span:nth-child(1) { top: 0; }
  #Toggle span:nth-child(2) { top: 50%; }
  #Toggle span:nth-child(3) { top: 100%; }

  #Toggle.active span:nth-child(1) {
    top: 50%;
    transform: rotate(-45deg);
  }
  #Toggle.active span:nth-child(2),
  #Toggle.active span:nth-child(3) {
    top: 50%;
    transform: rotate(45deg);
  }
  #footer {
    padding: 44px 25px;
    font-size: 12px;
  }
  #footer .logoArea {
    margin-bottom: 16.4px;
  }
  #footer .logoArea .imgsize img {
    margin-top: 16.4px;
    height: 17px;
  }
  #footer .copyright {
    margin-top: 16.4px;
  }
  .scroll-top {
    width: 50px;
    height: 50px;
    top: -50px;
  }

  /* レポートを見るボタン */
  .floatingBtn {
    bottom: 20px;
    width: 130px;
    height: 70px;
  }
  .floatingBtn_inner {
    flex-direction: column;
  }
  .floatingBtn span {
    line-height: 1.3;
    font-size: 13px;
  }
  .floatingBtn_icon {
    width: 16px;
    height: 9px;
  }

  .about_main::after {
    content: none;
  }
  .about_inner {
    padding-right: 0;
  }  
}

@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
  main {
    padding-top: var(--headerHeight-sp);
  }
  .u_pcOnly {
    display: none;
  }
  .u_spOnly {
    display: block;
  }
  .u_ta_c-sp {
    text-align: center;
  }
  .u_ta_l-sp {
    text-align: left;
  }
  .u_ta_r-sp {
    text-align: right;
  }
  .u_mb_s  { margin-bottom: 10px; }
  .u_mb_m  { margin-bottom: 20px; }
  .u_mb_md { margin-bottom: 30px; }
  .u_mb_l  { margin-bottom: 40px; }
  .u_mb_xl { margin-bottom: 50px; }
  .u_mb_xxl { margin-bottom: 60px; }

  .u_mb_20-sp { margin-bottom: 20px; }

  /* コンポーネント */
  .c_p {
    font-size: 16px;
  }
  .c_p-s {
    font-size: 12px;
  }
  .c_textbox_head {
    font-size: 16px;
    padding: 8px 20px;
  }
  .c_textbox_inner {
    padding: 24px 20px;
  }
  .c_textbox_grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .c_textbox_grid_title {
    margin-inline: 0;
  }
  .c_textbox_grid_img {
    padding-inline: 0;
  }
  .c_bubble_title {
    position: relative;
    top: 0;
    width: 100%;
    min-width: auto;
    margin-inline: auto;
    padding: 5px 10px;
    font-size: 16px;
  }
  .c_bubble_title::before {
    bottom: -20px;
    width: 24px;
    height: 21px;
  }
  .c_bubble_inner {
    padding: 30px 20px 20px;
  }
  .c_bubble_text {
    font-size: 15px;
  }
  .c_table th,
  .c_table td {
    padding: 8px 4px;
    font-size: 16px;
  }

  /* TOP */
  .mv {
    padding-top: 36px;
  }
  .mv::before {
    background: url('../img/bg_mv-sp.webp') no-repeat center top;
    background-size: max(1030px, 100%) auto;
  }
  .mv_subtitle {
    font-size: 15px;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    padding-inline: 60px;
  }
  .mv_subtitle::after,
  .mv_subtitle::before {
    width: 50px;
  }
  .mv_title {
    font-size: 35px;
    letter-spacing: 0.12em;
  }
  .mv_lead {
    font-size: 16px;
    margin-top: 15px;
  }
  .mv_inner {
    margin-top: 26px;
  }
  .mv_box_header {
    flex-direction: column;
  }
  .mv_box_header_sub {  
    padding: 10px 20px;
    letter-spacing: 0.1em;
    font-size: 18px;
    border-right: none;
    text-align: center;
    border-bottom: 1px solid #fff;
  }
  .mv_box_header_main {
    padding: 14px 12px;
    font-size: 16px;
    line-height: 1.6;
  }
  .mv_box_header_main > strong {
    font-size: 29px;
    letter-spacing: 0.1em;
  }
  .mv_box_inner {
    padding: 38px 20px 65px;
  }
  .mv_box_dl {
    min-width: auto;
    width: 100%;
  }
  .mv_box_dl table,
  .mv_box_dl thead,
  .mv_box_dl tbody,
  .mv_box_dl tr,
  .mv_box_dl th,
  .mv_box_dl td {
    display: block;
    width: 100%;
  }
  .mv_box_dl th,
  .mv_box_dl td {
    padding: 8px 4px;
    font-size: 18px;
    letter-spacing: 0.04em;
  }
  .mv_box_dl th {
    min-width: auto;
  }

  /* about */
  .about {
    background: url('../img/bg_about.png') repeat center center / 90px 90px;
  }
  .about_main {  
    padding-block: 80px 40px;
  }
  .about_text {
    font-size: 18px;
    text-align: center;
  }

  /* features */
  .features_nav_inner {
    padding-block: 60px 40px;
  }
  .features_nav_inner::before {
    content: none;
  }
  .features_nav_inner::after {
    content: none;
  }
  .features_nav_title {
    margin-bottom: 34px;
    font-size: 24px;
  }
  .features_anchor {
    flex-direction: column;
  }
  .features_anchor_item {
    width: 100%;
    padding: 14px 12px 20px;
  }
  .features_anchor_num {
    width: 56px;
    height: 56px;
    font-size: 56px;
    padding-bottom: 23px;
  }
  .features_anchor_text {
    font-size: 18px;
  }
  .features_content {
    padding-bottom: 60px;
  }
  .features_item {
    padding-block: 50px 20px;
  }
  .features_item#content_1::before {
    content: "";
    position: absolute;
    right: -78px;
    top: -20px;
    width: 298px;
    height: 154px;
    background: url('../img/deco_06.png') no-repeat center center / contain;
    z-index: -10;
  }
  .features_item#content_2::before {
    left: -88px;
    top: -13px;
    width: 298px;
    height: 154px;
  }
  .features_item#content_3::before {
    right: -136px;
    top: -10px;
    width: 298px;
    height: 154px;
  }
  .features_item_head {
    margin-bottom: 20px;
  }
  .features_item_head_label {
    font-size: 20px;
  } 
  .features_item_head_num {
    width: 65px;
    height: 65px;
    font-size: 69px;
    padding-bottom: 25px;
  }
  #content_3 .features_item_head_num {
    padding-bottom: 27px;
  }
  .features_item_head_title {
    font-size: 27px;
    letter-spacing: -0.02em;
  }
  .features_answerbox_title {
    font-size: 16px;
    border: 1px solid var(--color-main);
    padding: 8px 26px;
    width: 100%;
  }
  .features_band {
    max-width: none;
    font-size: 16px;
    padding: 6px 16px;
  }

  /* faq */
  .faq {
    padding-block: 65px 74px;
  }
  .faq_inner::before,
  .faq_inner::after,
  .faq_deco {
    width: 112px;
    height: 114px;
  }
  .faq_inner::before {
    left: 0;
    top: -36px;
  }
  .faq_inner::after {
    content: none;
  }
  .faq_deco {
    left: 0;
    bottom: -40px;
  }
  .faq_title {
    font-size: 27px;
    letter-spacing: 0.02em;
    text-align: center;
    width: 100%;
    line-height: 1.4;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
  .faq_item + .faq_item {
    margin-top: 40px;
  }
  .faq_q {
    padding: 16px 20px;
    flex-direction: column;
    gap: 12px;
  }
  .faq_q_icon,
  .faq_a_icon {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }
  .faq_q_text {
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.05em;
  }
  .faq_a {
    padding: 30px 0 10px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .faq_a_icon {
    width: 68px;
    height: 68px;
    border: 2px solid var(--color-main);
    font-size: 30px;
  }
  .faq_a_main p {
    line-height: 1.7;
  }

  /* info */
  .info {
    padding-block: 60px 50px;
  }
  .info_box {
    padding: 30px 15px 30px;
  }
  .info_title {
    font-size: 18px;
  }
  .info_acco_item {
    display: block;
  }
  .info_acco_item + .info_acco_item {
    margin-top: 34px;
  }
  .info_acco_header {
    width: 100%;
    padding: 12px 35px 12px 25px;
    cursor: pointer;
    pointer-events: all;
    position: relative;
  }
  .info_acco_header::after {  
    position: absolute;
    content: "";
    right: 14px;
    top: 0;
    bottom: 0;
    margin-block: auto;
    clip-path: polygon(100% 30%, 50% 80%, 0 30%, 6% 24%, 50% 68%, 94% 24%);
    width: 18px;
    height: 16px;
    background-color: #fff;
    transition: var(--trans-min02);
  }
  .info_acco_header.is-active::after {
    rotate: 180deg;
  }
  .info_acco_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .info_acco_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 4px;
    padding-block: 20px 1px;
    height: auto;
  }
  .info_acco_list_item {
    width: auto;
    height: 100%;
    padding: 4px 8px 4px 6px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0;
  }
  .info_acco_list_item::after {
    margin-left: 0;
  }
  .info_acco_list_item[target="_blank"]::after {
    width: 12px;
    height: 13px;
  }
  .info_acco_list_item[href*=".pdf"]::after {
    width: 14px;
    height: 14px;
  }

  /* disclaimer */
  .disclaimer_sec +.disclaimer_sec {
    margin-top: 20px;
  }
  .disclaimer_inner {
    padding-block: 30px 70px;
  }
  .disclaimer_title {
    font-size: 13px;
  }
  .disclaimer_list li {
    font-size: 12px;
  }
  .disclaimer_text {
    font-size: 12px;
  }
}


