@charset "utf-8";

:root {
  --main-font: 'Zen Kaku Gothic New',"游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  --head-font: 'Shippori Mincho',"游ゴシック体","Yu Gothic",YuGothic,"メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  --main-color: #0f0f23;
  --sub-color: #18183e;
  --grad-color1: rgba(180, 209, 188, 1);
  --grad-color2: rgba(163, 204, 219, 1);
  --grad-color3: rgba(143, 153, 210, 1);
  --grad-color4: rgba(189, 133, 201, 1);
  --grad-color5: rgba(216, 152, 176, 1);
  --gradient: linear-gradient(90deg, var(--grad-color1), var(--grad-color2) 25%, var(--grad-color3) 50%, var(--grad-color4) 75%, var(--grad-color5));
}


/*----------------------------------

animation

----------------------------------*/
@keyframes bodyFadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
 
@-webkit-keyframes bodyFadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}



/*----------------------------------

mv

----------------------------------*/
.mv {
  background: url(../img/mv.jpg) no-repeat center center;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  font-weight: 700;
  position: relative;
}

.mv .credit {
  position: absolute;
  right: 50px;
  bottom: 15px;
  color: #fff;
  z-index: 999;
}

.mv > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  align-items: center;
  background: var(--main-color);
  color: #fff;
  padding: 16px 50px 20px;
}

.mv .head {
  letter-spacing: .14em;
  font-size: 1.5rem;
  background: -webkit-linear-gradient(left, var(--grad-color1), var(--grad-color2) 25%, var(--grad-color3) 50%, var(--grad-color4) 75%, var(--grad-color5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mv h1 {
  font-size: 2.2rem;
  font-family: var(--head-font);
  padding-left: 1em;
}

.mv h1 em {
  padding-left: .5em;
}

.mv .date {
  letter-spacing: .14em;
  font-size: 1.5rem;
  margin-left:auto;
}

.mv .date span {
  font-size: 1.2rem;
  padding-left: .5em;
}


@media screen and (max-width: 960px) {

.mv .credit {
  right: min(5%, 30px);
}

.mv > div {
  flex-direction: column;
  padding: 20px 0;
  text-align: center;
}

.mv .head {
  font-size: min(3.6vw, 1.5rem);
  padding-bottom: 8px;
}

.mv h1 {
  font-size: min(4.2vw, 2.2rem);
  padding-left: 0;
  line-height: 1.5;
  margin: 0 min(5%, 30px);
}

.mv .date {
  margin-left: 0;
  font-size: min(3.6vw, 1.5rem);
  padding-top: 8px;
}

}


@media screen and (max-width: 768px) {

.mv {
  background-size: contain;
  background-position: center bottom;
  height: 86vw;  
}

.mv > div {
  padding: 16px 0 18px;
}


}


@media screen and (max-width: 420px) {

.mv {
  background-size: contain;
  background-position: center bottom;
  height: 98vw;  
}

}

/*----------------------------------

about

----------------------------------*/
.about {
  background: var(--main-color);
  padding: 120px 0 140px;
  position: relative;
}

.about .om1 {
  width: 100px;
  position: absolute;
  top: 7%;
  left: 5%;
  opacity: .3;
}

.about .om2 {
  width: 200px;
  position: absolute;
  top: 18%;
  right: 10%;
  opacity: .3;
}

.about .om3 {
  width: 200px;
  position: absolute;
  bottom: -9%;
  left: 19%;
  opacity: .3;
}

.about .txt {
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}

.about .txt h2 {
  background: -webkit-linear-gradient(left, var(--grad-color1), var(--grad-color2) 25%, var(--grad-color3) 50%, var(--grad-color4) 75%, var(--grad-color5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.8rem;
  font-family: var(--head-font);
  padding-bottom: 25px;
  display: inline-block;
}

.about .txt .read {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.7;
}

.about .txt .read span {
  padding-right: 1em;
}

.about .txt .read em {
  font-size: 3rem;
  display: block;
  font-weight: 700;
}

.about .lineup {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.about .lineup section {
  width: 48%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  background: var(--gradient);
  padding: 10px 10px 30px;
  text-align: center;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
}

.about .lineup section::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 3px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: content-box;
  content: "";
}

.about .lineup h3 {
  font-size: 2rem;
  font-weight: 700;
  background: var(--main-color);
  color: #fff;
  border-radius: 5px;
  padding: 16px 0;
  margin-bottom: 40px;
}

.about .lineup figure {
  width: 70%;
  margin: auto;
  border: solid 1px #ddd;
  position: relative;
}

.about .lineup figure figcaption {
  position: absolute;
  margin-top: 10px;
  right: 0;

}

.about .lineup .cds {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 45px;
  line-height: 1.4;
}

.about .lineup .price {
  font-size: 1.6rem;
  margin-top: 15px;
}

.about .lineup .price span {
  font-size: 1rem;
}

.about .lineup .accessory {
  margin: 30px 20px 0;
  padding-top: 25px;
  font-size: 1.5rem;
  border-top: solid 2px var(--main-color);
  border-image: var(--gradient);
  border-image-slice: 1;
  line-height: 1.6;
  text-align: left;
  font-weight: 700;
}

.about .lineup .accessory p {
  text-align: center;
}

.about .lineup .press {
  margin: 30px 20px 0;
  padding: 30px;
  line-height: 1.6;
  text-align: left;
  font-weight: 700;
  font-size: 1.4rem;
  background: #eff0f5;
  border-radius: 20px;
  text-align: center;
}

.about .lineup .press h4 {
  color: #fff;
  font-weight: 700;
  background: var(--main-color);
  padding: 8px 20px;
  display: inline-block;
  border-radius: 90px;
  line-height: 1.3;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.about .lineup .press p {
  text-align: left;
}


.about .songs {
  margin-top: 40px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  background: var(--gradient);
  padding: 50px;
  text-align: center;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
}

.about .songs::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 3px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: content-box;
  content: "";
}

.about .songs header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  text-align: left;
  display: inline-block;
  border-bottom: solid 2px var(--main-color);
  border-image: var(--gradient);
  border-image-slice: 1;
  position: relative;
}

.about .songs header h4 {
  font-weight: 700;
  line-height: 1.3;
  font-size: 1.8rem;
}

.about .songs header .note {
  position: absolute;
  bottom: 22px;
  right: 0;
  font-size: 1.3rem;
  line-height: 1.5;
}

.about .songs ul {
  width: 48%;
}

.about .songs li {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 15px;
}

.about .songs > div {
  text-align: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.about .songs .btn {
  margin-top: 40px;
  line-height: 1.6;
}

.about .songs .btn a:after {
  display: none;
}

.author::after {
  content: "文：小栁大輔(ROCKIN'ON JAPAN)";
  font-size: 1.2rem;
  text-align: right;
  padding-top: 20px;
  display: block;
}



@media screen and (max-width: 768px) {

.about {
  padding: 60px 0;
}

.about .om1 {
  width: 50px;
  top: 3%;
  left: 6%;
}

.about .om2 {
  width: 100px;
  top: 15%;
  right: 19%;
}

.about .om3 {
  width: 80px;
  bottom: -3%;
  left: 13%;
}

.about .txt {
  margin-bottom: min(10vw, 50px);
}

.about .txt h2 {
  font-size: min(5vw, 2.6rem);
}

.about .txt .read {
  font-size: min(3.5vw, 1.6rem);
}

.about .txt .read span {
  padding: 0;
}

.about .txt .read em {
  font-size: min(5.6vw, 3rem);
  padding-top: 5px;
}

.about .lineup {
  flex-direction: column;
}

.about .lineup h3 {
  font-size: min(4vw, 2rem);
  margin-bottom: 30px;
}

.about .lineup section::before {
  padding: 3px;
}

.about .lineup section {
  width: 100%;
  padding: 10px 10px 30px;
}

.about .lineup section:nth-of-type(2) {
  margin-top: 20px;
}

.about .lineup h2 {
  font-size: min(4vw, 2rem);
}

.about .lineup figure {
  width: 80%;
}

.about .lineup figure figcaption {
  font-size: min(2vw, 1rem);
}

.about .lineup .cds {
  font-size: min(4.8vw, 2.2rem);
  margin: 35px 20px 0;
}

.about .lineup .price {
  font-size: min(3.2vw, 1.6rem);
}

.about .lineup .accessory {
  font-size: min(3.6vw, 1.5rem);
}

.about .songs {
  padding: 40px 30px;
  margin-top: 20px;
}

.about .songs header {
  margin-bottom: 15px;
  padding-bottom: 15px;
  text-align: center;
}

.about .songs header h4 {
  font-size: min(3.8vw, 1.6rem);
}

.about .songs li {
  font-size: min(3.2vw, 1.4rem);
}

.about .songs > div {
  flex-direction: column;
}

.about .songs ul {
  width: 100%;
}

.about .lineup .press {
  padding: 20px;
}

.about .lineup .press h4 {
  font-size: min(3.6vw, 1.5rem);
  margin-bottom: 15px;
}

.about .lineup .press p {
  font-size: min(3.2vw, 1.4rem);
}

.about .songs header .note {
  font-size: min(3vw, 1.2rem);
  text-align: center;
  position: static;
  margin-top: 10px;
}

}



/*----------------------------------

news

----------------------------------*/
.news {
  padding: 110px 0 140px;
}

.news h2 {
  font-family: var(--head-font);
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 80px;
}

.news dl {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  line-height: 1.4;
  border-bottom: solid 2px var(--main-color);
  border-image: var(--gradient);
  border-image-slice: 1;
  padding-bottom: 22px;
}

.news dl:not(:first-of-type) {
  margin-top: 25px;
}

.news dt {
  font-size: 1.4rem;
  padding-top: 3px;
  margin-right: 40px;
  min-width: 130px;
  font-weight: 700;
}

.news dd {
  font-size: 1.6rem;
  font-weight: 700;
}

.poptxt {
  line-height: 1.8;
  font-size: 1.5rem;
  text-align: justify;
}

.poptxt p {
  margin-top: 20px;
}

.poptxt p:first-child {
  margin-top: 0;
}

.poptxt h3+ ul {
  margin-top: 20px;
}

.poptxt h3:first-child {
  margin-top: 0;
}

.poptxt h3 {
  margin: 40px 0 -10px;
  color: #fff;
  font-weight: 700;
  background: var(--main-color);
  padding: 8px 20px;
  display: inline-block;
  border-radius: 90px;
  line-height: 1.3;
}

.poptxt h3 span {
  font-size: 1.2rem;
}

.poptxt h4 {
  font-size: 2rem;
  line-height: 1.6;
  margin-top: 20px;
  border-bottom: solid 2px var(--main-color);
  border-image: var(--gradient);
  border-image-slice: 1;
  padding-bottom: 22px;
  margin-bottom: 30px;
}

.poptxt > section {
  border-radius: 20px;
  padding: 50px;
}

.poptxt > section:first-of-type {
  background: #f1eef3;
}

.poptxt > section:last-of-type {
  background: #eff0f5;
  margin-top: 50px;
}

.poptxt h5 {
  margin: 40px 0 -10px;
  color: var(--main-color);
  font-weight: 700;
  background: #fff;
  padding: 8px 20px;
  display: inline-block;
  border-radius: 90px;
  line-height: 1.3;
  font-size: 1.4rem;
  border: solid 2px var(--main-color);
}

.poptxt h4 + h5 {
  margin-top: 0;
}

.poptxt h6 {
  margin-top: 30px;
}

.poptxt sup {
  vertical-align: super;
  font-size: smaller;
}

.poptxt .sml {
  font-size: 1.1rem;
}

.poptxt .txtlink {
  margin-top: 40px;
}

.poptxt .txtlink span {
  display: block;
  border: solid 2px var(--main-color);
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  background: #fff;
  padding: 18px 10px;
  position: relative;
}

.poptxt .note {
  font-size: 1.2rem;
  font-weight: 400;
}

.jslink {
  transition: all .3s;
  cursor: pointer;
  display: inline-block;
}

.jslink:hover {
  transform: translateY(5px);
}

.news dl {
  transition: all .3s;
}

.news dl.is-hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  margin: 0;
  padding: 0;
}

.more {
  text-align: center;
  margin-top: 20px;
}

.more button {
  display: inline-block;
  border: solid 2px var(--main-color);
  border-radius: 90px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  background: #fff;
  padding: 18px 10px;
  position: relative;
  cursor: pointer;
  transition: all .3s;
  font-size: 1.2rem;
  padding: 12px 40px;
  letter-spacing: .18em;
}

.more button:hover {
  transform: translateY(5px);
}

.poptxt .two {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 10px;
}

.poptxt .two figure {
  width: 30%;
}

.poptxt .two > div {
  width: 65%;
}


@media screen and (max-width: 768px) {

.news {
  padding: 70px 0 90px;
}

.news h2 {
  font-size: max(2.2rem, 5vw);
  margin-bottom: 50px;
}

.news dl {
  flex-direction: column;
}

.news dt {
  font-size: 1.2rem;
  min-width: 100%;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 10px;
}

.news dd {
  font-size: min(3.6vw, 1.6rem);
}

.poptxt {
  margin-top: min(5vw, 40px);
}

.more button {
  font-size: min(3vw, 1.2rem);
}

.poptxt > section {
  padding: 40px 20px;
}

.poptxt h4 {
  font-size: min(4.2vw, 2rem);
}

.poptxt p,
.poptxt h6 {
  font-size: min(3.6vw, 1.6rem);
}

.poptxt .two {
  flex-direction: column;
}

.poptxt .two figure,
.poptxt .two > div {
  width: 100%;
}

.poptxt .two > div {
  margin-top: 30px;
}

}



/*----------------------------------

artsits

----------------------------------*/
.artists {
  background: var(--main-color);
  padding: 120px 0 140px;
  position: relative;
}

.artists .om1 {
  width: 160px;
  position: absolute;
  top: -8%;
  right: 5%;
  opacity: .3;
}

.artists .om2 {
  width: 160px;
  position: absolute;
  bottom: -6%;
  right: 20%;
  opacity: .3;
}

.artists h2 {
  font-family: var(--head-font);
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.artists .inner > .note {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 80px;
  color: #fff;
}

.artists .lists {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -15px;
  text-align: center;
}

.artists .lists > a {
  width: calc(33.33333% - 30px);
  margin: 0 15px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  background: var(--gradient);
  padding: 14px;
  text-align: center;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  align-items: center;
  position: relative;
}

.artists .lists > a:nth-of-type(n + 4) {
  margin-top: 20px;
}

.artists .lists > a.none {
  pointer-events: none;
}
 
.artists .lists > a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 3px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: content-box;
  content: "";
}

.artists .lists > a .new {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ed1515;
  color: #fff;
  font-weight: 700;
  height: 34px;
  width: 34px;
  line-height: 34px;
  border-radius: 40px;
  letter-spacing: 0.1em;
}

.artists .lists .name {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 700;
  padding: 20px 0;
}

.artists .lists .name span {
  font-size: 1.5rem;
}

.inmodal {
  display: none;
}

.incontent {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.incontent figure {
  width: 30%;
}

.incontent figure img {
  border-radius: 10px;
}

.incontent .txt {
  color: var(--main-color);
  font-weight: 700;
}

.incontent figure + .txt {
  width: 65%;
}

.incontent .txt .name {
  font-size: 2.6rem;
}

.incontent .txt .read {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 30px;
}

.incontent .txt .read p:not(:first-of-type) {
  margin-top: 10px;
}

.incontent .txt .read span.can {
  text-decoration: line-through;
}

.artists .more {
  text-align: center;
  font-weight: 700;
  font-size: 2.2rem;
  margin-top: 70px;
  color: #fff;
}

.artists .more span {
  display: block;
  font-size: 1.8rem;
  padding-top: 60px;
}



.modaal-close:after,
.modaal-close:before {
  border-radius: 0 !important;
  left: 24px !important;
  width: 2px !important;
}

.modaal-overlay {
  background: var(--sub-color) !important;
  opacity: 1 !important;
}

.modaal-fullscreen .modaal-outer-wrapper {
  display: table !important;
  width: 100%;
}

.modaal-image .modaal-inner-wrapper {
  display: table-cell !important;
  vertical-align: middle !important;
  max-height: 90vh;
  padding-left: 10% !important;
  padding-right: 10% !important;
}

.modaal-fullscreen .modaal-container {
  height: 80vh !important;
}

.modaal-gallery-item img {
  width: 80vh !important;
}

.modaal-container {
  border-radius: 10px !important;
}

.modaal-wrapper .modaal-close,
.modaal-fullscreen .modaal-close {
  background: var(--main-color) !important;
}

.modaal-close:focus,
.modaal-close:hover {
  background: var(--main-color) !important;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #fff !important;
}

.modaal-content-container {
  padding: 50px !important;
}



@media screen and (max-width: 768px) {

.artists {
  padding: 70px 0 90px;
}

.artists .om1 {
  width: 80px;
  top: -7%;
  right: 14%;
}

.artists .om2 {
  width: 80px;
  bottom: 3%;
  right: 62%;
}

.artists h2 {
  font-size: max(2.2rem, 5vw);
  margin-bottom: 20px;
  line-height: 1.4;
}

.artists .inner > .note {
  margin-bottom: 50px;
  font-size: 1.2rem;
}

.artists .lists {
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin: 0;
}

.artists .lists > a {
  width: 48%;
  margin: 0;
}

.artists .lists > a::before {
  padding: 3px;
}

.artists .lists .name {
  line-height: 1;
  font-size: min(2.2rem, 4vw);
  padding: 20px 0;
  line-height: 1.4;
}

.artists .lists > a .new {
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: .9rem;
  top: 8px;
  right: 8px;
}

.artists .lists .name span {
  font-size: min(3vw, 1.5rem);
}

.modaal-image .modaal-container {
  height: 80vw !important;
}

.artists .lists > a:nth-of-type(n + 3) {
  margin-top: min(4%, 20px);
}

.incontent {
  flex-direction: column;
}

.modaal-content-container {
  padding: 30px !important;
}

.incontent figure {
  width: 100%;
}

.incontent figure + .txt {
  width: 100%;
}

.incontent .txt .name {
  margin-top: min(5vw, 40px);
  font-size: min(5vw, 2.6rem);
}

.incontent .txt .read {
  font-size: min(3vw, 1.8rem);
  margin-top: min(5vw, 40px);
}

.artists .more {
  font-size: min(4.6vw, 2.2rem);
  margin-top: 50px;
}

.artists .more span {
  font-size: min(3vw, 1.6rem);
  padding-top: min(9vw, 60px);
}


}




/*----------------------------------

benefits

----------------------------------*/
.benefits {
  padding: 120px 0 140px;
  position: relative;
}

.benefits .om1 {
  width: 200px;
  position: absolute;
  top: 10%;
  left: 3%;
  opacity: .3;
}

.benefits .om2 {
  width: 180px;
  position: absolute;
  bottom: 8%;
  right: 10%;
  opacity: .3;
}

.benefits h2 {
  font-family: var(--head-font);
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 80px;
}

.benefits .lists {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.benefits .lists > section {
  width: calc(33.33333% - 30px);
  margin: 0 15px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  background: var(--gradient);
  padding: 2.5% 2.5% 40px;
  text-align: center;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
}

.benefits .lists > section:nth-of-type(n + 4) {
  margin-top: 30px;
}

.benefits .lists > section::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 3px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: content-box;
  content: "";
}

.benefits .lists h3 span {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--main-color);
  padding: 10px 25px;
  display: inline-block;
  border-radius: 90px;
  line-height: 1.3;
}

.benefits .lists figure {
  margin: auto auto 40px;
  width: 80%;
}

.benefits .lists > section:nth-of-type(3) figure,
.benefits .lists > section:nth-of-type(7) figure {
  width: 94%;
}

.benefits .lists .item {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 15px 0 30px;
}

.benefits .lists .btn {
  margin-top: auto;
}

.benefits .lists .note {
  font-size: 1.3rem;
  position: absolute;
  top: 116px;
  letter-spacing: .06em;
}

.spttxt {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 700;
  width: 100%;
}

.spttxt dt {
  font-size: 1.5rem;
  margin: 30px 0 20px;
  border-bottom: solid 2px var(--main-color);
  border-image: var(--gradient);
  border-image-slice: 1;
  padding-bottom: 10px;
}

.benefits .btn span {
  display: block;
  border: solid 2px var(--main-color);
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  background: #fff;
  padding: 18px 10px;
  position: relative;
}

.benefits .btn span:after {
  content: ">";
  position: absolute;
  right: 25px;
  top: calc(50% - .7em);
  font-size: 2.2rem;
  transform: scale(0.5, 1);
}



@media screen and (max-width: 768px) {

.benefits {
  padding: 70px 0 90px;
}

.benefits .om1 {
  width: 100px;
  top: -1%;
  left: 60%;
}

.benefits .om2 {
  width: 90px;
  bottom: 5%;
  right: 14%;
}

.benefits h2 {
  font-size: max(2.2rem, 5vw);
  margin-bottom: 50px;
  line-height: 1.4;
}

.benefits .lists {
  flex-direction: column;
  margin: 0;
}

.benefits .lists > section::before {
  padding: 3px;
}

.benefits .lists > section:nth-of-type(n + 4) {
  margin-top: 0;
}

.benefits .lists > section:nth-of-type(n + 2) {
  margin-top: 15px;
}

.benefits .lists > section {
  width: 100%;
  margin: 0;
  padding: 10% 8%;
}

.benefits .lists figure {
  margin: auto auto 30px;
}

.benefits .lists h3 span {
  font-size: min(3.2vw, 1.6rem);
}

.benefits .lists .item {
  font-size: min(4.2vw, 2.2rem);
  margin-bottom: 25px;
}

.benefits .lists .note {
  top: 112px;
  font-size: min(3.2vw, 1.3rem);
}


}




/*----------------------------------

goods

----------------------------------*/
.goods {
  background: var(--main-color);
  padding: 120px 0 140px;
  position: relative;
}

.goods .om1 {
  width: 120px;
  position: absolute;
  top: -4%;
  left: 12%;
  opacity: .3;
}

.goods .om2 {
  width: 190px;
  position: absolute;
  bottom: 28%;
  right: 4%;
  opacity: .3;
}

.goods .inner {
  text-align: center;
}

.goods h2 {
  font-family: var(--head-font);
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 30px;
  color: #fff;
}

.goods .limited {
  text-align: center;
  font-size: 1.8rem;
}

.goods .limited p {
  line-height: 1.8;
  color: #fff;
}

.goods .limited p span {
  font-size: 1.3rem;
}

.goods .lists ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 70px;
}

.goods .lists li {
  width: calc(33.33333% - 30px);
  margin: 0 15px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  background: var(--gradient);
  padding: 40px 2.5%;
  text-align: center;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
}

.goods .lists li:nth-of-type(n + 4) {
  margin-top: 30px;
}

.goods .lists li::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 3px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: content-box;
  content: "";
}

.goods .lists figure {
  margin: auto auto 40px;
}

.goods .lists .item {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 30px;
  line-height: 1.3;
}

.goods .lists .btn {
  margin-top: auto;
}

.goods .reserve {
  margin-top: 80px;
}

.goods .reserve a {
  display: inline-block;
  color: #fff;
  background: var(--main-color);
  border-radius: 10px;
  font-size: 1.6rem;
  text-align: center;
  padding:  26px 100px;
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  border: solid 2px #fff;
}

.goods .reserve a:after {
  content: ">";
  position: absolute;
  right: 25px;
  top: calc(50% - .7em);
  font-size: 2.2rem;
  transform: scale(0.5, 1);
}

.goods .txt {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.goods .note {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
}

.goods .txt figure {
  width: 100px;
  margin-left: 20px;
  transform: rotate(8deg);
}



@media screen and (max-width: 768px) {

.goods {
  padding: 70px 0 90px;
}

.goods .om1 {
  width: 80px;
  left: 22%;
}

.goods h2 {
  font-size: max(2.2rem, 5vw);
  margin-bottom: 20px;
  line-height: 1.4;
}

.goods .limited {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.goods .lists ul {
  flex-direction: column;
  margin: 0;
}

.goods .lists li::before {
  padding: 3px;
}

.goods .lists li:nth-of-type(n + 4) {
  margin-top: 0;
}

.goods .lists li:nth-of-type(n + 2) {
  margin-top: 15px;
}

.goods .lists li {
  width: 100%;
  margin: 0;
  padding: 10% 8%;
}

.goods .lists .item {
  font-size: min(4.2vw, 2.2rem);
}
    
.goods .reserve {
  margin-top: 40px;
}

.goods .reserve a {
  padding: 25px 20px;
  width: 100%;
  font-size: min(5vw, 2.4rem);
}

.goods .note {
  font-size: min(3vw, 1.4rem);
}



}




/*----------------------------------

profile

----------------------------------*/
.profile {
  padding: 140px 0;
  position: relative;
}

.profile .om1 {
  width: 140px;
  position: absolute;
  top: -4%;
  left: 10%;
  opacity: .3;
}

.profile .om2 {
  width: 150px;
  position: absolute;
  bottom: 20%;
  right: 16%;
  opacity: .3;
}

.profile figure {
  width: 65%;
  margin-left: 35%;
  z-index: 999;
  position: relative;
}

.profile figure img {
  border-radius: 10px;
}

.profile .txt {
  width: 65%;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  background: var(--gradient);
  padding: 6% 5%;
  margin-top: -8.5%;
}

.profile .txt::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 3px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: content-box;
  content: "";
}

.profile .txt h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  font-family: var(--head-font);
}

.profile .txt p {
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 700;
}



@media screen and (max-width: 768px) {

.profile {
  padding: 70px 0 90px;
}

.profile .om1 {
  width: 90px;
  top: -3%;
  left: 17%;
}

.profile .om2 {
  width: 80px;
  bottom: 2%;
  right: 26%;
}

.profile .txt::before {
  padding: 3px;
}

.profile figure {
  width: 100%;
  margin-left: 0;
}

.profile .txt {
  width: 100%;
  margin-top: 30px;
  padding: min(14%, 70px) 10%;
}

.profile .txt h2 {
  font-size: min(6vw, 3rem);
  margin-bottom: 30px;
}

.profile .txt p {
  font-size: min(3.6vw, 1.6rem);
}



}
