/*
Theme Name: nozaki
Version: 1.0
*/


/* CSSリセット */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
p {
  margin: 0px;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
	background:#fff;
}


.mincho {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 500;
}


.container{
	width:91.48%;
}


.sp {
  display: none;
}


@media (max-width:780px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/*下層共通パーツ*/
.page-sec-ttl {
  font-family: 'Zen Old Mincho', serif;
  font-weight: 700;
}

/* ------------------ */
/* ヘッダー */
/* ------------------ */
header {
  width: 100%;
  position: fixed;
  top: 32px;
  z-index: 99999999;
  transition: top 0.6s ease, opacity 0.4s ease;
  display: flex;
  justify-content: center;
}




header.pc {
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

header.pc.show {
  transform: translateY(0);
  opacity: 1;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  margin: auto;
  align-items: center;
  max-width: 1286px;
  width: 100%;
  margin: auto;
  max-height: 82px;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 60px;
}

.header-flex .left {
  width: 15%;
  max-width: 146px;
}

.header-flex .left img {
  width: 100%;
}

.header-flex .right {
  width: 88%;
  max-width: 997px;
}

.header-flex .right nav {
  width: 100%;
}


.header-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0px;
  margin: 0px;
  gap: 0px 28px;
}

.header-menu li {
  list-style: none;
}

.header-menu li a {
  text-decoration: none;
  color: #0152A4;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  padding:10px 2px;
	height:100%;
	width:100%;
	display:block;
}

.head-tel {
  margin-left: 22px;
  margin-right: 16px;
  text-align: left;
}

.header-menu li.head-tel a {
  padding-left: 1em;
  min-width: 140px;
  display: block;
}

.head-tel a svg {
  margin-right: 3px;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
}

.head-link-btn {
  border-radius: 70px;
  border: 1px solid #0152A4;
  text-align: center;
  padding: 0px 0px;
  min-width: 195px;
}

.head-reserve-btn {
  margin-left: -20px;
}

.parent {
  position: relative;
}

.parent svg {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -5px;
}

/* サブメニューの初期状態：非表示 */
.sub-menu {
  display: none;
  position: absolute;
  top: 180%;
  left: 50%;
  transform: translateX(-50%);
  background: #0152A4;
  z-index: 999;
  padding: 8px 16px;
  min-width: 186px;
  border-radius: 4px;
}

/*隙間対策*/
.parent::before {
  content: "";
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  height:60px;
  background: transparent;
  pointer-events: auto;
}

/* サブメニューの各リンク */
.sub-menu li a {
  display: block;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 0px;
  border-bottom: 1px dashed #fff;
}

.sub-menu li:last-child a {
  border-bottom: none;
}

/* hoverでsubmenu表示 */
.parent:hover .sub-menu {
  display: block;
}

/*メガメニュー*/
.mega-menu .sub-menu {
  background: #0152A4;
  width: 620px;
  padding: 16px 16px;
  transform: translateX(-50%);
}

.mega-menu-inner {
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0px;
  justify-content: space-between;
}

.mega-menu-inner li {
  width: 25%;
  max-width: 135px;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}

.mega-menu-inner li a {
  display: block;
  color: #333;
  text-decoration: none;
  border-bottom: none;
  padding: 8px;
  padding-bottom: 10px;
}

.mega-menu-inner li img {
  width: 100%;
  max-width: 119px;
  height: 75px;
  transition: transform 0.3s ease;
  margin-bottom: 8px;
}

.mega-menu-inner li span {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #0152A4;
}

@media (max-width:1400px) {
  .head-tel {
    margin: 0px;
  }

  .head-link-btn {
    min-width: 160px;
  }
}

@media (max-width:1280px) {
  .header-flex {
    margin: 0px 30px;
    padding: 16px 16px;
  }

  .header-menu {
    gap: 0px 16px;
    font-size: 14px;
  }

  .header-menu li.head-tel a {
    min-width: inherit;
    padding-left: 17px;
  }

  .head-reserve-btn {
    margin: 0px;
  }

  .head-link-btn {
    min-width: 140px;
  }
}

/*Page-FV*/
.page-fv-sec {
  height: 583px;
  background: url('/wp-content/themes/nozaki/img/prevention/prevention-fv.jpg');
  background-size: cover;
  position: relative;
}

.page-fv-sec:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 82, 164, 0.60);
}

.page-ttl {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 36px;
  font-family: 'Lato', sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-ttl .ja {
  display: block;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 8px;
  letter-spacing: 0.08em;
}

@media (max-width:1024px){
	.page-fv-sec{
		height:350px;
	}
	.container.pc-only{
		display:none;
	}
}

@media (max-width:600px){
	.page-fv-sec{
		height:260px;
	}
	.page-ttl{
		font-size:20px;
	}
	.page-ttl .ja{
		font-size:14px;
	}
}

/*TOP-fv*/
.fv-sec{
	height:100lvh;
	background:url("/wp-content/themes/nozaki/img/top/fv-pc.jpg");
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	position:relative;
}
.fv-sec .container{
	max-width:1200px;
	margin:auto;
	padding:60px 0px;
	text-align:center;
}

.fv-sec h1 img{
	max-width:360px;
	margin:auto;
	display:block;
}

.fv-text{
	position:absolute;
	top:50%;
	transform:translateY(-50%);
	left:0;
	right:0;
	margin:auto;
	font-size:48px;
	color:#fff;
	font-family:"Noto serif jp",serif;
	font-weight:bold;
	line-height:1.8;
}

.top-head-contact{
	position:absolute;
	top:26px;
	right:48px;
	display:flex;
	flex-direction:column;
	gap:8px 0px;
}
.top-head-contact a{
	width:100%;
	color:#fff;
	text-decoration:none;
	text-align:center;
}
.top-head-contact a span{
	display:block;
	font-size:14px;
	text-align:center;
}
.top-head-contact a span.num{
	font-size:22px;
}
.top-head-contact a span.num svg{
	margin-right:5px;
}
.top-head-contact a:nth-child(2){
	display:flex;
	align-items:center;
	justify-content:center;
	gap:0px 5px;
	font-size:24px;
	font-weight:bold;
	line-height:39px;
	border-top:1px solid #fff;
	padding-top:8px;
}

.top-head-contact a:nth-child(2) img{
	max-width:43px;
}

.top-head-link-flex{
	position:absolute;
	right:30px;
	bottom:21px;
	display:flex;
	justify-content:space-between;
	max-width:400px;
	width:100%;
}
.top-head-link-flex a{
	width:192px;
	height:122px;
	display:block;
	color:#fff;
	text-decoration:none;
	text-align:center;
	background:rgba(0,82,164,0.8);
	display:flex;
	align-items:center;
	justify-content:center;
	border:2px solid #fff;
	font-size:18px;
	border-radius:10px;
	font-weight:bold;
}

@media (max-width:900px){
	.fv-sec .container{
		padding:40px 0px;
	}
	
	.fv-sec h1 img{
		max-width:240px;
		margin:0;
	}
	.fv-text{
		font-size:28px;
	}
}

@media (max-width:600px){
	.fv-sec{
		background:url("/wp-content/themes/nozaki/img/top/fv-sp.jpg");
		background-size:cover;
		background-position:bottom;
	}
	
		.fv-sec .container{
		padding:10px 0px;
	}
	
	.top-head-contact{
		display:none;
	}
		.fv-sec h1 img{
		max-width:180px;
	}
	.fv-text{
		font-size:24px;
		letter-spacing:0.03em;
		line-height:40px;
		text-align:left;
		top:65%;
		left:10px;
	}
	.fv-text p{
		margin-bottom:2em;
	}
	.top-head-link-flex{
		display:none;
	}
}


/*schedule-sec*/
.schedule-sec {
  background: #E3EFFF;
  width: 100%;
  margin: auto;
  padding-top: 76px;
  padding-bottom: 66px;
}

.schedule-sec .container {
  max-width: 1031px;
  margin: auto;
  width: 90%;
}

.schedule-sec h2 {
  color: #0052A4;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.schedule-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: auto;
  margin-top: 43px;
  margin-bottom: 37px;
}

.left-box,
.right-box {
  max-width: 500px;
  width: 49%;
}

.schedule-sec h3 {
  width: 100%;
  border-radius: 20px 20px 0px 0px;
  background: #0052A4;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
  color: white;
  font-size: 27px;
  text-align: center;
  line-height: 42px;
  font-weight: 700;
  padding-top: 19px;
  padding-bottom: 15px;
}

.schedule-left-time,
.schedule-right-time {
  width: 100%;
  border-radius: 0px 0px 20px 20px;
  background: #FFF;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 26px;
  padding-bottom: 29px;
}

.schedule-left-time p,
.schedule-right-time p {
  color: #000;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-weight: 600;
  line-height: 42px;
}

.schedule-bottom-text {
  color: #000;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 42px;
}

@media (max-width:780px) {
  .schedule-flex {
    flex-wrap: wrap;
    gap: 20px 0px;
    justify-content: center;
  }

  .left-box,
  .right-box {
    width: 100%;
  }

  .schedule-sec h3 {
    font-size: 24px;
  }

}

@media (max-width:600px) {
  .schedule-sec {
    padding-top: 40px;
    padding-bottom: 66px;
  }

  .left,
  .right {
    color: #FFF;
    text-align: center;
    font-family: "Hiragino Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .schedule-sec h2 {
    font-size: 24px;
    line-height: normal;
  }

  .schedule-flex {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .schedule-left-time,
  .schedule-right-time {
    font-size: 13.486px;
    line-height: 28.321px;
    padding-top: 17.53px;
    padding-bottom: 18.88px;
  }

  .schedule-sec h3 {
    font-size: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .schedule-bottom-text {
    font-size: 15px;
    line-height: normal;
    text-align: left;

  }

}

/*banner-sec*/
.banner-sec {
  width: 100%;
  margin: auto;
  background-image: url("/wp-content/themes/nozaki/img/top/banner-sec-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  padding-top: 72px;
  padding-bottom: 80px;
}

.banner-sec .container {
	max-width:1200px;
  margin: auto;
  width: 90%;
}

.banner-sec p {
  color: #000;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 42px;
}

.banner-flex {
	width:100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 46px;
}

.banner-flex a {
  width: 32%;
  max-width: 500px;
}

.banner-flex img {
  width: 100%;
  margin: auto;
  object-fit: contain;
}


@media (max-width:780px) {
  .banner-flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 0px;
  }

  .banner-flex a {
    width: 100%;
  }
}

@media (max-width:600px) {

  .banner-sec p {
	  font-size:15px;
	  line-height:1.8;
  }
	.banner-flex{
		margin-top:16px;
	}

  .banner-sec {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/*first-visit-sec*/
.first-visit-sec {
  width: 100%;
  margin: auto;
  background: #E3EFFF;
  padding-top: 80px;
  padding-bottom: 100px;
}

.first-visit-wrap {
  max-width: 1100px;
  margin: auto;
  width: 90%;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
  padding-top: 56px;
  padding-bottom: 60px;
}

.text-visit-wrap {
  max-width: 91.82%;
  margin: auto;

}

.text-visit-wrap h2 {
  color: #0052A4;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 36px;
}

.text-visit-wrap p {
  color: #000;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-weight: 300;
line-height:2;
}

.first-visit-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 798px;
  margin: auto;
	margin-top:40px;
}

.first-visit-box {
  max-width: 214px;
}


.first-visit-box img {
  width: 100%;
  max-width: 214px;
  border-radius: 50%;
  object-fit: contain;
  border-radius: 100px;
}

.first-visit-box span {
  color: #0052A4;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-weight: 700;
  line-height: 42px;
  display: block;
  white-space: nowrap;
  margin-top: 10px;
  text-align: center;
}

.first-visit-middle-text {
  color: #000;
  margin: auto;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  padding-top: 44px;
  padding-bottom: 60px;
}

.first-visit-decay-wrap {
  max-width: 781px;
  margin: auto;
  position: relative;
  border-radius: 20px;
  border: 2px solid #FFA740;
  background: #FFF;
	padding:32px 3%;
	padding-top:48px;
}

.first-visit-decay-wrap h3 {
  color: #FFF;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-weight: 700;
  line-height: 42px;
  position: absolute;
  left: 0;
  right: 0;
  max-width: 363px;
  margin: auto;
  top: -25px;
  padding-top: 7px;
  padding-bottom: 1px;
  border-radius: 50px;
  background: #FFA741;
}

.first-visit-decay-wrap p {
  color: #000;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px;
}

.first-visit-decay-wrap p span {
  color: #E20000;
  font-family: "Hiragino Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 27px;
}

.first-visit-request {
  max-width: 781px;
  margin: auto;
  margin-top: 48px;
  padding-bottom: 100px;
}

.request-box {
  border-radius: 20px 20px 0px 0px;
  background: #0052A4;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
}

.request-box h3 {
  color: #FFF;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 1px;
  padding-top: 12px;
  padding-bottom: 6px;
}

.request-box-text {;
  border-radius: 0px 0px 20px 20px;
  border: 2px solid #0152A4;
  background: #FFF;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
	padding:26px 3%;
}

.request-box-text p {
  color: #000;
  font-family: "Hiragino Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
	margin-bottom:1.8em;
	line-height:1.8;
}

.request-box p:last-child {
  margin-bottom: 0px;
}

@media (max-width:1024px){
	.first-visit-flex{
		flex-wrap:wrap;
		justify-content:center;
		align-items:flex-start;
		gap:24px;
	}
	.first-visit-box span{
		line-height:1.5;
	}
}



@media (max-width:600px) {
  .first-visit-sec {
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .first-visit-wrap {
    padding-top: 40px;
    padding-bottom: 30px;
	  border-radius:8px;
  }

  .text-visit-wrap h2 {
    font-size: 20px;
    line-height: 21.703px;
  }

  .text-visit-wrap p {
    font-size: 15px;
    font-weight: 300;
    line-height: normal;
    text-align: left;
	  padding:0;
	  margin-top:32px;
	  line-height:1.8;
  }

  .first-visit-flex {
    max-width: 90%;
    margin: auto;
    flex-wrap: wrap;
	 margin-top:32px;
  }

  .first-visit-box {
    max-width: 100%;
    display: flex;
    gap: 0px 19px;
    align-items: center;
    width: 100%;
  }


  .first-visit-box img {
    width: 100px;
    height: 100px;

  }


  .first-visit-box img:last-child {
    padding-bottom: 0px;
  }

  .first-visit-box span {
    font-size: 18px;
    text-align: left;
    line-height: normal;

  }

  .first-visit-middle-text {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    padding-top: 49px;
  }

  .first-visit-decay-wrap {
    border-radius: 8px;
	margin-top:48px;
  }

  .first-visit-decay-wrap h3 {
    font-size: 18px;
    line-height: 28.165px;
	  top:-20px;
	  width:90%;
	  line-height:1.5;
	  padding:8px 0px;
  }

  .first-visit-decay-wrap p {
    color: #000;
    font-family: "Hiragino Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
	  line-height:1.8;
    text-align: left;
	  margin-top:0;
  }

  .first-visit-decay-wrap p span {
    font-size: 14px;
    line-height: 24px;
  }

  .first-visit-request {
    margin: auto;
    margin-top: 26px;
	  padding-bottom:0;
  }
	
	.request-box{
		border-radius:8px 8px 0px 0px;
	}
	.request-box-text{
		border-radius:0px 0px 8px 8px;
	}

  .request-box h3 {
    font-size: 20px;
    letter-spacing: 0.8px;
	  padding:10px 0px;
  }

  .request-box-text p {
    font-size: 14px;
	  margin-top:0;
  }
	.request-box-text p:last-child{
		margin-bottom:0;
	}
}

/*pillars-sec*/
.pillars-sec {
  background: #FAF9F7;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 108px;
  padding-bottom: 98px;
  text-align: center;
}


.pillars-sec .container {
  max-width: 1410px;
  margin: auto;
  width: 100%;
  text-align: center;
}

.pillars-img-wrap {
  position: relative;
}

.pillars-img-wrap:before {
  content: "";
  position: absolute;
  left: 61px;
  width: 10px;
  height: 120%;
  background: #FFA740;
  bottom: -90%;
}

.pillars-img-wrap:after {
  content: "";
  position: absolute;
  right: 61px;
  width: 10px;
  height: 120%;
  background: #0152A4;
  bottom: -90%;
}

.pillars-img-wrap img {
  width: 100%;
}

.pillars-text-wrap {
  margin-top: 58px;
}

.pillars-sec h2 {
  color: #0152A4;
  text-align: center;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.24);
  font-family: "Noto Serif JP";
  font-size: 40px;
  font-weight: 700;
  line-height: 80px;
  margin-bottom: 32px;
}

.pillars-sec h2 .big{
	font-size:48px;
}

.pillars-sec p {
  color: #000;
  font-family: "Noto Serif JP";
  font-size: 24px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 1.2px;
  text-align: center;
  display: inline-block;
  text-align: left;
}

.pillars-sec p span {
  color: #0052A5;
  font-family: "Noto Serif JP";
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 1.7px;
}

@media (max-width:1410px) {
  .pillars-img-wrap:before {
    left: 4.33%;
    width: 7px;
  }

  .pillars-img-wrap:after {
    right: 4.33%;
    width: 7px;
  }
}

@media (max-width:1280px) {
  .pillars-text-wrap {
    margin-top: 30px;
  }

  .pillars-text-wrap h2 {
    font-size: 32px;
    line-height: 2;
    margin-bottom: 24px;
  }

  .pillars-sec p {
    font-size: 18px;
    line-height: 3;
  }

  .pillars-sec p span {
    font-size: 28px;
    line-height: 1;
  }
}

@media (max-width:1024px) {
  .pillars-text-wrap h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .pillars-text-wrap p {
    font-size: 16px;
    line-height: 2.6;
  }

  .pillars-text-wrap span {
    font-size: 24px;
  }
}

@media (max-width:780px) {

  .pillars-img-wrap:before,
  .pillars-img-wrap:after {
    display: none;
  }
}

@media (max-width:600px) {
	.pillars-sec{
		padding-top:0;
		padding-bottom:60px;
	}
	.pillars-text-wrap{
		width:90%;
		margin:auto;
		margin-top:24px;
	}
	
  .pillars-text-wrap h2 {
    font-size: 18px;
	  line-height:2;
  }
	
	.pillars-sec h2 .big,
	.pillars-sec h2 .sp-big{
		font-size:24px;
	}
	

  .pillars-text-wrap p {
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.8px;
  }

  .pillars-text-wrap p span {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 1px;
  }
}

/*gbt-sec*/
.gbt-sec {
  margin: auto;
  background: #E3EFFF;
  padding-top: 77px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gbt-sec .container {
  max-width: 1025px;
  margin: auto;
  width: 90%;
}

.gbt-sec h2 {
  color: #0152A4;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 80px;

}

.first-gbt-flex {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.first-gbt-left {
  margin-top: 50px;
}

.second-gbt-right {
  margin-top: 79px;
}

.first-gbt-left img {
  max-width: 489px;
  margin: auto;
  width: 100%;

}

.second-gbt-right p {
  color: #000;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  padding-bottom: 38px;
}

.second-gbt-right span {
  color: #000;
  font-family: "Hiragino Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
}

.second-gbt-right img {
  max-width: 475px;
  margin: auto;
  width: 90%;
}

.second-gbt-right a{
	display:block;
	max-width:280px;
	margin-top:30px;
	color:#fff;
	font-weight:bold;
	text-align:center;
	padding:20px 0px;
	background:#0152A4;
	border-radius:10px;
	text-decoration:none;
}


@media (max-width:780px){
	.gbt-sec h2{
		font-size:28px;
		line-height:1.8;
	}
	
	.first-gbt-flex{
		flex-direction:column;
		align-items:center;
		gap:32px 0px;
		justify-content:center;
		margin-top:32px;
	}
	.first-gbt-left,
	.second-gbt-right{
		width:100%;
		margin-top:0;
	}
	.second-gbt-right a{
		margin:auto;
		margin-top:30px;
	}
}
@media (max-width:600px){
	.gbt-sec{
		padding:48px 0px;
	}
	
	.gbt-sec h2{
		font-size:22px;
	}
	.second-gbt-right img{
		width:100%;
	}
	.second-gbt-right p{
		padding-bottom:0;
		font-size:16px;
	}
	.second-gbt-right span{
		font-size:16px;
	}
}

/*menu-sec*/
.menu-sec {
  margin: auto;
  background: #FAF9F7;
  padding-top: 77px;
  padding-bottom: 87px;
}

.menu-sec .container {
  max-width: 1070px;
  margin: auto;
  width: 90%;
}

.menu-sec h2 {
  color: #0152A4;
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 48px;
  font-weight: 700;
  line-height: 80px;
}

.first-menu-flex {
  display: flex;
  justify-content: center;
  gap: 59px 50px;
  flex-wrap: wrap;
}

.first-menu-flex :last-child {
  margin-right: 0;
}


.menu-item {
  width: 25%;
  max-width: 230px;
  text-align: center;
  position: relative;
  margin-top: 50px;
	padding-bottom:60px;
}

.menu-item:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  background: url("/wp-content/themes/nozaki/img/top/menu-after-line.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.menu-item:nth-child(4):after,
.menu-item:last-child:after {
  display: none;
}

.menu-item img {
  margin: auto;
  width: 100%;
  border-radius: 10px;
}

.menu-item h3 {
  color: #000;
  font-family: "Hiragino Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  margin-top: 25px;
}

.menu-item p {
  color: #000;
  font-family: "Hiragino Sans", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  margin-top: 19px;
  text-align: left;
}


.menu-item a{
	text-decoration:none;
  display: block;
  margin: auto;
  border-radius: 25px;
  background: #0152A4;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
  color: #FFF;
  text-align: center;
  font-family: "Hiragino Sans";
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 1.4px;
	padding:7px 0px;
position:absolute;
	bottom:0;
	left:0;
	right:0;
	width:100%;
}

@media (max-width:1200px){
	.first-menu-flex{
		justify-content:flex-start;
		max-width:800px;
		margin:auto;
		gap:60px 5%;
		margin-top:48px;
	}
	.menu-item{
		max-width:100%;
		width:30%;
		margin:0;
	}
	.menu-item:after{
		right:-20px;
	}
	.menu-item:nth-child(3):after,
	.menu-item:nth-child(6):after,
	.menu-item:last-child:after {
		display: none;
	}
	.menu-item:nth-child(4):after{
		display:block;
	}
}

@media (max-width:768px){
	.menu-sec{
		padding:48px 0px;
	}
	
	.menu-sec h2{
		font-size:24px;
		line-height:1.5;
	}
	
	.first-menu-flex{
		flex-direction:column;
		justify-content:center;
		align-items:center;
		gap:40px 0px;
		margin-top:32px;
	}
	.menu-item {
		width:100%;
		max-width:300px;
	}
	
	.menu-item:after{
		display:none !important;
	}
	
	.menu-item h3{
		margin-top:8px;
	}
	.menu-item p{
		margin-top:8px;
	}
}


/*TOP-SLIDER*/
.top-scroll-infinity{
	margin-top:60px;
}

.top-scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.top-scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.top-scroll-infinity__list--left {
  animation: top-infinity-scroll-left 40s infinite linear 0.5s both;
	margin-right:35px;
}
.top-scroll-infinity__item {
  width:1675px;
	height:350px;
}
.top-scroll-infinity__item>img {
  width: 100%;
	height:100%;
	object-fit:contain;
}


@keyframes top-infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
@media (max-width:780px){
	.top-scroll-infinity__item {
  width:890px;
	height:186px;
}
}


/*footer*/
footer{
	padding-top:80px;
	padding-bottom:40px;
}

footer .container {
  max-width: 1080px;
  margin: auto;
}

.footer-logo {
  max-width: 396px;
  width: 100%;
  object-fit: contain;
}

.footer-flex {
  margin: auto;
  max-width: 1080px;
  margin-top: 41px;
  display: flex;
  justify-content: space-between;
}

.footer-flex .left {
  width: 55%;
  max-width: 650px;
}

.footer-flex .left img {
  width: 100%;
}

.footer-flex .left p {
  color: #454545;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
  padding-top: 8px;
}

.footer-flex-left-address-flex {
  display: flex;
  max-width: 479px;
  justify-content: space-between;
  align-items: center;
}

.footer-flex-left-address-left {
  width: 60%;
  max-width: 243px;
  padding-top: 12px;
}

.footer-flex-left-address-right {
  width: 40%;
  max-width: 203px;
  padding-top: 15px;
}

.footer-flex-left-address-right span {
  display: block;
  border-radius: 25px;
  background: #FFE160;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
  width: 100%;
  padding: 6px 0px;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 1.4px;
}

.footer-flex-left-btn-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 21px;
  width: 100%;
}

.footer-flex-left-btn-flex a {
  width: 290px;
  border-radius: 25px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
  text-align: center;
  font-size: 17px;
  font-style: normal;
  line-height: 37px;
  letter-spacing: 1.2px;
  text-decoration: none;
  padding: 6px 0px;
}

.footer-flex-left-btn-flex a.footer-tel-btn {
  background: #FAF9F7;
  color: #454545;
  font-weight: 300;
}

.footer-flex-left-btn-flex a.footer-tel-btn span {
  font-size: 12px;
}

.footer-flex-left-btn-flex a.footer-web-btn {
  background: #0152A4;
  color: #fff;
  font-weight: bold;
}

.footer-flex .right {
  width: 40%;
  max-width: 400px;
}

.footer-flex .right iframe {
  height: 100%;
	width:100%;
}


.footer-flex-second {
  display: flex;
  justify-content: space-between;
  margin-top: 68px;
}

.footer-flex-second-left {
  width: 55%;
  max-width: 624px;
}

.footer-flex-second-left iframe {
  width: 100%;
  height: 100%;
  max-height: 466px;
}

.footer-flex-second-right {
  width: 40%;
  max-width: 400px;
}

.footer-flex-second-right img {
  width: 100%;
	display:block;
}

.footer-flex-second-right a {
  display: block;
  width: 100%;
  margin-bottom: 18px;
}

.footer-flex-second-right a:last-child {
  margin-bottom: 0px;
}

.footer-flex-third {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
	margin-top:48px;
}

.footer-flex-third .left {
  display: flex;
  flex-wrap: wrap;
  max-width: 660px;
  width: 62.5%;
}

.footer-flex-third .left ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 0px 0.75em;
  margin-bottom: 15px;
}

.footer-flex-third .left ul:last-child {
  margin-bottom: 0px;
}

.footer-flex-third .left ul li {
  position: relative;
}

.footer-flex-third ul li:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  background: #454545;
  top: 50%;
  transform: translateY(-50%);
  right: -0.375em;
}

.footer-flex-third ul li:last-child::after {
  display: none;
}

.footer-flex-third .left ul li a {
  color: #454545;
  font-family: "Hiragino Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.footer-flex-third .right {
  max-width: 387px;
  width: 37.5%;
}

.copy-rights {
  display: block;
  color: #454545;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 600;
	line-height:1.8;
}

@media (max-width:780px){
	.footer-flex{
		flex-direction:column;
		align-items:center;
		gap:40px 0px;
	}
	.footer-flex .left,
	.footer-flex .right{
		width:100%;
		max-width:100%;
	}
	.footer-flex .right iframe{
		height:300px;
	}
}
@media (max-width:600px){
	footer{
		padding-top:48px;
	}
	
	.footer-flex-left-address-flex{
		max-width:100%;
		flex-direction:column;
		align-items:center;
	}
	
	.footer-flex-left-btn-flex{
		flex-direction:column;
		align-items:center;
		gap:24px;
	}
	
	.footer-flex-left-address-left{
		max-width:100%;
		width:100%;
	}
	
	.footer-flex-left-address-right{
		max-width:290px;
		width:100%;
	}
	
	.footer-flex-second{
		flex-direction:column;
		align-items:center;
		gap:24px;
	}
	.footer-flex-second-left,
	.footer-flex-second-right{
		width:100%;
		max-width:100%;
	}
	.footer-flex-second-left iframe{
		height:350px;
	}
	.footer-flex-third{
		flex-direction:column;
		gap:24px 0px;
		align-items:center;
	}
	.footer-flex-third .left,
	.footer-flex-third .right{
		width:100%;
		max-width:100%;
	}
	
	.footer-flex-third .left{
		display:flex;
		justify-content:space-between;
	}
	.footer-flex .left p{
		text-align:left;
	}
	
	.footer-flex-third .left ul{
		display:block;
		width:48%;
	}
	
	.footer-flex-third .left ul:last-child{
		display:flex;
		justify-content:center;
		width:100%;
	}
	.footer-flex-third .left ul:last-child li{
		font-size:13px;
	}
	
	.footer-flex-third .left ul li{
		display:block;
		text-align:left;
		line-height:1.8;
	}
	.footer-flex-third ul:first-child li:after,
	.footer-flex-third ul:nth-child(2) li:after{
		display:none;
	}
	.footer-flex-third .left ul li a{
		font-weight:400;
		font-size:14px;
	}
	.footer-flex-third .left ul li a:before{
		content:"・";
	}
	.footer-flex-third .left ul:last-child a:before{
		display:none;
	}
	
	.footer-flex-third ul li:nth-child(2):after{
		display:none;
	}
	
	.copy-rights{
		font-size:10px;
	}
}


/* ------------------ */
/* 予防歯科ページ */
/* ------------------ */

/*first-prevent-sec*/

.page-first-sec {
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

.page-first-sec .min-border-bg {
  position: absolute;
  left: 0;
  bottom: 309px;
  height: 37px;
  background: #E3EFFF;
  width: 100%;
  z-index: 0;
}

.page-first-sec .big-border-bg {
  position: absolute;
  left: 0;
  bottom: 0px;
  height: 194px;
  background: #E3EFFF;
  width: 100%;
  z-index: 0;
}

.page-first-wrap {
  max-width: 1070px;
  margin: auto;
  width: 90%;
  border-radius: 20px;
  background: #FFF;
  position: relative;
  z-index: 1;
  box-shadow: 8px 8px 0px #ABC5E7;
}

.page-first-text-wrap {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 51.59px;
}

.page-first-text-wrap h2 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 2.88px;
  margin-bottom: 24px;
}

.page-first-text-wrap p {
  color: #000;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.6px;
  margin-bottom: 1.5em;
}

.page-first-text-wrap p:last-child {
  margin-bottom: 0;
}

/*page-point-sec*/
.page-point-sec {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-point-sec .container {
  max-width: 1108px;
  width: 90%;
  margin: auto;
}

.page-point-sec h2 {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
  text-align: center;
  margin-bottom: 12px;
}

.point-top-text p {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}

.point-top-text p:last-child {
  margin-bottom: 0;
}

.point-block {
  max-width: 1080px;
  margin: auto;
  position: relative;
  margin-top: 60px;
  padding-bottom: 57px;
	width:91.48%;
}

.point-block .text {
  position: absolute;
  left: 0;
  bottom: 0px;
  background: #fff;
  box-shadow: -6px 6px 0 0 #ABC5E7;
  padding: 32px 0px;
  max-width: 543px;
  width: 100%;
  border-radius: 20px;
}

.point-label {
  position: absolute;
  left: -25px;
  top: -5px;
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-family: 'Lato', sans-serif;
  transform: rotate(-15deg);
  color: #ffa741;
}

.point-block-text {
  max-width: 459px;
  margin: auto;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-size: 16px;
  font-weight: 400;
}

.point-block-text h3 {
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.08em;
  margin: 0px;
  padding-bottom: 20px;
  border-bottom: 1px solid #B2B2B2;
  font-family: 'Zen Old Mincho', serif;
  color: #0152A4;
  margin-bottom: 24px;
}

.point-block-text p {
  margin: 0px;
  margin-bottom: 18px;
}

.point-block-text p:last-child {
  margin-bottom: 0;
}

.point-block-text ul {
  padding: 0px;
}

.point-block-text ul li {
  list-style: none;
  position: relative;
  margin-bottom: 6px;
  padding-left: 20px;
}

.point-block-text ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #0152A4;
  border-radius: 50%;
}

.point-block-text ul li:last-child {
  margin-bottom: 0;
}


.point-block .img {
  width: 100%;
  max-width: 677px;
  margin-left: auto;
}

.point-block img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.point-block.reverse {
  margin-top: 60px;
	padding-bottom:95px;
}

.point-block.reverse .img {
  margin-left: 0px;
}


.point-block.reverse .text {
  left: auto;
  right: 0;
  box-shadow: 6px 6px 0 0 #abc5e7;
}

/*ページごとに微調整*/
.point-block.reverse.prevention {
  padding-bottom: 85px;
}

.point-block.cavity {
  padding-bottom: 167px;
}

.point-block.reverse.cavity {
  padding-bottom: 70px;
}

.point-block.pediatric {
  padding-bottom: 167px;
}

.point-block.reverse.pediatric {
  padding-bottom: 42px;
}

/*medical-costs-sec*/
.medical-costs-sec {
  background: #FAF9F7;
  margin-top: 0px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.medical-costs-wrap {
  max-width: 1366px;
  margin: auto;
  width: 100%;
}

.medical-costs-wrap h2 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
  text-align: center;
}

.first-medical-costs-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 985px;
  width: 90%;
  margin: auto;
}

.first-medical-costs-flex .left {
  max-width: 507px;
  height: auto;
  width: 51%;
}

.first-text {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.6px;
  padding-top: 56px;
  padding-bottom: 24px;
}

.second-text-first,
.second-text-second {
  background: #FFA741;
  display: inline-block;
  margin-bottom: 4px;
}

.second-text-second {
  margin-bottom: 0px;
}

.second-text-first p,
.second-text-second p {
  color: #FAF9F7;
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.6px;
  padding: 0px 3px;

}

.first-medical-costs-flex .right {
  width: 49%;
  max-width: 447px;
  height: auto;

}

.first-medical-costs-flex .right P {
  display: flex;
  justify-content: center;
}

.first-medical-costs-flex .right img {
  width: 90%;
  height: auto;
  padding-top: 42px;
}

.third-text {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.6px;
  padding-top: 32px;
  padding-bottom: 47px;
}

.second-medical-costs-text p {
  color: #000;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.6px;
}


/*dental-cleaning-sec*/
.dental-cleaning-sec {
  background: url("/wp-content/themes/nozaki/img/prevention/cleaning-bg.png");
  background-size: cover;
}

.dental-cleaning-wrap {
  padding-top: 80px;
  max-width: 1366px;
  width: 90%;
  margin: auto;
}

.dental-cleaning-wrap h2 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
  text-align: center;
}

.dental-cleaning-wrap p {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.6px;
  text-align: center;
  padding-top: 12px;
}

.first-cleaning-flex {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.first-cleaning-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.first-cleaning-box img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  margin-top: 60px;
}

.first-cleaning-box span {
  color: #0152A4;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  line-height: 180%;
  letter-spacing: 1.6px;
  padding-top: 12px;
}

.dental-cleaning-text {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.6px;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
}

/*dental-approach-sec*/
.dental-approach-sec {
  padding-top: 80px;
  padding-bottom: 80px;
}

.dental-approach-container {
  max-width: 1366px;
  width: 90%;
  margin: auto;
}

.dental-approach-container h2 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
  text-align: center;
}

.dental-approach-flex {
  max-width: 1078px;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dental-approach-flex .left {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

.dental-approach-flex .right {
  flex: 1;
  max-width: 50%;
  text-align: right;
}

.dental-approach-flex .left span {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 180%;
  letter-spacing: 1.92px;
  max-width: 491px;
  width: 90%;
  margin: auto;
  padding-top: 60px;
}

.dental-approach-flex .left p {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.28px;
  max-width: 477px;
  margin-top: 58px;
}

.dental-approach-img {
  display: block;
  width: 90%;
  margin: 0 auto;
  height: auto;
  padding-top: 68px;
  padding-bottom: 145px;
}

/*airflow-advantages*/
.airflow-advantages-sec {
  background: #FAF9F7;
  padding-top: 80px;
  padding-bottom: 80px;
}

.airflow-advantages-container {
  max-width: 1079px;
  width: 90%;
  margin: auto;
}

.airflow-advantages-container h2 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
  text-align: center;
}

.airflow-advantages-flex {
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 60px;
}

.advantage-box {
  width: 33%;
  max-width: 339px;
  text-align: center;
  position: relative;
}

.advantage-box .num {
  position: absolute;
  top: -40px;
  left: 14px;
  color: #FFA741;
  font-family: Lato;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.8;
}

.advantage-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.advantage-box h3 {
  color: #0152A4;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.92px;
}

.advantage-box p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.28px;
  text-align: left;
}

/*airflow-recommend*/
.airflow-recommend-sec {
  background: #FAF9F7;
  padding-top: 60px;
  padding-bottom: 100px;
}

.airflow-recommend-container {
  max-width: 1097px;
  width: 90%;
  margin: auto;
}

.airflow-recommend-container h2 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 2.56px;
  text-align: center;
}

.airflow-recommend-container h2 svg{
	height:100%;
	position:relative;
	top:5px;
}

.airflow-recommend-flex {
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
gap:0px 24px;
}

.airflow-recommend-flex .left {
  width: 45%;
  max-width: 437px;
}

.airflow-recommend-flex img {
  width: 100%;
  height: auto;
}

.airflow-recommend-flex .right {
  width: 60%;
  max-width: 620px;
}

.airflow-recommend-flex ul {
  padding: 0px;
  margin: 0px;
}

.airflow-recommend-flex ul li {
  position: relative;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.08em;
  list-style: none;
  margin-bottom: 16px;
}

.airflow-recommend-flex ul li:last-child {
  margin-bottom: 0px;
}

.airflow-recommend-flex ul li::before {
  content: "●";
  font-size: 20px;
  color: #0152A4;
  margin-right: 12px;
}



/*airflow-benefits-sec*/
.airflow-benefits-sec {
  background: #E3EFFF;
  padding-top: 80px;
  padding-bottom: 80px;
}

.airflow-benefits-container {
  max-width: 1092px;
  margin: auto;
  width: 90%
}

.airflow-benefits-container h2 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
  text-align: center;
}

.airflow-benefits-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.airflow-benefits-box {
  width: 49%;
  max-width: 519px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #FFF;
  padding: 42px 40px;
  box-sizing: border-box;
  padding-top: 42px;
  padding-bottom: 40px;
  margin-top: 54px;
}

.airflow-benefits-box img {
  display: block;
  margin: auto;
  height: auto;
  width: 100%;
}

.airflow-benefits-box h3 {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.92px;
  text-align: center;
  padding-top: 24px;
}

.airflow-benefits-box p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 1.28px;
  padding-top: 24px;
  text-align: left;
}


/*warning-message*/
.warning-message-sec {
  padding-top: 80px;
  padding-bottom: 80px;
}

.warning-message-container {
  max-width: 1074px;
  width: 90%;
  margin: auto;
}

.warning-message-container h2 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 2.56px;
  text-align: center;
}

.warning-message-list {
  max-width: 1074px;
  width: 90%;
  margin: auto;
  padding-top: 60px;
}

.warning-message-list ul li {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.6px;
  list-style: none;
}

.warning-message-list ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #0152A4;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}


.warning-message-list ul li h3 {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.92px;
}

.warning-message-list ul li p {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.28px;
  padding-top: 8px;
  padding-bottom: 32px;
}

/*wrap-up*/
.wrap-up-sec {
  margin-top: 80px;
  padding-top: 91px;
  margin-bottom: 80px;
  position: relative;
}

.wrap-up-sec:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 404px;
  width: 61.27%;
  background: #E3EFFF;
  border-top-right-radius: 20px;
  z-index: 0;
}

.wrap-up-container {
  max-width: 1073px;
  width: 90%;
  margin: auto;
  border-radius: 20px;
  background: #fff;
  padding-top: 80px;
  padding-bottom: 52px;
  position: relative;
  z-index: 1;
  box-shadow: 8px 8px 0px 0px #ABC5E7;
}

.wrap-up-text-wrap {
  max-width: 873px;
  margin: auto;
}

.wrap-up-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 33px;
}

.wrap-up-flex .right img {
  width: 225px;
  height: auto;

}

.wrap-up-flex .left h2 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 180%;
  letter-spacing: 1.92px;
}

.wrap-up-text-wrap p {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-style: normal;
  line-height: 180%;
  letter-spacing: 1.28px;
  margin-bottom: 1.5em;
}

.wrap-up-text-wrap p.last {
  margin-bottom: 0;
}

@media (max-width:1024px){
	.page-first-sec{
		padding-top:80px;
	}
	
	.page-first-sec .min-border-bg{
		bottom:50%;
	}
	
	.page-first-text-wrap{
		padding:48px 0px;
	}
	.page-first-text-wrap h2{
		font-size:28px;
	}
	.page-point-sec h2{
		font-size:28px;
	}
	.point-top-text p{
		font-size:16px;
		margin-bottom:1.8em;
	}
	
	.point-block,
	.point-block.reverse{
		display:flex;
		flex-wrap:wrap;
		flex-direction:column;
		gap:32px 0px;
		padding-bottom:0;
	}
	
	.point-block .text,
	.point-block.reverse .text{
		position:relative;
		max-width:100%;
		border-radius:0px;
		background:none;
		order:2;
		box-shadow:none;
		padding:0;
	}
	
	.point-block-text{
		max-width:100%;
	}
	.point-label{
		transform:rotate(0deg);
		position:relative;
		top:0;
		left:0;
		margin:auto;
		display:block;
		line-height:1;
		margin-bottom:8px;
	}
	
	.point-block-text h3{
		margin-bottom:12px;
		padding-bottom:8px;
	}
	
	.point-block .img{
		position:relative;
		max-width:100%;
	}
	
	.medical-costs-sec{
		padding:60px 0px;
	}
	
	.medical-costs-wrap h2{
		font-size:28px;
	}
	.first-medical-costs-flex{
		flex-direction:column;
		align-items:center;
	}
	.first-medical-costs-flex .left,
	.first-medical-costs-flex .right{
		width:100%;
		max-width:100%;
	}
	.first-medical-costs-flex .third-text{
		padding-bottom:0;
	}
	.first-medical-costs-flex .right img{
		margin:auto;
		display:block;
		margin-bottom:32px;
	}
	.second-medical-costs-text p{
		max-width:91.48%;
		margin:auto;
		font-size:18px;
	}
	
	.dental-cleaning-sec{
		padding:60px 0px;
	}
	
	.dental-cleaning-wrap{
		padding:0;
	}
	
	.dental-cleaning-wrap h2{
		font-size:28px;
	}
	.dental-cleaning-wrap p{
		font-size:18px;
	}
	.first-cleaning-flex{
		flex-direction:column;
		gap:32px 0px;
		margin-top:48px;
	}
	.first-cleaning-box img{
		margin:0;
	}
	.dental-cleaning-text{
		padding:0;
		margin-top:24px;
	}
	.dental-approach-container h2{
		font-size:28px;
	}
	.dental-approach-flex{
		flex-direction:column;
		gap:32px 0px;
		align-items:center;
	}
	.dental-approach-flex .left,
	.dental-approach-flex .right{
		width:100%;
		max-width:100%;
	}
	.dental-approach-flex .left{
		order:2;
	}
	.dental-approach-img{
		padding:0;
	}
	.dental-approach-flex .right{
		margin-top:40px;
	}
	.dental-approach-flex .left span{
		padding:0;
		margin:0;
		max-width:100%;
	}
	.dental-approach-flex .left p{
		margin-top:24px;
		max-width:100%;
	}
	.airflow-advantages-sec{
		padding:60px 0px;
	}
	.airflow-advantages-sec h2{
		font-size:28px;
	}
	.airflow-advantages-flex{
		flex-direction:column;
		align-items:center;
		gap:60px 0px;
	}
	.advantage-box{
		max-width:100%;
		width:100%;
	}
	.advantage-box .num{
		left:0;
		top:-35px;
	}
	.advantage-box h3{
		margin:16px 0px;
	}
	.airflow-recommend-container h2{
		font-size:28px;
	}
	.airflow-recommend-flex{
		flex-direction:column;
		align-items:center;
		gap:32px 0px;
		margin-top:32px;
	}
	.airflow-recommend-flex .left,
	.airflow-recommend-flex .right{
		width:100%;
		max-width:100%;
	}
	.airflow-recommend-flex ul li{
		font-size:18px;
	}
	.airflow-recommend-flex ul li::before{
		font-size:18px;
	}
	
	.airflow-benefits-sec{
		padding:60px 0px;
	}
	
	.airflow-benefits-container h2{
		font-size:28px;
	}
	.airflow-benefits-flex{
		flex-direction:column;
		align-items:center;
		gap:40px 0px;
		margin-top:40px;
	}
	.airflow-benefits-box{
		width:100%;
		margin-top:0;
	}
	.warning-message-sec{
		padding:60px 0px;
		padding-bottom:0;
	}
	
	.warning-message-container h2{
		font-size:28px;
	}
	.warning-message-list{
		padding-top:0;
		margin-top:40px;
	}
	.wrap-up-sec{
		padding:60px 0px;
		margin-bottom:0;
		margin-top:32px;
	}
	.wrap-up-container{
		padding:40px 4%;
	}
	.wrap-up-flex{
		flex-direction:column;
		gap:24px 0px;
	}
	.wrap-up-flex .left h2{
		text-align:center;
	}
	.wrap-up-text-wrap p br{
		display:none;
	}
	
	.wrap-up-flex .right img{
		width:100%;
	}
}

@media (max-width:600px){
	.page-first-sec{
		padding:48px 0px;
	}
	.page-first-text-wrap{
		padding:32px 4%;
	}
	.page-first-text-wrap h2{
		font-size:24px;
	}
	.page-point-sec{
		padding:48px 0px;
	}
	.page-point-sec h2{
		font-size:24px;
	}
	.first-text{
		padding:0;
		margin-top:24px;
		font-size:18px;
		margin-bottom:24px;
	}
	.second-text-first, .second-text-second{
		margin-bottom:0;
	}
	.third-text{
		font-size:14px;
		text-align:left;
		padding-left:1.5em;
		text-indent:-1.5em;
	}
	.second-medical-costs-text p{
		text-align:left;
		font-size:16px;
	}
	.dental-cleaning-wrap h2{
		font-size:24px;
	}
	.dental-cleaning-wrap p{
		font-size:16px;
		text-align:left;
	}
	.first-cleaning-box span{
		font-size:18px;
	}
	.dental-approach-sec{
		padding:48px 0px;
	}
	.dental-approach-sec h2{
		font-size:24px;
	}
	.dental-approach-flex,
	.dental-approach-img{
		width:100%;
	}
	.dental-approach-flex .left span{
		font-size:18px;
	}
	.airflow-advantages-sec{
		padding:48px 0px;
	}
	.airflow-advantages-sec h2{
		font-size:24px;
	}
	.airflow-advantages-flex{
		padding-top:0;
		margin-top:40px;
	}
	.advantage-box h3{
		font-size:20px;
		margin:8px 0px;
	}
	.advantage-box p{
		font-size:15px;
	}
	.airflow-recommend-sec{
		padding:48px 0px;
	}
	.airflow-recommend-sec h2 svg{
		display:none;
	}
	.airflow-recommend-container h2{
		font-size:24px;
	}
	.airflow-recommend-flex ul li{
		font-size:14px;
		text-align:left;
		padding-left:1.5em;
		text-indent:-1.5em;
	}
	.airflow-recommend-flex ul li:before{
		font-size:14px;
		margin-right:5px;
	}
	.airflow-benefits-sec{
		padding:48px 0px;
	}
	.airflow-benefits-sec h2{
		font-size:24px;
	}
	
	.airflow-benefits-box{
		padding:32px 5%;
	}
	
	.airflow-benefits-box h3{
		margin-top:16px;
		padding:0;
		font-size:20px;
	}
	.airflow-benefits-box p{
		margin-top:8px;
		padding:0;
		font-size:15px;
	}
	.warning-message-sec{
		padding:48px 0px;
	}
	.warning-message-sec h2{
		font-size:24px;
	}
	.warning-message-list ul li{
		font-size:16px;
		line-height:1.8;
		margin-bottom:24px;
	}
	.warning-message-list ul li:before{
		margin-right:2.5px;
		position:relative;
		top:-1px;
		width:14px;
		height:14px;
	}
	.warning-message-list ul li p{
		padding:0;
		margin-top:8px;
		font-size:14px;
	}
	.wrap-up-sec{
		margin-top:0;
	}
	
	.wrap-up-container{
		padding-bottom:16px;
	}
	
	.wrap-up-flex .left h2{
		font-size:20px;
	}
}


/* ------------------ */
/* 虫歯治療ページ */
/* ------------------ */
/*page-first-wrap*/
.page-first-sec.cavity .page-first-text-wrap {
  padding-bottom: 60px;
}

/*.anesthesia-sec*/
.anesthesia-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #FAF9F7;
}

.anesthesia-sec .container {
  max-width: 1056px;
  width: 90%;
  margin: auto;
}

.anesthesia-sec h2 {
  color: #0152A4;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
}

.anesthesia-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.anesthesia-flex .left p {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.44px;
  padding-top: 24px;
}

.anesthesia-flex .left p:first-child {
  padding-top: 12px;
}

.anesthesia-flex .right {
  width: 60%;
  max-width: 549px;
}

.anesthesia-flex .right img {
  width: 100%;
  height: auto;
}

/*digital-xray-info-sec*/
.digital-xray-info-sec {
  background: #FFF;
  padding-top: 80px;
  padding-bottom: 100.5px;
}

.digital-xray-info-sec .container {
  max-width: 988px;
  width: 90%;
  margin: auto;
}

.digital-xray-info-sec .container h2 {
  color: #0152A4;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
}

.digital-xray-info-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}

.digital-xray-info-flex .left {
  width: 51.7%;
  max-width: 475px;
}

.digital-xray-info-flex .right {
  width: 48.3%;
  max-width: 477px;
}

.digital-xray-info-flex .left img {
  width: 100%;
  height: auto;
}

.digital-xray-info-flex .right p {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.28px;

}

.digital-xray-info-flex p span {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.28px;
}

@media (max-width:1024px){
	.page-first-sec.cavity{
	padding:80px 0px;
}
	.page-first-sec.cavity .page-first-text-wrap{
		padding:32px 4%;
	}
	.point-block.cavity{
		padding-bottom:0;
	}
	.anesthesia-flex,
	.digital-xray-info-flex{
		flex-direction:column;
		align-items:center;
		gap:40px 0px;
	}
	.anesthesia-flex .left,
	.anesthesia-flex .right{
		width:100%;
		max-width:100%;
	}
	
	.anesthesia-flex .left{
		order:2;
	}
	
	.anesthesia-flex .left p br{
		display:none;
	}
	.digital-xray-info-flex .left,
	.digital-xray-info-flex .right{
		width:100%;
		max-width:100%;
	}
	.digital-xray-info-flex .right p br{
		display:none;
	}
	.anesthesia-sec{
		padding:60px 0px;
	}
	
	.anesthesia-sec h2,
	.digital-xray-info-sec .container h2{
		font-size:28px;
	}
	.anesthesia-flex{
		margin-top:24px;
	}
	.digital-xray-info-flex{
		margin-top:40px;
	}
}

@media (max-width:600px){
	.page-first-sec.cavity{
		padding:48px 0px;
	}
	.page-point-sec.cavity .point-top-text p{
		text-align:left;
	}
	.page-point-sec.cavity .point-top-text p br{
		display:none;
	}
	.point-block.cavity{
		margin-top:32px;
	}
	.point-label{
		font-size:18px;
	}
	
	.point-block-text h3{
		font-size:20px;
	}
	.point-block-text p{
		font-size:15px;
	}
	.point-block.reverse.cavity{
		padding-bottom:0;
	}
	.anesthesia-sec{
		padding:48px 0px;
	}
	.anesthesia-sec h2{
		font-size:22px;
	}
	
	.anesthesia-flex{
		gap:24px 0px;
	}
	
	.anesthesia-flex .left{
		order:2;
	}
	
	.anesthesia-flex .left p:first-child{
		padding:0;
	}
	.anesthesia-flex .left p{
		font-size:15px;
		text-align:left;
		padding:0;
		margin-bottom:16px;
	}
	.anesthesia-flex .left p:last-child{
		margin-bottom:0;
	}
	.digital-xray-info-sec{
		padding:48px 0px;
	}
	.digital-xray-info-sec .container h2{
		font-size:22px;
	}
	.digital-xray-info-flex{
		margin-top:24px;
		gap:16px 0px;
	}
	.digital-xray-info-flex .right p,
	.digital-xray-info-flex p span{
		text-align:left;
		font-size:15px;
	}
	
}


/* ------------------ */
/* 小児科ページ */
/* ------------------ */

/*.pediatric-sec*/
.page-first-sec.pediatric .page-first-text-wrap {
  padding-bottom: 50.86px;
}

.page-first-sec.pediatric .page-first-text-wrap span {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.6px;
}



/*regular-checkup-sec*/

.regular-checkup-sec {
  padding-top: 80px;
  padding-bottom: 100px;
  background: #FAF9F7;
}

.regular-checkup-sec .container {
  max-width: 1007px;
  width: 90%;
  margin: auto;
}

.regular-checkup-sec h2 {
  color: #0152A4;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
  padding-bottom: 42px;
}

.regular-checkup-flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 882px;
  margin: auto;
}

.regular-checkup-flex.top {
  align-items: center;
  margin-bottom: 87px;
  max-width: 100%;
}

.regular-checkup-flex:nth-child(2) {
  margin-bottom: 87px;
}

.regular-checkup-flex:nth-child(3) {
  margin-bottom: 107px;
}

.regular-checkup-flex:nth-child(4) {
  margin-bottom: 80px;
}

.regular-checkup-flex.top .left {
  width: 55%;
  max-width: 520px;
}

.regular-checkup-flex.top .right {
  width: 45%;
  max-width: 457px;
}

.regular-checkup-flex .right,
.regular-checkup-flex.reverse .left {
  width: 45%;
  max-width: 398px;
  position: relative;
}

.regular-checkup-flex .left,
.regular-checkup-flex.reverse .right {
  width: 60%;
  max-width: 457px;
  position: relative;
}

.checkup-num {
  position: absolute;
  color: #FFA741;
  left: -1.1px;
  top: -34.2px;
  font-family: Lato, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.8;
}

.regular-checkup-flex:nth-child(4) .checkup-num {
  right: -1.1px;
  left: auto;
}

.regular-checkup-flex.top p {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 200%;
  letter-spacing: 1.6px;
}

.regular-checkup-flex h3 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.92px;
  padding-bottom: 16px;
  border-bottom: 1px solid #0152A4;
  margin-bottom: 16px;
}

.regular-checkup-flex .left p,
.regular-checkup-flex.reverse .right p {
  margin: 0px;
  color: #000;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.28px;
  margin-bottom: 1.5em;
}

.regular-checkup-flex.top img {
  width: 100%;
  object-fit: contain;
}

.regular-checkup-flex img {
  width: 100%;
  object-fit: contain;
}


.regular-checkup-flex .left p span {
  color: #0152A4;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.28px;
}




/*.dental-health-sec*/
.dental-health-sec {
  padding-top: 60px;
  padding-bottom: 49px;
}


.dental-health-sec .container {
  max-width: 975px;
  width: 90%;
  margin: auto;
}

.dental-health-sec .container h2 {
  color: #0152A4;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 2.56px;
}

.dental-health-sec .container h2 span {
  margin-left: 20px;
  margin-right: 20px;
}

.dental-health .container h2 svg {
  width: 32px;
  height: 0px;
  transform: rotate(-64.722deg);
}

.dental-health-flex {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  align-items: center;
}

.dental-health-flex .left {
  max-width: 520px;
  width: 52.3%;
}

.dental-health-flex .right {
  max-width: 450px;
  width: 47.7%;
}

.dental-health-flex .left p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.28px;
  margin: 0px;
  margin-bottom: 1.85em;
}

.dental-health-flex .left p:last-child {
  margin-bottom: 0px;
}

.dental-health-flex .right img {
  width: 450px;
  height: 350px;

}

.dental-health .blue {
  color: #0152A4;
}

.dental-health .red {
  color: #E60012;
}


/*kouikushi-certification*/

.kouikushi-certification-sec {
  padding-top: 60px;
  padding-bottom: 80px;
  background: #FAF9F7;
  text-align: center;
}

.kouikushi-certification-sec .container {
  max-width: 1073px;
  width: 90%;
  margin: auto;
}

.kouikushi-certification-sec h2 {
  color: #0152A4;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
  padding-bottom: 33px;
}

.kouikushi-certification-sec img {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}

.kouikushi-certification-sec p {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.28px;
  margin-bottom: 1.5em;
}

.kouikushi-certification-sec p:last-child {
  margin-bottom: 0px;
}

/*wrap-up-sec pediatric*/
.wrap-up-sec.padiatric p {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.04px;
}

.wrap-up-sec .microcopy {
  display: block;
  max-width: 160px;
  margin: auto;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.04px;
  margin-top: 37px;
}

.wrap-up-text-wrap a {
  display: block;
  border-radius: 70px;
  background: #105CA9;
  width: 300px;
  margin: auto;
  color: #FFF;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-weight: 900;
  letter-spacing: 1.28px;
  text-decoration: none;
  padding: 10px 0px;
}

@media (max-width:1024px){
	.point-block.pediatric{
		padding-bottom:0;
	}
	.regular-checkup-flex:nth-child(2){
		flex-direction:column;
		align-items:center;
		gap:24px 0px;
	}
	.regular-checkup-flex:nth-child(2) .left,
	.regular-checkup-flex:nth-child(2) .right{
		width:100%;
		max-width:100%;
	}
	.regular-checkup-flex:nth-child(2) .left{
		order:1;
	}
	
	.pediatric .regular-checkup-flex{
		margin-bottom:60px !important;
	}
	
	.regular-checkup-flex.top p{
		font-size:16px;
	}
	
	.regular-checkup-flex .left p br{
		display:none;
	}
	.regular-checkup-flex,
	.regular-checkup-flex.reverse{
		flex-direction:column;
		align-items:center;
		gap:24px 0px;
	}
	
	.regular-checkup-flex.reverse .left,
	.regular-checkup-flex.reverse .right,
	.regular-checkup-flex .left,
	.regular-checkup-flex .right{
		width:100%;
		max-width:100%;
	}
	
	
	.regular-checkup-flex .left{
		order:1;
	}
	
	.regular-checkup-flex.reverse .right{
		order:1
	}
	.regular-checkup-sec{
		padding-bottom:16px;
	}
	.dental-health-flex{
		flex-direction:column;
		align-items:center;
		gap:24px 0px;
	}
	.dental-health-flex .left,
	.dental-health-flex .right{
		width:100%;
		max-width:100%;
	}
	.dental-health-flex .left p br{
	display:none;	
	}
	.dental-health-flex .right img{
		width:100%;
		object-fit:cover;
		height:auto;
	}
	.kyouiku-shi-certification-sec .container{
		padding:0;
	}
}
@media (max-width:600px){
	.page-first-sec.pediatric .page-first-text-wrap{
		padding:48px 4%;
	}
	
	.page-first-text-wrap p br.sp{
		display:block;
	}
	.page-first-text-wrap h2{
		line-height:1.5;
	}
	.page-first-sec.pediatric .page-first-text-wrap span{
		font-size:16px;
	}
	.pediatric .point-top-text p{
		text-align:left;
		font-size:16px;
		font-family:'Zen Old Mincho', serif;
		font-weight:400;
	}
	.pediatric .point-top-text p br{
		display:none;
	}
	
	.point-block.pediatric{
		width:100%;
	}
	.point-block.reverse.pediatric{
		margin-top:32px;
	}
	
	.point-block.reverse.pediatric{
		padding:0;
	}
	.regular-checkup-sec{
		padding:48px 0px;
	}
	.regular-checkup-sec h2{
		font-size:24px;
		padding-bottom:24px;
	}
		.pediatric .regular-checkup-flex{
		margin-bottom:48px !important;
	}
	.regular-checkup-flex, .regular-checkup-flex.reverse{
		gap:8px 0px;
	}
	
	.pediatric .regular-checkup-flex.top p,
	.pediatric .regular-checkup-flex .left p,
	.pediatric .regular-checkup-flex.reverse .right p{
		text-align:left;
		font-family:"Noto sans jp",sans-serif;
		font-size:16px;
		letter-spacing:0.04em;
	}
	.pediatric .regular-checkup-flex p br,
	.pediatric .regular-checkup-flex.reverse p br{
		display:none;
	}
	
	.regular-checkup-flex.reverse .right{
		font-size:16px;
	}
	
	.regular-checkup-flex h3{
		text-align:left;
		font-size:20px;
		padding-bottom:4px;
		margin-bottom:8px;
	}
	.regular-checkup-sec{
		padding-bottom:1px;
	}
	
	.dental-health-sec{
		padding:48px 0px;
	}
	.dental-health-sec .container h2 span{
		font-size:24px;
		margin:0px
	}
	.dental-health-sec .container h2 svg{
		display:none;
	}
	.dental-health-flex{
		margin-top:16px;
	}
	.dental-health-flex .left p{
		text-align:left;
	}
	
	.dental-health-flex .left{
		order:2;
	}
	
	.kouikushi-certification-sec{
		padding:48px 0px;
	}
	
	.kouikushi-certification-sec .container{
		padding:0;
	}
	
	.kouikushi-certification-sec h2{
		font-size:24px;
	}
	.kouikushi-certification-sec img{
margin-bottom:24px;
	}
	.kouikushi-certification-sec p{
		font-size:15px;
		text-align:left;
	}
	.kouikushi-certification-sec p br{
		display:none;
	}
	.pediatric .wrap-up-text-wrap{
		padding-bottom:32px;
	}
}



/* ------------------ */
/* 審美歯科*/
/* ------------------ */
/*aesthetic*/
.aesthetic-recommend-sec {
  padding-top: 120px;
  padding-bottom: 100px;
}

.aesthetic-recommend-sec .container {
  max-width: 940px;
  width: 90%;
  margin: auto;
}

.aesthetic-recommend-sec .container h2 {
  color: #0152A4;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
}

.aesthetic-recommend-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
	gap:0px 34px;
}

.aesthetic-recommend-flex .left img {
  max-width: 456px;
  height: 349px;

}

.aesthetic-recommend-flex .right p {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.44px;
  margin-bottom: 1.5em;
}

.aesthetic-recommend-flex .right p:last-child {
  margin-bottom: 0px;
}

.aesthetic-recommend-list-flex {
  max-width: 940px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 62px;
  padding: 0px;
  margin-bottom: 0px;
}

.aesthetic-recommend-list-flex li {
  width: 48%;
	padding:16px 0px;
	text-align:center;
  border-radius: 5px;
  background: #E3EFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin-bottom: 22px;
}

/*aesthetic-prosthetics*/

.aesthetic-prosthetics-sec {
  padding-top: 80px;
  padding-bottom: 80px;
}

.aesthetic-prosthetics-sec .container {
  max-width: 1031px;
  width: 90%;
  margin: auto;
}

.aesthetic-prosthetics-sec .container h2 {
  color: #0152A4;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
}

.aesthetic-prosthetics-flex {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
}

.aesthetic-prosthetics-flex img {
  width: 352px;
  height: 352px;
}

.aesthetic-prosthetics-flex p {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.28px;
  margin-bottom: 1.5em;
}

.aesthetic-prosthetics-flex p:last-child {
  margin-bottom: 0em;
}

.merits-demerits-container {
  max-width: 796px;
  width: 90%;
  margin: auto;
}

.merits-demerits-container h2 {
  color: #0152A4;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.92px;
  padding-top: 52px;
}

.aesthetic-prosthetics-flex {
  display: flex;
  justify-content: space-between;
}

.box-container {
  width: 378px;
  height: 415px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.box-container h3 {
  background: #0152A4;
  color: #fff;
  padding: 16px;
  margin: 0;
  text-align: center;
  font-size: 20px;
  border-radius: 20px 20px 0 0;
}

.box-container .color-box {
  background: #605F64;
}

.merits-left ul {
  margin-top: 36px;
	margin-left:20px;
}

.merits-left ul li {
  list-style-type: none;
  position: relative;
  font-size: 16px;
  margin-bottom: 16px;
	padding-left:24px;
}

.merits-left ul li:last-child {
  margin-bottom: 0px;
}

.merits-left ul li svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.demerits-right ul {
  margin-top: 36px;
	margin-left:20px;
}

.demerits-right ul li {
  list-style-type: none;
  position: relative;
  font-size: 16px;
  margin-bottom: 16px;
	padding-left:24px;
}

.demerits-right ul li:last-child {
  margin-bottom: 0px;
}

.demerits-right ul li svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*crown-expenses-sec*/

.crown-expenses-sec {
  padding-top: 100px;
  padding-bottom: 100px;
}

.crown-expenses-sec .container {
  max-width: 980px;
  width: 90%;
  margin: auto;
}

.crown-expenses-sec h2 {
  color: #0152A4;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
}

.crown-expenses-sec .center{
	text-align:center;
	margin-top:32px;
}

.type-ttl {
  padding-left: 50px;
  position: relative;
}

.type-ttl.aesthetic{
	margin-top:60px;
	margin-bottom:32px;
}

.type-ttl svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}


.type-ttl h3 {
  font-size: 28px;
  font-family: 'Zen Old Mincho', serif;
  color: #0152A4;
  font-weight: 700;
  margin-top: 0;
  text-align: left;
}

.type-ttl span {
  display: block;
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 2;
  letter-spacing: 1.44px;
  color: #0152A4;
  text-align: left;
}

.crown-expenses-sec img{
	width:100%;
	margin-bottom:60px;
}


.crown-expenses-box {
  display: flex;
  justify-content: space-between;
  max-width: 940px;
  width: 90%;
  margin-bottom: 60px;
  border-radius: 20px;
  border: 1px solid #0152A4;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.crown-expenses-box .left {
  max-width: 377px;
  width: 40%;

}

.crown-expenses-box .right {
  max-width: 601px;
  width: 60%
}

.crown-expenses-box .left .crown-expenses-table {
  width: 100%;
  border-collapse: collapse;
}

.crown-expenses-box .left img {
  width: 100%;
  height: auto;
  display: block;

}

.crown-expenses-box tr {
  display: flex;
  align-items: center;
}

.crown-expenses-box .left th {
  max-width: 100px;
  width: 26.74%;
  color: #FAFAFA;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.44px;
  border-radius: 0px 0px 0px 20px;
  background: #0152A4;

}

.crown-expenses-box .left td {
  width: 73.26%;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.28px;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.crown-expenses-box .left th,
.crown-expenses-box .left td {
  padding: 0;
  margin: 0;
}

.crown-expenses-box .right th {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  width: 100%;
  max-width: 100px;
  background: #0152A4;
  align-self: stretch;
  border-bottom: 1px solid #fff;
}

.crown-expenses-box .right td {
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.28px;
  width: 100%;
  max-width: 501px;
  padding: 10px;
  border-bottom: 1px solid #464646;
}

.crown-expenses-box .right td li {
  font-size: 14px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.12px;
}

.aesthetic-prosthetics-risks{
	position:relative;
	border:2px solid #0152A4;
	border-radius:20px;
	padding:48px 4%;
	padding-top:60px;
	text-align:center;
	line-height:1.8;
	margin-top:40px;
}

.aesthetic-prosthetics-risks h2{
	font-size:28px;
	background:#0152A4;
	border-radius:100px;
	max-width:608px;
	margin:auto;
	color:#fff;
	line-height:1.5;
	padding:8px;
	padding-bottom:12px;
	position:absolute;
	top:-30px;
	left:0;
	right:0;
}

.aesthetic-prosthetics-risks p{
	max-width:90%;
	margin:auto;
	margin-bottom:1.8em;
}
.aesthetic-prosthetics-risks p:last-child{
	margin-bottom:0;
}


/*treatment-flow 審美治療の流れ*/

.aesthetic-treatment-flow-sec {
  padding-top: 80px;
  padding-bottom: 120px;
  background: #FAF9F7;
}

.aesthetic-treatment-flow-sec .container {
  max-width: 934px;
  width: 90%;
  margin: auto;
}

.aesthetic-treatment-flow-wrap {
  width: 100%;
  text-align: center;
}


.aesthetic-treatment-flow-wrap span {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.48px;
  text-align: center;
}


.aesthetic-treatment-flow-wrap h2 {
  color: #0152A4;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
}

.aesthetic-treatment-flow-wrap p {
  color: #000;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.44px;
  padding-top: 32px;
}

.aesthetic-treatment-flow-box {
  max-width: 844px;
  width: 100%;
  display: flex;
  margin-top: 32px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.arrow-down-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
	margin-top:32px;
}


.arrow-down {
  width: 82px;
  height: 23px;
}


.aesthetic-treatment-flow-box .left {
  width: 23.7%;
}

.aesthetic-treatment-flow-box .left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-label {
  color: #0152A4;
  font-size: 16px;
  font-weight: 500;
}

.step-num {
  color: #0152A4;
  font-size: 27px;
  font-weight: 700;
  margin-left: 3px;
  padding-top: 20px;
}

.aesthetic-treatment-flow-box .right {
  width: 76.3%;
  padding-left: 20px;
  box-sizing: border-box;
}

.aesthetic-treatment-flow-box .step-number {
  margin-top: 20px;
  display: block;
}

.aesthetic-treatment-flow-box .right h3 {
  color: #0152A4;
  font-size: 25px;
  font-weight: 700;
  padding-top: 8px;
  padding-bottom: 10px;
}

.aesthetic-treatment-flow-box .right p {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
}

.aesthetic-treatment-flow-box .right .note {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  line-height: 180%;
}



@media (max-width:1024px){
	.aesthetic-recommend-sec{
		padding:60px 0px;
	}
	.aesthetic-recommend-sec .container h2{
		font-size:28px;
	}
	.aesthetic-recommend-flex{
		flex-direction:column;
		gap:24px;
		align-items:center;
	}
	.aesthetic-prosthetics-sec{
		padding:48px 0px;
	}
	.aesthetic-prosthetics-sec .container h2{
		font-size:28px;
	}
	.aesthetic-prosthetics-flex{
		flex-direction:column;
		align-items:center;
		gap:24px 0px;
	}
	.box-container{
		height:auto;
		padding-bottom:40px;
		margin-bottom:24px;
	}
	.crown-expenses-sec{
		padding:48px 0px;
	}
	.crown-expenses-sec h2{
		font-size:28px;
		margin-bottom:16px;
	}
	.crown-expenses-sec img{
		margin-bottom:24px;
	}
	.type-ttl.aesthetic{
		margin-top:32px;
	}
	.arrow-down-wrap{
		margin-top:32px;
		margin-bottom:0;
	}
	.aesthetic-treatment-flow-box{
		margin-top:32px;
	}
	.aesthetic-treatment-flow-box .right{
		padding-bottom:24px;
	}
}

@media (max-width:600px){
	.aesthetic .page-first-text-wrap{
		padding:16px 4%;
		padding-bottom:32px;
	}
	.aesthetic-recommend-sec .container h2{
		font-size:24px;
		line-height:1.5;
	}
	.aesthetic-recommend-flex .left img{
		width:100%;
		max-width:100%;
		object-fit:contain;
		height:auto;
	}
	.aesthetic-recommend-flex .right p{
		text-align:left;
		font-size:16px;
	}
	.aesthetic-recommend-flex .right p br{
		display:none;
	}
	.aesthetic-recommend-list-flex li{
		width:100%;
		max-width:100%;
	}
	.aesthetic-recommend-list-flex{
		margin-top:32px;
	}
	.aesthetic-prosthetics-sec{
		padding-top:0;
	}
	.aesthetic-prosthetics-sec .container h2{
		font-size:24px;
	}
	.aesthetic-prosthetics-flex{
		padding-top:0;
		margin-top:24px;
	}
	.aesthetic-prosthetics-flex .right{
		text-align:left;
	}
	.aesthetic-prosthetics-flex .right p br{
		display:none;
	}
	.merits-left,
	.demerits-right{
		max-width:100%;
		width:100%;
	}
	
	.box-container{
		width:100%;
		max-width:100%;
	}
	.crown-expenses-sec{
		padding-top:0;
	}
	.crown-expenses-sec h2{
		font-size:24px;
		margin-top:32px;
	}
	.crown-expenses-sec .center{
		line-height:1.8;
	}
	.crown-expenses-sec h2{
		font-size:18px;
		width:85%;
		top:-55px;
	}
	.aesthetic-prosthetics-risks{
		padding-top:48px;
	}
	.aesthetic-prosthetics-risks p{
		text-align:left;
		font-size:14px;
	}
	
	.aesthetic-treatment-flow-sec{
		padding:48px 0px;
	}
	
	.aesthetic-treatment-flow-wrap h2{
		font-size:24px;
	}
	.aesthetic-treatment-flow-wrap p{
		font-size:16px;
		text-align:left;
	}
	.aesthetic-treatment-flow-box{
		flex-direction:column;
	}
	.aesthetic-treatment-flow-box .left,
	.aesthetic-treatment-flow-box .right{
		width:100%;
		max-width:100%;
	}
	.aesthetic-treatment-flow-box .left img{
		max-height:200px;
	}
	.aesthetic-treatment-flow-box .right{
		padding:20px 10px;
		text-align:left;
	}
	.aesthetic-treatment-flow-box .step-number{
		margin-top:0;
	}
	
}

/* ------------------ */
/* 入れ歯治療*/
/* ------------------ */
/*denture treatment*/

.denture-treatment-list-flex {
  max-width: 940px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0px;
  margin-bottom: 0px;
}

.denture-treatment-list-flex li {
  width: 47.88%;
  height: 88px;
  border-radius: 5px;
  background: #E3EFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  margin-bottom: 22px;
  color: #000;
  text-align: center;
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.6px;
}

.denture-treatment-list-flex li:last-child {
  margin-bottom: 0px;
}

.type-ttl.denture {
  max-width: 840px;
}

/*page-point-sec*/

.page-type-sec {
  padding-top: 80px;
  padding-bottom: 102px;
}

.page-type-sec .container {
  max-width: 1032px;
  margin: auto;
  width: 90%;
}

.page-type-sec h2 {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 3.2px;
  text-align: center;
  margin-bottom: 12px;
}

.type-top-text {
  margin-top: 40px;
  text-align: center;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.type-top-text p {
  margin-bottom: 40px;
}

.type-top-text p:last-child {
  margin-bottom: 0;
}

.page-type-sec .type-ttl {
  margin-top: 80px;
}

.denture-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 44px;
}

.denture-flex img {
  width: 267px;
  height: 267px;
}

.denture-flex .right p {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.44px;
  text-align: left;
  padding-bottom: 24px;
}

.denture-flex .btn {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1.28px;
  display: block;
  max-width: 300px;
  padding: 10px 0px;
  padding-bottom: 11px;
  background: #105CA9;
  text-align: center;
  position: relative;
  text-decoration: none;
  border-radius: 70px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.denture-flex .btn svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.denture-features-first {
  padding-top: 60px;
  padding-bottom: 64px;
}

.denture-features-first h3 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 2.56px;
  padding-bottom: 4px;
}

.under-line {
  width: 1032px;
  display: inline-block;
  border-bottom: 2px solid #0152A4;
  padding-bottom: 5px;
}

.denture-features-flex {
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.denture-features-flex .right {
  padding-left: 10px;
}

.denture-features-flex img {
  width: 100px;
  height: 100px;
}

.denture-features-flex span {
  display: block;
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 180%;
  letter-spacing: 1.6px;
}

.denture-features-flex p {
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.44px;
  text-align: left;
  padding-top: 8px;
}

.denture-features-flex:last-child {
  margin-bottom: 0px;
}

.denture-features-second h3 {
  color: #0152A4;
  font-family: 'Zen Old Mincho', serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 2.56px;
  padding-bottom: 4px;
}

.denture-features-second p {
  font-family: 'Zen Old Mincho', serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 1.44px;
  text-align: left;
  padding-top: 32px;

}

.risk-wrap {
  max-width: 1032px;
  margin: auto;
  border-radius: 20px;
  border: 3px solid #0152A4;
  background: #FFF;
  box-sizing: border-box;
  padding: 60px 0 40px 0;
  margin-top: 90px;
  position: relative;
  text-align: center;
}

.risk-wrap h3 {
  color: #FFF;
  font-family: 'Zen Old Mincho', serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 2.24px;
  background: #0152A4;
  width: 608px;
  margin: auto;
  border-radius: 35px;
  position: absolute;
  top: -28px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

.risk-wrap p,
.risk-wrap ul {
  color: #000;
  font-family: 'Zen Old Mincho', serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 1.28px;
  text-align: center;
}

.risk-wrap ul {
  padding: 0px;
  list-style-position: inside;
  max-width: 853px;
  margin: auto;
  text-align: left;
  margin-top: 32px;
  margin-bottom: 40px;
}

.risk-wrap.aesthetic ul li {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
}

.risk-wrap.aesthetic ul li:before {
  content: "・";
}


.risk-wrap.aesthetic ul {
  max-width: 732px;
}

@media (max-width:1024px){
	.denture-treatment-list-flex{
		width:90%;
	}
	.denture-flex{
		gap:0px 24px;
		flex-wrap:wrap;
	}
	.risk-wrap ul{
		width:90%;
	}
	.denture-treatment-list-flex li{
		height:auto;
		padding:16px 0px;
	}
	.under-line{
		width:100%;
	}
	.risk-wrap h3{
		width:90%;
	}
}

@media (max-width:768px){
	.page-first-text-wrap {
		padding:48px 4%;
	}
	
	.denture-treatment-list-flex li{
		width:100%;
		max-width:100%;
		font-size:16px;
	}
	.denture-treatment-list-flex{
		margin-bottom:24px;
	}
	.page-type-sec.denture{
		padding:48px 0px;
	}
	.page-type-sec h2{
		font-size:24px;
	}
	.type-top-text p{
		font-size:16px;
		text-align:left;
	}
	.type-top-text p br{
		display:none;
	}
	.page-type-sec .type-ttl{
		margin-top:32px;
	}
	.type-ttl{
		padding-left:35px;
	}
	
	.type-ttl h3{
		font-size:20px;
	}
	.type-ttl span{
		font-size:13px;
	}
	.type-ttl svg{
		width:25px;
	}
	.denture-flex{
		padding-top:0;
		margin-top:24px;
		flex-direction:column;
		align-items:center;
		gap:16px 0px;
	}
	.denture-flex .left,
	.denture-flex .right{
		width:100%;
		max-width:100%;
	}
	.denture-flex img{
		width:100%;
		max-width:100%;
		height:auto;
	}
	.denture-flex .right p{
		font-size:16px;
	}
	.denture-flex .btn{
		margin:auto;
	}
	.denture-features-first h3{
		font-size:20px;
		width:100%;
	}
	.denture-features-flex{
		flex-direction:column;
		align-items:flex-start;
		gap:16px 0px;
	}
	.denture-features-flex .right p{
		color:#000;
		font-size:16px;
	}
	.denture-features-second h3{
		font-size:24px;
	}
	.denture-features-second p{
		font-size:16px;
	}
	.denture-features-second p br{
		display:none;
	}
	.risk-wrap h3{
		font-size:18px;
		padding-bottom:4px;
		top:-20px;
	}
	.risk-wrap{
		padding:32px 4%;
		border-radius:8px;
	}
	.risk-wrap p, .risk-wrap ul{
		font-size:15px;
		text-align:left;
		width:100%;
		margin:16px 0px;
	}
}

/* ------------------ */
/* 医院紹介・スタッフ紹介*/
/* ------------------ */
/*about clinic*/

/*page-first-sec*/
.page-first-sec.about {
  padding-top: 60px;
  padding-bottom: 100px;
}

.about .page-first-text-wrap {
  padding: 0px;
}

/*about-features-sec*/
.about-features-sec {
  padding-top: 80px;
  padding-bottom: 100px;
  background: #FAF9F7;
}

.about-features-sec h2 {
  color: #0152A4;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.08em;
}

.about-features-sec .container {
  max-width: 913px;
  width: 100%;
  margin: auto;
}

.about-features-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 913px;
  width: 100%;
  margin: auto;
  gap: 0px 53px;
  margin-top: 40px;
}

.about-features-flex.reverse {
  flex-direction: row-reverse;
}

.about-features-flex .left {
  max-width: 485px;
  width: 58%;
}

.about-features-flex .right {
  max-width: 368px;
  width: 42%;
}

.about-features-flex img {
  width: 100%;
  max-width: 368px;
}

.about-features-flex span {
  display: block;
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 50px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.08em;
}

.about-features-flex h3 {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 28px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-top: 12px;
}

.about-features-flex p {
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-top: 16px;
}

.about-features-flex .yellow-underline {
  position: relative;
  display: inline;
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.08em;
	z-index:2;
	background:#fff8a9;
}


/*about-staff-sec*/
.about-staff-sec {
  padding-top: 100px;
  padding-bottom: 80px;
}

.about-staff-sec .container {
  max-width: 913px;
  width: 90%;
  margin: auto;
}

.about-staff-sec h2 {
  color: #0152A4;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.08em;
}

.about-staff-flex {
  max-width: 913px;
  width: 100%;
  margin: auto;
  display: flex;
  align-items: flex-start;
  margin-top: 37px;
  gap: 0px 32px;
}

.about-staff-flex .left {
  max-width: 440px;
  width: 49%;
}

.about-staff-flex .right {
  max-width: 441px;
  width: 51%;
}

.about-staff-flex img {
  width: 100%;
  max-width: 440px;
}

.about-staff-flex .position {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;
  width: 72px;
  border-radius: 4px;
  background: #0152A4;
  padding: 4px 0px;
	padding-bottom:6px;
  display: block;
  text-align: center;
  margin-top: 23px;
}

.about-staff-flex .name {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 28px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-top: 10px;
  display: block;
}

.about-staff-flex .big {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 18px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;
}

.about-staff-flex .career {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;
  width: 72px;
  border-radius: 4px;
  background: #0152A4;
  padding: 4px 0px;
	padding-bottom:6px;
  text-align: center;
  display: block;
}


.about-staff-flex .career-list {
  margin-top: 19px;
}

.about-staff-flex .career-item {
  display: flex;
  align-items: flex-start;
  width: 441px;
  margin-top: 16px;
  gap: 0px 16px;
}


.about-staff-flex .year {
  color: #111;
  font-family: "Zen Old Mincho";
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  width: 12.4%;
  display: inline-block;
}

.about-staff-flex .detail {
  color: #111;
  font-family: "Zen Old Mincho";
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  width: 87%;
  letter-spacing: 0.08em;
}

.about-staff-flex .membership {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;
  width: 158px;
  border-radius: 4px;
  background: #0152A4;
  padding: 4px 0px;
	padding-bottom:6px;
  display: block;
  text-align: center;
  margin-top: 32px;
}

.about-staff-flex .school-dental-officer {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;
  width: 124px;
  border-radius: 4px;
  background: #0152A4;
  padding: 4px 0px;
	padding-bottom:6px;
  display: block;
  text-align: center;
  margin-top: 32px;
}


.about-staff-flex .traininghistory {
  width: 124px;
  height: 28px;
  border-radius: 4px;
  background: #0152A4;
  padding: 2px 0px;
  display: block;
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
	margin-top:32px;
}

.about-staff-flex ul {
  padding: 0px;
}

.about-staff-flex ul li {
  color: #111;
  font-family: "Zen Old Mincho";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
	list-style:none;
}
.about-staff-flex ul li:before{
	content:"・";
}
.about-staff-flex ul li:first-child{
	margin-top:8px;
}


.about-staff-message {
  max-width: 913px;
  width: 100%;
  margin: auto;
  margin-top: 32px;
}

.about-staff-message .position {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;
  width: 124px;
  border-radius: 4px;
  background: #0152A4;
  padding: 4px 0px;
	padding-bottom:6px;
  text-align: center;
  display: block;
}


.about-staff-message .message-text {
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-top: 16px;
}

.about-staff-message .message-text {
  position: relative;
  padding-bottom: 32px;
}

.about-staff-message .message-text .blue-color {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.28px;
}

.message-text p{
	margin-bottom:1.8em;
}

.about-staff-box {
  max-width: 913px;
	width:100%;
  padding-top: 30px;
  padding-bottom: 122px;
  border-radius: 10px;
  background: linear-gradient(0deg, #417DBB 0%, #417DBB 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
  margin-top: 52px;
}

.about-staff-box .min {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-right: 16px;
}

.about-staff-box .big {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 24px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;

}

.about-staff-box p {
  color: #FFF;
  font-family: "Zen Old Mincho";
  font-size: 24px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-left: 30px;
  margin-top: 16px;
}

.staff-line{
	border:none;
	width:100%;
	height:1px;
	background:#0152A4;
	max-width:913px;
	margin:auto;
	margin-top:60px;
	margin-bottom:60px;	
}

.yusuke-banner{
	width:100%;
	display:block;
	cursor:pointer;
	height:auto;
	margin-top:32px;
	position:relative;
	z-index:10;
	border:2px solid #0152A4;
}
.yusuke-banner img{
	width:100%;
	height:auto;
	cursor:pointer;
	display:block;
	  pointer-events: auto;

}

/*ABOUT-RESPONSIVE*/
@media (max-width:1024px){
.page-first-text-wrap h2{
	font-size:32px;
}

.page-first-text-wrap p{
	font-size:16px;
}
	
	.about-features-sec .container{
		max-width:91.84%;
	}
	
	.about-features-sec h2{
		font-size:32px;
	}
	
	.about-features-flex span{
		font-size:32px;
	}
	.about-features-flex h3{
		font-size:24px;
	}
	
	.about-features-flex,
	.about-features-flex.reverse{
		flex-direction:column;
		justify-content:center;
		align-items:center;
		gap:32px 0px;
		margin-top:60px;
	}
	
	
	
	.about-features-flex .left,
	.about-features-flex .right{
		width:100%;
		max-width:90%;
	}
	.about-features-flex img{
		max-width:100%;
	}
	
	
	.about-staff-flex{
		max-width:91.84%;
		flex-direction:column;
		align-items:center;
		gap:32px 0px;
		justify-content:center;
	}
	.about-staff-flex .left,
	.about-staff-flex .right{
		max-width:90%;
		width:100%;
	}
	
	.about-staff-flex .career-item{
		width:100%;
	}
	
	.about-staff-flex img{
		max-width:100%;
	}
	.about-staff-message{
		max-width:91.84%;
		width:82.655%;
	}
	
	.about-staff-sec h2{
		font-size:32px;
	}
	.staff-line{
		max-width:91.84%;
	}
	.about-staff-box{
		max-width:100%;
	}
	}

@media (max-width:600px){
	.page-first-sec{
		padding:48px 0px;
	}
	
	.page-first-text-wrap{
		max-width:91.48%;
		margin:auto;
		padding-top:0;
		padding-bottom:0;
	}
	
	.page-first-text-wrap h2{
		font-size:24px;
	}
	.page-first-text-wrap p{
		text-align:left;
		line-height:1.8;
		font-size:15px;
	}
	.page-first-text-wrap p br{
		display:none;
	}
	
	.about-features-sec{
		padding:48px 0px;
	}
	.about-features-sec h2{
		font-size:24px;
		line-height:1.8;
	}
	.about-features-flex,
	.about-features-flex, .about-features-flex.reverse{
		margin-top:48px;
		gap:8px 0px;
	}
	.about-features-flex .left,
	.about-features-flex .right{
		text-align:left;
		max-width:100%;
	}
	
	.about-features-flex .left{
		order:2;
	}
	
	.about-features-flex span{
		font-size:24px;
	}
	.about-features-flex h3{
		margin-top:4px;
		font-size:20px;
	}
	.about-features-flex p{
		font-size:15px;
	}
	.about-features-flex p br{
		display:none;
	}
	
	.about-staff-sec{
		padding:48px 0px;
	}
	.about-staff-sec h2{
		font-size:24px;
		line-height:1;
	}
	.about-staff-flex,
	.about-staff-flex .left, .about-staff-flex .right{
		max-width:100%;
		gap:16px 0px;
	}
	
	.about-staff-flex .position{
		font-size:14px;
		padding:4px 0px;
	}
	
	.about-staff-flex .name{
		text-align:left;
		font-size:20px;
	}
	.about-staff-flex .big{
		text-align:left;
		font-size:15px;
	}
	.about-staff-flex .career-item{
		gap:0px;
		text-align:left;
	}
	.about-staff-flex .year {
		width:27.5%;
	}
	.about-staff-flex ul li{
		text-align:left;
	}
	.about-staff-message{
		width:100%;
		max-width:100%;
	}
	.about-staff-message p,
	.about-staff-message .message-text .blue-color{
		font-size:14px;
		margin-bottom:1.8em;
	}
	.about-staff-message p:last-child{
		margin-bottom:0;
	}
	.about-staff-message .message-text{
		padding-bottom:0;
	}
	.staff-line{
		max-width:100%;
		margin:48px 0px;
	}
}



/*クリニック紹介・設備紹介の追加CSS*/
/*clinic-sec*/
.clinic-sec {
  padding-top: 60px;
  padding-bottom: 120px;
}

.clinic-sec .container {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}

.page-first-text-wrap .clinic-sec-ttl {
  color: #0152A4;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.08em;
}


.clinic-flex {
  max-width: 1100px;
  width: 91.84%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px 0;
  margin-top: 62px;
}

.clinic-box {
  width: 48%;
  box-sizing: border-box;
}

.clinic-box h3 {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 24px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.08em;
  text-align: left;
  position: relative;
  padding-left: 37px;
	padding-bottom:4px;
	border-bottom:1px solid #0152A4;;
}

.clinic-box h3::before {
  content: "";
  display: block;
  width: 28px;
  height: 19px;
  background-image: url("/wp-content/themes/nozaki/img/facility/facility-img.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 8.62px;
}


.clinic-sec-img1,
.clinic-sec-fv-img1 {
  width: 100%;
  max-width: 525px;
  display: block;
  margin-top: 32px;
}

/*facility-sec*/
.facility-sec {
  padding-bottom: 139px;
}

.facility-sec .container {
  max-width: 950px;
  width: 90%;
  margin: auto;
}

.facility-sec h2 {
  color: #0152A4;
  text-align: center;
  font-family: "Zen Old Mincho";
  font-size: 40px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.facility-sec .facility-ttl h3 {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 24px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.08em;
  margin-top: 32px;
  position: relative;
  text-align: left;
  padding-left: 37px;
	border-bottom:1px solid #0152A4;
	padding-bottom:4px;
}

.facility-sec .facility-ttl h3::after {
  content: "";
  display: block;
  width: 28px;
  height: 19px;
  background-image: url("/wp-content/themes/nozaki/img/facility/facility-img.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 8.6px;
  margin-bottom: 16px;
}

.facility-flex {
  max-width: 950px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.facility-flex .left {
  max-width: 350px;
  width: 38%;
}

.facility-flex .right {
  max-width: 562px;
  width: 62%;
}

.facility-flex img {
  max-width: 350px;
  width: 100%;
}

.facility-flex p {
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0.08em;
  margin-top: 32px;
}

.facility-flex p:first-child {
  margin-top: 0px;
}

@media (max-width:1024px){
	.page-first-text-wrap .clinic-sec-ttl,
	.facility-sec h2{
		font-size:32px;
	}
	
	.facility-sec .facility-ttl h3{
		max-width:90%;
		margin:auto;
	}
	
	.facility-flex{
		flex-direction:column;
		align-items:center;
		gap:24px 0px;
		margin-bottom:48px;
	}
	.facility-flex .left,
	.facility-flex .right{
		width:100%;
		max-width:90%;
	}
	.facility-flex img{
		max-width:100%;
	}
}

@media (max-width:600px){
	.clinic-sec,
	.facility-sec{
		padding:48px 0px;
	}
	
		.page-first-text-wrap .clinic-sec-ttl,
	.facility-sec h2{
		font-size:24px;
	}
	.page-first-text-wrap{
		max-width:100%;
	}
	
	.clinic-flex{
		margin-top:0;
		flex-direction:column;
		align-items:center;
		gap:24px 0px;
	}
	.clinic-box{
		width:100%;
		max-width:100%;
	}
	.clinic-box h3,
	.facility-sec .facility-ttl h3{
		font-size:20px;
		padding-bottom:8px;
	}
	.clinic-box h3::before{
		top:42.5%;
	}
	
	.clinic-sec-img1, .clinic-sec-fv-img1{
		margin-top:12px;
	}
	.facility-sec .facility-ttl h3{
		max-width:100%;
		line-height:1.5;
	}
	.facility-flex .left, .facility-flex .right{
		max-width:100%;
	}
	.facility-sec .facility-ttl h3::before{
		display:none;
	}
	.facility-sec .facility-ttl h3.two-line::after{
		top:22.5%;
		margin-bottom:0;
	}
	.facility-sec .facility-ttl h3::after{
		top:40%;
	}
	
	.facility-flex p{
		text-align:left;
		font-size:15px;
		margin-top:1.8em;
	}
	.facility-flex.last{
		margin-bottom:0;
	}
}

/*プライバシーポリシーのCSS*/
/*privacy-sec*/
.privacy-page {
  padding-top: 100px;
  padding-bottom: 120px;
}

.privacy-page .container {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}

.privacy-page p {
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
}

.privacy-page h2 {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 24px;
  font-weight: 900;
  line-height: 200%;
  margin-top: 48px;
  position: relative;
  margin-left: 15px;
  margin-bottom: 24px;
}

.privacy-page h2::before {
  position: absolute;
  content: "";
  top: 0;
  left: -15px;
  width: 3px;
  height:100%;
  background: #0152A4;
}

.privacy-ttl p {
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
}



.privacy-page ul {
  margin: 0px;
  padding: 0px;
}

.privacy-page ul li {
  margin-left: 18px;
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
	list-style:none;
	margin:0;
}

.privacy-contact-box {
  margin-top: 19px;
}

.privacy-contact-box p{
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  display: block;
}
.privacy-page p,
.privacy-page ul li,
.privacy-page span,
.privacy-page a{
font-family: "Zen Old Mincho",serif;
	font-weight:400;
}
@media (max-width:1024px){
	.privacy-page{
		padding-bottom:0;
	}
}

@media (max-width:600px){
	.privacy-page h2{
		font-size:18px;
	}
	
	.privacy-page p,
	.privacy-page ul li,
	.privacy-page span,
	.privacy-page a{
		font-size:14px;
		
	}
}

/*サイトポリシーのCSS*/
/*site-polisy*/
.site-sec {
  padding-top: 100px;
  padding-bottom: 120px;
}

.site-sec .container {
  max-width: 1124px;
  width: 90%;
  margin: auto;
}

.site-sec .blue-color {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.08em;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.site-sec .site-text {
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.08em;
}

.site-sec .number {
  color: #000;
  font-family: "Zen Old Mincho";
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.08em;
  margin-right:15px;
}

.site-sec .site-ttl h2 {
  color: #0152A4;
  font-family: "Zen Old Mincho";
  font-size: 24px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.08em;
  margin-top: 48px;
  margin-bottom: 24px;
  position: relative;
  padding-left:18px;
}

.site-sec .site-ttl h2::before {
  position: absolute;
  content: "";
  top: 0;
  left:3px;
  width: 3px;
  height:100%;
  background: #0152A4;
}

.site-sec .site-ttl p,
.policy-list li,
.site-sec .privacy-contact-box p{
  color: #000;
  font-family: "Zen Old Mincho",serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.08em;
  margin-top: 11px;
}
.policy-list{
  padding:0;
  margin-left:1.4em;
}

@media (max-width:1024px){
	.site-sec{
		padding:60px 0px;
	}
}
@media (max-width:600px){
	.site-sec .site-ttl h2{
		font-size:18px;
	}
	.site-sec .site-ttl p,
	.policy-list li,
	.site-sec a,
	.site-sec .number,
	.privacy-contact-box p,
	.site-sec .privacy-contact-box p{
		font-size:14px;
	}
	.site-sec .number{
		margin-right:5px;
	}
}

/*Page*/
.site-main{
	padding:80px 0px;
	padding-bottom:32px;
	max-width:1100px;
	margin:auto;
}

.entry-content{
	padding:0px 4%;
}

.entry-content h2{
	margin-top:48px;
	font-size:32px;
	padding-bottom:5px;
	border-bottom:2px solid #0052A4;
	margin-bottom:24px;
	color:#0052A4;
}

.entry-content h3{
	font-size:28px;
	color:#0052A4;
	border-left:5px solid #0052A4;
	padding-left:10px;
	margin-bottom:24px;
	margin-top:40px;
}

.entry-content{
	line-height:1.8;
}
.entry-content p{
	margin-bottom:1.8em;
}

@media (max-width:600px){
	.entry-content h2{
		font-size:24px;
	}
	.entry-content h3{
		font-size:20px;
	}
	.site-main{
		padding-top:48px;
	}
	.entry-content p{
		font-size:15px;
	}
}


/*hover*/
a:hover{
	cursor:pointer !important;
}
a:hover img{
	cursor:pointer !important;
}