@charset "UTF-8";

/*///////////////////////////////////////
全体設定
///////////////////////////////////////*/
*,*:before,*:after {
 box-sizing: border-box;
}

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

body {
 color: #000;
 font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
 background:#fff;
 font-size: 16px;
 font-weight: 400;
 line-height: 1.2;
 margin:0;
 padding:0;
 max-width: 100%;
 height: 100%;
}

img {
 max-width:100%;
 height: auto;
}

a{
 text-decoration: none;
}

a:hover{
 opacity: 0.5;
 transition: 0.8s;
}


/*///////////////////////////////////////
アニメーション
///////////////////////////////////////*/

/*横並び 徐々に表示*/
.fade_ani {
 display: flex;
 margin: 3em 0 3em;
}
.fade_element {
 opacity: 0;
}
@media screen and (max-width: 640px) {
.fade_ani {
 flex-wrap: wrap;
 flex-direction: initial;
}
}

.flexBox-inner{
 display: block;
 width: calc(100%/5)-20px;
 margin: 0px 10px;
}
.flexBox-inner h3{
 font-size: 0.9em;
}
@media screen and (max-width: 640px) {
.flexBox-inner{
 width: 45%;
 margin: 8px;
}
}

.fade-in {
 opacity: 0;
 visibility: hidden;
 transform: translateY(50px);
 transition: opacity 1s,visibility 1s, transform 1s;
}

.fade-in-scroll {
 opacity: 1;
 visibility: visible;
 transform: translateY(0px);
}

/*///////////////////////////////////////
ヘッダー
///////////////////////////////////////*/
header {
 width: 100%;
 background: #fff;
 display: flex;
 /*justify-content: space-between;*/
 justify-content: center;
 align-items: center;
 /*position: fixed;*/
 top: 0;
 left: 0;
 height: 157px;
 z-index: 10;
 flex-wrap: wrap;
}
header #logo a {
 display: block;
 color: #000;
}
.head-top{
 display: block;
 width: 100%;
 padding: 10px;
 max-width: 1200px;
}
.head-top-inner{
 display: flex;
 align-items: center;
 width: 100%;
 justify-content: space-between;
}


#logo img{
 width: 100%;
 max-width: 200px;
}
#tel img{
 width: 100%;
 max-width: 400px;
}
#logo span{
 display: block;
 font-size: 0.8em;
 padding-left: 5px;
}

.nav-area{
 display: block;
 width: 100%;
 background: #FFF0F5;
}

.nav-inner{
 display: flex;
 width: 100%;
 max-width: 1200px;
 height: 60px;
 align-items: center;
 /*justify-content: space-between;*/
 justify-content: center;
}
.nav-center{
 display: block;
 width: 100%;
 max-width: 1200px;
 height: 60px;
 margin: 0 auto;
}
.nav{
 padding-left: 0;
}
.nav i{
 margin-right: 3px;
 color: #FF70A0;
}
#nav li{
 list-style: none;
}
#nav li a {
 display: block;
 color: #000;
 position: relative;
}
#nav .menu-item-has-children > a:after,#nav .menu-item-has-children > a:before {
 display: block;
 content: "";
 position: absolute;
 top: 0; 
 bottom: 0;
 right: 20px;
 margin: auto;
 width: 10px;
 height: 1px;
 background: #ddd;
 transition: .2s;
}
#nav .menu-item-has-children > a:after {
 transform: rotate(90deg);
 -webkit-transform: rotate(90deg);
}
#nav .menu-item-has-children > a.open:before{
 transform: rotate(0deg);
 -webkit-transform: rotate(0deg);
}
#nav .menu-item-has-children > a.open:after{
 background: transparent;
}
#nav .menu-item-has-children .sub-menu {
 display: none;
}
@media only screen and ( max-width : 767px ) {
#logo span{
 display: none;
}
.overlay {
 width: 0;
 height: 0;
 position: fixed;
 z-index: 11;
 top: 0;
 left: 0;
 opacity: 0;
 transition: opacity .5s;
 background: rgba(255,255,255,.7);
}
.overlay.open {
 width: 100%;
 height: 100%;
 opacity: 1;
}
#main {
 transition: all .5s;
 min-height: 100vh;
}
#main.open {
 position: fixed;
 width: 100%;
}
#menu_btn {
 top: 5px;
 right: 0px;
 transition: .3s;
 cursor: pointer;
 position: fixed;
 z-index: 9999;
 width: 50px;
 height: 50px;
 display: flex;
 align-items: center;
 justify-content: center;
}
.menu-trigger {
 width: 18px;
 height: 16px;
 position: relative;
}
.menu-trigger span {
 display: inline-block;
 box-sizing: border-box;
 position: absolute;
 left: 0;
 width: 100%;
 height: 2px;
 background-color: #FF70A0;
 transition: all .5s;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  /*width: 70%;*/
  top: 7px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
#menu_btn.active .menu-trigger span:nth-of-type(1) {
  transform: translateY(7px) rotate(-45deg);
}
#menu_btn.active .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
#menu_btn.active .menu-trigger span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}
#nav {
 width: 280px;
 height: 100%;
 overflow: auto;
 padding: 90px 0;
 background: #FFF0F5;
 position: fixed;
 top: 0;
 right: 0;
 z-index: 12;
 transform: translate(280px);
 transition: all .5s;
}
#nav.open {
 transform: translateZ(0);
}
#nav li {
 padding: 0 20px;
}
#nav li a {
 position: relative;
 padding: 20px;
 color: #000;
}
#nav .menu-item-has-children .sub-menu {
 padding: 20px;
}
#nav .menu-item-has-children > a.open:first-of-type {
 color: #171717;
}
#nav .menu-item-has-children .sub-menu li {
 padding: 0;
 margin-bottom: 20px;
}
#nav .menu-item-has-children .sub-menu li:last-child {
 margin-bottom: 0;
}
#nav .menu-item-has-children .sub-menu li a {
 padding: 0;
}
}

@media print, screen and ( min-width : 768px ) {
#menu_btn,.overlay {
 display: none;
}
#nav ul {
 display: flex;
 flex-wrap: wrap;
}
#nav li {
 position: relative;
}
#nav li a {
 padding: 20px;
}
#nav .menu-item-has-children > a {
 padding-right: 40px;
}
#nav .menu-item-has-children > a.open:first-of-type,#nav .current-menu-item a {
 color: #000;
}
#nav .current-menu-item li a {
 color: #fff;
}
#nav li ul.sub-menu {
 flex-direction: column;
 background: #fff;
 position: absolute;
 width: 220px;
 font-size: 0.8em;
 left: 50%;
 top: 100%;
    -webkit-transform: translateX(-50%);
 transform: translateX(-50%);
 padding: 10px 0;
 z-index: 1
}
#nav li ul.sub-menu li {
 width: 100%;
}
#nav li ul.sub-menu li a {
 line-height: 1.6em;
 color: #000;
 padding: 10px 20px;
}
#nav li ul.sub-menu li a:hover {
 color: #dad4ec;
}
}

@media screen and (max-width: 768px){
header{
 height: 65px;
}
.nav-area{
 background: #fff;
 height: 0;
 }
#tel{
 display: none;
}
#logo img{
 max-width: 150px;
}
}


/*パンくず*/
.breadcrumb {
 display: flex;
 flex-wrap: wrap;
 list-style: none;
 font-size: 0.8em;
}

.breadcrumb a{
 color: #6A6A6A;
}

.breadcrumb li:not(:last-of-type)::after {
 content: "/";
 margin: 0 .6em;
 color: #777; 
}



/*///////////////////////////////////////
アイコン
///////////////////////////////////////*/
@font-face {
  font-family: 'icomoon';
  src:  url('fonts/icomoon.eot?yuoksy');
  src:  url('fonts/icomoon.eot?yuoksy#iefix') format('embedded-opentype'),
    url('fonts/icomoon.ttf?yuoksy') format('truetype'),
    url('fonts/icomoon.woff?yuoksy') format('woff'),
    url('fonts/icomoon.svg?yuoksy#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-home:before {
  content: "\e900";
}
.icon-newspaper:before {
  content: "\e904";
}
.icon-pencil:before {
  content: "\e905";
}
.icon-image:before {
  content: "\e90d";
}
.icon-camera:before {
  content: "\e90f";
}
.icon-bullhorn:before {
  content: "\e91a";
}
.icon-book:before {
  content: "\e91f";
}
.icon-file-text:before {
  content: "\e922";
}
.icon-profile:before {
  content: "\e923";
}
.icon-file-empty:before {
  content: "\e924";
}
.icon-files-empty:before {
  content: "\e925";
}
.icon-file-text2:before {
  content: "\e926";
}
.icon-file-picture:before {
  content: "\e927";
}
.icon-folder-open:before {
  content: "\e930";
}
.icon-coin-yen:before {
  content: "\e93e";
}
.icon-credit-card:before {
  content: "\e93f";
}
.icon-phone:before {
  content: "\e942";
}
.icon-address-book:before {
  content: "\e944";
}
.icon-envelop:before {
  content: "\e945";
}
.icon-pushpin:before {
  content: "\e946";
}
.icon-location:before {
  content: "\e947";
}
.icon-compass:before {
  content: "\e949";
}
.icon-map:before {
  content: "\e94b";
}
.icon-clock:before {
  content: "\e94e";
}
.icon-bell:before {
  content: "\e951";
}
.icon-calendar:before {
  content: "\e953";
}
.icon-display:before {
  content: "\e956";
}
.icon-mobile:before {
  content: "\e958";
}
.icon-undo:before {
  content: "\e965";
}
.icon-redo:before {
  content: "\e966";
}
.icon-undo2:before {
  content: "\e967";
}
.icon-redo2:before {
  content: "\e968";
}
.icon-bubble:before {
  content: "\e96b";
}
.icon-bubbles:before {
  content: "\e96c";
}
.icon-bubbles2:before {
  content: "\e96d";
}
.icon-bubbles3:before {
  content: "\e96f";
}
.icon-bubbles4:before {
  content: "\e970";
}
.icon-user:before {
  content: "\e971";
}
.icon-users:before {
  content: "\e972";
}
.icon-search:before {
  content: "\e986";
}
.icon-key:before {
  content: "\e98d";
}
.icon-lock:before {
  content: "\e98f";
}
.icon-unlocked:before {
  content: "\e990";
}
.icon-cog:before {
  content: "\e994";
}
.icon-bin:before {
  content: "\e9ac";
}
.icon-power:before {
  content: "\e9b5";
}
.icon-switch:before {
  content: "\e9b6";
}
.icon-download2:before {
  content: "\e9c5";
}
.icon-upload2:before {
  content: "\e9c6";
}
.icon-sphere:before {
  content: "\e9c9";
}
.icon-link:before {
  content: "\e9cb";
}
.icon-flag:before {
  content: "\e9cc";
}
.icon-attachment:before {
  content: "\e9cd";
}
.icon-bookmark:before {
  content: "\e9d2";
}
.icon-bookmarks:before {
  content: "\e9d3";
}
.icon-star-empty:before {
  content: "\e9d7";
}
.icon-star-full:before {
  content: "\e9d9";
}
.icon-smile:before {
  content: "\e9e1";
}
.icon-point-up:before {
  content: "\ea03";
}
.icon-point-right:before {
  content: "\ea04";
}
.icon-point-down:before {
  content: "\ea05";
}
.icon-point-left:before {
  content: "\ea06";
}
.icon-notification:before {
  content: "\ea08";
}
.icon-cross:before {
  content: "\ea0f";
}
.icon-checkmark:before {
  content: "\ea10";
}
.icon-checkmark2:before {
  content: "\ea11";
}
.icon-enter:before {
  content: "\ea13";
}
.icon-exit:before {
  content: "\ea14";
}
.icon-play2:before {
  content: "\ea15";
}
.icon-play3:before {
  content: "\ea1c";
}
.icon-circle-right:before {
  content: "\ea42";
}
.icon-circle-left:before {
  content: "\ea44";
}
.icon-checkbox-checked:before {
  content: "\ea52";
}
.icon-whatsapp:before {
  content: "\ea93";
}


/*///////////////////////////////////////
見出し
///////////////////////////////////////*/
.pink-headline{
 color: #FF70A0;
 font-family: "Noto Serif JP", serif;
 font-size: 2.5em;
 margin: 0;
}
@media only screen and (max-width: 768px) {
.pink-headline{
 font-size: 1.3em;
}
}


/*///////////////////////////////////////
ボタン
///////////////////////////////////////*/
.pinkBtn {
 display: flex;
 align-items: center;
 justify-content: center;
 line-height: 1;
 text-decoration: none;
 color: #ffffff;
 font-size: 0.9em;
 border-radius: 10px;
 width: 250px;
 max-width: 100%;
 height: 55px;
 font-weight: bold;
 border: 4px double #ffffff;
 transition: 0.3s;
 background-color: #f48fb1;
 margin: 20px 0px;
}

.pinkBtn:hover {
  opacity: .5;
}

/*///////////////////////////////////////
メインコンテンツ
///////////////////////////////////////*/

/*簡易表示切り替え用*/
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
@media only screen and (max-width: 750px) {
img { max-width: 100%; }
}


/*メインイメージ*/
.mainimg{
 /*position: relative;*/
 box-sizing: border-box;
 top: 0;
 display: flex;
 background: #fff url(../img/mainimg.jpg);
 width: 100%;
 background-attachment: fixed;
 background-position: center;
 background-size: cover;
 background-repeat: no-repeat;
 height: 700px;
 padding: 80px;
}
.imgcontent{
 display: flex;
 align-items: center;
 width: 100%;
 justify-content: center;
 font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
 font-size: 3em;
 color: #fff;
}
.imgcontent img{
 width: 600px;
}
@media only screen and (max-width: 768px) {
.mainimg{
 padding: 15px;
}
.imgcontent{
 font-size: 2em;
}
}

/*メインイメージ　サブページ*/
.subpage-img{
 /*position: relative;*/
 box-sizing: border-box;
 top: 0;
 display: flex;
 background: #fff url(../img/mainimg.jpg);
 width: 100%;
 background-attachment: fixed;
 background-position: center;
 background-size: cover;
 background-repeat: no-repeat;
 padding: 100px;
}
.imgcontent-sub{
 display: flex;
 align-items: center;
 width: 100%;
 justify-content: center;
 font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
 font-size: 1.2em;
 color: #fff;
}
.imgcontent-sub h2{
 margin: 0;
}
.imgcontent-sub img{
 width: 600px;
}
@media only screen and (max-width: 768px) {
.subpage-img{
 padding: 50px;
}
.imgcontent-sub{
 font-size: 2em;
}
}

/*コンテンツ領域*/
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
}

main {
 margin: 5rem 0 0 0;
}
section {
/* margin: 5rem 0;*/
 padding: 3rem 0;
}

.center {
 text-align: center;
 margin-bottom: 4rem;
}
.container {
 margin: 0 auto;
 max-width: 1200px;
 padding: 0 2.0rem;
 position: relative;
}

.pink-back {
 background-color: #fff5f8;
}

.txtBox{
 line-height: 2;
 width: 600px;
 max-width: 100%;
 display: block;
 margin: 10px auto;
}
@media only screen and (max-width: 768px) {
.txtBox{
 text-align: left;
}
}


/*///////////////////////////////////////
ごあいさつ
///////////////////////////////////////*/
.aisatuFlex{
 display: flex;
 align-items: flex-start;
 justify-content: space-between;
 margin: 50px 0px 0px;
}
.aisatuFlex img{
 display: block;
 width: 45%;
 border-radius: 10px;
}
.aisatuTxt{
 display: block;
 width: 50%;
 text-align: left;
 line-height: 2;
}
.aisatuTxt h3{
 margin-top: 0;
 /*font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;*/
 border-bottom: 2px dashed #FF70A0;
 font-size: 1.2em;
}

@media only screen and (max-width: 768px) {
.aisatuFlex{
 flex-wrap: wrap;
}
.aisatuFlex img{
 width: 100%;
}
.aisatuTxt{
 width: 100%;
}
}

/*///////////////////////////////////////
セクション区切り
///////////////////////////////////////*/
.shape{
overflow:hidden;
position:relative;
}
.shape::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
/*z-index: 3;*/
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 84px;
background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffffff"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23ffffff"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23ffffff"/></svg>'); 
}

@media (min-width:2100px){
.shape::before{
background-size: 100% calc(2vw + 84px);
}
}


.shape02{
overflow:hidden;
position:relative;
}
.shape02::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
/*z-index: 3;*/
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 77px;
background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23fff5f8"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23fff5f8"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23fff5f8"/></svg>'); 
}

@media (min-width:2100px){
.shape02::before{
background-size: 100% calc(2vw + 77px);
}
}
 
 

/*///////////////////////////////////////
医院について
///////////////////////////////////////*/
.aboutFlex{
 display: flex;
 justify-content: space-between;
 margin: 50px auto;
}
.aboutInner{
 display: block;
 width: 45%;
 background-color: #FFB0CA;
 padding: 5px;
 border-radius: 10px;
} 
.aboutInner img{
 display: block;
 border-radius: 10px;
} 

@media screen and (max-width: 768px) {
.aboutFlex{
 flex-wrap: wrap;
}
.aboutInner{
 width: 100%;
 margin-bottom: 20px;
} 
}


.image_link{
 display:block;
 position:relative;
}
.image_link img{
 display:block;
 width:100%;
}
.image_link:before{
 content:"";
 display:block;
 width:100%;
 height:100%;
 position:absolute;
 z-index:2;
 background:#FFF0F5;
 border-radius: 10px;
 opacity:0;
 transition:0.3s;
}
.image_link:after{
 content:"";
 display:block;
 width:0;
 height:8px;
 position:absolute;
 bottom:0;
 left:0;
 z-index:3;
 transition:0.3s;
}
.image_link:hover:before{
 opacity:0.5;
}
.image_link:hover:after{
 width:100%;
}

/*///////////////////////////////////////
アクセス
///////////////////////////////////////*/
.bg01{
 background: #fff url(../img/bg01.jpg);
 width: 100%;
 background-attachment: fixed;
 background-position: center;
 background-size: cover;
 background-repeat: no-repeat;
 padding: 100px 0;
}

.access-inner{
 display: block;
 padding: 30px;
 background-color: rgba(255,255,255,0.7);
}

.accessFlex{
 display: flex;
 align-items: center;
 justify-content: center;
 margin-bottom: 30px;
}
.accessInfo{
 display: block;
 width: 50%;
 margin-right: 20px;
}
.access-gaiyou {
 border-collapse: collapse;
 width: 100%;
}

.access-gaiyou tr{
 border-bottom: 1px dotted #ddd;
 padding: 10px 0px;
}

.access-gaiyou th,
.access-gaiyou td {
 padding: 15px;
 text-align: left;
 font-size: 0.9em;
 line-height: 1.5;
 color: #363636;
}

.access-gaiyou th {
 /*background: #f9fafc;*/
 /*background: #fff;*/
 width: 120px;
}

.sinryouTime {
 display: block;
 border-collapse: collapse;
 overflow-x: scroll;
 font-size: 0.9em;
 margin: 10px auto 15px;
}
.sinryouTime th, .sinryouTime td {
 padding: 10px 15px;
 text-align: center;
 /*border: 1px solid #fff;*/
 box-sizing: unset!important;
}

.sinryouTime th {
 background-color: pink;
 font-weight: normal;
}
.sinryouTime th.sat {
 color: #3db2da;
}
.sinryouTime th.sun {
 color: #e66a6a;
}

.accessFlex h3{
 display: block;
 text-align: left;
 font-size: 0.9em;
}

@media only screen and (max-width: 800px) {
.bg01{
 padding: 0px 0;
}
.accessFlex{
 flex-wrap:wrap; 
}	
.accessInfo{
 width: 100%;
 margin-right: 0px;
 margin-bottom: 30px;
}
	
.access-gaiyou tr,
.access-gaiyou th,
.access-gaiyou td {
 display: block;
 width: auto;
}
.access-gaiyou tr:first-child {
 border-top: 1px solid #dbe1e8;  
}  
.access-gaiyou tr{
 margin-bottom: 10px;
}
.access-gaiyou th,
.access-gaiyou td {
 border-top: none;
 padding:0px;
  }
.sinryouTime {
 margin: 15px auto 15px;
}
}




/*///////////////////////////////////////
施術の流れ
///////////////////////////////////////*/
.flowFlex{
 display: flex;
 justify-content: space-between;
 margin: 30px auto;
 width: 100%;
 background-color: #FFF0F5;
 padding: 0px 10px 0px 0;
}
.flowFlex img{
 display: block;
 width: 35%;
}
.flowTxt{
 display: block;
 width: 60%;
 font-size: 0.9em;
 line-height: 2;
 color: #434343;
 margin-bottom: 30px;
 text-align: left;
 margin: 10px auto;
}
.flowTxt span{
 display: inline-block;
 padding: 0px 15px;
 margin: 10px 10px 10px 0;
 background-color: #FF70A0;
 color: #fff;
 font-size: 1.2;
}
.flowTxt h3{
 color: #FF70A0;
 border-bottom: 1px solid #FF70A0;
 padding: 5px;
 font-weight: normal;
 margin: 0 0 10px;
}

.arrow-down {
 display: inline-block;
 vertical-align: middle;
 color: #FFB0CA;
 line-height: 1;
 width: 2em;
 height: 2em;
 border: 0.2em solid currentColor;
 border-left: 0;
 border-bottom: 0;
 box-sizing: border-box;
 transform: translateY(-25%) rotate(135deg);
}

@media screen and (max-width: 768px) {
.flowTxt span{
 display: block;
}
.flowFlex{
 flex-wrap: wrap;
 padding: 0px 0px 10px 0px;
}
.flowFlex img{
 width: 100%;
}
.flowTxt{
 width: 100%;
 padding: 10px;
}
}



/*///////////////////////////////////////
よくある質問
///////////////////////////////////////*/
.qa-title {
 line-height: 1.7;
 font-weight: 400;
 font-style: normal;
 color: #4D4D4D;
}

.answer {
 line-height: 1.7;
 font-weight: 400;
 font-style: normal;
 color: #4D4D4D;
 text-align: left;
}
.qa {
 padding-top: 180px;
 padding-bottom: 278px;
}
.qa-box {
 max-width: 1100px;
 width: 100%;
 margin: 0 auto;
 position: relative;
 cursor: pointer;
}
.qa-box > dl > dt {
 background-color: #FFF0F5;
 display: flex;
 align-items: center;
 padding: 10px 30px;
 position: relative;
}
.qa-box > dl > dt .crossBar {
 width: 21px;
 height: 21px;
 position: absolute;
 top: 50%;
 right: 24px;
 transform: translateY(-50%);
}
.qa-box > dl > dt .crossBar::before {
 content: "";
 display: inline-block;
 width: 1.6px;
 height: 100%;
 background-color: #4D4D4D;
 position: absolute;
 top: 0;
 left: 50%;
 transform-origin: center center;
 transform: translateX(-50%) rotate(0deg);
 transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.qa-box > dl > dt .crossBar::after {
 content: "";
 display: inline-block;
 width: 100%;
 height: 1.6px;
 background-color: #4D4D4D;
 position: absolute;
 top: 50%;
 left: 0;
 transform: translateY(-50%);
}
.qa-box > dl > dt > span {
 display: block;
 background-color: #FF70A0;
 color: #fff;
 border-radius: 50%;
 width: 40px;
 height: 40px;
 margin-right: 23px;
 font-size: 1.2em;
 line-height: 2;
}
 .qa-box > dl > dd {
 margin: 0;
 background-color: #fff;
 display: flex;
 align-items: center;
 margin-bottom: 16px;
 padding: 0px 30px;
 max-height: 0;
 overflow: hidden;
 transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.qa-box > dl > dd > span {
 line-height: 1.7;
 font-weight: 500;
 font-style: normal;
 color: #5FB1DE;
 margin-right: 23px;
}
.qa-box > dl > dd.acd-open {
 max-height: 200px;
 padding: 10px 30px;
}
.qa-box > dl > dt.acd-open .crossBar::before {
 transform: translateX(-50%) rotate(90deg);
}

@media screen and (max-width: 768px) {
.qa-box > dl > dt {
 padding: 0px;
}
.qa-box > dl > dt .crossBar {
 width: 8px;
 height: 8px;
}
.qa-box > dl > dt > span {
 margin-right: 10px;
}
.qa-title {
 font-size: 0.9em;
}
.answer {
 font-size: 0.9em;
}
.qa-box > dl > dd.acd-open {
 max-height: 400px;
 padding: 0px;
}
}


/*///////////////////////////////////////
フッター
///////////////////////////////////////*/

/*スティッキーフッター*/
.sp-fixed {
 display: none;
}
@media screen and (max-width: 768px) {
.sp-fixed {
 position: sticky;
 bottom: 0;
 left: 0;
 display: flex;
 width: 100%;
 background: #FFF0F5;
 color: #fff;
 height: 55px;
 line-height: 22px;
 justify-content: space-around;
 align-items: center;
 font-size: 0.9em;
}
.sp-fixed-box{
 display: block;
 width: 100%;
 text-align: center;
 color: #FF70A0;
 font-weight: 600;
}
.sp-fixed-border{
 border-bottom: 1px solid #fff;
}
}



.footer-wrap {
 padding: 2rem;
 font-size: 15px;
 background: #FFF0F5;
}
.footer-wrap a{
 color: #000;
}

.footer__navi {
 flex-wrap: wrap;
 margin-bottom: 2rem;
 padding-left: 0;
 line-height: 1.5;
}
.footer__navi i{
 color: #FF70A0;
}

.footer__navi li {
 display: inline-block;
}

.footer__navi li:not(:last-child) {
 margin-right: 16px;
}

.footer__logo {
 display: inline-block;
 margin-bottom: 1rem;
}

@media (min-width: 768px) {
.md-flex {
 display: flex;
}

.md-justify-between {
 justify-content: space-between;
}
.copyright {
 text-align: left;
 }
}

/*メニュー*/


/*コピーライト
.copyright {
 text-align: center;
 padding: 1rem 0;
 background-color: #888888;
 color: #fff;
}*/




/*///////////////////////////////////////
レスポンシブ表示
///////////////////////////////////////*/
@media screen and (max-width: 768px){

/*ヘッダー*/
.header {
 flex-direction: column;
 /*margin-bottom: 10px;*/
} 

.header-box {
 display: none;
}
    
/*メインコンテンツ*/

.imgcontent{
 max-width: 100%;
}
    
}