@charset "UTF-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ▼ 夢ふぉと独自スタイル */
/* ━━━━━━━━━━━━━━━━━━━━━━━━ */
.section-title {
  display: block;
  background-color: transparent;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin-bottom: 5rem;
}

.section-title-green {
  background-color: #E8F3C2;
}

.section-title-blue {
  background-color: #E1EFF8;
}

.section-title-pink {
  background-color: #F9E4E4;
}

.section-title-orange {
  background-color: #FFF8DC;
}

.deco-h2, .deco-h3 {
  padding: 0.4rem 1.2rem;
  background: aliceblue;
  border: 3px solid #8CB3D2;
  border-top: none;
  border-right: none;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.deco-h3 {
  background: white;
  border: 1px solid #8CB3D2;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.wp-block-group.deco-bg-orange {
  margin: 2rem 0 !important;
  padding: 3rem 2rem !important;
  border-left: 4px solid #FBE975 !important;
  background-color: #FFF8DC !important;
  border-radius: 8px !important;
}
.wp-block-group.deco-bg-orange h4 {
  margin-top: 0 !important;
}
.wp-block-group.deco-bg-orange p {
  margin: 0;
}

.small {
  color: #f26b6d;
  font-size: 0.85em;
  line-height: 1.6;
  font-weight: 500;
}

.onepoint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 3rem;
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 0;
  background: none;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media only screen and (max-width: 767px) {
  .onepoint {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.onepoint > .wp-block-group__inner-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .onepoint > .wp-block-group__inner-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.onepoint .txt {
  max-width: 620px;
  padding: 3rem;
  border: 2px solid #775A34;
  border-radius: 30px;
  background: url(../images/common/bg-repeat.png) center center #fff;
  font-size: 1.6rem;
  line-height: 1.9;
}
@media only screen and (max-width: 767px) {
  .onepoint .txt {
    padding: 2rem;
    font-size: 1.5rem;
    line-height: 1.85;
  }
}
.onepoint figure.img {
  display: block;
  margin-left: 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .onepoint figure.img {
    margin: 0;
  }
}
.onepoint figure.img img {
  display: block;
  width: 115px !important;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .onepoint figure.img img {
    width: 90px !important;
  }
}

.onepoint figure.wp-block-image {
  display: block !important;
}

.search-category-title {
  width: 263px;
  background-color: #FBE975;
  border-radius: 100px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 2;
  margin: auto;
  margin-bottom: -3rem;
}
.search-category-title:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px dashed #775A34;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.search-category-title.trigger {
  cursor: pointer;
}
.search-category-title.trigger.active:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.search-category-title.trigger:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  background: url(../images/common/arr.svg) center center no-repeat #775A34;
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.search-category-title.blue {
  color: #fff;
  background-color: #77CAFF;
}
.search-category-title.blue:after {
  border-color: #fff;
}
.search-category-title.green {
  color: #fff;
  background-color: #9fc22a;
}
.search-category-title.green:after {
  border-color: #fff;
}

.search-category {
  border: 5px solid #FBE975;
  border-radius: 50px;
  padding: 6rem 4rem 4.5rem;
  background: url(../images/common/bg-repeat.png);
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  .search-category {
    border-width: 2px;
    border-radius: 20px;
    padding: 5rem 1rem 2rem 2rem;
  }
  .search-category a {
    font-size: 1.5rem;
  }
  .search-category a:hover {
    color: #F2A522;
  }
  .search-category.bgblue a:hover {
    background-color: #77CAFF;
    color: #fff;
  }
  .search-category.bggreen a:hover {
    background-color: #CAEE51;
    color: #fff;
    border-color: #fff;
  }
}
@media only screen and (max-width: 1366px) {
  .search-category a:hover {
    color: #F2A522;
  }
  .search-category.bgblue a:hover {
    background-color: #77CAFF;
    color: #fff;
  }
  .search-category.bggreen a:hover {
    background-color: #CAEE51;
    color: #fff;
    border-color: #fff;
  }
}

.search-category-box {
  margin: 0 0 8rem;
}
@media only screen and (max-width: 767px) {
  .search-category-box {
    margin: 0 0 5rem;
  }
}

.search-category-ttl {
  width: 263px;
  background-color: #FBE975;
  border-radius: 100px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 2;
  margin: auto;
  margin-bottom: -3rem;
}
.search-category-ttl:after {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border: 1px dashed #775A34;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.search-category-ttl.trigger {
  cursor: pointer;
}
.search-category-ttl.trigger.active:before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.search-category-ttl.trigger:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1.5rem;
  width: 22px;
  height: 22px;
  background: url(../images/common/arr.svg) center center no-repeat #775A34;
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.search-category-ttl.blue {
  color: #fff;
  background-color: #77CAFF;
}
.search-category-ttl.blue:after {
  border-color: #fff;
}
.search-category-ttl.green {
  color: #fff;
  background-color: #9fc22a;
}
.search-category-ttl.green:after {
  border-color: #fff;
}

.search-category.bgblue {
  background: #E1EFF8;
  border: none;
}
.search-category.bggreen {
  background: #E8F3C2;
  border: none;
}
.search-category li {
  margin-right: 3rem;
  margin-bottom: 1rem;
}
.search-category li:last-child {
  margin-right: 0;
}

.search-category-anchor a {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding-right: 3rem;
  font-size: 1.8rem;
  font-weight: 500;
}
.search-category-anchor a:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  margin: auto;
  background: url(../images/common/arr-org.svg) center center no-repeat;
  width: 11px;
  height: 12px;
  background-size: 100%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (max-width: 767px) {
  .search-category-anchor a {
    padding-right: 2em;
  }
  .search-category-anchor a:after {
    top: 7px;
  }
}

.search-category-list li {
  margin-right: 2rem;
  margin-bottom: 2rem;
}
.search-category-list a {
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
  text-decoration: none;
}
.search-category-list.bdr a {
  border: 1px solid #775A34;
}
@media only screen and (max-width: 767px) {
  .search-category-list a {
    font-size: 1.5rem;
  }
  .search-category-list.bdr a {
    border: 1px solid #775A34;
  }
}

.search-category-tags li {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.search-category-tags a {
  background-color: #FBF7E7;
  border-radius: 30px;
  text-align: center;
  padding: 0.5rem 1.5rem;
  font-size: 1.4rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
  display: block;
}
.search-category-tags a:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px dashed #775A34;
  border-radius: 30px;
  z-index: -1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (max-width: 767px) {
  .search-category-tags li {
    margin-right: 0.2rem;
    margin-bottom: 0.5rem;
  }
  .search-category-tags a {
    font-size: 1.2rem;
  }
}

hr {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 3rem 0;
}

.lb-nav a.lb-prev, .lb-nav a.lb-next {
  opacity: 1 !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
  position: relative;
}

.lb-data .lb-caption {
  font-size: 3rem !important;
}

.lb-data .lb-number {
  display: none !important;
}

.lb-data .lb-close {
  opacity: 1 !important;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
}

.page-up {
  z-index: 9998;
}

#wpadminbar {
  display: none !important;
}

html {
  margin-top: 0 !important;
}

@media only screen and (max-width: 1366px) {
  .laptop-hidden {
    display: none;
  }
}

.mobile-visible {
  display: none;
}
@media only screen and (max-width: 767px) {
  .mobile-visible {
    display: block;
  }
}

.small-visible {
  display: none;
}
@media only screen and (max-width: 412px) {
  .small-visible {
    display: block;
  }
}

.hints-main-title, .section-title {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .hints-main-title, .section-title {
    margin-bottom: 3rem;
  }
}

.container {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: bold;
}

.hint-section {
  text-align: center;
  margin-bottom: 18rem;
}
@media only screen and (max-width: 767px) {
  .hint-section {
    margin-bottom: 6rem;
  }
}

.cat-main, .title-main {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
}

.cat-sub, .title-sub {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #665D52;
  margin-top: -0.5rem;
}

.title-main {
  font-size: 3rem;
  margin-bottom: 0.3rem;
}

.title-sub {
  font-size: 1.5rem;
}

.section-lead {
  display: block;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 767px) {
  .section-lead {
    font-size: 1.6rem;
  }
}

#pagination-idea .section-lead {
  margin-bottom: 4rem !important;
}

.hints-main-title, .section-title {
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 1366px) {
  .hints-main-title, .section-title {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .hints-main-title, .section-title {
    font-size: 2.8rem;
  }
}

.hints-main-lead {
  max-width: 800px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin: auto;
  margin-bottom: 8rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 1366px) {
  .hints-main-lead {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1024px) {
  .hints-main-lead {
    margin-bottom: 4rem;
  }
}

.search-category-anchor {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.search-category-anchor li a {
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 0.5rem 5rem 0.5rem 3rem;
  font-size: 1.6rem;
  text-decoration: none;
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
}
.search-category-anchor li a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 23px;
  margin: auto;
  background: url(../images/common/arr-org.svg) center center no-repeat;
  width: 11px;
  height: 12px;
  background-size: 100%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.btn-wrapper {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 2px;
}

.go-to-x, .btn-more, .btn-canva {
  min-width: 18em;
  display: inline-block;
  font-weight: 700;
  border-radius: 9999px;
  padding: 1.5rem 2.5rem;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.go-to-x:hover, .btn-more:hover, .btn-canva:hover {
  border: 3px solid #C49E6C;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.mainvisual-container {
  position: relative;
}
.mainvisual-container::after {
  content: "";
  width: 173px;
  height: 82px;
  background: url(../images/hints/top/deco_smily-album.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 35%;
  right: 2%;
}

@media only screen and (max-width: 1440px) {
  .hints-main-title-section {
    padding-top: 4rem;
  }
}
@media only screen and (max-width: 1366px) {
  .hints-main-title-section {
    padding-top: 10rem;
  }
}
@media only screen and (max-width: 1024px) {
  .hints-main-title-section {
    padding-top: 4rem;
  }
}
@media only screen and (max-width: 767px) {
  .hints-main-title-section {
    padding-top: 2rem;
  }
}

.rakuraku-tool-card-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
  margin-top: 2.5rem;
}

.rakuraku-tool-card {
  width: 320px;
  border: 3px solid transparent;
  border-radius: 1.5rem;
  background: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: border-width 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: border-width 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, border-width 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, border-width 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  position: relative;
}
@media only screen and (max-width: 1366px) {
  .rakuraku-tool-card {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .rakuraku-tool-card {
    width: 320px;
  }
}
@media screen and (max-width: 750px) {
  .rakuraku-tool-card {
    width: 300px;
    text-align: center;
  }
}
@media only screen and (max-width: 412px) {
  .rakuraku-tool-card {
    width: 265px;
  }
}
.rakuraku-tool-card:hover {
  border-width: 6px;
}

.rakuraku-tool-card.card-border-pink {
  border-color: #e67b83 !important;
}

.go-to-rakuraku-tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem;
}
@media only screen and (max-width: 1366px) {
  .go-to-rakuraku-tool {
    padding: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .go-to-rakuraku-tool {
    padding: 1.5rem;
  }
}

.catch-copy {
  font-size: 2.2rem;
  line-height: 1.4;
}

.catch-copy, .btn-label {
  font-weight: 700;
}
@media only screen and (max-width: 1366px) {
  .catch-copy, .btn-label {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .catch-copy, .btn-label {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 412px) {
  .catch-copy, .btn-label {
    font-size: 1.8rem;
  }
}
.catch-copy span, .btn-label span {
  font-weight: 800;
}

.emphasis {
  font-weight: bold;
}

.card-border-pink .emphasis {
  color: #e67b83;
}

.card-border-orange .emphasis {
  color: #ffbd59;
}

.card-border-mint .emphasis {
  color: #6cbead;
}

.tool-eyecatch {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.tool-eyecatch img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

.tool-desc {
  height: 10rem;
}
@media only screen and (max-width: 1366px) {
  .tool-desc {
    height: 11rem;
  }
}
@media only screen and (max-width: 767px) {
  .tool-desc {
    height: 10rem;
  }
}
.tool-desc p {
  font-size: 2.1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1366px) {
  .tool-desc p {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .tool-desc p {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 412px) {
  .tool-desc p {
    font-size: 1.6rem;
  }
}

.catch-copy, .tool-eyecatch, tool-desc p {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1366px) {
  .catch-copy, .tool-eyecatch, tool-desc p {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .catch-copy, .tool-eyecatch, tool-desc p {
    margin-bottom: 1rem;
  }
}

.tool-footer {
  position: absolute;
  bottom: -0.8em;
  right: -0.3em;
}

.btn-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  gap: 0.5em;
  white-space: nowrap;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  border-radius: 9999px;
  text-align: center;
  padding: 0.2em 1em;
  padding-right: 2.5em;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .btn-label {
    padding-right: 1em;
  }
}
.btn-label:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.9;
}
.btn-label .btn-arrow {
  display: inline-block;
  width: 3.5em;
  height: 3.5em;
  border-radius: 100%;
  position: absolute;
  right: -1.5em;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .btn-label .btn-arrow {
    width: 3em;
    height: 3em;
  }
}
.btn-label .btn-arrow::before, .btn-label .btn-arrow::after {
  content: "";
  border-radius: 3px;
  position: absolute;
}
.btn-label .btn-arrow::before {
  width: 2rem;
  height: 0.4rem;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn-label .btn-arrow::after {
  width: 1.6rem;
  height: 1.6rem;
  background-color: transparent;
  border-top: solid 0.4rem #fff;
  border-right: solid 0.4rem #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media only screen and (max-width: 1366px) {
  .btn-label .btn-arrow::after {
    width: 2rem;
    height: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .btn-label .btn-arrow::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.rakuraku-tool-card.card-border-orange {
  border-color: #ffbd59 !important;
}

.go-to-rakuraku-tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem;
}
@media only screen and (max-width: 1366px) {
  .go-to-rakuraku-tool {
    padding: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .go-to-rakuraku-tool {
    padding: 1.5rem;
  }
}

.catch-copy {
  font-size: 2.2rem;
  line-height: 1.4;
}

.catch-copy, .btn-label {
  font-weight: 700;
}
@media only screen and (max-width: 1366px) {
  .catch-copy, .btn-label {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .catch-copy, .btn-label {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 412px) {
  .catch-copy, .btn-label {
    font-size: 1.8rem;
  }
}
.catch-copy span, .btn-label span {
  font-weight: 800;
}

.emphasis {
  font-weight: bold;
}

.card-border-pink .emphasis {
  color: #e67b83;
}

.card-border-orange .emphasis {
  color: #ffbd59;
}

.card-border-mint .emphasis {
  color: #6cbead;
}

.tool-eyecatch {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.tool-eyecatch img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

.tool-desc {
  height: 10rem;
}
@media only screen and (max-width: 1366px) {
  .tool-desc {
    height: 11rem;
  }
}
@media only screen and (max-width: 767px) {
  .tool-desc {
    height: 10rem;
  }
}
.tool-desc p {
  font-size: 2.1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1366px) {
  .tool-desc p {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .tool-desc p {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 412px) {
  .tool-desc p {
    font-size: 1.6rem;
  }
}

.catch-copy, .tool-eyecatch, tool-desc p {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1366px) {
  .catch-copy, .tool-eyecatch, tool-desc p {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .catch-copy, .tool-eyecatch, tool-desc p {
    margin-bottom: 1rem;
  }
}

.tool-footer {
  position: absolute;
  bottom: -0.8em;
  right: -0.3em;
}

.btn-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  gap: 0.5em;
  white-space: nowrap;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  border-radius: 9999px;
  text-align: center;
  padding: 0.2em 1em;
  padding-right: 2.5em;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .btn-label {
    padding-right: 1em;
  }
}
.btn-label:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.9;
}
.btn-label .btn-arrow {
  display: inline-block;
  width: 3.5em;
  height: 3.5em;
  border-radius: 100%;
  position: absolute;
  right: -1.5em;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .btn-label .btn-arrow {
    width: 3em;
    height: 3em;
  }
}
.btn-label .btn-arrow::before, .btn-label .btn-arrow::after {
  content: "";
  border-radius: 3px;
  position: absolute;
}
.btn-label .btn-arrow::before {
  width: 2rem;
  height: 0.4rem;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn-label .btn-arrow::after {
  width: 1.6rem;
  height: 1.6rem;
  background-color: transparent;
  border-top: solid 0.4rem #fff;
  border-right: solid 0.4rem #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media only screen and (max-width: 1366px) {
  .btn-label .btn-arrow::after {
    width: 2rem;
    height: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .btn-label .btn-arrow::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.rakuraku-tool-card.card-border-mint {
  border-color: #6cbead !important;
}

.go-to-rakuraku-tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem;
}
@media only screen and (max-width: 1366px) {
  .go-to-rakuraku-tool {
    padding: 3rem;
  }
}
@media only screen and (max-width: 767px) {
  .go-to-rakuraku-tool {
    padding: 1.5rem;
  }
}

.catch-copy {
  font-size: 2.2rem;
  line-height: 1.4;
}

.catch-copy, .btn-label {
  font-weight: 700;
}
@media only screen and (max-width: 1366px) {
  .catch-copy, .btn-label {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .catch-copy, .btn-label {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 412px) {
  .catch-copy, .btn-label {
    font-size: 1.8rem;
  }
}
.catch-copy span, .btn-label span {
  font-weight: 800;
}

.emphasis {
  font-weight: bold;
}

.card-border-pink .emphasis {
  color: #e67b83;
}

.card-border-orange .emphasis {
  color: #ffbd59;
}

.card-border-mint .emphasis {
  color: #6cbead;
}

.tool-eyecatch {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.tool-eyecatch img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

.tool-desc {
  height: 10rem;
}
@media only screen and (max-width: 1366px) {
  .tool-desc {
    height: 11rem;
  }
}
@media only screen and (max-width: 767px) {
  .tool-desc {
    height: 10rem;
  }
}
.tool-desc p {
  font-size: 2.1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1366px) {
  .tool-desc p {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .tool-desc p {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 412px) {
  .tool-desc p {
    font-size: 1.6rem;
  }
}

.catch-copy, .tool-eyecatch, tool-desc p {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1366px) {
  .catch-copy, .tool-eyecatch, tool-desc p {
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .catch-copy, .tool-eyecatch, tool-desc p {
    margin-bottom: 1rem;
  }
}

.tool-footer {
  position: absolute;
  bottom: -0.8em;
  right: -0.3em;
}

.btn-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  gap: 0.5em;
  white-space: nowrap;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  border-radius: 9999px;
  text-align: center;
  padding: 0.2em 1em;
  padding-right: 2.5em;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease;
  transition: background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .btn-label {
    padding-right: 1em;
  }
}
.btn-label:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  opacity: 0.9;
}
.btn-label .btn-arrow {
  display: inline-block;
  width: 3.5em;
  height: 3.5em;
  border-radius: 100%;
  position: absolute;
  right: -1.5em;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .btn-label .btn-arrow {
    width: 3em;
    height: 3em;
  }
}
.btn-label .btn-arrow::before, .btn-label .btn-arrow::after {
  content: "";
  border-radius: 3px;
  position: absolute;
}
.btn-label .btn-arrow::before {
  width: 2rem;
  height: 0.4rem;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn-label .btn-arrow::after {
  width: 1.6rem;
  height: 1.6rem;
  background-color: transparent;
  border-top: solid 0.4rem #fff;
  border-right: solid 0.4rem #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media only screen and (max-width: 1366px) {
  .btn-label .btn-arrow::after {
    width: 2rem;
    height: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .btn-label .btn-arrow::after {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.post-title {
  text-align: center;
  margin-block: 7rem 5rem;
}
.post-title.color-pink {
  color: #e67b83;
}
.post-title.color-orange {
  color: #ffbd59;
}
.post-title.color-mint {
  color: #6cbead;
}

.img figure.wp-block-image:first-of-type {
  margin-bottom: 3rem;
}

.description figure.wp-block-image:first-of-type {
  display: none;
}

.step-block {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
  margin-top: 3em;
}
.step-block p:first-child {
  font-weight: bold;
  font-size: 1.2em;
  color: #7b5b3e;
}

.wp-block-columns {
  width: 1080px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wp-block-columns .wp-block-column {
  width: 33.33%;
}

.color-pink .img:first-of-type img,
.color-pink .wp-block-image:first-of-type img {
  border: 8px solid var(--tool-border);
  border-radius: 6px;
  overflow: hidden;
}

.color-orange .img:first-of-type img,
.color-orange .wp-block-image:first-of-type img {
  border: 8px solid var(--tool-border);
  border-radius: 6px;
  overflow: hidden;
}

.color-mint .img:first-of-type img,
.color-mint .wp-block-image:first-of-type img {
  border: 8px solid var(--tool-border);
  border-radius: 6px;
  overflow: hidden;
}

.rakuraku-bottom-section {
  padding: 5rem 0;
  background: #fff;
  text-align: center;
}

.section-image {
  max-width: 360px;
  margin: 0 auto 3rem;
}
@media only screen and (max-width: 767px) {
  .section-image {
    max-width: 280px;
    margin-bottom: 2.5rem;
  }
}
.section-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.three-steps, .align-cases {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .three-steps, .align-cases {
    gap: 1.2rem;
  }
}
.three-steps .step-item, .three-steps .case-item, .align-cases .step-item, .align-cases .case-item {
  width: 28%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .three-steps .step-item, .three-steps .case-item, .align-cases .step-item, .align-cases .case-item {
    width: 100px;
  }
}
.three-steps .step-item .step-label, .three-steps .step-item .case-label, .three-steps .case-item .step-label, .three-steps .case-item .case-label, .align-cases .step-item .step-label, .align-cases .step-item .case-label, .align-cases .case-item .step-label, .align-cases .case-item .case-label {
  display: block;
  font-weight: 700;
  color: #f26b6d;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}
.three-steps .step-item .thumb, .three-steps .case-item .thumb, .align-cases .step-item .thumb, .align-cases .case-item .thumb {
  display: block;
}
.three-steps .step-item .thumb img, .three-steps .case-item .thumb img, .align-cases .step-item .thumb img, .align-cases .case-item .thumb img {
  width: 100%;
  height: auto;
}
.three-steps .step-item .thumb-second, .three-steps .case-item .thumb-second, .align-cases .step-item .thumb-second, .align-cases .case-item .thumb-second {
  margin-left: 1rem;
}
.three-steps .step-item .step-cap, .three-steps .step-item .case-cap, .three-steps .case-item .step-cap, .three-steps .case-item .case-cap, .align-cases .step-item .step-cap, .align-cases .step-item .case-cap, .align-cases .case-item .step-cap, .align-cases .case-item .case-cap {
  margin-top: 2rem;
  font-size: 1.8rem;
  color: #555;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .three-steps .step-item .step-cap, .three-steps .step-item .case-cap, .three-steps .case-item .step-cap, .three-steps .case-item .case-cap, .align-cases .step-item .step-cap, .align-cases .step-item .case-cap, .align-cases .case-item .step-cap, .align-cases .case-item .case-cap {
    font-size: 0.8rem;
  }
}

#upload .step-label-first, #upload .step-label-second {
  margin-bottom: 5rem;
}
#upload .thumb img {
  width: auto;
  height: 350px;
}
#upload .thumb-second {
  margin-left: 1rem;
}
#upload .thumb-first img {
  padding-bottom: 3rem;
}
#upload .thumb-third {
  margin-bottom: 3rem;
}
#upload .thumb-third img {
  width: auto;
  height: 364px;
}
#upload .step-cap-third {
  margin-top: 4.4rem;
}

#auto-align .case-item {
  width: 48%;
}

.rakuraku-more-wrap {
  margin-top: 7rem;
}

.btn-more {
  color: #665D52;
  border: 1px solid #d7d7d7;
  background: #fff;
}
.btn-more:hover {
  border: 3px solid #d7d7d7;
}

#anc2.hint-section {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 767px) {
  #anc2.hint-section {
    margin-bottom: 6rem;
  }
}

.page-header {
  position: relative;
}

.pageidea-slider-wrapper {
  width: 100vw;
  max-width: 100vw;
  padding: 0 24px;
  margin-right: -50vw;
  margin-left: -50vw;
  margin-bottom: 15rem;
  position: relative;
  left: 50%;
  right: 50%;
}
@media screen and (max-width: 1080px) {
  .pageidea-slider-wrapper {
    margin-left: -52vw;
  }
}

.pageidea-slider {
  width: 100%;
  display: block;
  background-color: #f2f2f3;
  overflow: visible !important;
  padding-block: 7%;
  position: relative;
}
.pageidea-slider::before {
  content: "";
  width: 300px;
  height: 105px;
  background: url(../images/hints/top/deco_pagination.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -5%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(3deg) rotate(3deg);
          transform: translateX(-50%) rotate(3deg) rotate(3deg);
}
@media only screen and (max-width: 767px) {
  .pageidea-slider::before {
    width: 200px;
    height: 70px;
  }
}

.pageidea-lead {
  font-size: 2rem;
  text-align: left;
  padding-block: 3rem;
  padding-left: 9em;
  margin-bottom: 8rem;
  position: relative;
}
@media screen and (max-width: 610px) {
  .pageidea-lead {
    font-size: 1.4rem;
    text-align: center;
    padding: 3rem;
    margin: 15rem auto 4rem;
  }
}
.pageidea-lead::before, .pageidea-lead::after {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 4%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
}
@media screen and (max-width: 610px) {
  .pageidea-lead::before, .pageidea-lead::after {
    top: -100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.pageidea-lead::before {
  content: "";
  background: url(../images/hints/top/bg_page-type.svg) no-repeat;
  background-size: contain;
}
.pageidea-lead::after {
  content: attr(data-page);
  font-size: 5rem;
  font-weight: bold;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.splide__arrow {
  width: 80px !important;
  height: 80px !important;
  top: auto !important;
  bottom: 5%;
  -webkit-filter: drop-shadow(0 7px 3px #8C5E2A) !important;
          filter: drop-shadow(0 7px 3px #8C5E2A) !important;
  -webkit-transition: background 0.2s ease !important;
  transition: background 0.2s ease !important;
}
@media only screen and (max-width: 1440px) {
  .splide__arrow {
    width: 70px !important;
    height: 70px !important;
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .splide__arrow {
    width: 50px !important;
    height: 50px !important;
    top: 88% !important;
    -webkit-transform: none !important;
            transform: none !important;
  }
}
@media screen and (max-width: 390px) {
  .splide__arrow {
    width: 40px !important;
    height: 40px !important;
  }
}
.splide__arrow--prev {
  background: url(../images/hints/top/btn_slider-prev.svg) no-repeat !important;
  background-size: contain !important;
  left: 31% !important;
}
.splide__arrow--next {
  background: url(../images/hints/top/btn_slider-next.svg) no-repeat !important;
  background-size: contain !important;
  right: 31% !important;
}
.splide__arrow:hover {
  -webkit-transform: translateY(-50%) scale(1.05);
          transform: translateY(-50%) scale(1.05);
}

.splide__track {
  overflow: hidden !important;
}

.splide__list {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  will-change: transform;
}

.splide__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 200px;
}

.splide__pagination {
  display: none !important;
}

.slide-inner {
  padding-bottom: 6rem;
}

.slide-header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  position: relative;
}
.slide-header .page-number, .slide-header .slide-title {
  width: 11%;
  height: 11rem;
}
@media only screen and (max-width: 1536px) {
  .slide-header .page-number, .slide-header .slide-title {
    width: 10%;
    height: 10rem;
  }
}
@media only screen and (max-width: 1366px) {
  .slide-header .page-number, .slide-header .slide-title {
    width: 11%;
    height: 9rem;
  }
}
@media only screen and (max-width: 1024px) {
  .slide-header .page-number, .slide-header .slide-title {
    height: 8rem;
  }
}
.slide-header .page-number {
  font-family: Noto Sans;
  font-size: 3rem;
  color: #fff;
  line-height: 11rem;
  position: absolute;
  top: 0;
  z-index: 2;
}
@media only screen and (max-width: 1536px) {
  .slide-header .page-number {
    font-size: 2rem;
    line-height: 10rem;
  }
}
@media only screen and (max-width: 1366px) {
  .slide-header .page-number {
    font-size: 1.8rem;
    line-height: 9rem;
  }
}
@media only screen and (max-width: 1024px) {
  .slide-header .page-number {
    font-size: 2rem;
    line-height: 8rem;
  }
}
@media screen and (max-width: 600px) {
  .slide-header .page-number {
    font-size: 1.8rem;
  }
}
.slide-header .page-left {
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .slide-header .page-left {
    left: 12rem;
  }
}
@media only screen and (max-width: 767px) {
  .slide-header .page-left {
    left: 0.5rem;
  }
}
@media screen and (max-width: 600px) {
  .slide-header .page-left {
    left: 0;
  }
}
.slide-header .page-right {
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .slide-header .page-right {
    right: 12rem;
  }
}
@media only screen and (max-width: 767px) {
  .slide-header .page-right {
    right: 0.5rem;
  }
}
@media screen and (max-width: 600px) {
  .slide-header .page-right {
    right: 0;
  }
}

.slide-title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 2.6rem;
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  background: url(../images/hints/top/bg_slide-title.svg) no-repeat center center;
  background-size: contain;
  padding-block: 3rem;
  position: relative;
}
@media only screen and (max-width: 1536px) {
  .slide-title {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 1366px) {
  .slide-title {
    font-size: 2.2rem;
    padding-block: 2.5rem;
  }
}
@media only screen and (max-width: 1024px) {
  .slide-title {
    font-size: 2rem;
    line-height: 1.7;
  }
}
@media screen and (max-width: 600px) {
  .slide-title {
    font-size: 1.8rem;
  }
}

.slide-image {
  width: 93%;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.slide-description {
  font-size: 1.8rem;
  color: #f26b6d;
}

.canva-section-lead {
  margin-bottom: 5rem;
}

.howtouse-canva {
  width: 100vw;
  background: url(../images/common/bg-repeat02.png);
  padding-block: 3rem;
  margin-left: calc((100% - 100vw) / 2);
}

.title-howtouse-canva {
  display: block;
  color: #6cbead;
  font-size: 2.4rem;
  font-weight: 700;
}

.canva-hint-list {
  max-width: 1080px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 767px) {
  .canva-hint-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.canva-hint {
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .canva-hint {
    width: 68%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .canva-hint {
    width: 90%;
  }
}

.good-match {
  width: 278px;
  height: 180px;
  line-height: 1.6;
  background: url(../images/rakuraku/sec01_img2.png) no-repeat top center;
  padding: 5.8rem 4rem 4rem 4rem;
  margin-left: -6%;
  margin-bottom: -4rem;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
@media only screen and (max-width: 767px) {
  .good-match {
    margin-left: -8%;
  }
}
.good-match p {
  font-size: 1.6rem;
  letter-spacing: -0.025em;
  padding-top: 0.5rem;
  -webkit-transform: rotate(-18deg);
          transform: rotate(-18deg);
}

.canva-eyecatch {
  width: 100%;
  min-height: 309px;
  margin-top: 5rem;
  margin-bottom: 4rem;
  position: relative;
}
.canva-eyecatch::after {
  content: "";
  width: 50px;
  height: 50px;
  background: url(../images/hints/top/deco_pika.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -3.5rem;
  right: -4rem;
}
@media only screen and (max-width: 1366px) {
  .canva-eyecatch::after {
    width: 80px;
    height: 80px;
    top: -6.5rem;
    right: -7rem;
  }
}
@media screen and (max-width: 600px) {
  .canva-eyecatch::after {
    display: none;
  }
}
.canva-eyecatch .eyecatch {
  width: 100%;
  height: auto;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.canva-hint-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.2rem !important;
  font-weight: bold;
}
@media only screen and (max-width: 412px) {
  .canva-hint-heading {
    font-size: 1.8rem !important;
  }
}
.canva-hint-heading p {
  color: #f26b6d;
}

.canva-description {
  min-height: 150px;
  line-height: 1.6;
  background-color: lemonchiffon;
  border-radius: 20px;
  margin-top: 0.8rem;
}
.canva-description p {
  text-align: left;
  letter-spacing: -0.04em;
  padding: 3rem 3rem 3.3rem 3rem;
}

.canva-hint-btn {
  grid-column: 1/-1;
  -ms-grid-column-align: center;
      justify-self: center;
  margin-top: 3rem;
}

.btn-canva {
  color: #fff;
  background: #6cbead;
}

/* 個別ページ single-hints（本文レイアウト） */
.single-hints .post-title {
  max-width: 960px;
  margin: 6rem auto 6rem;
  padding: 0 20px;
  line-height: 1.35;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .single-hints .post-title {
    margin: 4rem auto 2rem;
  }
}
.single-hints .img {
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 0 20px;
}
.single-hints .img figure {
  margin: 0;
}
.single-hints .img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.single-hints .sub-title {
  display: table;
  margin: 0 auto 2rem !important;
}
.single-hints .description {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 1.8rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
}
@media only screen and (max-width: 767px) {
  .single-hints .description {
    font-size: 1.6rem;
    line-height: 1.85;
    padding-bottom: 0;
  }
}
.single-hints .description > * {
  margin: 0 0 1.2em;
}
.single-hints .description p {
  margin: 0 0 1.2em;
}
.single-hints .description h2, .single-hints .description h3, .single-hints .description h4 {
  line-height: 1.4;
  margin: 2.2em 0 1em;
  font-weight: 700;
}
.single-hints .description h2 {
  font-size: 2.4rem;
}
.single-hints .description h3 {
  font-size: 2.1rem;
}
.single-hints .description .wp-block-group.canva-ui .is-layout-flex {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .single-hints .description .wp-block-group.canva-ui .is-layout-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.single-hints .description .wp-block-group.canva-ui .is-layout-flex figure.wp-block-image {
  max-width: 45%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .single-hints .description .wp-block-group.canva-ui .is-layout-flex figure.wp-block-image {
    max-width: unset;
    width: 100%;
    text-align: center;
  }
}
.single-hints .description .wp-block-group.canva-ui .is-layout-flex figure.wp-block-image img {
  width: 100%;
  height: auto;
}
.single-hints .description .canva-ui figure.wp-block-image:first-of-type {
  display: block !important;
}
.single-hints .onepoint-title {
  display: inline-block;
  position: relative;
}
.single-hints .onepoint-title::before {
  content: "";
  width: 50px !important;
  height: 50px !important;
  background: url(../images/hints/top/deco_pika.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -3rem !important;
  right: -4rem !important;
}
@media only screen and (max-width: 767px) {
  .single-hints .onepoint-title::before {
    width: 30px !important;
    height: 30px !important;
    top: -1.5rem !important;
    right: -2rem !important;
  }
}
.single-hints .onepoint-title h4 {
  font-size: 1.9rem;
}
.single-hints .onepoint-title ul, .single-hints .onepoint-title ol {
  padding-left: 1.6em;
  margin: 0 0 1.4em;
}
.single-hints .onepoint-title li {
  margin: 0.4em 0;
}
.single-hints .onepoint-title figure.wp-block-image {
  margin: 2rem 0;
}
.single-hints .onepoint-title figure.wp-block-image img {
  border-radius: 0.5rem;
  height: auto;
}
.single-hints .onepoint-title figure.wp-block-image figcaption {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  color: #666;
  text-align: center;
}

.sec-contact__inner .container {
  margin-bottom: 0;
}
/*# sourceMappingURL=hints.css.map */