@charset "UTF-8";

:root{
  /* --------------------
   ベース
  --------------------*/
  --header-height: 104px;

  --width-main: 520px;

  --padding-post-side: 16px;
  --padding-item-section-side: 14px;

  --ff-default: "Inter", "Noto Sans JP", "Yu Gothic UI", "Yu Gothic", Meiryo, ui-sans-serif, system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-default: 1.7rem;
  --lh-default: 1.9;

  --post-fs: 1.6rem;
  --post-line-height: 1.95;


  /* --------------------
   色関連
  --------------------*/

  /* テーマカラー */
  --color-primary: #1665b3;
  --color-primary-l: #e8f3fe;
  --color-primary-d: #0a5cbc;

  --color-primary2: #38ADEE;

  --color-accent: #fd7252;

  /* テキスト */
  --fc-default: #333;

  --fc-gray: #666;

  --fc-link: #0078de;
  --fc-link: #0b57d0;
  --fc-link: #197bea;
  --fc-link-hv: #f60;

  --color-blue: #1199df;
  --color-l-blue: #4ebcf0;
  --color-blue-d: #123a93;
  --color-green: #00a250;
  --color-orange: #f7690a;
  --color-pink: #f7738c;

  --bg-color: #f0f4f6;

  --color-page-bg: #ecf1f4;
  --color-box-bg: #f5f8f9;

  --border-color: #dfdfdf;

  --color-border: #dcdcdc;
  --color-border-bold: var(--color-page-bg);
  --color-border-dashed: #CED5DB;

  --color-box-bg: #f4f6f8;
  
  /* ボタン */
  --btn-green: #2aac5e;
  --btn-green-d: #1a9d4e;
  --btn-orange: #ff6541;
  --btn-orange-d: #ea5734;
  --btn-blue: #007dd5;
  --btn-blue-d: #006db9;


  /* --------------------
   モジュール
  --------------------*/

  --text-margin: 26px;
  --block-margin: 32px;
  --box-padding: 18px 20px;
  --box-padding-i: 20px 24px 20px 60px;
  --box-lh: 1.9;

  --box-r: 6px; 
  --btn-r: 6px;
}

/* --------------------
  Other
--------------------*/

:root {
  --z-modal: 1000;
  --z-header: 100;
  --z-sticky: 50;
}



@media all and (max-width: 768px) {
  :root{
    --header-height: 68px;

    --post-fs: 1.75rem;
    --post-line-height: 1.85;
    --box-lh: 1.8;

    --box-padding: 18px 16px;
    --box-padding-i: 16px 18px 16px 50px;

    --box-fs: 0.9rem;
    --btn-r: 5px;
  }
}


@media ( min-width: 480px ) {
:root {
  --padding-post-side: 28px;
  --padding-item-section-side: 20px;
}
}



html { font-size: 10px; }

body {
  width: 100%;
  height: 100%;
  margin: 0;
  color: var(--fc-default);
  font-family: var(--ff-default);
  font-size: var(--fs-default);
  font-weight: 400;
  line-height: var(--lh-default);
  text-align: left;
  background: var(--color-page-bg);
}

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

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

b {
  font-weight: 700 !important;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.6;
}

a {
  cursor: pointer;
}

br {
  line-height: inherit;
}

img, video, iframe {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

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



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

Header

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

.g-header {
  width: 100%;
  background: #fff;
}

.g-header__inner{
  width: 748px;
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-header .site-name {
  width: 156px;
  padding: 0 0 8px;
}

.g-header .site-name img {
  width: 100%;
  height: auto;
}

.g-header .site-description{
  margin: -4px 0 0 22px;
  line-height: 1.5;
  color: #777;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.g-header .site-description > span{
  display: block;
}

.g-header .site-description span + span{
  margin-top: 4px;
}

.g-nav{
  margin: -4px 0 0;
}

.g-nav ul{
  display: flex;
  align-items: center;
}

.g-nav li:not(:first-child){
  margin-left: 4px;
}

.g-nav a{
  width: 72px;
  color: currentColor;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.g-nav a img{
  width: 48px;
  height: auto;
}

.g-nav a span{
  font-size: 1.4rem;
  font-weight: 500;
}


@media all and (max-width: 768px) {
  .g-header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
  }

  .g-header__inner {
    width: 100%;
    height: 100%;
    padding: 0 0 0 14px;
    box-sizing: border-box;
  }

  .g-header .site-name {
    width: 118px;
    padding: 0 0 2px;
  }

  .g-header .site-name img {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .g-header .site-description{
    margin: -3px 0 0 12px;
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .g-nav{
    margin: 0;
  }

  .g-nav li{
    border-left: 1px solid #eaeaea;
  }

  .g-nav li:not(:first-child){
    margin-left: 0;
  }

  .g-nav a{
    width: 64px;
    height: var(--header-height);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .g-nav a img{
    width: 44px;
    margin: -1px 0 0;
  }

  .g-nav a span{
    margin: -2px 0 0;
    font-size: 1.1rem;
  }
}



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

Page Layout

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

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

.main{
  width: 100vw;
  max-width: 560px;
}

@media ( min-width: 768px ) {
  .main {
    width: 560px;
  }
}



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

 Article

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

.post {
  padding: 0 var(--padding-post-side) 44px;
  background: #fff;
}

.post-header{
  margin: 0 0 56px;
}

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

.post-mv::after {
  width: fit-content;
  height: 22px;
  padding: 0 5px;
  color: #555;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  content: "PR";
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  opacity: .9;
}

.post-ttl {
  margin-top: 12px;
  font-size: 1.85rem;
  line-height: 1.7;
}

.post-meta {
  margin: 10px 0 20px;
  padding: 2px 0;
  border-top: 1px dotted #ccc;
  border-bottom: 1px dotted #ccc;
}

.post-meta dl {
  display: flex;
  align-items: center;
}

.post-meta__item {
  color: #666;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
}

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

.post-meta__item.--update-date dt::before {
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-update.svg);
  background-size: 100%;
  content: "";
  display: block;
  transform: translateY(0);
}



.post-header__update-date:before{
  
}

.post-header__cat:before{
  background-image: url(../img/icon-cat.svg);
}

.tag-list{
  margin: 12px 0 20px;
}

.tag-list ul{
  margin: 0 0 -10px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.tag-list li{
  height: 28px;
  margin: 0 10px 10px 0;
  padding: 0 20px;
  color: #fff;
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 28px;
  background: var(--color-primary);
  border-radius: 3px;
}


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

  .post-header{
    margin: 0 0 40px;
  }

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

  .post-header__title{
    margin: 14px 0 0;
    font-size: 1.85rem;
  }

  .post-header__meta{
    margin: 12px 0 0;
    padding: 1px 12px;
  }

  .post-header__meta div{
    font-size: 1.3rem;
  }

  .post-header__meta div:before{
    width: 15px;
    margin-right: 4px;
  }

  .tag-list{
    margin: 12px 0 16px;
  }

  .tag-list ul{
    margin: 0 -6px -6px 0;
  }

  .tag-list ul li{
    height: 24px;
    line-height: 24px;
    margin: 0 6px 6px 0;
    padding: 0 8px;
    font-size: 1.35rem;
  }
}

.post-body .fc-red {
  color: #df2b2c !important;
}


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

 Post Body

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

.post-body > h2 {
  margin: 52px calc(var(--padding-post-side) * -1) 32px;
  padding: 14px 12px;
  color: #fff;
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
  background: var(--color-primary);
  background-size: 4px 4px;
  position: relative;
  z-index: 0;
}

.post-body > h2:before{
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  border-radius: 2px;
  content: "";
  display: block;
  position: absolute;
  bottom: -9px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%) rotate(45deg);
}

.post-body h2:has(.heading-label) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

h2 .heading-label {
  height: 26px;
  margin: 4px 0 0;
  padding: 0 20px;
  color: var(--color-primary);
  font-size: 1.75rem;
  background: #fff;
  border-radius: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-body > h3 {
  margin-top: 44px;
  padding: 16px 12px 14px;
  font-size: 1.7rem;
  background: linear-gradient(to bottom, #fff, var(--color-page-bg));
  border: 1px solid var(--color-border);
  border-top: none;
  position: relative;
}

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



.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 p {
  margin-top: var(--text-margin);
}

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

.post-body .--margin-l{
  margin-top: calc(var(--text-margin) * 1.7);
}

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

.post-body .img:is(.img + *) {
  margin-top: -6px;
}

.img .img-style--r {
  border-radius: 6px;
  overflow: hidden;
}

.img .img-style--shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

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


.post-body .img img {
  width: 400px;
}

.post-body .figure {
  margin: var(--block-margin) 0;
}

.post-body .figure figcaption {
  padding: 4px 8px;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.post-body .figure__inner {
  padding: 4px 12px;
  text-align: center;
  border: 1px solid var(--color-border);
  border-top: none;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
}

.post-body .img video {
  width: 400px;
  margin: 0 auto;
  display: block;
}

.post-body .img a:hover img {
  opacity: 0.85;
  transform: translate(2px, 2px);
}


.post-body hr{
  margin: 36px 0;
  border-top: 2px dotted #bbb;
}



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

 Box

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

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

.post-body .box + p{
  margin-top: var(--block-margin);
}



/*------------------------------------------
 Box / Border
------------------------------------------*/

.post-body .box--border-gray {
  border: 3px solid #eaeaea;
}


/*------------------------------------------
 Box / Background
------------------------------------------*/

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

.post-body .box--bg-blue{
  background: #eff7fd;
}

.post-body .box--bg-purple{
  background: #edf8fe;
}

.post-body .box--bg-main{
  background: #edf8fe;
}

.post-body .box--bg-pink{
  background: #FFEFF1;
}


/*------------------------------------------
 Box / Quote
------------------------------------------*/

.post-body .box-quote{
  margin: var(--block-margin);
  padding: 16px 20px;
  background: #f4f4f4;
  border-left: 2px solid #aaa;
}

.post-body .box-quote + .box-quote{
  margin-top: 28px;
}

.post-body .box-quote p{
  line-height: 1.8;
  font-size: 14px;
}

.post-body .box-quote p:not(:first-child){
  margin-top: 14px;
}

.post-body .box-quote .quotation-source{
  text-align: right;
  color: #888;
  font-size: 11px;
}

.post-body .box-quote .quotation-source:before{
  content: "引用元：";
  display: inline;
}

.post-body .box-quote__image{
  text-align: center;
}

.post-body .box-quote__image img{
  width: 100%;
  box-sizing: border-box;
}


@media all and (max-width: 768px) {
  .post-body .box-quote{
    padding: 14px;
  }
  .post-body .box-quote p{
    font-size: 12px;
    line-height: 1.7;
  }

  .post-body .box-quote .quotation-source{
    font-size: 10px;
  }

  .post-body .box-gray + p,
  .post-body .box-yellow + p{
    margin-top: 32px;
  }

}



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

 Policy box

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

.box-policy{
  margin-top: 40px;
  padding: 36px 28px 30px;
  background: #fff;
  border: 3px solid #dfecf6;
  box-shadow: 0 1px 7px rgba(0,0,0,0.03);
  border-radius: 6px;
  position: relative;
}

.box-policy:before{
  width: fit-content;
  height: 40px;
  padding: 0 40px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: var(--color-primary);
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  content: "当サイトのポリシー";
  display: flex;
  align-items: center;
  position: absolute;
  top: 22px;
  left: -12px;
}

.box-policy__image{
  width: 460px;
  margin: 0 auto;
}

.box-policy__image img{
  width: 100%;
  height: auto;
}

.box-policy__body{
  margin: 24px 0 0;
}

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

@media all and (max-width: 768px) {
  .box-policy{
    margin: 36px -4px 0;
    padding: 28px 16px 20px;
  }

  .dot + .box-policy {
    margin-top: 44px;
  }

  .box-policy:before{
    height: 32px;
    padding: 0 32px;
    font-size: 16px;
    top: 14px;
    left: -5px;
  }

  .box-policy__image{
    width: 100%;
    max-width: 480px;
  }

  .box-policy__body{
    margin: 16px 0 0;
  }

  .box-policy__body p{
    font-size: 1.35rem;
    line-height: 1.6;
  }
}


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

 Intro box

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

.box-intro{
  margin: 48px 0 0;
}

.box-intro__header{
  padding: 12px 0 18px;
  text-align: center;
  background: var(--color-primary);
  border-radius: 5px 5px 0 0;
}

.box-intro__header p{
  margin: 0 0 3px !important;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.box-intro__header p:before{
  width: 40px;
  height: 1px;
  margin: 0 6px 0 0;
  background: #fff;
  content: "";
  display: block;
  opacity: 0.6;
}

.box-intro__header p:after{
  width: 40px;
  height: 1px;
  margin: 0 0 0 6px;
  background: #fff;
  content: "";
  display: block;
  opacity: 0.6;
}


.box-intro__header img{
  width: 320px;
}

.box-intro__body{
  padding: 28px 32px 0;
  background: var(--color-page-bg);
  border-radius: 0 0 5px 5px;
}

.box-intro__body p{
  font-size: 15px;
}

.box-intro__body p:not(:first-child){
  margin-top: 18px;
}

.box-intro__image{
  margin-top: 18px;
  display: flex;
  align-items: flex-start;
}

.box-intro__image div{
  margin-right: -16px;
  padding: 0 0 24px;
  flex: 1;
}

.box-intro__image img{
  width: 176px;
  transform: translate(16px, -8px);
}

.box-intro .pc-hidden{
  display: none;
}


@media all and (max-width: 640px) {
  .box-intro{
    margin: 40px 0 0;
  }

  .box-intro__header{
    padding: 10px 0 16px;
  }

  .box-intro__header p{
    font-size: 14px;
  }

  .box-intro__header p:before,
  .box-intro__header p:after{
    width: 32px;
  }

  .box-intro__header img{
    max-width: 294px;
  }

  .box-intro__body{
    padding: 18px 16px 0;
  }

  .box-intro__body p{
    font-size: 14px;
    line-height: 1.7;
  }

  .box-intro__body p:not(:first-child){
    margin-top: 14px;
  }

  .box-intro__body .sp-hidden + p{
    margin-top: 0;
  }

  .box-intro__image{
    margin-top: 14px;
  }

  .box-intro__image div{
    margin-right: -8px;
  }

  .box-intro__image img{
    width: 132px;
    transform: translate(6px, -20px);
  }

  .box-intro .pc-hidden{
    display: block;
  }
  .box-intro .sp-hidden{
    display: none;
  }
}



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

 Recommended for

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

.recommended-for-box{
  margin: 56px 0;
  border: 3px solid var(--color-primary);
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.13);
  position: relative;
}

.recommended-for-box:after{
  width: 160px;
  height: 160px;
  border: 80px solid transparent;
  border-top-color: #eaedfc;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  bottom: -126px;
  left: 50%;
  transform: translateX(-50%) scale(1.05, 0.33);
}

.recommended-for-box .recommended-for-box__find{
  margin: 0;
  padding: 10px;
  text-align: center;
  background: #eaedfc;
  border-radius: 4px 4px 0 0;
}

.recommended-for-box__find span{
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  display: block;
}

.recommended-for-box__find span:first-child{
  margin: -1px 0 4px;
  font-size: 14px;
}

.recommended-for-box .recommended-for-box__find:before{
  content: none;
}

.recommended-for-box ul{
  width: fit-content;
  padding: 12px 0 18px;
  margin: 0 auto !important;
}

.recommended-for-box ul li{
  font-size: 17px;
  text-align: center;
  line-height: 1.7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recommended-for-box ul li:not(:first-child){
  margin-top: 2px;
}

.recommended-for-box ul li span{
  font-weight: 600;
}

.recommended-for-box ul li:before{
  width: 7px;
  height: 7px;
  margin: 0 8px 0 0;
  background: var(--color-primary-d);
  border-radius: 100%;
  content: "";
  display: block;
}


@media all and (max-width: 768px) {
  .recommended-for-box {
    margin: 48px -10px 46px;
    border-width: 2px;
  }

  .recommended-for-box:after {
    bottom: -120px;
    transform: translateX(-50%) scale(0.9, 0.28);
  }
  
  .recommended-for-box__find span{
    font-size: 16px;
  }

  .recommended-for-box__find span:first-child{
    margin: -1px 0 4px;
    font-size: 12px;
  }

  .recommended-for-box ul{
    padding: 13px 0 18px;
  }

  .recommended-for-box ul li{
    font-size: 15px;
    line-height: 1.6;
  }

  .recommended-for-box ul li:not(:first-child){
    margin-top: 3px;
  }

  .recommended-for-box ul li:before{
    margin: 0 6px 0 0;
  }
}



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

 List

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

.post-body ul {
  margin-top: var(--text-margin)
}

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

.post-body li {
  line-height: 1.7;
  position: relative;
}

.list--default li {
  margin-top: 6px;
  padding: 0 0 0 20px;
}

.list--default li:first-child {
  margin-top: 0;
}

.list--default li:before{
  width: 5px;
  height: 5px;
  content: "";
  display: block;
  background: var(--color-primary);
  position: absolute;
  top: 11px;
  left: 4px;
}

.list--tight li {
  margin-top: 3px;
}





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

 CTA

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

.btn-micro-copy--top {
  font-size: 1.7rem;
  text-align: center;
}

:root {
  --cta-btn-height: 96px;
}

.btn{
  margin: 28px auto 0;
}

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

.btn a {
  margin: 0 -3px;
  width: 560px;
  max-width: 100%;
  height: var(--cta-btn-height);
  padding: 0 0 1px;
  margin: 0 auto;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background: linear-gradient(to bottom, #00a848, #009025);
  border: 3px solid #fff;
  border-radius: calc(var(--cta-btn-height) / 2);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.btn a::after {
  width: 22px;
  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: 12px;
  transform: translateY(-50%);
  transition: .2s;
}

.btn--small {
  margin-top: 20px;
}

.btn--small a {
  height: 76px;
  font-size: 1.65rem;
  border-radius: 38px;
}

.btn--small a::after {
  width: 18px;
}

.btn a span {
  position: relative;
}

.btn a:hover{
  color: #fff;
}

.btn .btn-label-text{
  width: 220px;
  height: 26px;
  line-height: 22px;
  color: var(--btn-orange);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  background: #fff;
  border: 2px solid var(--btn-orange);
  border-radius: 13px;
  box-sizing: border-box;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.btn .btn-label-text:after{
  width: 12px;
  height: 12px;
  border: 6px solid transparent;
  border-left-color: #fff;
  box-sizing: border-box;
  content: "";
  display: block;
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}



/*-------------------------------
 Official Link
--------------------------------*/

.post-body .official-link {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

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

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



/*-------------------------------
 Button Animation
--------------------------------*/


.btn-animation--shiny {
  position: relative;
  overflow: hidden;
}

.btn-animation--shiny::before {
  width: 30px;
  height: 100%;
  background: #1dd66c;
  content: "";
  display: block;
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 0;
  animation: btnShiny 3s ease-in-out infinite;
  opacity: .9;
}

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

@keyframes btnShiny {
  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; }
}


.btn-animation--puru {
  animation: btnPuru 2.5s infinite ease-out;
  transform-origin: 50% 50%;
  animation-play-state: running;
}


@keyframes btnPuru {
  0% {
    transform: scale(0.9, 0.9);
  }
  5% {
    transform: scale(1.08, 1.08);
  }
  10% {
    transform: scale(1, 1);
  }
  15% {
    transform: scale(1.03, 1.03);
  }
  20% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}


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

 Link Icon

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

.txt-link {
  font-size: 110%;
  font-weight: 700;
}

.txt-link::after {
  width: 19px;
  height: 19px;
  margin: 7px 4px 0;
  background: url(../img/icon-link.svg) no-repeat;
  background-size: 100%;
  content: "";
  display: inline-block;
  vertical-align: top;
}

.txt-link:hover::after {
  background-image: url(../img/icon-link-hover.svg);
}



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

 Ranking table

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

:root {
  --color-ranking-no1: #f8c02b;
  --color-ranking-no2: #a5a8ad;
  --color-ranking-no3: #5a4036;
}

.ranking {
  margin: 48px -12px 0;
}

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


/*--------------------------------
 thead
--------------------------------*/

.ranking thead .column--item {
  border-right: 1px solid var(--color-border);
}

.ranking thead .column--item::before {
  height: 20px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.ranking thead .column--item a {
  padding: 8px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ranking thead .column--item img {
  width: 85%;
  max-width: 108px;
}

.ranking__item-name {
  margin-top: -4px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: underline;
}


/*--------------------------------
 tbody
--------------------------------*/

.ranking tbody th {
  height: 22px;
  font-size: 1.45rem;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  background: #f3f3f3;
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.ranking tbody td {
  padding: 10px 4px;
  font-size: 1.45rem;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid var(--color-border);
}

.ranking .column--rating {
  font-size: 1.6rem;
  font-weight: 600;
}

.ranking .column--rating img {
  width: 88px;
  margin: 0 auto 6px;
  display: block;
}

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

.ranking .column--btn a {
  height: 48px;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  background: #00a03c;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}

.ranking .column--btn a::after {
  width: 14px;
  height: 14px;
  background-image: url(../img/icon-link-white.svg);
  background-size: 100%;
  content: "";
  display: block;
}

.ranking__seal {
  width: 28px;
  margin: 0 auto 3px;
}




/*------------------------------------------
 
 Author Information

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

.author-info{
  margin: 32px 0 40px;
  padding: 20px;
  border: 1px solid #aaa;
  display: flex;
}

.author-info__image{
  width: 120px;
  margin: 0 24px 0 0;
  display: flex;
  align-items: center;
}

.author-info__image img{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
}

.author-info__text{
  padding: 2px 0 0;
  flex: 1;
}

.author-info__name{
  display: flex;
  align-items: center;
}

.author-info__name .author-info__title{
  margin-right: 5px;
  color: var(--color-primary);
  font-size: 1.4rem;
  letter-spacing: -0.05em;
}

.author-info__name p{
  margin: 0;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.7;
}

.author-info__message{
  margin: 8px 0 0;
}

.author-info__message p{
  font-size: 1.55rem;
  line-height: 1.7;
}


@media all and (max-width: 768px) {
  .author-info{
    margin: 22px -4px 0;
    padding: 12px 12px 14px;
  }

  .author-info__image{
    width: 76px;
    margin-right: 14px;
  }

  .author-info__text{
    padding: 0;
  }

  .author-info__name{
    display: block;
  }

  .author-info__name .author-info__title{
    margin: 0 0 -1px 0;
    font-size: 1.35rem;
  }

  .author-info__name p{
    font-size: 1.65rem;
  }

  .author-info__message{
    margin: 4px 0 0;
  }

  .author-info__message p{
    font-size: 1.3rem;
    line-height: 1.5;
  }
}



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

 Item Section

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

.items {
  margin-top: 32px;
}

.item-section {
  margin: 0 -8px;
  padding: 4px var(--padding-item-section-side) 32px;
  border: 2px solid var(--color-page-bg);
  border-radius: 8px;
}

.item-section:not(:first-child) {
  margin-top: 24px;
}



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

 Item Header

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

.item-header {
  margin: 0 calc(var(--padding-item-section-side) * -1);
  padding: 10px var(--padding-item-section-side);
  background: #fff;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  align-items: center;
  position: relative;
  z-index: var(--z-sticky);
}

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

.item-header::before {
  height: auto;
  aspect-ratio: 1 / 1;
  background-size: 100%;
  content: "";
  display: block;
}

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

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

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


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

.item-ttl a {
  font-size: 2rem;
  font-weight: 600;
  text-decoration: underline;
}

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

.item-ttl a:hover::after {
  background-image: url(../img/icon-link-hover.svg);
}*/

.item-catch {
  font-size: 1.5rem;
  font-weight: 600;
}

.item-img {
  margin: 24px auto 0;
  padding: 10px 0;
  text-align: center;
  border: 1px solid var(--color-page-bg);
  border-radius: 6px;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 0;
}

.item-img__label-hq::after {
  width: 100px;
  height: 100px;
  background: url(../img/badge-hq.png);
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  right: 8px;
  z-index: 1;

}

.item-img img {
  max-width: 280px;
}



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

 Item Section Heading

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

.item-section-heading {
  padding: 8px 10px 8px 38px;
  font-size: 1.65rem;
  background: linear-gradient(to bottom , #fff, #f5f5f5);
  border: 1px solid var(--color-border);
  border-bottom-width: 2px;
  border-radius: 4px;
  position: relative;
}

.item-section-heading::before {
  width: 23px;
  height: 23px;
  border: 6px solid var(--color-primary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}


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

 Item Point

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

.item-point {
  counter-reset: itemPoint;
}

.item-point-section {
  margin-top: 64px;
}

.item-point-section h4 {
  margin-bottom: 24px;
  padding: 16px 10px;
  font-size: 1.85rem;
  background: linear-gradient(to bottom, #fff, #f5f5f5);
  border-top: 4px solid var(--color-primary);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.item-point-section h4::before {
  width: fit-content;
  height: 30px;
  padding: 3px 12px 0;
  color: #fff;
  font-size: 1.5rem;
  background: var(--color-primary);
  border-radius: 3px 3px 0 0;
  counter-increment: itemPoint;
  content: "✅️ 選ばれいてるポイント" counter(itemPoint);
  display: flex;
  align-items: center;
  position: absolute;
  top: -33px;
  left: 0;
}



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

 Item Score

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

.item-score{
  margin: 24px 0 16px;
  padding: 20px 0;
  background: #f3f6f8;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 200px 1fr;
}

.item-score > div{
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.item-score__point{
  border-right: 1px dashed #d0d0d0;
}

.item-score__point-label {
  width: fit-content;
  height: 20px;
  margin: -3px auto 0 !important;
  padding: 0 10px;
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 3px;
  display: flex;
  align-items: center;
}

.item-score .item-score__point-text{
  margin: 12px 0 6px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.item-score__point-star{
  width: 112px;
}

.item-score__chart{
  padding: 4px 0;
}

.item-score__chart img{
  width: 75%;
}


@media all and (max-width: 768px) {
  .item-score{
    margin: 20px 0 16px;
    padding: 12px 0;
    grid-template-columns: 112px 1fr;
  }

  .item-score__point{
    padding: 0 12px;
  }

  .item-score .item-score__point-text{
    margin: 10px 0 4px;
    font-size: 1.8rem;
  }

  .item-score__point-star{
    width: 100%;
  }

  .item-score__chart{
    padding: 4px 0;
  }

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


.author-comment {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
}

.author-comment__avatar {
  aspect-ratio: 1 / 1;
  border: 2px solid var(--color-primary);
  border-radius: 100%;
  overflow: hidden;
}

.author-comment__body {
  padding: 12px;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  position: relative;
  z-index: 0;
}

.author-comment__body p {
  font-size: 1.55rem;
  line-height: 1.6;
}

.author-comment__body::before {
  width: 16px;
  height: 16px;
  background: #fff;
  border-top: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  border-radius: 2px;
  content: "";
  display: block;
  transform: rotate(-135deg);
  position: absolute;
  top: 20px;
  left: -9px;
  z-index: -1;
}



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

 Item Info Table

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

.item-info-table {
  margin: 24px -3px 0;
}

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

.item-info-table dt {
  height: 22px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-info-table dd {
  height: 80px;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.item-info-table dd {
  font-weight: 600 !important
}

.item-info-table__seal {
  width: 28px;
  margin: 0 auto 3px;
}


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

 Certificate Section

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


.certificate-section{
  margin: 40px -20px 0;
  padding: 0 48px 28px;
  background: var(--color-page-bg);
}

.certificate-section + p{
  margin-top: 10px !important;
}

.certificate-section .certificate-section__find{
  margin: 0 -48px 28px;
  padding: 8px 12px;
  font-size: 20px;
  text-align: center;
}

.certificate-section ul{
  margin: 0;
  display: flex;
  justify-content: center;
}

.certificate-section li{
  max-width: 240px;
  flex: 1;
}

.certificate-section li:not(:first-child){
  margin-left: 20px;
}

.certificate-section .certificate-section__label{
  width: calc(100% - 10px);
  height: 28px;
  line-height: 28px;
  margin: -10px auto 0!important;
  padding: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  background: var(--color-primary);
  border-radius: 14px;
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}

.certificate-section .certificate-section__label:after{
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 100%;
  box-shadow: inset 1px 1px 0 rgba(0,0,0,0.08);
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}

.certificate-section .certificate-section__label:before{
  width: 22px;
  height: 22px;
  content: "";
  display: block;
  background: url(../img/icon-certificate-check.svg);
  background-size: 22px 22px;
  position: absolute;
  top: 2px;
  right: 1px;
  z-index: 1;
}


.certificate-section .certificate-section__label.disable{
  background: #666;
}

.certificate-section .certificate-section__label.disable:before{
  content: none;
}

.certificate-section__img{
  border: 1px solid #ddd;
}

.certificate-section__img img{
  width: 100%;
}


@media all and (max-width: 768px) {
  .certificate-section{
    margin: 26px -16px 0;
    padding: 0 12px 20px;
  }

  .certificate-section + p{
    margin: 8px -3px 0 0 !important;
  }

  .certificate-section .certificate-section__find{
    padding: 4px 12px;
    margin: 0 -12px 20px;
    font-size: 16px;
  }

  .certificate-section li:not(:first-child){
    margin-left: 10px;
  }

  .certificate-section .certificate-section__label{
    width: 100%;
    height: 24px;
    line-height: 24px;
    margin: -8px auto 0 !important;
    padding: 0 6px;
    font-size: 12px;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .certificate-section .certificate-section__label:after{
    width: 16px;
    height: 16px;
  }

  .certificate-section .certificate-section__label:before{
    width: 17px;
    height: 17px;
    background-size: 17px 17px;
    right: 2px;
  }

}



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

 Comment Large

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

.comment-large {
  margin-top: 32px;
}

.comment-large ul {
  margin-top: 0;
}

.comment-large li {
  padding: 16px 0;
  border-bottom: 2px dotted #aaa;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
}

.comment-large__body p {
  font-size: 1.55rem;
  line-height: 1.6;
}

.comment-large .comment-large__notes {
  margin-top: 12px;
  color: #808080;
  font-size: 1rem;
  text-align: right;
}


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

 Comment

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

.comment {
  margin-top: 28px;
}

.comment:is(.comment-large + *) {
  margin-top: 0;
}

.comment-items {
  margin-top: 24px;
}

.comment-item {
  padding: 14px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.comment-item + .comment-item {
  margin-top: 18px;
}

.comment-item__header {
  padding: 0 14px 14px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-item__avatar {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  overflow: hidden;
}

.comment-item__digest {
  margin: -2px 0 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.comment-item__rating {
  margin-top: 4px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.comment-item__rating span {
  font-size: 1.7rem;
}

.comment-item__rating img {
  width: 88px;
  transform: translateY(0);
}

.comment-item__body {
  margin-top: 12px;
  padding: 0 14px;
}

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

.comment .comment__notes {
  margin-top: 12px;
  color: #999;
  font-size: 1rem;
  line-height: 1.6;
  text-align: right;
}



/*------------------------------------------
 
 Talk

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

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

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

.talk__img {
  width: 60px;
  border-radius: 100%;
  overflow: hidden;
}

.talk__img img {
  width: inherit;
}

.talk__text {
  min-height: 60px;
  padding: 14px;
  background: #f4f7f9;
  border-radius: 6px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
}

.talk__text:before {
  width: 15px;
  height: 23px;
  background: url(../img/talk-arrow.svg) no-repeat;
  background-size: 15px 23px;
  content: "";
  display: block;
  position: absolute;
  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;
  transform: scale(-1, 1);
}

.talk__text p {
  font-size: 95%;
  line-height: 1.65;
}

.talk + .talk {
  margin-top: 16px;
}



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

 Section / Choosing Tips

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

.choosing-tips__item {
  margin-top: 44px;
}

.choosing-tips__item + .choosing-tips__item {
  margin-top: 52px;
}

.choosing-tips h3 {
  margin-bottom: 32px;
  padding: 13px 0 13px 48px;
  font-size: 1.95rem;
  background: linear-gradient(to bottom, #fff, #f5f5f5);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: relative;
}

.choosing-tips h3::before {
  width: 30px;
  height: 30px;
  content: "";
  background-image: url(../img/icon-check-l.svg);
  background-size: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
}

.choosing-tips__heading-label {
  height: 30px;
  padding: 0 8px;
  color: #fff;
  font-size: 1.55rem;
  background: var(--color-accent);
  display: flex;
  align-items: center;
  position: absolute;
  top: -24px;
  left: 20px;
  z-index: 0;
}

.choosing-tips__heading-label::after {
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border-radius: 1px;
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%) rotate(45deg);
}



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

 Modules / Button Sub

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

.post-body .btn-sub {
  width: 90%;
  margin: 32px auto;
}

.post-body .btn-sub a {
  height: 88px;
  padding: 0 0 2px;
  color: var(--fc-link);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid #ccc;
  box-shadow: 0 3px 0  #ccc;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.post-body .btn-sub a span {
  text-decoration: underline;
}

.post-body .btn-sub__guide {
  margin-top: 16px;
  font-size: 1.4rem;
  text-align: center;
}



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

 Modules / problem List

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

.problem-list {
  margin: 0 -9px;
  padding: 8px 14px;
  background: #f3f3f3;
}

.problem-list li {
  padding: 9px 0 9px 22px;
  font-size: 1.65rem;
  font-weight: 700;
  border-top: 1px dashed #ccc;
  position: relative;
}

.problem-list li:first-child {
  border-top: none;
}

.problem-list li::before {
  width: 7px;
  height: 7px;
  background: #726988;
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
}



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

 Modules / Facts List

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

.facts-list {
  margin-top: var(--block-margin);
  padding: 16px 20px;
  background: #eaf7ff;
  border-radius: var(--box-r);
  position: relative;
  overflow: hidden;
}

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

.facts-list li {
  padding-left: 18px;
  font-size: 1.7rem;
  font-weight: 600;
  position: relative;
}

.facts-list li::before {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 4px;
}

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


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

 Modules / Memo Box

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

.memo-box {
  margin: 48px 0 32px;
  padding: 18px 18px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--color-primary);
  position: relative;
}

.memo-box__label {
  width: fit-content;
  height: 28px;
  padding: 0 12px 0 8px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--color-primary);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  position: absolute;
  top: -30px;
  left: 0;
  gap: 4px;
}

.memo-box__label::before {
  width: 17px;
  height: 17px;
  background-image: url(../img/icon-light-white.svg);
  background-size: 100%;
  content: "";
  display: block;
  transform: translateY(-1px);
}

.memo-box p {
  margin-top: 0;
  font-size: 1.5rem;
}

.memo-box p + p {
  margin-top: 12px;
  line-height: 1.7;
}

.memo-box .img {
  margin-top: 16px;
}


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

 Modules / Box Point

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

.box-point {
  margin-top: 28px;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

.box-point:is(.ta-center + *) {
  margin-top: 16px;
}

.box-point__heading {
  padding: 6px 0;
  color: #fff;
  font-weight: 600;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.box-point__heading span {
  padding: 0 8px;
  background: var(--color-primary);
  display: block;
  position: relative;
  z-index: 5;
}

.box-point ul {
  margin-top: 0;
  padding: 5px;
}

.box-point li {
  min-height: 52px;
  padding: 8px 10px 8px 35px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.7;
  background: var(--color-primary-l);
  border-radius: 4px;
  display: flex;
  align-items: center;
  position: relative;
}

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

.box-point li::before {
  width: 20px;
  height: 20px;
  background-image: url(../img/icon-check-simple.svg);
  background-size: 100%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
}



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

 Modules / Table Price

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

.price-table {
  margin-top: var(--block-margin);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.price-table__item {
  border: 2px solid var(--color-primary);
  border-radius: 5px;
}

.price-table dt {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  background: var(--color-primary);
}

.price-table dd {
  height: 64px;
  font-size: 1.7rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}



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

 Modules / Author Profile

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

.author-profile {
  margin-top: 32px;
  padding: 20px 16px;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f5f5f5 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f5f5f5 calc(100% - 1px));;
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: -1px -1px;               
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--color-primary);
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
}

.author-profile__avata {
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  overflow: hidden;
}

.author-profile__ttl {
  color: var(--color-primary);
  font-size: 1.7rem;
}

.author-profile__txt p {
  margin-top: 4px;
  font-size: 1.5rem;
  line-height: 1.7;
}



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

 Modules / Low Stock Box

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

.low-stock-box {
  max-width: 380px;
  margin: 16px auto 32px;
  box-shadow: 0 3px 8px rgba(0 , 0, 0, 0.09);
}

.low-stock-box__ttl {
  padding: 1px 18px 0 18px;
  background: var(--color-primary);
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.low-stock-box__ttl img {
  margin-top: -16px;
}

.low-stock-box__body {
  padding: 24px 20px;
  position: relative;
}

.low-stock-box-monthly {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.low-stock-box-monthly::after {
  width: 3px;
  height: 100%;
  background: #ccc;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.low-stock-box-monthly__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  position: relative;
  z-index: 1;
}

.low-stock-box-monthly__item dt {
  height: 44px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background: #acacac;
  border-radius: 5px 0 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.low-stock-box-monthly__item dd {
  height: 44px;
  padding: 4px 12px;
  font-size: 1.5rem;
  font-weight: 600;
  background: #eee;
  border-radius: 0 5px 5px 0;
  display: flex;
  align-items: center;
}

.low-stock-box-monthly__item dt:is(.--now *) {
  height: 56px;
  background:  var(--color-primary);
}

.low-stock-box-monthly__item dd:is(.--now *) {
  height: 56px;
  font-size: 1.65rem;
  font-weight: 700;
  background:  var(--color-primary-l);
}

.low-stock-box__label {
  width: fit-content;
  height: 20px;
  padding: 0 4px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--fc-red);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 16px;
  right: 8px;
  z-index: 10;
  transform: rotate(-8deg);
  animation: blinkSteps .9s steps(1, end) infinite;
}

@keyframes blinkSteps {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}


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

 Footer

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

.g-footer {
  width: 100%;
  margin: 80px 0 0;
  background: #fff;
  border-top: 1px solid var(--color-border-bold);
}

.g-footer__inner{
  padding: 40px 0;
}

.g-footer .copyright {
  text-align: center;
}

.g-footer .copyright small {
  color: var(--fc-gray);
  font-size: 1.2rem;
}

.g-footer.sp-nav-open {
  position: fixed;
}



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

404

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

.page-404{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-404__box{
  width: 480px;
  max-width: calc(100% - 28px);
  padding: 40px;
  background: #fff;
  box-shadow: 0 10px 10px rgba(0,0,0,0.02);
  box-sizing: border-box;
}

.page-404__find{
  line-height: 1.2;
  color: var(--color-primary);
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

.page-404__image{
  margin: 24px auto 32px;
  padding: 0 20px;
  text-align: center;
}

.page-404__image img{
  width: 100%;
  max-width: 400px;
  height: auto;
}

.page-404 p{
  margin: 12px 0 0;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.page-404__image .page-404 p{
  margin: 0;
}

.page-404__link-area{
  margin-top: 20px;
}

.page-404__link-area p{
  margin-top: 0;
  font-size: 1.9rem;
  line-height: 1.8;
}


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

  .page-404__box{
    padding: 40px 20px;
  }
  
  .page-404__find{
    font-size: 28px;
  }

  .page-404__image{
    margin: 18px 0 24px;
  }

  .page-404 p{
    font-size: 1.4rem;
  }

  .page-404__link-area{
    margin: 16px 0 0;
  }

  .page-404__link-area p{
    font-size: 1.6rem;
  }

}