@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

*{
  margin:0;
  padding:0;
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

*::before,
*::after{
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

input,
select,
textarea{
  font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  color:#0059A6;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-feature-settings: 'palt';
  touch-action: manipulation;
  resize: none;
  display: block;
}

button{
  border: none;
  background: none;
  border-radius: 0;
  cursor: pointer;
}

body{
  color:#0059A6;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}


.body_bg{
  width:1440px;
  min-width: 100vw;
  height:100vh;
  background-image:url('../img/site_bg.jpg');
  background-size: cover;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index:-10;
}

.body_bg img{
  width:100%;
  height:100%;
  object-fit: cover;
}
img{
  display: block;
  object-position: center;
  width: 100%;
}

#body_wrap{
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}


a{
  color: #0059a6;
}

.fax a{
  pointer-events: none;
}

@media (any-hover:hover){
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.container{
  max-width: 330px;
  margin:0 auto;
}

/*
------------------------------------
アニメーション関係
------------------------------------
*/

.common_hover_opa{
  transition: 0.4s;
}


@media (any-hover:hover){
  .common_hover_opa:hover{
    opacity: 0.5;
  }
}


/*要素のフェードイン(移動なし)*/
.anime_fade_show01{
  opacity: 0;
}

.anime_fade_show01.anime_active,
.anime_active .anime_fade_show01{
  animation-name:anime_fade_show01;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes anime_fade_show01 {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}


/*要素のフェードイン(移動あり)*/
.anime_fade_show02{
  opacity: 0;
  transform: translateY(40px);
}

.anime_fade_show02.anime_active,
.anime_active .anime_fade_show02{
  animation-name:anime_fade_show02;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes anime_fade_show02 {
  0% {
    opacity:0;
    transform: translate3d(0, 40px, 0);    
  }
  100% {
    opacity:1;
    transform: translate3d(0, 0, 0);
  }
}


/*慣性スクロール用*/
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}


/*スクロールに連動してふわふわ動く球体*/
.float_radi{
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid #0059A6;
  aspect-ratio: 1/1;
}


/*炭酸の泡の様なアニメーション*/

@keyframes shake01 {
  0% {transform: translateX(0);}
  25% {
    transform: translateX(45px);}
  50% {
    transform: translateX(-40px);
  }
  75% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes shake02{
  0% {transform: translateX(0);}
  25% {
    transform: translateX(-40px);}
  50% {
    transform: translateX(40px);
  }
  75% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }

}
@keyframes rise {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-400px);
    opacity: 0;
  }
}

.anime_babble_area{
  position: absolute;
  z-index:-4;
}

.anime_babble_area .babble_area_inner{
  position: relative;

}

.anime_bubble {
  position: absolute;
  animation-timing-function:ease-in-out;
  opacity: 0;
}

.anime_bubble span{
  display: block;
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  border-radius: 50%;
  animation-timing-function:ease-in-out;
  animation-duration:10s;
}

.anime_babble_area.anime_active .anime_bubble{
  animation-name:rise ;
}
.anime_babble_area.anime_active .anime_bubble span {
  animation-name: shake01;
}
.anime_babble_area.anime_active .anime_bubble.shake_reverce span{
  animation-name: shake02;
}

:root {
  --babble_duration01: 0.9s;
	--babble_duration02: 1s;
  --babble_duration03: 1.1s;
	--babble_duration04: 1.2s;
	--babble_duration05: 1.4s;
	
  --babble_delay01: 0.2s;
  --babble_delay02: 0.3s;
  --babble_delay03: 0.4s;
  --babble_delay04: 0.5s;
  --babble_delay05: 0.6s;
}

.anime_bubble.full span{
  background-color: #fff;
}


.babble_area01{
  width:408px;
  right:48px;
  bottom:40px;
}

.babble_area01 .anime_bubble01{
  width:17px;
  bottom:296px;
  right:40px;
  animation-duration: var(--babble_duration02);
  animation-delay: var(--babble_delay01);
}

.babble_area01 .anime_bubble02{
  width:17px;
  right:0;
  bottom:210px;
  animation-duration: var(--babble_duration04);
  animation-delay: var(--babble_delay03);
}
.babble_area01 .anime_bubble03{
  width:38px;
  right:40px;
  bottom:198px;
  animation-duration: var(--babble_duration02);
  animation-delay: var(--babble_delay01);
}
.babble_area01 .anime_bubble04{
  width:8px;
  right:24px;
  bottom:184px;
  animation-duration: var(--babble_duration03);
  animation-delay: var(--babble_delay02);
}
.babble_area01 .anime_bubble05{
  width:8px;
  right:56px;
  bottom:120px;
  animation-duration: var(--babble_duration05);
  animation-delay: var(--babble_delay05);
}
.babble_area01 .anime_bubble06{
  width:15px;
  right:60px;
  bottom:80px;
  animation-duration: var(--babble_duration02);
  animation-delay: var(--babble_delay01);
}
.babble_area01 .anime_bubble07{
  width:22px;
  right:22px;
  bottom:57px;
  animation-duration: var(--babble_duration03);
  animation-delay: var(--babble_delay02);
}
.babble_area01 .anime_bubble08{
  width:17px;
  right:17px;
  bottom:30px;
  animation-duration: var(--babble_duration01);
  animation-delay: var(--babble_delay04);
}
.babble_area01 .anime_bubble09{
  width:17px;
  right:111px;
  bottom:38px;
  animation-duration: var(--babble_duration02);
  animation-delay: var(--babble_delay01);
}
.babble_area01 .anime_bubble10{
  width:26px;
  right:56px;
  bottom:136px;
  animation-duration: var(--babble_duration03);
  animation-delay: var(--babble_delay02);
}
.babble_area01 .anime_bubble11{
  width:8px;
  right:140px;
  bottom:40px;
  animation-duration: var(--babble_duration04);
  animation-delay: var(--babble_delay03);
}
.babble_area01 .anime_bubble12{
  width:22px;
  right:180px;
  bottom:110px;
  animation-duration: var(--babble_duration01);
  animation-delay: var(--babble_delay04);
}
.babble_area01 .anime_bubble13{
  width:22px;
  right:248px;
  bottom:58px;
  animation-duration: var(--babble_duration04);
  animation-delay: var(--babble_delay03);
}
.babble_area01 .anime_bubble14{
  width:16px;
  right:265px;
  bottom:0;
  animation-duration: var(--babble_duration05);
  animation-delay: var(--babble_delay05);
}
.babble_area01 .anime_bubble15{
  width:50px;
  right:316px;
  bottom:0;
  animation-duration: var(--babble_duration05);
  animation-delay: var(--babble_delay05);
}
.babble_area01 .anime_bubble16{
  width:8px;
  right:400px;
  bottom:3px;
  animation-duration: var(--babble_duration01);
  animation-delay: var(--babble_delay04);
}


.babble_area02{
  top:0;
  left:calc(100% + 485px);
}

.babble_area02 .anime_bubble01{
  width:17px;
  top:50px;
  left:80px;
  animation-duration: var(--babble_duration02);
  animation-delay: var(--babble_delay05);
}
.babble_area02 .anime_bubble02{
  width:28px;
  top:108px;
  left:28px;
  animation-duration: var(--babble_duration01);
  animation-delay: var(--babble_delay03);
}
.babble_area02 .anime_bubble03{
  width:17px;
  top:148px;
  left:140px;
  animation-duration: var(--babble_duration05);
  animation-delay: var(--babble_delay05);
}
.babble_area02 .anime_bubble04{
  width:8px;
  top:166px;
  left:78px;
  animation-duration: var(--babble_duration02);
  animation-delay: var(--babble_delay01);
}
.babble_area02 .anime_bubble05{
  width:13px;
  top:184px;
  left:86px;
  animation-duration: var(--babble_duration05);
  animation-delay: var(--babble_delay04);
}
.babble_area02 .anime_bubble06{
  width:38px;
  top:183px;
  left:36px;
  animation-duration: var(--babble_duration04);
  animation-delay: var(--babble_delay01);
}
.babble_area02 .anime_bubble07{
  width:17px;
  top:230px;
  left:120px;
  animation-duration: var(--babble_duration01);
  animation-delay: var(--babble_delay01);
}
.babble_area02 .anime_bubble08{
  width:8px;
  top:254px;
  left:0;
  animation-duration: var(--babble_duration03);
  animation-delay: var(--babble_delay03);
}
.babble_area02 .anime_bubble09{
  width:28px;
  left:0;
  top:274px;
  animation-duration: var(--babble_duration01);
  animation-delay: var(--babble_delay03);
}


.main_babble_area{
  width: 330px;
  margin:auto;
  left:0;
  right:0;
  top:173px;
} 

.main_babble_area .anime_bubble01{
  width:14px;
  top:0;
  right:-1px;
  animation-duration: var(--babble_duration01);
  animation-delay: var(--babble_delay03);
}
.main_babble_area .anime_bubble02{
  width:10px;
  top:24px;
  right:46px;
  animation-duration: var(--babble_duration02);
  animation-delay: var(--babble_delay05);
}
.main_babble_area .anime_bubble03{
  width:25px;
  top:42px;
  right:-20px;
  animation-duration: var(--babble_duration01);
  animation-delay: var(--babble_delay03);
}
.main_babble_area .anime_bubble04{
  width:9px;
  top:48px;
  right:24px;
  animation-duration: var(--babble_duration05);
  animation-delay: var(--babble_delay02);
}
.main_babble_area .anime_bubble05{
  width:19px;
  top:70px;
  right:32px;
  animation-duration: var(--babble_duration05);
  animation-delay: var(--babble_delay02);
}
.main_babble_area .anime_bubble06{
  width:10px;
  top:124px;
  right:28px;
  animation-duration: var(--babble_duration02);
  animation-delay: var(--babble_delay05);
}
.main_babble_area .anime_bubble07{
  width:19px;
  top:92px;
  left:88px;
  animation-duration: var(--babble_duration01);
  animation-delay: var(--babble_delay03);
}
.main_babble_area .anime_bubble08{
  width:9px;
  top:108px;
  left:48px;
  animation-duration: var(--babble_duration03);
  animation-delay: var(--babble_delay04);
}
.main_babble_area .anime_bubble09{
  width:10px;
  top:126px;
  left:72px;
  animation-duration: var(--babble_duration03);
  animation-delay: var(--babble_delay04);
}
.main_babble_area .anime_bubble10{
  width:12px;
  top:142px;
  left:28px;
  animation-duration: var(--babble_duration02);
  animation-delay: var(--babble_delay05);
}
.main_babble_area .anime_bubble11{
  width:12px;
  top:194px;
  left:49px;
  animation-duration: var(--babble_duration01);
  animation-delay: var(--babble_delay03);
}
.main_babble_area .anime_bubble12{
  width:10px;
  top:235px;
  left:10px;
  animation-duration: var(--babble_duration03);
  animation-delay: var(--babble_delay04);
}
.main_babble_area .anime_bubble13{
  width:19px;
  top:256px;
  left:42px;
  animation-duration: var(--babble_duration04);
  animation-delay: var(--babble_delay01);
}
.main_babble_area .anime_bubble14{
  width:12px;
  top:282px;
  left:28px;
  animation-duration: var(--babble_duration05);
  animation-delay: var(--babble_delay02);
}
.main_babble_area .anime_bubble15{
  width:35px;
  top:268px;
  left:-34px;
  animation-duration: var(--babble_duration05);
  animation-delay: var(--babble_delay02);
}
.main_babble_area .anime_bubble16{
  width:9px;
  top:346px;
  left:14px;
  animation-duration: var(--babble_duration04);
  animation-delay: var(--babble_delay01);
}
/*
------------------------------------
LP内容
------------------------------------
*/

.fixed_section{
  position: fixed;
  width:calc(100% - 700px);
  height:100vh;
  left:0;
  top:0;
}

.fixed_section .fixed_section_inner{
  width:100%;
  height:100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixed_section  .fixed_section_contents{
  width: 359px;
  max-width: 100%;
}

.fixed_section .fixed_section_inner::before{
  content:'';
  width:197px;
  height:332px;
  background-image: url('../img/site_deco.png');
  position: absolute;
  z-index: -2;
  left:-28px;
  bottom:-120px;
}

.fixed_section .site_logo{
  width:359px;
  margin:0 auto;
}

.fixed_section .anchor_list{
  margin-top: 44px;
  padding-left: 20px;
}

.fixed_section .anchor_list li + li{
  margin-top: 24px;
  white-space: nowrap;
}

.fixed_section .anchor_list a{
  padding-left: 40px;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.08em;
  line-height: 1.3;
  position: relative;
}

.fixed_section .anchor_list a .radi{
  width:28px;
  height:28px;
  border-radius: 50%;
  border:1px solid #0059A6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left:0;
  top:4px;
  transition-duration: 0.4s;
  opacity: 0;
}
.fixed_section .anchor_list a .radi::after{
  content:'';
  width:17px;
  height:17px;
  border-radius: 50%;
  border:1px solid #0059A6;
}

.fixed_section .anchor_list a.active{
  font-size: 22px;
  font-weight: bold;
}
.fixed_section .anchor_list a.active .radi{
  opacity: 1;
}

.fixed_section .online_button{
  width: fit-content;
  min-width: 301px;
  max-width: 100%;
  min-height: 68px;
  padding:12px;
  border-radius: 100px;
  margin:48px auto 0;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #0059a6;
  transition-duration: 0.4s;
}

.fixed_section .online_button::after{
  content:'';
  width:24px;
  height:25px;
  background-image: url('../img/icon_cart_blue.svg');
  margin-left: 16px;
  white-space: nowrap;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .fixed_section .online_button:hover{
    background-color: #0059a6;
    color: #fff;
  }
  .fixed_section .online_button:hover::after{
    background-image: url('../img/icon_cart_white.svg');
  }
}

#main_wrap{
  width: 450px;
  max-width: 100%;
  margin-right: 250px;
  flex-shrink: 0;
  position: relative;
  box-shadow: -10px 0 20px -5px rgba(0, 0, 0, 0.25), /* 左側の影 */
              10px 0 20px -5px rgba(0, 0, 0, 0.25); /* 右側の影 */
              
}

#main_wrap .main_bg{
  width:450px;
  height:100vh;
  position: fixed;
  top: 0;
  right:250px;
  z-index:-9;
}

#main_wrap .main_bg video{
  display: block;
  width:100%;
  height:100%;
  object-fit: cover;
}

main.top_main{
  overflow: hidden;
}

.top_mv_section{
  padding-top: 92px;
}

.top_mv_section .mv_catch{
  width: 300px;
  margin:0 auto;
}

.top_mv_section .main_img{
  width:256px;
  margin:32px auto 0;
}

.top_mv_section .site_title{
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.top_mv_section .site_title img{
  width:360px;
}

.top_text_section{
  padding-top: 78px;
} 

.top_text_section .head_text{
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: center;
}

.top_text_section .p01{
  margin-top: 24px;
  font-size: 15px;
  line-height: 2.2;
  text-align: center;
}

.top_point_section{
  padding-top: 144px;
}

.top_point_section .float_radi_frame01{
  position: relative;
}


.top_point_section .float_radi_frame01 .float_radi01{
  width:20px;
  top:-40px;
  right:-12px;
}
.top_point_section .float_radi_frame01 .float_radi02{
  width:10px;
  top:0;
  right:-15px;
}
.top_point_section .float_radi_frame01 .float_radi03{
  width:15px;
  top:60px;
  right:128px;
}
.top_point_section .float_radi_frame01 .float_radi04{
  width:10px;
  top:140px;
  right:104px;
}
.top_point_section .float_radi_frame01 .float_radi05{
  width:23px;
  top:160px;
  right:72px;
}
.top_point_section .float_radi_frame01 .float_radi06{
  width:10px;
  top:186px;
  right:96px;
}

.top_point_section .sec_title{
  display: flex;
  justify-content: flex-end;
  padding-right: 15px;
  position: relative;
}

.top_point_section .sec_title img{
  width:68px;
}

.top_point_section .point_list{
  margin-top: 8px;
  position: relative;
}

.top_point_section .point_list .point_deco{
  width:199px;
  position: absolute;
  z-index: -5;
  top:-114px;
  left:calc(50% - 230px);
}
/* .top_point_section .point_list::before{
  content:'';
  width:199px;
  height:332px;
  background-image: url('../img/site_deco.png');
  position: absolute;
  z-index: -5;
  top:-114px;
  left:calc(50% - 230px);
} */

.top_point_section .point_block_frame{
  display: flex;
}

.top_point_section .point_block{
  position: relative;
}

.top_point_section .point_head{
  white-space: nowrap;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.6;
}

.top_point_section .point_text{
  margin-top: 36px;
  font-size: 15px;
  line-height: 2.1;
}

.top_point_section .point_block01_frame{
  justify-content: flex-end;
}

.top_point_section .point_block01{
  width: 260px;
  padding-top: 80px;
  padding-bottom: 220px;
}

.top_point_section .point_block01::after{
  content:'';
  width:324px;
  height:200px;
  background-image: url('../img/point_deco01.png');
  position: absolute;
  bottom:0;
  right:-30px;
}

.top_point_section .point_block01 svg{
  position: absolute;
  z-index: -1;
  top:0;
  left:-80px;
}


.top_point_section .point_block02_frame{
  margin-top: 66px;
}

.top_point_section .point_block02{
  width:270px;
  padding-top: 90px;
  padding-bottom: 190px;
}

.top_point_section .point_block02::after{
  content:'';
  width:271px;
  height:203px;
  background-image: url('../img/point_deco02.png');
  position: absolute;
  bottom:0;
  left:140px;
}

.top_point_section .point_block02 svg{
  position: absolute;
  z-index: -1;
  top:0;
  left:-144px;
}

.top_point_section .point_block03_frame{
  margin-top: 44px;
  justify-content: flex-end;
}

.top_point_section .point_block03{
  width:263px;
  padding-top: 80px;
  padding-bottom: 72px;
}

.top_point_section .point_block03 svg{
  position: absolute;
  z-index: -1;
  top:0;
  right:-104px;
}


.top_point_section .float_radi_frame02{
  position: relative;
}

.top_point_section .float_radi_frame02 .float_radi01{
  width:11px;
  left:20px;
  top:-40px;
}
.top_point_section .float_radi_frame02 .float_radi02{
  width:23px;
  left:36px;
  top:20px;
}
.top_point_section .float_radi_frame02 .float_radi03{
  width:11px;
  left:60px;
  top:40px;
}
.top_point_section .float_radi_frame02 .float_radi04{
  width:33px;
  left:-15px;
  top:86px;
}
.top_point_section .float_radi_frame02 .float_radi05{
  width:11px;
  left:-8px;
  top:146px;
}

.top_product_section{
  padding-top: 224px;
}

.top_product_section .float_radi_frame03{
  position: relative;
}

.top_product_section .float_radi_frame03 .float_radi01{
  width:10px;
  top:-5px;
  left:58px;
}
.top_product_section .float_radi_frame03 .float_radi02{
  width:16px;
  top:15px;
  left:32px;
}
.top_product_section .float_radi_frame03 .float_radi03{
  width:11px;
  top:48px;
  left:61px;
}
.top_product_section .float_radi_frame03 .float_radi04{
  width:10px;
  top:-30px;
  right:80px;
}
.top_product_section .float_radi_frame03 .float_radi05{
  width:23px;
  top:20px;
  right:44px;
}
.top_product_section .float_radi_frame03 .float_radi06{
  width:10px;
  top:43px;
  right:85px;
}
.top_product_section .float_radi_frame03 .float_radi07{
  width:10px;
  top:61px;
  right:67px;
}

.top_product_section .sec_title{
  font-weight: bold;
  font-size: 27px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-align: center;
}

.top_product_section .float_radi_frame{
  max-width: 330px;
  margin:0 auto;
}

.top_product_section .container{
  max-width: 360px;
}

.top_product_section .product_box_frame{
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.top_product_section .product_box{
  width: 360px;
  max-width: 100vw;
  background-color: #fff;
  border-radius: 14px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.top_product_section .product_head{
  display: flex;
  justify-content: flex-end;
}

.top_product_section .product_thumb{
  /* width:139px; */
  width:86px;
  margin-right: 24px;
}

.top_product_section .product_head_text_area{
  flex-shrink: 0;
  padding-right: 15px;
  padding-top: 16px;
}

.top_product_section .product_name{
  display: flex;
  justify-content: center;
}

.top_product_section .product_name img{
  width:140px;
}

.top_product_section .product_text{
  white-space: nowrap;
  margin-top: 24px;
  font-size: 15px;
  line-height: 2.1;
} 

.top_product_section .product_body{
  padding-top: 28px;
  padding-right: 15px;
  padding-left: 36px;
  padding-bottom: 20px;
  display: none;
}

.top_product_section .product_info{
  
  font-size: 15px;
  line-height: 1.8;
}

.top_product_section .product_info .product_info_head{
  font-size: 17px;
}

.top_product_section .product_info p + p{
  margin-top: 24px;
}

.top_product_section .product_switch{
  width: 315px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  margin:24px auto 0;
  font-size: 15px;
  line-height: 1;
  border: 1px solid #0059a6;
  position: relative;
  cursor: pointer;
}

.top_product_section .product_switch::after{
  content:'';
  width:8px;
  height:5px;
  background-image: url('../img/icon_angle_bottom_blue.svg');
  position: absolute;
  right:32px;
  top:0;
  bottom:0;
  margin:auto;
}

.top_product_section .product_switch.active::after{
  transform: rotateZ(180deg);
}

.top_map_section{
  padding-top: 235px;
  padding-bottom: 160px;
}

.top_map_section .float_radi_frame04{
  position: relative;
}

.top_map_section .float_radi_frame04 .float_radi01{
  width:10px;
  top:-60px;
  right:52px;
}
.top_map_section .float_radi_frame04 .float_radi02{
  width:18px;
  top:-55px;
  right:6px;
}
.top_map_section .float_radi_frame04 .float_radi03{
  width:10px;
  top:-32px;
  right:24px;
}
.top_map_section .float_radi_frame04 .float_radi04{
  width:10px;
  top:36px;
  right:-3px;
}
.top_map_section .float_radi_frame04 .float_radi05{
  width:23px;
  top:45px;
  right:18px;
}
.top_map_section .float_radi_frame04 .float_radi06{
  width:18px;
  top:46px;
  left:-10px;
}
.top_map_section .float_radi_frame04 .float_radi07{
  width:5px;
  top:54px;
  left:16px;
}
.top_map_section .float_radi_frame04 .float_radi08{
  width:10px;
  top:70px;
  left:12px;
}

.top_map_section .sec_title{
  font-weight: bold;
  font-size: 27px;
  letter-spacing:0.08em;
  line-height: 1.63;
  text-align: center;
}

.top_map_section .p01{
  text-align: center;
  margin-top: 20px;
  font-size: 15px;
  line-height: 2.1;
  text-align: center;
  white-space: nowrap;
}

.top_map_section .map_frame{
  margin-top: 76px;
  display: flex;
  justify-content: center;
}

.top_map_section .map_frame .map{
  position: relative;
  flex-shrink: 0;
  width:389px;
  aspect-ratio: 1/0.89;
}

.top_map_section .map_frame img{
  width:100%;
  height:100%;
  object-fit: contain;
}

.top_map_section .map_frame .map_pin{
  width: 3.8%;
  position: absolute;

}

.top_map_section .map_frame .map_pin_icon{
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  background-image: url('../img/map_pin.svg');
}

.top_map_section .map_frame .map_name{
  white-space: nowrap;
  text-align: center;
  position: absolute;
  top: 102%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);

}

.top_map_section .shop_list_frame{
  margin-top: 40px;
  background-color: #fff;
  padding:24px 20px;
  border-radius: 14px ;
}

.top_map_section .shop_list{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap:14px 0;
  font-size: 15px;
  line-height: 1.4;
}

.top_map_section .shop_list li{
  width: 48%;
}

.top_map_section .online_button{
  width: fit-content;
  min-width: 301px;
  max-width: 100%;
  min-height: 68px;
  padding:12px;
  border-radius: 100px;
  margin:48px auto 0;
  background-color: #0059a6;
  border:1px solid #0059a6;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #fff;
  transition-duration: 0.4s;
}

.top_map_section .online_button::after{
  content:'';
  width:24px;
  height:25px;
  background-image: url('../img/icon_cart_white.svg');
  margin-left: 16px;
  white-space: nowrap;
  transition-duration: 0.4s;
}

@media(any-hover:hover){
  .top_map_section .online_button:hover{
    background-color: #fff;
    color: #0059a6;
  }
  .top_map_section .online_button:hover::after{
    background-image: url('../img/icon_cart_blue.svg');
  }
}


footer{
  padding:32px 0 8px;
  color:#fff;
  position: relative;
}
footer::before{
  content:'';
  width:100%;
  height:100%;
  background-color:#0059a6;
  position: absolute;
  top:0;
  left:0;
  z-index:-5;
}

footer a{
  color:#fff
}

footer .footer_logo{
  display: block;
  width:211px;
}

footer .footer_address{
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.4;
}

footer .footer_tel{
  font-size: 15px;
  line-height: 1.4;
}

footer .contact_button{
  width: fit-content;
  min-width: 301px;
  max-width: 100%;
  min-height: 68px;
  border-radius: 100px;
  margin:36px auto 0;
  background-color: #0059a6;
  border:1px solid #fff;
  display: flex;
  padding-left: 58px;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  color: #fff;
  transition-duration: 0.4s;
  position: relative;
}

footer .contact_button::after{
  content:'';
  width:5px;
  height:8px;
  background-image: url('../img/icon_angle_right_white.svg');
  transition-duration: 0.4s;
  position: absolute;
  right:40px;
  top:0;
  bottom:0;
  margin:auto;
}

@media(any-hover:hover){
  footer .contact_button:hover{
    background-color: #fff;
    color: #0059a6;
  }
  footer .contact_button:hover::after{
    background-image: url('../img/icon_angle_right_blue.svg');
  }
}

footer .footer_copy{
  margin-top: 48px;
  font-size: 10px;
  line-height:1.4;
  text-align: center;
  color: #fff;

}