@charset "utf-8";
/* CSS Document */

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

.mincho{
  font-family: "Noto Serif JP", serif;
}
html{
  scroll-behavior: auto !important;
}
html,body{
  overflow-x: hidden;
}
body{
  font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Verdana, Meiryo, -apple-system, BlinkMacSystemFont, Roboto, sans-serif !important;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  letter-spacing: 1px;
  color: #000 !important;
  position: relative;
}
h1, h2, h3, h4, h5, h6{
  font-weight: 400;
}

.sns_link{
  list-style: none;
  padding-left: 0;
  display: flex;
}
.sns_link li{
  width: 25px;
  margin-left: 8px;
}
@media (min-width: 768px){
  .sns_link{
    margin-bottom: 0;
  }
}
@media (max-width: 767px){
  .sns_link{
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/*================================
HEADER
================================*/
#header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
#header .navbar{
  background-color: #fff;
}
.navbar-brand{
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: .4s;
}
  .navbar-brand #logo{
    width: 66%;
    height: 66%;
  }

.navbar-nav .nav-link span{
  font-family: "Noto Serif JP", serif;
  color: #e8939a;
  display: block;
}
.navbar-toggler{
  position: absolute;
  top: 0;
  right: 0;
}
.navbar-collapse{
  background-color: #fff;
}
@media (min-width: 992px){
  .navbar-brand{
    width: 150px;
    height: 150px;
  }
  .navbar-collapse{
    margin-right: 200px;
  }
  .navbar-nav .nav-link{
    font-size: 15px;
  }
  .navbar-nav .nav-link span{
    font-size: 13px;
  }
}
@media (min-width: 768px) and (max-width: 1199px){
  .navbar-nav .nav-link{
    font-size: 13px;
  }
  .navbar-nav .nav-link span{
    font-size: 11px;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  .navbar{
    align-items: flex-end;
  }
  .navbar-brand{
    width: 136px;
    height: 136px;
  }
}
@media (min-width: 768px){
  #header .navbar{
    height: 110px;
  }
  .navbar-nav{
    align-items: center;
    justify-content: flex-end;
  }
  .navbar-brand #logo .cls-1 {
    fill: #e8939a;
  }
  .navbar-nav .nav-link{
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .navbar-collapse{
    justify-content: flex-end;
  }
  #header .sns_link{
    display: none;
  }
}
@media (max-width: 767px){
  #header .navbar{
    height: 50px;
  }
  #header .container-fluid{
    background-color: #fff;
  }
  .navbar-brand{
    width: 100px;
    height: 100px;
    background-color: #e8939a;
  }
  .navbar-brand #logo .cls-1 {
    fill: #fff;
  }
  .navbar-nav{
    margin-left: 55px;
    background-color: #fff;
    padding-left: 55px;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .navbar-nav .nav-link{
    display: flex;
    order: 1;
    font-size: 15px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .navbar-nav .nav-link span{
    order: 2;
    font-size: 12px;
    margin-left: 5px;
  }
  .navbar-collapse{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(176, 176, 176, .5);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    transform: translateZ(0);
    z-index: 99;
  }
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
  .navbar-toggler{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-radius: 0;
    border: none;
    z-index: 100;
  }
  .navbar-toggler[aria-expanded="true"]{ background: transparent;}
  .navbar-toggler:focus,
	.navbar-toggler:hover{
		outline: none;
		box-shadow: none;
	}
  .navbar-toggler	.navbar-toggler-icon{
		position: absolute;
		content: '';
		height: 10px;
		width: 30px;
    background: #fff;
		text-align: center;
    top: 12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
	}
	.navbar-toggler	.navbar-toggler-icon::before,
	.navbar-toggler	.navbar-toggler-icon::after {
		position: absolute;
		content: '';
		height: 2px;
		width: 30px;
		left: 0;
		transition: all .3s ease-in;
		background: #e8939a;
	}
	.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon::before { top: 0;}
	.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon::after { bottom: 0;}
	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{ background: none;}
	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
		transform: rotate(20deg);
		top: 4px;
	}
	.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
		transform: rotate(-20deg);
		bottom: 4px;
	}
  .navbar-toggler-menu{
    position: absolute;
    bottom: 10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 10px;
    color: #e8939a;
  }
}

/*HEADER アニメーション
================================*/
@media (max-width: 767px){
  .navbar-collapse .navbar-nav .nav-item{
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.22, 0.94, 0.44, 1);
    backface-visibility: hidden;
    transform-style: preserve-3d;
  }
  .navbar-collapse.show {
    animation: fadeInNav .2s ease-out forwards;
  }
  .navbar-collapse.show .navbar-nav .nav-item {
    transform: translateY(0);
    opacity: 1;
  }
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(1) {
    transition-delay: .2s;
  }
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(2) {
    transition-delay: .4s;
  }
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(3) {
    transition-delay: .6s;
  }
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(4) {
    transition-delay: .8s;
  }
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(5) {
    transition-delay: 1s;
  }
  .navbar-collapse.show .navbar-nav .nav-item:nth-child(6) {
    transition-delay: 1.2s;
  }

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

/*HEADER 固定
================================*/
#header.is-show .navbar{
  box-shadow: 0 5px 10px rgba(177, 177, 177, 0.15);
}
@media (min-width: 768px){
  #header.is-show .navbar-brand{
    background-color: #e8939a;
  }
  #header.is-show .navbar-brand #logo .cls-1 {
    fill: #fff;
  }
}

/*================================
FIX MENU
================================*/
#fix_menu{
  position: fixed;
  text-align: center;
}
#fix_menu .tel .btn-tel{
  text-decoration: none;
}
#fix_menu .tel .tel_num{
  font-weight: bold;
}
#fix_menu .tel .tel_num i{
  transform: rotate(20deg);
  margin-right: 2px;
  position: relative;
  top: -1px;
}
#fix_menu .tel .reception{
  display: block;
}
@media (min-width: 992px){
  #fix_menu{
    top: 25px;
  }
  #fix_menu .tel .tel_num{
    font-size: 1.4rem;
  }
  #fix_menu .tel .tel_num i{
    font-size: 1.1rem;
  }
  #fix_menu .tel .reception{
    font-size: .8rem;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  #fix_menu{
    top: 5px;
  }
  #fix_menu .tel .tel_num{
    font-size: 1.3rem;
  }
  #fix_menu .tel .tel_num i{
    font-size: 1rem;
  }
  #fix_menu .tel .reception{
    font-size: .7rem;
  }
}
@media (min-width: 768px){
  #fix_menu{
    right: 15px;
    z-index: 1000;
  }
  #fix_menu >div:not(.tel){
    display: none;
  }
  #fix_menu .tel .tel_num{
    color: #e8939a;
  }
}
@media (max-width: 767px){
  #fix_menu{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    bottom: 0;
    left: 0;
  }
  #fix_menu > div{
    display: flex;
    justify-content: center;
    padding: 4px;
    height: 35px;
  }
  #fix_menu > div a{
    color: #fff;
    text-decoration: none;
  }
  #fix_menu .tel{
    width: 100%;
    background-color: #e8939a;
    align-items: baseline;
  }
  #fix_menu .tel .tel_num{
    color: #fff;
    font-size: 1.1rem;
  }
  #fix_menu .tel .tel_num i{
    font-size: .9rem;
  }
  #fix_menu .tel .reception{
    color: #fff;
    font-size: .6rem;
    margin-left: 5px;
  }
  #fix_menu > div:not(.tel) a{
    display: flex;
    align-items: center;
    font-size: .7rem;
  }
  #fix_menu > div:not(.tel) .icon{
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 5px;
  }
  #fix_menu .form,
  #fix_menu .online{
    width: 50%;
  }
  #fix_menu .form{
    background-color: #99b3c6;
  }
  #fix_menu .form img{
    width: 56%;
  }
  #fix_menu .online{
    background-color: #06c755;
  }
  #fix_menu .online img{
    width: 56%;
  }
}

/*================================
MAIN
================================*/
@media (min-width: 768px){
  #main section{
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px){
  #main section{
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/*TITLE
================================*/
/*下線タイトル*/
.line_ttl{
  position: relative;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 2rem;
}
.line_ttl::before{
  content: '';
  display: inline-block;
  width: 64px;
  height: 1px;
  background-color: #808080;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px){
  .line_ttl{
    font-size: 1.6rem;
  }
}
@media (max-width: 767px){
  .line_ttl{
    font-size: 1.2rem;
  }
}

/*英語タイトル*/
.en_ttl{
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.en_ttl h2{
  color: #969696;
  font-size: 1rem;
  margin-bottom: 0;
}
.en_ttl .mincho{
  font-size: 2.4rem;
  font-weight: 500;
}

/*ピンクの線タイトル*/
.pl_ttl{
  position: relative;
  font-weight: bold;
  margin-top: 18px;
  margin-bottom: 1.5rem;
}
.pl_ttl::before{
  content: '';
  display: inline-block;
  position: absolute;
  top: -18px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #e8939a;
}
@media (min-width: 768px){
  .pl_ttl{
    font-size: 1.3rem;
  }
  .pl_ttl:not(:first-child){
    margin-top: 100px;
  }
}
@media (max-width: 767px){
  .pl_ttl{
    font-size: 1.1rem;
  }
  .pl_ttl:not(:first-child){
    margin-top: 80px;
  }
}

/*背景ピンクグラデのタイトル*/
.grd_ttl{
  color: #fff;
  font-weight: bold;
  background: linear-gradient(to right, #e8939a, #fad0c4);
  padding: 8px 15px;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px){
  .grd_ttl{
    font-size: 1.15rem;
  }
}
@media (max-width: 767px){
  .grd_ttl{
    font-size: 1.1rem;
  }
}

/*左線のピンクグラデのタイトル*/
.ll_ttl{
  position: relative;
  font-size: 1.1rem;
  font-weight: bold;
  padding-left: 12px;
  margin-bottom: 1rem;
}
.ll_ttl::before{
  content: '';
  display: inline-block;
  position: absolute;
  top: -2px;
  left: 0;
  width: 4px;
  height: 25px;
  background: linear-gradient(to top, #e8939a, #fad0c4); 
}

/*ピンクのタイトル*/
.pnk_ttl{
  color: #e8939a;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: .75rem;
}

/*黒のタイトル*/
.blk_ttl{
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: .75rem;
}

/*LIST
================================*/
/*※リスト*/
.asterisk_list{
  list-style: none;
  padding-left: 0;
}
.asterisk_list:last-child{
  margin-bottom: 0;
}
.asterisk_list li{
  position: relative;
  padding-left: 1.2rem;
}
.asterisk_list li::after{
  content: '※';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

/*数字リスト*/
.num_list{
  counter-reset: list-count;
  list-style: none;
  padding-left: 0;
}
.num_list:last-child{
  margin-bottom: 0;
}
.num_list > li:not(:last-child){
  margin-bottom: .75rem;
}
.num_list > li::before {
  content: counter(list-count) ". ";
  counter-increment: list-count;
  font-weight: bold;
}
.num_list > li span{
  display: inline-block;
  margin-bottom: .25rem;
}

/*FONT
================================*/
.asterisk_txt{
  text-indent: -.85rem;
  padding-left: .85rem;
  font-size: .85rem;
}
.pnk_txt{
  color: #e8939a;
}
.blu_txt{
  color: #80afc1;
}

/*BUTTON
================================*/
.view_more{
  position: relative;
  color: #fff;
  font-weight: bold;
  background-color: #e8939a;
  border-radius: 0;
  width: 100%;
  padding: 1rem .5rem;
  line-height: 1;
}
.view_more::before{
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top: 1px;
  border-right: 1px;
  border-style: solid;
  border-color: #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}
@media (hover: hover) {
  .view_more:hover{
    color: #e8939a;
    border-color: #e8939a;
    background-color: #fff;
  }
  .view_more:hover::before{
    border-color: #e8939a;
  }
}
@media (min-width: 768px){
  .view_more{
    max-width: 260px;
    margin-top: 50px;
  }
}
@media (max-width: 767px){
  .view_more{
    font-size: .9rem;
    width: 80%;
    max-width: 240px;
    margin-top: 30px;
  }
}

/*================================
MV
================================*/
#mv{
  position: relative;
  z-index: 0;
  display: flex;
}
@media (min-width: 768px){
  #mv{
    margin-top: 110px;
    padding-left: 120px;
    max-height: 900px;
  }
}
@media (max-width: 767px){
  #mv{
    margin-top: 50px;
    max-height: 540px;
  }
}

/*================================
施術メニュー
================================*/
/*お悩みから探す
================================*/
#menu_accordion .accordion-item{
  border: none;
  border-radius: 0;
}
#menu_accordion .accordion-header{
  line-height: 1.2;
}
#menu_accordion .accordion-button{
  color: #fff;
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#menu_accordion .accordion-button::after{
  display: none;
}
#menu_accordion .accordion-button span{
  display: block;
}
#menu_accordion .accordion-collapse{
  border-radius: 0;
}
#menu_accordion .accordion-body{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
#menu_accordion .accordion-body ul{
  padding-left: 0;
  list-style: none;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
#menu_accordion .accordion-body ul li:not(:last-child){
  margin-bottom: 1rem;
}
#menu_accordion .accordion-body ul li a{
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  padding: 1rem;
  display: block;
  text-align: left;
  line-height: 1;
}
#menu_accordion .accordion-body ul li a::before{
  content: '';
  width: 8px;
  height: 8px;
  border: 0;
  border-top-width: 1px;
  border-right-width: 1px;
  border-style: solid;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

/*肌*/
#skin_list .accordion-header{
  background-color: #fca68b;
}
#skin_list .accordion-body ul li a{
  border-color: #fca68b;
}
#skin_list .accordion-body ul li a::before{
  border-color: #fca68b;
}
@media (hover: hover) {
  #skin_list .accordion-body ul li a:hover{
    background-color: rgba(252, 166, 139, .2);
  }
}
#skin_list .accordion-body ul li a.active{
  background-color: rgba(252, 166, 139, .2);
}

/*体*/
#body_list .accordion-header{
  background-color: #7fb6c9;
}
#body_list .accordion-body ul li a{
  border-color: #7fb6c9;
}
#body_list .accordion-body ul li a::before{
  border-color: #7fb6c9;
}
@media (hover: hover) {
  #body_list .accordion-body ul li a:hover{
    background-color: rgba(127, 182, 201, .2);
  }
}
#body_list .accordion-body ul li a.active{
  background-color: rgba(127, 182, 201, .2);
}

/*その他*/
#other_list .accordion-header{
  background-color: #a7c17a;
}
#other_list .accordion-body ul li a{
  border-color: #a7c17a;
}
#other_list .accordion-body ul li a::before{
  border-color: #a7c17a;
}
@media (hover: hover) {
  #other_list .accordion-body ul li a:hover{
    background-color: rgba(167, 193, 122, .2);
  }
}
#other_list .accordion-body ul li a.active{
  background-color: rgba(167, 193, 122, .2);
}
@media (min-width: 992px){
  #menu_accordion .accordion-button .worries_ja{
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
  #menu_accordion .accordion-button .worries_en{
    font-size: 2rem;
  }
}
@media (min-width: 768px){
  #menu_accordion{
    margin-bottom: 60px;
  }
  #taxonomy-wrapper #menu_accordion{
    margin-bottom: 0px;
  }
  #taxonomy-wrapper .menubox{
    margin-bottom: 60px;
  }
  #menu_accordion .accordion-item{
    margin-bottom: 2rem;
  }
  #menu_accordion .accordion-button{
    height: 100px;
    cursor: default;
  }
  #menu_accordion .collapse{
    display: block;
  }
  #menu_accordion .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}
@media (max-width: 991px){
  #menu_accordion .accordion-button .worries_ja{
    margin-left: .8rem;
    font-size: .8rem;
  }
  #menu_accordion .accordion-button .worries_en{
    font-size: 1.8rem;
  }
}
@media (max-width: 767px){
  #menu_accordion{
    margin-bottom: 50px;
  }
  #taxonomy-wrapper #menu_accordion{
    margin-bottom: 0px;
  }
  #taxonomy-wrapper .menubox{
    margin-bottom: 50px;
  }
  #menu_accordion .accordion-item{
    margin-bottom: 1rem;
  }
  #menu_accordion .accordion-button{
    height: 90px;
  }
  #menu_accordion .accordion-button .worries_ja{
    margin-right: .8rem;
  }
  .open_close{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1rem;
    width: 27px;
    height: 27px;
    border-radius: 50%;
  }
  #skin_list .open_close{
    background-color: #dd6545;
  }
  #body_list .open_close{
    background-color: #4588a0;
  }
  #other_list .open_close{
    background-color: #6d8e32;
  }
  .open_close::before,
  .open_close::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 13px;
    width: 1px;
    height: 12px;
    background-color: #fff;
    transition: .5s;
  }
  .open_close::after{
    transform: rotate(90deg);
  }
  .accordion-button[aria-expanded="true"] .open_close::before{
    transform: rotate(90deg);
  }
}
/*メニューから探す
================================*/
.menubox{
  position: relative;
  border-left: #808080 1px solid;
  border-right: #808080 1px solid;
  border-bottom: #808080 1px solid;
  margin-top: 12px;
}
.menubox::before,
.menubox::after{
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  height: 1px;
  background-color: #808080;
}
.menubox::before{
  left: 0;
}
.menubox::after{
  right: 0;
}
.menubox .line_ttl{
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (min-width: 768px){
  .menubox{
    padding: 4%;
  }
  .menubox::before,
  .menubox::after{
    width: calc(50% - 130px);
  }
}
@media (max-width: 767px){
  .menubox{
    padding: 1rem .75rem;
  }
  .menubox::before,
  .menubox::after{
    width: calc(50% - 100px);
  }
}

/*================================
CONTACT
================================*/
/*CONTACT content
================================*/
.contactbox{
  background-repeat: none;
  background-size: cover;
  background-position: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.contactbox .en_ttl h2{
  color: #000;
}
.contact_list{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.contact_list .tel .tel_num{
  font-size: 1.4rem;
  font-weight: bold;
}
.contact_list .tel .tel_num i{
  font-size: 1.1rem;
  transform: rotate(20deg);
  margin-right: 2px;
  position: relative;
  top: -1px;
}
.contact_list .tel .reception{
  display: block;
  font-size: .8rem;
}
.contact_list .tel .btn-tel{
  color: #000;
  text-decoration: none;
}
.contact_list > div:not(.tel) a{
  color: #000;
  text-decoration: none;
}
.contact_icon{
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .contact_list > div:not(.tel) a:hover{
    background-color: rgba(255, 255, 255, .3);
  }
}
@media (min-width: 768px){
  .contactbox{
    background-image: url("../img/contact_bg.jpg");
    max-width: 900px;
    padding: 4%;
  }
  .contact_list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-left: #808080 1px solid;
    border-right: #808080 1px solid;
  }
  .contact_list > div{
    width: 33.33333%;
  }
  .contact_list .tel,
  .contact_list > div:not(.tel) a{
    display: block;
    padding: 1rem;
  }
  .contact_list > div:nth-child(2){
    border-left: #808080 1px solid;
    border-right: #808080 1px solid;
  }
  .contact_icon{
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
  }
  .contact_icon img{
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px){
  .contactbox{
    background-image: url("../img/contact_bg_sp.jpg");
    max-width: 460px;
    padding: 2rem .75rem .75rem;
  }
  .contactbox .en_ttl h2{
    font-size: .8rem;
  }
  .contactbox p{
    font-size: .8rem;
    display: inline-block;
    text-align: left;
  }
  .contact_list .tel,
  .contact_list > div:not(.tel) a{
    justify-content: center;
    padding: 1.5rem 1rem;
  }
  .contact_list > div:not(.tel) a{
    width: 100%;
    display: flex;
  }
  .contact_list > div:nth-child(2){
    border-top: #808080 1px solid;
    border-bottom: #808080 1px solid;
  }
  .contact_list > div:not(.tel){
    display: flex;
    justify-content: center;
  }
  .sp_flex{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 240px;
  }
  .contact_icon{
    width: 60px;
    height: 60px;
    margin-right: 1rem;
  }
  .contact_icon img{
    width: 25px;
    height: 25px;
  }
}


/*================================
FOOTER
================================*/
#footer{
  border-top: #c9c9c9 1px solid;
  padding-top: 30px;
}
#footer .privacy{
  color: #000;
  text-decoration: none;
}
#ft_add p{
  margin-bottom: .5rem;
}
#ft_logo{
  width: 100px;
  margin-bottom: 1rem;
}
#ft_link{
  display: flex;
}
#ft_link ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#ft_link ul li{
  margin-bottom: .5rem;
}
#ft_link ul li a{
  color: #000;
  text-decoration: none;
}
#copyright{
  font-size: 12px;
  border-top: #c9c9c9 1px solid;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (hover: hover) {
  #footer .privacy:hover,
  #ft_link ul li a:hover{
    color: #e8939a;
  }
  .sns_link li a:hover{
    opacity: .8;
  }
}
@media (min-width: 992px){
  #ft_link ul{
    margin-left: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  #footer .container{
    max-width: 700px;
  }
  #ft_link ul{
    margin-left: 20px;
  }
  #footer a{
    font-size: .9rem;
  }
}
@media (min-width: 768px){  
  #footer{
    margin-top: 40px;
  }
  #footer .container{
    position: relative;
  }
  #footer .privacy{
    position: absolute;
    right: 15px;
    bottom: 6px;
  }
  #ft_wrap{
    display: flex;
    justify-content: space-between;
  }
  #footer .sns_link{
    justify-content: flex-end;
  }
  #copyright{
    margin-top: 30px;
  }
}
@media (max-width: 991px){
  #ft_add p:last-child{
    font-size: .9rem;
  }
}
@media (max-width: 767px){
  #footer{
    margin-top: 20px;
    text-align: center;
    padding-bottom: 70px;
  }
  #footer .privacy{
    font-size: .9rem;
  }
  #ft_add{
    display: inline-block;
    text-align: left;
  }
  #ft_logo{
    margin-left: auto;
    margin-right: auto;
  }
  #ft_link{
    display: none;
  }
  #footer .sns_link{
    justify-content: center;
  }
  #copyright{
    margin-top: 15px;
  }
}

/*================================
PAGE TOP
================================*/
#page_top{
  position: fixed;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
}
#page_top::before,
#page_top::after{
  content: '';
  display: inline-block;
  position: absolute;
}
#page_top::before{
  border-radius: 50%;
  z-index: 0;
}
#page_top::after{
  background-image: url("../img/pagetop.png");
  background-size: contain;
  transition: 1s;
  z-index: 1;
}
#page_top .arrow{
  position: relative;
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #e8939a;
}
#page_top .arrow::before,
#page_top .arrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: calc(50% - .5px);
  width: 1px;
  height: 6px;
  background-color: #e8939a;
  transform-origin: 50% .5px;
}
#page_top .arrow::before{
  transform: rotate(45deg);
}
#page_top .arrow:after{
  transform: rotate(-45deg);
}
@media (hover: hover) {
  #page_top:hover::before{
    background-color: rgba(255,255,255,.8);
  }
  #page_top:hover::after{
    transform: rotate(20deg);
  }
}
@media (min-width: 768px){
  #page_top{
    bottom: 15px;
  }
  #page_top,
  #page_top::after{
    width: 70px;
    height: 70px;
  }
  #page_top::before{
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 767px){
  #page_top{
    bottom: 85px;
  }
  #page_top,
  #page_top::after{
    width: 45px;
    height: 45px;
  }
  #page_top::before{
    width: 40px;
    height: 40px;
  }
}