@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 16px;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: break-word;
}

::selection {
    background: #000;
    color: #fff;
}

article,
aside,
footer,
header,
nav,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
}

a {
    color: inherit;
    outline: none;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: top;
}

video {
    max-width: 100%;
    height: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, sans-serif;
    font-size: inherit;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

th,
td {
    text-align: left;
    vertical-align: top;
}


blockquote,
q {
    quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
    content: "";
    content: none;
}

address {
    font-style: normal;
}

input,
textarea,
select {
    max-width: 100%;
}

/*-----------------------
/*clearfix
---------------------------------*/
/* For modern browsers */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}

.cf:after {
    clear: both;
}

/* For IE 6/7 only */
.cf {
    *zoom: 1;
}

/*-----------------------
component パーツ
-----------------------*/
/*矢印*/
.arrow {
    position: relative;
}

.arrow-bottom:after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 4px 13px;
    border-bottom: 2px solid var(--bk);
    border-right: 2px solid var(--bk);
    transform: rotate(45deg);
}

.arrow-right:after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: -4px 10px;
    position: absolute;
    top: 50%;
    border-top: 2px solid var(--bk);
    border-right: 2px solid var(--bk);
    transform: rotate(45deg);
}

.svg-defs {
    display: none;
}

.svg-view {
    display: inline-block;
    width: 20px;
    height: 20px;
    color: #fff;
}

.c-btn {
    display: inline-block;
}

.c-btn01 {
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: .08em;
    font-weight: bold;
    border: 3px solid #fff;
    border-radius: 2em;
    padding: .5em 3em;
    position: relative;
    transition: 0.3s;
    text-align: center;
}

.c-btn01._bk {
    background: #000;
    border: 3px solid #000;
}

.ico-arrow-right {
    position: absolute;
    top: calc(50% - 8px);
    right: 1em;
}

.c-btn01:hover {
    color: #000;
    background: #fff;
}

.c-btn01:hover .svg-view {
    color: #000;
}

.c-btn01._bk:hover {
    background: rgba(0, 0, 0, 0);
}

.c-btn02 {
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: .08em;
    font-weight: bold;
    position: relative;
    transition: 0.3s;
    padding-right: 20px;
}

.c-btn02:before {
    content: '';
    width: 12px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: calc(50% - 1px);
    left: -20px
}

/*ローディング*/
.c-loading {
    background: #fff;
    height: 100%;
    width: 100%;
    position: fixed;
    visibility: visible;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease 0s;
}

[data-loading=true] .c-loading {
    visibility: hidden;
}

.c-loading__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*モーダル*/
.c-modal {
    z-index: 100;
}

.c-modal__content {
    -webkit-transform: translate(-50%, -50%);
    background: #fff;
    left: 50%;
    opacity: 0;
    padding: 2em 2.4em;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .3s ease 0s;
    visibility: hidden;
    z-index: 100;
}

.c-modal__close {
    background: #000;
    display: none;
    height: 100%;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: all .3s ease 0s;
    width: 100%;
    z-index: 99;
}

.is-checked .c-modal__close {
    display: block;
    opacity: .4;
}

.is-checked .c-modal__content {
    opacity: 1;
    visibility: visible;
}

.c-modal__content--cover {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform: none;
}

.c-title {
    font-size: 50px;
    font-weight: 700;
    letter-spacing: .03em;
}

/*タブ*/
.c-tab__nav {
    border-bottom: 2px solid #e0e0e0;
    display: flex;
    justify-content: center;
}

.c-tab__item {
    background: #e0e0e0;
    display: block;
    margin-bottom: -2px;
    padding: .8em 1.6em;
}

.c-tab__item.is-checked {
    background: #757575;
    color: #fff;
}

.c-tab__content {
    display: none;
}

.c-tab__content.is-checked {
    display: block;
}

/*ナビ*/
.c-navigation {
    display: flex
}

.c-navigation a {
    display: block;
    text-decoration: none;
    transition: all .3s ease 0s
}

.c-navigation > li {
    margin-right: 1.2em;
    position: relative;
    text-align: center;
    z-index: 32
}

.c-navigation > li:last-child {
    margin-right: 0
}

.c-navigation > li > ul {
    display: block;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: left;
    top: calc(100% - .2em);
    transition: all .5s ease 0s;
    visibility: hidden;
    width: 200px;
    z-index: 31
}

/*テーブル*/
.c-table {
    background: #fff;
    border: 1px solid #bdbdbd;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%
}

.c-table td,
.c-table th {
    border: 1px solid #bdbdbd;
    padding: .7rem
}

.c-table th {
    font-weight: 700
}

.c-table--fixed {
    table-layout: fixed
}

.c-table--striped tr:nth-of-type(even) {
    background: #e0e0e0
}

.c-table--horizon {
    border: none
}

.c-table--horizon tr {
    border-bottom: 1px solid #bdbdbd;
    border-top: 1px solid #bdbdbd
}

.c-table--horizon tr:first-of-type {
    border-top: none
}

.c-table--horizon tr:last-of-type {
    border-bottom: none
}

.c-table--horizon td,
.c-table--horizon th {
    border: none
}

.c-table-responsive {
    -webkit-overflow-scrolling: touch;
    display: block;
    overflow-x: auto;
    padding: .2em 0;
    width: 100%
}

.c-navigation > li:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible
}

/*dlリスト*/

.c-list dt,
.c-list dd {
    padding: 1em 0;
    border-bottom: 1px solid #baaca6;
}

.c-list dt {
    width: 200px;
    padding-right: 1em;
}

.c-list dd {
    width: calc(100% - 200px);
    padding-right: 1em;
    padding-left: 1em;
}

/*ラジオボタン*/
.c-radio,
[type=radio] {
    display: none
}

.c-radio + span,
[type=radio] + span {
    cursor: pointer;
    display: inline-block;
    margin: 0;
    padding: 0 1em 0 1.4em;
    position: relative
}

.c-radio + span::before,
[type=radio] + span::before {
    -webkit-transform: translateY(-50%);
    background: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 50%;
    content: "";
    display: block;
    height: 1em;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1em
}

.c-radio + span::after,
[type=radio] + span::after {
    -webkit-transform: translateY(-50%);
    background: #616161;
    border: 1px solid #9e9e9e;
    border-radius: 50%;
    box-shadow: 0 0 0 .1em #fff inset;
    content: "";
    display: block;
    height: 1em;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease 0s;
    width: 1em
}

.c-radio:checked + span::before,
:checked[type=radio] + span::before {
    border: 1px solid #9e9e9e
}

.c-radio:checked + span::after,
:checked[type=radio] + span::after {
    opacity: 1
}

/*チェックボックス*/
.c-checkbox,
[type=checkbox] {
    display: none
}

.c-checkbox + span,
[type=checkbox] + span {
    cursor: pointer;
    display: inline-block;
    margin: 0;
    padding: 0 1em 0 1.4em;
    position: relative
}

.c-checkbox + span::before,
[type=checkbox] + span::before {
    -webkit-transform: translateY(-50%);
    background: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 2px;
    content: "";
    display: block;
    height: 1em;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1em
}

.c-checkbox + span::after,
[type=checkbox] + span::after {
    -webkit-transform: translateY(-50%) rotate(-45deg);
    border-bottom: 3px solid #616161;
    border-left: 3px solid #616161;
    content: "";
    display: block;
    height: .6em;
    left: 0;
    margin-top: -.2em;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    transition: all .3s ease 0s;
    width: 1em
}

.c-checkbox:checked + span::before,
:checked[type=checkbox] + span::before {
    border: 1px solid #9e9e9e
}

.c-checkbox:checked + span::after,
:checked[type=checkbox] + span::after {
    opacity: 1
}

/*セレクトボックス*/
.c-select,
select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    background-image: url(./img/arrow-bottom.png);
    background-position: center right .2em;
    background-repeat: no-repeat;
    background-size: 16px auto;
    border: 1px solid #bdbdbd;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    font-size: 1em;
    padding: .4em 2.4em .4em .8em;
    width: auto
}

.c-select::-ms-expand,
select::-ms-expand {
    display: none
}

.c-select:focus,
select:focus {
    border: 1px solid #9e9e9e;
    box-shadow: none;
    outline: 0
}

.c-select[multiple],
select[multiple] {
    background-image: none;
    height: 100px;
    padding: 0
}

.c-select[multiple] option,
select[multiple] option {
    padding: .4em 1.2em .4em .4em
}

/*アコーディオン*/
.c-accordion__title {
    cursor: pointer;
    padding: .4em .8em
}

.c-accordion__content {
    display: none;
    padding: .4em .8em
}

.c-accordion__title--arrow {
    padding-right: 2.4em;
    position: relative
}

.c-accordion__title--arrow::after {
    -webkit-transform: translateY(-50%);
    background: transparent url(./img/arrow-bottom.png) no-repeat top center/cover;
    content: "";
    height: .8em;
    position: absolute;
    right: .4em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s ease 0s;
    width: .8em
}

.is-checked .c-accordion__title--arrow::after {
    -webkit-transform: translateY(-50%) rotateX(180deg);
    transform: translateY(-50%) rotateX(180deg)
}

/*-----------------------
layout レイアウト
-----------------------*/
.l-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.l-window-full {
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
    width: 100vw;
}

.l-window-right {
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
    padding: 0 0 0 calc(50vw - 50%);
    width: 100vw;
    display: block;
}

.l-window-left {
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
    padding: 0 calc(50vw - 50%) 0 0;
    width: 100vw;
    display: block;
}

.l-row {
    display: flex;
    flex-wrap: wrap;
}

.l-row--middle {
    align-items: center;
}

.l-row--baseline {
    align-items: baseline;
}

.l-row--end {
    align-items: flex-end;
}

.l-row--center {
    justify-content: center;
}

.l-row--between {
    justify-content: space-between;
}

.l-row--reverse {
    flex-direction: row-reverse;
}

.l-row__col {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.l-row--padding {
    width: calc(100% + 16px);
}

.l-row__col01 {
    width: 8.33333%
}

.l-row__col02 {
    width: 16.66667%
}

.l-row__col03 {
    width: 25%
}

.l-row__col04 {
    width: 33.33333%
}

.l-row__col05 {
    width: 41.66667%
}

.l-row__col06 {
    width: 50%
}

.l-row__col07 {
    width: 58.33333%
}

.l-row__col08 {
    width: 66.66667%
}

.l-row__col09 {
    width: 75%
}

.l-row__col10 {
    width: 83.33333%
}

.l-row__col11 {
    width: 91.66667%
}

.l-row__col12 {
    width: 100%
}

.l-row--padding .l-row__col03 {
    width: calc(25% - 16px);
    margin-right: 16px;
}

.l-row--padding .l-row__col04 {
    width: calc(33.333% - 16px);
    margin-right: 16px;
}

.l-row--padding .l-row__col06 {
    width: calc(50% - 16px);
    margin-right: 16px;
}

/*section*/
.l-section {
    width: 100%;
    padding: 8rem 0 0;
}


/*-----------------------
Utility
-----------------------*/
.sp {
    display: none;
}

.u-bold {
    font-weight: bold;
}

.u-bold.u-extra {
    text-shadow: 2px 2px 0 #000, -2px -2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, 0px 2px 0 #000, 0 -2px 0 #000, 0px 0 0 #000, 2px 0 0 #000;
}

.u-text-left {
    text-align: left
}

.u-text-center {
    text-align: center
}

.u-text-right {
    text-align: right
}

.u-txt-wh {
    color: #fff;
}

.u-japanease {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    overflow: hidden;
    writing-mode: vertical-rl
}

.u-mb-1 {
    margin-bottom: 1em;
}

.u-mb-2 {
    margin-bottom: 2em;
}

.u-mb-3 {
    margin-bottom: 3em;
}

.u-mb-4 {
    margin-bottom: 4em;
}

.u-mb-5 {
    margin-bottom: 5em;
}

.u-mb-6 {
    margin-bottom: 6em;
}

.u-mb-8 {
    margin-bottom: 8em;
}

.u-mt-2 {
    margin-top: 2em;
}

.u-pr-1 {
    padding-right: 5%;
}

.u-hover:hover {
    opacity: .8;
    transition: all .5s ease 0s
}

.u-hover-scale-wrap {
    width: auto;
    overflow: hidden;
}

.u-hover-scale {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
    transition: all .5s ease 0s
}

.u-hover-scale:hover {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1)
}

.u-hover-up {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all .5s ease 0s
}

.u-hover-up:hover {
    -webkit-transform: translate(0, -.3em);
    transform: translate(0, -.3em)
}

.u-hover-down {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    transition: all .5s ease 0s
}

.u-hover-down:hover {
    -webkit-transform: translate(0, .3em);
    transform: translate(0, .3em)
}

.u-fadein {
    opacity: 0;
    transition: all .8s ease 0s;
}

.u-fadein.is-anim {
    opacity: 1
}

.u-fadein-up {
    -webkit-transform: translate(0, 1.8rem);
    opacity: 0;
    transform: translate(0, 1.8rem);
    transition: all 0.8s ease 0s;
}

.u-fadein-up.is-anim {
    -webkit-transform: translate(0, 0);
    opacity: 1;
    transform: translate(0, 0);
}

.u-remarks {
    position: relative;
    color: #DD3641;
    font-size: 90%;
    padding-left: 17px;
    line-height: 1.4;
}

.u-remarks:before {
    position: absolute;
    content: '※';
    left: 0;
}

/*header*/
#head .g_nav {
    width: 330px;
    border: none;
}

#head .g_nav form {
    max-width: 100%;
    height: 50px;
    border-radius: 25px;
}

#head .g_nav form .textbox {
    height: 50px;
    padding-left: 50px;
    line-height: 50px;
}

#head .g_nav form .search_btn {
    right: auto;
    left: 0;
    width: 50px;
    height: 50px;
}

/*-----------------------
taikakinko
-----------------------*/
.txt_re {
    color: #c2352b;
}

/*parts*/
.btn_anchor a {
    background: rgb(59, 59, 59);
    background: linear-gradient(107deg, rgba(59, 59, 59, 1) 50%, rgba(70, 70, 70, 1) 50%);
    padding: 30px 70px;
    border-radius: 10px 10px 0 10px;
    color: #fff !important;
    position: relative
}

.btn_anchor a .btn_anchor_title,
.btn_anchor a b {
    font-weight: bold;
    line-height: 1.15;
    text-align: center;
}

.btn_anchor a b {
    font-size: 34px;
    letter-spacing: .48em;
}

.btn_anchor_img {
    margin-right: 40px;
}

.btn_anchor_title {
    font-size: 20px;
    letter-spacing: .16em;
}

.btn_anchor a:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    border-left: 30px solid transparent;
    border-bottom: 30px solid #c2352b;
}

.btn01 {
    max-width: 350px;
    margin: 0 auto;

}

.btn01 a {
    background: #c2352b;
    border-radius: 3em;
    font-weight: bold;
    text-align: center;
    padding: 16px;
    width: 100%;
    display: block;
    font-size: 22px;
    color: #fff !important;
    letter-spacing: .18em;
    position: relative;
}

.btn01 a:before {
    content: '';
    width: 12px;
    height: 12px;
    border: 0;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    position: absolute;
    top: 50%;
    right: 1em;
    margin-top: -6px;
    transform: rotate(45deg);
    border-radius: 2px;
}

.btn_anchor a:after {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-bottom: solid 2px #333;
    border-right: solid 2px #333;
    position: absolute;
    bottom: 6px;
    right: 4px;
    margin-top: -6px;
    transform: rotate(45deg);
}

/*kv*/
.kv {
    background-image: url(https://gigaplus.makeshop.jp/officeland/img/taikakinko/kv_bg_left.jpg), url(https://gigaplus.makeshop.jp/officeland/img/taikakinko/kv_bg_left.jpg);
    background-position: right center, left center;
    background-repeat: no-repeat, no-repeat;
    background-size: contain;
    margin-bottom: 50px
}
 @media screen and (min-width: 1920px) {
        .kv {
            background-image: url(https://gigaplus.makeshop.jp/officeland/img/taikakinko/kv_bg_left.jpg), url(https://gigaplus.makeshop.jp/officeland/img/taikakinko/kv_bg_left.jpg);
        background-size: cover;
    }
    }
.kv_inner {
    margin: 0 50px;
}

.title_area {
    padding: 60px 105px;
    position: relative;
    margin: 0 auto;
    width: 890px;
    z-index: 1;
}

.title_area:before {
    transform: skewX(342deg);
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-color: #d6d6d6;
}

.kv_img > * {
    width: 48%;
}

.kv_subtitle {
    font-weight: bold;
    letter-spacing: .18em;
    font-size: 16px;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

.kv_subtitle:after,
.kv_subtitle:before {
    position: absolute;
    content: '';
    width: 126px;
    height: 1px;
    background: #000;
    top: 50%;
}

.kv_subtitle:before {
    left: -7px;
}

.kv_subtitle:after {
    right: -7px;
}

/*cont1*/
.cont1 {
    text-align: center;
}

.cont1 .title {
    font-size: 45px;
    color: #fff;
    background: #c2352b;
    padding: 10px 50px;
    display: inline-block;
    margin: 0 auto 30px;
    font-weight: bold;
    letter-spacing: .26em
}

.cont1 .subtitile {
    display: block;
    margin-bottom: 2em;
}

.cont1 .subtitile p {
    font-size: 28px;
    margin-bottom: 35px;
    font-weight: bold;
    letter-spacing: .16em;
    background: linear-gradient(transparent 92%, #c2352b 92%);
    display: inline;
    padding-bottom: 5px;
}

.cont1 .txt {
    font-size: 16px;
    letter-spacing: .1em;
    line-height: 2.1;
    font-weight: bold;
    margin-bottom: 2em;
}

.txt_pnk {
    background: #fce0dc;
    font-weight: bold;
    font-size: 16px;
}

.parent_anchor {
    background: #f5f5f5;
    padding: 50px 0;
    margin-bottom: 50px;
}

.parent_anchor li {
    padding: 0 18px;
}

.anchor_area .title,
.anchor_area .title span {
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    letter-spacing: .26em;
    margin-bottom: 1em;
}

.select_type_list {
    width: calc(100% + 16px);
    margin-bottom: 80px
}

.select_type_list li {
    width: calc(100% / 4 - 16px);
    margin-right: 16px;
}

.type_box {
    max-width: 1100px;
    margin: 0 auto 75px;
    background: #fdefed;
    padding: 65px 50px 50px;
    position: relative;
}

.type_icon {
    display: flex;
    justify-content: center;
    color: #fff;
    line-height: 1;
    height: 60px;
    margin: -95px auto 35px;
    text-align: center;
}

.type_icon .left {
    background: #c2352b;
    letter-spacing: .26em;
    font-size: 20px;
    font-weight: bold;
    padding: .95em .6em .7em .8em
}

.type_icon .right {
    background: #000000;
    font-size: 40px;
    font-weight: bold;
    width: 60px;
    padding: 10px 0 0 0
}

.type_box .title,
.type_box .title span {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: .26em;
    text-align: center;
    margin-bottom: 20px
}

.type_box .txt {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.625;
    margin-bottom: 1em
}

.item_list {
    width: calc(100% + 20px);
    overflow: hidden;
    margin-bottom: 25px;
}

.item_list.col4 > * {
    width: calc(100% / 4 - 20px);
    margin-right: 20px
}

.item_list.col3 > * {
    width: calc(100% / 3 - 20px);
    margin-right: 20px
}

.item_list p {
    font-size: 16px;
    color: #c2352b;
    font-weight: bold;
    text-align: left;
}

.item_list img {
    margin-bottom: 10px;
}

.price {
    font-weight: bold;
    font-size: 24px;
    text-align: left;
}

.price span {
    background: #000;
    line-height: 1;
    color: #fff;
    padding: 3px;
    font-size: 12px;
    font-weight: bold;
    vertical-align: baseline;
    top: -3px;
    position: relative;
}

.type_box.layout2 .title,
.type_box.layout2 .title span {
    font-size: 40px;
}

.layout2 .type_icon {
    position: inherit;
    text-align: center;
    margin: 30px auto;
    width: fit-content;
}

.layout2 .item_list li .txt,
.lock_read .txt {
    color: #000;
    margin-bottom: 60px;
}

.lock_read .txt {
    text-align: left;
    width: 100%;
    font-weight: 500;
    margin-bottom: 0;
}

.type_box.layout3 {
    width: calc(100% / 2 - 16px);
    margin-right: 16px;
    padding: 65px 20px 50px;
}

.layout3 .type_icon {
    position: inherit;
    text-align: center;
    width: fit-content;
}

.type_box.layout3 > a {
    padding: 0 30px;
}

.type_box.layout3 .title,
.type_box.layout3 .title span {
    font-size: 35px;
}

#select_lock {
    background: #eee;
    padding: 80px 0;
}

.type_box.lock {
    background: #fff;
    margin: 0 auto 35px;
}

.lock_icon {
    background: #000;
    color: #fff;
    border-radius: 20px 20px 0 0;
    font-size: 30px;
    letter-spacing: .16em;
    font-weight: bold;
    padding: 18px 70px;
    display: inline-block;
    margin-top: -110px;
    min-width: 600px;
    text-align: center;
}

.lock_read {
    width: 62%;
    margin: 0 auto 40px;
}

.lock_ico {
    width: 100px;
    margin: 0 auto;
}

.lock_read p {
    width: calc(100% - 130px);
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}

.select_type_list.lock li:nth-child(-n+3) {
    width: calc(100% / 3 - 16px);
    margin-right: 16px;
}

.select_type_list.lock li:nth-child(n+4) {
    width: calc(100% / 4 - 16px);
    margin-right: 16px;
}

.layout4 .lock_read {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.layout4 .item_list .lock_read img {
    margin-bottom: 40px
}

.anchor_point {
    padding-top: 45px;
}
.cont1 .txt.fs13 .txt_pnk{
    font-size: 13px;
    color: #c2352b;
}

@media screen and (max-width: 768px) {
    .sp {
        display: block;
    }

    .g_nav form {
        margin-bottom: 3%;
        width: 100%;
    }

    .l-inner {
        overflow: hidden;
    }

    .l-inner,
    .parent_anchor,
    .cont1 .txt {
        padding-right: 4%;
        padding-left: 4%;
    }

    .item_list p,
    .price span {
        font-size: 10px;
    }

    .type_box .txt,
    .cont1 .txt,
    .txt_pnk {
        font-size: 13px;
    }

    .cont1 .subtitile p {
        font-size: 16px;
    }

    .price,
    .cont1 .title,
    .lock_icon {
        font-size: 19px;
    }

    .type_box .title,
    .type_box .title span,
    .anchor_area .title,
    .anchor_area .title span,
    .type_box.layout2 .title,
    .type_box.layout2 .title span,
    .type_box.layout3 .title,
    .type_box.layout3 .title span {
        font-size: 28px;
    }

    .type_box .txt,
    .cont1 .txt {
        text-align: left;
    }

    .item_list,
    .select_type_list {
        width: 100%;
        justify-content: space-between
    }

    .item_list.col4 > *,
    .item_list.col3 > * {
        width: 48%;
        margin-right: 0;
        margin-bottom: 1em;
    }

    .select_type_list li,
    .select_type_list.lock li:nth-child(-n+3),
    .select_type_list.lock li:nth-child(n+4) {
        width: 48%;
        margin-right: 0;
    }

    .select_type_list li {
        margin-bottom: 10px
    }

    .select_type_list.lock li:nth-child(-n+3) a,
    .select_type_list.lock li:nth-child(n+4) a {
        display: block;
    }

    .select_type_list.lock li {
        margin-bottom: 0;
    }

    .type_box {
        padding: 65px 4% 50px;
    }

    .type_box.layout2 {
        padding-top: 0;
    }

    .parent_anchor li {
        padding: 0 6px;
        width: 50%;
    }

    .parent_anchor {
        padding: 10px 4% 30px
    }

    .type_icon {
        position: relative;
    }

    .sp_1 {
        order: 1;
    }

    .sp_2 {
        order: 2;
    }

    .sp_3 {
        order: 3;
    }

    .item_list.col3 > .sp_100 {
        width: 100%;
    }

    .layout2 .item_list li .txt {
        margin-bottom: 0;
    }

    .lock_icon {
        min-width: 80%;
        margin-top: -96px;
    }

    .kv {
        overflow: hidden;
        background-size: cover;
    }
   
    .title_area {
        padding: 40px 5px;
        width: 100%;
    }

    .kv_inner {
        margin: 20px 33px 20px 50px
    }

    .kv_subtitle:after,
    .kv_subtitle:before {
        width: 20px
    }

    .kv_subtitle {
        font-size: 14px;
    }

    .kv_subtitle:before {
        left: -22px;
    }

    .kv_subtitle:after {
        right: -14px;
    }

    .l-row.kv_img.l-row--middle.l-row--between {
        display: block;
        margin: 0 auto;
        text-align: center;
        text-align: -webkit-center;
    }

    .kv_img > * {
        width: 77%;
        margin: 10px auto 0;
    }

    .type_box.layout3 {
        margin: 0 calc(50% - 50vw) 75px;
        width: 100vw;
        padding: 30px 4%;
        text-align: left;
    }

    .layout3 .type_icon {
        margin-top: 0;
    }

    .type_box .title,
    .type_box .title span,
    .anchor_area .title,
    .anchor_area .title span {
        letter-spacing: .06em;
    }

    .layout3 .item_list {
        width: 48%;
    }

    .type_box.layout3 > a {
        padding: 0;
    }

    .lock_read {
        width: 100%;
    }

    .lock_ico {
        width: 80px;
    }

    .lock_read p {
        width: calc(100% - 100px);
        font-size: 13px;
    }

    .layout4 .lock_read {
        width: 100% !important;
        flex-direction: row;
    }

    .lock_read .txt {
        width: calc(100% - 100px);
        font-weight: bold;
    }

    .anchor_area.l-inner.u-mb-8 {
        margin-bottom: 2em;
    }

    .type_icon {
        height: 50px;
    }

    .type_icon .left {
        font-size: 17px;
    }

    .type_icon .right {
        font-size: 28px;
        width: 50px;
    }
}
