@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;700&family=Zen+Kaku+Gothic+Antique:wght@400;500;700&family=Zen+Kurenaido&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=M+PLUS+Rounded+1c:wght@300;400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Kiwi+Maru&display=swap');
@media print, screen and  (min-width: 651px){

/*===============================================
●PCレイアウト設定 
===============================================*/
/*青いボタン＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
.btn{
/*アニメーションの起点とするためrelativeを指定*/
position: relative;
overflow: hidden;
/*ボタンの形状*/
text-decoration: none;
display: block;
color: #FFF;
background: linear-gradient(
  to bottom,
  #87e1f9,
  #0690b4
);
border-radius: 30px;
padding: 8px 0;
text-align: center;
outline: none;
/*アニメーションの指定*/   
transition: ease .2s;
border-top: #e4f2f6 2px solid;
border-left:  #e4f2f6 2px solid;
box-shadow: inset -2px -2px 7px 0px rgba(88, 87, 87, 0.4);
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
 color: #FFF;
 font-size: 1.5rem
}
.btn:hover span{
  color:#fff;
}
/*== 背景が流れる（左から右） */
.bgleft:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background-color: #0597bd;
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
.bgleft:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}

/*緑のボタン＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊*/
.btn2{
/*アニメーションの起点とするためrelativeを指定*/
position: relative;
overflow: hidden;
/*ボタンの形状*/
text-decoration: none;
display: block;
color: #FFF;
background: linear-gradient(
  to bottom,
  #a7e377,
  #579822
);
border-radius: 30px;
padding: 8px 0;
text-align: center;
outline: none;
/*アニメーションの指定*/   
transition: ease .2s;
border-top: #e4f2f6 2px solid;
border-left:  #e4f2f6 2px solid;
box-shadow: inset -2px -2px 7px 0px rgba(88, 87, 87, 0.4);
}

/*ボタン内spanの形状*/
.btn2 span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
 color: #FFF;
 font-size: 1.5rem
}
.btn2:hover span{
  color:#fff;
}
/*== 背景が流れる（左から右） */
.bgleft2:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background-color: #5eba14;
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
/*hoverした際の形状*/
.bgleft2:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.index{
margin: 0!important
}
.index .main {
position: relative;
font-family: 'Noto Sans JP';
height: 100vh;
background-image:url(../images/index/bg_wrapper.png);
	background-position:bottom center;
	background-repeat:no-repeat;
}
#video-area{
    position: fixed;
    z-index: -1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
}
#video {
    /*天地中央配置*/
    width: 100%;
    overflow: hidden
}
.index .bunner_tel{
position: fixed;
width: 12%;
min-width: 180px;
top:80px;
right: 2vw;
left: auto;
z-index: 9999;
background-color: #d291a6;
padding: 10px 0;
color: #FFF;
font-size: clamp(1.3rem,1.2vw,2.0rem);
font-weight: 600;
text-align: center;
opacity: 0.8
}
/*スクロールダウン全体の場所*/
.scrolldown4{
    /*描画位置※位置は適宜調整してください*/
position:absolute;
bottom:1%;
right:50%;
    /*矢印の動き1秒かけて永遠にループ*/
animation: arrowmove 1s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove{
      0%{bottom:1%;}
      50%{bottom:3%;}
     100%{bottom:1%;}
 }

/*Scrollテキストの描写*/
.scrolldown4 span{
    /*描画位置*/
position: absolute;
left:-20px;
bottom:10px;
    /*テキストの形状*/
color:#9B6269;
font-size: 1.4rem;
letter-spacing: 0.05em;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 矢印の描写 */
.scrolldown4:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    right: -6px;
    /*矢印の形状*/
    width: 1px;
    height: 20px;
    background: #9B6269;
    transform: skewX(-31deg);
}

.scrolldown4:after{
content:"";
    /*描画位置*/
position: absolute;
bottom:0;
right:0;
    /*矢印の形状*/
width:1px;
height: 100px;
background:#9B6269;
}
.index .container {
margin: 0;
 padding: 0;
 background-color: #f6f4f7
}
.index .box1{
padding: 100px 0 50px 0;
}
.index .box1 .flex_catch{
width: 1000px;
max-width: 90%;
margin: 0 auto 50px auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.index .box1 .flex_catch .catch{
width: 30%;
font-family: 'Noto Serif JP';
font-size: clamp(1.6rem,2.3vw,2.8rem);
padding-right: 10%;
color: #B06162;
font-weight: 600;
line-height: 210%;
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
text-shadow:2px 2px 0 #FFF, -2px -2px 0 #FFF,
            -2px 2px 0 #FFF, 2px -2px 0 #FFF,
            0px 2px 0 #FFF,  0-2px 0 #FFF,
            -2px 0 0 #FFF, 2px 0 0 #FFF;
}
.index .box1 .flex_catch .photo{
width: 60%;
}
.index .box1 .flex_catch .photo img{
width: 100%;
border-radius: 20px
}
.index .box1 .box_concept{
width: 1200px;
max-width: 90%;
margin: 0 auto 50px auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 50px 2%;
border-top: #b77eb2 1px solid;
}
.index .box1 .box_concept .left{
width: 30%;
position: relative;
}
.index .box1 .box_concept .left .text_left{
color: #b26e87;
font-weight:500;
width: 100%;
font-size: 2.5rem;
text-align: center;
position: absolute;
top: 50%;
transform: translateY(-50%);
text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
            -1px 1px 0 #FFF, 1px -1px 0 #FFF,
            0px 1px 0 #FFF,  0 -1px 0 #FFF,
            -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.index .box1 .box_concept .left .text_left .en{
font-family: "Dancing Script", cursive;
color: #b26e87;
width: 100%;
font-size: 2.0rem;
text-align: center;
}
.index .box1 .box_concept .article{
width: 65%;
border-left: #b77eb2 1px solid;
padding-left: 3%;
font-size: 1.6rem;
line-height: 200%;
font-weight: 400
}
.index .box1 .box_concept .article .catch{
color: #D77072;
font-size: 2.0rem;
font-weight: 500;
padding-bottom: 20px
}
.index .box1 .box_concept .article .bt_concept{
padding-top: 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.index .box1 .box_concept .article .bt_concept .tel{
font-size:3.0rem;
font-weight: 500;
width: 48%
}
.index .box1 .box_concept .article .bt_concept a{
display: block;
width: 48%;
text-decoration: none;
background-color: #d291a6;
color: #FFF;
text-align: center;
font-size: 1.6rem;
font-weight: 400;
padding: 10px 0;
transition: 0.5s;
font-family: "Kiwi Maru", serif;
position: relative
}
.index .box1 .box_concept .article .bt_concept a:after{
  font-family: FontAwesome;
  content: '\f105 '; /* アイコンのunicode */
  position:absolute;
  right:5px;
}
.index .box1 .box_concept .article .bt_concept a:hover{
background-color: #b26e87;
}
.index .box2{
  position: relative;
}

.index .box2 .reveal{
  height: 110vh;
}

.index .box2 .reveal__img{
  position: sticky;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;

  filter: blur(20px);
  will-change: filter;
  transform: translateZ(0);
}
.index .box2 .point{
top:50%;
left: 40%;
transform: translateY(-60%);
position: absolute;
width: 55%
}
.index .box2 .point .subtitle{
color: #b26e87;
font-weight:500;
width: 100%;
font-size: 2.5rem;
text-align: center;
padding-bottom: 2px;
border-bottom: #b26e87 2px solid;
margin-bottom: 20px;
text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
            -1px 1px 0 #FFF, 1px -1px 0 #FFF,
            0px 1px 0 #FFF,  0 -1px 0 #FFF,
            -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.index .box2 .point .subtitle .en{
font-family: "Dancing Script", cursive;
}
.index .box2 .point .flex_point{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.index .box2 .point .flex_point .inner{
width: 31%;
margin: 0 1% 20px 1%
}
.index .box2 .point .flex_point .inner img{
width: 100%
}

.index .box3{
padding: 50px 0 50px 0;
}
.index .box3 .box_guide{
width: 1200px;
max-width: 90%;
margin: 0 auto 50px auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 50px 2%;
border-top: #b77eb2 1px solid;
}
.index .box3 .box_guide .left{
width: 30%;
position: relative;
}
.index .box3 .box_guide .left .text_left{
color: #b26e87;
font-weight:500;
width: 100%;
font-size: 2.5rem;
text-align: center;
position: absolute;
top: 50%;
transform: translateY(-50%)
}
.index .box3 .box_guide .left .text_left .en{
font-family: "Dancing Script", cursive;
color: #b26e87;
width: 100%;
font-size: 2.0rem;
text-align: center;
}
.index .box3 .box_guide .article{
width: 65%;
border-left: #b77eb2 1px solid;
padding-left: 3%;
font-size: 1.4rem;
line-height: 200%;
font-weight: 400
}
.index .box3 .box_guide .article table{
width: 100%;
border-collapse: collapse
}
.index .box3 .box_guide .article td{
border: #C57794 1px solid;
text-align: center
}
.index .box3 .box_guide .article tr:nth-child(1){
background-color:#EBE8DC;
}
.index .box3 .box_guide .article td:nth-child(1){
width: 20%
}
.index .box3 .box_guide .article .close{
font-size: 1.8rem;
color: #C05003;
padding-top: 10px
}
.index .box3 .box_guide .article .bt_guide{
padding-top: 40px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.index .box3 .box_guide .article .bt_guide .tel{
font-size:3.0rem;
font-weight: 500;
width: 48%
}
.index .box3 .box_guide .article .bt_guide a{
display: block;
width: 48%;
text-decoration: none;
background-color: #d291a6;
color: #FFF;
text-align: center;
font-size: 1.6rem;
font-weight: 400;
padding: 10px 0;
transition: 0.5s;
font-family: "Kiwi Maru", serif;
position: relative
}
.index .box3 .box_guide .article .bt_guide a:after{
  font-family: FontAwesome;
  content: '\f105 '; /* アイコンのunicode */
  position:absolute;
  right:5px;
}
.index .box3 .box_guide .article .bt_guide a:hover{
background-color: #b26e87;
}
.index .box3 .caution{
padding: 20px 2%;
}

.index .box3 .caution dl{

}
.index .box3 .caution dt{
font-size: 1.6rem;
font-weight: 500;
color: #C57794;
padding-bottom: 10px;
}
.index .box3 .caution dd{
margin-left: 0;
margin-bottom: 30px;
}
.index .box3 .news{
width: 1200px;
max-width: 90%;
margin: 0 auto 50px auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding: 50px 2%;
border-top: #b77eb2 1px solid;
}
.index .box3 .news .left{
width: 30%;
position: relative;
}
.index .box3 .news .text_left{
color: #b26e87;
font-weight:500;
width: 100%;
font-size: 2.5rem;
text-align: center;
position: absolute;
top: 50%;
transform: translateY(-50%)
}
.index .box3 .news .text_left .en{
font-family: "Dancing Script", cursive;
color: #b26e87;
width: 100%;
font-size: 2.0rem;
text-align: center;
}
.index .box3 .news .article{
width: 65%;
border-left: #b77eb2 1px solid;
padding-left: 3%;
font-size: 1.4rem;
line-height: 200%;
font-weight: 400
}
.index .box3 .news dl{
padding: 2%;
}
.index .box3 .news dt{
font-size: 1.6rem;
font-weight: 500;
color: #C57794;
padding-bottom: 10px;
}
.index .box3 .news dd{
margin-left: 0;
margin-bottom: 30px;
border-bottom: #b77eb2 1px dotted;
}
.index .box3 .news dd a{
color: #00C;
text-decoration: underline
}
.index .box4{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.index .box4 .inner{
border: #FFF 1px solid;
box-sizing: border-box;
width: calc(100% / 3);
position: relative;
font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.index .box4 .inner .box_text{
position: absolute;
width: 100%;
color: #c82d35;
top: 0;
text-shadow:1px 1px 2px #FFF, -1px -1px 2px #FFF,
            -1px 1px 2px #FFF, 1px -1px 2px #FFF,
            0px 1px 2px #FFF,  0 -1px 2px #FFF,
            -1px 0 2px #FFF, 1px 0 2px #FFF;
}
.index .box4 .inner .box_text .linktitle{
text-align: center;
font-size: clamp(1.8rem,2.0vw,2.5rem);
width: 70%;
padding-bottom: 2px;
border-bottom: #c82d35 1px solid;
margin: 10% auto 0 auto
}
.index .box4 .inner .box_text .com{
padding-top: 10%;
line-height: 200%;
font-size: clamp(1.3rem,1.6vw,1.6rem);
text-align: center
}
.index .box4 .inner .box_text .com a{
display: block;
width: 70%;
text-decoration: none;
background-color: #c57e96;
color: #FFF;
text-align: center;
font-size: clamp(1.0rem,1.4vw,1.5rem);
font-weight: 400;
padding: 7px 0;
transition: 0.5s;
position: relative;
margin: 30px auto 0 auto;
border: #FFF 1px solid;
text-shadow:1px 1px 2px #b786a7, -1px -1px 2px #b786a7,
            -1px 1px 2px #b786a7, 1px -1px 2px #b786a7,
            0px 1px 2px #b786a7,  0-1px 2px #b786a7,
            -1px 0 2px #b786a7, 1px 0 2px #b786a7!important;
}
.index .box4 .inner .box_text .com a:after{
  font-family: FontAwesome;
  content: '\f105 '; /* アイコンのunicode */
  position:absolute;
  right:5px;
}
.index .box4 .inner .box_text .com a:hover{
background-color: #b26e87;
}
/*クリニック案内--------------------------------------------------------------------------*/
.about {
padding:50px 0 0 0;
background-color: #FFF
}
.about .box1{
position: relative;
}
.about .box1 .com{
width: 70%;
line-height: 200%;
background-color: rgba(255,245,245,0.7);
padding: 3%;
position: absolute;
left: 10%;
top:5%;
width: 60%
}
.about .box1 .com .catch{
color: #D77072;
font-size: 2.0rem;
font-weight: 500;
padding-bottom: 20px
}
.about .box1 .photo{
width: 1100px;
max-width: 70%;
margin-right: 0;
margin-left: auto
}
.about .box1 .photo img{
width: 100%;
}
.about .subtitle {
  border-bottom: solid 3px #EDA8A9;
  position: relative;
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #999
}
.about .subtitle:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #C06465;
  bottom: -3px;
  width: 20%;
}
.about .box_info{
margin-bottom: 100px;
padding-top: 100px
}
.about .box_info .guideline{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.about .box_info .guideline .photo{
width: 40%;
}
.about .box_info .guideline .photo img{
width: 100%;
}
.about .box_info .guideline .com{
width: 50%;
padding-right: 2%
}
.about .box_info .guideline td{
border: none;
border-bottom: #C06465 1px dotted;
font-weight: 400;
color: #666
}
.about .box_info .guideline td:nth-child(1){
width: 20%
}
.about .box_info .guideline .maplink{
padding-top: 20px
}
.about .box_info .guideline .maplink a{
display: block;
background-color: #C06465;
color: #FFF;
width: 350px;
font-size: 1.8rem;
font-weight: 500;
text-align: center;
padding: 10px 0;
border-radius: 20px
}
.about .box2{
width: 1300px;
max-width: 90%;
margin: 0 auto;
padding-top: 100px;
margin-bottom: 50px
}
.about .box2 .time table{
width: 100%;
border-collapse: collapse
}
.about .box2 .time td{
border: #C57794 1px solid;
text-align: center
}
.about .box2 .time tr:nth-child(1){
background-color:#EBE8DC;
}
.about .box2 .time td:nth-child(1){
width: 20%
}
/*不妊治療--------------------------------------------------------------------------*/
.doctor {
padding:50px 0 50px 0;
background-color: #FFF;
}
.doctor .box1{
width: 1200px;
max-width: 90%;
margin: 0 auto 50px auto;
}
.doctor .name{
font-size: 2.5rem;
font-weight: 500;
margin-bottom: 30px
}
.doctor .name2{
font-size: 1.8rem
}
.doctor .profile{

}
.doctor .profile .com{

}
.com li{
display: block;
color:#6E4344;
font-size: 1.8rem;
padding-bottom: 2px;
border-bottom:#AF5B5C 1px dotted;
margin-bottom: 20px
} 
.doctor .profile .com .box_shikaku{
background-color: #E9DBDB;
padding: 2%;
}
.doctor .profile .com dt{
font-size: 1.8rem;
font-weight: 500;
margin-bottom: 20px;
}
.doctor .profile .com dd{
line-height: 200%;
margin-bottom: 50px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.doctor .profile .com dd .syozoku{
width: 70%
}
.doctor .profile .com dd  .photo{
width: 15%
}
.doctor .profile .com dd  .photo img{
width: 100%
}
/*不妊治療--------------------------------------------------------------------------*/
.infertility {
padding:50px 0 0 0;
background-color: #FFF
}
.infertility .catch{
color: #D77072;
font-size: 2.0rem;
font-weight: 500;
padding-bottom: 30px
}
.infertility .box1{
width: 1500px;
max-width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 100px
}
.infertility .box1 .text1{
color: #AF6263;
font-size: 1.8rem;
font-weight: 500;
padding: 15px 0
}
.infertility .box2{
width: 1500px;
max-width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
flex-direction: row-reverse;
margin-bottom: 100px
}
.infertility .com{
width: 70%;
line-height: 200%
}
.infertility .photo{
width: 28%;
}
.infertility .photo img{
width: 100%;
border-radius: 20px
}
.infertility .subtitle {
  border-bottom: solid 3px #EDA8A9;
  position: relative;
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #999
}
.infertility .subtitle:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #C06465;
  bottom: -3px;
  width: 20%;
}
.infertility .box3{
padding: 20px 0
}
.infertility .box3 td{
border:#EDC7C8 1px solid;
text-align: center;
}
.infertility .box3 tr:nth-child(1){
background-color: #BB5E60;
color: #FFF
}
.infertility .box3 tr:nth-child(2){
color: #BB5E60;
font-weight: 500
}
.infertility .box4{
width: 1500px;
max-width: 90%;
margin: 0 auto;
padding-bottom: 50px
}
.infertility .box4 .text2{
color: #BB5E60;
padding-bottom: 30px
}
.infertility .box4 td{
border:#EDC7C8 1px solid;
text-align: center;
width: 33%
}
.infertility .box4 tr:nth-child(1){
background-color: #BB5E60;
color: #FFF
}
.infertility .box4 tr:nth-child(2){
color: #BB5E60;
font-weight: 500;
font-size: 2.5rem
}
.infertility .box4 .photo{
padding-top: 40px;
width: 100%
}
.infertility .box4 .photo img{
width: 100%;
border-radius: 20px
}
/*体外受精--------------------------------------------------------------------------*/
.art {
padding:50px 0 0 0;
background-color: #FFF
}
.art .box1{
width: 1200px;
max-width: 90%;
margin: 0 auto; 
}
.art .subtitle {
  border-bottom: solid 3px #EDA8A9;
  position: relative;
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #999
}
.art .subtitle:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #C06465;
  bottom: -3px;
  width: 20%;
}
.art .box1 .flex_box1{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-bottom: 100px
}
.art .box1 .flex_box1 .com{
line-height: 200%;
width: 70%
}
.art .box1 .flex_box1 .com .catch{
color: #D77072;
font-size: 2.0rem;
font-weight: 500;
padding-bottom: 20px
}
.art .box1 .flex_box1 .photo{
width: 25%;
}
.art .box1 .flex_box1 .photo img{
width: 100%;
border-radius: 20px
}
.art .box1 dl{
padding-bottom: 100px
}
.art .box1 dt{
color: #C06465;
font-size: 1.8rem;
font-weight: 500;
margin-bottom: 30px
}
.art .box1 dd{
line-height: 180%;
padding-bottom: 3px;
border-bottom:#C06465 1px dashed;
margin-bottom: 50px
}
.art .box2{
width: 1200px;
max-width: 90%;
margin: 0 auto; 
}
.art .box2 .flex_box2{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-bottom: 100px
}
.art .box2 .flex_box2 .com{
color: #D77072;
font-size: 2.0rem;
font-weight: 500;
width: 50%;
line-height: 180%
}
.art .box2 .flex_box2 .photo{
width: 48%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.art .box2 .flex_box2 .photo img{
width: 49%;
margin-right: 1%
}
.art .box3{
width: 1200px;
max-width: 90%;
margin: 0 auto; 
padding-bottom: 100px
}
.art .box4{
width: 1200px;
max-width: 90%;
margin: 0 auto;
padding-bottom: 50px
}
/*初診方の方へ--------------------------------------------------------------------------*/
.first {
padding:50px 0 0 0;
background-color: #FFF
}
.first .box1{
width: 1200px;
max-width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 100px
}
.first .box1 .com{
font-size: 1.8rem;
line-height: 200%;
width: 70%;
}
.first .box1 .com .bt{
padding-top: 30px
}
.first .box1 .com .bt a{
display: block;
border: #C06465 1px solid;
color: #C06465;
width: 80%;
font-size: 1.8rem;
font-weight: 500;
text-align: center;
padding: 10px 0;
border-radius: 20px;
transition: 0.5s
}
.first .box1 .com .bt a:hover{
background-color:#E5696B;
color: #FFF
}
.first .box1 .photo{
width: 28%;
}
.first .box1 .photo img{
width: 100%;
border-radius: 20px
}
.first .box2{
width: 1200px;
max-width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-bottom: 50px
}
.first .box2 .inner{
border: #BB5E60 1px solid;
border-radius: 20px;
overflow: hidden;
width: 48%;
position: relative
}
.first .box2 .inner .subtitle{
background:#BB5E60;
color: #FFF;
text-align: center;
font-size: 1.8rem;
font-weight: 500;
padding: 10px 0;
}
.first .box2 .inner .com{
padding: 2%;
font-weight: 500;
min-height: 25%
}
.first .box2 .inner .photo{
padding: 2%;
margin-bottom: 3%
}
.first .box2 .inner .photo img{
width: 100%;
}
/*お問合せ--------------------------------------------------------------------------*/
.contact {
contact:50px 0 0 0;
background-color: #FFF
}
.contact .box1{
width: 1200px;
max-width: 90%;
margin: 0 auto;
padding-bottom: 100px;
line-height: 200%
}
.contact .box_form{
width: 1000px;
max-width: 90%;
margin: 0 auto;
margin-bottom: 100px
}

.contact td{
padding: 0.5%;
border: #666 1px solid;
font-size: 1.4rem;
border: none;
border-bottom: 1px #333 solid;
padding-top: 35px
}
.contact table textarea {
width: 700px;
max-width: 100%;
height: 10em;
border:#CCC 1px solid;
background-color: #EEE
}
.contact table label{
	display:block;
}
.contact table input[type="text"]{
width: 350px;
max-width: 100%;
height: 22px;
border:#CCC 1px solid;
background-color: #EEE
}
.contact table .year input[type="text"]{
width:100px;
}
.contact table input[type="email"]{
	width: 350px;
max-width: 100%;
height: 22px;
border:#CCC 1px solid;
background-color: #EEE
}
.contact select{
height: 25px;
border:#CCC 1px solid;
background-color: #EEE;
margin-bottom: 10px;
margin-right: 10px
}
.contact label{
display: inline!important
}
.contact table input[type="radio"]{
display: inline!important
}
.contact input[type="submit"]{
	width:400px;
	border:#FFF 1px solid;
	background:#BB5E60;
	text-align:center;
	font-weight:bold;
	font-size:1.4rem;
	color:#FFF;;
	padding:3px 0;
	margin-top:30px;
	margin-bottom:30px;
	display:block;
	cursor:pointer;
	line-height: 300%
}
.contact input[type="submit"]:hover{
	background-color:#900;
}
.contact li{
font-size: 1.3rem
}
}

/*===============================================
●スマホれいあうと設定 画面の横幅が650px以下
===============================================*/
@media screen and  (max-width: 650px){

/*tableの横スクロール用*/
.time{
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch; /* iPhoneでヌルっと */
}
.time table{
width: 800px; 
table-layout: fixed;/* セルの横幅を均等に */
}
.time td{
display: table-cell!important;
 width: auto;
}
.index{
margin: 0!important;
}
.index .main {
position: relative;
font-family: 'Noto Sans JP';
padding-top: 60px;
}
.index .main .box_video{
width: 100%;
}
#video-area{
    position: relative;
width: 100%;
}
#video {
    /*天地中央配置*/
    width: 100%;
    height: auto
}
.index .bunner_tel{
display: none
}
/*スクロールダウン全体の場所*/
.scrolldown4{
display: none
}

.index .container {
margin: 0;
 padding: 0;
 background-color: #f6f4f7
}
.index .box1{
padding: 0 0 0 0;
}
.index .box1 .flex_catch{
width: 100%;
margin: 0 auto 50px auto;
}
.index .box1 .flex_catch .catch{
font-family: 'Noto Serif JP';
font-size:1.9rem;
text-align: center;
color: #B06162;
font-weight: 600;
line-height: 210%;
}
.index .box1 .flex_catch .photo{
width: 80%;
margin: 20px auto
}
.index .box1 .flex_catch .photo img{
width: 100%;
border-radius: 20px
}
.index .box1 .box_concept{
width: 90%;
margin: 0 auto ;
padding: 50px 0;
border-top: #b77eb2 1px solid;
}
.index .box1 .box_concept .left{
position: relative;
}
.index .box1 .box_concept .left .text_left{
color: #C57794;
font-weight: 500;
width: 100%;
font-size: 2.0rem;
text-align: center;
}
.index .box1 .box_concept .left .text_left .en{
font-family: "Dancing Script", cursive;
color: #C57794;
width: 100%;
font-size: 2.0rem;
text-align: center;
}
.index .box1 .box_concept .article{
padding-top: 40px;
line-height: 200%;
font-weight: 400
}
.index .box1 .box_concept .article .catch{
color: #D77072;
font-size: 2.0rem;
font-weight: 500;
padding-bottom: 20px
}
.index .box1 .box_concept .article .bt_concept{
padding-top: 30px
}
.index .box1 .box_concept .article .bt_concept .tel{
font-size:3.0rem;
font-weight: 500;
text-align: center;
margin-bottom: 30px
}
.index .box1 .box_concept .article .bt_concept a{
display: block;
margin-bottom: 20px;
text-decoration: none;
background-color: #d291a6;
color: #FFF;
text-align: center;
font-size: 1.8rem;
font-weight: 400;
padding: 10px 0;
transition: 0.5s;
font-family: "Kiwi Maru", serif;
position: relative
}
.index .box1 .box_concept .article .bt_concept a:after{
  font-family: FontAwesome;
  content: '\f105 '; /* アイコンのunicode */
  position:absolute;
  right:5px;
}
.index .box1 .box_concept .article .bt_concept a:hover{
background-color: #b26e87;
}
.index .box2{
padding: 50px 0;
background-image: url("../images/index/bg_box2-sp.jpg")
}

.index .box2 .reveal{

}

.index .box2 .point{
margin: 0 auto;
width: 80%
}
.index .box2 .point .subtitle{
color: #C57794;
font-weight: 500;
font-size: 2.0rem;
text-align: center;
padding-bottom: 2px;
border-bottom: #b26e87 2px solid;
margin-bottom: 20px;
text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
            -1px 1px 0 #FFF, 1px -1px 0 #FFF,
            0px 1px 0 #FFF,  0-1px 0 #FFF,
            -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.index .box2 .point .subtitle .en{
font-family: "Dancing Script", cursive;
}
.index .box2 .point .flex_point{

}
.index .box2 .point .flex_point .inner{
margin-bottom: 20px
}
.index .box2 .point .flex_point .inner img{
width: 100%
}

.index .box3{
padding: 50px 0 50px 0;
}
.index .box3 .box_guide{
width: 90%;
margin: 0 auto 50px auto;
padding: 50px 2%;
border-top: #b77eb2 1px solid;
}
.index .box3 .box_guide .left{
position: relative;
}
.index .box3 .box_guide .left .text_left{
color: #C57794;
font-weight: 500;
font-size: 2.0rem;
text-align: center;
}
.index .box3 .box_guide .left .text_left .en{
font-family: "Dancing Script", cursive;
color: #C57794;
width: 100%;
font-size: 2.0rem;
text-align: center;
}
.index .box3 .box_guide .article{
padding-top: 40px;
line-height: 200%;
font-weight: 400
}

.index .box3 .box_guide .article table{
width: 100%;
border-collapse: collapse
}
.index .box3 .box_guide .article td{
border: #C57794 1px solid;
text-align: center;
display: table-cell
}
.index .box3 .box_guide .article tr:nth-child(1){
background-color:#EBE8DC;
}
.index .box3 .box_guide .article td:nth-child(1){
width: 20%
}
.index .box3 .box_guide .article .close{
font-size: 1.8rem;
color: #C05003;
padding-top: 10px
}
.index .box3 .box_guide .article .bt_guide{
padding-top: 40px;
}
.index .box3 .box_guide .article .bt_guide .tel{
font-size:3.0rem;
font-weight: 500;
text-align: center;
margin-bottom: 30px
}
.index .box3 .box_guide .article .bt_guide a{
display: block;
width: 80%;
margin: 0 auto;
text-decoration: none;
background-color: #d291a6;
color: #FFF;
text-align: center;
font-size: 1.8rem;
font-weight: 400;
padding: 10px 0;
transition: 0.5s;
font-family: "Kiwi Maru", serif;
position: relative
}
.index .box3 .box_guide .article .bt_guide a:after{
  font-family: FontAwesome;
  content: '\f105 '; /* アイコンのunicode */
  position:absolute;
  right:5px;
}
.index .box3 .box_guide .article .bt_guide a:hover{
background-color: #b26e87;
}
.index .box3 .caution{
padding: 20px 2%;
}

.index .box3 .caution dl{

}
.index .box3 .caution dt{
font-size: 1.6rem;
font-weight: 500;
color: #C57794;
padding-bottom: 10px;
}
.index .box3 .caution dd{
margin-left: 0;
}
.index .box3 .news{
width: 90%;
margin: 0 auto 20px auto;
padding: 50px 2%;
border-top: #b77eb2 1px solid;
}
.index .box3 .news .left{
position: relative;
}
.index .box3 .news .left .text_left{
color: #C57794;
font-weight: 500;
font-size: 2.0rem;
text-align: center;
}
.index .box3 .news .left .text_left .en{
font-family: "Dancing Script", cursive;
color: #C57794;
width: 100%;
font-size: 2.0rem;
text-align: center;
}
.index .box3 .news .article{
padding-top: 40px;
line-height: 200%;
font-weight: 400
}
.index .box3 .news dl{

}
.index .box3 .news dt{
font-size: 1.6rem;
font-weight: 500;
color: #C57794;
padding-bottom: 10px;
}
.index .box3 .news dd{
margin-left: 0;
margin-bottom: 30px;
border-bottom: #b77eb2 1px dotted;
}
.index .box3 .news dd a{
color: #00C;
text-decoration: underline
}
.index .box4{
width: 90%;
margin: 0 auto
}
.index .box4 .inner{
border: #FFF 1px solid;
box-sizing: border-box;
position: relative;
font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px
}
.index .box4 .inner .box_text{
position: absolute;
width: 100%;
color: #c82d35;
top: 0;
text-shadow:1px 1px 2px #FFF, -1px -1px 2px #FFF,
            -1px 1px 2px #FFF, 1px -1px 2px #FFF,
            0px 1px 2px #FFF,  0 -1px 2px #FFF,
            -1px 0 2px #FFF, 1px 0 2px #FFF;
}
.index .box4 .inner .box_text .linktitle{
text-align: center;
font-size: 2.5rem;
font-weight: 500;
width: 70%;
padding-bottom: 2px;
border-bottom: #c82d35 1px solid;
margin: 5% auto 0 auto
}
.index .box4 .inner .box_text .com{
padding-top: 10%;
line-height: 160%;
font-size: 1.6rem;
text-align: center;
font-weight: 500
}
.index .box4 .inner .box_text .com a{
display: block;
width: 70%;
text-decoration: none;
background-color: #c57e96;
color: #FFF;
text-align: center;
font-size: 1.6rem;
font-weight: 400;
padding: 7px 0;
transition: 0.5s;
position: relative;
margin: 10px auto 0 auto;
border: #FFF 1px solid;
text-shadow:1px 1px 2px #b786a7, -1px -1px 2px #b786a7,
            -1px 1px 2px #b786a7, 1px -1px 2px #b786a7,
            0px 1px 2px #b786a7,  0-1px 2px #b786a7,
            -1px 0 2px #b786a7, 1px 0 2px #b786a7!important;
}
.index .box4 .inner .box_text .com a:after{
  font-family: FontAwesome;
  content: '\f105 '; /* アイコンのunicode */
  position:absolute;
  right:5px;
}
.index .box4 .inner .box_text .com a:hover{
background-color: #b26e87;
}
/*クリニック案内--------------------------------------------------------------------------*/
.about {
padding:50px 0 0 0;
background-color: #FFF
}
.about .box1{
position: relative;
width: 90%;
margin: 0 auto
}
.about .box1 .com{
line-height: 200%;
background-color: rgba(255,245,245,0.7);
padding: 3%;

}
.about .box1 .com .catch{
color: #D77072;
font-size: 2.0rem;
font-weight: 500;
padding-bottom: 20px
}
.about .box1 .photo{
width: 90%;
margin: 10px auto
}
.about .box1 .photo img{
width: 100%;
}
.about .subtitle {
  border-bottom: solid 3px #EDA8A9;
  position: relative;
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #999
}
.about .subtitle:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #C06465;
  bottom: -3px;
  width: 20%;
}
.about .box_info{
margin-bottom: 50px;
padding-top: 50px;
width: 90%;
margin: 0 auto;
}
.about .box_info .guideline{
display: flex;
flex-wrap: wrap;
justify-content: center;
flex-direction: column-reverse
}
.about .box_info .guideline .photo{
width: 90%;
margin: 0 auto
}
.about .box_info .guideline .photo img{
width: 100%;
}
.about .box_info .guideline .com{
margin-bottom: 30px
}
.about .box_info .guideline td{
border: none;
font-weight: 400;
color: #666;
}
.about .box_info .guideline td:nth-child(1){
width: 20%;
padding-top: 20px;
font-weight: 500
}
.about .box_info .guideline td:nth-child(2){
border-bottom: #C06465 1px dotted;
}
.about .box_info .guideline .maplink{
padding-top: 20px
}
.about .box_info .guideline .maplink a{
display: block;
background-color: #C06465;
color: #FFF;
font-size: 1.8rem;
font-weight: 500;
text-align: center;
padding: 10px 0;
border-radius: 20px
}
.about .box2{
width: 90%;
margin: 0 auto;
padding-top: 50px;
margin-bottom: 50px
}
.about .box2 .time table{
width: 100%;
border-collapse: collapse
}
.about .box2 .time td{
border: #C57794 1px solid;
text-align: center
}
.about .box2 .time tr:nth-child(1){
background-color:#EBE8DC;
}
.about .box2 .time td:nth-child(1){
width: 20%
}
/*医師紹介--------------------------------------------------------------------------*/
.doctor{
padding:50px 0 0 0;
background-color: #FFF
}
.doctor .box1{
width: 90%;
margin: 0 auto 50px auto
}
.doctor .name{
font-size: 2.0rem;
font-weight: 500;
margin-bottom: 30px
}
.doctor .name2{
font-size: 1.8rem
}
.doctor .profile{

}
.doctor .profile .com{
margin-bottom: 20px
}
.doctor .profile .com li{
display: block;
color:#6E4344;
font-size: 1.8rem;
padding-bottom: 2px;
border-bottom:#AF5B5C 1px dotted;
margin-bottom: 20px
} 
.doctor .profile .com .box_shikaku{
background-color: #E9DBDB;
padding: 2%;
}
.doctor .profile .com dt{
font-size: 1.8rem;
font-weight: 500;
margin-bottom: 20px;
}
.doctor .profile .com dd{
line-height: 200%;
margin-bottom: 50px;
margin-left: 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;

}
.doctor .profile .com dd .syozoku{
width: 58%;
}
.doctor .profile .com dd .photo{
width: 42%;
}
.doctor .profile .com dd .photo img{
width: 65%
}
/*不妊治療--------------------------------------------------------------------------*/
.infertility {
padding:50px 0 0 0;
background-color: #FFF
}
.infertility .catch{
color: #D77072;
font-size: 2.0rem;
font-weight: 500;
padding-bottom: 30px
}
.infertility .box1{
width: 1500px;
max-width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 100px
}
.infertility .box1 .text1{
color: #AF6263;
font-size: 1.8rem;
font-weight: 500;
padding: 15px 0
}
.infertility .box2{
width: 1500px;
max-width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 100px
}
.infertility .com{
line-height: 200%;
margin-bottom: 20px
}
.infertility .photo{
width: 80%;
margin: 0 auto
}
.infertility .photo img{
width: 100%;
border-radius: 20px
}
.infertility .subtitle {
  border-bottom: solid 3px #EDA8A9;
  position: relative;
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #999
}
.infertility .subtitle:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #C06465;
  bottom: -3px;
  width: 20%;
}
.infertility .box3{
padding: 20px 0
}
.infertility .box3 td{
border:#EDC7C8 1px solid;
text-align: center;
display: table-cell;
width: 33%
}
.infertility .box3 tr:nth-child(1){
background-color: #BB5E60;
color: #FFF;
}
.infertility .box3 tr:nth-child(2){
color: #BB5E60;
font-weight: 500
}
.infertility .box4{
width: 1500px;
max-width: 90%;
margin: 0 auto;
padding-bottom: 50px
}
.infertility .box4 .text2{
color: #BB5E60;
padding-bottom: 30px
}
.infertility .box4 td{
border:#EDC7C8 1px solid;
text-align: center;
width: 33%;
display: table-cell;
font-size: 1.4rem
}
.infertility .box4 tr:nth-child(1){
background-color: #BB5E60;
color: #FFF
}
.infertility .box4 tr:nth-child(2){
color: #BB5E60;
font-weight: 500;
font-size: 2.0rem
}
.infertility .box4 .photo{
padding-top: 40px;
width: 100%
}
.infertility .box4 .photo img{
width: 100%;
border-radius: 20px
}
/*体外受精--------------------------------------------------------------------------*/
.art {
padding:50px 0 0 0;
background-color: #FFF
}
.art .box1{
width: 90%;
margin: 0 auto; 
}
.art .subtitle {
  border-bottom: solid 3px #EDA8A9;
  position: relative;
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 30px;
  color: #999
}
.art .subtitle:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #C06465;
  bottom: -3px;
  width: 20%;
}
.art .box1 .flex_box1{
display: flex;
flex-wrap: wrap;
justify-content: center;
padding-bottom: 50px
}
.art .box1 .flex_box1 .com{
line-height: 200%;
margin-bottom: 20px
}
.art .box1 .flex_box1 .com .catch{
color: #D77072;
font-size: 1.8rem;
font-weight: 500;
padding-bottom: 20px
}
.art .box1 .flex_box1 .photo{
width: 80%;
margin: 0 auto; 
}
.art .box1 .flex_box1 .photo img{
width: 100%;
border-radius: 20px
}
.art .box1 dl{
padding-bottom: 50px
}
.art .box1 dt{
color: #C06465;
font-size: 1.8rem;
font-weight: 500;
margin-bottom: 15px
}
.art .box1 dd{
line-height: 180%;
padding-bottom: 3px;
border-bottom:#C06465 1px dashed;
margin-bottom: 30px
}
.art .box2{
width: 90%;
margin: 0 auto; 
}
.art .box2 .flex_box2{
display: flex;
flex-wrap: wrap;
justify-content: center;
padding-bottom: 50px
}
.art .box2 .flex_box2 .com{
color: #D77072;
font-size: 1.8rem;
font-weight: 500;
margin-bottom: 20px;
line-height: 180%
}
.art .box2 .flex_box2 .photo{
width: 80%;
margin: 0 auto; 
}
.art .box2 .flex_box2 .photo img{
width: 100%;
margin-bottom:10px
}
.art .box3{
width: 90%;
margin: 0 auto; 
padding-bottom: 50px
}
/*初診方の方へ--------------------------------------------------------------------------*/
.first {
padding:50px 0 0 0;
background-color: #FFF
}
.first .box1{
width: 90%;
margin: 0 auto;
margin-bottom: 100px
}
.first .box1 .com{
font-size: 1.8rem;
line-height: 200%;
margin-bottom: 40px
}
.first .box1 .com .bt{
padding-top: 30px
}
.first .box1 .com .bt a{
display: block;
border: #C06465 1px solid;
color: #C06465;
width: 80%;
font-size: 1.8rem;
font-weight: 500;
text-align: center;
padding: 10px 0;
border-radius: 20px;
margin: 0 auto
}
.first .box1 .com .bt a:hover{
background-color:#E5696B;
color: #FFF
}
.first .box1 .photo{
width: 80%;
margin: 0 auto
}
.first .box1 .photo img{
width: 100%;
border-radius: 20px
}
.first .box2{
width: 1200px;
max-width: 90%;
margin: 0 auto;
padding-bottom: 50px
}
.first .box2 .inner{
border: #BB5E60 1px solid;
border-radius: 20px;
overflow: hidden;
position: relative;
margin-bottom: 30px
}
.first .box2 .inner .subtitle{
background:#BB5E60;
color: #FFF;
text-align: center;
font-size: 1.8rem;
font-weight: 500;
padding: 10px 0;
}
.first .box2 .inner .com{
padding: 5%;
font-weight: 500;
min-height: 25%
}
.first .box2 .inner .photo{
padding-top: 20px
}
.first .box2 .inner .photo img{
width: 100%;
}
/*お問合せ--------------------------------------------------------------------------*/
.contact {
contact:50px 0 0 0;
background-color: #FFF
}
.contact .box1{
width: 90%;
margin: 0 auto;
padding-bottom: 50px;
line-height: 180%
}
.contact .box_form{
width: 90%;
margin: 0 auto;
margin-bottom: 50px
}
.contact td{
display: block;
border: none;
}
.contact td:nth-child(1){
font-weight: 500;
padding-top: 35px;
}
.contact td:nth-child(2){
font-size: 1.4rem;
border: none;
border-bottom: 1px #333 solid;
}
.contact table textarea {
width:90%;
max-width: 100%;
height: 10em;
border:#CCC 1px solid;
background-color: #EEE;
display: block
}
.contact table label{
	display:block;
}
.contact table input[type="text"]{
width: 90%;
max-width: 100%;
height: 22px;
border:#CCC 1px solid;
background-color: #EEE;
display: block
}
.contact table .year input[type="text"]{
width:30%;
}
.contact table input[type="email"]{
width: 90%;
height: 22px;
border:#CCC 1px solid;
background-color: #EEE
}
.contact select{
height: 25px;
border:#CCC 1px solid;
background-color: #EEE;
margin-bottom: 10px;
margin-right: 10px;
display: block;
font-size: 1.6rem;
height: 20px;
width: 40%
}
.contact label{
display: inline!important
}
.contact table input[type="radio"]{
display: inline!important
}
.contact input[type="submit"]{
	width:80%;
	border:#FFF 1px solid;
	background:#BB5E60;
	text-align:center;
	font-weight:bold;
	font-size:1.6rem;
	color:#FFF;;
	padding:3px 0;
	margin-top:30px;
	margin-bottom:30px;
	display:block;
	cursor:pointer;
	line-height: 300%
}
.contact input[type="submit"]:hover{
	background-color:#900;
}
.contact li{
font-size: 1.3rem
}
/*個人情報-----------------------------------------*/
.privacy .box_privacy{
max-width: 95%;
margin: 0 auto;
}
.privacy dl{
 padding: 20px 0;
 border-top: #CCC 1px solid;
 margin-top: 40px;
}
.privacy dt{
 font-weight: 500;
 padding-bottom: 10px;
}
.privacy dd{
margin-left: 0;
margin-bottom: 30px;
}
/*ブログ--------------------------------------------------------------------------*/
.blog .box1{
padding: 30px 0 50px 0;
}
.blog .box1 .text1{
 font-size: 18px;
 font-weight: 600;
 color: #FFF;
 padding-bottom: 60px;
}
.blog .box1 .box2{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.blog .box1 .box2 .inner{
width: 100%;
}
.blog .box1 .box2 .inner .com{
display: none;
}
.blog .box1 .box2 .inner img{
width: 90%;
display: block;
margin: 10px auto;
}
.blog .article {
margin-bottom: 30px

}
.blog h1{
	font-size:24px;
	line-height:30px;
}
.blog .box_blog{

}
.blog .box_blog a{
 color: #00C;
 text-decoration: underline;
}
.blog .box_blog .inner{
 border: #666 1px solid;
 margin-bottom: 30px;
 padding: 2%;
}
.blog .box_blog .blogtitle{
 padding-left: 10px;
 color: #FFF;
 border-left: #FFF 5px solid;
 margin-bottom: 15px;
 font-size: 18px;
 font-weight: 500;
}

.blog .box_blog .com .box_img{
display: flex;
flex-wrap: wrap;
justify-content: center;
background-color: #000;
padding: 1%;
}
.blog .box_blog .com .box_img .photo{
 width: 100%;
 margin-bottom: 20px;
}
.blog .box_blog .com .box_img .photo img{
width: 100%;
}

.blog a:hover{
color: #00C;
}
.blog .aside {

}
.blog .aside h3{
background-color: #000;
text-align: center;
padding: 3px;
margin: 0;
}
.blog .aside .term{
padding: 15px 0;
}
.blog .aside .term a{
display: block;
font-weight: 500;
color: #FFF;
padding-bottom: 3px;
border-bottom: #FFF 1px dotted;
margin-bottom: 7px;
font-size: 13px;
transition: 0.5s;
}
.blog .aside .term a:hover{
background-color: #000;
}

.pager{
width: 80%;
padding-top: 40px;
font-size: 1.5rem;
color: #333;
margin: 0 auto
}
.pager a{
display: inline-block;
background-color: transparent ;
color: #333;
font-size: 1.6rem!important;
padding: 4px 10px!important;
border: #036 1px solid;
margin-bottom: 20px
}
.pager .prev{
padding: 4px 30px!important;
background-color: #333;
color: #FFF
}
.pager .next{
padding: 4px 30px!important;
background-color: #333;
color: #FFF
}
.pager .dots{
display: inline-block;
padding-right: 6px
}
.pager .current{
display: inline-block;
padding-right: 6px;
font-size: 1.5rem;
font-weight: 600
}
.bt_back{
margin: 20px 0;
}
.bt_back a{
display: inline-block;
background-color: #333;
color: #FFF;
padding: 10px 30px;
font-weight: 600
}
}

/* スクロールで出現 */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}


.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateY(200px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}
/*==================================================
スクロールしたら順番に出現
===================================*/
.flipLeft{
animation-name:flipLeftAnime;
animation-duration:1s;
animation-fill-mode:forwards;
perspective-origin:left center;
opacity:0;
}

@keyframes flipLeftAnime{
  from {
   transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
  opacity: 0;
  }

  to {
  transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
  opacity: 1;
  }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.flipLeftTrigger{
    opacity: 0;
}

/*==================================================
アニメーション設定
===================================*/

/* アニメーションの回数を決めるCSS*/

.count2{  
  animation-iteration-count: 2;/*この数字を必要回数分に変更*/
}

.countinfinite{  
  animation-iteration-count: infinite;/*無限ループ*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time05{  
  animation-delay: 0.5s;
}

.delay-time1{  
  animation-delay: 1s;
}

.delay-time2{  
  animation-delay: 1.5s;
}
