@charset "utf-8";
#content {
    --switch-primary-color: #b60081;
    --switch-sub-primary-color: #d148a9;
    --switch-background-color: #fbf3f8;
    --switch-btn-shadow: #ccc 3px 3px 5px;
    --switch-btn-shadow-s: #ccc 2px 2px 3px;
}

body {
    color: #333;
    font-size: 16px;
    line-height: 1.5;
}

#content .topicPath {
    margin-bottom: 0;
}

#switchWrap * {
    box-sizing: border-box;
}

#switchWrap a:hover {
    transition: .2s;
}

#switchWrap #mainVisual {
    position: relative;
    background-color: #fff5e5;
    margin: 0 auto 30px;
}

#switchWrap #mainVisual .inner {
    text-align: center;
}

#switchWrap #mainVisual p {
    display: inline-block;
    margin: 30px auto 0;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: var(--switch-sub-primary-color);
    letter-spacing: 2px;
    position: relative;
}

#switchWrap #mainVisual p::before,
#switchWrap #mainVisual p::after {
    content: "";
    display: block;
    width: 4px;
    height: 36px;
    background-color: var(--switch-sub-primary-color);
    transform: rotate(-30deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    margin: auto 0; 
}

#switchWrap #mainVisual p::after {
    transform: rotate(30deg);
    left: auto;
    right: -20px;
}

#switchWrap #mainVisual p span {
    font-size: 30px;
}

#switchWrap #mainVisual .mvText img {
    display: none;
}

#switchWrap #mainVisual h1 {
    margin: 0 auto 10px;
    font-size: 48px;
    text-align: center;
    font-weight: bold;
    color: #222;
    line-height: 1.3;
}

#switchWrap #mainVisual h1 span {
    font-size: 40px;
    letter-spacing: 3px;
}

#switchWrap #mainVisual h1 .line {
    font-size: 48px;
    text-decoration-color: #fffe6f;
    text-decoration-line: underline;
    text-decoration-thickness: 24px;
    text-underline-offset: -15px;
    text-decoration-skip-ink: none;
}

#switchWrap #mainVisual img {
    margin: 0 auto -15px;
}

#switchWrap .leadText {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

#switchWrap .leadText span {
    color: var(--switch-primary-color);
}

#switchWrap .btnArea {
    margin-top: 60px;
}

#switchWrap .btnArea ul {
    display: flex;
    justify-content: center;
    gap: 40px;
}

#switchWrap .btnArea ul li {
    width: 480px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--switch-btn-shadow);
}

#switchWrap .btnArea ul a {
    padding: 23px 30px 20px 50px;
    background-color: var(--switch-primary-color);
    border-radius: 8px;
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    position: relative;
}

#switchWrap .btnArea ul a:hover {
    text-decoration: none;
    opacity: .7;
}

#switchWrap .btnArea ul a::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 32px;
    background: url(img/btn_ic01.webp) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 35px;
    margin: auto 0; 
}

#switchWrap .btnArea ul .shopBtn a {
    background-color: var(--switch-sub-primary-color);
}

#switchWrap .btnArea ul .shopBtn a::before {
    width: 32px;
    height: 26px;
    background: url(img/btn_ic02.webp) no-repeat;
    background-size: contain;
    left: 32px;
}

#switchWrap h2 {
    margin: 0 auto 50px;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
    position: relative;
}

#switchWrap h2 .largeText {
    font-size: 36px;
    text-decoration-color: #fffe8e;
    text-decoration-line: underline;
    text-decoration-thickness: 18px;
    text-underline-offset: -10px;
    text-decoration-skip-ink: none;
}

#switchWrap .noteArea li {
    font-size: 14px;
    padding-left: 14px;
    text-indent: -14px;
}

#switchWrap .leadText02 {
    margin-bottom: 30px;
    text-align: center;
}

#switchWrap .anchorLink {
   width: 1100px;
   margin: 40px auto 0;
   padding: 0 50px;
   box-sizing: border-box;
}

#switchWrap .anchorLink p {
   font-size: 18px;
   text-align: center;
}

#switchWrap .anchorLink ul {
   width: 100%;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   margin: 10px auto 0;
}

#switchWrap .anchorLink ul li {
   width: 180px;
}

#switchWrap .anchorLink ul li a {
   width: 100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   box-sizing: border-box;
   padding: 15px 10px 30px;
   background-color: #fff5e5;
   font-size: 14px;
   font-weight: bold;
   color: #f78000;
   text-align: center;
   box-shadow: 0px 3px 5px 0px rgba(86, 85, 85, 0.25);
   position: relative;
   transition: 0.2s;
   border-radius: 10px;
}

#switchWrap .anchorLink ul li a:hover {
   text-decoration: none;
   opacity: .7;
}

#switchWrap .anchorLink ul li a::after {
   content: "";
   display: block;
   width: 7px;
   height: 7px;
   border-bottom: 2px solid #f78000;
   border-right: 2px solid #f78000;
   position: absolute;
   bottom: 10px;
   left: 50%;
   transform: rotate(45deg) translateX(-50%);
}

#switchWrap #checkArea {
    margin-top: 80px;
}

#switchWrap #checkArea .borderBox {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
    padding: 90px 0 45px;
    background-color: #fffcf6;
    box-shadow: 5px 5px 10px 0 #b0b0b0;
    position: relative;
}

#switchWrap #checkArea .borderBox::before {
    content: "";
    display: block;
    width: 26px;
    height: 29px;
    background: url("img/check_ic01.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: 30px;
    left: 10px;
    right: 0;
    margin: 0 auto;
}

#switchWrap #checkArea .borderBox::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid #e59010;
}

#switchWrap #checkArea h2 {
    width: fit-content;
    margin: 0 auto 40px;
}

#switchWrap #checkArea h2::after {
    content: "";
    display: block;
    width: 54px;
    height: 58px;
    background: url("img/check_ic02.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: -30px;
    right: 5px;

}

#switchWrap #checkArea h2 .largeText span {
    color: #e59010;
}

#switchWrap #checkArea ul {
    max-width: 590px;
    width: 100%;
    margin: 0 auto;
}

#switchWrap #checkArea ul li {
    padding: 0 0 20px 50px;
    font-size: 22px;
    position: relative;
}

#switchWrap #checkArea ul li::before {
    content: "";
    display: block;
    width: 26px;
    height: 23px;
    background: url("img/check_ic03.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: 2px;
    left: 15px;
}

#switchWrap #checkArea ul li::after {
    content: "";
    display: block;
    width: 100%;
    border-bottom: 2px dotted #333;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#switchWrap .bgArea01 {
    margin-top: 100px;
    padding: 100px 0;
    background-color: var(--switch-background-color);
}

#switchWrap #flowArea h2 .smallText {
    padding-left: 48px;
    font-size: 28px;
}

#switchWrap #flowArea h2 .whiteText {
    color: var(--switch-background-color);
    position: relative;
}

#switchWrap #flowArea h2 .whiteText::after {
    content: "";
    display: block;
    width: 86px;
    height: 80px;
    background: url("img/flow_ic01.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: -25px;
    right: -35px;
}

#switchWrap #flowArea h2 .largeText span {
    color: var(--switch-primary-color);
}

#switchWrap #flowArea h2 .largeText span span {
    font-size: 50px;
    line-height: 1;
}

#switchWrap #flowArea .flowWrap {
    margin-bottom: 55px;
    display: flex;
    justify-content: space-between;
}

#switchWrap #flowArea .flowWrap .flowBox {
    width: 235px;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 16px;
    background-color: #fff;
    border-radius: 10px;
}

#switchWrap #flowArea .flowWrap .flowBox .imgBox {
    position: relative;
}

#switchWrap #flowArea .flowWrap .flowBox:first-of-type .imgBox::before {
    content: "";
    display: block;
    width: 620px;
    height: 4px;
    background-color: var(--switch-sub-primary-color);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 150px;
    margin: auto 0;
}

#switchWrap #flowArea .flowWrap .flowBox .textBox {
    margin: 20px auto 0;
}

#switchWrap #flowArea .flowWrap .flowBox .textBox h3 {
    height: 75px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    text-align: center;
}

#switchWrap #flowArea .flowWrap .flowBox .textBox h3 span {
    font-size: 13px;
}

#switchWrap #flowArea .flowWrap .flowBox .textBox h3 .step {
    font-size: 16px;
    color: var(--switch-sub-primary-color);
}

#switchWrap #flowArea .flowWrap .flowBox .textBox p {
    font-size: 15px;
    text-align: justify;
}

#switchWrap #flowArea .flowWrap .flowBox .textBox .noteArea li {
    text-align: justify;
}

#switchWrap #flowArea .importantArea {
    max-width: 840px;
    border: 2px solid var(--switch-sub-primary-color);
}

#switchWrap #flowArea .importantArea .titleText {
    color: var(--switch-sub-primary-color);
}

#switchWrap #flowArea .importantArea .titleText::before {
    background: url("img/flow_ic02.webp") no-repeat;
    background-size: contain;
    top: -2px;
    left: -35px;
}

#switchWrap #flowArea .importantArea .smallText {
    margin-top: 10px;
    font-size: 14px;
}

#switchWrap #flowArea .btnArea {
    margin-top: 20px;
}

#switchWrap #flowArea .btnArea ul li {
    width: 420px;
    border-radius: 40px;
}

#switchWrap #flowArea .btnArea ul a {
    padding: 18px 30px;
    background-color: #fff;
    border: 2px solid var(--switch-sub-primary-color);
    border-radius: 40px;
    font-size: 20px;
    color: var(--switch-sub-primary-color);
}

#switchWrap #flowArea .btnArea ul a:hover {
    opacity: 1;
    background-color: var(--switch-sub-primary-color);
    color: #fff;
}

#switchWrap #flowArea .btnArea ul a::before {
    display: none;
}

#switchWrap #flowArea .btnArea ul a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-bottom: 3px solid var(--switch-sub-primary-color);
    border-right: 3px solid var(--switch-sub-primary-color);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-45deg);
}

#switchWrap #flowArea .btnArea ul a:hover::after {
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
}

#switchWrap #pointArea {
    margin-top: 100px;
}

#switchWrap #pointArea .catchText {
    margin: 0 auto 3px;
    font-size: 28px;
    font-weight: bold;
    color: var(--switch-primary-color);
    text-align: center;
}

#switchWrap #pointArea h2 {
    width: fit-content;
}

#switchWrap #pointArea h2::before {
    content: "";
    display: block;
    width: 56px;
    height: 44px;
    background: url("img/point_ic01.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: 10px;
    left: -37px;
}

#switchWrap #pointArea .appWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#switchWrap #pointArea .appWrap li {
    width: 48%;
}

#switchWrap #pointArea .appWrap li:nth-of-type(n + 3) {
    margin-top: 40px;
}

#switchWrap #pointArea .appWrap li h3 {
    margin: 0 auto 20px;
    padding: 8px 15px 5px 42px;
    background-color: var(--switch-background-color);
    font-size: 20px;
    font-weight: bold;
    text-indent: -27px;
}

#switchWrap #pointArea .appWrap li h3 span {
    color: var(--switch-primary-color);
}

#switchWrap #pointArea .flexBox {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    padding: 0 15px;
}

#switchWrap #pointArea .flexBox img {
    max-width: 100px;
    width: 100%;
    height: auto;
}

#switchWrap #pointArea .balloonBox {
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
}

#switchWrap #pointArea .balloonBox img {
    max-width: 150px;
    width: 100%;
    height: auto;
}

#switchWrap #pointArea .balloonBox p {
    max-width: 560px;
    width: 100%;
    padding: 30px 40px;
    border: 2px solid var(--switch-primary-color);
    border-radius: 20px;
    font-size: 18px;
    position: relative;
}

#switchWrap #pointArea .balloonBox p span {
    font-weight: bold;
    color: var(--switch-primary-color);
}

#switchWrap #pointArea .balloonBox p span span {
    text-decoration-color: #fffe8e;
    text-decoration-line: underline;
    text-decoration-thickness: 10px;
    text-underline-offset: -5px;
    text-decoration-skip-ink: none;
}

#switchWrap #pointArea .balloonBox p::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 30px solid var(--switch-primary-color);
    position: absolute;
    bottom: 30px;
    left: -30px;
}

#switchWrap #pointArea .balloonBox p::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-right: 30px solid #fff;
    position: absolute;
    bottom: 30px;
    left: -26px;
}

#switchWrap #pointArea .btnArea {
    margin-top: 30px;
}

#switchWrap #pointArea .addText {
    margin-top: 40px;
    text-align: center;
}

#switchWrap #supportArea .callText {
    width: fit-content;
    margin: 0 auto;
    padding-left: 140px;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    position: relative;
}

#switchWrap #supportArea .callText::before {
    content: "";
    display: block;
    width: 120px;
    height: 112px;
    background: url("img/support_img01.webp") no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -10px;
    left: 5px;
}

#switchWrap #supportArea h2 {
    max-width: 720px;
    width: 100%;
    margin: 15px auto 50px;
    padding: 30px;
    position: relative;
    z-index: 1;
}

#switchWrap #supportArea h2::before {
    content: "";
    display: block;
    width: 710px;
    height: 100%;
    border: 2px solid var(--switch-primary-color);
    border-radius: 10px;
    position: absolute;
    bottom: 5px;
    right: 10px;
    box-sizing: border-box;
}

#switchWrap #supportArea h2::after {
    content: "";
    display: block;
    width: 710px;
    height: 100%;
    background-color: #fff;
    border-radius: 10px;
    position: absolute;
    top: 5px;
    left: 10px;
    z-index: -1;
}

#switchWrap #supportArea h2 .largeText span {
    color: var(--switch-primary-color);
}

#switchWrap #supportArea .leadText03 {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

#switchWrap #supportArea .tableWrap {
    max-width: 940px;
    width: 100%;
    margin: 25px auto;
    padding-right: 100px;
}

#switchWrap #supportArea .tableWrap table {
    border-spacing: 10px;
}

#switchWrap #supportArea .tableWrap th {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

#switchWrap #supportArea .tableWrap th,
#switchWrap #supportArea .tableWrap td {
    padding: 25px 20px;
    border-radius: 10px;
}

#switchWrap #supportArea .tableWrap .basic,
#switchWrap #supportArea .tableWrap .paid {
    width: 350px;
}

#switchWrap #supportArea .tableWrap .tableTitle {
    width: 90px;
}

#switchWrap #supportArea .tableWrap th.basic {
    color: #fff;
    background-color: var(--switch-sub-primary-color);
}

#switchWrap #supportArea .tableWrap th.paid {
    color: #fff;
    background-color: #82c4e9;
}

#switchWrap #supportArea .tableWrap th.tableTitle {
    background-color: #fff;
}

#switchWrap #supportArea .tableWrap td.basic {
    background-color: #ffd9f4;
}

#switchWrap #supportArea .tableWrap td.paid {
    background-color: #d9f0ff;
}
    
#switchWrap #supportArea .tableWrap .list li {
    padding-left: 16px;
    text-indent: -16px;
}
    
#switchWrap #supportArea .tableWrap .list li + li  {
    margin-top: 10px;
}

#switchWrap #supportArea .tableWrap .list {
    font-weight: bold;
}

#switchWrap #supportArea .tableWrap td span {
    font-weight: bold;
}

#switchWrap #supportArea .noteArea {
    margin-top: 10px;
}

#switchWrap .importantArea {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border: 2px solid #e1350f;
    border-radius: 4px;
}

#switchWrap .importantArea .titleText {
    width: fit-content;
    margin: 0 auto 10px;
    font-size: 18px;
    font-weight: bold;
    color: #e1350f;
    text-align: center;
    position: relative;
}

#switchWrap .importantArea .titleText::before {
    content: "";
    display: block;
    width: 40px;
    height: 38px;
    background: url("img/support_ic01.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: -8px;
    left: -45px;
}

#switchWrap .importantArea p span {
    font-weight: bold;
    text-decoration-color: #fffe8e;
    text-decoration-line: underline;
    text-decoration-thickness: 10px;
    text-underline-offset: -5px;
    text-decoration-skip-ink: none;
}

#switchWrap #recommendArea {
    margin: 100px auto;
}

#switchWrap #recommendArea h2 {
    width: fit-content;
    line-height: 1.5;
}

#switchWrap #recommendArea h2 .orangeText {
    padding-right: 30px;
    font-size: 28px;
    color: #e58a00;
    position: relative;
}

#switchWrap #recommendArea h2 .orangeText::after {
    content: "";
    display: block;
    width: 56px;
    height: 59px;
    background: url("img/recommend_ic01.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: -8px;
    right: -30px;
}

#switchWrap #recommendArea .recommendWrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 80px;
}

#switchWrap #recommendArea .recommendWrap li {
    width: 48.5%;
    padding: 50px 30px 30px;
    background-color: #fff8ed;
    border-radius: 15px;
}

#switchWrap #recommendArea .recommendWrap li:nth-of-type(n + 3) {
    margin-top: 60px;
}

#switchWrap #recommendArea .recommendWrap li h3 {
    width: fit-content;
    margin: -80px auto 30px;
    padding: 15px 15px 12px 60px;
    background-color: #fff;
    border: 2px solid #e58a00;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #e58a00;
    text-align: center;
    position: relative;
}

#switchWrap #recommendArea .recommendWrap li h3::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid #e58a00;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#switchWrap #recommendArea .recommendWrap li h3::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

#switchWrap #recommendArea .recommendWrap li h3 span {
    position: relative;
}

#switchWrap #recommendArea .recommendWrap li h3 span::before {
    content: "";
    display: block;
    width: 37px;
    height: 38px;
    background: url("img/recommend_ic02.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: -45px;
    transform: translateY(-50%);
}

#switchWrap #recommendArea .recommendWrap li:nth-of-type(2) h3 span::before {
    width: 38px;
    height: 38px;
    background: url("img/recommend_ic03.webp") no-repeat;
    background-size: contain;
    left: -47px;   
}

#switchWrap #recommendArea .recommendWrap li:nth-of-type(3) h3 span::before {
    width: 24px;
    height: 42px;
    background: url("img/recommend_ic04.webp") no-repeat;
    background-size: contain;
    left: -40px;
}

#switchWrap #recommendArea .recommendWrap li:nth-of-type(4) h3 span::before {
    width: 29px;
    height: 47px;
    background: url("img/recommend_ic05.webp") no-repeat;
    background-size: contain;
    left: -40px;
}

#switchWrap #recommendArea .recommendWrap li .name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 5px;
}

#switchWrap #recommendArea .recommendWrap li .price {
    font-weight: bold;
    margin-top: 10px;
}

#switchWrap #recommendArea .recommendWrap li .price span {
    font-size: 24px;
    color: var(--switch-primary-color);
}

#switchWrap #recommendArea .addText {
    margin-top: 50px;
    text-align: center;
}

#switchWrap #recommendArea .btnArea02 {
    margin-top: 15px;
}

#switchWrap #recommendArea .btnArea02 ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}

#switchWrap #recommendArea .btnArea02 ul li {
    width: 400px;
    text-align: center;
    border-radius: 40px;
    box-shadow: var(--switch-btn-shadow);
}

#switchWrap #recommendArea .btnArea02 ul a {
    padding: 18px 30px;
    background-color: #e58a00;
    border-radius: 40px;
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: relative;
}

#switchWrap #recommendArea .btnArea02 ul a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(-45deg);
}

#switchWrap #recommendArea .btnArea02 ul a:hover {
    text-decoration: none;
    opacity: .7;
}

#switchWrap #recommendArea .noteArea {
    margin-top: 30px;
}

#switchWrap #recommendArea .noteArea li {
    text-align: center;
}

#switchWrap #faqArea {
    padding: 100px 0;
    background-color: var(--switch-background-color);
}
#switchWrap #faqArea h2 {
    width: fit-content;
}

#switchWrap #faqArea h2::after {
    position: absolute;
    content: "";
    width: 68px;
    height: 45px;
    background: url("img/faq_ic01.webp") no-repeat;
    background-size: contain;
    top: -35px;
    right: -45px;
}

#switchWrap #faqArea .faqInner {
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
}

#switchWrap #faqArea h3 {
    padding: 15px 80px;
    border-bottom: 3px solid var(--switch-sub-primary-color);
    font-size: 18px;
    font-weight: bold;
    position: relative;

}

#switchWrap #faqArea h3::before {
    content: "";
    display: block;
    width: 24px;
    height: 31px;
    background: url("img/faq_ic02.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

#switchWrap #faqArea details {
    background-color: #fff;
    border-radius: 10px;
    margin: 20px 0 40px;
}

#switchWrap #faqArea details:last-of-type {    
    margin-bottom: 0;
}

#switchWrap #faqArea details span {    
    font-weight: bold;
}

#switchWrap #faqArea details summary {
    display: block;
    list-style: none;
    position: relative;
    width: 100%;
    padding: 25px 60px 25px 80px;
    margin-top: 0px;
    letter-spacing: normal;
    cursor: pointer;
}

#switchWrap #faqArea details summary::before {
    content: "";
    display: block;
    width: 26px;
    height: 30px;
    background: url("img/faq_ic03.webp") no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
}

#switchWrap #faqArea details summary::after {
    content: "";
    width: 10px;
    height: 10px;
    border-bottom: 3px solid  var(--switch-sub-primary-color);
    border-right: 3px solid  var(--switch-sub-primary-color);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-70%) rotate(45deg);
}

#switchWrap #faqArea details summary.active::after {
    transform: translateY(-30%) rotate(225deg);
}

#switchWrap #faqArea details div {
    position: relative;
    width: 100%;
    text-align: left;
    padding: 25px 60px;
    box-sizing: border-box;
    border-top: dotted 1px var(--switch-sub-primary-color);
}

#switchWrap #faqArea details div p {
    margin-top: 10px;
}

#switchWrap #faqArea details div .faqTitle {
    margin: 0 0 10px;
    font-weight: bold;
    color: var(--switch-primary-color);
}

#switchWrap #faqArea details div .faqTitle:nth-of-type(n + 2) {
    margin: 10px 0;
}

#switchWrap #faqArea details div ul li {
    padding-left: 16px;
    position: relative;
}

#switchWrap #faqArea details div ul li + li {
    margin-top: 5px;
}

#switchWrap #faqArea details div ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--switch-primary-color);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 4px;
}

#switchWrap #closingArea {
    margin: 100px auto;
}

#switchWrap #closingArea h2 {
    width: fit-content;
    padding-right: 120px;
    font-size: 36px;
    text-align: left;
}

#switchWrap #closingArea h2::after {
    content: "";
    display: block;
    width: 110px;
    height: 130px;
    background: url("img/closing_img01.webp") no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -15px;
    right: 0;
}

#switchWrap #closingArea h2 span {
    padding-left: 36px;
    text-decoration-color: #fffe8e;
    text-decoration-line: underline;
    text-decoration-thickness: 18px;
    text-underline-offset: -10px;
    text-decoration-skip-ink: none;
}

#switchWrap #closingArea p {
    width: fit-content;
    margin: 0 auto;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    position: relative;
}

#switchWrap #closingArea p::before,
#switchWrap #closingArea p::after {
    content: "";
    display: block;
    width: 3px;
    height: 35px;
    background-color: var(--switch-sub-primary-color);
    transform: rotate(-30deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15px;
    margin: auto 0;
}

#switchWrap #closingArea p::after {
    transform: rotate(30deg);
    left: auto;
    right: -15px;
}

#switchWrap #closingArea .btnArea {
    margin-top: 20px;
}

@media screen and (max-width: 640px) {
    body {
        font-size: 13px;
    }
    
    #switchWrap img {
        width: 100%;
        height: auto;
    }
    
    #switchWrap #mainVisual {
        margin: 0 auto 25px;
        padding: 30px 20px 0;
    }
    
    #switchWrap #mainVisual p {
        display: none;
    }
    
    #switchWrap #mainVisual .mvText img {
        max-width: 230px;
        width: 100%;
        display: block;
        margin: 0 auto -5px;
        position: relative;
        left: -6px;
    }
    
    #switchWrap #mainVisual h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    #switchWrap #mainVisual h1 .line {
        font-size: 32px;
        text-decoration-thickness: 18px;
        text-underline-offset: -10px;
    }
    
    #switchWrap #mainVisual h1 span {
        font-size: 26px;
        letter-spacing: 4px;
    }

    #switchWrap #mainVisual img {
        margin: 0 auto -10px;
    }

    #switchWrap .leadText {
        padding: 0 20px;
        font-size: 16px;
        text-align: left;
    }

    #switchWrap .btnArea {
        margin-top: 20px;
    }

    #switchWrap .btnArea.inner {
        margin-top: 20px;
        padding: 0 20px;
    }

    #switchWrap .btnArea ul {
        flex-direction: column;
        gap: 10px;
    }

    #switchWrap .btnArea ul li {
        width: 100%;
        box-shadow: var(--switch-btn-shadow-s);
    }

    #switchWrap .btnArea ul a {
        padding: 18px 20px 15px 40px;
        border-radius: 4px;
        font-size: 15px;
    }
    
    #switchWrap .btnArea ul a:hover {
        opacity: 1;
    }
    
    #switchWrap .btnArea ul a::before {
        width: 15px;
        height: 27px;
        left: 24px;
    }
    
    #switchWrap .btnArea ul .shopBtn a::before {
        width: 26px;
        height: 21px;
        left: 19px;
    }

    #switchWrap #checkArea,
    #switchWrap #pointArea,
    #switchWrap #closingArea {
        margin-top: 50px;
        padding: 0 20px;
    }
    
    #switchWrap h2 {
        margin: 0 auto 25px;
        font-size: 20px;
    }
    
    #switchWrap h2 .largeText {
        font-size: 22px;
        text-decoration-thickness: 10px;
        text-underline-offset: -5px;
    }
    
    #switchWrap .noteArea li {
        font-size: 12px;
        padding-left: 12px;
        text-indent: -12px;
    }
    
    #switchWrap .leadText02 {
        margin-bottom: 20px;
        text-align: justify;
    }
    
    #switchWrap .anchorLink {
        width: 100%;
        margin: 30px auto 0;
        padding: 0 20px;
    }

    #switchWrap .anchorLink p {
        font-size: 15px;
    }

    #switchWrap .anchorLink ul {
        margin: 10px auto 0;
    }

    #switchWrap .anchorLink ul li {
        width: 48%;
    }

    #switchWrap .anchorLink ul li:first-of-type {
        width: 100%;
    }

    #switchWrap .anchorLink ul li:nth-of-type(n + 2) {
        margin-top: 12px;
    }

    #switchWrap .anchorLink ul li a {
        padding: 12px 8px 20px;
        font-size: 13px;
    }

    #switchWrap .anchorLink ul li a:hover {
        opacity: 1;
    }

    #switchWrap .anchorLink ul li a::after {
        width: 5px;
        height: 5px;
        bottom: 7px;
    }

    #switchWrap #checkArea .borderBox {
        padding: 50px 0 25px;
    }
    
    #switchWrap #checkArea .borderBox::before {
        width: 15px;
        height: 17px;
        top: 20px;
        left: 8px;
    }
    
    #switchWrap #checkArea .borderBox::after {
        inset: 8px;
    }
    
    #switchWrap #checkArea h2 {
        margin: 0 auto 20px;
    }
    
    #switchWrap #checkArea h2::after {
        width: 32px;
        height: 35px;
        top: -18px;
        right: 2px;
    }
    
    #switchWrap #checkArea ul {
        max-width: 420px;
        width: 85%;
    }
    
    #switchWrap #checkArea ul li {
        padding: 0 0 15px 30px;
        font-size: 15px;
    }
    
    #switchWrap #checkArea ul li::before {
        width: 18px;
        height: 16px;
        top: 1px;
        left: 5px;
    }
    
    #switchWrap #checkArea ul li::after {
        bottom: 12px;
    }

    #switchWrap .bgArea01 {
        margin-top: 50px;
        padding: 50px 20px;
    }
    
    #switchWrap #flowArea h2 {
        line-height: 1;
    }

    #switchWrap #flowArea h2 .smallText {
        padding-left: 40px;
        font-size: 20px;
    }

    #switchWrap #flowArea h2 .whiteText::after {
        width: 52px;
        height: 49px;
        top: -15px;
        right: -20px;
    }

    #switchWrap #flowArea h2 .largeText span span {
        font-size: 32px;
        line-height: 1.2;
    }

    #switchWrap #flowArea .flowWrap {
        flex-direction: column;
        gap: 15px;
    }

    #switchWrap #flowArea .flowWrap .flowBox {
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: row;
        gap: 15px;
        padding: 15px;
    }

    #switchWrap #flowArea .flowWrap .flowBox .imgBox {
        max-width: 75px;
        width: 100%;
    }

    #switchWrap #flowArea .flowWrap .flowBox:first-of-type .imgBox::before {
        width: 2px;
        height: 500px;
        top: auto;
        bottom: -500px;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    #switchWrap #flowArea .flowWrap .flowBox .imgBox img {
        max-width: 75px;
    }

    #switchWrap #flowArea .flowWrap .flowBox .textBox {
        width: 100%;
        margin: 0;
    }

    #switchWrap #flowArea .flowWrap .flowBox .textBox h3 {
        height: auto;
        margin-bottom: 5px;
        font-size: 18px;
        text-align: left;
    }

    #switchWrap #flowArea .flowWrap .flowBox .textBox h3 span {
        font-size: 13px;
    }

    #switchWrap #flowArea .flowWrap .flowBox .textBox h3 .step {
        padding-right: 15px;
        font-size: 15px;
    }

    #switchWrap #flowArea .flowWrap .flowBox .textBox p {
        text-align: left;
    }
    
    #switchWrap #flowArea .importantArea .titleText::before {
        top: -10px;
        left: -10px;
    }
    
    #switchWrap #flowArea .importantArea .smallText {
        font-size: 13px;
    }
    
    #switchWrap #flowArea .btnArea ul li {
        width: 100%;   
    }

    #switchWrap #flowArea .btnArea ul a {
        padding: 15px 20px 12px;
        font-size: 15px;
    }

    #switchWrap #flowArea .btnArea ul a:hover {
        background-color: #fff;
        color: var(--switch-sub-primary-color);
    }

    #switchWrap #flowArea .btnArea ul a::after {
        width: 5px;
        height: 5px;
        border-width: 2px;
    }

    #switchWrap #flowArea .btnArea ul a:hover::after {
        border-bottom: 2px solid var(--switch-sub-primary-color);
        border-right: 2px solid var(--switch-sub-primary-color);
    }
    
    #switchWrap #pointArea .catchText {
        margin: 0 auto 2px;
        font-size: 16px;
    }

    #switchWrap #pointArea h2::before {
        width: 33px;
        height: 26px;
        top: 5px;
        left: -22px;
    }

    #switchWrap #pointArea h3 {
        margin: 0 auto 15px;
        font-size: 16px;
    }

    #switchWrap #pointArea .appTitle {
        padding-left: 35px;
    }

    #switchWrap #pointArea .appTitle::before {
        width: 30px;
        height: 28px;
        top: -4px;
    }

    #switchWrap #pointArea .appTitle span::before,
    #switchWrap #pointArea .appTitle span::after {
        width: 4px;
        height: 4px;
        left: 6px;
    }

    #switchWrap #pointArea .appTitle span::after {
        left: auto;
        right: 6px;
    }

    #switchWrap #pointArea .tableWrap th,
    #switchWrap #pointArea .tableWrap td {
        padding: 10px;
        border: 2px solid #fff;;
    }

    #switchWrap #pointArea .tableWrap th {
        font-size: 15px;
    }

    #switchWrap #pointArea .tableWrap tr:first-of-type th:first-of-type {
        width: 24%;
        height: 80px;
        background-image: linear-gradient(to right top, #82c4e9 calc(50% - 1px), #fff 50%, #fff calc(50% + 1px), #d148a9 calc(50% + 2px));
        font-size: 14px;
    }

    #switchWrap #pointArea .tableWrap tr:first-of-type th:first-of-type span:first-of-type {
        bottom: 10px;
        left: 10%;
    }

    #switchWrap #pointArea .tableWrap tr:first-of-type th:first-of-type span:nth-of-type(2) {
        top: 10px;
        right: 10%;
    }

    #switchWrap #pointArea .tableWrap .pink {
        height: 80px;
    }

    #switchWrap #pointArea .tableWrap .pink,
    #switchWrap #pointArea .tableWrap td {
        width: 38%;
    }

    #switchWrap #pointArea .tableWrap .blue {
        width: 24%;
    }

    #switchWrap #pointArea .tableWrap td {
        font-size: 12px;
    }

    #switchWrap #pointArea .tableWrap td span {
        font-size: 30px;
    }

    #switchWrap #pointArea .appWrap {
        flex-direction: column;
    }

    #switchWrap #pointArea .appWrap li {
        width: 100%;
    }

    #switchWrap #pointArea .appWrap li:nth-of-type(n + 2) {
        margin-top: 20px;
    }

    #switchWrap #pointArea .appWrap li h3 {
        margin: 0 auto 10px;
        padding: 5px 15px 2px 35px;
        font-size: 15px;
        text-indent: -20px;
    }

    #switchWrap #pointArea .flexBox {
        gap: 20px;
    }

    #switchWrap #pointArea .flexBox img {
        max-width: 60px;
    }

    #switchWrap #pointArea .balloonBox {
        margin: 30px auto 0;
        gap: 20px;
    }

    #switchWrap #pointArea .balloonBox img {
        max-width: 90px;
        position: relative;
        bottom: 5px;
    }

    #switchWrap #pointArea .balloonBox p {
        padding: 15px;
        border-radius: 15px;
        font-size: 13px;
    }

    #switchWrap #pointArea .balloonBox p span span {
        text-decoration-thickness: 8px;
        text-underline-offset: -4px;
    }

    #switchWrap #pointArea .balloonBox p::before {
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 14px solid var(--switch-primary-color);
        position: absolute;
        bottom: 20px;
        left: -16px;
    }

    #switchWrap #pointArea .balloonBox p::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 14px solid #fff;
        position: absolute;
        bottom: 20px;
        left: -12px;
    }
    
    #switchWrap #pointArea .addText {
        margin-top: 20px;
        text-align: left;
    }

    #switchWrap #supportArea .callText {
        padding-left: 80px;
        font-size: 15px;
    }

    #switchWrap #supportArea .callText::before {
        width: 70px;
        height: 66px;
        bottom: -8px;
    }

    #switchWrap #supportArea h2 {
        max-width: 420px;
        margin: 10px auto 30px;
        padding: 20px;
    }

    #switchWrap #supportArea h2::before {
        width: 98%;
        height: 98%;
        bottom: 4px;
        right: 8px;
    }

    #switchWrap #supportArea h2::after {
        width: 98%;
        height: 98%;
        top: 4px;
        left: 8px;
    }
    
    #switchWrap #supportArea .tableWrap_s {
        width: 100%;
        margin: 15px auto 25px;
    }

    #switchWrap #supportArea .tableWrap_s table {
        width: calc(100% + 12px);
        margin: -6px;
        border-spacing: 6px;
        border-collapse: separate;
    }

    #switchWrap #supportArea .tableWrap_s table + table {
        margin-top: 10px;
    }

    #switchWrap #supportArea .tableWrap_s th {
        font-size: 15px;
        font-weight: bold;
        text-align: center;
    }

    #switchWrap #supportArea .tableWrap_s th,
    #switchWrap #supportArea .tableWrap_s td {
        padding: 15px;
        border-radius: 2px;
    }

    #switchWrap #supportArea .tableWrap_s th.basic,
    #switchWrap #supportArea .tableWrap_s th.paid {
        width: 100%;
        padding: 15px 15px 12px;
        color: #fff;
        background-color: var(--switch-sub-primary-color);
    }
    
    #switchWrap #supportArea .tableWrap_s th.paid {
        background-color: #82c4e9;
    }

    #switchWrap #supportArea .tableWrap_s .tableTitle {
        width: 25%;
        background-color: #fff;
    }

    #switchWrap #supportArea .tableWrap_s td {
        width: 75%;
        font-size: 14px;
    }

    #switchWrap #supportArea .tableWrap_s td.basic {
        background-color: #ffd9f4;
    }

    #switchWrap #supportArea .tableWrap_s td.paid {
        background-color: #d9f0ff;
    }

    #switchWrap #supportArea .tableWrap_s .list li {
        padding-left: 14px;
        text-indent: -14px;
    }

    #switchWrap #supportArea .tableWrap_s .list li + li  {
        margin-top: 10px;
    }

    #switchWrap #supportArea .tableWrap_s td span {
        font-weight: bold;
    }

    #switchWrap #supportArea .noteArea {
        margin-top: 10px;
    }

    #switchWrap .importantArea {
        padding: 20px;
        border-radius: 2px;
        position: relative;
    }

    #switchWrap .importantArea .titleText {
        margin: 0 auto 5px;
        font-size: 15px;
        position: static;
    }

    #switchWrap .importantArea .titleText::before {
        width: 33px;
        height: 31px;
        top: -10px;
        left: -10px;
    }

    #switchWrap .importantArea p span {
        text-decoration-thickness: 8px;
        text-underline-offset: -4px;
    }

    #switchWrap #recommendArea {
        margin: 50px auto;
        padding: 0 20px;
    }

    #switchWrap #recommendArea h2 .orangeText {
        padding-right: 25px;
        font-size: 18px;
    }
    
    #switchWrap #recommendArea h2 .orangeText::after {
        width: 37px;
        height: 39px;
        right: -15px;
    }

    #switchWrap #recommendArea .recommendWrap {
        flex-direction: column;
        gap: 40px;
        margin-top: 45px;
        padding: 0 10px;
    }

    #switchWrap #recommendArea .recommendWrap li {
        width: 100%;
        padding: 30px 20px 20px;
        border-radius: 10px;
    }
    
    #switchWrap #recommendArea .recommendWrap li:nth-of-type(n + 3) {
        margin-top: 0;
    }

    #switchWrap #recommendArea .recommendWrap li h3 {
        margin: -50px 0 15px -30px;
        padding: 15px 10px 12px 50px;
        border-radius: 8px;
        font-size: 15px;
    }

    #switchWrap #recommendArea .recommendWrap li h3::before {
        border-right: 2px solid transparent;
        bottom: -11px;
        left: 21px;
        right: auto;
        margin: 0;
    }
    
    #switchWrap #recommendArea .recommendWrap li h3::after {
        border-right: 2px solid transparent;
        left: 20px;
        right: auto;
        margin: 0;
    }
    
    #switchWrap #recommendArea .recommendWrap li h3 span::before {
        width: 32px;
        height: 33px;
        left: -38px;
    }
    
    #switchWrap #recommendArea .recommendWrap li:nth-of-type(2) h3 span::before {
        width: 30px;
        height: 30px;
        left: -37px;
    }
    
    #switchWrap #recommendArea .recommendWrap li:nth-of-type(3) h3 span::before {
        width: 20px;
        height: 35px;
        left: -32px;
    }
    
    #switchWrap #recommendArea .recommendWrap li:nth-of-type(4) h3 span::before {
        width: 24px;
        height: 40px;
        left: -33px;
    }

    #switchWrap #recommendArea .recommendWrap li p span {
        display: inline-block;
    }

    #switchWrap #recommendArea .recommendWrap li .name {
        font-size: 14px;
    }

    #switchWrap #recommendArea .recommendWrap li .price {
        margin-top: 5px;
    }

    #switchWrap #recommendArea .recommendWrap li .price span {
        font-size: 20px;
    }
    
    #switchWrap #recommendArea .btnArea02 {
        margin-top: 10px;
    }
    
    #switchWrap #recommendArea .btnArea02 ul {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    #switchWrap #recommendArea .btnArea02 ul li {
        width: 100%;
        box-shadow: var(--switch-btn-shadow-s);
    }
    
    #switchWrap #recommendArea .btnArea02 ul a {
        padding: 15px 30px 12px;
        font-size: 15px;
    }
    
    #switchWrap #recommendArea .btnArea02 ul a:hover {
        opacity: 1;
    }
    
    #switchWrap #recommendArea .btnArea02 ul a::after {
        width: 5px;
        height: 5px;
        border-width: 2px;
    }

    #switchWrap #recommendArea .noteArea {
        margin-top: 20px;
    }

    #switchWrap #recommendArea .noteArea li {
        padding: 0 10px 0 22px;
        text-align: left;
    }
    
    #switchWrap #faqArea {
        padding: 50px 20px;
    }
    
    #switchWrap #faqArea h2::after {
        width: 34px;
        height: 23px;
        top: -16px;
        right: -20px;
    }
    
    #switchWrap #faqArea h3 {
        padding: 5px 20px 5px 45px;
        border-bottom: 2px solid var(--switch-sub-primary-color);
        font-size: 15px;
        line-height: 1.3;
    }
    
    #switchWrap #faqArea h3::before {
        width: 17px;
        height: 22px;
        left: 15px;
        transform: translateY(-60%);
    }
    
    #switchWrap #faqArea details {
        margin: 10px 0 20px;
    }
    
    #switchWrap #faqArea details summary {
        padding: 20px 35px 20px 45px;
    }
    
    #switchWrap #faqArea details summary::before {
        width: 19px;
        height: 22px;
        top: 20px;
        left: 15px;
        transform: none;
    }
    
    #switchWrap #faqArea details summary::after {
        width: 6px;
        height: 6px;
        border-bottom: 2px solid var(--switch-sub-primary-color);
        border-right: 2px solid var(--switch-sub-primary-color);
        right: 15px;
    }
    
    #switchWrap #faqArea details div {
        padding: 20px 45px;
    }
    
    #switchWrap #faqArea details div p {
        margin-top: 6px;
    }
    
    #switchWrap #faqArea details div .faqTitle {
        margin: 0 0 6px;
    }
    
    #switchWrap #faqArea details div ul li {
        padding-left: 13px;
    }
    
    #switchWrap #faqArea details div ul li + li {
        margin-top: 3px;
    }
    
    #switchWrap #faqArea details div ul li::before {
        width: 4px;
        height: 4px;
        top: 6px;
    }

    #switchWrap #closingArea {
        margin: 50px auto;
    }

    #switchWrap #closingArea h2 {
        padding-right: 70px;
        font-size: 20px;
    }

    #switchWrap #closingArea h2::after {
        width: 60px;
        height: 71px;
        bottom: -8px;
    }

    #switchWrap #closingArea h2 span {
        padding-left: 20px;
        text-decoration-thickness: 10px;
        text-underline-offset: -5px;
    }

    #switchWrap #closingArea p {
        font-size: 15px;
    }

    #switchWrap #closingArea p::before,
    #switchWrap #closingArea p::after {
        width: 2px;
        height: 25px;
        transform: rotate(-20deg);
        left: -10px;
    }

    #switchWrap #closingArea p::after {
        transform: rotate(20deg);
        left: auto;
        right: -10px;
    }

    #switchWrap #closingArea .btnArea {
        margin-top: 10px;
    }
}

@media screen and (max-width: 525px) {
    #switchWrap #flowArea .flowWrap .flowBox:first-of-type .imgBox::before {
        height: 590px;
        bottom: -590px;
    }
}

@media screen and (max-width: 430px) {
    #switchWrap #flowArea .flowWrap .flowBox:first-of-type .imgBox::before {
        height: 630px;
        bottom: -630px;
    }
}

@media screen and (max-width: 385px) {
    #switchWrap #flowArea .flowWrap .flowBox:first-of-type .imgBox::before {
        height: 700px;
        bottom: -700px;
    }
}


