*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "tot-shizukamin-stdn", sans-serif;
    font-style:normal ;
    scroll-behavior: smooth;
}

section {
        height: auto;      /* コンテンツに応じて高さを自動調整 */
        min-height: 0;     /* 高さの最小値をリセット（フレームワークで指定されていることがある） */
        padding: 0;        /* 上下余白も減らす場合 */
        margin: 0;         /* 上下の余白もリセット */
}


html {
    background-color: azure;
}

body{
    margin: 0 auto;
    background-color: rgb(255, 255, 255);
}

img{
    width: 100%;
    margin:0 auto;
}

p {
    color: #47484a;
    line-height: 1.5;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.red {
    color: #e55e63;
    font-size: 14px;
    padding-right: 1%;
}

.anno {
    color:#6f7074;
    font-size: 12px;
}

.taC {
    text-align: center !important;
}

.vab {
    vertical-align: bottom;
}

.bg {
    position: relative;
}

.mt10 {
    margin-top: 10%;
}

.pc {
    display: none;
}

@media screen and (min-width: 767px){
    .sp {
        display: none;
    }
    .pc {
        display: block;
    }
}

/*リセット*/
select,input {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/*ヘッダー*/
/* ----------------------------ヘッダー---------------------------- */
header {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

header>img {
    width: 20%;
    padding: 20px 30px;
}

@media screen and (min-width:700px) and (max-width:1500px) {
    header>img {
        padding: 18px 25px;
    }
}

@media screen and (max-width:699px) {
    header>img {
        width: 50%;
        padding: 8px 16px;
    }
}

header>a {
    width: 50%;
}

header>a:hover {
    opacity: 0.7;
}

/* ハンバーガー */
/* Nav items */
.menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 30px;
    left: 0;
    margin-top: 50px;
    padding: 0 0 10px 0;
    clear: both;
    background: var(--background-navbar);
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
    background-color: #fff;
}

@media screen and (min-width:700px) and (max-width:1500px) {
    .menu {
        top: 20px;
    }
}

@media screen and (max-width:699px) {
    .menu {
        top: -10px;
    }
}


/* Hamburger menu button */
.menu-btn:checked~.menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 18px;
    text-transform: capitalize;
    color: #47484a;
    opacity: 0;
    transition: 0.5s;
}

@media screen and (max-width:699px) {
    .menu a {
        font-size: 16px;
    }
}

.menu li {
    border-top: 1px solid #47484a;
    padding: 7px;
    opacity: 0;
    transition: 0.5s;
    text-align: center;
}

.menu li.cta {
    border: none;
    padding: 5px;
}

.menu li.cta:last-child {
    padding-bottom: 15px;
}

.menu li.cta a img {
    width: 70% !important;
    margin: 0 auto;
}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
    display: none;
}

.menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background: linear-gradient(149deg, rgba(89, 203, 214, 1), rgba(139, 209, 114, 1));
    width: 80px;
    height: 80px;
}

@media screen and (max-width:699px) {
    .menu-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
}


.navicon {
    background: #fff;
    display: block;
    height: 3px;
    width: 40px;
    position: relative;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

@media screen and (max-width:699px) {
    .navicon {
        height: 3px;
        width: 24px;
    }
}

.navicon:before,
.navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    background: #fff;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
    top: 15px;
}

.navicon:after {
    bottom: 15px;
}

@media screen and (max-width:699px) {
    .navicon:before {
        top: 10px;
    }

    .navicon:after {
        bottom: 10px;
    }
}

/* Hamburger Menu Animation Start */
.menu-btn:checked~.menu-icon .navicon:before {
    transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
    transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
    top: 0;
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
    bottom: 0;
}

.menu-btn:checked~.menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/*fv*/
.fv img {
    margin-top: 40px;
    vertical-align: bottom;
}

@media screen and (min-width: 767px){
    .fv img {
        margin-top: 60px;
    }
    .menu-icon {
        width: 60px;
        height: 60px;
    }
    .menu {
        top: 10px;
    }
    header img {
        padding: 8px 16px;
    }
}


/*簡単無料診断*/
input[type=radio] {
    display: none;
}

.diagnose {
    background-image: linear-gradient(142deg, rgba(89, 203, 214, 1), rgba(139, 209, 114, 1));
    height: auto;
    padding: 20% 5% 15%;
    text-align: center;
}

.diagnose_area {
    background-color: #fff;
    border-radius: 20px;
    padding: 15% 0 10%;
    position: relative;
}

.diagnose_ttl {
    width: 90%;
    margin: 0 auto;
    position: absolute;
    top: -5%;
    left: 5%;
}

.diagnose_area.show-userform .diagnose_ttl {
    top: -3%;
}

.diagnose_q {
    position: relative;
    display: none;
}

.diagnose_q.active {
    display: block;
}

.diagnose_q::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(149deg, rgba(89, 203, 214, 1), rgba(139, 209, 114, 1));
    z-index: 1;
}

.diagnose_q .q_ttl {
    width: 90%;
    padding: 0 10px 0 10px;
    position: relative;
    z-index: 2;
}

.diagnose label .text{
    display: inline-block;
    background-color: #4d4d4d;
    border-bottom: 5px solid #222222;
    border-radius: 10px;
    width: 80%;
    margin: 2% 0;
    font-size: 15px;
    padding: 3% 0;
}

.diagnose p,
.diagnose .text{
    color: #fff;
}

.diagnose .selected span {
    background-color: #e55e63;
    top: 5px;
    border-bottom: none;
    transition: background-color 0.3s;
  }

.diagnose label input,
.diagnose label select {
	border: 1px solid #47484a;
    border-radius: 2px;
    color:#47484a;
}

@media screen and (min-width: 767px){
    #diagnose {
        scroll-margin-top: 80px; 
    }
    .diagnose {
        padding: 7% 5% 5%;
    }

    .diagnose_ttl {
        width: 70%;
        top: -9%;
        left: 15%;
    }

    .diagnose_q::before {
        top: 4%;
    }

    .diagnose_area.show-userform .diagnose_ttl {
        top: -3%;
    }

    .diagnose_area {
        max-width: 600px;
        margin: 0 auto;
        padding: 5% 0 3%;
    }

    .diagnose label .text {
        padding: 1% 0;
        margin: 1% 0;
        font-size: 16px;
    }

    .diagnose_q .q_ttl {
        width: 60%;
    }

    .coupon {
        width: 80%;
        margin-left: 10%;
        padding-top: 4%;
    }

    .diagnose .checkbox-text {
            padding-left: 5%;
            width: 100%;
    }
}

@media screen and (max-width: 1110px){
    .diagnose_area {
        padding: 7% 0 3%;
    }
    .diagnose_ttl {
        top: -10%;
    }
}

/*フォーム*/
.user_info_form {
display: none;
padding: 0 20px;
text-align: left;
}

.user_info_form h3 {
    padding-top: 7%;
    font-size: 15px;
    line-height: 105%;
}

.user_info_form p {
    color:#47484a;
}

.user_info_form label {
display: block;
margin: 5px 0;
}

.user_info_form input,
.user_info_form select {
width: 100%;
margin-top: 4px;
box-sizing: border-box;
height: 50px;
font-size: 17px; 
padding-left: 10px;
}

.user_info_form *,
.user_info_form *:before,
.user_info_form *:after {
  box-sizing: border-box;
}

.select {
    position: relative;
}

.select::after {
    content: "";
    position: absolute;
    top: 44%;
    right: 4%;
    width: 8px;
    height: 8px;
    border-right: 2px solid #47484a;
    border-bottom: 2px solid #47484a;
    transform: rotate(45deg);
}

.user_info_form textarea {
    width: 100%;
    margin-top: 4px;
    height: 80px;
    font-size: 17px;
}

.submit_btn,
.back_btn,
.back_btn_userform {
    width: 90%;
    text-align: center;
    margin: 5% 0 0 5%;
}

.submit_btn input{
    width: 100%;
    padding: 2% 0;
    border: none;
    border-radius: 30px;
    background-color: #e55e63;
    border-bottom: 5px solid #a83438;
    color: #fff;
    outline: none;
    font-size: 17px;
}

.back_btn a,
.back_btn_userform a{
    display: inline-block;
    width: 100%;
    padding: 2% 0;
    border: none;
    border-radius: 30px;
    background-color: #5f5f5f;
    border-bottom: 5px solid #3d3d3d;
    color: #fff;
    outline: none; 
    text-decoration: none;
    font-size: 17px;
}

label.invalid,
select.invalid{
  border: 2px solid red;
  background-color: #ffe6e6;
}

label:user-invalid,
select:user-invalid{
  border: 2px solid red;
  background-color: #ffe6e6;
}

@media screen and (min-width: 767px){
    .user_info_form {
        padding: 0 40px;
    }
    .user_info_form h3 {
        font-size: 14px;
        padding-top: 3%;
    }
    .user_info_form select{
        font-size: 14px;
    }
    .user_info_form input[type="text"]{
        font-size: 14px;
    }
    .user_info_form textarea{ 
        font-size: 14px;
    }
    .submit_btn,
    .back_btn,
    .back_btn_userform {
        margin: 3% 0 0 5%;
    }
    .submit_btn input{
        font-size: 20px;
    }
    .back_btn a,
    .back_btn_userform a{
        font-size: 16px;
    }

    .user_info_form input,
    .user_info_form select {
        height: 40px;
    }
}

/*強み*/
.forte {
    background-image: url("../img/forte_bg.jpg");
    padding: 70px 30px;
}

.forte_contents img{
    padding-bottom: -10px;

}

/* 初期状態 */
.fadeIn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
}

/* 表示時（fadeInクラスが付与されたとき） */
.fadeIn.visible {
    opacity: 1;
    transform: none;
}
   

  @media screen and (min-width: 767px){
    .forte {
        padding: 7% 0;
        background-image: url("../img/forte_bg_pc.jpg");
    }
    .forte_wrapper {
        max-width: 1100px;
        margin: 0 auto;
    }
    .forte_ttl {
        width: 40%;
        margin-left: 30%;
    }
    .forte_contents {
        text-align: center;
    }

    .forte_contents img{
        width: 40%;
    }
  }
   

/*リスク*/
.risk {
    margin-top: -80px;
    position: relative;
    text-align: center;
    overflow: hidden;
}

.risk_ttl {
    position: absolute;
    top: 100px;
    left: 10%;
    width: 80%;
}

.risk_contents {
    position: absolute;
    width: 90%;
    top: 160px;
    left: 9%;
    padding-bottom: -80px;
}

@media screen and (min-width: 767px){
    .risk {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        min-height: 79vh;
        padding: 0 0 15%;
    }
    .risk_wrapper {
        text-align: center;
    }
    .risk_ttl {
        position: relative;
        width: 35%;
        left: 0;
    }
    .risk_contents {
        position: relative;
        max-width: 1000px;
        left: 5%;
        top: 60px;
    }
    .risk01 {
        background-image: url("../img/risk_bg01_pc.png");
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }

    .risk02 {
        background-image: url("../img/risk_bg02_pc.png");
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
    }
    .risk02 img{
        max-width: 500px;
        padding:15% 0;
    }
}


/*プラン*/
.plan {
    margin-top: -35%;
    position: relative;
}

.plan_wrapper {
    position: absolute;
    top: 0;
    left: 5%;
    width: 90%;
    text-align: center;
}

.plan_ttl {
    width: 80%;
    margin: 10% auto 5%;
}

.plan_content {
    padding-bottom: 5%;
}

@media screen and (min-width: 767px){
    .plan {
        background-image: url("../img/plan_bg_pc.png");
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        margin-top: -25%;
    }

    .plan_ttl {
        width: 35%;
        max-width: 400px;
        margin: 0 0 30px;
    }

    .plan_wrapper {
        position: relative;
        left: 0;
        width: 100%;
    }

    .plan_wrapper .pc {
        max-width: 1000px;
        display: flex;
        margin: 0 auto;
        padding: 0 3% 5%;
    }

    .plan_wrapper .pc img {
        width: 48%;
    }
}

/*理由*/
.reason {
    position: relative;
    background-color: #fff;
}
.reason_skills {
    bottom: 9%;
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin: 0 10%;
}

.reason_skills img {
    width: 45%;
}

@media screen and (min-width: 767px){
    .reason {
        background-image: url("../img/reason_bg_pc.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 5%;
        width: 100%;
    }
    .reason_wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }

    .reason_skills {
        width: 80%;
        left: 10%;
        margin: 0 auto;
        bottom: 7%;
        flex-wrap: nowrap;
        text-align: center;
    }

    .reason_content {
        width: 100%;
    }

    .reason02 {
        text-align: center;
    }

    .reason02 img {
        max-width: 700px;
        margin: 0 auto;
    }

    .reason_skills img {
        width: 27%;
        margin: 0;
    }

    .reason_skills .pc {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
}


/*比較表*/
.rankTable {
    padding: 10% 5%;
    text-align: center;
}

.rankTable_ttl {
    width: 75%;
    padding-bottom: 5%;
}

.table_area {
    width: 100%;
    overflow-x: scroll;
   }

.table_area::-webkit-scrollbar {
    height: 5px;
}

.table_area::-webkit-scrollbar-thumb {
    background-image: linear-gradient(149deg, rgba(89, 203, 214, 1), rgba(139, 209, 114, 1));
    border-radius: 10px;
}

.table_area img {
    height: 500px;
    width: auto;
}

@media screen and (min-width: 767px){
    .rankTable {
        padding: 7% 5% 3%;
    }
    .rankTable_wrapper {
        max-width: 1000px;
        margin: 0 auto;
        text-align: center;
    }
    .rankTable_ttl {
        width: 30%;
        padding-bottom: 3%;
    }
    .table_area {
        width: 100%;
    }
    .table_area img {
        height: 600px;
    }
}

/*チェックリスト*/
.checklist {
    background-image: url("../img/checklist_bg.jpg");
}

.checklist_area {
    background-color: #fff;
    border-radius: 10px;
}

.checklist_ttl {
    margin: -5% 5%;
    width: 90%;
}

.checkboxes {
    padding: 5% 5% 2%;
}

.checkboxes label {
    display: flex;
    align-items: flex-start;
    padding-bottom: 5%;
}

.checklist_cta {
    padding: 0 2% 5%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.checklist_cta.show {
    opacity: 1;
    visibility: visible;
}

/* チェックボックス01のデザイン */
.checkbox01 {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        border: 0;
}

.checkbox-text {
    cursor: pointer;
    display: inline-block;
    padding-left: 10%;
    position: relative;
    line-height: 110%;
}

/* チェックされたら表示 */
input[type=checkbox]:checked+.checkbox-text::after{
  opacity: 1;
}

/* チェックボックス */
.checkbox-text::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  border: 1px solid #777;
}

/* チェックのアイコン */
.checkbox-text::after {
  content: "";
  display: block;
  width: 5px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 6px;
  transform: rotate(35deg) skewY(16deg) translateY(-50%);
  transform-origin: center right;
  border-right: 2px solid #e55e63;
  border-bottom: 2px solid #e55e63;
  opacity: 0; /* 透明 */
}

@media screen and (min-width: 767px){
    .checklist {
        padding: 5% 0;
        background-image: url("../img/checklist_bg_pc.jpg");
    }
    .checklist_area {
        max-width: 600px;
        margin:0 auto;
    }
    .checklist_ttl {
        margin: -5% 15% 1%;
        width: 70%;
    }
    .checkboxes {
        display: flex;
        flex-wrap: wrap;
        padding: 2% 5%;
    }
    .checkboxes label {
        font-size: 15px;
        width: 50%;
        padding-bottom: 1%;
        align-items: center;
    }
    .checkbox-text::before {
        width: 10px;
        height: 10px;
    }
    .checkbox-text::after {
        top: 45%;
        left: 4px;
    }
    
    .checkbox-text {
        padding-left: 10%;
    }
    .checklist_cta {
        padding: 0 7%;
}
}

/*CTA*/
.cta {
    position: relative;
    padding: 0 5%;
    margin-bottom: 10%;
}

.cta_btn {
    position: absolute;
    width: 90%;
    top: 43%;
    left: 5%;
}

@media screen and (min-width: 767px){
    .cta {
        max-width: 600px;
        margin: 0 auto 3%;
        padding: 0;
    }
    .cta_btn {
        top: 40%;
    }
    .mt10 {
        margin-top: 5%;
    }
}

/*調査の流れ*/
.flow {
    background-image: linear-gradient(90deg, rgba(89, 203, 214, 1), rgba(139, 209, 114, 1));
    padding: 14% 0;
    scroll-margin-top: -300px; 
}

.flow_wrapper {
    max-width: 1100px;
    margin: 0 auto;
} 

.flow_ttl {
    width: 70%;
    position: relative;
    left: 10%;
    padding: 7% 0 5%;
}

.flow .cta {
    margin-bottom: 0;
}

@media screen and (min-width: 767px){
    .flow {
        padding: 5% 0;
        scroll-margin-top: -550px;
    }
    .flow_ttl {
        width: 24%;
        left: 37%;
        padding: 5% 0 2%;
    }
}


/*お客様の声*/
.review {
    background-color: #e3eff6;
    padding: 10% 5%;
}

.review_ttl {
    width: 80%;
    max-width: 600px;
    position: relative;
    left: 2%;
    padding-bottom: 5%;
}
/*スライダー*/
.slider {
    width: 100%;
    position: relative;
}

.slider img {
    width: 95vw;
    height:auto;
    padding: 0 10px;
    z-index: 1;
}

/*矢印の設定*/
.slick-prev, 
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 40%;
    display: block;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -4%;
    z-index: 1;
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -4%;
}

.slick-prev::before {
    content: "←";
    background: url("../img/arrow_prev.png");
    background-repeat: no-repeat;
    background-size:100%; /*背景画像のサイズ指定*/
    width: 25px;
    height: 40px;
    display: block;
}

.slick-next::before {
    content: "→";
    background: url("../img/arrow_next.png");
    background-repeat: no-repeat;
    background-size:100%; /*背景画像のサイズ指定*/
    width: 25px;
    height: 40px;
    display: block;
}

/*ドットナビゲーションの設定*/
.slick-dots {
    text-align:center;
	margin: 5% 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;
    height:8px;
    display:block;
    border-radius:50%;
    background:#ccc;
    border: none;
}

.slick-dots .slick-active button{
    background: rgb(12, 209, 166);
}

/* デフォルトで全スライドを半透明に */
.slider .slick-slide {
    opacity: 0.4;
    transition: opacity 0.3s;
  }
  
  /* 現在表示中のスライドだけ不透明に */
  .slider .slick-slide.slick-current {
    opacity: 1;
  }

@media screen and (min-width: 767px){
    .review {
        padding: 5% 30% 5%;
    }
    .review_ttl {
        width: 55%;
        left: 17%;
}
    .slider img {
        width: 380px;
    }
    .slick-next {
        right: -10%;
    }
    .slick-prev {
        left: -10%;
    }
}

/*店舗*/
.store_wrapper {
    margin: 12% 5%;
    scroll-margin-top: -150px;
}

.store {
    position: relative;
    display: flex;
    align-items: center;
    padding: 5% 0;
    border-bottom: #d8d8d8 2px dotted;
}

.store img {
    width: 30%;
    margin: 0;
}

.store p{
    padding-left: 5%;
    font-size: 15px;
}

.store b {
    font-size: 18px;
}

.store_btn {
    width: 10% !important;
    position: absolute;
    right: 0;
    top: 40%;
}

.store div:last-of-type {
    border-bottom: none;
}

@media screen and (min-width: 767px){
    .store_wrapper {
        scroll-margin-top: -300px;
        max-width: 700px;
        margin: 0 auto 5%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .store_wrapper div:nth-of-type(5),
    .store_wrapper div:nth-of-type(6){
        border-bottom: none;
    }
    .store {
        width: 47%;
        padding: 2% 0 2%;
    }
    .store p {
        font-size: 12px;
    }
    .store_btn {
        width: 8% !important;
    }
}

/*フッター*/
footer {
    background-image: linear-gradient(90deg, rgba(89, 203, 214, 1), rgba(139, 209, 114, 1));
    padding: 10% 5% 30%;
}

footer div {
    padding-bottom: 3%;
}

footer div,
footer p{
    color: #fff;
    font-size: 12px;
}

footer h2 {
    font-size: 20px;
    color: #fff;
    letter-spacing: .4vh;
}

footer div p:first-of-type {
    color: #47484a;
    background-color: #fff;
    border-radius: 5px;
    display: inline;
    padding: 1% 2%;
}

footer table th {
    width: 18%;
    text-align: left;
}

footer table th {
    vertical-align: top;
}

@media screen and (min-width: 767px){

    footer div p:first-of-type {
        padding: 2px 5px;
        height: 20px;
    }
    footer {
        padding: 3% 20% 5%;
        text-align: center;
    }
    footer h2 {
        font-size: 18px;
        width: 100%;
        justify-content: space-between;
    }
    footer div {
        width: 60%;
        margin-left: 23%;
        display: flex;
        gap: 1%;
        text-align: left;
        padding-bottom: 1%;
    }
    footer table {
        width: 100%;
    }
}
/*追従 */
.follow {
    width: 100%;
    position: fixed;
    z-index: 100;
    bottom: 0;
    background-color: #fff;
    padding: 2% 5%;
}

.follow_wrapper {
    width: 100%;
    display: flex;
    gap: 2%;
    justify-content:center;
    align-items: center;
}

.follow_wrapper img {
    width: 50%;
    object-fit: contain;
}

.follow01 img{
    height: 60px;
    width: auto;
}

.follow01,
.follow02 {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.follow01.show,
.follow02.show {
    opacity: 1;
}

@media screen and (min-width:767px){
    .follow {
        padding:0;
        background: none;
    }
    .follow_wrapper {
        width: 20%;
        flex-wrap: wrap;
        position: absolute;
        right: 1%;
        bottom: 1%;
        justify-content: end;
    }
    .follow01 img {
        height: 70px;
    }
}

/*内容確認ページ*/
.reserve_wrapper {
     background-image: linear-gradient(142deg, rgba(89, 203, 214, 1), rgba(139, 209, 114, 1));
    padding: 10% 5%;
}

.reserve_box {
    background-color: #fff;
    padding: 10% 5%;
    border-radius: 20px;
}

.reserve_box h1 {
    text-align: center;
    font-size: 20px;
    border-radius: 20px;
    padding-bottom: 5%;
}

.reserve_box h2 {
    font-size: 15px;
    padding-top: 5%;
}

.reserve_box .mark {
    background-color: rgb(255 249 161 / 48%);
}

.reserve_box table {
    text-align: left;
}

/*プライバシーポリシー*/
.policy {
    width: 100%;
    padding: 15px 0;
}

.policy_wrapper {
    width: 90%;
    margin: 0 auto;
}

.policy_wrapper h2 {
    font-size: 20px;
    margin: 10% 0 5%;
    background-image: linear-gradient(142deg, rgba(89, 203, 214, 1), rgba(139, 209, 114, 1));
    color: #fff;
    padding: 0 5px;
    font-weight: normal;
}

.policy_wrapper h3 {
    color: #47484a;
}

.policy_wrapper p {
    margin-bottom: 5%;
}

.policy_bottom {
    text-align: right;
}

.policy_wrapper .policy_bottom p{
    margin-bottom: 0;
    font-size: 13px;
}

@media screen and (min-width: 767px){
    .policy_wrapper {
        max-width: 1000px;
    }
    
    .policy_wrapper h2 {
        font-size: 27px;
        margin: 5% 0 2%;
        padding: 0 10px;
    }

    .policy_wrapper p {
       margin-bottom: 2%;
    }

    .policy_wrapper .policy_bottom p{
        font-size: 15px;
    }
}