@charset "shift_jis";

/*==============================================
 共通カラー
============================================= */
:root {
    --text-color: #333; /* テキスト カラー */
    --color-primary: #004ea2; /* プライマリ カラー */
    --color-secondary: #f78b00; /* セカンダリー カラー */ 
}
/*==============================================
 common
============================================= */
html {
    font-size: calc(100vw / 32);
    -webkit-text-size-adjust: 100%;
}
#header {
    border-bottom: #ededed solid 1px;
}
#footer {
    padding-top: 2rem;
    background-color: #fff;
    font-size: 0;
}
.breadCrumb {
    margin: 0 15px;
}
.copyRight {
    border-top: 1px solid #ededed;
}
.pageTop {
    width: 4rem;
    height: 4rem;
    right: 1rem;
    bottom: 1rem;
    background-size: 4rem;
    border-radius: 50%;
}
#mainContents {
    background-size: contain;
    font-family: "noto", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", "Arial", sans-serif;
    color: var(--text-color);
	letter-spacing: 0.08em;
    font-feature-settings: "palt" 1;
}
sup {
    font-size: 50%;
    vertical-align: top;
    position: relative;
    top: 0.4em;
}
.pc {
    display: none;
}
em {
    background: linear-gradient(transparent 10%, #d9f4ff 10%);
    font-style: normal;
    font-weight: 700;
}
a, a:visited, a:hover {
    color: inherit;
}
#mainContents a {
    transition: .2s;
}
/*==============================================
 .noto
============================================= */
/* regular */
@font-face {
    font-family: 'noto';
    src: url(https://img1.kakaku.k-img.com/images/fonts/noto-sans/NotoSansJP-Regular.woff);
    font-weight: 400;
}
/* bold */
@font-face {
    font-family: 'noto';
    src: url(https://img1.kakaku.k-img.com/images/fonts/noto-sans/NotoSansJP-Bold.woff);
    font-weight: 700;
}
/*==============================================
 ボタン共通
============================================= */
.btn {
    width: 100%;
    line-height: 4rem;
    height: 4rem;
    margin: 0 auto;
    border-radius: 2rem;
    background-color: var(--color-secondary);
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    transition: .2s;
}
.btn a,
a .btn {
    display: block;
    position: relative;
    color: #fff;
}
.btn a::after,
a .btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.5em;
    width: .6em;
    height: .6em;
    margin: auto 0;
    border: 2px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    color: #fff;
    transform: rotate(45deg);
}
/*==============================================
 看板
============================================= */
.mainTitle {
    background: #e4e6e7 url(https://img1.kakaku.k-img.com/images/article/tieup/25/10_dospara/sp_main_title.webp) no-repeat center top;
    background-size: cover;
}
.mainTitleIn {
    display: flex;
    align-items: flex-end;
    width: auto;
    height: 120vw;
}
h1 {
    text-indent: -999em;
    font-size: 0;
}
/*==============================================
 .sidebar
============================================= */
#fix {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: .3s;
}
.hidden#fix {
    top: -10rem;
}
/*--------------------------------------------*/
/* .bnr
----------------------------------------------*/
.sidebar .bnr {
    margin: 1rem;
}
.sidebar .bnr a {
    display: flex;
    align-items: center;
    position: relative;
    height: 7rem;
    padding: 0 4rem 0 3rem;
    border-radius: 3.5rem;
    background-color: #fff;
    box-shadow: 0 0 1em 0 rgba(59,58,61,0.3);
}
.sidebar .bnr a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 2.5rem;
    width: .8rem;
    height: .8rem;
    margin: auto 0;
    border: 2px solid var(--color-secondary);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    color: #fff;
    transform: rotate(45deg);
}
.sidebar .bnr .img {
    width: 25%;
    height: auto;
    text-align: center;
}
.sidebar .bnr .img img {
    width: 100%;
    height: auto;
}
.sidebar .bnr .txt {
    width: 75%;
}
.sidebar .bnr .txt .name {
    line-height: 1.2;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0;
}
.sidebar .bnr .txt .name span {
    font-size: 1rem;
}
.sidebar .bnr .txt .name .sub {
    display: none;
}
.sidebar .bnr .txt .btn {
    line-height: 1;
    margin-top: .6rem;
    color: var(--color-secondary);
    font-size: .9rem;
    /* リセット */
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    
}
.sidebar .bnr .btn::after {
    display: none;
}
/*--------------------------------------------*/
/* #index
----------------------------------------------*/
#index {
    margin-top: 2rem;
    padding: 2rem 2rem;
    background: linear-gradient(145deg, #004ea2, #0054a7, #00a2e6);
}
#index p {
    text-align: center;
    color: #00a2e6;
    font-size: 1.1rem;
}
#index ul {
    margin-top: .5rem;
}
#index ul li {
    border-top: 1px solid rgba(255,255,255,.25);
}
#index ul li:first-child {
    border-top: none;
}
#index ul li a {
    display: block;
    position: relative;
    line-height: 1.4em;
    padding: .8em 1.5em .8em 3em;
    text-indent: -3em;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
#index ul li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: .3em;
    width: .6em;
    height: .6em;
    margin: auto 0;
    border: 2px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    color: #fff;
    transform: translateY(-25%) rotate(135deg);
}
#index ul li:last-child span a::before {
    content: "\23BF";
    border: 0;
    font-size: 9px;
    top: -2em;
    left: .3em;
    transform: none;
}
#index ul li:last-child span {
    display: block;
    padding-left: 1.5em;
}
#index ul li:last-child span a {
    font-size: 1.1rem;
    text-indent: -1.5em;
    padding: .5em 0 .5em 1.5em;
}
#index .btn {
    margin-top: .5rem;
    border: 1px solid var(--text-color);
    background-color: #fff;
    box-sizing: border-box;
}
#index .btn a {
    color: var(--text-color);
}
#index .btn a::after {
    display: none;
}
/*==============================================
 .main
============================================= */
.main {
    width: 100%;
}
/*--------------------------------------------*/
/* .point
----------------------------------------------*/
.pointWrap {
    padding: 0 2rem 3rem;
}
.point {
    margin: -5rem auto 0;
    padding: 2rem 1.8rem 1.8rem;
    border: 3px solid #d9d9d9;
    background-color: #fff;
    border-radius: 1em;
}
.point .title {
    text-align: center;
    color: #00a2e6;
    font-size: 1rem;
    font-weight: 700;
}
.point ul {
    margin-top: 1rem;
}
.point ul li {
    position: relative;
    line-height: 1.4;
    padding-left: 4.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    word-break: break-all;
}
.point ul li + li {
    margin-top: .5rem;
}
.point ul li::before {
    content: "POINT";
    position: absolute;
    top: .4rem;
    left: 0;
    line-height: 1.4rem;
    padding: 0 .5rem 0 1.5rem;
    border-radius: .2rem;
    background-color: #00a2e6;
    color: #fff;
    font-size: .7rem;
    letter-spacing: 0;
}
.point ul li::after {
    content: "";
    display: block;
    position: absolute;
    top: .8rem;
    left: .6rem;
    width: .6rem;
    height: .4rem;
    margin: auto 0;
    border: 2px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    color: #fff;
    transform: rotate(135deg);
}
.lead {
    line-height: 1.8;
    margin-top: 2rem;
    font-size: 1.4rem;
}
/*--------------------------------------------*/
/* .profile
----------------------------------------------*/
.profile {
    display: flex;
    column-gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}
.profile .face {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: #e8e8e8;
}
.profile .txt p {
    line-height: 1.6;
    font-size: 1.1rem;
}
.profile .txt .name {
    margin-bottom: .5em;
    font-size: 1.2rem;
}
/*--------------------------------------------*/
/* .paragraph
----------------------------------------------*/
.paragraph {
}
.paragraphIn {
    padding: 0 2rem 3rem;
}
/* h2 */
.paragraph h2 {
    background: #f0f0f0;
    position: relative;
    line-height: 1.4;
    padding: 1.6rem 2rem 1.3rem;
}
.paragraph h2 .sub {
    display: block;
    line-height: 1;
    color: var(--color-primary);
    font-size: 1.4rem;
    font-weight: 700;
}
.paragraph h2 .sub strong {
    font-size: 1.6em;
}
.paragraph h2 .title {
    display: block;
    margin-top: .3em;
    font-size: 2rem;
    font-weight: 700;
}
/* h3 */
.paragraph h3 {
    position: relative;
    line-height: 1.6;
    margin-top: 3rem;
    font-size: 1.6rem;
    font-weight: 700;
}
/* h4 */
.paragraph h4 {
    line-height: 1.6;
    margin-top: 2rem;
    font-size: 1.4rem;
    font-weight: 700;
}
/* h5 */
.paragraph h5 {
    line-height: 1.6;
    font-size: 1.2rem;
    font-weight: 700;
}
/* p */
.paragraph p,
.lineup p {
    line-height: 1.8;
    margin-top: 2rem;
    font-size: 1.4rem;
}
.paragraph h3 + p,
.paragraph h4 + p {
    margin-top: 1.5rem;
}
/* .btn */
.main .btn {
    width: 100%;
    margin-top: 2rem;
}
/* .notice */
p span.notice {
    display: block;
    line-height: 1.6;
    margin-top: .8rem;
    font-size: .7em;
}
/*--------------------------------------------*/
/* .review
----------------------------------------------*/
.review {
    display: flex;
    column-gap: 1.5rem;
    margin-top: 2rem;
}
.paragraph h3 + .review,
.paragraph h4 + .review,
.review + .review {
    margin-top: 1rem;
}
.review dt .face {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #e8e8e8;
}
.review dt .name {
    line-height: 1.4;
    width: 5rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.0rem;
}
.review dd {
    position: relative;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    border: 1px solid #ddd;
    background-color: #fff;
}
.review dd::before {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  border-style: solid;
  border-width: 0 1.3rem 1.3rem 0;
  border-color: transparent #ddd transparent transparent;
  translate: -100% -50%;
}
.review dd::after {
  content: "";
  position: absolute;
  top: 3rem;
  left: 0;
  border-style: solid;
  border-width: 0 1.1rem 1.1rem 0;
  border-color: transparent #fff transparent transparent;
  translate: -100% calc(-50% - 0.2px);
}
.review dd p {
    margin-top: 0;
    font-size: 1.2rem;
}
.review dd .link {
    margin-top: 10px;
}
.review dd .link a {
    position: relative;
    padding-right: 1.2em;
    color: var(--color-primary);
    font-size: 1.2rem;
    text-decoration: underline;
}
.review dd .link a .arrow {
    display: inline-block;
    position: relative;
    top: -.1em;
    width: 1.1em;
    height: 1.1em;
    margin-left: .5em;
    vertical-align: middle;
    border-radius: 50%;
    background-color: var(--color-primary);
}
.review dd .link a .arrow::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -.1em;
    right: 0;
    width: .3em;
    height: .3em;
    margin: auto;
    border: 2px solid #fff;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    color: #fff;
    transform: rotate(45deg);
}
/*--------------------------------------------*/
/* .imgBox
----------------------------------------------*/
.imgBox {
    margin-top: 40px;
}
.imgBox .column {
    display: flex;
    justify-content: center;
    flex-direction: column;
    row-gap: 1rem;
}
.imgBox .column img,
.imgBox .column video {
    width: 100%;
    height: auto;
}
.imgBox .cap {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 1.1rem;
}
.imgBox strong {
    display: block;
    font-size: 1.2rem;
    border-left: 5px solid var(--color-primary);
    margin-bottom: 1rem;
    padding: .2em 0 .2em .5em;
}
/*--------------------------------------------*/
/* .innerbnr
----------------------------------------------*/
.innerbnr {
    text-align: center;
}
.innerbnr p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.5;
    position: relative;
}
.innerbnr p span {
    display: block;
}
.innerbnr p::before,
.innerbnr p::after {
    display: block;
    position: absolute;
    bottom: -.1em;
    font-size: 1.5rem;
}
.innerbnr p::before {
    content: "＼";
    left: .5em;
}
.innerbnr p::after {
    content: "／";
    right: .5em;
}
.innerbnr .wrap a {
    display: block;
    border-radius: .8em;
    border: 1px solid var(--color-primary);
    margin-top: 1rem;
    overflow: hidden;
}
.innerbnr .wrap a dt {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 0;
    background: radial-gradient(circle at center 170%, #00a2e6, #004ea2 55%);
    padding: 1.2rem 2rem 1.1rem;
}
.innerbnr .wrap a dt span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: .06em;
    margin-bottom: .3em;
}
.innerbnr .wrap a dt span br {
    display: none;
}
.innerbnr .wrap a dd.btn {
    width: 85%;
    height: 3rem;
    line-height: 3rem;
    margin: 1rem auto;
}
/*--------------------------------------------*/
/* .lineup
----------------------------------------------*/
.lineup .wrap {
    padding: .5rem 2rem 2rem;
}
.lineup h2 {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 190px;
    background: linear-gradient(140deg, #004ea2 40%, #00a2e6);
    position: relative;
    line-height: 1.5;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    padding: 0 30% 0 2rem;
    box-sizing: border-box;
}
.lineup h2::before {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(https://img1.kakaku.k-img.com/images/article/tieup/25/10_dospara/prd_02.png) no-repeat right center;
    background-size: 30%;
    position: absolute;
    top: .7rem;
    right: 0;
}
.lineup h2 span {
    display: block;
    padding-left: 2.5em;
}
.lineup h2.L {
    line-height: 1.4;
    font-size: 1.45rem;
}
/*--------------------------------------------*/
/* .item
----------------------------------------------*/
.item + .item {
    margin-top: 1rem;
}
.item .info h3 {
    line-height: 1.4;
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    transition: .2s;
}
.item .info h3 .min {
    display: block;
    font-size: .6em;
    font-weight: 400;
}
.item .info .btn {
    line-height: 4rem;
    width: 100%;
    height: 4rem;
    margin: 1rem 0 0;
}
/*--------------------------------------------*/
/* .scroll
----------------------------------------------*/
.scroll {
    margin-top: 2rem;
    overflow: auto;
    border: 1px solid #ddd;
}
.scroll::-webkit-scrollbar{
    height: 1rem;
}
.scroll::-webkit-scrollbar-track {
    background: #f7f7f7;
}
.scroll::-webkit-scrollbar-thumb {
    border-radius: .5rem;
    background: #ddd;
}
/*--------------------------------------------*/
/* table
----------------------------------------------*/
table {
    position: relative;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 1.8rem;
}
table th,
table td {
    min-width: 9em;
    padding: .6rem .8rem;
    box-sizing: border-box;
    text-align: left;
    font-size: 1rem;
    white-space: normal;
}
table th {
    font-weight: 700;
}
/* thead */
table thead th,
table thead td {
    background-color: #f2f2f2;
}
/* tbody */
table tbody tr:nth-child(odd) {
    background: #f4f4f4;
}
/* a */
table a, table a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}
/*--------------------------------------------*/
/* .releasedate
----------------------------------------------*/
.releasedate {
    margin: 0 2rem;
    text-align: left;
    color: #666;
    font-size: 0.85rem;
}
/*--------------------------------------------*/
/* .itemList
----------------------------------------------*/
.itemList {
    text-align: center;
    padding: 1.8rem 2rem 3rem;
}
.itemList a {
    display: block;
    background: #fff;
    border: 4px double var(--color-primary);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
    padding: .6em 0 .7em;
    position: relative;
    transition: .2s;
}
.itemList a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: .6em;
    width: .6em;
    height: .6em;
    margin: auto 0;
    border: 2px solid var(--color-primary);
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    color: #fff;
    transform: rotate(45deg);
}
.itemList a small {
    display: block;
    font-size: .8em;
}
.itemList a:active,
.itemList a:hover {
    background: #d9f4ff;
}