@charset "utf-8";

/* COLOR */
:root {
  --color-orange: #E94921;
  --color-red: #CF3339;
}

/* FONT */
.gravitas {
  font-family: "Gravitas One", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.single-day {
  font-family: "Single Day", cursive;
}

/* LAYOUT */
#wrapper #container {
  width: 100%;
}
#wrapper #container > .mainframe_ {
  margin: 0;
}
#footer {
  margin-top: 0;
}

/* ANIMATION */
#oshmans_gramicci .hidden-img {
  opacity: 0;
}
#oshmans_gramicci .show .hidden-img {
  animation: fadeIn 1s .8s forwards;
}
#oshmans_gramicci .js-anim-fade,
#oshmans_gramicci .js-anim-fade02 .area-title,
#oshmans_gramicci .js-anim-fade02.intro > *:not(.area-title) {
  opacity: 0;
  transform: translateY(40px);
}
#oshmans_gramicci .js-anim-fade.show,
#oshmans_gramicci .js-anim-fade02 .show-title {
  animation: fadeInUp .8s forwards;
}
#oshmans_gramicci .js-anim-fade02 .show-elem {
  animation: fadeInUp .8s .4s forwards;
}
#oshmans_gramicci .mv .js-anim-img.show img:not(.hidden-img),
#oshmans_gramicci .classic .js-anim-img.show .img-line {
  animation: fadeOut .8s 1.3s forwards;
}
#oshmans_gramicci .js-anim-text > span {
  clip-path: inset(0 0 100%);
}
#oshmans_gramicci .js-anim-text > span.show {
  animation: showDown 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showDown {
  0% {
    clip-path: inset(0 0 100%);
  }
  99% {
    clip-path: inset(0 0 0%);
  }
  100% {
    clip-path: none;
  }
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, em, img, small, strong {
  font-weight: 500;
}

@media screen and (min-width: 769px) {
  #oshmans_gramicci .sp {
    display: none !important;
  }
  #oshmans_gramicci {
    color: #3C1212;
    font-size: 24px;
    line-height: 1.75;
    background: #F5EBDC;
    padding: 0 0 150px;
    font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    overflow-x: hidden;
  }
  #oshmans_gramicci .mv {
    position: relative;
    padding: 60px 0;
    background: var(--color-orange);
    z-index: 1;
  }
  #oshmans_gramicci .mv:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    border-style:solid;
    border-width: 0 98.5vw 779px 98.5vw;
    border-color: transparent transparent  var(--color-red) transparent;
    z-index: -1;
  }
  #oshmans_gramicci .mv h1 {
    margin: 0 0 40px;
  }
  #oshmans_gramicci .inner {
    position: relative;
    width: 1320px;
    margin: 0 auto;
  }
  #oshmans_gramicci .mv .comment {
    color: #FFF;
  }
  #oshmans_gramicci .mv .logo {
    position: absolute;
    top: 0;
    right: 0;
  }
  #oshmans_gramicci .mv .img {
    position: absolute;
    right: 70px;
    bottom: -15px;
  }
  #oshmans_gramicci .mv .img .hidden-img {
    position: absolute;
    top: -29px;
    left: -115px;
    max-width: unset;
  }
  #oshmans_gramicci .history {
    margin: 0 0 330px;
  }
  #oshmans_gramicci .history .inner {
    background: #FFF;
    padding: 80px 75px 0;
  }
  #oshmans_gramicci .history .inner:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -250px;
    border-style: solid;
    border-width: 250px 660px 0 660px;
    border-color: #FFF transparent transparent transparent;
  }
  #oshmans_gramicci .history .intro {
    position: relative;
    margin: 0 0 80px;
    padding: 0 0 0 93px;
  }
  #oshmans_gramicci .area-title {
    position: absolute;
    top: 0;
    left: -10px;
    color: #F5EBDC;
    font-size: 64px;
    line-height: 1;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #3C1212;
    writing-mode: vertical-lr;
  }
  #oshmans_gramicci .history .area-title {
    color: #FFF;
  }
  #oshmans_gramicci .history h2 {
    margin: 0 0 30px;
  }
  #oshmans_gramicci .history .intro .img {
    position: absolute;
    top: -40px;
    right: -65px;
    width: 609px;
  }
  #oshmans_gramicci .history-detail {
    position: relative;
    padding: 0 0 40px;
  }
  #oshmans_gramicci .history-detail:before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 110px;
    background: #FFF;
    border-right: 2px dashed var(--color-orange);
    z-index: 2;
  }
  #oshmans_gramicci .history-detail:after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: calc(100% + 200px);
    background: var(--color-orange);
    z-index: 1;
  }
  #oshmans_gramicci .history-item {
    position: relative;
    width: 540px;
    color: #FFF;
    font-size: 20px;
    line-height: 1.6;
    font-weight: bold;
    background: var(--color-orange);
    padding: 15px 24px;
    z-index: 2;
  }
  #oshmans_gramicci .history-item:after {
    content: '';
    position: absolute;
    top: calc(50% - 10px);
    right: -16px;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent var(--color-orange);
  }
  #oshmans_gramicci .history-item.history-item-red {
    background: var(--color-red);
  }
  #oshmans_gramicci .history-item.history-item-red:after {
    border-color: transparent transparent transparent var(--color-red);
  }
  #oshmans_gramicci .history-item.history-item-gray {
    color: #3C1212;
    background: rgba(60, 18, 18, .2);
  }
  #oshmans_gramicci .history-item.history-item-gray:after {
    border-color: transparent transparent transparent rgba(60, 18, 18, .2);
  }
  #oshmans_gramicci .history-item.history-item-right {
    margin-left: 630px;
  }
  #oshmans_gramicci .history-item.history-item-right:after {
    right: auto;
    left: -16px;
    transform: scale(-1, 1);
  }
  #oshmans_gramicci .history-item .year {
    position: absolute;
    top: -32px;
    right: 30px;
    color: var(--color-orange);
    font-size: 40px;
    line-height: 1;
  }
  #oshmans_gramicci .history-item.history-item-red .year {
    color: var(--color-red);
  }
  #oshmans_gramicci .history-item.history-item-right .year {
    left: 30px;
    right: auto;
  }
  #oshmans_gramicci .history-item .item {
    position: absolute;
    top: -42px;
  }
  #oshmans_gramicci .history-item.history-1933 {
    margin: 0 0 66px;
  }
  #oshmans_gramicci .history-item.history-1933:before {
    content: '';
    position: absolute;
    top: 32px;
    right: -59px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-orange);
    z-index: 1;
  }
  #oshmans_gramicci .history-item.history-1982 {
    margin-top: 25px;
    padding-right: 170px;
    width: 422px;
  }
  #oshmans_gramicci .history-item.history-1982 .item {
    right: 5px;
    width: 163px;
  }
  #oshmans_gramicci .history-item.history-1985 {
    margin: -35px 0 70px;
  }
  #oshmans_gramicci .history-item.history-1985 .img {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
  }
  #oshmans_gramicci .history-item.history-1998 {
    margin-top: 25px;
    margin-bottom: 50px;
  }
  #oshmans_gramicci .history-item.history-1998-02 {
    width: 422px;
    padding-right: 170px;
    margin-bottom: 120px;
  }
  #oshmans_gramicci .history-item.history-1998-02 .item {
    top: -39px;
    right: -60px;
    width: 225px;
  }
  #oshmans_gramicci .history-item.history-1998-02 .img {
    position: absolute;
    top: 141px;
    left: 0;
    width: 540px;
  }
  #oshmans_gramicci .history-item.history-1998-03 {
    width: 446px;
    margin-left: 94px;
    margin-bottom: 90px;
    padding: 29px 24px;
  }
  #oshmans_gramicci .history-item.history-2004 {
    margin-top: 30px;
  }
  #oshmans_gramicci .history-item.history-2004-02 {
    width: 422px;
    margin-top: -94px;
    margin-left: 118px;
    padding-left: 185px;
  }
  #oshmans_gramicci .history-item.history-2004-02 .item {
    top: -65px;
    left: 5px;
    width: 172px;
  }
  #oshmans_gramicci .history-item.history-2011 {
    margin-top: 20px;
  }
  #oshmans_gramicci .history-item.history-2015 {
    margin-top: -40px;
  }
  #oshmans_gramicci .history-item.history-2015-02 {
    width: 422px;
    margin-bottom: 50px;
    padding-right: 150px;
  }
  #oshmans_gramicci .history-item.history-2015-02 .item {
    top: -12px;
    right: -50px;
    width: 178px;
  }
  #oshmans_gramicci .history-item.history-2020 {
    margin-top: 30px;
  }
  #oshmans_gramicci .history-item.history-2020-02 {
    padding-right: 210px;
    margin-top: -40px;
  }
  #oshmans_gramicci .history-item.history-2020-02 .item {
    top: -88px;
    right: 11px;
    width: 204px;
  }
  #oshmans_gramicci .history-item.history-2025 {
    position: absolute;
    right: 0;
    bottom: -80px;
    display: flex;
    gap: 24px;
    margin-top: 30px;
  }
  #oshmans_gramicci .history-item.history-2025 .logo {
    width: 82px;
    flex-shrink: 0;
  }
  #oshmans_gramicci .history .summary {
    position: relative;
    width: 850px;
    margin: 0 auto;
    border-top: 1px solid var(--color-orange);
    border-bottom: 1px solid var(--color-orange);
    background: #FFF;
    z-index: 2;
  }
  #oshmans_gramicci .history .summary dt {
    font-size: 40px;
    line-height: 1;
    text-align: center;
    padding: 35px 38px 12px;
    background: rgba(60, 18, 18, .1);
  }
  #oshmans_gramicci .history .summary dd {
    font-size: 20px;
    line-height: 1.9;
    font-weight: 500;
    padding: 0 38px 32px;
    margin: 0;
    background: rgba(60, 18, 18, .1);
  }
  #oshmans_gramicci .history .img02 {
    position: absolute;
    left: 75px;
    bottom: 564px;
    z-index: 3;
    width: 436px;
  }
  #oshmans_gramicci .history .period {
    position: relative;
    color: #FFF;
    font-size: 60px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-orange);
    margin: 20px 0 0 630px;
    z-index: 2;
  }
  #oshmans_gramicci .history .period:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -59px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FFF;
    border: 1px solid var(--color-orange);
  }
  #oshmans_gramicci .product {
    margin: 0 0 160px;
  }
  #oshmans_gramicci .product .intro {
    position: relative;
    width: 1168px;
    margin: 0 auto;
    padding: 0 0 130px 62px;
  }
  #oshmans_gramicci .product .intro .area-title {
    left: -27px;
  }
  #oshmans_gramicci .product .intro h2 {
    margin: 0 0 30px;
  }
  #oshmans_gramicci .product .intro .img {
    position: absolute;
    right: -360px;
    bottom: 0;
  }
  #oshmans_gramicci .product .classic {
    position: relative;
    padding: 110px 0 100px;
    margin: 0 0 250px;
    background: url(../img/bg_classic.jpg) no-repeat center / cover;
  }
  #oshmans_gramicci .product .classic .inner {
    position: relative;
    width: 1205px;
    margin: 0 auto;
  }
  #oshmans_gramicci .product .classic h2 {
    color: #FFF;
    font-size: 54px;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    padding: 7px 0 0;
    margin: 0 0 40px;
  }
  #oshmans_gramicci .product .classic .info p {
    color: #FFF;
    width: 320px;
  }
	#oshmans_gramicci .product .classic .info a {
		text-decoration: underline;
		transition: .3s;
	}
	#oshmans_gramicci .product .classic .info a:hover {
		color: #e94921;
  }
  #oshmans_gramicci .product .classic .item {
    position: absolute;
    top: -245px;
    right: 130px;
  }
  #oshmans_gramicci .product .classic h4 {
    position: absolute;
    top: 165px;
    left: 200px;
    font-size: 70px;
    transform: rotate(-2deg);
    z-index: 1;
  }
  #oshmans_gramicci .product .classic .copy {
    position: absolute;
    top: 310px;
    left: 155px;
    transform: rotate(6deg);
    z-index: 1;
  }
  #oshmans_gramicci .product .copy span {
    display: inline-block;
    color: #FFF;
    font-size: 36px;
    font-weight: bold;
    writing-mode: vertical-lr;
    text-orientation: upright;
    background: var(--color-orange);
    letter-spacing: 4px;
    padding: 20px 1px;
  }
  #oshmans_gramicci .product .copy span span {
    writing-mode: horizontal-tb;
    padding: 0 0 4px;
    line-height: 1;
    letter-spacing: 0;
  }
  #oshmans_gramicci .product .classic .item .img {
    position: relative;
  }
  #oshmans_gramicci .product .classic .item .img-line {
    position: absolute;
    right: 2px;
    bottom: 0;
  }
  #oshmans_gramicci .product .classic .item .hidden-img {
    position: absolute;
    right: 71px;
    bottom: 55px;
  }
  #oshmans_gramicci .product .classic .comment {
    position: absolute;
    right: -110px;
    bottom: 260px;
    width: 170px;
    color: #FFF;
    font-size: 20px;
  }
  #oshmans_gramicci .product > .inner {
    display: flex;
    flex-direction: column;
    width: 1240px;
  }
  #oshmans_gramicci .product-item {
    position: relative;
    margin: 0 0 100px;
    padding: 0 0 0 190px;
    width: 100%;
    order: 3;
  }
  #oshmans_gramicci .product-item:nth-child(-n+3) {
    order: 1;
  }
  #oshmans_gramicci .product-item:nth-child(even) {
    padding: 0 190px 0 0;
  }
  #oshmans_gramicci .product-item:last-of-type {
    margin: 0;
  }
  #oshmans_gramicci .product-item .head {
    display: flex;
    gap: 30px;
    border-top: 1px solid #3C1212;
    border-bottom: 1px solid #3C1212;
    margin: 0 0 30px;
  }
  #oshmans_gramicci .product-item:nth-child(even) .head {
    padding: 0 0 0 535px;
  }
  #oshmans_gramicci .product-item:nth-child(6) .head {
    padding: 0 0 0 655px;
  }
  #oshmans_gramicci .product-item .head h2 {
    font-size: 54px;
    padding: 7px 0 0;
  }
  #oshmans_gramicci .product-item .head .special-order {
    transform: rotate(20deg);
    margin: -44px 0 0;
  }
  #oshmans_gramicci .product-item .copy {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 10px;
  }
  #oshmans_gramicci .product-item:nth-child(even) .copy {
    left: auto;
    right: 0;
  }
  #oshmans_gramicci .product-item .item {
    position: absolute;
    top: 0;
  }
  #oshmans_gramicci .product-item:nth-child(1) .item {
    right: -33px;
  }
  #oshmans_gramicci .product-item:nth-child(2) .item {
    left: 20px;
  }
  #oshmans_gramicci .product-item:nth-child(3) .item {
    right: 40px;
  }
  #oshmans_gramicci .product-item:nth-child(5) .item {
    right: -40px;
  }
  #oshmans_gramicci .product-item:nth-child(6) .item {
    width: 855px;
    top: 10px;
    left: -220px;
  }
  #oshmans_gramicci .product-item:nth-child(7) .item {
    width: 658px;
    top: -50px;
    right: 0;
  }
  #oshmans_gramicci .product-item:nth-child(8) .item {
    width: 709px;
    top: -40px;
    left: -70px;
  }
  #oshmans_gramicci .product-item .info {
    width: 510px;
    margin: 0 0 70px;
  }
	#oshmans_gramicci .product-item .info a {
    text-decoration: underline;
		transition: .3s;
	}
	#oshmans_gramicci .product-item .info a:hover {
    color: #e94921;
  }
  #oshmans_gramicci .product-item:nth-child(even) .info {
    margin-left: auto;
  }
  #oshmans_gramicci .product-item:nth-child(6) .info,
  #oshmans_gramicci .product-item:nth-child(7) .info,
  #oshmans_gramicci .product-item:nth-child(8) .info {
    position: relative;
    width: 390px;
  }
  #oshmans_gramicci .product-item:nth-child(7) .info .special-order {
    position: absolute;
    top: -10px;
    right: -100px;
  }
  #oshmans_gramicci .product-item:nth-child(8) .info .special-order {
    position: absolute;
    top: -10px;
    left: -120px;
    transform: rotate(20deg);
  }
  #oshmans_gramicci .product-item .detail {
    position: relative;
    width: 359px;
  }
  #oshmans_gramicci .product-item:nth-child(even) .detail {
    margin-left: 540px;
  }
  #oshmans_gramicci .product-item:nth-child(6) .detail,
  #oshmans_gramicci .product-item:nth-child(8) .detail {
    margin-left: 660px;
  }
  #oshmans_gramicci .product-item .detail h4 {
    position: absolute;
    color: var(--color-red);
    font-size: 64px;
    line-height: .9;
    transform: rotate(8deg);
  }
  #oshmans_gramicci .product-item:nth-child(even) .detail h4 {
    right: auto;
    transform: rotate(-8deg);
  }
  #oshmans_gramicci .product-item:nth-child(1) .detail h4 {
    top: -16px;
    right: -185px;
    rotate: 8deg;
  }
  #oshmans_gramicci .product-item:nth-child(2) .detail h4 {
    top: 50px;
    left: -184px;
    rotate: -8deg;
  }
  #oshmans_gramicci .product-item:nth-child(3) .detail h4 {
    top: -40px;
    right: -255px;
    rotate: 8deg;
  }
  #oshmans_gramicci .product-item:nth-child(4) .detail h4 {
    top: 100px;
    left: -122px;
    rotate: -8deg;
  }
  #oshmans_gramicci .product-item:nth-child(5) .detail h4 {
    top: -60px;
    right: -233px;
    rotate: 8deg;
  }
  #oshmans_gramicci .product-item:nth-child(6) .detail h4 {
    top: 300px;
    left: -325px;
    width: 370px;
    rotate: 8deg;
  }
  #oshmans_gramicci .product-item:nth-child(7) .detail h4 {
    right: -265px;
    bottom: -5px;
    rotate: -8deg;
  }
  #oshmans_gramicci .product-item:nth-child(8) .detail h4 {
    left: -207px;
    bottom: -30px;
    rotate: 8deg;
  }
  #oshmans_gramicci .product-item .detail .comment {
    position: absolute;
    left: -155px;
    bottom: 0;
    font-size: 20px;
    line-height: 1.6;
    width: 140px;
  }
  #oshmans_gramicci .product-item:nth-child(even) .detail .comment {
    left: auto;
    right: -155px;
  }
  #oshmans_gramicci .product .column {
    color: #FFF;
    padding: 50px 168px 65px;
    margin: 0 0 120px;
    background: var(--color-red);
    border-top: 1px solid #3C1212;
    border-bottom: 1px solid #3C1212;
    order: 2;
  }
  #oshmans_gramicci .product .column h2 {
    color: #3C1212;
    font-size: 54px;
    line-height: 1;
    text-align: center;
    margin: 0 0 15px;
  }
  #oshmans_gramicci .product .column h3 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px;
  }
  #oshmans_gramicci .product .column .text {
    margin: 0 0 25px;
  }
  #oshmans_gramicci .product .column ul {
    display: flex;
    justify-content: center;
    gap: 13px;
  }
  #oshmans_gramicci .product .column li {
    width: 214px;
  }
  #oshmans_gramicci .voice {
    margin: 0 0 130px;
  }
  #oshmans_gramicci .voice .inner {
    width: 1240px;
  }
  #oshmans_gramicci .voice .intro {
    display: flex;
    justify-content: space-between;
    padding: 0 0 0 140px;
    margin: 0 0 80px;
  }
  #oshmans_gramicci .voice .area-title {
    left: 55px;
  }
  #oshmans_gramicci .voice .title-area {
    width: 550px;
  }
  #oshmans_gramicci .voice h2 {
    margin: 0 0 30px;
  }
  #oshmans_gramicci .voice .profile {
    width: 520px;
  }
  #oshmans_gramicci .voice .ttl-profile {
    font-size: 36px;
    line-height: 1;
    text-align: center;
    margin: 0 0 12px;
  }
  #oshmans_gramicci .voice .profile ul {
    display: flex;
    justify-content: space-between;
  }
  #oshmans_gramicci .voice .profile li {
    width: 234px;
  }
  #oshmans_gramicci .voice .profile li .name {
    font-size: 26px;
    line-height: 1;
    font-weight: bold;
    text-align: center;
    margin: 18px 0 12px;
  }
  #oshmans_gramicci .voice .profile li p {
    font-size: 20px;
    line-height: 1.6;
  }
  #oshmans_gramicci .voice h3 {
    color: var(--color-orange);
    font-size: 32px;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    margin: 0 0 55px;
  }
  #oshmans_gramicci .voice .subtitle {
    width: 490px;
    margin: 0 auto 40px;
    padding: 18px 0;
    font-weight: bold;
    text-align: center;
    border: 1px solid #3C1212;
  }
  #oshmans_gramicci .voice-box {
    position: relative;
    margin: 0 0 50px;
  }
  #oshmans_gramicci .voice-box:last-child {
    margin: 0;
  }
  #oshmans_gramicci .voice-box .question {
    width: 1186px;
    font-size: 26px;
    font-weight: bold;
    margin: 0 auto 35px;
  }
  #oshmans_gramicci .voice-box .comment {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin: 0 0 40px;
  }
  #oshmans_gramicci .voice-box .comment.saito {
    flex-direction: row-reverse;
  }
  #oshmans_gramicci .voice-box .comment:last-child,
  #oshmans_gramicci .voice-box.voice01 .comment:nth-child(5),
  #oshmans_gramicci .voice-box.voice02 .comment:nth-child(3),
  #oshmans_gramicci .voice-box.voice02 .comment:nth-child(8) {
    margin-bottom: 0;
  }
  #oshmans_gramicci .voice-box.voice01 .comment:last-child {
    margin-top: -30px;
  }
  #oshmans_gramicci .voice-box.voice02 .comment:nth-child(4) {
    margin: -30px 0 130px;
  }
  #oshmans_gramicci .voice-box.voice06 .comment:nth-child(4) {
    margin-bottom: 320px;
  }
  #oshmans_gramicci .voice-box.voice07 .comment:nth-child(3) {
    width: 755px;
  }
  #oshmans_gramicci .voice-box .comment .text {
    position: relative;
    display: flex;
    align-items: center;
    width: 1026px;
    min-height: 146px;
    background: #FFF;
    padding: 38px 54px;
    line-height: 1.5;
  }
  #oshmans_gramicci .voice-box .comment .text:after {
    content: '';
    position: absolute;
    top: calc(50% - 16px);
    border-style: solid;
    border-width: 16px 0 16px 28px;
    border-color: transparent transparent transparent #FFF;
  }
  #oshmans_gramicci .voice-box .comment.kaji .text:after {
    right: -26px;
  }
  #oshmans_gramicci .voice-box .comment.saito .text:after {
    left: -26px;
    transform: scale(-1, 1);
  }
  #oshmans_gramicci .voice-box.voice01 .comment:nth-child(5) .text {
    width: 420px;
    margin-right: auto;
  }
  #oshmans_gramicci .voice-box.voice01 .comment:nth-child(6) .text {
    width: 618px;
    margin-left: auto;
  }
  #oshmans_gramicci .voice-box.voice02 .comment:nth-child(4) .text {
    width: 350px;
    margin-right: auto;
  }
  #oshmans_gramicci .voice-box.voice06 .comment:nth-child(3) .text {
    width: 410px;
    margin-right: auto;
  }
  #oshmans_gramicci .voice-box.voice07 .comment:nth-child(2) .text {
    width: 536px;
    margin-right: auto;
  }
  #oshmans_gramicci .voice-box.voice07 .comment:nth-child(3) .text {
    width: 528px;
    margin-left: auto;
  }
  #oshmans_gramicci .voice-box .comment .name {
    font-weight: bold;
    text-align: center;
    padding: 178px 0 0;
    width: 168px;
  }
  #oshmans_gramicci .voice-box .comment.kaji .name {
    background: url(../img/img_kaji.png) no-repeat center top / 100%;
  }
  #oshmans_gramicci .voice-box .comment.saito .name {
    background: url(../img/img_saito.png) no-repeat center top / 100%;
  }
  #oshmans_gramicci .voice-box .addition {
    width: 532px;
    margin: -20px auto 0;
  }
  #oshmans_gramicci .voice-box .addition p {
    font-size: 20px;
    line-height: 1.6;
    margin: 12px 0 0;
  }
  #oshmans_gramicci .voice-box.voice04 .addition {
    margin-bottom: 40px;
  }
  #oshmans_gramicci .voice-box .addition02 {
    position: absolute;
    top: 345px;
    right: 110px;
    z-index: 1;
  }
  #oshmans_gramicci .voice-box .addition02 p {
    position: absolute;
    left: -72px;
    bottom: 120px;
    font-size: 20px;
    line-height: 1.6;
    width: 140px;
  }
  #oshmans_gramicci .voice-box .addition03 {
    position: absolute;
    top: 725px;
    right: 300px;
    z-index: 1;
  }
  #oshmans_gramicci .voice-box .addition03 p {
    position: absolute;
    left: -230px;
    bottom: 35px;
    font-size: 20px;
    line-height: 1.6;
    width: 220px;
  }
  #oshmans_gramicci .voice-box .addition04 {
    position: absolute;
    top: -40px;
    right: -70px;
    width: 540px;
  }
  #oshmans_gramicci .vision {
    margin: 0 0 90px;
  }
  #oshmans_gramicci .vision .inner {
    width: 1180px;
  }
  #oshmans_gramicci .vision .intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 0 0 80px;
    margin: 0 0 60px;
  }
  #oshmans_gramicci .vision .title-area {
    width: 530px;
  }
  #oshmans_gramicci .vision h2 {
    margin: 0 0 20px;
  }
  #oshmans_gramicci .vision .interviewee {
    width: 500px;
  }
  #oshmans_gramicci .vision .interviewee .head {
    width: 375px;
    height: 94px;
    font-weight: bold;
    text-align: center;
    padding: 13px 0 0;
    margin: 0 0 5px;
    background: url(../img/img_comment.png) no-repeat center;
  }
  #oshmans_gramicci .vision .interviewee .profile {
    display: flex;
    justify-content: space-between;
  }
  #oshmans_gramicci .vision .interviewee .info {
    width: 236px;
  }
  #oshmans_gramicci .vision .interviewee .name {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
  }
  #oshmans_gramicci .vision .interviewee .info p {
    font-size: 20px;
    line-height: 1.6;
  }
  #oshmans_gramicci .vision .interviewee .logo {
    width: 235px;
    padding: 55px 0 0;
  }
  #oshmans_gramicci .vision-contents {
    padding: 85px 80px 90px;
    border-radius: 100px;
    border: 1px solid var(--color-red);
  }
  #oshmans_gramicci .vision-contents dl {
    position: relative;
    margin: 0 0 40px;
  }
  #oshmans_gramicci .vision-contents dl:last-child {
    margin: 0;
  }
  #oshmans_gramicci .vision-contents dt {
    margin: 0 0 40px;
    padding: 0 0 0 19px;
    background: url(../img/img_vision_comment01.png) no-repeat left top 25px;
  }
  #oshmans_gramicci .vision-contents dl:nth-child(3) dt {
    width: 510px;
  }
  #oshmans_gramicci .vision-contents dt p {
    display: inline-block;
    background: #FFF;
    padding: 15px 40px;
    border-radius: 40px;
    font-weight: bold;
  }
  #oshmans_gramicci .vision-contents dd {
    width: 726px;
    margin: 0 0 0 auto;
    background: url(../img/icon_gramicci.png) no-repeat right top, url(../img/img_vision_comment02.png) no-repeat right 152px top 65px;
  }
  #oshmans_gramicci .vision-contents dd p {
    color: #FFF;
    width: 550px;
    padding: 35px 40px;
    border-radius: 30px;
    background: var(--color-red);
  }
  #oshmans_gramicci .vision-contents .img01 {
    position: absolute;
    top: 50px;
    left: 85px;
    z-index: 1;
    transform: rotate(-5deg);
  }
  #oshmans_gramicci .vision-contents .img02 {
    position: absolute;
    top: -120px;
    right: 96px;
  }
  #oshmans_gramicci .vision-contents .img03 {
    position: absolute;
    top: 105px;
    left: -145px;
  }
  #oshmans_gramicci .vision-contents .img04 {
    position: absolute;
    right: -125px;
    bottom: -185px;
    z-index: 1;
  }
  #oshmans_gramicci .staff .inner {
    width: 1180px;
  }
  #oshmans_gramicci .staff .intro {
    position: relative;
    padding: 0 0 0 80px;
    margin: 0 0 50px;
  }
  #oshmans_gramicci .staff .title-area {
    width: 530px;
  }
  #oshmans_gramicci .staff h2 {
    margin: 0 0 20px;
  }
  #oshmans_gramicci .staff .intro .img {
    position: absolute;
    top: 0;
    right: -20px;
  }
  #oshmans_gramicci .staff .popular {
    position: relative;
    margin: 0 0 80px;
  }
  #oshmans_gramicci .staff .question {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 10px;
  }
  #oshmans_gramicci .staff .popular .question {
    position: absolute;
    top: 0;
    left: 80px;
  }
  #oshmans_gramicci .staff .request .question {
    justify-content: flex-end;
  }
  #oshmans_gramicci .staff .question:before {
    content: 'Q';
    position: absolute;
    color: #F5EBDC;
    font-size: 140px;
    line-height: 1;
    font-family: "Gravitas One", sans-serif;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #3C1212;
  }
  #oshmans_gramicci .staff .popular .question:before {
    left: -85px;
    bottom: 40px;
  }
  #oshmans_gramicci .staff .request .question:before {
    top: 15px;
    left: 125px;
  }
  #oshmans_gramicci .staff .question span {
    position: relative;
    display: inline-block;
    color: #FFF;
    font-size: 36px;
    font-weight: bold;
    writing-mode: vertical-lr;
    background: #3C1212;
    letter-spacing: 4px;
    padding: 12px 1px;
    z-index: 1;
  }
  #oshmans_gramicci .staff .popular .img {
    position: absolute;
    top: 380px;
    left: 80px;
  }
  #oshmans_gramicci .staff .popular ul {
    display: flex;
    flex-wrap: wrap;
  }
  #oshmans_gramicci .staff .popular li {
    position: relative;
    width: 100%;
    margin: 0 0 32px;
  }
  #oshmans_gramicci .staff .popular li.item01 {
    padding: 0 0 0 555px;
    border-bottom: 2px dashed #3C1212;
  }
  #oshmans_gramicci .staff .popular li.item02 {
    padding: 40px 0 30px 40px;
    width: 50%;
    border-right: 2px dashed #3C1212;
  }
  #oshmans_gramicci .staff .popular li.item03 {
    padding: 40px 40px 30px 0;
    width: 50%;
  }
  #oshmans_gramicci .staff .popular li.item04 {
    border-top: 2px dashed #3C1212;
    padding: 60px 0 0;
    margin: 0;
  }
  #oshmans_gramicci .staff .popular h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    line-height: 1.1;
    text-align: center;
    min-height: 73px;
  }
	#oshmans_gramicci .staff .popular h3 a {
		text-decoration: underline;
    transition: .2s;
	}
	#oshmans_gramicci .staff .popular h3 a:hover {
    color: #e94921;
  }
  #oshmans_gramicci .staff .popular li.item04 h3 {
    position: absolute;
    top: 60px;
    left: 120px;
  }
  #oshmans_gramicci .staff .popular .item-img {
    text-align: center;
  }
  #oshmans_gramicci .staff .popular li.item01 .item-img img {
    transform: translateX(74px);
  }
  #oshmans_gramicci .staff .popular li.item02 .item-img img {
    transform: translateX(64px);
  }
  #oshmans_gramicci .staff .popular li.item03 .item-img img {
    transform: translateX(60px);
  }
  #oshmans_gramicci .staff .popular li.item04 .item-img {
    width: 474px;
    margin: 0 auto;
  }
  #oshmans_gramicci .staff .popular div[class^="comment"] {
    position: absolute;
    writing-mode: vertical-rl;
    border: 2px solid var(--color-orange);
    border-radius: 40px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--color-orange);
    padding: 47px 21px 47px 25px;
  }
  #oshmans_gramicci .staff .popular div[class^="comment"]:after {
    content: '';
    position: absolute;
    top: 50px;
    left: -26px;
    width: 26px;
    height: 22px;
    background: url(../img/img_staff_comment.png);
  }
  #oshmans_gramicci .staff .popular .comment-l:after {
    left: auto;
    right: -26px;
    transform: scale(-1, 1);
  }

  #oshmans_gramicci .staff .popular div[class^="comment"] span {
    font-weight: bold;
  }
  #oshmans_gramicci .staff .popular li.item01 .comment-l {
    top: 100px;
    left: 495px;
  }
  #oshmans_gramicci .staff .popular li.item01 .comment-r {
    top: 180px;
    right: 0;
  }
  #oshmans_gramicci .staff .popular li.item02 .comment-l {
    top: 230px;
    left: 0;
  }
  #oshmans_gramicci .staff .popular li.item03 .comment-r {
    top: 230px;
    right: 0;
  }
  #oshmans_gramicci .staff .popular li.item04 .comment-l {
    top: 155px;
    left: 225px;
  }
  #oshmans_gramicci .staff .popular li.item04 .comment-r {
    top: 240px;
    right: 260px;
  }
  #oshmans_gramicci .staff .popular li.item04 .comment-l:last-child {
    top: auto;
    bottom: 0;
    left: 225px;
  }
  #oshmans_gramicci .staff .request {
    position: relative;
    display: flex;
  }
  #oshmans_gramicci .staff .request .img {
    position: absolute;
    top: 140px;
    left: 155px;
    width: 258px;
  }
  #oshmans_gramicci .staff .request .comment {
    position: relative;
    width: 680px;
    height: 618px;
    margin: 0 0 0 300px;
  }
  #oshmans_gramicci .staff .request .comment li {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    min-width: 334px;
    border-radius: 40px;
    border: 1px solid #F5EBDC;
    color: #FFF;
    font-size: 26px;
    line-height: 1.38;
    padding: 25px 30px;
  }
  #oshmans_gramicci .staff .request .comment li.orange {
    background: var(--color-orange);
  }
  #oshmans_gramicci .staff .request .comment li.orange:after {
    content: '';
    position: absolute;
    bottom: -25px;
    width: 22px;
    height: 26px;
    background: url(../img/img_staff_comment02.png);
  }
  #oshmans_gramicci .staff .request .comment li.red {
    background: var(--color-red);
  }
  #oshmans_gramicci .staff .request .comment li.red:after {
    content: '';
    position: absolute;
    bottom: -25px;
    width: 22px;
    height: 26px;
    background: url(../img/img_staff_comment03.png);
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(1) {
    top: 0;
    left: 0;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(1):after {
    left: 90px;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(2) {
    top: 76px;
    right: 0;
    z-index: 2;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(2):after {
    right: 90px;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(3) {
    top: 190px;
    left: 66px;
    z-index: 1;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(3):after {
    right: 90px;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(4) {
    top: 334px;
    right: 28px;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(4):after {
    right: 58px;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(5) {
    left: 0;
    bottom: 100px;
    z-index: 1;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(5):after {
    left: 90px;
    transform: scale(-1, 1);
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(6) {
    right: 130px;
    bottom: 0;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(6):after {
    left: 150px;
    transform: scale(-1, 1);
  }
	#oshmans_gramicci .btn_link {
    text-align: center;
    margin-top: 185px;
	}
	#oshmans_gramicci .btn_link a {
    display: inline-block;
    width: 585px;
  }
}

@media screen and (max-width: 770px) {
  #oshmans_gramicci .pc {
    display: none !important;
  }
  #oshmans_gramicci {
    color: #3C1212;
    font-size: 13px;
    line-height: 1.54;
    background: #F5EBDC;
    padding: 0 0 50px;
    font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    overflow-x: hidden;
  }
  #oshmans_gramicci .mv {
    position: relative;
    padding: 30px 0 25px;
    background: var(--color-orange);
    z-index: 1;
  }
  #oshmans_gramicci .mv:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-red);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: -1;
  }
  #oshmans_gramicci .mv h1 {
    margin: 0 auto 8px;
    width: calc(100% * 671 / 750);
  }
  #oshmans_gramicci .mv .img {
    position: relative;
  }
  #oshmans_gramicci .mv .img img:not(.hidden-img) {
    width: calc(100% * 638 / 750);
    margin: 0 auto;
  }
  #oshmans_gramicci .mv .img .hidden-img {
    position: absolute;
    top: -2.9vw;
    left: -7.5%;
    width: 115%;
    max-width: unset;
  }
  #oshmans_gramicci .mv .comment {
    color: #FFF;
    font-size: 12px;
    line-height: 1.83;
    text-align: center;
  }
  #oshmans_gramicci .history {
    background: #FFF;
    padding: 50px 0 55px;
  }
  #oshmans_gramicci .history .intro {
    position: relative;
    padding: 0 20px 0 75px;
    margin: 0 0 8px;
  }
  #oshmans_gramicci .area-title {
    position: absolute;
    top: 0;
    left: 25px;
    color: #F5EBDC;
    font-size: 32px;
    line-height: 1;
    -webkit-text-stroke-width: .5px;
    -webkit-text-stroke-color: #3C1212;
    writing-mode: vertical-lr;
  }
  #oshmans_gramicci .history .area-title {
    color: #FFF;
  }
  #oshmans_gramicci .history h2 {
    margin: 0 0 15px;
  }
  #oshmans_gramicci .intro .text {
    line-height: 1.85;
  }
  #oshmans_gramicci .history .intro .img {
    max-width: unset;
    width: calc(100% + 55px);
    transform: translateX(-55px);
    margin: -12px 0 0;
  }
  #oshmans_gramicci .history-detail {
    position: relative;
  }
  #oshmans_gramicci .history-detail:before {
    content: '';
    position: absolute;
    top: 40px;
    left: 30px;
    transform: translateX(-50%);
    width: 2px;
    height: 110px;
    background: #FFF;
    border-right: 2px dashed var(--color-orange);
    z-index: 1;
  }
  #oshmans_gramicci .history-detail:after {
    content: '';
    position: absolute;
    top: 50px;
    left: 30px;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: var(--color-orange);
  }
  #oshmans_gramicci .history-item {
    position: relative;
    margin: 0 45px 0 60px;
    z-index: 2;
  }
  #oshmans_gramicci .history-item .event {
    position: relative;
    color: #FFF;
    font-size: 13px;
    font-weight: bold;
    background: var(--color-orange);
    padding: 11px 20px;    
  }
  #oshmans_gramicci .history-item .event:after {
    content: '';
    position: absolute;
    top: calc(50% - 8px);
    left: -12px;
    border-style: solid;
    border-width: 8px 12px 8px 0;
    border-color: transparent var(--color-orange) transparent transparent;
  }
  #oshmans_gramicci .history-item.history-item-red .event {
    background: var(--color-red);
  }
  #oshmans_gramicci .history-item.history-item-red .event:after {
    border-color: transparent var(--color-red) transparent transparent;
  }
  #oshmans_gramicci .history-item.history-item-gray .event {
    color: #3C1212;
    background: rgba(60, 18, 18, .2);
  }
  #oshmans_gramicci .history-item.history-item-gray .event:after {
    border-color: transparent rgba(60, 18, 18, .2) transparent transparent;
  }
  #oshmans_gramicci .history-item.history-1998-02 .event,
  #oshmans_gramicci .history-item.history-2004-02 .event,
  #oshmans_gramicci .history-item.history-2015-02 .event,
  #oshmans_gramicci .history-item.history-2020-02 .event {
    width: 75%;
  }
  #oshmans_gramicci .history-item.history-2025 .event {
    padding-right: 0;
  }
  #oshmans_gramicci .history-item .year {
    position: absolute;
    top: -25px;
    left: 18px;
    color: var(--color-orange);
    font-size: 32px;
    line-height: 1;
  }
  #oshmans_gramicci .history-item.history-item-red .year {
    color: var(--color-red);
  }
  #oshmans_gramicci .history-item.history-1933:before {
    content: '';
    position: absolute;
    top: 32px;
    left: -39px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-orange);
    z-index: 1;
  }
  #oshmans_gramicci .history-item.history-1982 {
    width: 54%;
    margin-bottom: 54px;
  }
  #oshmans_gramicci .history-item.history-1985,
  #oshmans_gramicci .history-item.history-1998,
  #oshmans_gramicci .history-item.history-1998-02,
  #oshmans_gramicci .history-item.history-2004,
  #oshmans_gramicci .history-item.history-2015 {
    margin-bottom: 25px;
  }
  #oshmans_gramicci .history-item.history-2004-02 {
    margin-bottom: 20px;
  }
  #oshmans_gramicci .history-item.history-2011 {
    margin-bottom: 40px;
  }
  #oshmans_gramicci .history-item.history-2020 {
    margin-bottom: 33px;
  }
  #oshmans_gramicci .history-item.history-2020-02 {
    margin-bottom: 55px;
  }
  #oshmans_gramicci .history-item.history-2025 {
    display: flex;
  }
  #oshmans_gramicci .history-item .item {
    position: absolute;
  }
  #oshmans_gramicci .history-item.history-1982 .item {
    right: -37%;
    bottom: -18%;
    width: calc(100vw * 178/750);
  }
  #oshmans_gramicci .history-item.history-1998-02 .item {
    top: -5%;
    left: 62%;
    width: calc(100vw * 270/750);
  }
  #oshmans_gramicci .history-item.history-2004-02 .item {
    top: -19%;
    left: 65%;
    width: calc(100vw * 188/750);
  }
  #oshmans_gramicci .history-item.history-2015-02 .item {
    top: 0;
    left: 70%;
    width: calc(100vw * 186/750);
  }
  #oshmans_gramicci .history-item.history-2020-02 .item {
    top: -27%;
    left: 66%;
    width: calc(100vw * 206/750);
  }
  #oshmans_gramicci .history-item .img {
    margin: 10px 0 0;
  }
  #oshmans_gramicci .history-item .logo {
    background: var(--color-orange);
    padding: 11px 10px;
    flex-shrink: 0;
  }
  #oshmans_gramicci .history-item .logo img {
    width: calc(100vw * 136 / 750 );
  }
  #oshmans_gramicci .history .summary {
    position: relative;
    margin: 40px 0 20px;
    border-top: 1px solid var(--color-orange);
    border-bottom: 1px solid var(--color-orange);
    background: #FFF;
    z-index: 2;
  }
  #oshmans_gramicci .history .summary dt {
    font-size: 28px;
    line-height: 1;
    text-align: center;
    padding: 28px 30px 12px;
    background: rgba(60, 18, 18, .1);
  }
  #oshmans_gramicci .history .summary dd {
    font-size: 12px;
    line-height: 2;
    font-weight: 500;
    padding: 0 30px 25px;
    margin: 0;
    background: rgba(60, 18, 18, .1);
  }
  #oshmans_gramicci .history .img02 + .summary {
    margin-top: -6vw;
  }
  #oshmans_gramicci .history .period {
    position: relative;
    color: #FFF;
    font-size: 36px;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--color-orange);
    margin: 0 0 35px 60px;
    z-index: 2;
  }
  #oshmans_gramicci .history .period:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -39px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #FFF;
    border: 1px solid var(--color-orange);
  }
  #oshmans_gramicci .history .img02 {
    position: relative;
    width: calc(100vw * 568 / 750);
    margin: 0 auto;
    z-index: 3;
  }
  #oshmans_gramicci .product {
    position: relative;
    padding: 35px 0 60px;
  }
  #oshmans_gramicci .product:before {
    content: "";
    position: absolute;
    top: -41vw;
    left: 0;
    width: 100%;
    height: 41vw;
    background: #F5EBDC;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
  }
  #oshmans_gramicci .product .area-title {
    top: 42px;
  }
  #oshmans_gramicci .product .intro h2 {
    padding: 0 20px 0 75px;
    margin: 0 0 18px;
  }
  #oshmans_gramicci .product h2 img {
    width: calc(100vw * 525 / 750);
  }
  #oshmans_gramicci .product .intro .text {
    padding: 0 20px 0 75px;
  }
  #oshmans_gramicci .product .intro .img {
    margin: -10px 0 0;
  }
  #oshmans_gramicci .product .classic {
    position: relative;
    padding: 0 0 20px;
    margin: 0 0 55px;
    background: url(../img/bg_classic.jpg) repeat-y center / 960px;
  }
  #oshmans_gramicci .product .classic .img {
    position: relative;
    z-index: 1;
  }
  #oshmans_gramicci .product .classic .img .img-line {
    position: absolute;
    right: .1%;
    bottom: 7.3%;
    width: calc(100vw * 581 / 750);
  }
  #oshmans_gramicci .product .classic .img .hidden-img {
    position: absolute;
    right: 3%;
    bottom: 11%;
    width: calc(100vw * 477 / 750);
  }
  #oshmans_gramicci .product .classic .info {
    color: #FFF;
    padding: 0 27.5% 0 20px;
    margin: -7.5% 0 0;
  }
  #oshmans_gramicci .product .classic h2 {
    position: absolute;
    top: 0;
    right: 10px;
    border-right: 1px solid #FFF;
    border-left: 1px solid #FFF;
    color: #FFF;
    font-size: 28px;
    height: 100%;
    writing-mode: vertical-lr;
    margin: 0;
    padding: 0 5px 25px 5px;
    text-align: right;
  }
  #oshmans_gramicci .product .classic .info p {
    line-height: 2;
  }
	#oshmans_gramicci .product .classic .info a {
		text-decoration: underline;
  }
  #oshmans_gramicci .product .inner {
    display: flex;
    flex-wrap: wrap;
  }
  #oshmans_gramicci .product-item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin: 0 0 40px;
    width: 100%;
    order: 3;
  }
  #oshmans_gramicci .product-item:last-of-type {
    margin: 0;
  }
  #oshmans_gramicci .product-item:nth-child(1),
  #oshmans_gramicci .product-item:nth-child(2),
  #oshmans_gramicci .product-item:nth-child(3) {
    order: 1;
  }
  #oshmans_gramicci .product-item .head {
    position: relative;
    font-size: 24px;
    line-height: 1;
    padding: 7px 18px 4px;
    border-top: 1px solid #3C1212;
    border-bottom: 1px solid #3C1212;
    width: 100%;
  }
  #oshmans_gramicci .product-item .head .special-order {
    position: absolute;
    width: 47px;
  }
  #oshmans_gramicci .product .copy {
    position: absolute;
    top: 60px;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 3px;
  }
  #oshmans_gramicci .product .copy span {
    display: inline-block;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    writing-mode: vertical-lr;
    text-orientation: upright;
    background: var(--color-orange);
    letter-spacing: 4px;
    padding: 7px 3px 6px;
    white-space: nowrap;
  }
  #oshmans_gramicci .product-item:nth-child(2) .copy > span:first-child {
    min-height: 123px;
  }
  #oshmans_gramicci .product .copy span span {
    writing-mode: horizontal-tb;
    padding: 0 0 4px;
    line-height: 1;
    letter-spacing: 0;
  }
  #oshmans_gramicci .product-item .item {
    position: relative;
    z-index: 1;
  }
  #oshmans_gramicci .product-item .info {
    padding: 0 20px;
    width: 60%;
    line-height: 2;
  }
	#oshmans_gramicci .product-item .info a {
    text-decoration: underline;
  }
  #oshmans_gramicci .product-item .detail {
    position: relative;
    width: 40%;
    padding: 0 0 0 20px;
  }
  #oshmans_gramicci .product-item .detail h4 {
    position: absolute;
    color: var(--color-red);
    font-size: 32px;
    line-height: 1;
    max-width: unset;
    z-index: 1;
  }
  #oshmans_gramicci .product-item .comment {
    font-size: 10px;
    margin: 4px 0 0;
  }
  #oshmans_gramicci .product-item:nth-child(1) .head .special-order {
    top: 25px;
    left: 114px;
  }
  #oshmans_gramicci .product-item:nth-child(1) .copy {
    left: 40px;
  }
  #oshmans_gramicci .product-item:nth-child(1) .item {
    width: calc(100% * 502 / 750);
    margin: -19vw -2% 0 auto;
  }
  #oshmans_gramicci .product-item:nth-child(1) .detail {
    margin-top: -12%;
  }
  #oshmans_gramicci .product-item:nth-child(1) .detail h4 {
    top: -50%;
    left: 73%;
    rotate: 9deg;
    width: 155px;
  }
  #oshmans_gramicci .product-item:nth-child(2) .head {
    text-align: right;
    padding-right: 43px;
  }
  #oshmans_gramicci .product-item:nth-child(2) .head .special-order {
    top: -1px;
    right: 118px;
  }
  #oshmans_gramicci .product-item:nth-child(2) .copy {
    right: 40px;
  }
  #oshmans_gramicci .product-item:nth-child(2) .item {
    width: calc(100% * 440 / 750);
    margin: -9vw -2% 0 0;
  }
  #oshmans_gramicci .product-item:nth-child(2) .detail {
    padding: 0 20px 0 0;
    margin-top: -10%;
  }
  #oshmans_gramicci .product-item:nth-child(2) .detail h4 {
    top: -31%;
    left: -19%;
    rotate: 6deg;
    text-align: right;
  }
  #oshmans_gramicci .product-item:nth-child(3) .head {
    text-align: center;
  }
  #oshmans_gramicci .product-item:nth-child(3) .head .special-order {
    top: 26px;
    left: 35%;
  }
  #oshmans_gramicci .product-item:nth-child(3) .copy {
    left: 40px;
  }
  #oshmans_gramicci .product-item:nth-child(3) .item {
    width: calc(100% * 410 / 750);
    margin: 3.5vw 0% 0 calc(100% - 100% * 410 / 750);
  }
  #oshmans_gramicci .product-item:nth-child(3) .detail {
    margin-top: -12%;
  }
  #oshmans_gramicci .product-item:nth-child(3) .detail h4 {
    top: -41%;
    left: 66%;
    rotate: -5deg;
  }
  #oshmans_gramicci .product-item:nth-child(4) .head .special-order {
    top: -1px;
    left: 50%;
    rotate: 29deg;
  }
  #oshmans_gramicci .product-item:nth-child(4) .copy {
    right: 40px;
  }
  #oshmans_gramicci .product-item:nth-child(4) .item {
    width: calc(100% * 516 / 750);
    margin: 7vw 0 0 -6%;
  }
  #oshmans_gramicci .product-item:nth-child(4) .detail {
    padding: 0 20px 0 0;
    margin-top: -10%;
  }
  #oshmans_gramicci .product-item:nth-child(4) .detail h4 {
    top: -60%;
    left: 21%;
    rotate: 8deg;
    text-align: right;
  }
  #oshmans_gramicci .product-item:nth-child(5) .head {
    text-align: right;
  }
  #oshmans_gramicci .product-item:nth-child(5) .head .special-order {
    top: 10px;
    left: 35%;
  }
  #oshmans_gramicci .product-item:nth-child(5) .copy {
    left: 40px;
  }
  #oshmans_gramicci .product-item:nth-child(5) .item {
    width: calc(100% * 604 / 750);
    margin: 3vw -7% 0 auto;
  }
  #oshmans_gramicci .product-item:nth-child(5) .detail {
    margin-top: -10%;
  }
  #oshmans_gramicci .product-item:nth-child(5) .detail h4 {
    top: -64%;
    left: 26%;
    rotate: -5deg;
  }
  #oshmans_gramicci .product-item:nth-child(6) .head .special-order {
    top: 11px;
    left: 50%;
    rotate: 26deg;
  }
  #oshmans_gramicci .product-item:nth-child(6) .copy {
    right: 40px;
    z-index: 2;
  }
  #oshmans_gramicci .product-item:nth-child(6) .item {
    width: calc(100% * 800 / 750);
    margin: 0 0 0 -20%;
  }
  #oshmans_gramicci .product-item:nth-child(6) .detail {
    padding: 0 20px 0 0;
    margin-top: -10%;
  }
  #oshmans_gramicci .product-item:nth-child(6) .detail h4 {
    top: -46%;
    right: 21%;
    rotate: 8deg;
    text-align: right;
  }
  #oshmans_gramicci .product-item:nth-child(7) .copy {
    top: 0;
    left: 40px;
    z-index: 2;
  }
  #oshmans_gramicci .product-item:nth-child(7) .item {
    width: calc(100% * 740 / 750);
    margin: -9% -12% 0 auto;
  }
  #oshmans_gramicci .product-item:nth-child(7) .detail {
    margin-top: -10%;
  }
  #oshmans_gramicci .product-item:nth-child(7) .detail h4 {
    top: -51%;
    left: 19%;
    rotate: -5deg;
  }
  #oshmans_gramicci .product-item:nth-child(7) .item + .info {
    padding: 0;
    width: auto;
  }
  #oshmans_gramicci .product-item:nth-child(7) .special-order {
    position: absolute;
    top: 27%;
    left: 5%;
    width: 47px;
  }
  #oshmans_gramicci .product-item:nth-child(8) .copy {
    top: 0;
    right: 40px;
    z-index: 2;
  }
  #oshmans_gramicci .product-item:nth-child(8) .item {
    width: calc(100% * 790 / 750);
    margin: -11% 0 0 -19%;
  }
  #oshmans_gramicci .product-item:nth-child(8) .detail {
    margin-top: -10%;
  }
  #oshmans_gramicci .product-item:nth-child(8) .detail h4 {
    top: -43%;
    left: -7%;
    text-align: right;
    rotate: 5deg;
  }
  #oshmans_gramicci .product-item:nth-child(8) .special-order {
    position: absolute;
    top: -5%;
    right: 30%;
    width: 47px;
    z-index: 2;
    rotate: 25deg;
  }
  #oshmans_gramicci .product .column {
    color: #FFF;
    padding: 25px 30px 28px;
    margin: 0 0 30px;
    background: var(--color-red);
    border-top: 1px solid #3C1212;
    border-bottom: 1px solid #3C1212;
    order: 2;
  }
  #oshmans_gramicci .product .column h2 {
    color: #3C1212;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    margin: 0 0 15px;
  }
  #oshmans_gramicci .product .column h3 {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 12px;
  }
  #oshmans_gramicci .product .column .text {
    font-size: 12px;
    margin: 0 0 15px;
  }
  #oshmans_gramicci .product .column ul {
    display: flex;
    justify-content: center;
    gap: 2px;
  }
  #oshmans_gramicci .product .column li {
    flex: 1;
  }
  #oshmans_gramicci .voice {
    padding: 0 20px 40px;
  }
  #oshmans_gramicci .voice .intro {
    position: relative;
    margin: 0 0 25px;
  }
  #oshmans_gramicci .voice .title-area {
    margin: 0 0 25px;
    padding: 0 0 0 50px;
  }
  #oshmans_gramicci .voice .area-title {
    left: 0;
  }
  #oshmans_gramicci .voice h2 {
    margin: 0 0 15px;
  }
  #oshmans_gramicci .voice h2 img {
    width: calc(100vw * 551 / 750);
  }
  #oshmans_gramicci .voice h3 {
    color: var(--color-orange);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.75;
    text-align: center;
    margin: 0 0 30px;
  }
  #oshmans_gramicci .voice .ttl-profile {
    font-size: 16px;
    line-height: 1;
    text-align: center;
    margin: 0 0 10px;
  }
  #oshmans_gramicci .voice .profile ul {
    display: flex;
    gap: 40px;
  }
  #oshmans_gramicci .voice .profile li {
    width: calc((100% - 40px) / 2);
  }
  #oshmans_gramicci .voice .profile .name {
    font-weight: bold;
    text-align: center;
    margin: 7px 0 2px;
  }
  #oshmans_gramicci .voice .profile li p {
    font-size: 10px;
    line-height: 1.4;
  }
  #oshmans_gramicci .voice .subtitle {
    width: 245px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #3C1212;
    margin: 0 auto 20px;
    padding: 9px 0;
  }
  #oshmans_gramicci .voice-box {
    position: relative;
    margin: 0 0 40px;
  }
  #oshmans_gramicci .voice-box:last-child {
    margin: 0;
  }
  #oshmans_gramicci .voice-box .question {
    line-height: 1.62;
    font-weight: bold;
    margin: 0 0 20px;
  }
  #oshmans_gramicci .voice-box .comment {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin: 0 0 18px;
  }
  #oshmans_gramicci .voice-box .comment:last-child {
    margin: 0;
  }
  #oshmans_gramicci .voice-box .comment.saito {
    flex-direction: row-reverse;
  }
  #oshmans_gramicci .voice-box .comment .text {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    background: #FFF;
    padding: 11px 15px;
    line-height: 1.54;
  }
  #oshmans_gramicci .voice-box .comment .text:after {
    content: '';
    position: absolute;
    top: 23px;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #FFF;
  }
  #oshmans_gramicci .voice-box .comment.kaji .text:after {
    right: -11px;
  }
  #oshmans_gramicci .voice-box .comment.saito .text:after {
    left: -11px;
    transform: scale(-1, 1);
  }
  #oshmans_gramicci .voice-box .comment .name {
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    padding: 60px 0 0;
    width: 56px;
  }
  #oshmans_gramicci .voice-box .comment.kaji .name {
    background: url(../img/img_kaji.png) no-repeat center top / 100%;
  }
  #oshmans_gramicci .voice-box .comment.saito .name {
    background: url(../img/img_saito.png) no-repeat center top / 100%;
  }
  #oshmans_gramicci .voice-box.voice01 .comment:nth-child(5) .text:after,
  #oshmans_gramicci .voice-box.voice02 .comment:nth-child(4) .text:after,
  #oshmans_gramicci .voice-box.voice06 .comment:nth-child(3) .text:after {
    top: 13px;
  }
  #oshmans_gramicci .voice .addition {
    width: 57%;
    margin: 0 auto 30px;
  }
  #oshmans_gramicci .voice .addition p,
  #oshmans_gramicci .voice .addition03 p {
    font-size: 10px;
    line-height: 1.4;
    margin: 5px 0 0;
  }
  #oshmans_gramicci .voice .addition02 {
    position: relative;
    margin: -15vw 0 25px;
  }
  #oshmans_gramicci .voice .addition02 p {
    position: absolute;
    right: 9vw;
    bottom: 7%;
    font-size: 10px;
    line-height: 1.4;
    width: 74px;
    text-align: justify;
  }
  #oshmans_gramicci .voice .addition02 .img {
    width: calc(100vw * 330 / 750);
    margin: 0 auto;
  }
  #oshmans_gramicci .voice .addition03 {
    width: 78%;
    margin: -10px auto 30px;
  }
  #oshmans_gramicci .voice .addition04 {
    position: relative;
    width: calc(100vw * 582 / 750);
    margin: -13vw auto 0;
    z-index: 1;
  }
  #oshmans_gramicci .vision {
    padding: 0 20px 58px;
  }
  #oshmans_gramicci .vision .intro {
    position: relative;
    margin: 0 0 25px;
  }
  #oshmans_gramicci .vision .area-title {
    left: 0;
  }
  #oshmans_gramicci .vision .title-area {
    padding: 0 0 0 50px;
    margin: 0 0 25px;
  }
  #oshmans_gramicci .vision h2 {
    margin: 0 0 10px;
  }
  #oshmans_gramicci .vision h2 img {
    width: calc(100vw * 551 / 750);
  }
  #oshmans_gramicci .vision .interviewee .head {
    width: 188px;
    height: 50px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 9px 0 0;
    margin: 0 auto;
    background: url(../img/img_comment.png) no-repeat center / 100%;
  }
  #oshmans_gramicci .vision .interviewee .profile {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 12px;
    padding: 0 15px;
  }
  #oshmans_gramicci .vision .interviewee .info {
    flex: 1;
  }
  #oshmans_gramicci .vision .interviewee .name {
    font-weight: bold;
    margin: 0 0 3px;
  }
  #oshmans_gramicci .vision .interviewee .info p {
    font-size: 10px;
    line-height: 1.4;
  }
  #oshmans_gramicci .vision .interviewee .logo {
    width: 39%;
    padding: 5px 0 0;
  }
  #oshmans_gramicci .vision-contents {
    padding: 30px 20px 30px 28px;
    border-radius: 30px;
    border: 1px solid var(--color-red);
  }
  #oshmans_gramicci .vision-contents dl {
    position: relative;
    margin: 0 0 15px;
  }
  #oshmans_gramicci .vision-contents dl:nth-child(4) {
    z-index: 2;
  }
  #oshmans_gramicci .vision-contents dl:last-child {
    margin: 0;
  }
  #oshmans_gramicci .vision-contents dt {
    margin: 0 0 13px -10px;
    padding: 0 0 0 10px;
    background: url(../img/img_vision_comment01.png) no-repeat left top 15px / 10px;
  }
  #oshmans_gramicci .vision-contents dt p {
    display: inline-block;
    background: #FFF;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: bold;
    line-height: 1.615;
  }
  #oshmans_gramicci .vision-contents dd {
    padding: 0 74px 0 0;
    margin: 0;
    background: url(../img/icon_gramicci.png) no-repeat right top / 56px, url(../img/img_vision_comment02.png) no-repeat right 62px top 30px / 12px;
  }
  #oshmans_gramicci .vision-contents dd p {
    color: #FFF;
    padding: 18px 20px;
    border-radius: 15px;
    background: var(--color-red);
  }
  #oshmans_gramicci .vision-contents dl:first-child dd p {
    width: 80%;
    margin: 0 0 0 auto;
  }
  #oshmans_gramicci .vision-contents .img01 {
    position: absolute;
    top: 22vw;
    left: -14vw;
    width: calc(100vw * 237 / 750);
    z-index: 1;
  }
  #oshmans_gramicci .vision-contents .img02 {
    position: absolute;
    top: -35vw;
    right: -20vw;
    width: calc(100vw * 359 / 750);
  }
  #oshmans_gramicci .vision-contents .img03 {
    position: absolute;
    top: 35vw;
    right: -26vw;
    width: calc(100vw * 409 / 750);
    z-index: 1;
  }
  #oshmans_gramicci .vision-contents .img04 {
    position: absolute;
    right: -26vw;
    bottom: -17vw;
    width: calc(100vw * 392 / 750);
    z-index: 1;
  }
  #oshmans_gramicci .staff {
    position: relative;
    padding: 0 20px;
  }
  #oshmans_gramicci .staff .title-area {
    padding: 0 0 0 50px;
    margin: 0 0 10px;
  }
  #oshmans_gramicci .staff h2 {
    margin: 0 0 10px;
  }
  #oshmans_gramicci .staff h2 img {
    width: calc(100vw * 520 / 750);
  }
  #oshmans_gramicci .staff .popular {
    position: relative;
    margin: 0 0 50px;
  }
  #oshmans_gramicci .staff .question {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 6px;
    margin: 0 0 40px;
  }
  #oshmans_gramicci .staff .question:before {
    content: 'Q';
    position: absolute;
    color: #F5EBDC;
    font-size: 64px;
    line-height: 1;
    font-family: "Gravitas One", sans-serif;
    -webkit-text-stroke-width: .5px;
    -webkit-text-stroke-color: #3C1212;
  }
  #oshmans_gramicci .staff .popular .question:before {
    left: -4px;
    bottom: -25px;
  }
  #oshmans_gramicci .staff .request .question:before {
    left: 55px;
    bottom: 4px;
  }
  #oshmans_gramicci .staff .question span {
    position: relative;
    display: inline-block;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    writing-mode: vertical-lr;
    background: #3C1212;
    letter-spacing: 4px;
    padding: 7px 3px;
    z-index: 1;
  }
  #oshmans_gramicci .staff .popular .img {
    position: absolute;
    top: 4vw;
    right: 2vw;
    width: calc(100vw * 374 / 750);
  }
  #oshmans_gramicci .staff .popular li {
    position: relative;
    border-bottom: 1px dashed #3C1212;
    text-align: center;
  }
  #oshmans_gramicci .staff .popular li:last-child {
    border: 0;
  }
  #oshmans_gramicci .staff .popular li h3 {
    font-size: 20px;
    line-height: 1.15;
    margin: 0 0 10px;
  }
	#oshmans_gramicci .staff .popular li h3 a {
		text-decoration: underline;
  }
  #oshmans_gramicci .staff .popular li .item-img {
    margin: 0 auto;
  }
  #oshmans_gramicci .staff .popular div[class^="comment"] {
    position: absolute;
    writing-mode: vertical-rl;
    border: 1.5px solid var(--color-orange);
    border-radius: 20px;
    font-size: 10px;
    color: var(--color-orange);
    padding: 22px 11px;
    text-align: left;
  }
  #oshmans_gramicci .staff .popular div[class^="comment"]:before {
    content: '';
    position: absolute;
    top: 50px;
    left: -13px;
    width: 13px;
    height: 11px;
    background: #F5EBDC;
  }
  #oshmans_gramicci .staff .popular div[class^="comment"]:after {
    content: '';
    position: absolute;
    top: 50px;
    left: -13px;
    width: 13px;
    height: 11px;
    background: url(../img/img_staff_comment.png) no-repeat center / 100%;
  }
  #oshmans_gramicci .staff .popular .comment-l:before {
    left: auto;
    right: -13px;
  }
  #oshmans_gramicci .staff .popular .comment-l:after {
    left: auto;
    right: -13px;
    transform: scale(-1, 1);
  }
  #oshmans_gramicci .staff .popular div[class^="comment"] span {
    font-weight: bold;
  }
  #oshmans_gramicci .staff .popular li.item01 {
    padding: 0 0 12px;
  }
  #oshmans_gramicci .staff .popular li.item01 .item-img {
    width: calc(100vw * 454 / 750);
  }
  #oshmans_gramicci .staff .popular li.item01 .item-img img {
    transform: translateX(6%);
  }
  #oshmans_gramicci .staff .popular li.item01 .comment-l {
    top: 16vw;
    left: 2vw;
  }
  #oshmans_gramicci .staff .popular li.item01 .comment-r {
    top: 19vw;
    right: -1vw;
  }
  #oshmans_gramicci .staff .popular li.item02 {
    padding: 30px 0;
  }
  #oshmans_gramicci .staff .popular li.item02 .item-img {
    width: calc(100vw * 458 / 750);
  }
  #oshmans_gramicci .staff .popular li.item02 .item-img img {
    transform: translateX(1%);
  }
  #oshmans_gramicci .staff .popular li.item02 .comment-l {
    top: 30vw;
    right: 0;
  }
  #oshmans_gramicci .staff .popular li.item02 .comment-l:before,
  #oshmans_gramicci .staff .popular li.item02 .comment-l:after {
    right: auto;
    left: -13px;
    transform: scale(1, 1);
  }
  #oshmans_gramicci .staff .popular li.item03 {
    padding: 30px 0 35px;
  }
  #oshmans_gramicci .staff .popular li.item03 .item-img {
    width: calc(100vw * 412 / 750);
  }
  #oshmans_gramicci .staff .popular li.item03 .item-img img {
    transform: translateX(1%);
  }
  #oshmans_gramicci .staff .popular li.item03 .comment-r {
    top: 27vw;
    right: 0;
  }
  #oshmans_gramicci .staff .popular li.item04 {
    padding: 30px 0 0;
  }
  #oshmans_gramicci .staff .popular li.item04 .item-img {
    width: calc(100vw * 474 / 750);
  }
  #oshmans_gramicci .staff .popular li.item04 .item-img img {
    transform: translateX(1%);
  }
  #oshmans_gramicci .staff .popular li.item04 .comment-l {
    top: 28vw;
    left: 4vw;
  }
  #oshmans_gramicci .staff .popular li.item04 .comment-l:last-child {
    top: 70vw;
    left: 4vw;
  }
  #oshmans_gramicci .staff .popular li.item04 .comment-l:last-child:before {
    display: none;
  }
  #oshmans_gramicci .staff .popular li.item04 .comment-r {
    top: 41vw;
    right: 2vw;
  }
  #oshmans_gramicci .staff .request {
    position: relative;
  }
  #oshmans_gramicci .staff .request .img {
    position: absolute;
    top: 0;
    right: 6vw;
    width: calc(100vw * 354 / 750);
  }
  #oshmans_gramicci .staff .request .comment {
    position: relative;
    height: 309px;
  }
  #oshmans_gramicci .staff .request .comment li {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    min-width: 160px;
    border-radius: 20px;
    border: 1px solid #F5EBDC;
    color: #FFF;
    font-size: 13px;
    line-height: 1.38;
    padding: 10px 17px;
  }
  #oshmans_gramicci .staff .request .comment li.orange {
    background: var(--color-orange);
  }
  #oshmans_gramicci .staff .request .comment li.orange:after {
    content: '';
    position: absolute;
    bottom: -12px;
    width: 11px;
    height: 13px;
    background: url(../img/img_staff_comment02.png) no-repeat center / 100%;
  }
  #oshmans_gramicci .staff .request .comment li.red {
    background: var(--color-red);
  }
  #oshmans_gramicci .staff .request .comment li.red:after {
    content: '';
    position: absolute;
    bottom: -12px;
    width: 11px;
    height: 13px;
    background: url(../img/img_staff_comment03.png) no-repeat center / 100%;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(1) {
    top: 0;
    left: 0;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(1):after {
    left: 45px;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(2) {
    top: 38px;
    right: 0;
    z-index: 2;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(2):after {
    right: 45px;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(3) {
    top: 95px;
    left: 33px;
    z-index: 1;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(3):after {
    right: 45px;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(4) {
    top: 164px;
    right: 20px;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(4):after {
    right: 58px;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(5) {
    left: 0;
    bottom: 60px;
    z-index: 1;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(5):after {
    left: 45px;
    transform: scale(-1, 1);
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(6) {
    right: 60px;
    bottom: 0;
  }
  #oshmans_gramicci .staff .request .comment li:nth-child(6):after {
    left: 70px;
    transform: scale(-1, 1);
  }
	#oshmans_gramicci .btn_link {
    text-align: center;
    margin-top: 85px;
	}
	.btn_link a {
		display: inline-block;
		width: min(100% - 80px, 295px);
  }
}