@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  -webkit-font-feature-settings: "palt" 1;
  color: #4d4d4d;
}
@media screen and (max-width: 1280px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
}

a {
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.6;
}
a.no-active {
  pointer-events: none;
  opacity: 0.6;
}

@media screen and (max-width: 1280px) {
  .pc-none {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (max-width: 1280px) {
  .pc-block {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .tab-none {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .tab-block {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}

.elm {
  opacity: 0;
  -webkit-transform: translateY(1.875em);
  transform: translateY(1.875em);
  -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-out;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
}
@media screen and (max-width: 768px) {
  .elm {
    -webkit-transition: opacity 1s ease-in-out, -webkit-transform 1s ease-out;
    transition: opacity 1s ease-in-out, transform 1s ease-out;
    -webkit-transform: translateY(70px);
    transform: translateY(70px);
  }
}
.elm.fade-in {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.elm.elm2 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .elm.elm2 {
    transition-delay: unset;
  }
}

.elm.elm2_2 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .elm.elm2_2 {
    transition-delay: unset;
  }
}

.elm.elm3 {
  transition: opacity 0.6s ease-in-out, transform 1s ease-out;
  transition-delay: 0.9s;
}
@media screen and (max-width: 768px) {
  .elm.elm3 {
    transition: opacity 0.6s ease-in-out, transform 0.7s ease-out;
    transition-delay: unset;
  }
}

.elm_title {
  opacity: 1;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  transform: translateY(-1.5em);
}
@media screen and (max-width: 768px) {
  .elm_title {
    transform: translateY(-70px);
  }
}

.elm_title_en {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0.3s;
}

.elm_r {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(300px);
}
@media screen and (max-width: 768px) {
  .elm_r {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(200px);
  }
}

.elm_l {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(-300px);
}
@media screen and (max-width: 768px) {
  .elm_l {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(-200px);
  }
}

.elm_o {
  opacity: 0;
  -webkit-transition-duration: 1.8s;
  transition-duration: 1.8s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-filter: blur(6px);
  filter: blur(6px);
}
.elm_o.fade-in {
  opacity: 1;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

.elm_title.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm_title_en.fade-in {
  opacity: 1;
}

.elm_r.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.elm_l.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.animate-on-appear {
  animation: fadeAndTranslate 1s ease forwards;
}

@-webkit-keyframes fadeAndTranslate {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeAndTranslate {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.animate-on-appear-l {
  animation: fadeAndTranslateL 1s ease forwards;
}

@keyframes fadeAndTranslateL {
  from {
    opacity: 0;
    transform: translateX(-3.125em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-o {
  animation: fadeAndTranslateO 1s ease forwards;
}

@-webkit-keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
.inner840 {
  max-width: 52.5em;
  width: 90%;
  margin: 0 auto;
}

.inner980 {
  max-width: 61.25em;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  main {
    padding: 0;
  }
}

.secTemplate {
  position: relative;
  padding-block: 5.75em 7.1875em;
  margin-top: 3.5em;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .secTemplate {
    padding-block: 3.75em 3.1875em;
  }
}
.secTemplate .secBlock {
  position: relative;
  z-index: 1;
}
.secTemplate .secBlock:nth-of-type(n + 2) {
  margin-top: 7.5em;
}
.secTemplate .secBlock.mt50 {
  margin-top: 3.125em;
}
.secTemplate .secBlock .secContent {
  background-color: #fff;
  border-radius: 1em;
  padding: 1.5em 2.875em;
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  margin-top: 2.25em;
}
.secTemplate .secBlock_icon {
  position: absolute;
  z-index: 1;
  width: 8.15625em;
}
.secTemplate .secBlock_icon.icon01 {
  left: 1em;
  bottom: 2em;
}
@media screen and (max-width: 768px) {
  .secTemplate .secBlock_icon.icon01 {
    left: 50%;
    bottom: 3em;
  }
}
.secTemplate .secBlock_icon.icon02 {
  right: -12em;
  bottom: 1em;
}
@media screen and (max-width: 768px) {
  .secTemplate .secBlock_icon.icon02 {
    bottom: -8em;
    right: auto;
  }
}
.secTemplate .secBlock_icon.icon03 {
  left: -12em;
  bottom: 0em;
}
@media screen and (max-width: 768px) {
  .secTemplate .secBlock_icon.icon03 {
    bottom: -12em;
    left: 50%;
  }
}
.secTemplate .secBlock_icon.icon04 {
  right: -12em;
  bottom: -0.5em;
}
@media screen and (max-width: 768px) {
  .secTemplate .secBlock_icon.icon04 {
    bottom: -10em;
    left: 50%;
  }
}
@media screen and (max-width: 768px) {
  .secTemplate .secBlock_icon {
    position: absolute;
    top: auto;
    bottom: -8em;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.secTemplate .secTtl {
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .secTemplate .secTtl {
    padding-bottom: 10em;
  }
}
.secTemplate .secTtl_headBlock {
  position: relative;
  display: inline-block;
}
.secTemplate .secTtl_head {
  display: inline-block;
  font-size: 2.125em;
  font-weight: bold;
  padding: 0.1em 1.3em;
  letter-spacing: 0.1em;
  color: #fb9365;
  border-top: 0.1em solid #fb9365;
  border-bottom: 0.1em solid #fb9365;
}
.secTemplate .secTtl_nextTtl {
  font-size: 1.875em;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fb9365;
  margin-top: 1.5em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .secTemplate .secTtl_nextTtl {
    margin-top: 0.5em;
  }
}
.secTemplate .secUl {
  margin-top: 1.5em;
  padding-inline: 3%;
}
.secTemplate .secUl ul li {
  font-size: 1em;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2;
}
.secTemplate .secUl ul li span {
  color: #fb9365;
}
.secTemplate .graphNote {
  max-width: 51.875em;
  width: 90%;
  margin-inline: auto;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .secTemplate .graphNote {
    width: 100%;
  }
}
.secTemplate .graphNote p {
  font-size: 0.6875em;
  color: #4d4d4d;
  letter-spacing: 0;
}
.secTemplate .blockW {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .secTemplate .blockW {
    margin-top: 0em;
    flex-direction: column;
  }
}
.secTemplate .blockW > div {
  width: 47.55%;
}
@media screen and (max-width: 768px) {
  .secTemplate .blockW > div {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .secTemplate .blockW > div:nth-of-type(n + 2) {
    margin-top: 2em;
  }
}

.headlineTtl {
  text-align: center;
  position: relative;
  z-index: 2;
}
.headlineTtl_head {
  font-size: 1.875em;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fb9365;
  margin-bottom: 1em;
  text-align: center;
}
.headlineTtl_txt {
  width: 100%;
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-block: 0.2em 0.3em;
  background-color: #fb9365;
  color: #fff;
  border-radius: 1em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .headlineTtl_txt {
    line-height: 1.6;
    padding-block: 0.5em;
    border-radius: 2em;
  }
}

.noteArea {
  margin-top: 8em;
  padding-bottom: 3.6em;
}
.noteArea p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.625em;
  color: #231815;
  letter-spacing: 0;
  text-align: justify;
}

/* ふわふわするアニメーション */
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.3em);
  }
}
@keyframes fuwafuwa2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.6em);
  }
}
.anime-fuwafuwa {
  animation: 1s fuwafuwa infinite;
}

main.plus1tool {
  overflow: hidden;
}
main.plus1tool section {
  scroll-margin-top: 2em;
}
main.plus1tool p {
  line-height: 1.8;
}

.ribbonTitle {
  position: relative;
  text-align: center;
  margin-inline: auto;
  max-width: 61.25em;
  width: 90%;
  font-size: 1em;
}
.ribbonTitle__inner {
  position: relative;
  display: block;
  width: 100%;
  margin: 0.7em auto 0;
  background-color: #fb9365;
  color: #fff;
  font-size: 2.3125em;
  letter-spacing: 0.07em;
  font-weight: 700;
  line-height: 1.5;
  padding: 1em 2.5em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 1.2em) 50%, 100% 100%, 0 100%, 1.2em 50%);
}
@media screen and (max-width: 768px) {
  .ribbonTitle__inner {
    font-size: 1.5em;
    width: 100%;
    padding: 0.75em 1.5em;
    clip-path: polygon(0 0, 100% 0, calc(100% - 0.9em) 50%, 100% 100%, 0 100%, 0.9em 50%);
  }
}
.ribbonTitle__inner::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.ribbonTitle__inner::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.pageTitle {
  text-align: center;
}
.pageTitle__band {
  background-color: #fb9365;
  width: 100%;
  padding: 1.875em 0 1.0625em;
}
.pageTitle__heading {
  color: #fff;
  font-size: 2.75em;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .pageTitle__heading {
    font-size: 1.75em;
  }
}
.pageTitle__sub {
  display: block;
  font-size: 0.61em;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 0.375em;
}
.pageTitle__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.75em;
  background-color: #fff;
  max-width: 54em;
  width: 92%;
  margin: 1.75em auto 0;
  padding: 0.8125em 1em;
}
@media screen and (max-width: 768px) {
  .pageTitle__logos {
    gap: 1.5em;
    padding: 0.75em 0.5em;
  }
}
.pageTitle__logo {
  width: auto;
  height: 2.5em;
}
@media screen and (max-width: 768px) {
  .pageTitle__logo {
    height: 2.125em;
  }
}

.hero {
  padding-top: 2.5em;
  text-align: center;
}
.hero__title {
  color: #fb9365;
  font-size: 4.5em;
  font-weight: bold;
  letter-spacing: 0em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .hero__title {
    font-size: 2.2em;
  }
}
.hero__illust {
  max-width: 52.5em;
  width: 92%;
  margin: 1.5em auto 0;
}
.hero__illust img {
  width: 100%;
  height: auto;
}
.hero__lead {
  max-width: 49em;
  width: 90%;
  margin: 2em auto 0;
  text-align: justify;
  font-size: 1.25em;
}
@media screen and (max-width: 768px) {
  .hero__lead {
    font-size: 1em;
  }
}

.foodGuide {
  display: flex;
  align-items: center;
  gap: 3em;
  max-width: 61.25em;
  width: 90%;
  margin: 2.5em auto 0;
}
@media screen and (max-width: 768px) {
  .foodGuide {
    flex-direction: column;
    gap: 1.5em;
  }
}
.foodGuide__circle {
  width: 8.125em;
  flex-shrink: 0;
}
.foodGuide__circle img {
  width: 100%;
  height: auto;
}
.foodGuide__box {
  position: relative;
  flex: 1;
  border: 1px solid #000;
  padding: 1.875em 1.5em 1.25em;
}
@media screen and (max-width: 768px) {
  .foodGuide__box {
    width: 100%;
  }
}
.foodGuide__title {
  position: absolute;
  top: 0;
  left: 1em;
  transform: translateY(-50%);
  background-color: #fff;
  padding: 0 0.5em;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.2;
}
.foodGuide__title::before {
  content: "●";
  margin-right: 0.25em;
}
.foodGuide__list {
  display: flex;
  gap: 1.5em;
}
@media screen and (max-width: 768px) {
  .foodGuide__list {
    flex-direction: column;
    gap: 1.25em;
  }
}
.foodGuide__item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.625em;
}
.foodGuide__iconWrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125em;
}
.foodGuide__icon {
  width: 3em;
  height: 3em;
}
.foodGuide__label {
  font-size: 0.8125em;
  font-weight: 700;
}
.foodGuide__label--staple {
  color: #c9971f;
}
.foodGuide__label--main {
  color: #dd5138;
}
.foodGuide__label--side {
  color: #6ba43e;
}
.foodGuide__text {
  font-size: 0.875em;
  line-height: 1.6;
  text-align: left;
}

.monthSec {
  padding-top: 4.375em;
}
.monthSec__text {
  max-width: 49em;
  width: 90%;
  margin: 2em auto 0;
  font-size: 1.25em;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .monthSec__text {
    font-size: 1em;
  }
}

.bizSec {
  padding-top: 4.375em;
}
.bizSec__title {
  text-align: center;
  color: #fb9365;
  font-size: 3.125em;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .bizSec__title {
    font-size: 1.8em;
  }
}
.bizSec__text {
  max-width: 52.5em;
  width: 92%;
  margin: 2em auto 0;
}
.bizSec__text p + p {
  margin-top: 1em;
}
.bizSec__pdfLink a {
  color: #004c97;
  text-decoration: underline;
  font-weight: 700;
}
.bizSec__pdfIcon {
  width: 1.5em;
  height: auto;
  vertical-align: middle;
  margin-left: 0.375em;
}

.bizStep {
  display: flex;
  justify-content: center;
  gap: 5em;
  max-width: 50em;
  width: 92%;
  margin: 2em auto 0;
}
@media screen and (max-width: 768px) {
  .bizStep {
    gap: 1.5em;
  }
}
.bizStep__item {
  flex: 1;
  min-width: 0;
}
.bizStep__num {
  text-align: center;
  color: #fb9365;
  font-weight: 700;
  font-size: 1.375em;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 768px) {
  .bizStep__num {
    font-size: 1em;
  }
}
.bizStep__numDigit {
  font-size: 1.6em;
  margin-left: 0.1em;
  letter-spacing: 0;
}
.bizStep__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75em;
  background-color: #fdf0e7;
  border-radius: 0.75em;
  margin-top: 0.625em;
  padding: 2.25em 1em 1.5em;
}
@media screen and (max-width: 768px) {
  .bizStep__card {
    gap: 1em;
    border-radius: 0.5em;
    padding: 1.25em 0.5em 1em;
  }
}
.bizStep__icon {
  width: 45%;
  max-width: 7em;
  color: #fb9365;
}
.bizStep__icon svg {
  display: block;
  width: 100%;
  height: auto;
}
.bizStep__label {
  color: #fb9365;
  font-size: 1.125em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .bizStep__label {
    font-size: 0.8125em;
  }
}
.bizStep__item:not(:last-child) .bizStep__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: -2.9em;
  width: 0.875em;
  height: 100%;
  background: url("../../img/icon_step_arrow.svg") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .bizStep__item:not(:last-child) .bizStep__card::after {
    right: -1.2em;
  }
}

.anchorBtns {
  display: flex;
  justify-content: center;
  gap: 1.25em;
  max-width: 61.25em;
  width: 92%;
  margin: 2.5em auto 0;
}
@media screen and (max-width: 768px) {
  .anchorBtns {
    flex-direction: column;
    align-items: center;
  }
}
.anchorBtns__item {
  flex: 1;
  max-width: 18.75em;
}
@media screen and (max-width: 768px) {
  .anchorBtns__item {
    width: 100%;
    max-width: 22em;
  }
}
.anchorBtns__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fb9365;
  color: #fff;
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.5;
  text-align: center;
  border: 3px solid #fff;
  border-radius: 0.5em;
  box-shadow: 0 0.1875em 0.375em rgba(0, 0, 0, 0.2);
  padding: 0.875em 0.75em;
  height: 100%;
}

.anchorBtns a:link {
  color: #fff;
}
.anchorBtns a:visited {
  color: #fff;
}
.anchorBtns a:hover {
  color: #fff;
}
.anchorBtns a:active {
  color: #fff;
}

.plusSec {
  padding-top: 4.375em;
}
.plusSec__cols {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  max-width: 61.25em;
  width: 92%;
  margin: 2.5em auto 0;
}
@media screen and (max-width: 768px) {
  .plusSec__cols {
    flex-wrap: wrap;
    gap: 1em;
  }
}
.plusSec__circle {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 14.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  color: #fff;
  text-align: center;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .plusSec__circle {
    width: 12.5em;
    padding: 0.75em;
  }
}
.plusSec__circle--veg {
  background-color: #3d8c40;
}
.plusSec__circle--fruits {
  background-color: #e78a3c;
}
.plusSec__circleTitle {
  font-size: 2em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .plusSec__circleTitle {
    font-size: 1.5em;
  }
}
.plusSec__circleText {
  font-size: 0.9375em;
  font-weight: 700;
  line-height: 1.8;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .plusSec__circleText {
    font-size: 0.8125em;
  }
}
.plusSec__img {
  flex: 1;
  max-width: 28.5em;
}
.plusSec__img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .plusSec__img {
    order: -1;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.plusSec__attention {
  max-width: 61.25em;
  width: 92%;
  margin: 2.5em auto 0;
  border: 3px solid #fb9365;
  padding: 1.5em 2em;
  color: #fb9365;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plusSec__attention {
    padding: 1.25em;
    text-align: left;
  }
}
.plusSec__attention p {
  font-size: 1.25em;
}

.pointSec {
  padding-top: 4.375em;
}
.pointSec__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.75em 5em;
  max-width: 61.25em;
  width: 92%;
  margin: 2.5em auto 0;
}
.pointSec__list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px dotted #fb9365;
}
.pointSec__list::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 4px dotted #fb9365;
}
@media screen and (max-width: 768px) {
  .pointSec__list {
    grid-template-columns: 1fr;
    gap: 2em;
  }
  .pointSec__list::before, .pointSec__list::after {
    display: none;
  }
}
.pointSec__card {
  display: flex;
  flex-direction: column;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .pointSec__card:not(:first-child) {
    border-top: 4px dotted #fb9365;
    padding-top: 2em;
  }
}
.pointSec__head {
  display: flex;
  align-items: flex-start;
  gap: 0.875em;
}
.pointSec__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.7em;
  height: 1.7em;
  line-height: 1;
  border-radius: 50%;
  background-color: #f5d321;
  color: #000;
  font-size: 1.75em;
  font-weight: 700;
}
.pointSec__cardTitle {
  font-size: 1.5em;
  font-weight: 700;
  color: #fb9365;
  line-height: 1.5;
}
.pointSec__text {
  margin-top: 0.375em;
  line-height: 1.75;
}
.pointSec__img {
  margin-top: auto;
  padding-top: 1.5em;
  text-align: center;
}
.pointSec__img img {
  height: 11.5em;
  width: auto;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .pointSec__img img {
    height: auto;
    width: 100%;
    max-width: 26.5em;
  }
}

.toolSec {
  margin-top: 4.375em;
  padding: 1.75em 0 5em;
}
.toolSec .plus1tool_content {
  width: 820px;
  max-width: 92%;
  margin: 0 auto;
  padding: 15px;
}
.toolSec .plus1tool_content h3 {
  margin-right: 20px;
  margin-left: 20px;
  font-weight: bold;
  font-size: 1.15em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .toolSec .plus1tool_content h3 {
    font-size: 1.4em;
    margin-inline: auto;
  }
}
.toolSec .plus1tool_content h3:first-child {
  margin-top: 0;
}
.toolSec .plus1tool_subtitle {
  width: 100%;
  padding: 7px;
  background-color: #fb9365;
  border-radius: 6px;
  border: solid 1px #fb9365;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.toolSec .plus1tool_list_wide,
.toolSec .plus1tool_list {
  display: flex;
  justify-content: space-between;
}
.toolSec .plus1tool_list li,
.toolSec .plus1tool_list_wide li {
  width: 48%;
  height: auto !important;
  margin: 10px 0;
  padding: 30px;
  border: 1px #fb9365 solid;
  border-radius: 5px;
  background-color: #fdf0e7;
}
.toolSec .plus1tool_list li.wide,
.toolSec .plus1tool_list_wide li.wide {
  width: 100%;
}
.toolSec .plus1tool_list li.wide > .plus1tool_comment,
.toolSec .plus1tool_list_wide li.wide > .plus1tool_comment {
  width: 100%;
}
.toolSec .plus1tool_list li h3,
.toolSec .plus1tool_list_wide li h3 {
  border: none;
  color: #fb9365;
  text-align: center;
}
.toolSec .plus1tool_wrap {
  margin-right: 20px;
  margin-left: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .toolSec .plus1tool_wrap {
    gap: 3em;
    display: flex;
    flex-direction: column;
  }
}
.toolSec .plus1tool_wrap_pop h3 {
  font-size: 0.8em;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .toolSec .plus1tool_wrap_pop h3 {
    font-size: 1.2em;
  }
}
.toolSec .plus1tool_wrap_pop .plus1tool_icon img {
  width: 100%;
  max-width: 306px;
}
.toolSec .plus1tool_left {
  float: left;
}
.toolSec .plus1tool_right {
  float: right;
}
.toolSec .plus1tool_icon {
  text-align: center;
}
.toolSec .plus1tool_icon img {
  max-width: 100%;
  height: auto;
}
.toolSec .plus1tool_download {
  text-align: center;
}
.toolSec .plus1tool_download p {
  margin: 5px 0;
}
.toolSec .plus1tool_download img {
  max-width: 100%;
  height: auto;
}
.toolSec .plus1tool_comment {
  margin: 20px auto;
}
.toolSec .plus1tool_product {
  display: inline-block;
  margin-top: 5px;
  padding: 6px 14px;
  border: 1px dotted #000;
}
@media screen and (max-width: 768px) {
  .toolSec .plus1tool_content {
    width: 90%;
    padding: 0;
  }
  .toolSec .plus1tool_list,
  .toolSec .plus1tool_list_wide {
    flex-direction: column;
  }
  .toolSec .plus1tool_list li,
  .toolSec .plus1tool_list_wide li {
    width: 100%;
    padding: 20px 15px;
  }
  .toolSec .plus1tool_left,
  .toolSec .plus1tool_right {
    float: none;
  }
}

.dlFloat {
  position: fixed;
  right: 1.25em;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.4375em;
  height: 8.4375em;
  border-radius: 50%;
  background-color: #fb9365;
  box-shadow: 0 0.25em 0.75em rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .dlFloat {
    right: 0.75em;
    top: auto;
    bottom: 1.25em;
    transform: none;
    width: 6.75em;
    height: 6.75em;
  }
}
.dlFloat__label {
  color: #fff;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .elm {
    opacity: 1;
    transform: none;
    transition: none;
  }
}