html{margin:0;padding:0;border:0;vertical-align:baseline}
a,abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,data,dd,del,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,i,iframe,img,ins,kbd,label,legend,li,main,mark,nav,object,ol,p,pre,q,s,samp,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,u,ul,var,video{
    margin:0;
    padding:0;
    border:0;
    vertical-align:baseline;
    font-size:100%
}
*,:after,:before{
    -webkit-box-sizing:border-box;
    box-sizing:border-box
}

audio,canvas,progress,video{
    display:inline-block;vertical-align:baseline
}
audio:not([controls]){display:none;height:0}
[hidden],template{display:none}
html:not(.is-mobile){overflow-y:scroll}
body{
    background: linear-gradient(to left,#a1f1ff,#fff,#fff, #fff,#a1f1ff) fixed;

}
animation: huerotator 3s infinite alternate;
@keyframes huerotator {
    0% {
      -webkit-filter: hue-rotate(0deg);
      filter: hue-rotate(0deg);
    }

    100% {
      -webkit-filter: hue-rotate(360deg);
      filter: hue-rotate(360deg);
    }
  }

body,html{
    line-height:1.5;
    font-size:10px;
    -webkit-text-size-adjust:100%
}

body,button,input,select,textarea{
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale
}
h1,h2,h3,h4,h5,h6{font-weight:700}
address{font-style:normal;font-weight:400}
blockquote{quotes:none}
blockquote:after,blockquote:before{content:"";content:none}
hr{overflow:visible;height:0;margin:0}
pre{overflow:auto}
ol,ul{list-style:none}
a{background-color:transparent;-webkit-text-decoration-skip:objects}
a:active,a:hover{outline:0}
b,em,strong{font-style:normal;font-weight:700}
small{font-size:1em}
q{quotes:none}q:after,q:before{content:"";content:none}
dfn{font-style:italic}
abbr[title]{
    border-bottom:none;
    text-decoration:underline;
    -webkit-text-decoration:underline dotted;
    text-decoration:underline dotted}
code,kbd,pre,samp{font-size:1em;font-family:monospace,monospace}
sub,sup{position:relative;vertical-align:baseline;line-height:0;font-size:10px}
sub{bottom:-.25em}sup{top:-.5em}
mark{background-color:inherit;color:inherit;font-weight:700}
img{border:0;vertical-align:top;-ms-interpolation-mode:bicubic}
embed,iframe,object{max-width:100%;outline:none;vertical-align:top}
svg:not(:root){overflow:hidden}
table{border-spacing:0;border-collapse:collapse}
caption{text-align:left}td,th{vertical-align:top}
label{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
button,input,optgroup,select,textarea{margin:0;color:inherit;font:inherit}
input{line-height:normal}
input[type=search]{-webkit-appearance:textfield}
input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}
input[type=checkbox],input[type=radio]{padding:0}
input[type=image]{vertical-align:top;cursor:pointer}
button,input[type=button],input[type=reset],input[type=submit]{cursor:pointer;-webkit-appearance:button;-moz-appearance:button;appearance:button}
button[disabled],input[disabled]{cursor:default}
button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}
button{overflow:visible}
button,select{text-transform:none}
optgroup{font-weight:700}
textarea{overflow:auto;vertical-align:top;resize:vertical}
[lang=ja]{font-family:Hiragino Kaku Gothic ProN,YuGothic,Yu Gothic,Meiryo,MS PGothic,sans-serif}
.win[lang=ja],.win [lang=ja]{font-weight:500;font-family:YuGothic,Yu Gothic,Hiragino Kaku Gothic ProN,Meiryo,MS PGothic,sans-serif}
.ie[lang=ja],.ie [lang=ja]{font-family:Meiryo,MS PGothic,sans-serif}
[lang=en]{font-family:Helvetica,Arial,sans-serif;-webkit-font-variant-ligatures:no-common-ligatures;font-variant-ligatures:no-common-ligatures}

body,html{
    height:100%
}
body{
    background-color:#fff;
    line-height:1.5;font-size:2.6em;
    letter-spacing:0;

}
body *{
    max-height:1000000px
}

/* 外枠：サイトの幅に追従 */
.fraud-container {
  width: 100%;
  max-width: 1000px;
  margin: 15px auto;
  padding: 0 10px;
  box-sizing: border-box;
}

/* アコーディオン本体：サイトカラーのネイビーで縁取り */
.fraud-accordion {
  border: 1px solid #1a3b6e;
  border-radius: 4px;
  background-color: #ffffff;
}

/* タイトル部分：閉じている時 */
.fraud-summary {
  display: block; /* デフォルトの三角を消すため */
  padding: 12px 15px;
  cursor: pointer;
  list-style: none;
  color: #1a3b6e; /* サイトのメインネイビー */
  font-weight: bold;
  font-size: 29px;
  background-color: #f8f9fa;
  transition: background-color 0.2s;
}

/* Safari対策：デフォルトの三角を非表示 */
.fraud-summary::-webkit-details-marker {
  display: none;
}

/* テキスト後のアイコン設定（閉じている時 ▲） */
.fraud-summary::after {
  content: "▼";
  font-size: 0.8em;
  margin-left: 5px;
  display: inline-block;
}

/* 開いている時のアイコン設定（▼） */
.fraud-accordion[open] .fraud-summary::after {
  content: "▲";
}

/* 中身のエリア */
.fraud-content {
  padding: 20px 15px;
  border-top: 1px solid #eeeeee;
  line-height: 1.8;
  font-size: 17px;
}

/* 黒字テキスト */
.txt-navy {
  color: #1a3b6e;
  font-weight: bold;
  margin-bottom: 15px;
}

.txt-black:last-child {
  margin-bottom: 0;
}

/* 赤字テキスト：強調表示 */
.txt-red {
  color: #d93025;
  font-weight: bold;
  margin-bottom: 15px;
  padding: 12px;
  background-color: #fff5f5; /* 背景に薄い赤を敷いて可読性をアップ */
  border-radius: 4px;
}

/* モバイル表示調整 */
@media screen and (max-width: 480px) {
  .fraud-summary {
    font-size: 11px;
  }
  .fraud-content {
    font-size: 20px;
  }
}

.android4_1 body *,.android4_2 body *,.android4_3 body *,.android4_4 body *{
    -webkit-transition:none!important;transition:none!important
}
body>iframe,body>img{
    position:absolute;top:100%;left:100%
}

a:link{
    -webkit-transition:color .25s cubic-bezier(.215,.61,.355,1),background-color .25s cubic-bezier(.215,.61,.355,1);
    transition:color .25s cubic-bezier(.215,.61,.355,1),background-color .25s cubic-bezier(.215,.61,.355,1)
}

    a:link,a:visited{
        text-decoration:none;
    }
    /* CSS (必要に応じて追加してください) */

/*
 * Why: 見出し内のリンクであることを視覚的にわかりやすくし、
 * クリック可能な要素としてのアフォーダンス（操作の手がかり）を高める。
 */
.heading-text-link {
  /* サイトのテーマカラーに合わせて色は変更してください。以下は一般的なリンク色の例です */
  color: #0056b3; 
  text-decoration: underline; /* リンクであることを明確にするため下線を引く */
  transition: opacity 0.2s ease-in-out; /* ホバー時の変化を滑らかにする */
}

/*
 * Why: カーソルを合わせた際に少しだけ透明度を下げる（薄くする）ことで、
 * 「押せる」というインタラクティブな反応をユーザーに返す。
 */
.heading-text-link:hover {
  opacity: 0.7;
  text-decoration: none; /* ホバー時は下線を消して動きをつける */
}
    a:hover{
        color:#003e89
    ;}
    ::-webkit-input-placeholder{color:#bbb}
    ::-moz-placeholder{color:#bbb}
    :-ms-input-placeholder{color:#bbb}

    .PageContainer{
        display:-webkit-box;display:
        -webkit-flex;
        display:-ms-flexbox;
        display:flex;
        position:relative;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -webkit-flex-direction:column;
        -ms-flex-direction:column;
        flex-direction:column;
        width:640px;
        height:100%;
        margin:auto;
        background-color:#fff;
    }
    .PageHeader{
        position:relative;
        padding:2.5% 5%;
        background-color:#fff;
        color:#e8381d;
        text-align:center
    }
    .Page.-index[data-view=test] .PageHeader,.Page.-thanks .PageHeader{padding:10px 15px}
    .MainContent{
        display:-webkit-box;
        display:-webkit-flex;
        display:-ms-flexbox;
        display:flex;
        overflow:hidden;
        -webkit-box-orient:vertical;
        -webkit-box-direction:normal;
        -webkit-flex-direction:column;
        -ms-flex-direction:column;
        flex-direction:column;
        -webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;
        flex-grow:1;
        -webkit-flex-shrink:0;
        -ms-flex-negative:0;
        flex-shrink:0;
        background-color:#fff000;
    }

        .PageFooter{
            padding-top:8%;
            padding:15px 0;
            background-color:#fff000;
            border-top:solid 3px #005071;
        }
    .HeaderPageLogo{position:absolute;top:6px;left:30px;font-size:0.8em;}
    .Page.-index[data-view=test]
    .HeaderPageLogo,.Page.-thanks .HeaderPageLogo{display:block}
    .ContactConts{font-size:14px;}
    .arrow{margin:7px 3px 8px 8px;}
    .HeaderPageId{
        text-align:right;
        font-weight:bold;
        font-size:3rem;
        margin-top:3%;
        margin-bottom:3%;
    }
    .HeaderPageId,.HeaderPageId>b{
        line-height:1;
        letter-spacing:-1px;
        display:flex;
        align-items:center;
        justify-content:flex-end;
    }
.HeaderPageId>b{
    font-size:3.6rem;
    display:block;
    margin-top:14px
}
.Page.-index[data-view=test] .HeaderPageId,.Page.-thanks .HeaderPageId{
    line-height:1;
    font-size:1.6rem;
    letter-spacing:.05em;
    margin-top:0;
    padding-bottom:0
}

.Page.-index[data-view=test] .HeaderPageId>b,.Page.-thanks .HeaderPageId>b{
    line-height:1;
    font-size:2.4rem;
    letter-spacing:.05em;
    display:block;
    margin-top:8px;
}

.FooterCopyright{
    line-height:1;
    font-size:2.6rem;
    letter-spacing:0;
    color:#005071;
    text-align:center;
    font-weight:bold;
}

.Button{
    padding:28px 0;
    width:100%;
    border:none;
    outline:none;
    background-color:#fff;
    color:#003e89;
    font-size:3.5rem;
    line-height:1;
    -webkit-transition:all .1s cubic-bezier(.215,.61,.355,1);
    transition:all .1s cubic-bezier(.215,.61,.355,1);
    -webkit-tap-highlight-color:transparent;
    display: inline-block;
    border-radius: 10px;
    font-weight:bold;
    border-bottom: solid 5px #ee7a0d;
    filter: drop-shadow(0 0 8px #ee7a0d);
}

.Button:active{
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    filter: drop-shadow(0 0 3px #ee7a0d;);
    border-bottom: none;
}



.Button:focus{-webkit-box-shadow:0 4px #fff1b0;box-shadow:0 4px #fff1b0;background-color:#fff7cd;color:#003e89}
.TelNumber{font-size:5.6rem;color:#003e89;}.ToTest{position:relative;padding:0 0 0}

.ToTest__lead{
    text-align:center;
    color:#fff000;
    letter-spacing:3.5px;
}

.ToTest__button{
    position:relative;
    height:240px;
    text-align:center;
    filter: drop-shadow(0 0 8px #575757);
}
.ToTest__button>a{
    display:block
}
.ToTest__button img{
    -webkit-animation:toTestButton 1.4s infinite normal;
    animation:toTestButton 1.4s infinite normal
}

.ToTest__caution{position:absolute;bottom:60px;left:0;padding:94px 40px;background-color:rgba(70,50,50,.65);color:#fff}
._Hero+.ToTest{padding-top:0px}._Introduction+.ToTest{padding-top:40px}
._Case+.ToTest{padding-top:60px}
@-webkit-keyframes toTestButton{0%{opacity:1}20%{opacity:1}50%{opacity:0}70%{opacity:0}to{opacity:1}}
@keyframes toTestButton{0%{opacity:1}20%{opacity:1}50%{opacity:0}70%{opacity:0}to{opacity:1}}


.wakekko img{
    justify-content:space-around;
    width:35%;
}

#longbox{
    background-color: #fff;
}

.shindanbox{
    width:100%;
    margin:0 auto;
    text-align:center;
    background-color: #fff000;
    /*background: linear-gradient(to left,#a1f1ff,#005071,#a1f1ff) fixed;*/
    padding-top:10%;
    padding-bottom:5%;
}
.q1{
    margin-top:8%;
}

#ranking{
    background:url("../images/background.jpg");
    background-repeat:no-repeat;
    background-size:cover;
}

.osusume1{
    width:100%;
    margin:0 auto;
    text-align:center;
    padding-top:7%;
}

.osusume1 h2{
    margin-top:15px;
    color:#005071;
}



.myrow1{
    width:100%;
    margin:0 auto;
    display:-webkit-flex;
    display:flex;
    text-align: center;
}
.mycol-1{
    background:#fff;
    border:solid 3px #005071;
    border-radius:15px;
    flex:1;
    font-size: 21px;
    padding:10px;
}

.mycol-1 img{
    margin-top:-11%;
}

.mycol-1 p{
    margin-top:15px;
    font-weight:bold;
    font-size:2rem;
    color:#005071;
    text-align:center;
}


.myrow2{
    width:93%;
    margin:0 auto;
    display:-webkit-flex;
    display:flex;
    text-align: center;
    margin-top:5%;
    margin-bottom:5%;
}
.mycol-2{
    width:100%;
    margin:0 auto;
    flex:3;
}

.mycol-2 a{
    transition: 0.5s;
    filter: drop-shadow(0 0 5px #575757);
}
.mycol-2 a:hover{
    opacity:0.7;
}


.mycol-3{
    width:100%;
    margin:0 auto;
    flex:1.5;
}

.myrow3{
    width:80%;
    margin:0 auto;
    display:-webkit-flex;
    display:flex;
    text-align: center;
    margin-top:8%;
    margin-bottom:5%;
}

.mycol-a{
    width:100%;
    margin:0 auto;
    flex:1;
    background-color:#fff;
    display: inline-block;
    border-radius: 10px;
    color:#ffff00;
    font-weight:bold;
    border-bottom: solid 5px #ee7a0d;
    filter: drop-shadow(0 0 8px #ee7a0d);
}
.mycol-a:active{
    -webkit-transform: translateY(4px);
    transform: translateY(4px);/*下に動く*/
    filter: drop-shadow(0 0 3px #ee7a0d);
    border-bottom: none;
}

.myrow4{
    width:100%;
    margin:0 auto;
    display:-webkit-flex;
    display:flex;
    text-align: center;
    background-color:#fff;
}

.mycol-b{
    width:100%;
    margin:0 auto;
    flex:1;
}

.colum_1{
    width:100%;
    margin:0 auto;
    text-align:center;
    background-color: #fff;
}
.colum_1 img{
    width:95%;
    margin:0 auto;
}

.colum_1 h1{
    line-height: 27px;
    margin-top:15px;
    color:#003e89;
    text-decoration:underline;/*下線を引く*/
    text-decoration-color:#fff000;/*下線を赤色*/
    padding-bottom:3%;
}
.colum_1 p{
    width:95%;
    margin:0 auto;
    color:#003e89;
    font-size:21px;
    font-weight:500;
    line-height: 31px;
    text-align: left;
    margin-top:3%;
}


.mycol-2 img{
    width:100%;
    margin:0 auto;
}
.mycol-3 img{
    width:100%;
    margin:0 auto;
}

.staff{
    width:90%;
    margin:0 auto;
    margin-top:3%;
    margin-bottom:5%;
}
.staff p{
    margin-top:15px;
    font-weight:bold;
    font-size:2rem;
    color:#005071;
    text-align:left;
}

.okyaku{
    width:90%;
    margin:0 auto;
    margin-bottom:5%;
}

.okyaku p{
    margin-top:15px;
    font-weight:bold;
    font-size:2rem;
    color:#005071;
    text-align:left;
}

.go_to{
    width:100%;
    margin:0 auto;
    text-align:center;
}

.go_to img{
    width:80%;
}
/* =========================================================
   共通ベーススタイル (全アニメーション共通の設定)
   Why: DRY原則に基づき、重複するCSSを共通クラスに分離。保守性とファイルサイズを最適化し、
   LP内で複数のCTAボタンに使い回せるようにする。
========================================================= */
.cta-base {
  display: inline-block;
  text-decoration: none;
  position: relative;
  overflow: hidden; /* 光沢のはみ出し防止 */
  transition: transform 0.2s ease-in-out;
  /* border-radius: 8px; */ /* 角丸画像の場合はコメントアウトを外して画像の丸みに合わせる */
}

/* * Why: ホバー/タップ時の共通アクション。
 * アニメーションを強制停止し、ボタンを沈み込ませる（scale: 0.95）ことで、
 * 物理的なボタンを押したような確実なフィードバック（アフォーダンス）を提供する。
 */
.cta-base:hover,
.cta-base:active {
  animation: none !important;
  transform: translateY(0) scale(0.95);
}

/* ホバー/タップ時は光沢も消して操作ノイズをなくし、クリックに集中させる */
.cta-base:hover::after,
.cta-base:active::after {
  display: none;
}

/* =========================================================
   パターン1: ゆっくり光沢 (anim-shine)
========================================================= */
.anim-shine::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: cta-shine 5s ease-in-out infinite;
}
@keyframes cta-shine {
  0% { left: -100%; }
  30% { left: 200%; }
  100% { left: 200%; }
}

/* =========================================================
   パターン2: シンプルな上下運動 (anim-updown)
========================================================= */
.anim-updown {
  animation: cta-updown 2s ease-in-out infinite;
}
@keyframes cta-updown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* =========================================================
   パターン3: バウンド＋光沢連携 (anim-bounce-shine) ★推奨
   Why: 前半で動き、後半で光る連携プレイ。スマホの高速スクロールでも確実に視線を奪う。
========================================================= */
.anim-bounce-shine {
  animation: cta-bounce-pause 2s infinite;
}
.anim-bounce-shine::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: cta-shine-sync 2s infinite;
}

/* 前半1秒でバウンド、後半1秒で静止 */
@keyframes cta-bounce-pause {
  0% { transform: translateY(0); }
  15% { transform: translateY(-12px); }
  30% { transform: translateY(0); }
  42% { transform: translateY(-6px); }
  50%, 100% { transform: translateY(0); }
}

/* 静止している後半1秒で光沢を走らせる */
@keyframes cta-shine-sync {
  0%, 50% { left: -100%; }
  85%, 100% { left: 200%; }
}
#top_btn{
    width:100%;
    margin:0 auto;
    position: fixed;
  bottom:0px;
  left:0px;
  background-color:#ff0000;
  border:3px #ff0000;
  padding:21px 10px;
  font-weight: 800;
  font-size:3rem;
}

@media screen and (max-width:700px){
    .mycol-1 p{
        font-size:1.7rem;
    }
    .okyaku{
        margin-bottom:0;
    }

    .staff{
        margin-top:10px;
    }
  }

  #accordion{
    background-color: #fff;
    padding-top:5%;
    padding-bottom:5%;
    width:100%;
    margin:0 auto;
    text-align:center;
  }

  .acd-check{
    display: none;
}
.acd-label{
    background:#003e89;
    color: #fff;
    display: block;
    margin-bottom: 1px;
    padding: 10px;
    border-radius:10px;
    margin:0 auto;
    width:95%;
    margin-top:10px;
    text-align:left;
    font-size:18px;
    font-weight:bold;
    border-bottom: solid 3px #001a33;
}
.acd-content{
    border:1.5px solid #003e89;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .5s;
    visibility: hidden;
    background-color: #fff;
    margin:0 auto;
    width:95%;
    text-align:left;
}

.acd-content p{
    font-size:18px;
    color:#003e89;
    font-weight:bold;
    text-align:left;
}
.acd-check:checked + .acd-label + .acd-content{
    width:95%;
    height:150px;
    opacity: 1;
    padding: 10px;
    visibility: visible;
    margin:0 auto;
    border-radius:10px;
}


table {
border-collapse: collapse;
margin: 0 auto;
width:95%;
/*table-layout: fixed;*/
padding-bottom:15%;
}

table tr {
background-color: #fff;
padding: .35em;
border-bottom: 2px solid #fff;
}
table th,
table td {
padding:5px 10px 5px 5px;
border:2px solid #003e89;
font-size:18px;
}
table th {
font-size: .85em;
}
table thead tr{
background-color: #ccf7ff;
color:#003e89;
}
table tbody th {
  background: #ccf7ff;
  color: #003e89;
}

.kaisyajoho{
    background-color:#fff;
    padding-bottom:11%;
}

.shindan1{
    width:100%;
    max-width:1000px;
    height:100%;
    margin:0 auto;
}

.good{
    width:100%;
    margin:0 auto;
    text-align: center;
    padding-top:5%;
}

.copy p{
    text-align: center;
    font-weight:700;
    color:#003e89;
}
.copy img{
    margin-top:10%;
    margin:0 auto;
    text-align:center;
}
.go-back{
    padding-bottom:5%;
}

.go_to{
    margin-top:5%;
}
.shop p{
    margin:0 auto;
    text-align: center;
    font-weight:700;
    color:#ff0000;
    background:linear-gradient(transparent 70%, #FFFF00 0%);
    width:480px;
    font-size:35px;
    margin-top:1.5%;
}

.a1_company{
    width:80%;
    margin:0 auto;
    text-align:center;
}

.a1_company img{
    width:100%;
    margin:0 auto;
    text-align:center;
}

.staffcomment p{
  text-align: left;
  font-weight:500;
  color:#003e89;
}

/* --- ユーザー様の元コードベース --- */
.box2 {
  width: 95%;
  margin: auto;
  border: 2px solid #ffd700;
  border-radius: 5px;
  margin-top: 30px;
  background-color: #fff;
}

.box2 h3 {
  background: #fffbe5;
  color: #000000;
  text-align: center;
  margin: 0;
  position: relative;
  padding: 3px;
}

.box2 .inner {
  padding: 0em .5em .5em;
  text-align: center;
}

/* --- 追加・修正部分 --- */

/* 上部の無駄な空白を消すためにolのmarginを調整し、リストスタイルをリセット */
.box2 .inner ol {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0; /* h3との間隔を適度に保つ最小限の余白 */
}

/* font-sizeの指定を削除し、サイト元のテキストサイズをそのまま継承させる */
.box2 .inner ol li {
  margin-bottom: 10px;
  text-align: left;
  position: relative;
  padding-left: 35px; /* アイコン用の余白 */
  line-height: 1.6;
}

.box2 .inner ol li:last-child {
  margin-bottom: 0;
}

/* --- チェックマーク（オレンジ丸） --- */
.box2 .inner ol li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px; /* サイト元のテキストサイズに合うよう微調整 */
  width: 24px;
  height: 24px;
  background-color: #f39c12;
  border-radius: 50%;
}

/* --- チェックマーク（白線） --- */
.box2 .inner ol li::after {
  content: '';
  position: absolute;
  left: 9px;
  top: 7px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
  .gift {
    background: #8cc63f;
    color: #fff;
    font-weight: bold;
    font-size: 2rem;
    padding: 2px 4px;
    border-radius: 8px;
    margin-right: 5px;
  }
  
  .topic2 {
    font-weight: bold;
    color: #fa4141;
    text-decoration: underline;
  }

@media screen and (max-width: 600px) {
    table {
      border: 0;
      width:100%
    }
    table th{
      background-color: #167F92;
      display: block;
      border-right: none;
    }
    table thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    table tr {
      display: block;
      margin-bottom: .625em;
    }
    table td {
      border-bottom: 1px solid #bbb;
      display: block;
      font-size: .8em;
      text-align: right;
      position: relative;
      padding: .625em .625em .625em 4em;
      border-right: none;
    }

    table td::before {
      content: attr(data-label);
      font-weight: bold;
      position: absolute;
      left: 10px;
      color: #167F92;
    }
    table td:last-child {
      border-bottom: 0;
    }
    table tbody th {
      color: #fff;
    }
    }
    #wrapper{
    display: flex;
    width: 100%;
    min-height:100vh;
    margin: 0 auto;
    text-align: center;
    background:url("../images/background.jpg");
    background-repeat:no-repeat;
    background-size:cover;
    }

    HTML{
        height:100%;
      }

      body{
        height:100%;
      }

      .daytime{
        text-align:center;
        padding:7px;
        background-color:#005071;
        color:#fff000;
        font-size: 25px;
        font-weight:bold;
    }
