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

*, ::before, ::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  z-index: 0;
  font-feature-settings: "pkna"1;
  overflow-x: hidden;
    letter-spacing: 0.06em;
    line-height: 1.6;

}
a {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: inherit;
  font-feature-settings: "palt";
  line-height: 1.65;
}
p {
  margin-bottom: 0;
}
pre {
  margin-bottom: 0;
}
dl {
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
ol {
  margin-bottom: 0;
  list-style: decimal;
  padding-left: 1em;
}
img
{
    max-width: 100%;
}
/*動きのきっかけの起点となるクラス名 はじめは非表示に*/
.fadeInUpTrigger,
.fadeInDownTrigger,
.fadeInUpTriggerOnce{
    opacity:0;
}
/*-----------------------------------------------------------------

ハンバーガーメニュー

-----------------------------------------------------------------*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:0;
    right: -120%;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background:#F6E6E9;
    /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: center;
}

#g-nav li a{
  color: #333333;
  text-decoration: none;
  padding:10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
    font-size: 1.6rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 10px;
  cursor: pointer;
    width: 50px;
    height:50px;
    background: #eb609a;
}

/*×に変化*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #FFFFFF;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px;
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*--------------------------------------------------------------------------*/
.header_inner
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.logo
{
    padding: 1vw;
    margin: 1vw;
}

/* 修正前
.h_r
{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    display: flex;
}
*/

.h_r {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    display: flex;
  }


.mv{
    background: url(../images/mv.jpg) no-repeat center / cover;
    height: 58vw;
    position: relative;
}
.catch
{
    position: absolute;
    left: 5%;
    top: 43%;
    width: 28vw;
}
.mv_point
{
    position: absolute;
    top: 63%;
    left: 5%;
    display: flex;
    gap:2vw;
    width: 14vw;
}
.mv_time
{
    position: absolute;
    top: 60%;
    left: 65%;
}
.gnav_inner
{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255,255,255,0.80);
    font-size: max(1vw , 1.4rem);
    text-align: center;
    padding: 1.5vw;
}

/* 修正前
.gnav_inner.sticky {
    position: fixed;
    z-index: 1;
}
 */

 .gnav_inner.sticky {
    position: fixed;
    top: 100px; /* .h_r の高さ分下に固定 */
    bottom: auto;
    left: 0;
    right: 0;
    z-index: 999;
  }


.gnav
{
    max-width: 80%;
    margin: 0 auto;
}
.gnav ul
{
    display: flex;
    justify-content: space-between;
}
.gnav a
{
    position: relative;
}
.gnav a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
background: #eb609a;
bottom: -1px;
transform: scale(0, 1);
transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.3s;  /*変形の時間*/
}

.gnav a:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
transform-origin: left top; /*左から右に向かう*/
}
.news
{
    padding: 6% 3%;
    background: #F6E6E9;
}
.news_wrap
{
   max-width: 1400px;
    margin: 3% auto;
}
.news_ttl
{
    font-size: max(2.6vw , 2rem);
    color: #EB609A;
    margin-bottom: 6%;
}
.news_ttl span
{
    font-size: max(1vw , 1.6rem);
    color: #333333;
    padding-left: 3vw;
}
.news_box
{
    max-height: 300px;
    overflow-y: scroll;
}
.news_box dl
{
    display: flex;
    align-items: flex-start;
    font-size: max(1vw , 1.6rem);
    flex-wrap: wrap;
}
.news_box dt
{
    width: 25%;
    font-weight: 600;
    color: #EB609A;
}
.news_box dd
{
    width: 75%;
    margin-bottom: 2.5rem;
}
.en
{
    font-family: "din-2014", sans-serif;
}
.concept
{
    background: url("../images/concept_bg.jpg") no-repeat center;
    background-color:rgba(255,255,255,0.5);
    background-blend-mode:lighten;
    padding: 6% 3%;
    background-position: top;
}
.secttl
{
    margin-bottom: 6%;
    text-align: center;
}
.ttl
{
    font-size: max(5vw , 5rem);
    color: #AF4370;
    font-weight: 600;
}
.secttl p
{
    font-size: max(1.4vw , 1.8rem);
}
.pink
{
    color: #EB609A;
}
.con_wrap
{
    max-width: 1640px;
    padding: 3%;
    margin: 3% auto;
    display: flex;
    justify-content: space-between;
    gap: 3%;
}
.con_box
{
    max-width: calc(100% / 3 - 3%);
}
.pink_bg
{
    background: #EB609A;
    margin-bottom: 3%;
}
.pink_bg p
{
    font-size: max(1.2vw , 1.8rem);
    font-weight: 600;
    padding: 1vw;
    color: #FFFFFF;
    text-align: center;
}
.t16
{
    font-size: max(0.9vw , 1.6rem);
}
.con_box:nth-child(2)
{
    margin-top: -3vw;
}
.feature
{
    position: relative;
    padding: 6% 0;
}
.feature::before
{
    content: "";
    background: url("../images/feature_bg01.png") no-repeat center / cover;
    background-position: top;
    width: 100%px;
    height: 700px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.feature01_wrap
{
    position: relative;
    border-bottom: 5px solid #EB609A;
    padding-bottom: 3%;
}
.feature01_wrap::before
{
    content: "";
    background: url("../images/feature_bg01_under.png") no-repeat center / cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    height: 542px;
    width: 100%;
}
.flex
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 3%;
}
.re
{
    flex-direction: row-reverse;
}
.alc
{
    align-items: center;
}
.feature_txt
{
    width: 38%;
    padding: 3vw;
}
.feature_num
{
    text-align: center;
    margin-bottom: 6%;
    margin: 0 auto;
}
.feature_ttl
{
    font-size: max(1.6vw , 2rem);
    margin-bottom: 3%;
    text-align: center;
}
.feature_img
{
    width: 58%;
}
.feature02_wrap
{
    padding: 3% 0 6%;
    position: relative;
    border-bottom: 5px solid #EB609A;
}
.feature02_wrap::before
{
    content: "";
    background: url("../images/feature_bg02.png") no-repeat center / cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 583px;
    width: 100%;
}
.feature02_wrap::after
{
    content: "";
    background: url("../images/feature_bg02_under.png") no-repeat center / cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -2;
    height: 440px;
    width: 100%;
}
.deco
{
    background: url("../images/feature_bg_pink.png") no-repeat center / cover;
}
.feature03_wrap
{
    background: url("../images/feature_bg03.png")no-repeat center / cover;
    padding: 3%;
}
.medical
{
    padding: 6% 0;
}
.med_box3
{
    max-width: calc(100% / 3);
}
.medical_wrap
{
    max-width: 1600px;
    margin: 3% auto;
    padding: 3%;
}
.med_box5
{
    width: calc(100% / 5 - 3%);
}
.implant_bnr
{
    text-align: center;
    padding: 0 3% 3%;
    max-width: 60%;
    margin: 0 auto;
}
.flex-2
{
    width: 48%;
}
.img
{
    margin: 0 auto;
    text-align: center;
}
.greeting
{
    padding: 3%;
    position: relative;
}
.greeting::before{
    content: "";
    background: url("../images/greeting_top_bg.png") no-repeat center / cover;
    position: absolute;
    top: 0;
    left: 0;
    height: 680px;
    width: 100%;
    z-index: -1;
}
.greeting::after{
    content: "";
    background: url("../images/greeting_bottom_bg_n.jpg") no-repeat center / cover;
    opacity: 0.5;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 680px;
    width: 100%;
    z-index: -1;
}
.name
{
    text-align: center;
    padding: 6% 0;
}
.greeting_ttl
{
    font-size: max(2.8vw , 3rem);
    margin-bottom: 6%;
    font-weight: 600;
}
.gallery
{
    padding: 3% 0;
}
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}
.footer_wrap
{
    max-width: 1300px;
    margin: 3% auto;
}
.f_logo
{
    margin-bottom: 3%;
    text-align: center;
}
.f_txt
{
    padding: 0 3vw;
    margin-bottom: 3%;
}
.f_btn
{
    display: flex;
}
.map
{
    display: flex;
    flex-wrap: wrap;
}
.gmap
{
    width: 70%;
}
.footer_img
{
    width: 30%;
}
.footer_img img
{
    height: 400px;
    object-fit: cover;
    width: 100%;
}
.copy
{
    text-align: center;
    font-size: max(0.8vw , 1.4rem);
    padding: 2rem 0;
}
.img img
{
    margin: 0 auto;
}
/*--------------------------------------------------------------------------

PC

--------------------------------------------------------------------------*/
@media only screen and (min-width: 1025px) {
  .sp-only {
    display: none !important;
  }
  .tab-only {
    display: none !important;
  }
    .tab-sp-only
    {
        display: none!important;
    }
}

/*--------------------------------------------------------------------------

tablet

--------------------------------------------------------------------------*/

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: none !important;
  }
}

/*--------------------------------------------------------------------------

sp

--------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
    .pc-only {
    display: none !important;
  }
  .pc-tab-only {
    display: none !important;
  }
   .tab-only {
    display: none !important;
  }

    .logo {
  padding: 1vw;
  margin: 1vw;
  max-width: 45%;
}
    .mv {
  height: 86vw;
}
    .catch {
  width: 50vw;
}
    .mv_point {
  position: absolute;
  top: 63%;
  left: 5%;
  display: flex;
  gap: 2vw;
  width: 28vw;
}
    .news_box dt
{
    width: 100%;
    font-weight: 600;
    color: #EB609A;
}
.news_box dd
{
    width: 100%;
}
    .con_box {
  max-width: 100%;
        margin-bottom: 2rem;
}
    .con_wrap {
  flex-wrap: wrap;
}
    .feature_txt {
  width: 100%;
  padding: 3vw;
}
    .feature_img {
  width: 100%;
}
    .med_box3 {
  max-width: 100%;
}
    .med_box5 {
  width: calc(100% / 2 - 3%);
        margin-bottom: 3%;
}
    .implant_bnr {
  max-width: 100%;
}
    .flex-2 {
  width: 100%;
        margin-bottom: 3%;
}
    .flex .flex-img {
  width: 100%;
        margin-bottom: 3%;
}
    .flex .flex-txt {
  width: 100%;
        margin-bottom: 3%;
}
    .wrap .list_anchor li {
  width: calc(100% / 2 - 3vw);
}
    .float
    {
        position: fixed;
        bottom: 0;
        z-index: 999;
    }
    .sp-listlayout {
        table-layout: fixed;
            font-size: max(0.9vw , 1.6rem);
    }
    .sp-listlayout tr {
        display: block;
    }
    .sp-listlayout th {
        border: none !important;
        display: list-item;
        list-style: none;
        width: 100% !important;
    }
    .sp-listlayout td {
        border: none !important;
        display: list-item;
        list-style: none;
        width: 100% !important;
    }
    .slider02 img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}
footer #page-top {
  bottom: 74px;
}
    .map .gmap
{
    width: 100%;
}
.map .footer_img
{
    width: 100%;
}
}

/************************
    下層ページ
    ************************/
    .h2_ttl
    {
        background: url("../images/h2_ttl.png") no-repeat center / cover;
        text-align: center;
        font-weight: 700;
        font-size: max(3vw , 3rem);
        padding: max(14vw , 8rem) 0 max(14vw , 6rem);
        line-height: 1;
        position: relative;
        color: #FFFFFF;
    }
    .h2_ttl span
    {
        font-size: 1.6rem;
        font-family: gill-sans-nova, sans-serif;
    }
.h2_ttl .gnav
{
    color:#333333;
}
.sec01
{
    padding: 3% 0;
}
.wrap
{
    max-width: calc(1200px + 6%);
    padding: 3%;
    margin: 0 auto;
}
.wrap p
{
    font-size: max(0.9vw , 1.6rem);
    letter-spacing: 0.06em;
    line-height: 1.6;
    margin-bottom: 3%;
}
.sec_ttl
{
    text-align: center;
    font-size: max(2.6vw , 2.8rem);
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    background: url("../images/ttl_bg.png") no-repeat center / contain;
    background-position: center;
    border-top: #eb609a 2px solid;
    border-bottom: #eb609a 2px solid;
    padding: 2rem 0;
}
.h3_ttl
{
    text-align: center;
    font-size: max(2.4vw , 2rem);
    font-weight: 700;
    margin-bottom: 5%;
    padding-bottom: 1%;
    position: relative;
}
.h3_ttl::before
{
    content: "";
    height: 2px;
    width: 15rem;
    background: #EB609A;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.h4_ttl
{
    padding: 1rem;
    font-weight: 500;
    font-size: max(1.4vw , 1.8rem);
    background: #FFD5D5;
    margin: 3% 0;
}

.flex
{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.re
{
    flex-direction: row-reverse;
}
.list_anchor {
    display: flex;
    gap: 2rem 2.8vw;
    flex-wrap: wrap;
}
.list_anchor li {
    width: calc(100% / 4 - 3vw);
}
.list_anchor li a {
    padding: 1rem 2rem;
  font-size: max(1vw, 1.6rem);
  border-bottom: 5px solid #C9C9C9;
  border-right: 5px solid #C9C9C9;
  position: relative;
  width: 100%;
  display: block;
  background: #eb609a;
  color: #fff;
}
.list_anchor li a::before
{
    content: ">";
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}
.sec_bg
{
    background: #fef7f7;
    padding: 1% 0;
}
.flex-txt
{
    width: 68%;
}
.flex-img
{
    width: 28%;
}
.flow .item {
    padding: 35px 2%;
    background: #F4E9E9;
    margin-bottom: 90px;
    position: relative;
    z-index: 1;
}
.flow .item::before {
    content: "▼";
    color: #EB609A;
    font-size: 50px;
    position: absolute;
    bottom: -80px;
    right: 50%;
    transform: translateX(50%);
    z-index: 1;
}
.flow .item .ttl {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    border-bottom: none;
    font-size: 28px;
}
.flow .item .ttl .number {
    font-size: 35px;
    width: 50px;
    color: #EB609A;
    position: relative;
    z-index: 1;
    text-align: center;
}
.flow .item .ttl .number::before {
    content: "STEP";
    font-size: 16px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.txt p {
    margin-bottom: 30px;
    line-height: 1.8;
    letter-spacing: 0.06em;
    font-size: max(0.9vw , 1.6rem);
}
.flow .item:last-child::before {
	display: none;
}
.bg_box
{
    padding: 3vw;
    background: #F4E9E9;
    margin: 3% 0;
}
.bg_box2
{
    padding: 3vw;
    background: #D7D7D7;
    margin: 3% 0;
}
.list_disc
{
    margin-left: 2rem;
}
.list_disc li
{
    list-style: disc;
    font-size: max(1vw , 1.6rem);
    line-height: 1.8;
}
.flex-3
{
    width: 30%;
}
.box_border
{
    border: 1px solid #ffd5d5;
    border-radius: 10px;
    padding: 1vw;
}
.box_ttl
{
    text-align: center;
    font-weight: 700;
    font-size: max(1.2vw , 1.8rem);
    margin-bottom: 1rem;
}
.right
{
    text-align: right;
    padding: 3% 0;
}
.tc
{
    text-align: center;
}
.tel
{
    font-size: max(2vw , 2rem);
    color: #EB609A;
    font-weight: 700;
    line-height: 1;
}
.tel span
{
    font-size: max(1vw , 1.6rem);
}
.list_flex
{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}
.list_flex li
{
    width: 32%;
}
.list_flex2
{
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 800px;
}
.list_flex2 li
{
    width: 48%;
}
.h5_ttl
{
    font-size: max(1.2vw , 1.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    margin-top: 3%;
    color: #EB609A;
    border-bottom: #EB609A solid 1px;
}

.table-bordered {
    border-collapse: collapse;
    border: solid 1px #dddddd;
    width: 100%;
    background: #fff;
}
.th20 th {
    width: 20%;
}
.table-bordered th {
    text-align: center;
    border-bottom: #dddddd solid 1px;
    background: #EB609A;
    color: #FFFFFF;
    width: 25%;
}
.table-bordered th, .table-bordered td {
    border: solid 1px #dddddd;
    padding: 10px 15px;
    vertical-align: middle;
}
.t16
{
    font-size: max(0.9vw , 1.4rem);
}
.gnavi__list
{
    position: relative;
    transition: all .3s;
}

.gnav ul .dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 100px;
    left: 50px;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.gnav ul li .dropdown__list {
    background-color: #EB609A;
    height: 60px;
    transition: all .3s;
    position: relative;
    width: 320px;
    z-index: 99;
    display: grid;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #FFF9F9;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: #EB609A;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.sp-listlayout {
            font-size: max(0.9vw , 1.6rem);
    }
.time
{
    text-align: center;
    margin: 3% auto;
}
.table-schedule {
    width: 100%;
    font-size: max(0.9vw , 1.6rem);
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
table {
    margin: 0 auto;
}
.table-schedule thead th {
    background: rgba(235, 96, 154, 0.7);
    color: #fff;
}
.table-schedule td {
    border: 1px solid #eb609a;
}
.table-schedule th {
    border: 1px solid #eb609a;
}
.table-schedule thead th {
    background: #eb609a;
    color: #FFFFFF;
    font-weight: bold;
}
.table-schedule td, .table-schedule th {
    border: 1px solid #f8f8f8;
    padding: 0.7em 0.3em;
    text-align: center;
    font-size: 16px;
}
.table-schedule tbody th {
    white-space: nowrap;
}
.table-schedule td, .table-schedule th {
    border: 1px solid #eb609a;
    padding: 0.7em 0.3em;
    text-align: center;
}

/*==================================================
お知らせ（個別・一覧）
===================================*/
#single .ss-ttl,
#single .single-box {
  max-width: 1000px;
  margin: auto;
}

.single-box .single-date {
  max-width: 900px;
  margin: auto;
  padding-bottom: 15px;
  font-size: 20px;
}

.single-box .single-body {
  max-width: 900px;
  margin: auto;
  font-size: 24px;
}

.single-nav {
  margin-top: 40px;
}

.nav-links {
  display: flex;
  justify-content: space-around;
}

.single-nav .nav-prev a,
.single-nav .nav-next a,
#single .back-to-archive a {
  font-size: 18px;
  color: inherit;
}

#single .back-to-archive {
  padding: 10px 15px;
  text-align: center;
}

#archive .container {
  margin: 100px auto 0 auto;
  padding: 0 15px;
  max-width: 1000px;
}

.archive-box {
  margin: 50px auto;
  padding-top: 50px;
  border-top: 1px solid #333;
}

.read-more {
  margin-top: 15px;
  margin-bottom: 50px;
}

.read-more a {
  font-size: 18px;
  color: #0073aa;
  text-decoration: underline;
  line-height: 1.4;
}

.archive-date {
  font-size: 20px;
}

.archive-box .ttl {
  font-size: 24px;
  margin: 10px 0;
}

.archive-box .ttl a {
  color: #333;
}

.archive-box .archive-body {
  font-size: 20px;
}

.pagination-wrapper {
  margin-bottom: 150px;
  font-size: 24px;
  padding-top: 50px;
  border-top: 1px solid #333;
}


/*==================================================
スライダーのためのcss
===================================*/
.slider02 {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider02 img {
    width:45vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.slider02 .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.slider02 .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
  margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
  margin:0;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
    margin: 1rem;
}
.slick-dots .slick-active button{
    background:#eb609a;/*ドットボタンの現在地表示の色*/
}
.price_box
{
    padding: 3vw;
    background: #F4F4F4;
    margin-bottom: 3%;
}
.price_ttl
{
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #eb609a;
    margin-top: 3%;
}
.price_list
{
    font-size: max(1.2vw , 1.8rem);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.price_list li + li
{
    color: #eb609a;
}
.risk
{
    font-size: max(0.9vw , 1.6rem);
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.risk dt
{
    width: 30%;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    min-width: 250px;
}
.risk dt::before
{
    content: "";
    position: absolute;
    right: 2vw;
    top: 0;
    height: 100%;
    width: 1px;
    background: #333333;
}
.risk dd
{
   width: 65%;
    margin-bottom: 1rem;
}
.bold
{
    font-weight: 700;
}
.pink
{
    color: #eb609a;
}
.table-default {
    width: 100%;
}
.table-default th {
    background: rgba(235, 96, 154, 0.7);
    color: #fff;
}
.table-default td, .table-default th {
    border: 1px solid #eb609a;
    padding: 1vw;
    font-size: max(0.9vw , 1.6rem);
}
.num li
{
    padding-left: 1rem;
    font-size: max(0.9vw , 1.6rem);
}

/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
  display: flex;
  justify-content:center;
  align-items:center;
  width: 60px;
  height: 60px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition:all 0.3s;
}

#page-top a:hover{
  opacity: .6
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom:10px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}

/*　左の動き　*/

#page-top.LeftMove{
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }
  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/*　右の動き　*/

#page-top.RightMove{
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
    opacity: 1;
  transform: translateX(0);
  }
  to {
    opacity: 1;
  transform: translateX(100px);
  }
}

@media screen and (max-width:480px)
{
    .price_list li
    {
        width: 100%;
    }
    .price_list li + li
{
    text-align: right;
}
    .risk dt
{
    width: 100%;
}
.risk dt::before
{
    display: none;
}
.risk dd
{
   width: 100%;
    margin-bottom: 2rem;
}
}
