@charset "utf-8";

:root {
  font-size: 14px;
}

body{
font-family: 'Sawarabi Mincho', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.font_highlight{
  font-weight: 900;
}


a{
  text-decoration: none;
}

a:hover{
  text-decoration: none;
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #0bd;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 }

#spinner {
  width: 100px;
  height: 100px;
  margin: 50px auto;
  background-color: #fff;
  border-radius: 100%;
  cursor: pointer;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.enterpara{
  color: #ffffff;
  margin-top: 40px;
  border-bottom: solid 5px #ffffff;
  cursor: pointer;
}

#bodywrap{
  width: 90%;
  margin: 0 auto;
}

.site-header{
  z-index: 1000;
  background: rgba(255,255,255,0.5);
  width: 90%;
  margin: 0 auto;
  padding: 20px 0px;
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-content: center;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 6px solid;
  border-image: linear-gradient(to right, #5fb0ff 0%, #ffe15f 75%, #de6160 100%);
  border-image-slice: 1;
}

.site-header.transform{
    background: rgba(255,255,255,0.9);
}

/* SP Logo */

.site-logo{
  margin: 0px auto;
}

.site-logo img{
    height: 30px;
    width: auto;
}

.spacer{
  min-height: 82px;
}

.spacer_min{
  min-height: 42px;
}

/* SP Logo End */

/* PC Nav */

.gnav{
  display: none;
}

/* PC Nav End */

/* SP Nav */

  /** SP Nav Hamburger **/

.navToggle {
    display: block;
    position: fixed;    /* bodyに対しての絶対位置指定 */
    right: 20px;
    top: 20px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 3;
    background: #333333;
    text-align: center;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* .navToggleに対して */
    width: 30px;
    border-bottom: solid 1px #eee;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
}
 
.navToggle span:nth-child(1) {
    top: 9px;
}
 
.navToggle span:nth-child(2) {
    top: 18px;
}
 
.navToggle span:nth-child(3) {
    top: 27px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #eee;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

  /** SP Nav Hamburger End **/

nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background:  #4D4D4D;
    color: #ffffff;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
}
 
nav.globalMenuSp ul {
    background:  #4D4D4D;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
 
nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #333;
}
 
/* 最後はラインを描かない */
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
 
nav.globalMenuSp ul li a {
    display: block;
    color: #ffffff;
    padding: 1em 0;
}
 
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    transform: translateY(0%);
}

/* SP Nav End */

.slider-wrap{
  background: #ffffff;
  width: 100%;
}

.center{
  margin: 0 auto;
}

.corner_header{
  background-color: #f47373;
  margin: 6px;
  box-shadow: 0px 0px 0px 5px #f47373;
  border: dashed 2px white;
  padding: 0.2em 0.5em;
  color: #ffffff;
}

#corner_items{
  background-color: rgba(222,96,96,1.0);
  box-shadow: 0px 0px 0px 5px rgba(222,96,96,1.0);
}

#corner_shops{
  background-color: rgba(127,200,213,1.0);
  box-shadow: 0px 0px 0px 5px rgba(127,200,213,1.0);
  margin-bottom: 20px;
}

#corner_snsnews{
  background-color: rgba(253,237,76,1.0);
  box-shadow: 0px 0px 0px 5px rgba(253,237,76,1.0);
}

#corner_aboutus{
  background-color: rgba(203,229,239,1.0);
  box-shadow: 0px 0px 0px 5px rgba(203,229,239,1.0);
}

.corner_pad{
  padding: 10px 40px 10px 20px;
  display: flex;
  align-items:flex-end;
}

.corner_title{
  margin: 0px 0px 0px 20px;
  padding: 5px;
  width: 150px;
  text-align: center;
}

/* shop list accordion */

.accordion {list-style:none; padding-left: 0;}
.accordion .inner {display:none; list-style:none; margin-bottom: 20px; padding-left: 0px;}
.accordion .inner li ul{display: none; list-style:none;}
.accordion p{padding: 0px;}
.accordion p.area1{cursor: pointer; background: rgba(222,67,67,1.0); padding: 10px; font-weight: 900; color: #ffffff;}
.accordion p.area1:hover{background: rgba(212,57,57,1.0);}
.accordion p.area2{cursor: pointer; background: rgba(92,200,217,1.0); padding: 10px; font-weight: 900; color: #ffffff;}
.accordion p.area2:hover{background: rgba(82,190,207,1.0);}
.accordion p.area3{cursor: pointer; background: rgba(234,216,39,1.0); padding: 10px; font-weight: 900; color: #ffffff;}
.accordion p.area3:hover{background: rgba(224,206,29,1.0);}
.accordion p.area4{cursor: pointer; background: rgba(35,195,115,1.0); padding: 10px; font-weight: 900; color: #ffffff;}
.accordion p.area4:hover{background: rgba(25,185,105,1.0); padding: 10px; font-weight: 900; color: #ffffff;}
.accordion .pref_name{cursor: pointer; padding: 20px 10px 0px 20px; margin-bottom: 0px; font-weight: 900; color:#214254;}
.accordion .pref_box{margin-bottom: 20px;}

.accordion .city_name{padding: 20px 10px 0px 20px; margin-bottom: 0px; font-weight: 900; color:#214254;}

.accordion .inner li ul li{padding: 0px;}
.accordion .inner li > p{padding: 10px;}

.accordion .inner li.pref1-0{background: rgba(150,67,37,0.8);}
.accordion .inner li.pref1-0:hover{background: rgba(140,57,27,0.8);}
.accordion .inner li.pref1-0 li:nth-child(1){background: #ffffff;}

.accordion .inner li.pref1-1{background: rgba(222,67,67,0.8);}
.accordion .inner li.pref1-1:hover{background: rgba(212,57,57,0.8);}
.accordion .inner li.pref1-1 li:nth-child(1){background: #ffffff;}

.accordion .inner li.pref1-2{background: rgba(222,67,67,0.6);}
.accordion .inner li.pref1-2:hover{background: rgba(212,57,57,0.6);}
.accordion .inner li.pref1-2 li:nth-child(1){background: #ffffff;}
.accordion .inner li.pref1-2 li:nth-child(2){background: #ffffff;}
.accordion .inner li.pref1-2 li:nth-child(3){background: #ffffff;}
.accordion .inner li.pref1-2 li:nth-child(4){background: #ffffff;}

.accordion .inner li.pref1-3{background: rgba(222,67,67,0.4);}
.accordion .inner li.pref1-3:hover{background: rgba(212,57,57,0.4);}
.accordion .inner li.pref1-3 li:nth-child(1){background: #ffffff;}
.accordion .inner li.pref1-3 li:nth-child(2){background: #ffffff;}
.accordion .inner li.pref1-3 li:nth-child(3){background: #ffffff;}
.accordion .inner li.pref1-3 li:nth-child(4){background: #ffffff;}

.accordion .inner li.pref2-1{background: rgba(92,200,217,0.8);}
.accordion .inner li.pref2-1:hover{background: rgba(82,190,207,0.8);}
.accordion .inner li.pref2-1 li:nth-child(1){background: #ffffff;}

.accordion .inner li.pref2-1-5{background: rgba(92,200,217,0.6);}
.accordion .inner li.pref2-1-5:hover{background: rgba(82,190,207,0.6);}
.accordion .inner li.pref2-1-5 li:nth-child(1){background: #ffffff;}

.accordion .inner li.pref2-2{background: rgba(152,200,217,0.6);}
.accordion .inner li.pref2-2:hover{background: rgba(142,190,207,0.6);}
.accordion .inner li.pref2-2 li:nth-child(1){background: #ffffff;}

.accordion .inner li.pref2-3{background: rgba(180,200,217,0.6);}
.accordion .inner li.pref2-3:hover{background: rgba(180,190,207,0.6);}
.accordion .inner li.pref2-3 li:nth-child(1){background: #ffffff;}

.accordion .inner li.pref3-0{background: rgba(234,216,39,0.8);}
.accordion .inner li.pref3-0:hover{background: rgba(224,206,29,0.8);}
.accordion .inner li.pref3-0 li:nth-child(1){background: #ffffff;}

.accordion .inner li.pref3-1{background: rgba(234,216,39,0.8);}
.accordion .inner li.pref3-1:hover{background: rgba(224,206,29,0.8);}
.accordion .inner li.pref3-1 li:nth-child(1){background: #ffffff;}
.accordion .inner li.pref3-1 li:nth-child(2){background: #ffffff;}

.accordion .inner li.pref3-2{background: rgba(234,216,39,0.8);}
.accordion .inner li.pref3-2:hover{background: rgba(224,206,29,0.8);}
.accordion .inner li.pref3-2 li:nth-child(1){background: #ffffff;}

.accordion .inner li.pref3-3{background: rgba(234,216,39,0.8);}
.accordion .inner li.pref3-3:hover{background: rgba(224,206,29,0.8);}
.accordion .inner li.pref3-3 li:nth-child(1){background: #ffffff;}

.accordion .inner li.pref4-1{background: rgba(35,195,115,0.8);}
.accordion .inner li.pref4-1:hover{background: rgba(25,185,105,0.8);}
.accordion .inner li.pref4-1 li:nth-child(1){background: #ffffff;}
.accordion .inner li.pref4-1 li:nth-child(2){background: #ffffff;}

.shop_module{
 padding: 20px 0px 0px 30px;
 border-left: solid 10px #214254;
 border-bottom: solid 1px #214254;
 color:#214254;
}

.shop_module_each{
 margin: 40px 0px;
 padding: 20px 0px 0px 30px;
 border-left: solid 10px #214254;
 border-bottom: solid 1px #214254;
 color:#214254;
}

.shop_name{
  margin: 5px 0px;
  font-size: 1rem;
  font-weight: 900;
  color:#214254;
}

.shop_type_dir{
  font-size: 1rem;
  font-weight: 900;
  color:#ffffff;
  background-color:#214254;
  border: 2px solid #214254;
  border-radius: 5px;
}

.shop_type_sat{
  font-size: 1rem;
  font-weight: 900;
  color:#214254;
  background-color:#ffffff;
  border: 2px solid #214254;
  border-radius: 5px;
}

.sl_button{
  background-color: #214254;
  border-color: #214254;
  overflow: hidden;
}

.sl_button::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #ffffff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    50% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    51% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

#area_pin{
  color: #ffffff;
  margin: 0px 10px;
}

#pref_pin{
  color: #ffffff;
  margin: 0px 10px;
}

#city_pin{
  color:#214254;
  margin: 0px 10px;
}

/* shop list accordion End*/


#ct_items{
  background-color: rgba(222,67,67,1.0);
  position: relative;
  z-index:100;
}

#ct_items:before{
    position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px rgba(222,96,96,1.0);
  border-bottom: solid 39px transparent;
  z-index: 99;
}

#ct_items:after{
  position: absolute;
  content: '';
  right: -3px;
  top: -7px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 39px rgba(222,96,96,1.0);
  z-index: 99;
}

#ct_shops{
  background-color: rgba(92,200,217,1.0);
  position: relative;
  z-index:100;
}

#ct_shops:before{
    position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px rgba(127,200,213,1.0);
  border-bottom: solid 39px transparent;
  z-index: 99;
}

#ct_shops:after{
  position: absolute;
  content: '';
  right: -3px;
  top: -7px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 39px rgba(127,200,213,1.0);
  z-index: 99;
}

#ct_snsnews{
  background-color: rgba(234,216,39,1.0);
  position: relative;
  z-index:100;
}

#ct_snsnews:before{
    position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px rgba(253,237,76,1.0);
  border-bottom: solid 39px transparent;
  z-index: 99;
}

#ct_snsnews:after{
  position: absolute;
  content: '';
  right: -3px;
  top: -7px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 39px rgba(253,237,76,1.0);
  z-index: 99;
}

#ct_aboutus{
  background-color: rgba(160,220,239,1.0);
  position: relative;
  z-index:100;
}

#ct_aboutus:before{
    position: absolute;
  content: '';
  left: -2px;
  top: -2px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px rgba(203,229,239,1.0);
  border-bottom: solid 39px transparent;
  z-index: 99;
}

#ct_aboutus:after{
  position: absolute;
  content: '';
  right: -3px;
  top: -7px;
  width: 0;
  height: 0;
  border: none;
  border-left: solid 15px transparent;
  border-bottom: solid 39px rgba(203,229,239,1.0);
  z-index: 99;
}

#spacer01{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#spacer02{
  margin: 40px 0px 30px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
  background-image: url("/images/deco/buchiframe1.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  
}

#spacer03{
  margin: 40px 0px 30px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  
  background-image: url("/images/deco/redline.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#spacer04{
  margin: 40px 0px 30px 0px;
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/images/deco/greenline.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#spacer05{
  margin: 40px 0px 30px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/images/deco/yellowline.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#spacer06{
  margin: 40px 0px 30px 0px;  
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("/images/deco/blueline.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

/* spacer レスポンシブ補正 */

@media all and (max-width: 600px) {
 #spacer02{
  background-size: contain;
}
 #spacer03{
  background-size: auto;
}
  #spacer04{
  background-size: auto;
}
  #spacer05{
  background-size: auto;
}
  #spacer06{
  background-size: auto;
}  
}

@media all and (min-width: 1500px) {
 #spacer02{
  background-size: contain;
}  
 #spacer03{
  background-size: contain;
}
  #spacer04{
  background-size: contain;
}
  #spacer05{
  background-size: contain;
}
  #spacer06{
  background-size: contain;
}
}

/* spacer レスポンシブ補正 End*/

.catchcopy{
  font-size: 1rem;
  font-family: 'Noto Serif JP';
  font-weight: 900;
  color:#214254;
  max-width: 100%;
  text-align: center;
  border-left: solid 2px #214254; 
  border-right: solid 2px #214254;
  margin: 0px 2px;
  padding: 0px 25px;
}

.catchcopy br{
  display: inline;
}

.catchcopy_deco1{
  background-color: rgba(255,255,255,0.7);
  border-radius: 25px;
}

.catchcopy_deco2{
  color: rgba(255,255,255,1);
  border-left: solid 2px #ffffff; 
  border-right: solid 2px #ffffff;
}

.modelphoto_wrap{
  margin: 40px 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.map_wrap{
  width: 100%;
  padding: 30px 0px;
background: #2BC0E4;  /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #EAECC6, #2BC0E4);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #EAECC6, #2BC0E4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.PCMAP{
  display: none;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
background-color: rgba(9,168,190,0.9);
background: -webkit-linear-gradient(to top, rgba(255,209,148,90),rgba(112,225,245,0.9));  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, rgba(255,209,148,90), rgba(112,225,245,0.9)); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 90%;
  max-width: 600px;
  padding: 30px 30px 20px 30px;
  background-color: #fff;
  border-radius: 10px;
}

.modalContents a{
  text-decoration: none;
}

.closeModal {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

/* モーダルCSS End */

/* ボタンデザイン */

button {
  display: block;
  position: relative;
  padding: 10px 30px;
  color: #ffffff;
  background-color: #f45161;
  border: 1px solid #f45161;
  border-radius: 5px;
  cursor: pointer;
  display: block;
  margin: 0 0 0 auto;
}

.ph_button{
  background-color: rgba(92,200,217,1.0); 
  border-color: rgba(92,200,217,1.0);
  border-radius: 25px;
  padding-right: 40px;
  font-size: 1.2em;
}

.br_button{
  background-color: rgba(108,174,195,1.0); 
  border-color: rgba(108,174,195,1.0);
  border-radius: 25px;
  padding: 10px 60px;
  font-size: 1em;
  overflow: hidden;
}

.br_button::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #ffffff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    50% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    51% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.el_button{
  background-color: rgba(108,174,195,1.0); 
  border-color: rgba(108,174,195,1.0);
  border-radius: 25px;
  padding: 10px 30px;
  font-size: 1em;
  overflow: hidden;
}

.el_button::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #ffffff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    50% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    51% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.elsm_button{
  background-color: #214254; 
  border-color: #214254;
  border-radius: 25px;
  padding: 10px 30px;
  font-size: 1em;
  overflow: hidden;
}

.elsm_button::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #ffffff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    50% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    51% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

#phone_icon{
  color: #ffffff;
  margin: 0px 10px;
}

.button_wrap{
  display: flex;
  flex-direction: row-reverse;
  margin: 50px 0px;
}

.button_wrap_sl{
  display: flex;
  flex-direction: row-reverse;
  margin: 20px 0px;
}

.button_wrap_sl_carino{
  display: flex;
  flex-direction: row-reverse;
  margin: 20px 0px;
}  

.button_wrap_elsm{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0px auto 40px auto;
}

.button_wrap_elsm br{
  display: inline;
}

#b_items{
  margin-right: 0px;
  background-color: rgba(222,67,67,1.0);
  border: 1px solid rgba(222,67,67,1.0);
  min-width: 220px;
  border-radius: 25px;
  overflow: hidden;
}

#b_items:hover{
  background-color: rgba(244,33,33,1.0);
  border: 1px solid rgba(244,33,33,1.0);
}

#b_items::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #ffffff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    50% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    51% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

#b_shops{
  margin-right: 0px;
  background-color: rgba(92,200,217,1.0);
  border: 1px solid rgba(92,200,217,1.0);
  min-width: 220px;
  border-radius: 25px;
  overflow: hidden;
}

#b_shops:hover{
  background-color: rgba(57,200,222,1.0);
  border: 1px solid rgba(57,200,222,1.0);
}

#b_shops::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #ffffff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    50% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    51% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

#b_snsnews{
  margin-right: 0px;
  background-color: rgba(234,216,39,1.0);
  border: 1px solid rgba(234,216,39,1.0);  
  min-width: 220px;
  border-radius: 25px;
  overflow: hidden;
}

#b_snsnews:hover{
  background-color: rgba(215,196,1,1.0);
  border: 1px solid rgba(215,196,1,1.0);
}

#b_snsnews::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #ffffff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    50% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    51% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

#b_aboutus{
  margin-right: 0px;
  background-color: rgba(160,220,239,1.0);
  border: 1px solid rgba(160,220,239,1.0);  
  min-width: 220px;
  border-radius: 25px;
  overflow: hidden;
}

#b_aboutus:hover{
  background-color: rgba(120,212,239,1.0);
  border: 1px solid rgba(120,212,239,1.0);
}

#b_aboutus::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #ffffff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    50% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    51% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

/* ボタンデザイン End */


.contents{
  
}

/* SNSデザイン */

#co_snsnews{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
}

.textspacer-in{
  margin: 0em 1rem 0em 0em;
}

.textspacer-fb{
  margin: 0em 1.2rem 0em 0em;
}

.textspacer-tw{
  margin: 0em 2.4rem 0em 0em;
}

.btn-social-icon-twitter {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #1da1f3;
  font-size: 1.2rem;
}

.btn-social-icon-twitter:hover {
  color:#88daff;
  transition: .5s;
  text-decoration: none;
}

.btn-social-icon-twitter__square {
  border-radius: 10px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 35px;
  line-height: 50px;
  color: #FFF;
  background: #1da1f3;
  margin: 30px 10px 0px 0px;
}

.btn-social-icon-twitter__square i {
  line-height: 50px;
}

.btn-social-icon-facebook {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #4966a0;;
  font-size: 1.2rem;
}

.btn-social-icon-facebook:hover {
  color:#668ad8;
  transition: .5s;
  text-decoration: none;
}

.btn-social-icon-facebook__square {
  border-radius: 10px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 35px;
  line-height: 50px;
  color: #FFF;
  background: #4966a0;
  margin: 30px 10px 0px 0px;
}

.btn-social-icon-facebook__square .fa-facebook {
  position: absolute;
  bottom: -3px;
  right: 6px;
  font-size: 42px;
}

.btn-social-icon-instagram {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color: #2e6ca5;
  font-size: 1.2rem;
}

.btn-social-icon-instagram:hover {
  color:#668ad8;
  transition: .5s;
  text-decoration: none;
}

.btn-social-icon-instagram__square {
  border-radius: 13px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  font-size: 35px;
  line-height: 50px;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  margin: 0px 10px 0px 0px;
}

.btn-social-icon-instagram__square .fa-instagram {
  color:white;
  line-height: 50px;
  position: relative;
  z-index: 2
}

.SNS_promo_pop{
  position: relative;
  padding: 20px 40px;
background-image: linear-gradient(
	-45deg,
    #F8BBD0 10%,
	#F8CFE4 10%,
	#F8CFE4 20%,
	#F8BBD0 20%,
	#F8BBD0 30%,
	#F8CFE4 30%,
  	#F8CFE4 40%,
	#F8BBD0 40%,
	#F8BBD0 50%,
	#F8CFE4 50%,
  	#F8CFE4 60%,
	#F8BBD0 60%,
	#F8BBD0 70%,
	#F8CFE4 70%,
  	#F8CFE4 80%,
	#F8BBD0 80%,
	#F8BBD0 90%,
	#F8CFE4 90%,
	#F8CFE4);
  border-radius: 20px;
  width: 80%;
  max-width: 600px;
  margin: 80px auto 60px auto;
}

.SNS_promo_pop:after{
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #F8BBD0;
  width: 0;
  height: 0;
}

.SNS_promo_pop_v2{
  position: relative;
  padding: 20px 40px;
background-image: linear-gradient(
	-45deg,
    #F8BBD0 10%,
	#F8CFE4 10%,
	#F8CFE4 20%,
	#F8BBD0 20%,
	#F8BBD0 30%,
	#F8CFE4 30%,
  	#F8CFE4 40%,
	#F8BBD0 40%,
	#F8BBD0 50%,
	#F8CFE4 50%,
  	#F8CFE4 60%,
	#F8BBD0 60%,
	#F8BBD0 70%,
	#F8CFE4 70%,
  	#F8CFE4 80%,
	#F8BBD0 80%,
	#F8BBD0 90%,
	#F8CFE4 90%,
	#F8CFE4);
  border-radius: 20px;
  width: 80%;
  max-width: 600px;
  margin: 20px auto 40px auto;
}

.SNS_promo_pop_v2:after{
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #F8BBD0;
  width: 0;
  height: 0;
}

/* SNSデザイン End */

/* Google Map Responsive Control */

.gmap {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.gmap iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}

/* Google Map Responsive Control End*/

/* YouTube Responsive Control */

.youtube {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}

.youtube iframe {
position: absolute;
left: 0;
top: 0;
height: 100% !important;;
width: 100% !important;;
}

.youtube_module{
  margin: 0px auto 40px auto;
  width: 80vw;
}

/* YouTube Responsive Control End*/

/* HTML5 embed video Responsive Control */

#elfepv{
  width: 80%;
}

.elfepv_module{
  text-align: center;
}

/* HTML5 embed video Responsive Control End */


.message_board{
  margin-top: 20px;
}

/* item Area Design */

.brand_list_header{
  background-color: rgba(222,67,67,1.0);
  border-radius: 25px;
  text-align: center;
  margin: 50px 0px;
}

.brand_list_header_text{
  padding: 10px 0px;
  color: #ffffff;
}

.brand_module_each{
 margin: 0px 0px 40px 0px;
 padding: 0px 0px 0px 0px;
 border-left: solid 10px #214254;
 border-bottom: solid 1px #214254;
 color:#214254;
}

.brand_module_each_sign{
 margin: 20px 0px 20px 0px;
 padding: 0px 20px 0px 20px;
 color:#214254;
}

.brand_wrapper{
 display: flex;
 flex-direction: row;
 flex-wrap: wrap;
 justify-content: center;
}

.brand_logo{
  margin: 20px 0px 40px 0px;
  width:450px;
  text-align: center;
}

.brand_logo img{
  width:300px;
}

.brand_desc{
  margin: 20px 0px 40px 20px;
  width:450px;
}

.brand_name{
  margin: 5px 0px;
  font-size: 2rem;
  font-weight: 900;
  color:#214254;
  background: linear-gradient(transparent 50%, #a8eaff 50%)
}

.brand_copy{
  margin: 20px 0px;
  padding: 0px 20px;
  font-size: 1em;
  color:#214254;
}

.brand_stripe{
  height: 20px;
background-image: linear-gradient(
	-45deg,
    #f5eeed 10%,
	#f4e2de 10%,
	#f4e2de 20%,
	#f5eeed 20%,
	#f5eeed 30%,
	#f4e2de 30%,
  	#f4e2de 40%,
	#f5eeed 40%,
	#f5eeed 50%,
	#f4e2de 50%,
  	#f4e2de 60%,
	#f5eeed 60%,
	#f5eeed 70%,
	#f4e2de 70%,
  	#f4e2de 80%,
	#f5eeed 80%,
	#f5eeed 90%,
	#f4e2de 90%,
	#f4e2de);
}

/* Dola ASW Area Design */

.fixed-bg {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}
 
.fbg01 {
  background-image:url(/images/brand/dolaasw/sky2.jpg);
  transform: translateZ(0);
}

.fbgc-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sbg01 {
  width: 100%;
  background-color: rgba(255,255,255,0.2);
  padding:70px 20px 50px 20px;
  color:#214254;
}

.sbg02 {
  width: 100%;
  background-color: rgba(255,255,255,0.6);
  padding:70px 20px 50px 20px;
  color:#214254;
}

.scroll-bg {

}

.sbg03 {
  width: 100%;
  background-color: rgba(255,255,255,1);
  padding:70px 20px 50px 20px;
  color:#214254;
}

.item_desc_catch{
  font-size: 1.2em;
  font-family: 'Noto Serif JP';
  font-weight: 900;
  letter-spacing: 0.5em;
  line-height: 1.5em;
  text-align: center;
}

.item_desc_text{
  font-size: 1em;
  text-align: left;
}

.item_desc_text br{
  display: none;
}


#img_dolaasw-logo_wrap{
  padding: 40px 0px;
}

#img_dolaasw-logo{
  width: 180px;
}

#img_dolaasw-shoes_wrap{
  padding: 40px 0px;
}

#img_dolaasw-shoes{
  width: 180px;
}

/* elfe Area Design */

.elfe_module{
  margin: 40px 0px;
}

.elfe_midashi{
  padding: 20px 20px;
  border-left: solid 10px #496A7C;
  border-bottom: solid 1px #496A7C;
}

.elfe_catch{
  font-size: 1em;
  font-family: 'Noto Serif JP';
  font-weight: 900;
  color: #214254;
  margin: 0px;
}

.elfe_contents_wrap{
  display: flex;
  flex-direction: column;
}
  
.elfe_image_wrap{
  margin: 20px auto;
}

.elfe_desc_box{
 margin: 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 min-width: 300px;
}

.elfe_desc_text{
  
}

.elfe_impact{
  font-size: 1.2em;
}

.elfe_impact2{
  font-size: 1.5em;
}

/* aboutus area design */

.kp_picture_wrap{

}

.carino_au_midashi{
  margin: 40px 0px;
  padding: 20px 20px;
  border-top: solid 1px #496A7C;
  border-bottom: solid 1px #496A7C;
}

.carino_au_impact{
  font-size: 1.2em;
  line-height: 4em;
}

.iconclcarino{
  color: #496A7C;
  margin-right: 10px;
}

/* SNSNEWS area Design */

.SNS_large_container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.SNS_widgetside_module{
  margin: 20px;
  display: flex;
  flex-direction: column;
  width: 500px;
  overflow: hidden;
}

.SNSWM_header{
  background-color: rgba(234,216,39,1.0);
  border-radius: 25px;
}

.new_label{
  margin: 10px 0px 10px 20px;
  color: #ffffff;
}

.SNSWM_main{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  padding: 20px 0px;
}

.SNSWM_main_forfbm{
  padding: 20px 0px;
}


#insta-widget-adjust{
  font-family: sans-serif;
}

.SNS_descriptionside_module{
  margin: 20px;
  display: flex;
  flex-direction: column;
  width: 500px;
  overflow: hidden;
}

.SNSDM_header{
    background-color: rgba(253,237,76,1.0);
    border-radius: 25px;
}

.follow_label{
  margin: 10px 0px 10px 20px;
  color: #214254;
}

.SNS_title{
  margin: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.SNSDM_main{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;  
}


/* SNSNEWS area Design End*/

/* Video Page Design */

.president_wrap{
  margin: 40px 0px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.movie_desc_text_wrap{
  display: flex;
  flex-direction: row;
  justify-content: center;  
}

.movie_desc_text{
  width: 80vw;
}

/* Video Page Design End */

/* Product Page Design */

.catalog_header{
  background-color: #4790A8;
  border-radius: 25px;
  text-align: center;
  margin: 0px 20px;
}

.catalog_header_text{
  padding: 10px 0px;
  color: #ffffff;
}

.newicon{
  background-color: #F8E71C;
  color: #ffffff;
  width: 80px;
  text-align: center;
  border-radius: 25px;
}

/* Product Page Design End */


/* finisher */

.finisher{
  margin-bottom: 20px;
}

/* TOP-UP BALOON */

#balloon{
  width: 100px;
  height: 163px;
  position: fixed;
  left: 0;
  bottom: 60px;
  background-image: url(/images/balloon.png);
  opacity: 1;
}

#page_top{
  width: 100px;
  height: 60px;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #ef3f98;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 100px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -25px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* footer */

footer {
  color: #ffffff;
  padding: 30px;
  text-align: center;
  height: 200px;
  width: 100%;
  left:0;
  right: 0;
  top: 0;
  bottom: 0;
   display: flex;
 align-items: center;
 justify-content: center;

background: linear-gradient(124deg, rgba(244,33,33,1.0), rgba(243,80,80,1.0), rgba(255,235,59,1.0), rgba(30,171,132,1.0), rgba(142,209,252,1.0), rgba(69,169,232,1.0), rgba(21,150,232,1.0), rgba(243,80,80,1.0), rgba(244,33,33,1.0));
background-size: 1800% 1800%;

-webkit-animation: rainbow 36s ease infinite;
-z-animation: rainbow 36s ease infinite;
-o-animation: rainbow 36s ease infinite;
  animation: rainbow 36s ease infinite;
}

@-webkit-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-moz-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-o-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@keyframes rainbow { 
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}

.footer_cr_box{

}

/** ここから下すべて PC向けレスポンシブ補正CSSを記述しています **/

@media all and (min-width: 600px) {

/* PC Menu Scroll補正 */

.site-header.transform{
    background: rgba(255,255,255,0.9);
    padding: 0px;
}

/* PC Menu Scroll補正 End */

/* PC Logo */

.site-logo{
  margin: 20px 40px;
}

.site-logo.transform{
  margin: 15px 40px 20px 40px;
}
  
.site-logo img{
    height: 40px;
    width: auto;
}

.site-logo img.transform{
    height: 25px;
}
  
.spacer{
  height: 124px;
}
  
/* PC Logo End */

/* PC Nav */

.gnav{
  display: flex;
  margin: 30px 40px 10px 0px;
} 
 
.gnav__menu{
  display: flex;
  list-style-type: none;
}

.gnav__menu__item{
  margin-left: 30px;
  white-space: nowrap;
}

.gnav__menu__item a{
  color: #333;
  text-decoration: none;
}

/* PC Nav End */
  
/* SP Nav */

  /** SP Nav Hamburger **/

  .navToggle {
    display: none;
}

  /** SP Nav Hamburger End **/

  nav.globalMenuSp {
    display: none;
}
  
/* SP Nav */


/* PC用 CORNER PAD 補正*/

.corner_pad{
  padding: 7px 40px 10px 40px;
}
  
/* PC用 CORNER PAD 補正 End*/

/* PC用 CATCH COPY 補正*/
  
.catchcopy{
  font-size: 1.2rem;
  max-width: 80%;
  padding: 0 65px;
  position: relative;
  display: inline-block;
  
  border-left: none; 
  border-right: none;
  margin: 0px 0px;
}
 
.catchcopy:before, .catchcopy:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 64px;
  height: 2px;
  background-color: #214254;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.catchcopy:before {
  left:0;
}

.catchcopy:after {
  right: 0;
}

.catchcopy_deco2:before, .catchcopy_deco2:after {
  background-color: #ffffff;
  }
  
.catchcopy br{
  display: none;
}
  
/* PC用 CATCH COPY 補正 End*/
  
/* PC用 BUTTON位置 補正*/

#b_items{
  margin-right: 30px;
}

#b_shops{
  margin-right: 30px;
}

#b_snsnews{
  margin-right: 30px;
}

#b_aboutus{
  margin-right: 30px;
}

/* PC用 BUTTON位置 補正 End*/

/* PC用 Map 補正*/
    
.PCMAP{
  display: block;  
  }

.SPMAP{
  display: none;
  }

/* PC用 Map 補正 End*/

/* モーダルCSS PC用補正*/

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 600px;
  padding: 30px 40px 20px 40px;
  background-color: #fff;
}

/* モーダルCSS PC用補正 End */

/* SNSデザイン PC用補正*/

#co_snsnews{
  flex-direction: row;
}

.btn-social-icon-twitter__square {
  margin: 0px 10px 0px 40px;
}

.btn-social-icon-facebook__square {
  margin: 0px 10px 0px 40px;
}

.btn-social-icon-instagram__square {
  margin: 0px 10px 0px 0px;
}

/* SNSデザイン End */

/* SHOPLIST 左PAD調整 */

.accordion .inner {display:none; list-style:none; margin-bottom: 20px; padding-left: 40px;}

/* SHOPLIST 左PAD調整 End */

/* PCでは電話発信無効 */
  
a[href^="tel:"]{
    pointer-events: none;
  }  

/* PCでは電話発信無効 End */
  
/* Dola ASW Area Design PC補正*/

.fbg01 {
  background-image:url(/images/brand/dolaasw/sky.jpg);
  transform: translateZ(0);
}

#img_dolaasw-logo{
  width: 300px;
}

#img_dolaasw-shoes{
  width: 300px;
}
  
.item_desc_catch{
  font-size: 1.5em;
  font-family: 'Noto Serif JP';
  font-weight: 900;
  letter-spacing: 1em;
  line-height: 2em;
  text-align: center;
}

.item_desc_text{
  text-align: center;
}

.item_desc_text br{
  display: inline;
}
  
/* elfe Area Design PC補正*/

.elfe_contents_wrap{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}  

.elfe_image_wrap{
  margin: 20px;
}
  
/* about us phone call PCでは非表示 */
  
.button_wrap_sl_carino{
  display: none;
} 


/* TOP-UP BALOON PCでは右側に表示*/

#balloon{
  right: 0;
  left: auto;
}

#page_top{
  right: 0;
  left: auto;
}

/* YouTube module PC補正 */

.youtube_module{
  margin: 0px auto 40px auto;
  width: 60vw;
}  

.movie_desc_text{
  width: 60vw;
}
  
/* YouTube module Page遷移ボタン PC補正 */

.button_wrap_elsm br{
  display: none;
}
  
