html {
    scroll-behavior: smooth;  /* 全体にスムーススクロールを適用 */
    scroll-padding-top: 0px;
}

* {
    margin: 0;
    padding: 0;
}

section {
    padding-top: 197px;
}

.container {
    position: relative;
    flex-direction: column; /* 縦方向に並べる */
    text-align: center;/*テキストの配置を中央に*/
}

.section-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; /*アニメーションを外に置いとく用*/
}

.iphone-container{
    display: none;
}

.pc-countainer{
    display:block;
}

.row-container-about {
    display: flex; 
    flex-direction: row; /* 横方向に並べる */
    align-items: center; /* 縦の中央揃え */
    justify-content: center; /* 水平方向の中央揃え */
    padding: 20px 10% 30px 13%;
}

.cases-container {
    display: flex; 
    flex-direction: column; /* 縦方向に並べる */
    text-align: left;
    padding: 20px 10% 30px 13%;
}

.row-container-cases{
    display: flex; 
    flex-direction: row; /* 横方向に並べる */
    width: 100%;
}

/*casesのslide画像用*/
.slide-container {
    flex: 0 0 calc(100% - 10px); /* 横幅を少し小さくする（20px隙間分） */
    margin-right:10px; /* 右サイドに余白 */
    box-sizing: border-box;
}
/*アイテムプレビュー用*/
.item-container {
    flex: 0 0 calc(100% - 10px); /* 横幅を少し小さくする（20px隙間分） */
    margin-right:10px; /* 右サイドに余白 */
    box-sizing: border-box;
  }

.culumn-container-benefits {
    display: flex; 
    flex-direction: column; 
    padding: 30px 5% 30px 13%;
}

.culumn-container-plan {
    display: flex; 
    flex-direction: column; /* 縦方向に並べる */
    text-align: left;
    padding: 0 20% 200px 20%;
}
/*culumn-container-plan内の最初の要素だけ下にmarginを入れる*/
.culumn-container-plan > *:first-child {
    margin-bottom: 10px;
}


.culumn-container-end {
    display: flex; 
    flex-direction: column; /* 縦方向に並べる */
    padding: 57px 10% 30px 10%;
}

.row-container-title{
    display: flex; 
    flex-direction: row; /* 横方向に並べる */
    width: 100%;
    height: 60px;
}

/* 左からスライド用 */
.row-container.slide-in-left {
    opacity: 0;
    position: relative;
    transition: all 1s ease-out;
    transform: translateX(-100px); /* ←左からスライド */
}

.row-container.slide-in-left.active {
    transform: translateX(0);
    opacity: 1;
}

/* 右からスライド用 */
.row-container.slide-in-right {
    opacity: 0;
    position: relative;
    transition: all 1s ease-out;
    transform: translateX(100px); /* 右からスライド */
}

.row-container.slide-in-right.active {
    transform: translateX(0);
    opacity: 1;
}

.amount-container{
    display: flex; 
    flex-direction: row; /* 横方向に並べる */
    align-items: center; /* 縦の中央揃え */
    text-align: center; /*文字を中央揃え*/
    justify-content: space-around; /*均等なスペースに配置*/
    gap:5%;
    padding: 20px 20% 30px 20%;
}

/*最後のボタン用*/
.btn-container{
    display: flex; 
    flex-direction: row; /* 横方向に並べる */
    align-items: center; /* 縦の中央揃え */
    text-align: center; /*文字を中央揃え*/
    justify-content: space-around; /*均等なスペースに配置*/
    margin-bottom: 5px;
    gap:5%;
}

/* 背景動画の設定 */
.video-container {
    width: 100%;
    height: 100vh; /* 縦画面いっぱいに設定 */
    overflow: hidden; /* はみ出た部分を隠す */
    z-index: -2; /* 背景として後ろに配置 */
    background-color: black;/
}

#bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover; /* 画面いっぱいにフィット */
}

/* 映像を暗くするためのオーバーレイ ※必要ならば */
.video-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* オーバーレイがクリックを邪魔しないように */
}

/*背景画像の設定*/
.bg-container-white {
    width: 100%; /* 横幅いっぱい */
    background-image: url('../image/FW_weiss_03_50.jpg'); /* 背景画像 */
    background-size: contain; /* 横幅を100%にフィット */
    background-repeat: repeat-y; /* 縦に連続させる */
    background-position: center top; /* 画像を中央寄せして上から開始 */
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    z-index: -2;
}

.bg-container-black {
    width: 100%; /* 横幅いっぱい */
    background-image: url('../image/FW_schwrz_02.jpg'); /* 背景画像 */
    background-size: cover; /* 横幅を100%にフィット */
    background-repeat: repeat-y; /* 縦に連続させる */
    background-position: center top; /* 画像を中央寄せして上から開始 */
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    z-index: -2;
}

/*真ん中のロゴ*/
.dfmlogo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 画面の中央に配置 */
    width: 40%; /* ロゴサイズ調整 */
    height: auto;
    z-index: 1; /* 背景動画より前面に */
}


.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 5% 0 5%; /* 左右10%の余白 */
    display: flex; /* ロゴとテキストを横並びに */
    align-items: center;
    justify-content: space-between; /* 両端寄せ */
    z-index: 10;
    transition: background-color 0.3s;
    box-sizing: border-box; /*画面をはみ出さないようにする*/
    background-color: rgba(0, 0, 0, 1); /* メニューの背景色 */
}

.menu.active {
    background-color: rgba(0, 0, 0, 1); /* メニューの背景色 */
}

.menu-left {
    display: flex;
    align-items: center;
}

.menu-right {
    display: flex;
    gap: 40px;
}

.modal{
    display: none;
}

.menulogo {
    width: 160px; /* 適切なサイズに */
    height: auto;
    display: block; /* 余計な隙間をなくす */
    padding-top: 20px;
    margin-bottom: 10px; /*背景画像の薄い黒用*/
}

/*右のjoiningボタン*/
.menu-button{
    position: fixed;
    top: 30px;
    right: 0px;
    width: 50px; /* ボタンのサイズ */
    height: auto;
    z-index: 10; /* メニューより前面に */
}

.menu-button:hover{
    transform: scale(1.1); /* ホバー時に1.1倍の大きさに */
}

/*  タイトル画像 */
.title-img {
    height: 70%;
    display: block;
}

/*左ラインの設定*/
.line-container{
    position: absolute;
    top:0;
    width: 15%;
    height: 100%;
    z-index: 1;
}

.left-line-up{
    position: relative;
    background-color:#3866F3;
    border: none;
    top:0;
    left: 49.5%; 
    width: 2px; /* 縦線の太さ */  
    height: 202px;
    margin-bottom: 8px;
}

.left-line-bottom{
    position: relative;
    background-color:#3866F3;
    border: none;
    left: 49.5%; 
    width: 2px; /* 縦線の太さ */ 
    margin-bottom: 10px;
    height: 73%;
}

.left-line-top-bottom{
    position: relative;
    background-color:#3866F3;
    border: none;
    left: 49.5%; 
    width: 2px; /* 縦線の太さ */ 
    margin-top: 30%; 
}

.left-line-about-bottom,
.left-line-cases-bottom,
.left-line-benefits-bottom,
.left-line-plan-bottom{
    position: relative;
    background-color:#3866F3;
    border: none;
    left: 49.5%; 
    width: 2px; /* 縦線の太さ */  
}

/*最初の左側のライン画像のトップを指定*/
.img-wrapper {
    position: relative;
    top: 11%;
}
/*左側のラインにある画像*/
.left-line-img{
    max-width: 23px;
    position: relative;
    margin: 0 auto;
}

/*タイトルの横についてる左線*/
.side-line-left{
    position: relative;
    background-color:#3866F3;
    border: none;
    top:40%;
    left: 0; 
    width: 3%; /* 横線の長さ */  
    height: 2px; /* 横線の太さ */ 
    margin-left: 9%;
    margin-right:1%
}

/*タイトルの横についてる右線*/
.side-line-right{
    position: relative;
    background-color:#3866F3;
    border: none;
    top:40%;
    width: 80%; /* 横線の長さ */  
    height: 2px; /* 横線の太さ */ 
    margin-left: 1%;
    z-index: 2;
}
/*タイトルの右側にある半分の★*/
.side-img{
    position: absolute;
    right:0;
    top:210px;
    height: 23px;
    z-index: 1;
}

.about-img {
    display: block;
    margin: 0 auto;
    width: 40%;
    position: relative; /* topが効くように追加 */
    top: -100px;           /* 最初は上にズラす */
    opacity: 0;            /* 透明スタート */
    transition: all 1s ease-out;
}

.about-img.active {
    top: 0;                /* 元の位置へ降りる */
    opacity: 1;            /* しっかり表示 */
}

.about-text{
    text-align: left; /* テキストを左揃え */
    width: 100%; /* 8割の幅を取る */
    position: relative; /*leftが効くように追加*/
    right: -100px;       /* 最初は左にズレる */
    opacity: 0;         /* 透明スタート */
    transition: all 1s ease-out;
}

.about-text.active {
    right: 0;            /* 元の位置に戻る */
    opacity: 1;         /* しっかり表示 */
}

.cases-33 {
    width: 33%;
    padding: 0 20px;
}
.cases-wrapper{
    position: relative;
    width: 100%;
}
/*
.overlay-text{
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%; 
    padding: 8px;
    color: white;
    font-size: 12px;
    border-radius: 0 0 8px 8px;
    box-sizing: border-box;
    line-height: 1.4;
    word-wrap: break-word;
}
*/

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    color: white;
    box-sizing: border-box;
    border-radius: 0 0 8px 8px;
}

.overlay-title {
    font-weight: bold;
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 20px;
    line-height: 1.4;
}

.overlay-body {
    font-weight: bold;
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 12px;
    line-height: 1.6;
    text-align: justify;
    word-wrap: break-word;
}

.row-container-cases img {
    width: 100%;
    height: auto;
    opacity: 0; 
    transition: all 1s ease-out;
}
.row-container-cases img.active{
    opacity: 1; 
}
.cases-text {
    width: 33%;
    padding: 0px 20px 0 60px;
    height: auto;
    margin-top: 10px;
    opacity: 0; 
    transition: all 0.5s ease-out;
}

.cases-text.active {
    padding: 0 20px;/*テキストを右から出す用*/
    opacity: 1; 
}

.cases-text-blue {
    font-size: 20px;
    font-weight: bold;
    color: #3866F3;
  }

.cases-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #3866F3;
    margin-top: 10px;
    margin-bottom: 20px;
}
.image-wrapper {
    position: relative;
    width: 100%;
  }

/*slide画像用*/
.slider-wrapper {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease;
}

.slider-track img {
    width: 100%;
    flex-shrink: 0;
    display: block;
    opacity: 0;/* 透明スタート */
    transition: all 1s ease-out;
}

.slider-track img.active {
    opacity: 1;/*表示*/
}


.slider-nav {
    display: flex;
    flex-wrap: nowrap;/*  改行させない */
    overflow-x: auto;/*  横スクロール可能にする */
    padding-bottom: 5px;/* 下に少し余白（スクロールバー回避） */
    -webkit-overflow-scrolling: touch; /*  スマホでスムーズスクロール */
    scrollbar-width: none;/* Firefox用：スクロールバー非表示（任意） */
    justify-content: left;
    margin-top: 10px;
    gap: 10px;
    counter-reset: slide; /*ボタンのカウントをリセットし進める*/
}

.slider-nav::-webkit-scrollbar {
    display: none;/* Chrome/Safari用：スクロールバー非表示（任意） */
}

/*スライド用文字*/
.slider-nav button {
    position: relative;
    background: none;
    border: none;
    margin: 0;
    white-space: nowrap;/*1行に固定*/
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold; /* 太字にする */
    font-size: 14px;
    color: #999999;
    cursor: pointer;
    text-decoration: none; /*文字の下のラインを削除*/
    padding-top: 24px;
    counter-increment: slide; /*ボタンのカウント用*/
}

/* 左上の番号 */
.slider-nav button::before {
    position: absolute;
    top: 4px;
    left: 0; /*右にずらしたい場合いれる*/
    font-size: 12px;
    font-weight: bold;
    color: #999999;
    content: counter(slide, decimal-leading-zero); /* "01", "02", "03" にする */
  }

/* 下の線 */
.slider-nav button::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #999999;
    margin-top: 5px;
    margin-bottom: 10px;
}

/* ボタンを押した時の色 */
.slider-nav button.active {
    color: black;
}
.slider-nav button.active::before {
    color: #3866F3;
}
.slider-nav button.active::after {
    background-color: #3866F3;
}

.benefits-row{
    display: flex; 
    flex-direction: row; /* 横方向に並べる */
    padding-bottom: 30px;
}

.benefits-col3{
    width: 33%;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start; /* 縦揃え */
}

.benefits-picture{
    width: 35%;
    align-items:flex-start;
}

.benefits-picture img {
    max-width: 100%;
    height: auto;
    opacity: 0;/* 透明スタート */
    transition: all 2s ease-out;
}

.benefits-picture img.active {
    opacity: 1;
}


.benefits-text{
    width: 50%;
    padding-left: 45px;
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 18px;
    font-weight: bold; 
    line-height: 1.2; 
    text-align: left;
    opacity: 0;/* 透明スタート */
    transition: all 0.5s ease-out;
    color: #3866F3;
}

.benefits-text.active{
    padding-left: 15px;
    opacity: 1;
}

/*アイテムプレビュー用*/
.item-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.item-track {
    display: flex;
    width: 100%;
  }

.item-track img {
    width: 100%;
    display: block;
    opacity: 0;/* 透明スタート */
    transition: all 1s ease;
}

.item-track img.active{
    opacity: 1;
}

.item-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px; /* 矢印画像のサイズ */
    height: auto;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    z-index: 5; /* 画像の上に表示させる */
}

.item-arrow.hidden {
    display: none;
  }
  
.item-arrow:hover {
    opacity: 1;
}
  
.item-arrow.left {
    left: 10px;
}
  
.item-arrow.right {
    right: 10px;
}

/*PLAN金額表示のやつ*/
.amount {
    width: 50%; /* ボタンの幅を統一 */
    height: auto; /* ボタンの高さを統一 */
    display: flex; 
    flex-direction: column; /* 縦方向に並べる */
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    text-align: center;
    color: rgb(0, 0, 0);
    background-color: #ffffff;
    border: 1px solid #000;
    outline: none; /* フォーカス時の枠線を削除 */
    text-decoration: none; /*文字の下のラインを削除*/
    border-radius: 10px; /*角を取る*/
    font-size: 30px;
    font-weight: bold;
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    line-height: 1.2; /* 行間を狭くする */
    opacity: 0;/* 透明スタート */
    transition: all 1s ease-out;
    padding: 20px 0;
}

.amount.active {
    opacity: 1;
}

.plan-table {
    width: 100%;
    margin: 0 auto; /* 中央揃え */
    border-collapse: collapse; /* セルの枠を統一 */
    table-layout: fixed; /* ← これで列幅が均等になる */
}


.plan-table img{
    width: 40%;
    max-width: 30px;
}

.plan-table th, .plan-table td {
    height: 60px;
    padding: 10px 10px;
    text-align: left;
    border-bottom: 1px solid #000; /* 各行の下に線を引く */
    line-height: 1.2; /* 行間を狭くする */
    opacity: 0;/* 透明スタート */
    transition: all 1s ease-out;
}

.plan-table th.active, .plan-table td.active {
    opacity: 1;
}

/*縦の境界線をPLANの場所に入れないために追加*/
.plan-table td{
    border-right: 1px dashed #999999; /* 縦の境界線を点線に */
}

/* PLANのヘッダー */
.plan-table th:nth-child(1) {
    width: 55%;
    background-color: #cccccc; 
    color: rgb(0, 0, 0);
    font-size: 30px;
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold; /* 太字にする */
    text-align: center; /* 中央揃え */
}

/* S PLANのヘッダー */
.plan-table th:nth-child(2) {
    width: 22.5%;
    background-color: #3866f3; 
    color: white;
    font-size: 30px;
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold; /* 太字にする */
    text-align: center; /* 中央揃え */
}

/* A PLANのヘッダー */
.plan-table th:nth-child(3) {
    width: 22.5%;
    background-color: #333333;
    color: white;
    font-size: 30px;
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: bold; /* 太字にする */
    text-align: center; /* 中央揃え */
}

.plan-table td:nth-child(1) {
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

/*チェックとハイフンを中央に表示*/
.plan-table td:nth-child(2) img,
.plan-table td:nth-child(3) img {
    display: block;
    margin: 0 auto; /* 画像を中央配置 */
}

.plan-text{
    display: flex;
    flex-direction: row; /* 横方向に並べる */
    align-items: center;
    justify-content: center;
    gap:5px
}

/*画像＋文字のやつだけmarginを無くしてgapを効かせる*/
.plan-table td .plan-text img {
    margin: 0;
}


.plan-text span{
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    white-space: nowrap; /* テキストが折り返されないように */
}


.plan-table th:last-child, 
.plan-table td:last-child {
    border-right: none; /* 最後の列の右側の線を消す */
}

.plan-img{
width: 80%;
margin: 0 auto; /* 画像を中央配置 */
position: relative; /* topが効くように追加 */
opacity: 0;            /* 透明スタート */
transition: all 2s ease-out;
}

.plan-img.active {
    opacity: 1;            /* しっかり表示 */
}

/*PLAN内の数字用*/
.flex-td {
    display: flex;
    align-items: center;
    gap: 15px; /* スペース調整 */
}

/*PLAN内の文字用*/
.text-part {
    display: flex;
    flex-direction: column;
}

.btn {
    width: 50%; /* ボタンの幅を統一 */
    height: 100px; /* ボタンの高さを統一 */
    display: flex; 
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    text-align: center;
    color: white;
    border: none; /* 枠線を削除 */
    outline: none; /* フォーカス時の枠線を削除 */
    text-decoration: none; /*文字の下のラインを削除*/
    border-radius: 50px; /*角を取る*/
    cursor: pointer; /*カーソル合わした時指に*/
    font-size: 28px;
    font-weight: bold;
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    transition: transform 0.2s ease-in-out; /* なめらかなアニメーション */
    margin-bottom: 50px;
}
.button {
    width: 100%; /* ボタンの幅を統一 */
    height: 100px; /* ボタンの高さを統一 */
    display: flex; 
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 横方向の中央揃え */
    text-align: center;
    color: white;
    border: none; /* 枠線を削除 */
    outline: none; /* フォーカス時の枠線を削除 */
    text-decoration: none; /*文字の下のラインを削除*/
    border-radius: 50px; /*角を取る*/
    cursor: pointer; /*カーソル合わした時指に*/
    font-size: 28px;
    font-weight: bold;
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    transition: transform 0.2s ease-in-out; /* なめらかなアニメーション */
    margin-bottom: 50px;
}

.btn:hover,
.button:hover{
    transform: scale(1.1); /* ホバー時に1.1倍の大きさに */
}

.Scolor{
    color: #3866f3;
}

.Acolor{
    color:#333333;
}

.contact-btn{
    background-color: #3866f3;
}

.apply-btn{
    background-color:#333333;
}


.menu-img{
    height: 14px;
    width: auto;
}

.menu-img:hover{
    transform: scale(1.1); /* ホバー時に1.1倍の大きさに */
}

.menu-text{
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #fff; /* テキストの色を白に */
    text-decoration: none; /*文字の下のラインを削除*/
}

.menu-text:hover{
    transform: scale(1.1); /* ホバー時に1.1倍の大きさに */
}

.gothic6 {
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 6px;
    font-weight: bold;
    margin: 0;
}

.gothic10 {
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.footer-gothic14{
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

.cases-gothic16 {
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    word-wrap: break-word;
    margin-top: 20px;
}

.item-gothic{
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    color: #000000;
    text-align: left;
}

.benefits-gothic28{
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    color: #3866F3;
}

.gothic14{
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 75%;
    font-weight: bold;
    margin-top: 5px;
    color: #000000;
    text-align: left;
}

.plan-gothic18{
    display: none;
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.thank-gothic18{
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.gothic20 {
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.cases-gothic22 {
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.gothic28 {
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 28px;
    font-weight: bold;
    margin: 0;
}

.gothic32 {
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 32px;
    font-weight: bold;
    color: #3866F3;
    margin: 0;
}

.plan-gothic12 {
    display:flex; 
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #3866F3;
    margin: 0;
    flex-direction: row;
}

.plan-gothic-up {
    font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 30px 20% 0 20%;
}

    .plan-gothic-amount{
        font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
        font-weight: bold;
        font-size: 30px;
    }

    .gothic12{
        font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
        font-weight: bold;
        font-size:  16px;
    }