@charset "utf-8";
/* CSS Document */
body {
	font-family: "Kiwi Maru", "Kiwi Maru Light", "Kiwi Maru Medium", "Zen Maru Gothic", "Zen Maru Gothic Medium", "Meiryo UI";
	font-size: 16px;
	color: #666666;
	position: relative;
	font-style: normal;
	font-weight: 500;
}
a {
	text-decoration: none;
	color: #666666;
}
img {
	max-width: 100%;
	vertical-align: bottom;
	display: block;
}
ul {
	list-style: none;
}
.wrap {
	width: 85%;
	margin: 0 auto;
	max-width: 1500px;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.even {
	flex-direction: row-reverse;
}
.flex-2 {
	width: 48%;
}
.flex-3 {
	width: 31%;
}
.white {
	color: #FFFFFF;
}
.txt p {
	margin-bottom: 15px;
	line-height: 1.8;
}
.en {
	font-family: "Oswald";
}
.w-1200 {
	max-width: 1200px;
}
.orange {
	color: #FB9E03;
}


/*==================================================
ヘッダー
===================================*/
#header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	background: rgba(195,138,76,0.80);
}
.header-wrap {
	padding: 5px 10px 15px;
	display: flex;
	align-items: center;
}
.header-left {
	width: 30%;
}
.header-right {
	width: 70%;
	margin-left: auto;
}
.header-top {
	margin-bottom: 8px;
	display: flex;
	justify-content: flex-end;
}
.header-top a {
	margin-left: 15px;
	width: 200px;
	padding: 10px 0;
	text-align: center;
	font-weight: bold;
	font-size: 18px;
	border-bottom: 1px solid #fff;
	color: #fff;
}
.header-top .map {
	background: #FCDE5E;
}
.header-top a:hover {
	opacity: 0.7;
}


/*==================================================
グローバルメニュー
===================================*/
.menu {
    position: relative;
    width: 100%;
	text-align: center;
}
.menu > li {
    float: left;
    width: 16.6%;
	position: relative;
}

.menu > li a {
    display: block;
	font-size: 16px;
	position: relative;
	font-weight: 700;
	color: #fff;
}


.menu > li:hover::before {
    content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #FFEFBA;
	position: absolute;
	bottom: -12px;
	right: 50%;
	transform: translateX(50%);
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.menu > li:hover {
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li a:hover {
    background: #C38A4C;
	color: #FFFFFF;
}

/* floatクリア */
.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu {
    *zoom: 1;
}

.menu > li.menu__single {
    position: relative;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 40px;
    width: 100%;
    background: #EDDCBB;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
	z-index: 99;
}

li.menu__single:hover ul.menu__second-level {
    top: 60px;
    visibility: visible;
    opacity: 1;
	z-index: 99;
}
.menu__second-level li a {
	padding: 10px 0;
	color: #C38A4C;
}


/*==================================================
メインビジュアル
===================================*/
#mv {
	position: relative;
	z-index: 1;
}
.slider {
  position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("img/top/mv01.jpg");
}

.slider-item02 {
    background:url("img/top/mv02.jpg");
}

.slider-item03 {
    background:url("img/top/mv03.jpg");
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.cp {
	width: 100%;
	position: absolute;
	z-index: 5;
	bottom: 50%;
	right: 50%;
	transform: translate(50%, 50%);
}
.cp img {
	margin: 0 auto;
}

/*==================================================
お知らせ
===================================*/
#news {
	padding: 50px 0 100px;
	position: relative;
	z-index: 1;
}

.index-ttl {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}
.index-ttl .en {
	font-size: 32px;
}
#news .wrap {
	background: rgba(237,220,187,0.20);
	padding: 30px 2%;
	display: flex;
}
#news .index-ttl {
	width: 15%;
}

.news-content {
	width: 85%;
	margin: 0 auto;
}
.n-item {
	display: flex;
	padding: 15px 0;
	border-bottom: 1px solid #666666;
	margin-bottom: 20px;
}
.n-item .date {
	width: 10%;
	text-align: center;
	font-size: 16px;
	color: #C38A4C;
}
.n-item .ttl {
	width: 90%;
}


/*==================================================
ご挨拶
===================================*/
#greeting {
	position: relative;
	z-index: 1;
}
#greeting::before {
	content: "";
	background-image: url("img/top/greeting01.jpg");
	width: 540px;
	height: 465px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#greeting::after {
	content: "";
	background-image: url("img/top/greeting02.jpg");
	width: 530px;
	height: 400px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top right;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
}
#greeting .top {
	width: 60%;
	padding: 40px 0 20px;
	margin: 0 auto;
}
#greeting .txtbox {
	padding: 30px 3%;
	background: rgba(255,255,255,0.65);
}
#greeting h2 {
	font-size: 30px;
	margin-bottom: 30px;
}
#greeting .txt p {
	line-height: 2.8;
}
#greeting .btm img {
	margin-left: auto;
}


/*==================================================
当院が選ばれる理由
===================================*/
#reason {
	padding-top: 45px;
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
}
#reason::before {
	content: "";
	background-image: url("img/top/reason_bg.jpg");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: top left;
	width: 800px;
	height: 560px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
#reason h2 {
	width: 10%;
}
#reason h2 img {
	margin-left: auto;
}
#reason .inner {
	width: 85%;
	background: #FFFCF2;
	margin-top: 50px;
}
#reason .inner .wrap {
	width: 90%;
	margin: 0 auto 0 0;
}
#reason .item {
	margin-bottom: 40px;
}
#reason .item-right {
	width: 90%;
	margin-left: auto;
}
#reason .txtbox {
	margin-top: 50px;
}
#reason .num {
	margin-bottom: 20px;
}
#reason .num span {
	font-size: 32px;
}
#reason h3 {
	font-size: 27px;
	margin-bottom: 30px;
	color: #C38A4C;
}

.reason02 {
	padding: 50px 0;
	background: rgba(249,211,134,0.20);
}
.reason02 .txtbox {
	padding-right: 30px;
}
.reason02 .btm {
	margin-top: 50px;
}
.reason02 .btm img {
	margin-left: auto;
}
.reason-btm {
	padding: 70px 0;
}

.more {
	width: 50%;
	max-width: 150px;
	margin: 0 auto;
}
.more-btn {
	display: block;
	padding: 10px 0;
	text-align: center;
	border-top: 1px solid #666666;
	border-bottom: 1px solid #666666;
	font-size: 20px;
	font-weight: bold;
}

/*==================================================
こんなお悩みはありませんか？
===================================*/
#worry {
	padding: 60px 0;
	background: rgba(237,220,187,0.30);
}
#worry .index-ttl {
	margin-bottom: 80px;
}
#worry .index-ttl::after {
	content: "";
	background-image: url("img/top/worry_ttl.png");
	width: 350px;
	height: 20px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: -30px;
	right: 50%;
	transform: translateX(50%);
	z-index: -1;
}
#worry .index-ttl .ja {
	font-size: 29px;
}
#worry .index-ttl span {
	color: #D87171;
}
.worry-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.worry-list li {
	width: 24%;
	margin-bottom: 50px;
}
.worry-list li a:hover {
	opacity: 0.7;
}
.worry-list img {
	margin: 0 auto;
}


/*==================================================
ピックアップ
===================================*/
#pickup {
	margin: 50px auto;
}
#pickup .item {
	display: flex;
	margin-top: 100px;
	justify-content: center;
	align-items: baseline;
}
#pickup .txtbox {
	width: 50%;
	max-width: 750px;
	padding: 40px 3%;
	position: relative;
	z-index: 1;
}
#pickup .txtbox::before {
	content: "";
	width: 110%;
	height: 110%;
	background: #fff;
	box-shadow: 0 3px 6px rgb(0, 0, 0, 0.60);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
}
#pickup .txtbox .number {
	position: absolute;
	display: block;
	top: -90px;
	right: 0;
	z-index: 1;
	font-size: 80px;
}
#pickup .txtbox .ttl {
	font-size: 42px;
	margin-bottom: 70px;
	position: relative;
	z-index: 1;
}
#pickup .txtbox .ttl::after {
	content: "";
	width: 150px;
	height: 1px;
	background: #FB9E03;
	position: absolute;
	bottom: -25px;
	left: 0;
	z-index: 1;
}
.view-more {
	width: 50%;
	margin-top: 50px;
	max-width: 300px;
}
.view-more a {
	display: block;
	background: #FB9E03;
	color: #fff;
	font-size: 20px;
	padding: 40px 0 10px 20px;
	position: relative;
	z-index: 1;
}
.view-more a::after {
	content: "";
	position: absolute;
    right: 2em;
    transform: translateY(-50%);
    transform-origin: left;
    width: 3em;
    height: .5em;
    background-color: #fff;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
}
.view-more a:hover {
	opacity: 0.7;
}

#pickup .img {
	width: 60%;
	max-width: 830px;
	position: relative;
	z-index: -1;
}
#pickup .img span {
	font-size: 80px;
	color: rgba(251,158,3,0.20);
	display: block;
	text-align: end;
}
#pickup .img_bg {
	width: 100%;
	height: 80%;
	max-width: 830px;
	max-height: 500px;
	background: rgba(237,220,187,0.50);
	position: absolute;
	bottom: -20px;
	left: -20px;
	z-index: -3;
}
#pickup02 .img span {
	text-align: left;
}

#pickup01 .txtbox::after {
	content: "";
	background-image: url("img/top/pickup01-2.png");
	width: 150px;
	height: 130px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: -130px;
	right: 50%;
	transform: translateX(50%);
	z-index: -5;
}
#pickup02 .txtbox::after {
	content: "";
	background-image: url("img/top/pickup02-2.png");
	width: 170px;
	height: 130px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: -130px;
	right: 50%;
	transform: translateX(50%);
	z-index: -5;
}
#pickup03 .txtbox::after {
	content: "";
	background-image: url("img/top/pickup03-2.png");
	width: 170px;
	height: 140px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: -130px;
	right: 50%;
	transform: translateX(50%);
	z-index: -5;
}



/*==================================================
診療案内
===================================*/
#medical {
	padding-top: 100px;
	position: relative;
	z-index: 1;
}

#medical .flex {
	max-width: 1200px;
	margin: 0 auto;
}
#medical .flex-3 {
	position: relative;
	z-index: 1;
}
#medical .ttl {
	position: absolute;
	bottom: 165px;
	right: 0;
	z-index: 1;
	width: 130px;
	text-align: center;
}
.med01::before {
	content: "";
	background-image: url("img/top/medical01-2.png");
	width: 150px;
	height: 145px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: 50%;
	right: 50%;
	transform: translate(50%, 50%);
	z-index: -1;
}
.med02::before {
	content: "";
	background-image: url("img/top/medical02-2.png");
	width: 150px;
	height: 145px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: 50%;
	right: 50%;
	transform: translate(50%, 50%);
	z-index: -1;
}
.med03::before {
	content: "";
	background-image: url("img/top/medical03-2.png");
	width: 150px;
	height: 145px;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: 50%;
	right: 50%;
	transform: translate(50%, 50%);
	z-index: -1;
}
#medical .ttl span {
	color: #C38A4C;
	font-size: 25px;
}
#medical .img img {
	margin: 0 auto 75px;
}
.med-list {
	margin-top: 50px;
}
.med-list li {
	width: 100%;
	margin-bottom: 10px;
}
.med-list a {
	font-weight: bold;
}
.med-list .c-brown {
	color: #F9D386;
}
.med-list .c-yellow {
	color: #FFEFBA;
}
.med-list .c-pink {
	color: #FEE9E3;
}


/*==================================================
ギャラリー
===================================*/
.gallery {
	padding: 70px 0;
	position: relative;
	z-index: 1;
}

/*
右から左へ
----------------------------*/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*
IE11対策
----------------------------*/
_:-ms-lang(x)::-ms-backdrop,
.d-demo {
  display: -ms-grid;
  overflow: hidden;
}
/*----------------------------*/

.d-demo__wrap {
  display: flex;
  overflow: hidden;
}

.d-demo__list {
  display: flex;
  list-style: none;
}

.d-demo__list--left{
animation :infinity-scroll-left 95s infinite linear 0.5s both;
}

.d-demo__item {
  width: calc(150vw / 6);
}
.d-demo__item > img{
   width: 95%;
}


/*==================================================
フッター
===================================*/
#footer {
	position: relative;
	z-index: 1;
}
.footer-top .flex-2 {
	width: 50%;
}
.footer-top .img {
	background-image: url("img/top/footer.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	width: 100%;
	height: 100%;
}
.footer-top .logo img {
	margin: 0 auto;
}
.footer-top .tel {
	display: block;
	width: 80%;
	max-width: 250px;
	padding: 8px 0;
	text-align: center;
	font-size: 20px;
	margin: 25px auto;
	font-weight: bold;
	color: #FB9E03;
}
.time-table {
	width: 100%;
	padding: 2%;
}
.biz-hour {
	width: 100%;
	border-collapse: collapse;
}
.biz-hour td, .biz-hour th {
	text-align: center;
	padding: 5px;
	color: #FB9E03;
}
.time-table tr {
	border-bottom: 1px solid #FB9E03;
}
.biz-txt {
	padding-left: 2%;
}
.clinic-info {
	margin: 25px auto;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;	
	width: 100%;
	padding-left: 2%;
}
.clinic-info dt{
	padding: 5px;
	width: 150px;
	margin-bottom: 10px;
	border-radius: 20px;
	text-align: center;
	border: 1px solid #FB9E03;
	color: #FB9E03;
}
.clinic-info dd{
	padding: 5px;
	width: calc(100% - 150px);
	margin-bottom: 10px;
}

.sitemap {
	margin: 25px auto;
	width: 60%;
	max-width: 900px;
}
.sitemap ul {
	display: flex;
}
.sitemap li {
	width: 16.6%;
	text-align: center;
}
.copyright {
	font-size: 14px;
	text-align: center;
	padding: 15px 0;
	background: #FB9E03;
	color: #fff;
	font-weight: normal;
}


/*==================================================
ページトップに戻る
===================================*/
#page_top{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #F7B527;
  border-radius: 50%;
	z-index: 999;
}
#page_top a{
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 30px;
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}


/*==================================================
ここから下層ページ_医院案内
===================================*/
#mainvisual {
    background-image: url("img/subpage_bg.jpg");
    background-position: top center;
    background-size: cover;
	background-repeat: no-repeat;
	position: relative;
    height: 50vh;
    z-index: 1;
}
.page-ttl {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100%;
	text-align: center;
	font-weight: bold;
}
.page-ttl .ja {
	font-size: 25px;
}
.page-ttl .en {
	font-size: 50px;
}

.section {
	padding-top: 100px;
}
.sec-ttl {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}
.sec-ttl .en {
	font-size: 32px;
}


#policy {
	position: relative;
	z-index: 1;
	padding-bottom: 100px;
}
#policy::before {
	content: "";
	width: 80%;
	max-width: 1560px;
	height: 80%;
	background: rgba(255,239,186,0.20);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -3;
}
#policy::after {
	content: "";
	width: 80%;
	max-width: 1560px;
	height: 80%;
	background: rgba(255,239,186,0.30);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
#policy .txt {
	width: 60%;
	margin: 0 auto;
}

.border-list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;	
	width: 100%;
	border-top: 1px solid #C38A4C;
}
.border-list dt{
	padding: 15px 0;
	width: 150px;
	text-align: center;
	border-bottom: 1px solid #C38A4C;
}
.border-list dd{
	padding: 15px 0;
	width: calc(100% - 150px);
	border-bottom: 1px solid #C38A4C;
}

.clinic-list {
	margin-bottom: 150px;
}
.clinic-list .txtbox {
	width: 31%;
	margin-bottom: 50px;
	max-width: 350px;
}
.clinic-list .ttl {
	text-align: center;
	padding: 15px 0;
	background: #F9D386;
}


/*==================================================
下層ページ_院長紹介
===================================*/
#doctor .flex {
	align-items: flex-start;
}
#doctor .flex-2 {
	position: relative;
	z-index: 1;
}
#doctor .d-name {
	width: 80%;
	max-width: 400px;
	background: rgba(255,239,186,0.70);
	padding: 20px 0;
	text-align: center;
	position: absolute;
	bottom: -65px;
	right: 50%;
	transform: translateX(50%);
	z-index: 1;
}
#doctor .d-name div {
	font-size: 20px;
}
.skill {
	margin-bottom: 60px;
}
.skill .ttl {
	font-size: 20px;
	border-bottom: 3px dashed #FB9E03;
	margin-bottom: 20px;
}
.skill dl {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;	
	width: 100%;
}
.skill dt{
	margin-bottom: 10px;
	width: 150px;
}
.skill dd{
	margin-bottom: 10px;
	width: calc(100% - 150px);
}

#interview .bg {
	padding: 100px 0 50px;
	position: relative;
	z-index: 1;
}
#interview .bg::before {
	content: "";
	width: 80%;
	max-width: 1560px;
	height: 80%;
	background: rgba(255,239,186,0.20);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -3;
}
#interview .bg::after {
	content: "";
	width: 80%;
	max-width: 1560px;
	height: 80%;
	background: rgba(255,239,186,0.30);
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
#interview .bg .flex {
	align-items: center;
}
#interview img {
	margin-left: auto;
}
#interview h3 {
	font-size: 30px;
	margin-bottom: 45px;
}


.faq-content {
	margin: 75px auto 100px;
}
.faq-content .item {
	border: 3px solid #FB9E03;
	background: #fff;
	border-radius: 20px;
	padding: 30px 3%;
	margin-bottom: 45px;
}
.faq-content .ttl {
	font-size: 28px!important;
	color: #C38A4C;
	margin-bottom: 20px!important;
	border-bottom: 2px dashed #FB9E03;
}

/*==================================================
下層ページ_診療案内
===================================*/
.medical {
	padding: 45px 0;
	margin: 80px auto;
}
.medical .flex {
	margin-bottom: 70px;
	align-items: center;
}
.medical .flex-2 img {
	margin: 0 auto;
}
#GENERAL, #PREVENTIVE, #AESTHETIC {
	background: #F5F2EE;
}

.fluorine h3.ttl {
	font-size: 25px;
	color: #C38A4C;
	margin-bottom: 50px;
	border-bottom: 2px dashed #FB9E03;
	padding-bottom: 5px;
}
.fluorine .item {
	margin-bottom: 35px;
	border-bottom: 3px solid #FB9E03;
	padding-bottom: 10px;
}
.fluorine .f-ttl {
	font-size: 20px;
	margin-bottom: 15px;
	color: #C38A4C;
}
.fluorine .f-ttl span {
	display: inline-block;
	padding-right: 10px;
	font-size: 32px;
}


/*==================================================
下層ページ_料金表
===================================*/
.fee-content {
	margin-bottom: 80px;
}
.fee-content h3.ttl {
	font-size: 27px;
	border-bottom: 3px dashed #FB9E03;
	margin-bottom: 15px;
	font-weight: normal;
}
.fee-box {
	margin-top: 30px;
	border: 1px solid #F9D386;
	padding: 20px 2% 30px;
}
.fee-box .ttl {
	align-items: center;
	font-size: 20px;
	border-bottom: 2px solid #FB9E03;
	margin-bottom: 5px;
}
.price {
	text-align: end;
	color: #D87171;
}
.fee-list {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;	
	width: 100%;
	margin-top: 20px;
}
.fee-list dt {
	width: 250px;
	border-right: 1px solid #F9D386;
	margin-bottom: 10px;
}
.fee-list dd {
	width: calc(100% - 250px);
	margin-bottom: 10px;
	padding-left: 10px;
}



/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

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

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

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

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1s;
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:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

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

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}
.h3_ttl
{
    font-size: max(1.2vw , 16px);
    padding: 5% 0 10px;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
}
.h3_ttl::before
{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 150px;
    background: #FB9E03;
}
.med_wrap
{
    padding: 1% 0;
    max-width: 900px;
    margin: 0 auto;
}
.name
{
    text-align: right;
    padding: 2%;
    font-size: max(1vw , 18px);
    font-weight: 700;
}
