@charset "utf-8";

/* Color Variables */
:root {
    --primary-blue: #011a53;
    --primary-red: #ff6b6b;
    --gold: #c8a415;
    --text-dark: #2c3e50;
    --text-gray: #8492a6;
    --bg-light: #f5f7fa;
    --h-blue: #012880
}

/* Base Styles */
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    color: var(--text-dark);
    background: var(--bg-light);
    letter-spacing: .01em;
    font-weight: 400;
}

h1, h2 {
    padding: 0 0 0 2%;
    font-size: 4rem;
    border: unset;
    border-left: 5px solid var(--h-blue);
    margin: 10% 0 5% 0;
    color: var(--h-blue);
    font-weight: 900;
}

h1.info {
    border: none;
    font-size: 4.6rem;
}

h3.name {
    color: unset;
    border: none;
}

a {
    color: inherit;
}
/* head */
#service-header-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    }
#service-header-inner .logo {

}
#service-header-inner .logo img {
    height: 50px;
    display: inline-block;
    margin: 2rem;
}
.dkan-plan-link {
}
.dkan-plan-link a {
    color: #fff;
    font-size: 1.6rem;
    margin: 0 20px;
}

/* foot */
.link-section {
    margin: 5% auto;
    display: flex;
    flex-direction: column;
    width: 80%;
}
.link-section a {
    margin: 3% 0;
    width: fit-content;
}
/* contents1 */
.pc-dkan-plan-1 {
    background-color: #011a53;
    width: 100%;
    display: block;
}
.pc-dkan-plan-1-contents {
    color: white;
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px;
    padding-top: 6%;
}
.left-parts {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
}
.left-parts p {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 900;
    margin-bottom: 40px;
}
.right-parts {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
    margin: 15px;
}
.right-parts img{
    width: 100%;
}
.dkan-plan-btn {
    text-align: center;
    margin: 50px 10px 10px 10px;
}
.dkan-plan-btn a {
    background-color: var(--primary-red);
    color: white;
    border-radius: 5px;
    font-size: 4rem;
    font-weight: bold;
    padding: 10px 15%;
}
.pc-dkan-plan-2 {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 10px;
}
.pc-dkan-plan-2-contents {
    margin: 0 auto;
    padding: 5% 10%;
}
.pc-dkan-plan-2-parts {
    display: inline-block;
    width: 27%;
    border: 2px solid #011a53;
    border-radius: 10px;
    margin: 15px;
    height: 660px;
    padding: 10px;
    box-shadow: 0 6px 4px rgba(0,0,0,0.26);
    vertical-align: middle;
}
.pc-dkan-plan-2-parts h2,h3,h4,h5,h6,h7 {
    font-size: 2.2rem;
    margin: 1.2rem 0 0 0;
    letter-spacing: unset;
    border-left: unset;
    border-bottom: unset;
    padding: unset;
}
p.price {
    font-size: 2.3rem;
    color: #011a53;
    font-weight: bold;
    text-align: center;
}
.price span {
    font-size: 1.7rem;
    margin: 3px;
}
.pc-dkan-plan-2-parts ul {
    border-top: 1px solid rgb(204, 204, 204);
    padding-top: 15px;
    height: 40%;
    position: relative;
}
.pc-dkan-plan-2-parts li {
    text-align: left;
    font-size: 1.5rem;
}
.dkan-plan-btn2 {
    text-align: center;
    margin: 40px 10px 10px 10px;
}
.dkan-plan-btn2 a {
    background-color: #001c52;
    color: white;
    border-radius: 5px;
    font-size: 2rem;
    font-weight: bold;
    padding: 10px 80px;
}
.dkan-only li {
    color: #001c52;
    font-weight: 600;
}
.pc-dkan-plan-2-parts2 {
    display: inline-block;
    width: 43%;
    border: 2px solid #011a53;
    border-radius: 10px;
    margin: 15px;
    height: 220px;
    padding: 10px;
    vertical-align: middle;
    background-color: #011a5314;
}
.pc-dkan-plan-2-parts2 h5 {
    font-size: 2.4rem;
    margin: 1.2rem 0 0 0;
}
.pc-dkan-plan-2-parts2 h6 {
    font-size: 2.4rem;
    margin: 1.2rem 0 0 0;
}
/* 固定 */
header {
    position: fixed;
    background-color: rgba(1, 26, 83, 0.88);
    width: 100%;
}
p {
    margin: 3%;
}
/*アコーディオン*/
/*ボックス全体*/
.accbox {
    margin: 2em auto;
    padding: 0;
    width: 90%;
    max-width: 1250px;
}

/*ラベル*/
.accbox label {
display: block;
    margin: 1.5px 0;
    padding: 13px 12px;
    color: #011a53;
    font-weight: bold;
    font-size: 2rem;
    background: #e6e6e6;
    cursor: pointer;
    transition: all 0.5s;
}

/*アイコンを表示*/
.accbox label:before {
    content: '+';
    padding-right: 8px;
}

/*ラベルホバー時*/
.accbox label:hover {
    background :#e6e6e6;
}

/*チェックは隠す*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s;
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    font-size: 13px;
    background: #fff5eb;
    opacity: 1;
}

.accbox .accshow p {
    margin: 15px 10px;
    font-size: 1.5rem;
}
/*アイコンを入れ替える*/
.cssacc:checked + label:before {
    content: '-';
}
.tel{
text-align: center;
    margin-bottom: 6%;
}
/*ボタンアニメ*/
.dkan-plan-btn a:hover {
    background-color: #fff;
    border-color: #011a53;
    color: #011a53;
}
.dkan-plan-btn a,
.dkan-plan-btn a::before,
.dkan-plan-btn a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.dkan-plan-btn2 a:hover {
    background-color: #e6e6e6;
    border: 1px solid #011a53;
    color: #011a53;
}
.dkan-plan-btn2 a,
.dkan-plan-btn2 a::before,
.dkan-plan-btn2 a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.faqbtn {
    text-align: center;
    margin: 3% auto;
    padding: 3%;
}
.faqbtn a {
    color: #011a53;
    border: 2px solid #011a53;
    border-radius: 30px;
    width: 100%;
    padding: 15px;
    font-size: 2rem;
    margin: 15px;
}
.faqbtn a:hover {
  border-style: dashed;
}
#plan-free-text {
    background-color: red;
    text-align: center;
    color: white;
    width: 140px;
    margin: 10px auto;
    border-radius: 30px;
    font-size: 2.1rem;
    position: absolute;
    margin-top: -30px;
    font-weight: bold;
}
.call-center {
    text-align: center;
    display: block;
    width: 85%;
    margin: 10px auto;
}
.call-center img {
    width: 100%;
}
p.paytext {
    font-size: 2rem;
    text-align: center;
    margin-top: 10px;
}
p.free-text {
    font-size: 1.2rem;
    text-align: center;
    padding: 8px;
    color: #666;
}
.free-text a {
    text-decoration: underline;
}
p.free-text2 {
    font-size: 1.5rem;
    height: 10%;
    display: block;
    color: #011a53;
    margin: 0 10px;
    padding: 10px;
    border-top: 1px solid rgb(204, 204, 204);
}
.cashbanner {
    text-align: center;
    margin: 20px 0;
}
.cashbanner img {
    max-height: 100px;
    max-width: 495px;
    margin: 0 10px;
}
.houjin {
    display: block;
}
.pc-dkan-plan-2-parts2 h7 {
    font-weight: bold;
    font-size: 2.4rem;
}
.dkan-houjin-btn {
    text-align: center;
}
.balloon1-top {
    position: relative;
    display: block;
    margin: 10px auto;
    padding: 7px 10px;
    min-width: 120px;
    width: 27%;
    color: #fff;
    font-size: 16px;
    background: #ff5e00;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 26%);
}

.balloon1-top:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #ff5e00;
}

.balloon1-top p {
    margin: 0;
    padding: 0;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
}
.plan-free-text2 {
    background-color: red;
    text-align: center;
    color: white;
    width: 135px;
    margin: 10px auto;
    /* border-radius: 30px; */
    font-size: 1.5rem;
    position: absolute;
    margin-top: -24px;
    margin-left: 155px;
    font-weight: bold;
    padding: 1px 5px;
}
.juraca {
    height: 10%;
    font-size: 1.5rem;
    text-align: center;
}
h8#contact {
    margin: 3%;
    padding: 0 0 0 2%;
    font-size: 2.3rem;
    border-left: 5px solid #011a53;
    text-align: left;
    font-weight: bold;
}
.mainbtn{
  background: var(--primary-red);
  color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
  transition: all 0.3s ease;
}
.subbtn{
    background: var(--text-gray);
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
    transition: all 0.3s ease;
}
.header-btn {
    padding: 5px 10px;
    text-align: center;
    background: var(--primary-red);
    color: #fff;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.3);
}
.header-btn:hover,
.mainbtn:hover{
    background-color: #ffa9a9;
}
.subbtn:hover{
    background-color: #b3c5df;
}
/* Plan Comparison Table */
.plan-top table {
    border-collapse: collapse;
    width: 100%;
    max-width: 600px;
    margin: 10% auto;
}

.plan-top th,
.plan-top td {
    border: 1px solid #ddd;
    padding: 12px 5px;
    text-align: center;
}

.plan-top th {
    background-color: #012880;
    color: white;
    font-weight: bold;
    position: relative;
    font-size: 1.6rem;
}

.plan-top tr {
    background-color: white;
}

.plan-top .check {
    color: #2ecc71;
    font-size: 1.2em;
    font-weight: 900;
}

.plan-top .cross {
    color: #e74c3c;
    font-size: 1.2em;
    font-weight: 900;
}

.plan-top .tri {
    color: #757575;
    font-size: 1.2em;
    font-weight: 900;
    position: relative;
}

.kome {
    font-size: 1.2rem;
    position: absolute;
    left: 25px;
    display: inline-block;
}

.plan-top .recommended {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    white-space: nowrap;
}

.plan-top td a {
    background: var(--primary-red);
    color: #fff;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 1.6rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
    transition: all 0.3s ease;
}
.plan-top {
    max-width: 1170px;
    margin: 0 auto;
}
/* Plan Cards Detailed Styles */
.pc-plans {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
}
.plans {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plans .name {
    font-size: 2rem;
    margin: 3% 0;
    font-weight: 900;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 32px;
    line-height: 1.3;
}

.plans .popular-badge {
    background-color: var(--gold);
    color: white;
    font-size: 1.4rem;
    padding: 3px 10px;
    font-weight: normal;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    height: 20px;
}

/* Plan Features List */
.plans ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.plans ul li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.plans ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Pricing Display */
.plans .price {
    font-size: 1.4rem;
    color: #333;
    text-align: right;
    padding-top: 16px;
    display: flex;
    border-top: 1px solid #eee;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
}

.plans .price span {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 7px 0 0px;
}

.plans .price .original-price {
    display: inline-block;
    font-size: 1rem;
    color: var(--text-gray);
    position: relative;
    margin-right: 10px;
}

.original-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #757575;
}

.plans .price .original-price span {
    font-size: 1.4rem;
    margin-right: 2px;
}

.plans .price .discount-price {
    display: inline-block;
    font-size: 1.4rem;
}

.plans .price .discount-price span {
    font-size: 2rem;
    font-weight: bold;
    margin-right: 4px;
    color: var(--primary-red);
}

.juraca {
    display: flex;
    align-items: center;
    text-decoration: underline;
    color: #012880;
}
.left-parts p.sub {
    font-size: 3rem;
}

/* Action Buttons */
.try-button {
    background-color: var(--primary-red);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 5px 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1.6rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
}
a.houjin-link {
    display: block;
    color: #fff;
    padding: 5px 25px 5px 15px;
    border: 1px solid #fff;
    border-radius: 5px;
    text-align: center;
    width: 75%;
    margin: 3% auto;
    position: relative;
    font-size: 1.4rem;
    margin-top: 7%;
}
a.houjin-link::before,
a.category-cell::before,{
    content: ">";
    position: absolute;
    right: 10px;
}
a.price-btn {
    display: block;
    width: 55%;
    font-size: 2rem;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    font-weight: 700;
    margin: 5px auto;
    margin-top: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}
.houjin-gakusei-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.houjin-gakusei-box a {
    text-align: center;
    font-size: 1.6rem;
    width: 46%;
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid var(--text-dark);
    box-sizing: border-box;
    position: relative;
}
.houjin-gakusei-box a::before, 
a.category-cell::before {
    content: ">";
    position: absolute;
    right: 5px;
    top: 50%; /* 上下中央揃え */
    transform: translateY(-50%); /* 自身の高さの半分だけ上に移動して正確に中央に配置 */
}

.pricing-container {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  /* コンテナ自体の高さを指定 */
  height: 755px; /* または具体的な高さ値 */
  width: 100%;
  padding: 5px 0;
  margin: 3% 0;
}

.left-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    height: 100%;
    width: 65%;
}

/* 左側のプラン */
.pricing-left {
  flex: 1;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* 親要素の高さに合わせる */
  height: 100%;
  /* 内部のコンテンツを縦方向に配置 */
  display: flex;
  flex-direction: column;
  width: 80%;
}
.popular-badge {
  background: #DAA520;
  color: white;
  font-size: 0.8rem;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

/* 右側のコンテナ */
.right-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  /* 左側のパーツと同じ高さにする */
  height: 100%;
  width: 40%;
}

/* 右側の各プラン */
.pricing-right {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  /* flexboxを使って均等に高さを分配 */
  flex: 1;
  /* 内部のコンテンツを適切に配置 */
  display: flex;
  flex-direction: column;
  width: 80%;
}
#flow-button a {
    display: block;
    font-weight: bold;
    border: 1px solid var(--primary-blue);
    color: #fff;
    background: var(--primary-blue);
    border-radius: 10px;
    width: fit-content;
    font-size: 2rem;
    text-align: center;
    padding: 10px 25px;
    margin: 15px auto;
}
/* プラン共通のスタイル */
.plans {
  position: relative;
}

.info-block {
    margin: 10% 3%;
    display: block;
}
.info-block p {
    font-size: 2.4rem;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin: 3%;
    font-weight: 500;
    letter-spacing: .16px;
    line-height: 2;
    padding-top: 2rem;
}
.info-block p span {
    font-weight: 700;
    margin: 0 5px;
    border-bottom: 3px solid var(--gold);
}
.info-block h3 {
    border: unset;
    padding: 0;
    font-size: 3.6rem;
    font-weight: 900;
    color: var(--text-dark);
}
.info-block img {
    margin: 5% auto;
    padding: 3%;
    width: 90%;
    max-height: 300px;
    object-fit: contain;
    display: block;  
}
.plan-pc-box {
    padding: 0 10%;
    margin-top: 15%;
}
.plan-pc-box p{
    font-size: 2.4rem;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin: 3%;
    font-weight: 500;
    letter-spacing: .16px;
    line-height: 2;
}
.mybox-box {
    width: 90%;
    margin: 15px auto;
    display: flex;
    align-items: center;
}
.mybox-box img {
    /* display: inline-block; */
    height: 50px;
    width: 50px;
    margin: 0;
    vertical-align: middle;
    padding: 10px;
}
.mybox-box p {
    display: inline-block;
    vertical-align: middle;
    font-size: 2.4rem;
    padding: 10px;
    width: fit-content;
}
.info-block ul {
    width: 75%;
    display: block;
    margin: 0 auto;
}
.info-block li{
    padding: 8px 0;
    font-weight: 500;
    letter-spacing: .16px;
    line-height: 2;
    font-size: 2.4rem;
}
.info-fu {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    justify-content: space-around;
    margin: 5% auto;
}
.info-fu img {
    width: 15%;
    margin: 0;
}
table.dkanplan-table {
    font-size: 2.4rem;
}
.dkanplan-table td{
    padding: 15px;
}
.dkanplan-table td p{
    display: block;
    font-size: 1.4rem;
    color: var(--text-gray);
    margin: 10px 0;
}
.dkanplan-table td span{
    font-weight: 700;
    margin: 0 5px;
    border-bottom: 3px solid var(--gold);
}
.dkanplan-table td:first-child {
    background-color: var(--text-gray);
    color: #fff;
    width: 25%;
    font-weight: 700;
}
.dkanplan-table td:nth-child(2) {
  text-align: left; /* 2列目の中央揃え */
}
.plan-pc-box img.guide-img{
    max-height: 300px;
    style="margin: 5% auto;
    padding: 3%;
    width: 90%;
    object-fit: contain;
    display: block;
    margin: 3% auto;
}
a.info-btn {
    font-size: 2rem;
    padding: 10px;
    border-radius: 30px;
    text-align: center;
    font-weight: 700;
    margin: 5px auto;
    display: block;
    width: 55%;
    max-width: 300px;
    margin-top: 30px;
}
.category {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
a.category-cell {
    width: 60%;
    margin: 1%;
    padding: 10px 15px;
    text-align: center;
    border: 1px solid var(--text-gray);
    box-sizing: border-box;
    min-height: 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
    transition: all 0.3s ease;
    position: relative;
    background: #fff;
    flex-direction: column;
    font-size: 2rem;
    font-weight: 700;
}
a.category-cell span {
    font-size: 1.6rem;
    font-weight: 100;
    margin-top: 2%;
    padding-left: 5px;
    color: var(--text-gray);
}
h2#link1,
h2#link2,
h2#link3,
h2#link4,
h2#link5,
h2#link6,
h2#link7{
    border: none;
    padding: 15% 0% 1% 1%;
    font-size: 4.2rem;
    border-bottom: 5px solid;
}
.terms p {
    font-size: 1.6rem;
}
.apply .info-block {
    margin: 10% 3%;
    display: block;
    background: #fff;
    padding: 3%;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
}
.apply .info-block img {
    width: 90%;
    max-height: unset;
    padding: 0;
    border: 2px solid var(--text-gray);
}
.apply p span {
    font-weight: 700;
    margin: 0 5px;
    border-bottom: 3px solid var(--gold);
}
.apply a.info-btn {
    max-width: 450px;
}
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
.tab-content.active {
    display: block;
    opacity: 1;
}
.tab-buttons {
    display: flex;
    border-bottom: 1px solid #ccc;
    width: 100%;
}
.tab-button {
    flex: 1;
    padding: 10px 15px;
    cursor: pointer;
    background-color: var(--bg-light);
    border: 1px solid #ccc;
    border-bottom: none;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 900;
}
.tab-button.active {
    background-color: var(--primary-blue);
    color: #fff;
    border-bottom: 2px solid var(--primary-red);
}
.tab-contents {
    padding: 15px;
}
.guide-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 3% auto;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.26);
    padding: 3%;
    border-radius: 15px;
    border: 5px solid var(--h-blue);
}
.guide-container .item {
    text-align: center;
    flex: 1;
    margin: 0 10px;
}
.guide-container .item img {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1; /* 正方形にする */
    object-fit: cover;
    border-radius: 8px;
}
.guide-container .item p {
    margin: 10px 0 0;
    font-size: 1.6rem;
    font-weight: 900;
}
.guide-container .arrow {
    font-size: 24px;
    font-weight: 900;
    color: #333;
    margin: 0 10px;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
.dkan-plan-link a {
        font-size: 1.4rem;
        margin: 0 5px;
}
.left-parts p {
   font-size: 3rem;
}
.pc-dkan-plan-1-contents {
    padding-top: 15%;
}
.left-parts p.sub {
    font-size: 2rem;
}
}
