@charset "UTF-8";

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

 CP 

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

/*--------------------------------
 Layout
--------------------------------*/

:root {
  --main-width: 768px;

  --post-padding-side: 64px;
  --item-padding-side: 40px;

  --z-base: 0;
  --z-sticky: 50;
}


/*--------------------------------
 Text
--------------------------------*/

:root {
  --fc-base: #202020;
  --ff-base: "Inter", "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", Meiryo, ui-sans-serif, system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-base: 1.65rem;
  --fw-base: 400;
  --lh-base: 1.8;
  --ls-base: 0;
  --ta-base: left;


  /* Variant */  

  --fc-gray: #707070;

  --fc-link: #0078de;
  --fc-link-hv: #f60;
  --fw-bold: 600;

  --lh-ttl: 1.6;
}


/*--------------------------------
 Color
--------------------------------*/

:root {
  --color-primary: #f60013;
  --color-primary-l: #ffeaea;
  --color-primary-ll: #fff0f0;

  --color-secondary: #0098ef;

  --color-orange: #ff4f20;

  --color-accent: #fb5059;

  --color-page-bg: #f1f5f9;
  --color-page-bg-l: #f5f5f5;

  --color-border: #e0e3e6;
  --color-border-l: #f2f5f7;

  --color-item-wappy: #2d6bd6;

  --color-item-no1: var(--color-item-wappy);
}


/*--------------------------------
 Modules
--------------------------------*/

:root {
  --txt-margin: 28px;
  --block-margin: 32px;

  --items-outline-size: 24px;
  --items-outline-color: var(--color-primary-l);

  --item-heading-fs: 1.8rem;

  --box-r: 6px;
  --box-padding: 20px 20px;
  --box-shadow-base: 0 3px 5px rgba(0, 0, 0, 0.05);

  --cta-btn-height: 88px;

  --btn-color: var(--color-primary);
  --btn-color-shiny: #ff6b76;
  --btn-color-d: #0085c2;

  --btn-color-no1: #00a3ee;;
  --btn-color-no1-shiny: #71d3ff;

  --btn-r: 6px;

  --transition-base: .3s;
  --opacity-hv: .76;
}



@media all and (max-width: 768px) {
:root{
  --main-width: 100%;

  --post-padding-side: 24px;
  --item-padding-side: 16px;

  --fs-base: 1.5rem;
  --ls-base: 1.75;

  --items-outline-size: 16px;

  --item-heading-fs: 1.7rem;

  --txt-margin: 20px;
  --block-margin: 24px;

  --box-r: 5px;
  --box-padding: 12px 14px;

  --btn-r: 5px;

  --cta-btn-height: 76px;
}
}


@media all and (max-width: 480px) {
:root {
  --post-padding-side: 14px;
  --item-padding-side: 14px;

  --items-outline-size: 5px;
}
}



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

 Base Setting

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

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  color: var(--fc-base);
  font-family: var(--ff-base);
  font-size: var(--fs-base);
  font-weight: var(--fw-base);
  letter-spacing: var(--ls-base);
  line-height: var(--lh-base);
  text-align: var(--ta-base);
  background: var(--color-page-bg);
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

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

img, video, iframe{
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

a {
  cursor: pointer;
}

b, strong {
  font-weight: var(--fw-bold);
}

h1, h2, h3, h4, h5 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-ttl);
}

button {
  cursor: pointer;
  transition: var(--transition-base);
}

input[type="text"],
input[type="button"],
input[type="email"],
input[type="submit"],
textarea {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.fc-main-color {
  color: var(--color-primary);
}



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

 Page Layout

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

.contents {
  width: fit-content;
  margin: 0 auto;
}

.main {
  width: var(--main-width);
}

.post {
  padding: 56px var(--post-padding-side);
  background: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
}


@media all and (max-width: 768px) { 
  .contents {
    width: 100%;
    padding: 0;
  }

  .post {
    padding-top: 0;
    padding-bottom: 40px;
    box-shadow: none;
  }
}



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

 Post Header

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

.post-header {
  margin-bottom: 32px;
}


.post-mv img {
  width: 100%;
}

.post-item-slide {
  padding: 20px 0;
  background: var(--color-page-bg);
}

.post-item-slide__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.post-item-slide ul {
  animation: scroll-left 20s infinite linear .5s both;
  display: flex;
  gap: 8px;
}

.post-item-slide li {
  width: 160px;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


.post-ttl {
  margin-top: 24px;
  font-size: 2rem;
}

.post-meta {
  margin-top: 16px;
  padding: 2px 16px;
  background: var(--color-page-bg);
}

.post-meta dl {
  color: var(--fc-gray);
  font-size: 1.45rem;
  display: flex;
  align-content: center;
  gap: 16px;
}

.post-meta__item {
  display: flex;
  align-content: center;
  gap: 4px;
}

.post-meta dt {
  display: flex;
  align-items: center;
  gap: 4px;
}

.post-meta dt::before {
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: 100%;
  content: "";
  display: block;
}

.post-meta dt:is(.--update-date *)::before {
  background-image: url(../img/icon-meta-update.svg);
}

.post-meta dt:is(.--cat *)::before {
  background-image: url(../img/icon-meta-cat.svg);
}


@media all and (max-width: 768px) {
  .post-header {
    margin-bottom: 24px;
  }

  .post-mv {
    margin: 0 calc(var(--post-padding-side) * -1);
  }

  .post-item-slide {
    margin: 0 calc(var(--post-padding-side) * -1);
    padding: 12px 0;
  }

  .post-item-slide__inner {
    gap: 6px;
  }

  .post-item-slide ul {
    animation-duration: 16s;
    gap: 6px;
  }

  .post-item-slide li {
    width: calc(100vw / 3.8);
  }

  .post-ttl {
    margin-top: 20px;
    font-size: 1.8rem;
  }

  .post-meta {
    margin-top: 12px;
    padding: 2px 12px;
  }

  .post-meta dl {
    font-size: 1.3rem;
    gap: 12px;
  }

  .post-meta dt::before {
    width: 17px;
    height: 17px;
  }
}


@media all and (max-width: 480px) {
  .post-ttl {
    margin-top: 14px;
    font-size: 1.75rem;
  }
}



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

 Post Body

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

/*--------------------------------
 Post Body / Heading
--------------------------------*/

.post-body > h2 {
  margin-top: 56px;
  padding: 18px 16px 18px 22px;
  background-color: var(--color-page-bg);
  background-image: linear-gradient(to bottom right, transparent 0%, transparent 25%, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 1) 50%, transparent 50%, transparent 75%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1) 100%);
  background-repeat: repeat;
  background-size: 4px 4px;
  font-size: 2rem;
  border: 2px solid #fff;
  outline: 1px solid var(--color-border);
  border-radius: 3px;
  box-shadow: var(--box-shadow-base);
  position: relative;
}

.post-body > h2::before {
  width: 5px;
  height: calc(100% - 20px);
  background: var(--color-primary);
  border-radius: 0 4px 4px 0;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}


.post-body > h3 {
  margin-top: 44px;
  padding: 12px 0 12px 20px;
  font-size: 1.8rem;
  background: var(--color-page-bg-l);
  position: relative;
}

.post-body > h3::before {
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}


.h-ranking-footer {
  margin-top: 48px;
  padding: 0 0 12px;
  border-bottom: 3px solid var(--color-border-l);
  position: relative;
}

.h-ranking-footer::after {
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.h-ranking-footer h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.h-ranking-footer__1 {
  color: var(--fc-gray);
  font-weight: 500;
}

.h-ranking-footer__2 {
  font-size: 2rem;
}

.h-ranking-footer__2 span {
  color: var(--color-primary);
  font-size: 120%;
  font-weight: 700;
}


@media all and (max-width: 768px) {
  .post-body > h2 {
    margin-top: 44px;
    padding: 12px 12px 12px 20px;
    font-size: 1.85rem;
  }

  .post-body > h3 {
    margin-top: 32px;
    padding: 12px 0 12px 16px;
    font-size: 1.65rem;
  }

  .h-ranking-footer {
    margin: 36px 0 22px;
  }

  .h-ranking-footer h2 {
    gap: 4px;
  }

  .h-ranking-footer__1 {
    font-size: 1.5rem;
  }

  .h-ranking-footer__2 {
    font-size: 1.7rem;
  }
}


/*--------------------------------
 Post Body / Text & Media
--------------------------------*/

.post-body p {
  margin-top: var(--txt-margin);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
}

.post-body p:first-child {
  margin-top: 0;
}

.post-body p.margin-l {
  margin-top: calc(var(--txt-margin) * 1.8);
}

.post-body .img {
  margin-top: var(--block-margin);
  text-align: center;
}

.post-body .img a {
  transition: var(--transition-base);
}

.post-body .img a:hover {
  opacity: var(--opacity-hv);
}

.post-body .img:is(.img + *) {
  margin-top: calc(var(--block-margin * 0.6));
}

.post-body img.img-style--border {
  border: 1px solid var(--color-border);
}


/*--------------------------------
 Post Body / Link
--------------------------------*/

.post-body a:not(:is([class*="btn"] *)) {
  color: var(--fc-link);
}

.post-body a:not(:is([class*="btn"] *)):hover {
  color: var(--fc-link-hv);
}

.post-body .item-name-link {
  font-size: 110%;
  font-weight: 600;
}

.post-body .item-name-link::after {
  width: 20px;
  height: 20px;
  margin: 9px 2px 0 6px;
  background-image: url(../img/icon-link.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  vertical-align: top;
  transform: translateY(-2px);
}

.post-body .item-name-link:hover::after {
  background-image: url(../img/icon-link-hv.svg);
}


@media all and (max-width: 768px) {
  .post-body .item-name-link::after {
    width: 16px;
    height: 16px;
    margin: 9px 2px 0 4px;
  }
}


/*--------------------------------
 Post Body / List
--------------------------------*/

.post-body ul,.post-body ol {
  font-size: var(--fs-base);
  line-height: 1.75;
}

.post-body li {
  position: relative;
}

.post-body li:not(:first-child) {
  margin-top: 3px;
} 


.post-body .list--default li {
  padding-left: 16px;
}

.post-body .list--default li::before {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 2px;
}


/* List Check */

.post-body .list--check li {
  padding-left: 30px;
}

.post-body .list--check li::before {
  width: 20px;
  height: 20px;
  background-color: var(--color-primary);
  background-image: url(../img/icon-check-white.svg);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 3px;
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
}


/* List Check Circle */

.post-body .list--check-circle li {
  padding-left: 40px;
  font-size: 106%;
}

.post-body .list--check-circle li:not(:first-child) {
  margin-top: 8px;
}

.post-body .list--check-circle li::before {
  width: 30px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon-check-circle.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
}


/* List For You */

.list--for-you li {
  padding-left: 40px;
  font-weight: 500;
  position: relative;
}

.list--for-you li:not(:first-child) {
  margin-top: 8px;
}

.list--for-you li::before {
  width: 32px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-list.svg);
  background-size: 46%;
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid #eaeaea;
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
}

.list--for-you li b {
  font-weight: 700;
}


@media all and (max-width: 768px) {
  .post-body .list--default li {
    padding-left: 14px;
  }

  .post-body .list--default li::before {
    top: 9px;
    left: 0;
  }

  .post-body .list--check li {
    padding-left: 26px;
  }

  .post-body .list--check li::before {
    width: 17px;
    height: 17px;
    top: 3px;
  }

  .list--check-circle {
    padding: 6px 0;
  }

  .list--for-you {
    padding: 4px 0;
  }

  .list--for-you li {
    font-size: 1.4rem;
  }

  .list--for-you li:not(:first-child) {
    margin-top: 7px;
  }

  .list--for-you li::before {
    width: 30px;
    top: -3px;
  }
}


/*--------------------------------
 Post Body / Box
--------------------------------*/

.box {
  margin-top: var(--block-margin);
  padding: var(--box-padding);
  border-radius: var(--box-r);
  position: relative;
}

.box:has(.box-caption--label) {
  margin-top: calc(var(--block-margin) + 34px);
  border-top-left-radius: 0;
}

.box:is(.box + *) {
  margin-top: calc(var(--block-margin * 0.6));
}


.box--border-primary {
  border: 2px solid var(--color-primary);
}

.box--border-gray {
  border: 3px solid #eee;
}

.box--border-dotted-orange {
  border: 2px dotted var(--color-orange);
}

.box--bg-yellow {
  background: #fffae7;;
}

.box--shadow {
  box-shadow: var(--box-shadow-base);
}

.box--r-none {
  border-radius: 0;
}


.box .box-caption {
  font-size: 110%;
  font-weight: 700;
}

.box .box-caption::first-letter {
  color: var(--color-primary);
  font-size: 106%;
}

.box .box-caption + * {
  margin-top: 8px !important;
}


.box .box-caption--label {
  width: fit-content;
  height: 32px;
  padding: 0 20px 0 18px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  background: #555;
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  position: absolute;
  top: -32px;
  left: -3px;
}

.box-caption--label::before {
  width: 21px;
  height: 21px;
  background-image: url(../img/icon-light-white.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  transform: translateY(-2px);
}

.box-caption--label:is(.box--border-primary *) {
  background-color: var(--color-primary);
  left: -2px;
}


@media all and (max-width: 768px) {
  .box .box-caption--label {
    height: 32px;
    padding: 0 16px 1px 13px;
    font-size: 1.45rem;
    top: -32px;
  }

  .box .box-caption + * {
    margin-top: 4px !important;
  }

  .box-caption--label::before {
    width: 19px;
    height: 19px;
    transform: translateY(-1px);
  }
}



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

 Modules / CTA

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

.post-body .micro-copy--header {
  margin-top: 32px;
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.post-body .micro-copy--header:first-child {
  margin-top: 0;
}

.micro-copy--header::before {
  width: 3px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 1px;
  content: "";
  display: block;
  transform: rotate(-16deg);
}

.micro-copy--header::after {
  width: 3px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 1px;
  content: "";
  display: block;
  transform: rotate(16deg);
}

.cta-wrapper {
  margin-top: 40px;
  padding: 24px 28px 32px;
  border: 10px solid var(--color-primary-ll);
}

.day-countdown__wrapper {
  margin-top: 32px;
  padding: 0 0 12px;
  border: 1px dashed var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.post-body .day-countdown__heading {
  width: fit-content;
  margin-top: -14px !important;
  padding: 0 12px;
  font-size: 1.4rem;
  font-weight: 600;
  background: #fff;
}

.day-countdown {
  margin-top: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.dc-group {
  color: var(--color-primary);
  font-size: 2.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1px;
}

.dc-unit {
  font-size: 75%;
  transform: translateY(2px);
}


@media all and (max-width: 768px) {
  .post-body .micro-copy--header {
    font-size: 1.65rem;
  }

  .micro-copy--header::before {
    width: 2px;
    height: 18px;
    transform: translateY(-1px) rotate(-16deg);
  }

  .micro-copy--header::after {
    width: 2px;
    height: 18px;
    transform: translateY(-1px) rotate(16deg);
  }

  .cta-wrapper {
    margin: 32px -14px 0;
    padding: 24px 16px;
    border-width: 10px;
  }

  .day-countdown__wrapper {
    margin-top: 28px;
  }

  .post-body .day-countdown__heading {
    margin-top: -12px !important;
    font-size: 1.4rem;
  }

  .day-countdown {
    margin-top: -2px;
  }
}



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

 Modules / Btn

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



.btn {
  margin-top: 40px;
  text-align: center;
}

.btn:is(.micro-copy--header + *) {
  margin-top: 10px;
}

.btn a {
  width: 560px;
  max-width: 100%;
  height: var(--cta-btn-height);
  padding: 0 0 2px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.8rem;
  font-weight: var(--fw-bold);
  line-height: 1;
  text-align: center;
  background: var(--color-primary);
  border: 3px solid #fff;
  border-radius: calc(var(--cta-btn-height) / 2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.btn a::after {
  width: 20px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow-circle.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  transition: .2s;
}

.btn a:hover {
  opacity: var(--opacity-hv);
}

.btn a:hover::after {
  transform: translate(3px, -50%);
}

.btn a span {
  position: relative;
  z-index: 5;
}

.btn .btn--no1 {
  background: var(--btn-color-no1);
}


.official-link {
  margin-top: 28px;
  text-align: center;
}

.official-link p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.official-link p::before {
  width: fit-content;
  height: 22px;
  padding: 0 8px;
  font-size: 1.35rem;
  font-weight: 600;
  background: var(--color-page-bg);
  border-radius: 3px;
  content: "公式";
  display: flex;
  align-items: center;
}

.official-link a{
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: underline;
}


@media all and (max-width: 768px) {
  .btn {
    margin-top: 20px;
  }

  .btn:is(.micro-copy--header + *) {
    margin-top: 6px;
  }

  .btn a {
    margin: 0 -3px;
    padding: 0 0 1px;
    font-size: 1.65rem;
    gap: 10px;
  }

  .btn a::after {
    right: 12px;
  }

  .official-link {
    margin-top: 20px;
  }

  .official-link p::before {
    height: 20px;
    font-size: 1.2rem;
  }

  .official-link a {
    font-size: 1.5rem;
  }
}


/*--------------------------------
 / Btn / Animation
--------------------------------*/

.btn-animation--shiny::before {
  width: 30px;
  height: 100%;
  background: var(--btn-color-shiny);
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
  animation: shiny 3s ease-in-out infinite;
  z-index: 0;
}

.btn-animation--shiny.btn--no1::before {
  background: var(--btn-color-no1-shiny);
}

.btn-animation--shiny:is(.ranking-table *)::before {
  background: var(--btn-color-no1-shiny);
}

.btn-animation--shiny span,
.btn-animation--shiny::after {
  z-index: 10;
}

@keyframes shiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  85% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  86% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}



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

 Modules - Talk

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

.talk {
  margin-top: var(--block-margin);
  display: flex;
  align-items: start;
}

.talk:first-child {
  margin: 0;
}

.talk__img {
  width: 76px;
  overflow: hidden;
}

.talk__text {
  min-height: 76px;
  padding: 16px 22px;
  background: #f4f7f9;
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  position: relative;
}

.talk__text:before {
  width: 17px;
  height: 25px;
  background: url(../img/talk-arrow.svg) no-repeat;
  background-size: 17px 25px;
  content: "";
  display: block;
  position: absolute;
  top: 4px;
}

.talk__text:last-child {
  margin: 0 0 0 16px;
}

.talk__text:last-child:before {
  left: -15px;
}

.talk__text:first-child {
  margin: 0 16px 0 0;
}

.talk__text:first-child:before {
  right: -15px;
  transform: scale(-1, 1);
}

.talk__text p {
  line-height: 1.7;
  font-size: 16px;
}

.talk + .talk {
  margin: 24px 0 0;
}

@media all and (max-width: 768px) {

  .talk{
    margin-left: -4px;
    margin-right: -4px;
  }

  .talk__img {
    width: 58px;
  }

  .talk__text {
    min-height: 58px;
    padding: 12px 14px;
  }

  .talk__text:before{
    width: 15px 23px;
    background-size: 15px 23px;
    top: 3px;
  }

  .talk__text:last-child{
    margin: 0 0 0 14px;
  }

  .talk__text:last-child:before{
    left: -13px;
  }

  .talk__text:first-child{
    margin: 0 14px 0 0;
  }

  .talk__text:first-child:before{
    right: -13px;
  }

  .talk__text p{
    line-height: 1.55;
    font-size: 1.4rem;
  }

  .talk + .talk {
    margin: 20px 0 0;
  }
}


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

 Modules / Point Box

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

.point-box {
  margin-top: var(--block-margin);
  box-shadow: var(--box-shadow-base);
}

.point-box__ttl {
  padding: 6px 12px;
  color: #fff;
  font-size: var(--item-heading-fs);
  font-weight: var(--fw-bold);
  line-height: var(--lh-ttl);
  background: var(--color-primary);
  border-radius: var(--box-r) var(--box-r) 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.point-box__list {
  padding: 6px;
  border: 2px solid var(--color-primary);
  border-radius: 0 0 var(--box-r) var(--box-r);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.point-box__list li {
  padding: 10px 16px 10px 58px;
  font-size: 1.6rem;
  line-height: 1.7;
  background: var(--color-primary-ll);
  border-radius: 3px;
  position: relative;
}

.point-box__list li::before {
  width: 25px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/icon-check-point.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}


@media all and (max-width: 768px) {
  .point-box__ttl {
    padding: 6px 10px 4px;
    font-size: 1.5rem;
  }

  .point-box__list {
    padding: 4px;
  }

  .point-box__list li {
    padding: 8px 12px 8px 44px;
    font-size: 1.4rem;
    line-height: 1.7;
  }

  .point-box__list li::before {
    width: 23px;
    left: 10px;
  }
}



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

 Modules / Select

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

.select-link {
  margin: var(--block-margin) auto 0 ;
  padding: 16px 20px;
  background: var(--color-page-bg);
  border-radius: 10px;
}

.select-link__heading {
  font-weight: 700;
}

.select-link__select {
  margin-top: 12px;
}

.select-link select {
  width: 100%;
  height: 52px;
  padding: 0 4px;
  font-size: 1.5rem;
  font-weight: 500;
  background: linear-gradient(to bottom, #fff, var(--color-page-bg));
  border: 2px solid #fff;
  border-radius: var(--box-r);
  outline: 1px solid var(--color-border);
}

.select-link__txt {
  margin-top: 12px;
  
}

.select-link__txt p {
  font-size: 1.4rem;
}


@media all and (max-width: 768px) {
  .select-link {
    margin-top: 28px;
    padding: 18px 16px;
  }

  .select-link .select-link__heading {
    font-size: 1.75rem;
  }

  .select-link select {
    font-size: 1.5rem;
  }

  .select-link__txt p {
    font-size: 1.3rem;
  }
}



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

 Modules / Recommend

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

.recommend-section {
  margin: var(--block-margin) 0 0;
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.recommend-section__heading {
  padding: 6px 0 8px;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  background: var(--color-primary);
}

.recommend-section__inner {
  padding: 16px;
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-template-areas:
    "img txt"
    "img btn"
  ;
  column-gap: 24px;
}

.recommend-section__img { grid-area: img }
.recommend-section__txt { grid-area: txt; }

.recommend-section__item-name {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.recommend-section__item-name a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.recommend-section__item-name a::after {
  width: 20px;
  height: 20px;
  background: url(../img/icon-link.svg);
  background-size: 100%;
  content: "";
  display: block;
}

.recommend-section__item-name a:hover::after {
  background-image: url(../img/icon-link-hv.svg);
}

.recommend-section .recommend-section__txt {
  padding: 4px 0 0;
}

.recommend-section .recommend-section__txt p {
  margin-top: 4px;
}

.recommend-section .recommend-section__txt p {
  font-size: 1.6rem;
}

.recommend-section__btn {
  margin-top: 16px;
  grid-area: btn;
}

.recommend-section__btn a {
  height: 64px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  background: var(--btn-color-no1);
  border-bottom: 3px solid var(--btn-color-d);
  border-radius: var(--btn-r);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.recommend-section__btn a::after {
  width: 16px;
  aspect-ratio: 1 / 1;
  background: url(../img/icon-link-white.svg);
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}


@media all and (max-width: 768px) {
  .recommend-section {
    margin-top: 28px;
  }

  .recommend-section__heading {
    padding: 5px 0 7px;
    font-size: 1.55rem;
  }

  .recommend-section__inner {
    padding: 16px 12px;
    grid-template-areas:
      "img txt"
      "btn btn"
    ;
    grid-template-columns: 96px 1fr;
    column-gap: 12px;
    row-gap: 10px;
  }

  .recommend-section__item-name {
    font-size: 1.8rem;
  }

  .recommend-section__item-name a::after {
    width: 18px;
    height: 18px;
  }

  .recommend-section__txt {
    padding: 0;
  }

  .recommend-section .recommend-section__txt p {
    font-size: 1.3rem;
    line-height: 1.7;
  }

  .recommend-section__btn {
    margin-top: 0;
  }
}



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

 Modules - Type List

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

.type-list {
  margin: 28px 0;
}

.type-list ul {
  padding-bottom: 4px;
}

.type-list__item {
  width: 60%;
  margin-top: 0 !important;
  padding: 20px;
  border: 2px solid var(--color-border-l);
  border-bottom-width: 5px;
  border-radius: 8px;
}

.type-list__item-header {
  display: flex;
  align-items: center;
  column-gap: 2px;
  row-gap: 3px;
}

.type-list .type-list__heading {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

.type-list .type-list__heading span {
  margin-left: -0.3em;
  font-size: 75%;
}

.type-list__date {
  height: 18px;
  padding: 0 8px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  background: var(--color-orange);
  border-radius: 2px;
  display: flex;
  align-items: center;
}

.type-list__body {
  margin-top: 6px;
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
}

.type-list-price__item {
  padding: 4px 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 8px;
}

.type-list-price__item:not(:first-child) {
  border-top: 1px dotted var(--color-border);
}

.type-list .type-list-price__item dt a {
  color: var(--fc-gray);
  font-size: 1.2rem;
  font-weight: 600;
}

.type-list .type-list-price__item dt a:is(.type-list-price__item:first-child *) {
  color: var(--color-item-no1);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.type-list-price__item dd {
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: right;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 3px;
}

.type-list-price__item dd::after {
  font-size: 70%;
  content: "円〜";
  display: block;
  transform: translateY(1px);
}

.type-list-price__item dd:is(.type-list-price__item:first-child *) {
  font-size: 2rem;
  color: var(--fc-red);
}

.swiper-pagination {
  padding: 14px 0 0;
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  display: block;
}

.swiper-pagination-bullet-active {
  background: var(--color-primary);
}


@media all and (max-width: 768px) {
  .type-list {
    margin: 24px 0;
  }

  .type-list__item { 
    width: 80%;
    padding: 16px 14px;
  }

  .type-list__item-header {
    flex-wrap: wrap;
  }

  .type-list .type-list__heading {
    font-size: 1.7rem;
  }

  .type-list__date {
    height: 16px;
    padding: 0 4px;
    font-size: 1.05rem;
  }

  .type-list__body {
    grid-template-columns: 76px 1fr;
    gap: 8px;
    align-items: center;
  }

  .type-list-price__item {
    padding: 2px 0;
  }

  .type-list-price__item dd {
    font-size: 1.55rem;
  }

  .type-list-price__item dd:is(.type-list-price__item:first-child *) {
    font-size: 1.9rem;
  }
}




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

 Ranking Title

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

.ranking-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ranking-ttl__label {
  height: 24px;
  padding: 0 20px;
  color: var(--color-primary);
  font-size: 1.6rem;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.ranking-ttl__txt {
  color: #fff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
}

.ranking-ttl__txt span {
  color: #ffec9f;
  font-size: 116%;
}


@media all and (max-width: 768px) {
  .ranking-ttl__label {
    height: 22px;
    padding: 0 16px;
    font-size: 1.45rem;
  }

  .ranking-ttl__txt {
    font-size: 1.9rem;
  }
}



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

 Ranking

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

.section-ranking { 
  margin: 56px calc(var(--post-padding-side) * -1) 0;
  padding: 28px 24px 32px;
  background: var(--color-primary);
  border-radius: 16px 16px 0 0;
}

.ranking-table {
  margin-top: 64px;

  --ranking-column-bg-no1: #fffaed;
  --ranking-color-no1: #f8c02b;
  --ranking-color-no2: #a5a8ad;
  --ranking-color-no3: #5a4036;
}

.ranking-table:is(.ranking-ttl + *) {
  margin-top: 18px;
}

.ranking-table table {
  width: 100%;
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  table-layout: fixed;
}


/*--------------------------------
 Ranking / Thead
--------------------------------*/

.ranking-table .column--item-head {
  background: #fff;
  padding: 0 0 10px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ranking-table .column--item-head:first-child {
  background: var(--ranking-column-bg-no1);
}

.ranking-table .column--item-head:not(:first-child) {
  border-left: 1px solid var(--color-border);
}

.ranking-table .column--item-head::before {
  width: 100%;
  height: 22px;
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.3rem;
  font-weight: var(--fw-bold);
  content: "";
  background: #555;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking-table .column--item-head:nth-child(1)::before {
  content: "No.1";
  background: var(--ranking-color-no1);
}

.ranking-table .column--item-head:nth-child(2)::before {
  content: "No.2";
  background: var(--ranking-color-no2);
}

.ranking-table .column--item-head:nth-child(3)::before {
  content: "No.3";
  background: var(--ranking-color-no3);
}

.ranking-table .column--item-head:nth-child(4)::before {
  content: "No.4";
}

.ranking-table .column--item-head:nth-child(5)::before {
  content: "No.5";
}

.ranking-table .column--item-head a {
  padding: 0 16px;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  text-decoration: underline;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ranking-table .column--item-head img {
  transition: var(--transition-base);
}

.ranking-table__item-img--logo {
  padding: 3px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.ranking-table .column--item-head img:is(a:hover *) {
  opacity: var(--opacity-hv);
}


/*--------------------------------
 Ranking / Tbody
--------------------------------*/

.ranking-table tbody th {
  height: 24px;
  font-size: 1.45rem;
  font-weight: var(--fw-bold);
  background: var(--color-page-bg-l);
  text-align: center;
  vertical-align: middle;
}


.ranking-table tbody td {
  padding: 10px;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  background: #fff;
  border-right: 1px solid var(--color-border);
}

.ranking-table tbody td:first-child {
  background: var(--ranking-column-bg-no1);
}

.ranking-table tbody td:last-child {
  border-right: none;
}

.ranking-table tbody td .seal {
  width: 32px;
  margin: 0 auto 2px;
}


/*--------------------------------
 Ranking / Button
--------------------------------*/

.ranking-table .column--btn {
  padding: 16px 10px;
}

.ranking-table .column--btn a {
  width: 100%;
  height: 52px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--btn-color-no1);
  border-radius: calc(var(--btn-r) - 1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ranking-table .column--btn a::after {
  width: 16px;
  height: 16px;
  margin: 0 0 0 5px;
  background-image: url(../img/icon-link-white.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: relative;
  z-index: 5;
}

.ranking-table .column--btn a span {
  position: relative;
  z-index: 5;
}

.ranking-table .ranking-table__micro-copy {
  margin-top: 10px !important;
  color: var(--fc-red);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
}


@media all and (max-width: 768px) {
  .section-ranking {
    margin-top: 32px;
    padding: 28px 24px 28px;
  }

  .ranking-table {
    margin: 40px calc(var(--post-padding-side) * -1 + 2px) 0;
  }

  .ranking-table:is(.ranking-ttl + *) {
    margin-top: 14px;
  }

  .ranking-table .column--item-head {
    padding: 0 0 8px;
  }

  .ranking-table .column--item-head::before {
    height: 18px;
    margin-bottom: 10px;
    font-size: 1.2rem;
  }

  .ranking-table .column--item-head a {
    padding: 0 4px;
    font-size: 1.2rem;
    line-height: 1.6;
  }

  .ranking-table .column--item-head img {
    width: 100%;
    max-width: 180px;
  }

  .ranking-table tbody th {
    height: 20px;
    font-size: 1.25rem;
  }

  .ranking-table tbody td {
    padding: 6px;
    font-size: 1.25rem;
  }

  .ranking-table tbody td .seal {
    margin: 0 auto 1px;
    width: 30px;
  }

  .ranking-table .column--btn {
    padding: 12px 6px;
  }

  .ranking-table .column--btn a {
    height: 48px;
    font-size: 1.25rem;
  }

  .ranking-table .column--btn a::after {
    width: 14px;
    height: 14px;
    margin: 0 0 0 3px;
  }

  .ranking-table .ranking-table__micro-copy {
    margin-top: 8px !important;
    font-size: 1.2rem;
  }
}


@media all and (max-width: 768px) {
  .section-ranking {
    padding: 28px 16px 28px;
  }
}



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

 Item

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

.items {
  margin: 64px calc(var(--post-padding-side) * -1) 0;
  padding: var(--items-outline-size);
  background: var(--items-outline-color);
  display: flex;
  flex-direction: column;
  gap: var(--items-outline-size);
}

.item {
  padding: 12px var(--item-padding-side) 52px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.03);
}

.item:first-child {
  outline: var(--items-outline-size) solid var(--color-primary);
  outline-width: 8px;
}


@media all and (max-width: 768px) {
  .items {
    margin-top: 40px;
  }

  .item {
    padding-top: 4px;
    padding-bottom: 28px;
  }
}


@media all and (max-width: 480px) {
  .items {
    margin-top: 28px;
    padding-top: 24px;
    padding-bottom: 24px;
    gap: 20px;
  }

  .item:first-child {
    outline-width: var(--items-outline-size);
  }
}



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

 Item / Item Header

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

.item-header {
  margin: 0 calc(var(--item-padding-side) * -1);
  padding: 8px var(--item-padding-side) 16px;
  background: #fff;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 16px;
  position: relative;
}

.item-header:is(.item:first-child *) {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

.item-header::before {
  height: 60px;
  content: "";
  display: block;
  background-size: 100%;
  background-repeat: no-repeat;
}

.item-header:is(.item:nth-child(1) *)::before {
  background-image: url(../img/icon-rank1.svg);
}

.item-header:is(.item:nth-child(2) *)::before {
  background-image: url(../img/icon-rank2.svg);
}

.item-header:is(.item:nth-child(3) *)::before {
  background-image: url(../img/icon-rank3.svg);
}

.item-header::after {
  width: calc(100% - (var(--item-padding-side) * 2));
  height: 3px;
  background: var(--color-page-bg);
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


/*--------------------------------
 / Item Header / Content
--------------------------------*/

.item-header__ttl {
  font-size: 2.6rem;
}

.item-header__ttl a {
  text-decoration: underline;
}

.item-header__ttl a:hover {

}

.item-header__sub-catch {
  margin-top: 2px;
  font-weight: 500;
}


@media all and (max-width: 768px) {
  .item-header {
    padding-top: 10px;
    padding-bottom: 16px;
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .item-header::before {
    height: 52px;
  }

  .item-header__ttl {
    font-size: 2.15rem;
  }

  .item-header__sub-catch {
    font-size: 1.4rem;
  }
}



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

 Item / Body

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

.item-img {
  margin-top: 32px;
}

.item-img a {
  transition: var(--transition-base);
}

.item-img a:hover {
  opacity: var(--opacity-hv);
}

.item-img img {
  width: 360px;
}


.item-inner-heading {
  padding: 8px 12px 8px 18px;
  font-size: var(--item-heading-fs);
  background: linear-gradient(to bottom, #fff, #fafafa);
  border: 1px solid #fff;
  border-radius: 3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.04);
  outline: 1px solid var(--color-border);
  position: relative;
}

.item-inner-heading::before {
  width: 5px;
  height: 100%;
  background: var(--color-primary);
  border-radius: 2px 0 0 2px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}


.item-introduction {
  margin-top: 40px;
}

.item-introduction__items {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.item-introduction__item:not(:first-child) {
  border-top: 1px dashed var(--color-border);
  padding-top: 20px;
}

.item-introduction__item h5 {
  padding-left: 20px;
  font-size: 1.75rem;
  position: relative;
}

.item-introduction__item h5::before {
  width: 10px;
  aspect-ratio: 1 / 1;
  background: var(--color-primary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
}

.item-introduction__item p {
  font-size: 1.55rem;
}

.item-introduction__item p:not(:first-child) {
  margin-top: 12px;
}

.item-introduction__img {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.item-introduction__img li {
  flex: 1;
  text-align: center;
}

.item-introduction__img li:not(:first-child) {
  margin-top: 0;
}

.item-introduction__img img {
  width: 100%;
  max-width: 320px;
}

.item-introduction__img img:is(.--width-max *) {
  max-width: 100%;
}


@media all and (max-width: 768px) {
  .item-img {
    margin-top: 24px;
  }

  .item-img img {
    width: 86%;
    max-width: 320px;
  }

  .item-introduction {
    margin-top: 20px;
  }

  .item-introduction__items {
    margin-top: 20px;
    gap: 18px;
  }

  .item-introduction__item:not(:first-child) {
    padding-top: 16px;
  }


  .item-introduction__item h5 {
    padding: 0 0 0 16px;
    font-size: 1.6rem;
  }

  .item-introduction__item h5::before {
    width: 8px;
    height: 8px;
    top: 8px;
  }

  .item-introduction__item p {
    font-size: 1.4rem;
  }

  .item-introduction__item p:not(:first-child) {
    margin-top: 8px;
  }

  .item-introduction__img {
    margin-top: 16px;
    gap: 12px;
  }

  .item-introduction__img img {
    max-width: 380px;
  }
}



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

 Item / Info

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

.item-info {
  margin-top: 32px;
}

.item-info dl {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--box-r);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  overflow: hidden;
}

.item-info__item {
  background: #fff;
}

.item-info__item dt {
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.item-info__item dt span {
  width: fit-content;
  height: 22px;
  padding: 1px 10px 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  background: var(--color-primary);
  border-radius: 11px;
  display: flex;
  align-items: center;
}

.item-info__item dt::after {
  width: 44px;
  height: 44px;
  margin: 0 auto;
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
  display: block;
}

.item-info__item dt:is(.--price *)::after {
  background-image: url(../img/icon-features-price.svg);
}

.item-info__item dt:is(.--commission *)::after {
  background-image: url(../img/icon-features-commission.svg);
}

.item-info__item dt:is(.--speed *)::after {
  background-image: url(../img/icon-features-speed.svg);
}

.item-info__item dd {
  padding: 4px 0 12px;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-info__item dd .fc-red {
  color: var(--color-primary);
}


@media all and (max-width: 768px) {
  .item-info__item dd {
    font-size: 1.35rem;
  }
}


@media all and (max-width: 480px) {
  .item-info__item dt {
    padding: 8px 0 0;
    gap: 4px;
  }

  .item-info__item dt::after {
    width: 40px;
    height: 40px;
  }

  .item-info__item dt span {
    height: 18px;
    font-size: 1.1rem;
  }

  .item-info__item dd {
    padding: 3px 0 10px;
    font-size: 1.25rem ;
  }
}


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

 Item / Data

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

.item-data {
  margin-top: 28px;
}

.item-data dl {
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-top: none;
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2px;
  overflow: hidden;
}

.item-data dt {
  height: 28px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-data dd {
  height: 96px;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-data__seal {
  width: 32px;
  margin: 0 auto 4px;
}

.item-data__item {

}


@media all and (max-width: 768px) {
  .item-data dt {
    height: 24px;
    font-size: 1.25rem;
  }

  .item-data dd {
    height: 80px;
    font-size: 1.25rem;
  }

  .item-data__seal {
    width: 28px;
    margin-bottom: 3px;
  }
}


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

 Item / About

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

.item-about-table {
  margin-top: 32px;
}

.item-about-table table {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid var(--color-border);
}

.item-about-table th {
  width: 200px;
  padding: 12px 0;
  font-size: 1.5rem;
  font-weight: var(--fw-bold);
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
  background: var(--color-page-bg);
  border-bottom: 1px solid var(--color-border);
}

.item-about-table th br {
  display: none;
}

.item-about-table td {
  padding: 12px;
  font-size: 1.6rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-border);
}

.item-about-table td a {
  font-weight: 600;
  text-decoration: underline;
}


@media all and (max-width: 768px) {
  .item-about-table {
    margin-top: 20px;
  }

  .item-about-table th {
    width: 88px;
    padding: 10px 0;
    font-size: 1.2rem;
  }

  .item-about-table th br {
    display: block;
  }

  .item-about-table td {
    padding: 10px 12px;
    font-size: 1.4rem;
  }
}



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

 Comment

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

.comment {
  margin: 40px calc(var(--item-padding-side) * -1) 0;
  padding: 24px var(--item-padding-side);
  background: var(--color-page-bg);

  --comment-padding-side: 24px;
}

.comment__ttl {
  margin: 0 0 20px;
  padding: 16px 12px 16px 18px;
  background: #fff;
  font-size: 1.8rem;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.comment__ttl::before {
  width: 4px;
  height: 100%;
  background: var(--color-primary);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.comment-item {
  margin-top: 18px;
  background: #fff;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.05);
}

.comment-item:is(.comment-items > *:first-child) {
  margin-top: 0;
}

.comment-item__header {
  padding: 10px var(--comment-padding-side);
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 16px;
}

.comment-item__avatar {
  margin-left: -2px;
  aspect-ratio: 1 / 1;
  border: 2px solid var(--color-border-l);
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment-item__avatar img {
  width: 90%;
}

.comment-item__ttl {
  font-size: 106%;
}

.comment-item__body {
  padding: 20px var(--comment-padding-side);
}

.comment-item__body p {
  font-size: 1.6rem;
  line-height: 1.7;
}

.comment-item__body p:not(:first-child) {
  margin-top: 12px;
}

.comment__readmore-btn {
  width: 320px;
  height: 40px;
  margin: 16px auto 0;
  color: var(--fc-gray);
  font-size: 1.45rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.comment__readmore-btn::after {
  content: "＋";
}

.comment__readmore-btn:hover {
  opacity: .7;
}


.comment__readmore-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity .3s;
}

.comment__readmore-content.is-open {
  height: auto;
  opacity: 1;
}


.comment__footer {
  margin-top: 16px;
}

.comment__footer p {
  color: var(--fc-gray);
  font-size: 1.4rem;
  text-align: right;
}


@media all and (max-width: 768px) {
  .comment {
    margin-top: 28px;
    --comment-padding-side: 16px;
  }

  .comment__ttl {
    margin: 0 0 16px;
    padding: 12px 12px 12px 18px;
    font-size: 1.65rem;
  }

  .comment-item {
    margin-top: 16px;
  }

  .comment-item__header {
    padding: 8px var(--comment-padding-side);
    grid-template-columns: 52px 1fr;
    gap: 8px;
  }

  .comment-item__ttl {
    font-size: 1.5rem;
  }

  .comment-item__body {
    padding: 14px var(--comment-padding-side) 18px;
  }

  .comment-item__body p {
    font-size: 1.35rem;
  }

  .comment-item__body p:not(:first-child) {
    margin-top: 10px;
  }

  .comment__readmore-btn {
    height: 36px;
    font-size: 1.4rem;
  }

  .comment__footer {
    margin-top: 10px;
  }

  .comment__footer p {
    font-size: 1.2rem;
  }
}


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

 Tips

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

.tips {
  margin: 0 calc(var(--post-padding-side) * -1);
  padding: 48px var(--post-padding-side);
  background: var(--color-page-bg);
  counter-reset: tipsPoint;
}

.tips-ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.tips-ttl__1 {

}

.tips-ttl__2 {
  font-size: 2rem;
}

.tips-section {
  margin-top: 24px;
  padding: 24px 40px;
  background: #fff;
  border-radius: 12px;
}

.tips-section__heading {
  font-size: 1.9rem;
}

.tips-section__heading::before {
  width: fit-content;
  height: 22px;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 13px;
  counter-increment: tipsPoint;
  content: "POINT" counter(tipsPoint);
  display: flex;
  justify-content: center;
  align-items: center;
}

.tips-section__img {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--box-r);
}

.tips-section__img img {
  max-width: 90%;
}

.tips-section__body {
  margin-top: 20px;
}

.tips-section__body p {
  font-size: 1.6rem;
}

.tips-section__body p:not(:first-child) {
  margin-top: calc(var(--txt-margin) * 0.6);
}


@media all and (max-width: 768px) {
  .tips {
    padding: 28px 12px;
  }

  .tips-section {
    margin-top: 16px;
    padding: 20px 16px;
    border-radius: 10px;
  }

  .tips-section + .tips-section {
    margin-top: 16px;
  }

  .tips-section__heading {
    font-size: 1.75rem;
  }

  .tips-section__heading::before {
    height: 18px;
    margin-bottom: 8px;
    padding: 0 16px;
    font-size: 1.2rem;
    border-radius: 9px;
  }

  .tips-section__img {
    margin-top: 16px;
    padding: 12px;
  }

  .tips-section__body {
    margin-top: 16px;
  }

  .tips-section__body p {
    font-size: 1.4rem;
  }
}



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

 Flow

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

.flow {
  margin-top: 40px;
  counter-reset: flowSection;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.flow__item {
  padding: 8px 8px 16px;
  border: 2px solid var(--color-primary);
  border-radius: var(--box-r);
  position: relative;
}

.flow__item::before {
  width: 26px;
  height: 26px;
  padding: 0 2px 2px 0;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 0 0 var(--box-r) 0;
  counter-increment: flowSection;
  content: counter(flowSection);
  display: flex;
  justify-content: center;
  align-items: center;  
  position: absolute;
  top: 0;
  left: 0;
}

.flow__heading {
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
}

.flow__body p {
  font-size: 1.4rem;
  text-align: center;
}


@media all and (max-width: 768px) {
  .flow {
    margin-top: 28px;
    gap: 10px;
  }

  .flow__item {
    padding: 8px 6px 12px;
  }

  .flow__item::before {
    width: 22px;
    height: 22px;
    font-size: 1.3rem;
  }

  .flow__heading {
    font-size: 1.55rem;
  }

  .flow__body p {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}




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

 Footer

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

.g-footer {
  width: var(--main-width);
  margin: 0 auto;
  background: #262728;
}

.g-footer__inner {
  width: var(--main-width);
  margin: 0 auto;
  padding: 32px 0;
}

.footer-copyright {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
}


@media all and (max-width: 768px) {
  .g-footer__inner {
    padding: 28px var(--post-padding-side);
  }
}
