/* CSS Document */
@charset "utf-8";

body {
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	color: #141414;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}


/*ファーストビューここから*/

#mv {
	background-image: url(../img/IMG_61332.JPG);
	background-repeat: no-repeat;
	background-position: 300px top;
	height: 100vh;
	border-top: 20px solid #fff;
	border-bottom: 20px solid #fff;
} 

header {
	width: 280px;
	margin: 0 auto;
	background-color: #fff;
	top: 0;
	left: 15px;
	position: absolute;
	height: 100vh;
	padding: 20px;
}
.logo {
	padding-top: 10px;
	width: 100%;
}
.box1 {
	font-size: 12px;
	padding-top: 10px;
	line-height: 1.8;
}
.text1 {
	font-size: 14px;
}
.box2 {
	display: flex;
	justify-content: space-around;
	padding-top: 30px;
	padding-bottom: 60px;
}
nav {
	border-left: 1px solid #141414;
}
nav ul li {
	padding-bottom: 10px;
}
nav ul li a {
	padding-left: 15px;
}
nav ul li a:hover {
	color: #BF0005;
}
/*スクロールダウン全体の場所*/
.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: #141414;
font-size: 0.7rem;
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: #141414;
	transform: skewX(-31deg);
}

.scrolldown4:after{
content:"";
	/*描画位置*/
position: absolute;
bottom:0;
right:0;
	/*矢印の形状*/
width:1px;
height: 50px;
background: #141414;;
}

.btn {
	display: flex;
  flex-direction: column;
	float: right;
	z-index: 1;
	position: fixed;
	right: 0;
	top: 13%;
}
.net_reserve p {
	font-family:'Zen Maru Gothic', sans-serif;
	writing-mode: vertical-rl;
	letter-spacing: 0.12em;
}
.tel_reserve p {
	font-family:'Zen Maru Gothic', sans-serif;
	writing-mode: vertical-rl;
	letter-spacing: 0.12em;
}
.net_reserve {
	background-image: linear-gradient(45deg, #a1c4fd 0%, #c2e9fb 100%);
	padding: 20px;
	border-radius: 10px 0 0 10px / 10px 0 0 10px;
}
.tel_reserve {
	background-image: linear-gradient(45deg, #ee9ca7 0%, #ffdde1 100%);
	padding: 20px;
	border-radius: 10px 0 0 10px / 10px 0 0 10px;
	margin-bottom: 20px;
}
.net_reserve i {
	font-size: 22px;
	margin-bottom: 8px;
}
.tel_reserve i {
	font-size: 18px;
	margin-bottom: 8px;
}
.net_reserve:hover {
	transform: scale(1.1);
}
.tel_reserve:hover {
	transform: scale(1.1);
}

/*ファーストビューここまで*/

/*クリニックの特徴ここから*/

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}
.timing04 {transition-delay: .6s;}

.feature {
	margin: 10px 20px 50px;
}
.sp_only {
	display: none;
}
.text2 {
	text-align: center;
	margin: 40px auto;
}
.text2 h2 {
	padding-bottom: 20px;
	font-weight: 500;
}
.text2 p {
	font-size: 18px;
}
/* グラデーションマーカー */
.gradient-marker {
	background-image: linear-gradient(120deg, #8C7241, #C3A83D, #EAEAA7);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 100% 40%;/* マーカーの太さ調整箇所 */
	padding: 0 0.5em 0 0.5em; /* 余白調整箇所 */
}
.box3 {
	display: flex;
	margin: 20px 40px;
	justify-content: space-evenly;
}
.box4 {
	display: flex;
	justify-content: space-evenly;
	margin: auto 80px;
	padding-bottom: 40px;
}
.content {
	border: 2px solid #B5A088;
	box-shadow: 10px 10px  #B5A088;
	width: 250px;
	height: 250px;
	margin: 30px;
}
.content h3 {
	font-weight: 500;
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 10px;
	text-align: center;
}
.content p {
	margin: 10px 30px 20px;
	border-top: 4px dotted #B5A088;
	padding-top: 15px;
	padding-left: 6px;
	font-family:'Zen Maru Gothic', sans-serif;
}
.box4 .content {
	width: 250px;
}
/*クリニックの特徴ここまで*/

/*区切り線*/
hr {
	padding: 20px 0 80px;
	border: none;
}

.hr1 {
	border-top: 1px dotted #B5A088;
	width: 80%;
	margin: 0 auto;
}
/*院長紹介ここから*/
.profiel {
	display: flex;
}
.box5 {
	width: 47%;
	float: left;
	margin-left: 15%;
}
.name {
	font-size: 16px;
	padding: 20px 0;
}
.box5 img {
	width: 60%;
	margin-top: 35px;
	border-radius: 15px;
}
.box6 {
	width: 47%;
	float: right;
	padding-top: 20px;
}
h4 {
	background-color: #B5A088;
	color:#fff;
	border-radius: 5px;
	display: inline-block;
	padding: 5px 15px;
	margin: 0 30px 15px 0;
}
dl.carrer {
	width: 100%;
	margin-bottom: 30px;
	font-size: 14px;
	letter-spacing: 0;
	line-height: 26px;
}
dl.carrer dt {
	float: left;
	text-align: right;
}
dl.carrer dd {
	margin-left: 15%;
}
.box6_1 ul {
	padding-left: 30px;
}
.box6_1 ul li {
	line-height: 26px;
	list-style-type: disc;
}
.box7 {
	border: 2px solid #B5A088;
	box-shadow: 8px 8px  #B5A088;
	display: inline-block;
	padding: 10px 30px;
	margin: 40px 0;
}
.box7:hover {
	box-shadow: none;
	transform: translate(0, 5px);
	transition: 0.5s;
}
/*院長紹介ここまで*/

/*よくある質問ここから*/
.faq {
	background-color: #64584B;
	padding: 60px 0;
	margin-top: 100px;
}
.faq h2{
	text-align: center;
	color: #fff;
	padding-bottom: 20px;
	font-weight: 500;
}
.qa-007 {
	font-family:'Zen Maru Gothic', sans-serif;
	max-width: 60%;
	margin-bottom: 10px;
	border: none;
	border-radius: 5px;
	background-color: #fff;
	margin: 40px auto;
}

.qa-007 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em 1em 3em;
	color: #141414;
	cursor: pointer;
}

.qa-007 summary::before,
.qa-007 p::before {
	position: absolute;
	left: 1em;
	font-weight: 600;
	font-size: 1.3em;
}

.qa-007 summary::before {
	color: #75bbff;
	content: "Q";
}

.qa-007 summary::after {
	transform: translateY(-25%) rotate(45deg);
	width: 7px;
	height: 7px;
	margin-left: 10px;
	border-bottom: 3px solid #141414b3;
	border-right: 3px solid #141414b3;
	content: '';
	transition: transform .5s;
}

.qa-007[open] summary::after {
	transform: rotate(225deg);
}

.qa-007 p {
	position: relative;
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: .3em 3em 1.5em;
	color: #333;
	transition: transform .5s, opacity .5s;
}

.qa-007[open] p {
	transform: none;
	opacity: 1;
}

.qa-007 p::before {
	color: #ff8d8d;
	line-height: 1.2;
	content: "A";
}
/*よくある質問ここまで*/

/*診療案内ここから*/
.box8 h2 {
	text-align: center;
	padding: 60px 0 80px;
	font-weight: 500;
}
.box9 {
	display: flex;
	justify-content: space-evenly;
}
.box10 {
	padding-left: 60px;
}
.box10 h3 {
	font-size: 16px;
	background-color: #B5A088;
	color: #fff;
	border-radius: 5px;
	display: inline-block;
	padding: 5px 15px;
	margin: 0 30px 15px 0;
}
.box10 p {
	padding-top: 10px;
}
.box10 .box7 {
	margin-top: 50px;
}
.box11 {
	width: 40%;
}
/*診療案内ここまで*/


/*フッターここから*/
footer {
	background-color: #64584B;
	color: #fff;
	padding: 20px 40px 20px 70px;
	margin-top: 150px;
}
.box12 {
	display: flex;
	align-items: center;
	margin-top: 30px;
}
.box12 img {
	width: 18%;
}
.box13 {
	padding-bottom: 5px;
}
.box13 .text3 {
	font-size: 26px;
	letter-spacing: 0.1em;
	font-weight: lighter;
}
.box13 .text4 {
	font-family: 'Tiro Kannada', serif;
	font-size: 14px;
	text-align: center;
	letter-spacing: 0.1em;
}
.box14 address {
	font-size: 12px;
}
.box14 {
	width: 33%;
	padding-top: 10px;
}
.text5 {
	font-family: 'Jost', sans-serif;
	font-weight: bold;
	font-size: 10px;
	letter-spacing: .15rem;
	padding-top: 20px;
	text-align: center;
}
.box15{
	display: flex;
	padding-top: 20px;
}
.text8 {
	font-size: 14px;
	font-weight: 300;
	letter-spacing: .15rem;
	margin: 10px 0 20px 30px;
}
.text6 {
	font-family: 'Jost', sans-serif;
	font-weight: bold;
	font-size: 25px;
	letter-spacing: 0.2rem;
	padding-left: 5px;
}
.text7 {
	font-family:'Zen Maru Gothic', sans-serif;
	padding-top: 5px;
}
.box17 {
	display:flex;
	flex-flow: column;
	justify-content:space-between;
}
.box17 a {
	color: #fff;
}
.box17 a:hover {
	color: #b6b6b6b3;
}
.fa-brands {
	font-size: 48px;
	padding-left: 15px;
}
.box18 {
	padding-right: 40px;
}
.box19 {
	display: flex;
	justify-content: space-evenly;
}
.box20 {
	display: flex;
	align-items: center;
}
.box20 nav {
	border-left: 1px solid #fff;
	padding-right: 20px;
}
.box20 nav ul li {
	padding-bottom: 10px;
}
.box20 nav ul li a {
	padding-left: 15px;
}
.box20 nav ul li a {
	color: #fff;
}
.box20 nav ul li a:hover {
	color: #b6b6b6b3;
}

/*フッターここまで*/



/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
	/*テキストの形状*/
	display: flex;
	justify-content:center;
	align-items:center;
	width: 60px;
	height: 60px;
	text-transform: uppercase; 
	font-size:0.6rem;
	transition:all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 100px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*上に上がる動き*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*下に下がる動き*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}


/*Scrollテキストの描写*/
#page-top span{
	/*描画位置*/
left:-20px;
bottom:10px;
	/*テキストの形状*/
color: #141414;
font-size: 0.7rem;
letter-spacing: 0.05em;
/*縦書き設定*/
-ms-writing-mode: tb-rl;
-webkit-writing-mode: vertical-rl;
writing-mode: vertical-rl;
}

/* 矢印の描写 */
#page-top:before {
	content: "";
	/*描画位置*/
	position: absolute;
	top: -10px;
	right: -1px;
	/*矢印の形状*/
	width: 1px;
	height: 20px;
	background: #141414;
	transform: skewX(31deg);
}

#page-top:after{
content:"";
	/*描画位置*/
position: absolute;
bottom:0;
right: 5px;
	/*矢印の形状*/
width:1px;
height: 70px;
background: #141414;;
}


/* reserved.htmlここから */
#PC_menu2 {
	width: 100%;
	height: 12vh;
	left: 0;
	padding: 0;
	display: flex;
	justify-content: space-between;
	position: fixed;
	z-index: 100;
	box-shadow: 0 5px 10px -6px rgba(0,0,0,.1);
	align-items: center;
}
.box22 {
	width: 20%;
}
.box22 img {
	padding: 8px 0 8px 15px;
}
#PC_menu2 ul {
	display: flex;
	align-items: center;
	margin-right: 40px;
}
#PC_menu2 ul li {
	padding-left: 20px;
	padding-right: 20px;
}
.sample + .sample {    
  border-left: 1px solid #A49D9D;
}
#PC_menu2 ul li a:hover {
	color: darkred;
}
.box23 {
	background-image: url(../img/IMG_6139.JPG);
	height: 50vh;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 100% 130%;
	margin: 20px 50px;

}
/* パンくずリスト */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
	margin-left: 60px;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 .6em; /* 記号の左右の余白 */
  color: #777; /* 記号の色 */
}

.text9 {
	text-align: center;
	margin: 40px 0;
}

.box24 {
	font-family:'Zen Maru Gothic', sans-serif;
	background-color: #C7B299;
	margin: 40px 120px;
	padding: 60px 90px;
	color: #fff;
}
.box25 {
	display: flex;
	justify-content: space-between;
	padding-top: 20px;
}
.box25 h3 {
	font-size: 22px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 300;
}
.box26 {
	display: flex;
	background-color: #fff;
	align-items: center;
	padding: 20px;
	border-radius: 15px;
	color: #141414;
	justify-content: space-evenly;
}
.box26 p {
	padding: 0 10px;
}

.hr2 {
	border-top: 1px dotted #fff;
	width: 100%;
	margin: 60px auto;
}
.box26:hover {
	transform: scale(1.1);
}
.box26 span {
	font-size: 10px;
}
.text12 {
	padding-top: 20px;
}
/* reserved.htmlここまで */
.text10 {
	float: right;
	font-size: 14px;
	padding-top: 24px;
}
.text11 {
	line-height: 2rem;
	padding-top: 20px;
}
/* contact.htmlここから */

.box28 {
	display: flex;
	justify-content: space-between;
	border: 2px solid #B5A088;
  box-shadow: 10px 10px #B5A088;
	margin: 40px 170px;
	align-items: center;
}
.box28 p {
	padding: 10px 40px;
	font-size: 18px;
}
.box29 {
	text-align: center;
	margin: 100px 120px;
}
.box29 p {
	width: 60%;
	margin: 0 auto;
} 

/* contact.htmlここまで */


/* access.htmlここから */

.box30 {
	display: flex;
	justify-content: space-between;
	margin: 100px 180px;
}
.box31 h2 {
	background-color: #B5A088;
	color: #fff;
	font-size: 18px;
	padding: 10px;
	border-radius: 50px;
	text-align: center;
	margin-bottom: 10px;
}
.box31 p {
	padding-left: 20px;
	margin-bottom: 40px;
	line-height: 1.5rem;
}
/* access.htmlここまで */


/* form.htmlここから */

.box33 {
	font-family: 'Zen Maru Gothic', sans-serif;
    background-color: #C7B299;
    margin: 40px 180px;
    padding: 60px 100px;
    color: #fff;
	border-radius: 70px 0px 70px 0px;
}
.box33 h1 {
	font-family: 'Noto Serif JP', serif;
	margin-bottom: 20px;
	border-bottom: 1px solid #64584B;
	padding-bottom: 5px;
}
form {
	margin-top:20px;
}
input[type="text"] {
	width: 420px;
}
input[type="tel"] {
	width: 420px;
}
input[type="email"] {
	width: 420px;
}

input[type="submit"] {
	font-family: 'Zen Maru Gothic', sans-serif;
	width: 150px;
	background-color: #64584B;
	color:#fff;
	padding: 10px 0;
}

/* form.htmlここまで */





/*beginner.htmlここから*/



.box34 {
    background-color: #C7B299;
    margin: 40px 120px;
    padding: 60px 100px;
    color: #fff;
}
.box35 {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.box34 h3 {
	font-size: 20px;
	font-weight: 500;
	border-bottom: 1px dotted #64584B;
	margin-bottom: 25px;
	padding-bottom: 10px;
}
.box35 p {
	font-family: 'Zen Maru Gothic', sans-serif;
	margin-right: 50x;
	padding-right: 50px;
}
.box35 img {
	width: 320px;
	box-shadow: 0px 0px 8px 0px #575757;
	border-radius: 15px;
}

.parallax {
	background-attachment: fixed;
}


/*beginner.htmlここまで*/




  .contact-form {
    padding: 20px 250px;
  }


  .contact__form-box {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #3e3e3e;
    line-height: 22.5px;
    margin-bottom: 41px;
  }


  .contact__form-box span {
    font-size: 12px;
    color: white;
    font-weight: normal;
    padding: 4px 8px 4px;
    background-color: #ff4646;
    border-radius: 5px;
  }


  .contact__form-box dt {
    width: 195px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 80px;
  }


  .contact__form-box .contact-1 {
    width: 505px;
    color: #707070;
  }

.contact__form-box .contact-1 input[type="text"]:focus, .contact__form-box .contact-1 input[type="email"]:focus {
  border-bottom: 2px solid #4973FF;
  outline: none;
}


  .contact__form-box .contact-1 input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #707070;
    font-size: 14px;
    line-height: 22.5px;
    height: 40px;
	padding-left: 5px;
}

select:focus {
  outline: none;
  border: 1px solid #4973FF;
}


  select {
    width: 261px;
	padding: 5px 0 5px 5px;
    font-size: 14px;
    line-height: 22.5px;
    color: #707070;
  }

.contact__radio {
  position: relative;
}


  .contact__radio {
    margin-right: 80px;
  }

.contact__radio input {
  display: none;
}

  .contact__radio input {
    width: 10px;
    margin-right: 15px;
  }

  .contact__radio label {
    padding-left: 30px;
  }

.contact__radio label:after {
  content: "";
  display: inline-block;
  border: 1px solid #3E3E3E;
  border-radius: 50%;
  padding: 5px;
  position: relative;
  left: -70px;
}

.contact__radio label:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #4973Ff;
  border-radius: 50%;
}


  .contact__radio label:before {
    position: relative;
    left: -16px;
    top: -2px;
    opacity: 0;
  }

.contact__radio input[type=radio]:hover + label:after {
  border: 1px solid #4973FF;
  cursor: pointer;
}

.contact__radio input[type=radio]:checked + label:before {
  opacity: 1;
}

.content-2 {
  display: flex;
}


  .contact__form-box1 dt {
    font-size: 16px;
    line-height: 22.5px;
    font-weight: normal;
    color: #3e3e3e;
    margin-bottom: 10px;
  }

.contact__form-box1 textarea {
  width: 100%;
  outline: none;
}

.contact__form-box1 textarea:focus {
  border: 1px solid #4973FF;
}

.contact__form-box2 {
  margin-top: 30px;
}


  .contact__form-box2 {
    display: flex;
    align-items: center;
	justify-content: center;
  }

.contact__form-box2 input {
  display: none;
}

.contact__form-box2 label {
  padding-left: 40px;
}


  .contact__form-box2 label {
    font-size: 14px;
    line-height: 22.5px;
    color: #3e3e3e;
  }

.contact__form-box2 label:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #3E3E3E;
  position: relative;
  top: -22px;
  left: -35px;
}

.contact__form-box2 label:before {
  opacity: 0;
  content: "";
  display: inline-block;
  width: 7px;
  height: 15px;
  border-right: 4px solid #4973FF;
  border-bottom: 4px solid #4973FF;
  transform: rotate(45deg);
  position: relative;
  top: -1px;
  left: -28px;
}

.contact__form-box2 input[type=checkbox]:checked + label:before {
  opacity: 1;
}

.contact__form-box2 input[type=checkbox]:hover + label:after {
  border: 1px solid #4973FF;
  cursor: pointer;
}

.contact-btn {
  margin-top: 30px;
  text-align: center;
}

.contact-btn a:hover {
  background-color: #ff9e1f;
}


  .contact-btn a {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.45px;
    font-weight: bold;
    color: white;
    background-color: #ffaa3b;
    border-radius: 10px;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    padding: 14px 50px;
  }




