@charset "UTF-8";
/* CSS Document */
/* ここから下がボタンのCSS　*/
.btn-open {
    display: inline-block;
    width: 100%;
    height: 55px;
    text-align: center;
    background-color: #E3FBFF;
    line-height: 52px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid  rgba(0,184,198,1.00);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-open:after{
  width: 100%;
  height: 0;
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  background : #FFFFFF;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .2s;
  z-index: -1;
}
.btn-open:hover{
  color: #000000;
}
.btn-open:hover:after{
  height: 800%;
  opacity: 1;
}
.btn-open:active:after{
  height: 360%;
  opacity: 1;
}

/* ここから下がボタン2のCSS　*/
.btn-open2 {
    display: inline-block;
    width: 100%;
    height: 55px;
    text-align: center;
    background-color: #1484FF;
    line-height: 52px;
    color: #FFF;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #0088FF;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-open2:after{
    width: 100%;
    height: 0;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #FFF;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
    transition: .2s;
    z-index: -1;
}
.btn-open2:hover{
    color: #1484FF;
}
.btn-open2:hover:after{
  height: 800%;
  opacity: 1;
}
.btn-open2:active:after{
  height: 360%;
  opacity: 1;
}

/* ここから下がボタン3のCSS　*/
.btn-open3 {
  display: inline-block;
  width: 100%;
  height:55px;
  text-align: center;
  background-color: #008F7C;
  line-height: 52px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #008F7C;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-open3:after{
  width: 100%;
  height: 0;
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  background : #FFF;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .2s;
  z-index: -1;
}
.btn-open3:hover{
  color: #008F7C;
}
.btn-open3:hover:after{
  height: 800%;
  opacity: 1;
}
.btn-open3:active:after{
  height: 360%;
  opacity: 1;
}

/* ここから下がボタン4のCSS　*/
.btn-open4 {
  display: inline-block;
  width: 100%;
  height:55px;
  text-align: center;
  background-color: #0653b6;
  line-height: 52px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #0653b6;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-open4:after{
  width: 100%;
  height: 0;
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  background : #FFF;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transition: .2s;
  z-index: -1;
}
.btn-open4:hover{
  color: #0653b6;
}
.btn-open4:hover:after{
  height: 800%;
  opacity: 1;
}
.btn-open4:active:after{
  height: 360%;
  opacity: 1;
}

/* ここからバナーボタンCSS　*/
.btn_banner {
    border-radius: 5px;
    background-color: lightblue;
    padding: 10px;
    text-decoration: none;
    color: white;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    font-size: 0.3rem;
}
/* ここまでバナーボタンCSS　*/

/* ここから下が浮き上がりボタン2のCSS　*/
.img_wrap{
  border: 1px solid #ddd;
  width: 100%;
  height: 100%;
  margin: 20px auto 0;
  transition-duration: 0.5s;
}
.img_wrap img{
  width: 100%;
  cursor: pointer;
}

/* ここから下が浮き上がりボタン2のCSS　*/
.img_wrap2{
  border: 1px solid #ddd;
  width: 100%;
  height: 100%;
  margin: 20px auto 0;
  transition-duration: 0.5s;
}
.img_wrap2 img{
  width: 100%;
  cursor: pointer;
}
.img_wrap2:hover{
  box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
  transform: translateY(-10px);
  transition-duration: 0.5s;
}

a.btn--red {
  color: #ffffff;
  background-color: #ff0000;
  border-bottom: 5px solid #ff0000;
}

a.btn--yellow {
  color: #000;
  background-color: #fff100;
  border-bottom: 5px solid #ccc100;
}

a.btn--blue {
  color: #000;
  background-color: #59CDFF;
  border-bottom: 5px solid #59CDFF;
}

/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

/* ここから立体ボタンのCSS　*/
a.btn--yellow:hover {
  margin-top: 3px;
  color: #000;
  background: #fff20a;
  border-bottom: 2px solid #ccc100;
}

a.btn--red:hover {
  margin-top: 3px;
  color: #ffffff;
  background: #0069BC;
  border-bottom: 2px solid #ccc100;
}

/* ここから立体ボタンのCSS Blue　*/
a.btn--blue:hover {
  margin-top: 3px;
  color: #000;
  background: # rgba(105,230,255,1.00);
  border-bottom: 2px solid rgba(0,176,211,1.00);
}

a.btn--blue {
  color: #000;
  background-color: rgba(105,230,255,1.00);
  border-bottom: 5px solid rgba(0,176,211,1.00);
}

/* ここから下が浮き上がりボタン2のCSS　*/
.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

/* ここから下が切り替わりボタンCSS　*/
.btn_link {
	position: relative;
	margin: 0 auto;
	display: block;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
}
.btn_link img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}
.btn_link:hover img:nth-of-type(2) {
	opacity: 0;
}

/*--- 線から塗り（共通設定） ---*/

.btn05{
    /*線の基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    display: inline-block;
    color: #fff; 
    padding: 10px 20px;
    background:#333;
    text-decoration: none;
    outline: none;
    /*アニメーションの指定*/
    transition: all .3s;
    transition-delay: .7s;/*0.7秒遅れてアニメーション*/
}

/*hoverした際の、ボタンの背景とテキスト色の変更*/
.btn05:hover{
	background:#fff;
	color: #333;
}

/*線の設定*/
.btn05 span{
    display: block;
}

/*横線の設定*/
.btn05::before,
.btn05::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/   
    width: 0;
    height: 1px;
    background: #333;
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

/*縦線の設定*/
.btn05 span::before,
.btn05 span::after{
    content:"";
    /*絶対配置で線の位置を決める*/   
    position: absolute;
    /*線の形状*/
    width:1px;
    height:0;
    background: #333;
    /*アニメーションの指定*/
    transition: all 0.2s linear;
}

/*hoverした際、線が縦横100%伸びる*/
.btn05:hover::before,
.btn05:hover::after{
    width: 100%;
}
.btn05:hover span::before,
.btn05:hover span::after{
    height: 100%;
}

/*== 左上と右下から枠線が伸びて塗りに */

/*右下から右上へ伸びる横線*/
.bordercircle3::after{
    right:0;
    bottom: 0;
    transition-duration: 0.4s;
}

/*右下から右上へ伸びる縦線*/
.bordercircle3 span::after{
    right:0;
    bottom: 0;
    transition-duration: 0.4s;
}

/*左上から右上へ伸びる横線*/
.bordercircle3::before{
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

/*左上から左下へ伸びる横線*/
.bordercircle3 span::before{
    left: 0;
    top: 0;
    transition-duration: 0.4s;
}

/*画像切り替え*/
.link_button{
    flex: 1; /* これが重要！ */
}
#shop_info {
 margin-left: 10px;
 margin-right: 10px;
}

@media(max-width: 750px) {
    
 .flex-container{
  flex-direction: column;
    }
    
.link_button{
    flex-direction: column;
}

}
.link_button {
  position: relative;
}


.link_button .active {
  position: absolute;
  left: 0;
  top:  0px;
  opacity: 0;
}

.link_button:hover .active {
 opacity: 1;
}

/*フワッと画像切り替え*/
.image_box{
  width: 100%;
  display: block;
}
.hover{
  overflow: hidden;
  position: relative;
  img{
    display: block;
    width: 100%;
    transition: .3s;
  }
  .img_1{
    position: relative;
    z-index: 2;
  }
  .img_2{
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
  }
  &:hover{
    .img_1{
      opacity: 0;
    }
  }
}

@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

/*背景*/
.btn-wrap {
  margin: 20px;
}

a.btn-c {
  font-size: 2rem;

  position: relative;

  padding: 1.5rem 4rem 1.5rem 6rem;

  color: #fff;
  border: 2px solid #000;
  border-radius: 100vh;
  background: #0066b5;
  -webkit-box-shadow: 0 5px 0 #003d7e;
  box-shadow: 0 5px 0 #003d7e;
}

a.btn-c span {
  font-size: 1.2rem;
  line-height: 1.5;

  position: absolute;
  top: -10px;
  left: -20px;

  width: 64px;
  height: 64px;
  padding-top: 15px;

  -webkit-transition: all 0.3s;

  transition: all 0.3s;

  color: #000;
  border: 2px solid #000;
  border-radius: 50%;
  background: #fff;
}

a.btn-c span em {
  font-style: normal;

  color: #d20010;
}

a.btn-c small {
  font-weight: bold;
}

a.btn-c i {
  margin-right: 1rem;
}

a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #003d7e;
  -webkit-box-shadow: 0 2px 0 #0066b5;
  box-shadow: 0 2px 0 #0066b5;
}

a.btn-c:hover span {
  -webkit-transform: translate(0, -5px);
  transform: translate(0, -5px);
}

/* 色反転＆シャドウがつくボタン　*/
.shadow-btn4{
  --mainColor :#4d4d4d;
  --subColor :#fff;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  cursor: pointer;
  border-style: solid;
  border-color: transparent;
  background-color: var(--mainColor);
  font-weight: 700;
  color: var(--subColor);
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  font-size: clamp(16px, 8vw, 24px);
  padding-right: clamp(8px, 2.1333333333333333vw, 16px);
  padding-left: clamp(8px, 2.1333333333333333vw, 16px);
  padding-top: clamp(4px, 1.0666666666666667vw, 8px);
  padding-bottom: clamp(4px, 1.0666666666666667vw, 8px);
  border-top-width: clamp(1px, 0.06944444444444445vw, 2px);
  border-right-width: clamp(1px, 0.06944444444444445vw, 2px);
  border-bottom-width: clamp(1px, 0.06944444444444445vw, 2px);
  border-left-width: clamp(1px, 0.06944444444444445vw, 2px);
  -webkit-box-shadow: 0 0 0 var(--mainColor);
  box-shadow: 0 0 0 var(--mainColor);
 text-decoration: none;
}

.shadow-btn4:hover{
  border-color: var(--mainColor);
  background-color: var(--subColor);
  color: var(--mainColor);
  -webkit-box-shadow: 0 0 10px var(--mainColor);
  box-shadow: 0 0 10px var(--mainColor);
}

@media (min-width: 1025px){
  .shadow-btn4{
    font-size: clamp(14px, 3.7333333333333334vw, 16px);
    padding-right: clamp(24px, 1.6666666666666665vw, 32px);
    padding-left: clamp(24px, 1.6666666666666665vw, 32px);
    padding-top: clamp(12px, 0.8333333333333333vw, 16px);
    padding-bottom: clamp(12px, 0.8333333333333333vw, 16px);
  }
}