@charset "utf-8";
/* CSS Document */

html{
    font-size: 100%;
    font-family: 'Zen Old Mincho', serif;
}

body {
    position: relative;
    margin:0;
    font-size: 75%;
    font-weight: 900;
    line-height: 2;
    font-feature-settings: "palt";
    font-smoothing: auto;
    color: #000;
    background: #fff;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

a:link, a:visited, a:active, a:hover {
    text-decoration: none;
	color: #000;
}

a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer;
}

*:focus {
  outline: none;
}

ul,ol{
	list-style: none;
	padding: 0;
}

img{
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

h1,h2,h3,h4,h5{
	font-weight: 800;
    font-size: inherit;
}


header {
    position: fixed;
    display: flex;
    top: 0;
    z-index: 1000;
    padding: 1.5rem;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    width: 8rem;
    line-height: 1;
}

#head_logo .st0{
    fill:#FFF;
}

.scroll-nav #head_logo .st0{
    fill:#000;
}





.hamburger {
    display: block;
    position: relative;
    z-index: 101;
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    text-align: center;
    padding: 0;
    box-sizing: content-box;
    background: transparent;
    border: none;
}
	
.hamburger span {
  display : block;
  position: absolute;
  width   : 100%;
  height  : 2px ;
  background : #FFF;
  transition : background 0.7s ease ,transform 0.3s ease-in-out;
}
	
.scroll-nav .hamburger span {
  background : #000;
}

.hamburger span:nth-child(1) {
     top: 0;
}
.hamburger span:nth-child(2) {
    top: 12px;
}
.hamburger span:nth-child(3) {
    top: 24px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top: 12px;
    left: 0px;
    background: #000 !important;
    transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2){
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    top: 12px;
    right: 0px;
    background: #000 !important;
    transform: rotate(45deg);
}

nav.globalMenuSp {
	position: fixed;
	z-index : 100;
	top  : 0;
	left : 0;
	color: #4d4d4d;
	background: #fbfbf6;
	text-align: center;
	width: 0;
	height:0;
	opacity: 0;
    visibility: hidden;
	transition: opacity .6s ease, visibility .6s ease ,height .1s ease 1s ,width .1s ease 1s ;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
	width: 100%;
	height: 100vh;
    visibility: visible;
	transition: opacity .6s ease .2s , visibility .6s ease .2s , height .1s ease ,width .1s ease;
}



.menu_wrap {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
}

.active .menu_wrap {
    display: grid;
    grid-gap: 3rem;
}

.menu_logo img {
    width: 30%;
    max-width: 140px;
}


.menu_wrap ul {
    text-align: left;
    position: relative;
    padding: 2rem 3rem;
}
.menu_wrap li {
    line-height: 1;
}

.menu_wrap .menu_title {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.menu_wrap a{
    font-size: 1rem;
    line-height: 2.5;
}

.menu_wrap a span {
    font-size: 0.75rem;
}

.menu_wrap a span:before {
    content: "―";
    margin: 0 0.5rem;
    display: inline-block;
}

.menu_wrap ul:before,
.menu_wrap ul:after{
    content: ' ';
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    border: solid #000;    
    position: absolute;
}

.menu_wrap ul:before{
    border-width: 2px 0 0 2px;
    border-radius: 100% 0;
    top: 0;
    left: 0;
}

.menu_wrap ul:after{
    border-width: 0 2px 2px 0;
    border-radius: 100% 0;
    bottom: 0;
    right: 0;
}


#hero {
    display: block;
    position: relative;
    height: calc(100vh - 5rem);
    width: 100%;
}

.hero.swiper {
    position: fixed;
    width: 100vw;
    z-index: 0;
}

.hero_hide{
    display: none;
}

.swiper-slide {
    background: #000;
}

.swiper-slide img {
    opacity: 0.5;
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.hero_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    color: #FFF;
    width: 100%;
    text-align: center;
}

.hero_title span {
    display: block;
    font-size: 3.5vw;
    text-shadow: 0 0 5px black;
}



/* scroll bar */
.scroll span {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 100;
    padding: 10px 10px 80px;
    overflow: hidden;
    color: #fff;
    font-weight: normal;
    font-size: 0.625rem;
    font-family: sans-serif;
    line-height: 1;
    letter-spacing: .1em;
    writing-mode: vertical-lr;
}
.scroll span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 70px;
  background: #fff;
}
.scroll span::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, .4);
}
.scroll span::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}



.side_sns {
    position: absolute;
    bottom: 3.5rem;
    left: -1.5rem;
    transform: rotate(-90deg);
    line-height: 1;
    z-index: 3;
}

.side_sns a {
    color: #FFF;
    font-family: sans-serif;
    font-weight: normal;
    font-size: 0.75rem;
    line-height: 1;
    display: flex;
    align-items: center;
}

.side_sns a i{
    font-size: 1rem;
    margin-left: 0.5rem;
}

.side_sns.scroll-sns a{
    color: #000;
}

.content {
    position: relative;
    z-index: 2;
    background: #FFF;
    padding: 20vw 0;
    text-align: center;
}

.content_title {
    margin-bottom: 2rem;
}

.content_title img{
    width: 25%;
}

.content p {
    margin-bottom: 2rem;
}

.content_link_wrap h3 {
    font-size: 0.875rem;
}

.content_link_wrap h3 span {
    display: block;
    font-size: 0.75rem;
}


.content_link a {
    width: 40px;
    height: 40px;
    display: inline-block;
    position: relative;
}

.content_link a:before {
    content: " ";
    width: 40px;
    height: 0;
    border-bottom: 1px solid #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    z-index: 2;
}

.content_link a:after {
    content: " ";
    width: 0;
    height: 10px;
    border-right: 1px solid #000;
    transform: rotate(-45deg) translateY(-50%);
    position: absolute;
    top: calc(50% - 5px);
    right: 0;
    z-index: 2;
}

.content_link .link_circle {
    position: absolute;
    top: 50%;
    right: -80%;
    transform: translateY(-50%);
    z-index: -1;
}

.content_link .link_circle span{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    background: #e6e6e6;
}



.bg {
    background: #e6e6e6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: skewY(-6deg);
}

.artist_list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
    padding: 1rem 1.5rem;
}

.artist img {
    margin-bottom: 0.5rem;
}

.artist .artist_name {
    font-size: 0.875rem;
    line-height: 1.5;
}

.artist .artist_name span {
    display: block;
    font-size: 0.625rem;
}

.artist_arrow {
    display: inline-block;
    height: 0;
    width: 30px;
    margin-top: 1.25rem;
    position: relative;
}

.artist_arrow:before {
    width: 100%;
    border-bottom: 1px solid #000;
    display: block;
    content: " ";
}

.artist_arrow:after {
    border-bottom: 1px solid #000;
    position: absolute;
    transform: rotate(45deg);
    content: " ";
    display: block;
    bottom: 2px;
    right: -1px;
    width: 8px;
}



/* モーダル全体(背景＋本体) */
.modal{
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
    z-index: 1000;
}

/* モーダル背景 */
.modal-bg{
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

/* モーダル本体 */
.modal-content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    height: 75vh;
    width: 90%;
    max-width: 1440px;
    background: white;
    padding: 2rem;
}

.modal-close-icon {
    position: absolute;
    width: 2rem;
    height: 2rem;
    top: 0;
    right: 0;
    background: none;
    border: none;
}

.modal-close-icon:before, .modal-close-icon:after {
    content: "";
    width: 1.5rem;
    height: 0;
    border-bottom: 1px solid #000;
    display: inline-block;
    position: absolute;
}

.modal-close-icon:before{
    transform: rotate(45deg);
    top:1rem;
    left: 0.25rem;
}

.modal-close-icon:after{
    transform: rotate(-45deg);
    top:1rem;
    right: 0.25rem;
}

/* モーダルウィンドウ表示中に記事本体を固定 */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.artist_info {
    display: grid;
    grid-gap: 1.5rem;
    text-align: left;
}

.artist_detail {
    line-height: 1;
}

.artist_detail > span {
    margin-bottom: 1rem;
    display: block;
}

.artist_detail .artist_name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.artist_detail .artist_name span {
    font-size: 0.75rem;
    display: inline-block;
    margin-left: 1rem;
}

.artist_detail .sns_link {
    margin-bottom: 1rem;
    display: flex;
    grid-gap: 1rem;
}

.sns_link span {
    border-bottom: 1px #000 dotted;
}

.artist_detail .sns_link i,
.artist_detail .artist_link a i{
    margin-right: 0.5rem;
}

.artist_detail .artist_link {
    margin-bottom: 1.5rem;
}

.artist_detail .artist_link a {
    line-height: 4;
    background: #000;
    display: block;
    color: #FFF;
    text-align: center;
    border-radius: 0.5rem;
}

.artist_detail .artist_description {
    line-height: 1.5;
    margin-bottom: 0;
}

.artist_info .artist_products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-content: start;
    grid-gap: 0.5rem;
}

.artist_info .artist_products div:last-child{
    display: none;
}

#gallery {
    z-index: 0;
}

#art_list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 1rem;
    padding: 1rem 1.5rem;
    margin-bottom: 3rem;
}


#art_list > div {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

#art_list > div img{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group_list {
    display: grid;
    grid-gap: 3rem;
    padding: 1rem 1.5rem;
}

.group_list > div {
    padding: 3rem 1.5rem;
    position: relative;
}



.group_list > div:before,
.group_list > div:after{
    content: ' ';
    display: block;
    width: 2rem;
    height: 2rem;
    border: solid #000;    
    position: absolute;
}

.group_list > div:before{
    border-width: 2px 0 0 2px;
    border-radius: 100% 0;
    top: 0;
    left: 0;
}

.group_list > div:after{
    border-width: 0 2px 2px 0;
    border-radius: 100% 0;
    bottom: 0;
    right: 0;
}

.group_list p{
    text-align: left;
}

.group_list img {
    width: 50%;
    margin-bottom: 2rem;
}

.group_link {
    text-align: center;
}

.group_link a {
    display: block;
    overflow-wrap: anywhere;
    word-wrap: break-word;
    hyphens: auto;
}

.flow_list {
    display: grid;
    grid-gap: 4rem;
    padding: 1rem 1.5rem;
}

.flow_list > div {
    display: grid;
    grid-gap: 2rem;
}

.flow_img {
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
}

.flow_img img{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flow_detail {
    padding: 2rem;
    position: relative;
}

.flow_detail:before,
.flow_detail:after{
    content: ' ';
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    border: solid #000;    
    position: absolute;
}

.flow_detail:before{
    border-width: 2px 0 0 2px;
    border-radius: 100% 0;
    top: 0;
    left: 0;
}

.flow_detail:after{
    border-width: 0 2px 2px 0;
    border-radius: 100% 0;
    bottom: 0;
    right: 0;
}

.flow_num {
    font-size: 2rem;
    line-height: 1;
}

.flow_title {
    display: inline-block;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.flow_detail p {
    margin: 0;
    text-align: left;
}

.flow_detail p span {
    display: block;
    margin-top: 1rem;
    font-size: 0.625rem;
}

#store {
    z-index: 0;
}



.store_detail {
    padding:1rem 1.5rem;
    margin-bottom: 3rem;
}

.store_img {
    margin-bottom: 1rem;
}

.store_info {
    text-align: left;
}

.store_info h4 {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.store_info_wrap {
    display: flex;
    flex-direction: column;
    grid-gap: 1rem;
}

.store_info_wrap i {
    margin-right: 0.5rem;
}

.store_info_wrap a {
    border-bottom: 1px #000 dotted;
}

.store_list {
    text-align: left;
    padding: 0 2rem;
    display: grid;
    grid-gap: 2rem;
}

.store_link {
    padding-top: 0.5rem;
}
.store_link i{
    font-size: 1rem;
}

#online_store {
    height: 100vh;
}

.online_store_wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.online_store_wrap h2 {
    margin-bottom: 6rem;
}

.online_store_wrap .content_link_wrap h3 {
    font-size: 0.75rem;
}

.online_store_wrap img {
    width: 50%;
    margin-bottom: 1rem;
}

footer {
    background: #fff;
    position: relative;
    padding: 0.5rem 1.5rem;
    text-align: center;
}

footer > img {
    width: 30%;
    margin-bottom: 1rem;
}

footer div {
    display: flex;
    justify-content: center;
    grid-gap: 0.5rem;
}

footer span {
    font-size: 0.625rem;
}

footer div img {
    width: 20%;
}


.fadeTrigger,
.fadeslideTrigger{
    opacity: 0;
}

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(80px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.fadeslide{
animation-name:fadeslideAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeslideAnime{
  from {
    opacity: 0;
  transform: translateX(-40px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

.news_list {
    display: grid;
    grid-gap: 3rem;
    padding: 1rem 1.5rem;
    text-align: left;
}

.news_list > div {
    padding: 0 1rem;
}

.news_list .news_img {
    width: 100%;
    aspect-ratio:1.4/1;
    margin-bottom: 1rem;
}

.news_list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.news_text p {
    margin-bottom: 1rem;
}

.news_text .news_dete {
    margin-bottom: 0 !important;
}

.news_text a {
    border-bottom: 1px #000 dotted;
}

/* tablet */
@media screen and (min-width: 48rem){
  
body{
    font-size: 87.5%;
}    
    
.menu_wrap {
    width: 80%;
}
    
.active .menu_wrap {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
    
.menu_logo img {
    width: 40%;
}
 
.hero_title span {
    font-size: 2.6vw;
}    
    
.content_title img {
    width: 15%;
}    
    
.artist_list {
    grid-template-columns: repeat(4,1fr);
    padding: 0 3rem;
}    
 
#art_list {
    grid-template-columns: repeat(3,1fr);
    padding: 0 3rem;
}    
    
.group_list {
    padding: 2rem 8rem;
} 
    
.group_list img {
    width: 40%;
}
    
.flow_list {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 2rem;
    grid-row-gap: 4rem;
    padding: 0 3rem;
}    
    
 .flow_list > div {
    display: flex;
    flex-direction: column;
}
 
.store_detail {
    padding: 0 3rem;
}    
 
.store_info_wrap {
    flex-direction: row;
    justify-content: space-between;
}    
    
.store_list {
    padding: 0 3rem;
}
    
.online_store_wrap img {
    width: 30%;
}    

footer {
    padding: 2rem;
}
    
footer > img {
    width: 20%;
    margin-bottom: 1rem;
}
    
footer div img {
    width: 12%;
}

.modal-content {
    height: auto;
}    
    
.modal-close-icon {
    top: 1rem;
    right: 1rem;
    
}  

.artist_info {
    grid-template-columns: 240px 1fr;
    grid-gap: 2rem;
}
  
.artist_info .artist_products {
    grid-column: 1/3;
    grid-template-columns: repeat(5,1fr);
}
    
.artist_info .artist_products div:last-child {
    display: block;
} 
    
    
.news_list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}    
    
}


/* tablet landscape */
@media screen and (min-width: 48rem) and (orientation:landscape){
.menu_wrap {
    width: 50%;
}
    
.hero_title span {
    font-size: 1.8vw;
}
    
.content_title img {
    width: 10%;
}    
    
.modal-content {
    height: 80vh;
}
    
.artist_info {
    grid-template-columns: 300px 1fr;
}    
 
#art_list {
    grid-template-columns: repeat(4,1fr);
}    
  
.artist_list,
#art_list,
.group_list,
.store_detail{
    padding: 3rem;
}    

.com_logo {
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}   
    
.group_list img {
    width: 50%;
    margin: 0;
}    
    
.online_store_wrap img {
    width: 20%;
}
  
.group_list {
    grid-template-columns: repeat(3,1fr);
}    
    
footer > img {
    width: 10%;
}
    
footer div img {
    width: 8%;
}    
    
}


/* PC */
@media screen and (min-width: 65rem){
 
body {
    font-size: 100%;
}
 
    
header h1 {
    width: 10rem;
}
    
.hamburger {
    width: 2rem;
    height: 2rem;
}
    

.hamburger span:nth-child(2) {
    top: 16px;
}    
    
.hamburger span:nth-child(3) {
    top: 32px;
}    

.hamburger.active span:nth-child(1),    
.hamburger.active span:nth-child(3) {
    top: 16px;
}    
    
    
.menu_wrap ul {
    padding: 3rem;
}    
    
.menu_wrap .menu_title {
    font-size: 2rem;
    margin-bottom: 2rem;
}
 
    
.menu_wrap a {
    font-size: 1.5rem;
}    
.menu_wrap a span {
    font-size: 1rem;
}
    
.content {
    padding: 10vw 0;
}    
    
.content_title {
    margin-bottom: 3rem;
}
    
.content p {
    margin-bottom: 3rem;
}    
    
.content_title h2 {
    font-size: 1.25rem;
}  
    
.content_title h3 {
    font-size: 1.5rem;
}    
 
.content_link_wrap h3 {
    font-size: 1.5rem;
}    
    
.content_link_wrap h3 span {
    display: block;
    font-size: 1rem;
}    
 
    
.content_link a {
    width: 50px;
    height: 50px;
}    

.content_link a:after {
    right: 5px;
}    
 
.content_link .link_circle span {
    width: 80px;
    height: 80px;
}  
    
.content_link .link_circle {
    right: -100%;
}    
    
.hero_title span {
    display: inline-block;
    font-size: 1.1vw;
    letter-spacing: 0.2vw;
}        

.content_title img {
    width: 8rem;
}    
    
.artist_list, #art_list, .group_list, .store_detail {
    max-width: 1440px;
    margin: auto;
}   
   
.artist_list {
    grid-row-gap: 5rem;
}    
    
.artist img {
    margin-bottom: 2rem;
}  
    
.artist .artist_name {
    font-size: 1.25rem;
}   
    
.artist .artist_name span {
    font-size: 0.875rem;
    line-height: 3;
}  
    
.artist_arrow {
    margin-top: 2.5rem;
}    
    
#art_list {
    margin-bottom: 5rem;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 2rem;
}    
    
    
.modal-content {
    height: 90vh;
    padding: 5rem;
}   
    
    
.artist_info {
    grid-template-columns: 400px 1fr;
    grid-gap: 4rem;
}    
    
.artist_detail > span {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
    
.artist_detail .artist_name {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}   
    
.artist_detail .artist_name span {
    font-size: 1.5rem;
    font-weight: normal;
}    
    
.artist_detail .sns_link {
    margin-bottom: 2rem;
}
    
.artist_detail .artist_link a {
    display: inline-block;
    padding: 0 2rem;
    margin-bottom: 2rem;
}
    
.artist_detail .artist_description {
    line-height: 2;
}   
    
    
    
.group_list {
    grid-gap: 5rem;
}    
 
.com_logo {
    margin-bottom: 3rem;
}    
    
.flow_list {
    max-width: 1440px;
    margin: auto;
    grid-template-columns: repeat(4,1fr);
    grid-column-gap: 4rem;
}    
    
.flow_list > div {
    grid-gap: 3rem;
}    
.flow_detail {
    min-height: 24rem;
}    
.flow_img {
    width: 100%;
    padding: 0;
    position: inherit;
    overflow: visible;
}
    
.flow_img img {
    position: inherit;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}    
.flow_num {
    font-size: 2.75rem;
}    
.flow_title {
    display: block;
    font-size: 1.25rem;
}   

.store_img {
    margin-bottom: 4rem;
}    
    
.store_info h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    line-height: 2;
}

.store_info_wrap {
    line-height: 2.5;
}    
  
.store_list {
    padding: 3rem;
    max-width: 1440px;
    margin: auto;
}    
    
.store_list > div {
    display: grid;
    grid-template-columns: 1.5fr 2fr 10rem 5rem;
    grid-gap: 2rem;
    align-items: center;
    line-height: 1;
}
    
.store_link {
    padding-top: 0;
    text-align: right;
}    
    
.store_link a {
    margin-left: 0.5rem;
}
.store_link i {
    font-size: 1.5rem;
}    
    
.online_store_wrap img {
    width: 15%;
    max-width: 240px;
}   

    
footer > img {
    width: 8%;
    margin-bottom: 2rem;
}

footer div {
    grid-gap: 1rem;
}    
    
footer span {
    font-size: 0.75rem;
}    
    
 footer div img {
    width: 6%;
    max-width: 100px;
}   
    
.news_list {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1440px;
    margin: auto;
}    
    
    
}
