@charset "UTF-8";
/*---------------------------------
  basic
---------------------------------*/
html {
	font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
	color: #333;
  /*font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;*/
  font-family: 'Noto Sans Japanese', serif;
  font-size: 1.6em;
  font-weight: 400;
	line-height: 1.8em;
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5 {
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

ol,ul,li {
	list-style: none;
}

i {
	vertical-align: middle;
	margin: 5px;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #dfe1e5;
}

::-moz-selection {
	background: #dfe1e5;
}

@media screen and (max-width: 896px) {	
	body {
		font-size: 1.4em;
		min-width: 300px;
	}
}

/*---------------------------------
  link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #333;
	text-decoration: none;
}

/* icon forward */
.hvr-icon-forward {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-right: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.1s;
}

.hvr-icon-forward:before {
	content: "\f105";
	position: absolute;
	right: 1em;
	padding: 0 1px;
	font-family: 'Font Awesome 5 Free';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-forward:hover:before,
.hvr-icon-forward:focus:before,
.hvr-icon-forward:active:before {
	-webkit-transform: translateX(4px);
	transform: translateX(4px);
}

.hvr-icon-forward:hover {
	opacity: 0.8;
	transition: 0.3s;
}

/* icon back */
.hvr-icon-back {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	position: relative;
	padding-left: 0;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}

.hvr-icon-back:before {
	content: "\f104";
	position: absolute;
	left: 1em;
	padding: 0 1px;
	font-family: 'Font Awesome 5 Free';
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-transition-duration: 0.1s;
	transition-duration: 0.3s;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.hvr-icon-back:hover:before,
.hvr-icon-back:focus:before,
.hvr-icon-back:active:before {
	-webkit-transform: translateX(-4px);
	transform: translateX(-4px);
}

/* zoom img */
.zoom_img img {
	width: 100%;
	display: block;
	transition: 0.3s;
}

.zoom_img img:hover {
	transform: scale(1.1);
	transition: 0.3s;
}

/*---------------------------------
  hidden
---------------------------------*/
@media screen and (min-width: 896px) {
	.pc_hidden {
		display: none;
	}
}

@media screen and (max-width: 896px) {
	.tab_hidden {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.sp_hidden {
		display: none;
	}
}

/*---------------------------------
  common
---------------------------------*/
.wrapper {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 10px;
}

.index_wrap h2 {
  font-size: 2.4rem;
  line-height: 1.8em;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 3.5em;
  position: relative;
}

.index_wrap h2:before {
  content: "";
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #1da6d5;
  border-radius: 2px;
}

.index_wrap h2 span {
  color: #1da6d5;
  font-size: 1.4rem;
  display: block;
}

.page_wrap h2 {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.8em;
  letter-spacing: 0.1em;
  background: #e4f5ff;
  margin-bottom: 4em;
  padding: 2em;
}

.page_wrap h2 span {
  color: #1da6d5;
  font-size: 1.4rem;
  display: block;
}

.page_content h3 {
  font-size: 2.1rem;
  border-left: solid 5px #1da6d5;
  margin-bottom: 3em;
  padding: 0.5em 1em;
}

.text_box p:nth-child(n+2) {
  margin-top: 1em;
}

@media print, screen and (max-width: 896px) {
  .index_wrap h2 {
    font-size: 2.1rem;
    margin-bottom: 4em;
  }
  
  .index_wrap h2 span {
    font-size: 1.2rem;
  }
  
  .page_wrap h2 {
    font-size: 2.1rem;
    margin-bottom: 3em;
    padding: 1.5em;
  }
  
  .page_wrap h2 span {
    font-size: 1.2rem;
  }
  
  .page_content h3 {
    font-size: 1.8rem;
    margin-bottom: 2em;
  }
}

@media print, screen and (max-width: 480px) {
  .index_wrap h2 {
    font-size: 1.6rem;
  }
  
  .index_wrap h2 span {
    font-size: 1rem;
  }
  
  .page_wrap h2 {
    font-size: 1.8rem;
  }
  
  .page_wrap h2 span {
    font-size: 1rem;
  }
  
  .page_content h3 {
    font-size: 1.6rem;
  }
}

/*---------------------------------
  header
---------------------------------*/
header {
  padding: 1em 3em;
}

.header_phone {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 1em;
}

.header_phone p:first-of-type {
  font-size: 2.1rem;
  font-weight: 600;
}

.header_phone p:first-of-type i {
  color: #0186d2;
}

.header_phone p:last-of-type {
  color: #999;
  font-size: 1.2rem;
  margin-left: 1em;
}

.header_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header_content h1 {
  max-width: 500px;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-right: auto;
}

.header_content h1 img:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.header_content sitemap_wrap {
  display: flex;
  flex-wrap: wrap;
  /*align-items: center;*/
  justify-content: flex-end;
}

.header_content li a {
  color: #0186d2;
  font-weight: 500;
  margin: 0 1em;
}

.header_content li a:hover {
  color: #01669f;
  transition: 0.3s;
}

.header_content li:last-child a {
  width: 180px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 3px;
  background: #0186d2;
  display: block;
  margin-right: 0;
  margin-left: auto;
}

.header_content li:last-child a i {
  font-size: 2.1rem;
  vertical-align: sub;
  margin-right: 0.5em;
}

.header_content li:last-child a:hover {
  background: #0170b0;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  header {
    padding: 1em;
  }
  
  .header_content h1 {
    max-width: 380px;
  }
}

@media print, screen and (max-width: 480px) {
  .header_content h1 {
    max-width: 260px;
  }
  
  .burger_area p {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
	.header_content > div {
    display: none;
  }
}

@media screen and (min-width: 1201px) {
	.burger_area {
    display: none;
  }
}

/*---------------------------------
  burger menu
---------------------------------*/
.burger_area {
	position: absolute;
	top: 5px;
	right: 0;
}

.btn_burger {
	display: flex;
	justify-content: flex-end;
}

.btn_burger a {
  z-index: 20;
  position: relative;
  width: 30px;
  height: 55px;
	display: block;
  cursor: pointer;
	margin: 15px;
}

.btn_burger a,
.btn_burger a span {
	display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.btn_burger a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: #1da6d5;
  border-radius: 4px;
}

.btn_burger a span:nth-of-type(1) {
  top: 0;
}

.btn_burger a span:nth-of-type(2) {
  top: 11px;
}

.btn_burger a span:nth-of-type(3) {
  top: 22px;
}

.btn_burger a p {
  color: #0186d2;
  font-size: 1rem;
  position: absolute;
  bottom: 0;
}

.btn_burger a.active span:nth-of-type(1) {
  background: #fff;
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

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

.btn_burger a.active span:nth-of-type(3) {
  background: #fff;
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

.burger {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 10;
  background: rgba(1,134,210,0.9);
}

.burger.open {
	display: block;
}

.burger.close {
	display: none;
}

.burger_menu {
	height: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.burger_menu li {
	font-weight: 600;
  display: block;
  margin: 2em;
}
	
.burger_menu li:before {
	color: #fff;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	vertical-align: middle;
	margin-right: 10px;
}

.burger_menu li a {
  color: #fff !important;
}

/*---------------------------------
  slide
---------------------------------*/
.slide {
	overflow: hidden;
}

.slide_inner {
	max-width: 1100px;
	margin: 0 auto;
}

.slide img {
	width: 100%;
	height: 600px;
	object-fit: cover;
}

.slide .slick-list {
	overflow: visible !important;
}

.slide .slick-slide {
	opacity: 0.5;
	transition: 0.5s;
}

.slide .slick-slide:focus {
	outline: none;
}

.slide .slick-now {
	opacity: 1;
}

.slick-arrow {
	z-index: 5;
}

.slick-prev:before,
.slick-next:before {
	font-family: "Material Icons" !important;
	font-size: 50px !important;
	opacity: 1 !important;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  color: #333;
}

.slick-prev {
	left: 0 !important;
}

.slick-prev:before {
  content: "\e314" !important;
}

.slick-next {
  right: 0 !important;
}

.slick-next:before {
  content: "\e315" !important;
}

.slick-dots li button:before {
  content: '\e3fa' !important;
  font-family: "Material Icons" !important;
  font-size: 12px !important;
  line-height: 20px;
  color: #dfe1e5;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li button:hover:before {
  color: #999;
  opacity: 0.8;
}

.slick-dots li.slick-active button:before {
  opacity: 1;
  color: #333;
}

@media only screen and (max-width: 896px) {
	.slide_inner {
		width: auto;
	}
	
	.slide_inner img {
		width: 100%;
		height: auto;
	}
}

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

  index

---------------------------------*/
/*---------------------------------
  catch
---------------------------------*/
.catch_wrap {
  width: 100%;
  background:linear-gradient(90deg,#1da6d5 0%,#1da6d5 60%,rgba(255,255,255,0) 60%,rgba(255,255,255,0) 100%);
  margin-top: -90px;
  padding: 2em;
  z-index: 1;
  position: absolute;
}

.catch_wrap h2 {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.8em;
}

@media print, screen and (max-width: 896px) {
  .catch_wrap {
    background:linear-gradient(90deg,#1da6d5 0%,#1da6d5 80%,rgba(255,255,255,0) 80%,rgba(255,255,255,0) 100%);
    margin-top: -70px;
    padding: 1.5em 1em;
  }
  
  .catch_wrap h2 {
    font-size: 2.1rem;
  }
}

@media print, screen and (max-width: 480px) {
  .catch_wrap {
    margin-top: -50px;
    padding: 1em 0.5em;
  }
  
  .catch_wrap h2 {
    font-size: 1.6rem;
  }
}

/*---------------------------------
  concept
---------------------------------*/
.concept_wrap {
  text-align: center;
  margin-top: 10em;
}

.concept_wrap div p {
  font-size: 1.8rem;
  line-height: 2.5em;
}

.concept_wrap div p:nth-of-type(n+2) {
  margin-top: 2em;
}

.concept_wrap div p span {
  color: #0186d2;
  font-weight: 500;
}

.concept_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 2em;
}

.concept_wrap li {
  width: 30%;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-weight: 500;
  border-radius: 25px;
  background: #1da6d5;
  margin-top: 2em;
  position: relative;
}

.concept_wrap li:before {
  content: "\f0a4";
	font-family: "Font Awesome 5 Free";
  font-size: 2.1rem;
  position: absolute;
  left: 30px;
}

@media print, screen and (max-width: 896px) {
  .concept_wrap {
    text-align: left;
    margin-top: 7em;
  }
  
  .concept_wrap div p {
    font-size: 1.4rem;
    line-height: 2em;
  }
  
  .concept_wrap br {
    display: none;
  }
  
  .concept_wrap ul {
    margin-top: 1em;
  }
  
  .concept_wrap li {
    width: 48%;
    text-align: center;
    margin-top: 1.5em;
  }
  
  .concept_wrap li:before {
    font-size: 1.8rem;
    left: 15px;
  }
}

@media print, screen and (max-width: 480px) {
  .concept_wrap ul {
    flex-direction: column;
  }
  
  .concept_wrap li {
    width: 100%;
  }
}

/*---------------------------------
  症状をチェック
---------------------------------*/
.trouble_wrap {
  background: #e4f5ff;
  position: relative;
  margin-top: 6em;
  padding: 6em 0 5em 0;
}

.trouble_wrap:before {
	content: "";
	position: absolute;
	top: 0;
  left: 50%;
	margin-left: -100px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 50px 100px 0 100px;
	border-color: #fff transparent transparent transparent;
}

.trouble_wrap .wrapper {
  position: relative;
}

.trouble_wrap .wrapper p {
  width: 250px;
  position: absolute;
  top: -8em;
  left: 10px;
}

.trouble_wrap .wrapper p img {
  width: 100%;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
}

.trouble_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.trouble_wrap li {
  width: 48%;
  font-weight: 500;
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 1px 8px rgba(194,233,255,1);
  margin-top: 1.5em;
  padding: 0.8em 1.5em 0.8em 3.3em;
  text-indent: -3.3em;
}

.trouble_wrap li:before {
  content: "\f14a";
	font-family: "Font Awesome 5 Free";
  color: #ff445f;
  font-size: 2.1rem;
  font-weight: 600;
  vertical-align: middle;
  margin-right: 10px;
  margin-left: 0.8em;
}

@media print, screen and (max-width: 896px) {
  .trouble_wrap:before {
	  margin-left: -80px;
    border-width: 40px 80px 0 80px;
  }
  
  .trouble_wrap .wrapper p {
    width: 130px;
  }
  
  .trouble_wrap .wrapper p img {
    height: 130px;
  }
  
  .trouble_wrap li:first-child,
  .trouble_wrap li:nth-child(2) {
    margin-top: 0;
  }
}

@media print, screen and (max-width: 480px) {
  .trouble_wrap li {
    width: 100%;
  }
  
  .trouble_wrap li:nth-child(n+2) {
    margin-top: 1em;
  }
}

/*---------------------------------
  選ばれる理由
---------------------------------*/
.reason_wrap {
  position: relative;
  padding: 7em 0 6em 0;
}

.reason_wrap:before {
	content: "";
	position: absolute;
	top: 0;
  left: 50%;
	margin-left: -100px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 50px 100px 0 100px;
	border-color: #e4f5ff transparent transparent transparent;
}

.reason_content {
  position: relative;
  margin-top: 7em;
}

.bg_reason_content {
  width: 60%;
  height: 600px;
  margin-left: auto;
  position: relative;
}

.bg_reason_content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -10;
}

.reason_content:nth-of-type(odd) .bg_reason_content img {
  right: 0;
}

.reason_content:nth-of-type(even) .bg_reason_content img {
  left: 0;
}

.reason_content .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.reason_content:nth-of-type(even) .wrapper {
  justify-content: flex-end;
}

.reason_box {
  max-width: 55%;
  background: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.1);
  padding: 3em 3em 4em 3em;
  margin: 5em 0;
  position: relative;
}

.reason_box:before,
.reason_box:after {
	content: "";
	width: 100px;
	height: 100px;
	position: absolute;
}

.reason_content:nth-of-type(odd) .reason_box:before {
	top: -3px;
	right: -3px;
}

.reason_content:nth-of-type(odd) .reason_box:after {
	bottom: -3px;
	left: -3px;
}

.reason_content:nth-of-type(even) .reason_box:before {
	top: -3px;
	left: -3px;
}

.reason_content:nth-of-type(even) .reason_box:after {
	bottom: -3px;
  right: -3px;
}

.reason_box p:first-of-type {
  font-size: 4.8rem;
  font-weight: 600;
  position: absolute;
  top: -60px;
}

.reason_box p:first-of-type span {
  font-size: 1.8rem;
  display: block;
  line-height: 2.5em;
}

.reason_content:nth-of-type(odd) .reason_box p:first-of-type {
  left: 0.5em;
}

.reason_content:nth-of-type(even) .reason_box p:first-of-type {
  right: 0.5em;
}

.reason_box h3 {
  line-height: 1.8em;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  margin: 1.5em 0;
}

.reason_box h3:before {
  content: "“";
  color: #ccc;
  margin-right: 10px;
}

.reason_box h3:after {
  content: "”";
  color: #ccc;
  margin-left: 10px;
}

.reason_box h4 {
  font-size: 1.8rem;
  margin-bottom: 1em;
}

.reason_box p:last-of-type {
  line-height: 2em;
}

.reason_box p:last-of-type span {
  color: #0186d2;
  font-weight: 600;
}

/* 個別スタイル */
.reason_01 .reason_box:before {
	border-right: solid 6px #ff445f;
	border-top: solid 6px #ff445f;
}

.reason_01 .reason_box:after {
	border-left: solid 6px #ff445f;
	border-bottom: solid 6px #ff445f;
}

.reason_01 p:first-of-type {
  color: #ff445f;
}

.reason_01 h3 span {
  color: #ff445f;
}

.reason_02 .bg_reason_content {
  margin-left: inherit;
  margin-right: auto;
}

.reason_02 .reason_box {
  margin-left: auto;
}

.reason_02 .reason_box:before {
	border-left: solid 6px #fd9735;
	border-top: solid 6px #fd9735;
}

.reason_02 .reason_box:after {
	border-right: solid 6px #fd9735;
	border-bottom: solid 6px #fd9735;
}

.reason_02 p:first-of-type {
  color: #fd9735;
}

.reason_02 h3 span {
  color: #fd9735;
}

.reason_03 .reason_box:before {
	border-right: solid 6px #0186d2;
	border-top: solid 6px #0186d2;
}

.reason_03 .reason_box:after {
	border-left: solid 6px #0186d2;
	border-bottom: solid 6px #0186d2;
}

.reason_03 p:first-of-type {
  color: #0186d2;
}

.reason_03 h3 span {
  color: #0186d2;
}

@media print, screen and (max-width: 896px) {
  .reason_wrap:before {
	  margin-left: -80px;
    border-width: 40px 80px 0 80px;
  }
  
  .bg_reason_content {
    width: 100%;
    height: 400px;
  }
  
  .bg_reason_content img {
    position: inherit;
  }
  
  .reason_content {
    margin-top: 5em;
  }
  
  .reason_content .wrapper {
    position: relative;
  }
  
  .reason_box {
    max-width: 100%;
    background: rgba(255,255,255,0.8);
    margin: 0 auto;
  }
  
  .reason_box h3 {
    font-size: 2.4rem;
    margin: 1em 0;
  }
  
  .reason_box h4 {
    font-size: 1.6rem;
  }
}

@media print, screen and (max-width: 480px) {
  .reason_wrap {
    padding: 5em 0 4em 0;
}

  .bg_reason_content {
    width: 100%;
    height: 200px;
  }
  
  .reason_content {
    margin-top: 4em;
  }
  
  .reason_box {
    padding: 2em;
  }
  
  .reason_box:before,
  .reason_box:after {
    width: 50px;
    height: 50px;
  }
  
  .reason_box p:first-of-type {
    font-size: 3.2rem;
    top: -40px;
  }
  
  .reason_box p:first-of-type span {
    font-size: 1.2rem;
  }
  
  .reason_box h3 {
    font-size: 1.8rem;
  }
  
  .reason_box h4 {
    font-size: 1.4rem;
  }
}

/*---------------------------------
  改善事例
---------------------------------*/
.example_wrap {
  background: #e4f5ff;
  padding: 5em 0;
}

.example_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.example_content div:first-of-type {
  width: 400px;
}

.example_box {
  width: calc(100% - 400px);
  padding-left: 2em;
}

.example_box h3 {
  font-size: 2.4rem;
  line-height: 1.5em;
  margin-bottom: 0.5em;
}

.example_box dl {
  display: flex;
  flex-wrap: wrap;
}

.example_box dl dt,
.example_box dl dd {
  padding: 0.2em 1em;
}

.example_box dl dt {
  font-weight: 500;
}

.example_box h4 {
  color: #fff;
  font-size: 2.1rem;
  text-align: center;
  border-radius: 3px;
  background: #1da6d5;
  margin-bottom: 0.5em;
  padding: 0.5em;
}

.example_carte dt,
.example_carte dd {
  margin-top: 0.5em;
}

.example_carte dt {
  width: 150px;
  color: #1b435d;
  text-align: center;
  background: #a8dee0;
}

.example_carte dd {
  width: calc(100% - 150px);
}

.example_hope {
  margin: 1em 0;
}

.example_hope dt {
  color: #1b435d;
  border: solid 2px #1b435d;
  background: #fff;
}

.example_trouble,
.example_result {
  align-items: center;
  border-radius: 3px;
  background: #a8dee0;
  padding: 1em 0;
}

.example_trouble dt,
.example_result dt {
  width: 150px;
  color: #1b435d;
  text-align: center;
}

.example_trouble dd,
.example_result dd {
  width: calc(100% - 150px);
  border-left: solid 1px #999;
}

.example_box p i {
  color: #1da6d5;
  line-height: 0.5em;
  text-align: center;
  font-size: 4.8rem;
  display: block;
  margin-bottom: 0.5em;
}

.example_result {
  border-radius: 3px;
  background: #fff;
  padding: 1em 0;
}

.example_next {
  font-size: 2.1rem;
  font-weight: 500;
  text-align: center;
  border: solid 2px #1da6d5;
  margin-top: 1em;
  padding: 0.5em 1em;
}

.example_next span {
  color: #1da6d5;
}

.example_box+ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3em;
}

.example_box+ul li {
  width: 23%;
  background: #ccc;
}

@media print, screen and (max-width: 896px) {
  .example_content {
    flex-direction: column;
  }
  
  .example_content div:first-of-type {
    width: 100%;
  }
  
  .example_box {
    width: 100%;
    margin-top: 1em;
    padding-left: 0;
  }
  
  .example_box h3 {
    font-size: 1.6rem;
  }
  
  .example_box h4 {
    font-size: 1.6rem;
  }
  
  .example_next {
    font-size: 1.6rem;
  }
  
  .example_box+ul li {
    width: 48%;
  }
  
  .example_box+ul li:nth-child(n+3) {
    margin-top: 1em;
  }
}

@media print, screen and (max-width: 480px) {
  .example_carte dt {
    width: 100px;
  }
  
  .example_carte dd {
    width: calc(100% - 100px);
  }
  
  .example_trouble dt,
  .example_trouble dd,
  .example_result dt,
  .example_result dd {
    width: 100%;
  }
  
  .example_trouble dd,
  .example_result dd {
    border-left: none;
  }
  
  .example_next span {
    display: block;
  }
}

/*---------------------------------
  price
---------------------------------*/
.price_wrap {
  margin-top: 4em;
}
.price_content h3 {
  text-align: center;
  margin-bottom: 2em;
}

.price_content h4 {
  color: #fff;
  font-size: 2.1rem;
  text-align: center;
  border-radius: 3px;
  background: #1da6d5;
  margin: 3em 0 1em 0;
  padding: 0.5em;
}

.price_content table {
  width: 100%;
}

.price_content table th,
.price_content table td {
  text-align: center;
  border: solid 1px #ccc;
  padding: 1em;
}

.price_content table th {
  color: #1da6d5;
}

.price_content table th:first-of-type {
  width: 300px;
}

.price_content dl {
  display: flex;
  flex-wrap: wrap;
  border: solid 1px #ccc;
}

.price_content dl dt,
.price_content dl dd {
  font-weight: 500;
  padding: 1em;
}

.price_first {
  text-align: center;
  border: solid 2px #ff445f;
  border-radius: 3px;
}

.price_first dt {
  width: 300px;
  color: #fff;
  background: #ff445f;
}

.price_first dd {
  width: calc(100% - 300px);
  color: #ff445f;
}

.price_content table+div {
  border: dashed 2px #1da6d5;
  margin-top: 2em;
  padding: 1em;
}

.price_content table+div p:last-of-type {
  color: #1da6d5;
  background: #e4f5ff;
  margin-top: 0.5em;
  padding: 0.5em 1em;
}

.price_content table:last-of-type+p {
  text-align: right;
  margin-top: 1em;
}

@media print, screen and (max-width: 896px) {
  .price_content h4 {
    font-size: 1.6rem;
    margin: 2em 0 1em 0;
  }
  
  .price_content table th:first-of-type {
    width: auto;
  }
  
  .price_first dt {
    width: 160px;
  }
  
  .price_first dd {
    width: calc(100% - 160px);
  }
}

/*---------------------------------
  about
---------------------------------*/
.about_wrap {
  margin-top: 5em;
}

.about_content > p {
  max-width: 600px;
	position: relative;
	display: block;
	padding: 1em;
	color: #ff445f;
  font-weight: 500;
	text-align: center;
	border: 3px solid #ff445f;
  border-radius: 5px;
  background: #fff;
	z-index: 0;
  margin: 0 auto;
}

.about_content > p:before {
	content: "";
	position: absolute;
	bottom: -8px; left: 50%;
	margin-left: -9px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 9px 9px 0 9px;
	border-color: #fff transparent transparent transparent;
	z-index: 0;
}

.about_content > p:after {
	content: "";
	position: absolute;
	bottom: -12px; left: 50%;
	margin-left: -10px;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #ff445f transparent transparent transparent;
	z-index: -1;
}

.about_box img {
  max-width: 500px;
  object-fit: cover;
  margin: 3em auto 2em auto;
  display: block;
}

.about_box p {
  text-align: center;
}

.about_box ul {
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin: 2em auto 0 auto;
}

.about_box ul li:first-child {
  font-size: 2.1rem;
  font-weight: 600;
}

.about_box ul li:first-child i {
  color: #0186d2;
}

.about_box ul li:last-child a {
  width: 180px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 3px;
  background: #0186d2;
  display: block;
}

.about_box ul li:last-child a i {
  font-size: 2.1rem;
  vertical-align: sub;
  margin-right: 0.5em;
}

.about_box ul li:last-child a:hover {
  background: #0170b0;
  transition: 0.3s;
}

.about_box+div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 4em;
}

.about_box+div iframe {
  width: 48%;
  height: 450px;
}

.about_box+div img {
  width: 48%;
  height: 450px;
  object-fit: cover;
  background: #ccc;
}

@media print, screen and (max-width: 896px) {
  .about_wrap {
    margin-top: 4em;
  }
  
  .about_content > p {
    max-width: 380px;
  }
  
  .about_content > p span {
    display: block;
  }
  
  .about_box img {
    max-width: 350px;
  }
  
  .about_box+div {
    flex-direction: column-reverse;
    margin-top: 3em;
  }
  
  .about_box+div iframe {
    width: 100%;
    height: 350px;
    margin-top: 2em;
  }
  
  .about_box+div img {
    width: 100%;
    height: 350px;
  }
}

@media print, screen and (max-width: 480px) {
  .about_box ul {
    flex-direction: column;
    justify-content: center;
  }
  
  .about_box ul li:last-child {
    width: 100%;
    margin-top: 1em;
  }
  
  .about_box ul li:last-child a {
    width: 90%;
    margin: 0 auto;
  }
}

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


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


/*---------------------------------
  お問い合わせ
---------------------------------*/
/*
.mailform {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	border-bottom: solid 1px #dfe1e5;
	margin: 3em 0;
}

.mailform dt,
.mailform dd {
	border-top: 1px solid #dfe1e5;
	padding: 15px 20px;
}

.mailform dt {
	width: 30%;
	font-weight: 500;
	display: flex;
	align-items: center;
}

.mailform dd {
	width: 70%;
}

.required,
.optional {
	width: 35px;
	height: 25px;
	line-height: 25px;
	color: #fff;
	font-size: 0.7em;
	font-weight: 500;
	text-align: center;
	border-radius: 3px;
	margin-right: 10px;
}

.required {
	background: #ff445f;
}

.optional {
	background: #dfe1e5;
}

.contact_category {
	display: flex;
	flex-wrap: wrap;
}

.contact_category label {
	width: 50%;
}

.contact_category label:nth-child(n+3) {
	margin-top: 15px;
}

.privacy > h5 {
	font-size: 1.2rem;
	margin: 15px 0 5px 0;
}

.privacy p,
.privacy li  {
	font-size: 1.2rem;
	line-height: 1.5em;
}

li.privacy > ul {
	margin-top: 10px;
}

li.privacy ul li {
  padding-left: 1em;
  text-indent: -1em;
	list-style: decimal inside;
}

.button:after {
  content: "\f055";
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  font-size: 1.8rem;
  position: absolute;
  right: 15px;
}

.button.active:after {
  content: "\f056";
	font-family: 'Font Awesome 5 Free';
	font-weight: 600;
}

.mailform+div {
	display: flex;
	justify-content: space-around;
}

@media screen and (max-width: 896px) {
  .mailform {
    flex-direction: column;
  }
  
	.mailform dt {
		padding: 1.5em 0.5em 0.5em 0.5em;
	}
	
	.mailform dd {
    border-top: none;
		padding: 0.5em 0.5em 1.5em 0.5em;
	}
	
	.mailform dt,
	.mailform dd {
		width: 100%;
	}
	
	.required,
	.optional {
		height: 20px;
		line-height: 20px;
	}
}
*/

/*---------------------------------
  form
---------------------------------*/
/*
button,
input,
select,
textarea {
	font-size: 100%;
  font-family: 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
}

input,
select,
textarea {
	border: solid 1px #dfe1e5;
	border-radius: 5px;
	-webkit-appearance: none;
	box-sizing: border-box;
}

input,
select {
	padding: 5px 10px;
}

textarea {
	max-width: 100%;
	min-width: 70%;
	min-height: 150px;
	padding: 10px;
}

.input_wide,
.mf {
	width: 70% !important;
}

.input_middle {
	width: 30% !important;
}

.postcord,
input[type="submit"],
input[type="reset"]  {
	color: #fff;
	font-weight: 600;
	cursor: pointer;
	border: none;
}

input[type="submit"],
input[type="reset"]  {
	width: 30%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	padding: 0;
}

input[type="submit"] {
	background: #1da6d5;
}

.postcord,
input[type="reset"] {
	background: #dfe1e5;
}

.postcord:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.button:hover  {
	opacity: 0.8;
	transition: 0.3s;
}

::-webkit-input-placeholder {
  color: #ddd;
  font-size: 1.4rem;
}

input[type="checkbox"],
input[type="radio"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
}

.label_list label {
	position: relative;
	display: block;
	word-break: break-all;
}

.label_list label input[type="checkbox"] + span,
.label_list label input[type="radio"] + span {
	position: relative;
	padding-left: 35px;
}

label {
	cursor: pointer;
}

.checkbox {
	margin-top: 5px;
}

.checkbox .label_list:nth-of-type(1) label input[type="checkbox"] + span::before {
	border-color: #dfe1e5;
}

.checkbox .label_list:nth-of-type(1) label input[type="checkbox"]:checked + span::before {
	border-color: #333;
}

.checkbox label input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.checkbox label input[type="checkbox"] + span::before, .checkbox label input[type="checkbox"] + span::after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}

.checkbox label input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: transparent;
	width: 25px;
	height: 25px;
	border: 3px #dfe1e5 solid;
	border-radius: 5px;
}

.checkbox label input[type="checkbox"] + span::after {
	z-index: 1;
	margin: 2px 8px;
	width: 10px;
	height: 15px;
}

.checkbox label input[type="checkbox"] + span::after {
	border: 4px solid #dfe1e5;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
		    transform: rotate(45deg);
}

.checkbox label input[type="checkbox"]:checked + span::after {
	border: 4px solid #ff445f;
	border-width: 0 4px 4px 0;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
		    transform: rotate(45deg);
}

.radio .label_list:nth-of-type(1) label input[type="radio"] + span::before {
	border-color: #dfe1e5;
}

.radio label span,
.checkbox label span {
	display: inline-block;
}

.radio label input[type="radio"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

.radio label input[type="radio"] + span::before {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 25px;
}

.radio label input[type="radio"] + span::before {
	width: 25px;
	height: 25px;
	z-index: 0;
	top: 0;
	left: 0;
	background-color: transparent;
	border: solid 2px #dfe1e5;
}

.radio label input[type="radio"] + span::before {
	border-width: 8px;
	background: #fff;
	border-color: #dfe1e5 !important;
}

.radio label input[type="radio"]:checked + span::before {
	border-width: 8px;
	border-color: #ff445f !important;
}

.selectbox {
  width: 70%;
  position: relative;
}

.selectbox select {
  width: 100%;
}

.selectbox::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 20px;
  top: 40%;
  border-bottom: #333 2px solid;
  border-right: #333 2px solid;
  transform: rotate(45deg)translateY(-30%);
}

.accordion {
  width: 100%;
  margin-bottom: 20px !important;
}

.button {
  width: 100%;
  color: #1da6d5;
	font-weight: 600;
	border: solid 1px #1da6d5;
	border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
  padding: 10px 15px;
}

.accordion_contents {
	border-left: solid 1px #dfe1e5;
	border-right: solid 1px #dfe1e5;
	border-bottom: solid 1px #dfe1e5;
	background: #fff;
	padding: 15px;
}

@media screen and (max-width: 896px) {
	input,
  select {
		font-size: 16px;
		padding: 10px;
	}
	
  .selectbox,
	.input_wide,
	.mf {
		width: 100% !important;
	}
	
	.input_middle {
		width: 50% !important;
	}
	
	textarea {
	  min-width: 100%;
		font-size: 16px;
	}
	
	input[type="submit"],
	input[type="reset"]  {
		width: 48%;
		font-size: 1.4rem;
	}
}
*/

/*---------------------------------
  thanks
---------------------------------*/
.thanks p:nth-last-child(2)	{
	font-size: 2.4rem;
	font-weight: 600;
}

.thanks p:nth-last-child(2):before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  transform: scale(-1, 1);
  display: inline-block;
	vertical-align: middle;
	margin-right: 5px;
}

/*---------------------------------
  sitemap
---------------------------------*/
/*
.sitemap_wrap {
  background: #e4f5ff;
  margin-top: 5em;
  padding: 1em;
}

.sitemap_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.sitemap_wrap li a {
  color: #0186d2;
  font-size: 1.4rem;
}

.sitemap_wrap li:before {
  content: "\f138";
  color: #0186d2;
	font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  font-weight: 600;
  margin-right: 5px;
}

.sitemap_wrap li a:hover {
  text-decoration: underline;
}

@media print, screen and (max-width: 896px) {
  .sitemap_wrap li {
    width: 30%;
  }
}

@media print, screen and (max-width: 480px) {
  .sitemap_wrap {
    margin-top: 4em;
  }
  
  .sitemap_wrap li {
    width: 48%;
  }
  
  .sitemap_wrap li a {
    font-size: 1.2rem;
  }
}
*/

/*---------------------------------
  footer
---------------------------------*/
footer {
  font-size: 1.4rem;
  margin-top: 5em;
  padding: 3em 0;
}

footer .wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer img {
  max-width: 400px;
  margin-bottom: 1em;
}

footer ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

footer ul li:first-child {
  font-size: 2.1rem;
  font-weight: 600;
  margin-right: 1em;
}

footer ul li:first-child i {
  color: #0186d2;
}

footer ul li:last-child a {
  width: 180px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 3px;
  background: #0186d2;
  display: block;
}

footer ul li:last-child a i {
  font-size: 2.1rem;
  vertical-align: sub;
  margin-right: 0.5em;
}

footer ul li:last-child a:hover {
  background: #0170b0;
  transition: 0.3s;
}

@media print, screen and (max-width: 896px) {
  footer .wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
  
  footer img {
    max-width: 350px;
  }
  
  footer ul {
    margin-top: 1.5em;
  }
}

@media print, screen and (max-width: 480px) {
  footer ul {
    width: 100%;
    flex-direction: column;
  }
  
  footer ul li:last-child {
    width: 100%;
    margin-top: 1em;
  }
  
  footer ul li:last-child a {
    width: 90%;
    margin: 0 auto;
  }
}

address {
	color: #fff;
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
	background: #1da6d5;
	padding: 20px 0;
}

/*---------------------------------
  pagetop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 50px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 3.6rem;
	text-align: center;
	background: rgba(1,134,210,0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 1000;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

@media screen and (max-width: 896px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 40px;
		font-size: 2.8rem;
		right: 10px;
		bottom: 10px;
	}
}

/*---------------------------------
  2022.09.30 料金修正
---------------------------------*/
.course_wrap {
  padding-top: 5em;
}

.course_content h3 {
  font-size: 21px;
  text-align: center;
  margin: 3em 0 2em 0;
}

.course_box {
  display: flex;
  flex-wrap: wrap;
}

.course_inner {
  width: calc(100% / 3 - 1em);
  margin: 0 0.5em;
}

.course_inner h4 {
  color: #fff;
  font-size: 21px;
  text-align: center;
  padding: 0.5em;
}

.course_inner:first-of-type h4 {
  background: #82d4df;
}

.course_inner:nth-of-type(2) h4 {
  background: #2ea5b7;
}

.course_inner:last-of-type h4 {
  background: #00b0f0;
}

.course_inner dl {
  padding: 0.5em;
}

.course_inner dl dt,
.course_inner dl dd {
  padding: 0.5em 0;
}

.course_inner dl dt {
  font-size: 21px;
  font-weight: 600;
}

.course_inner dl dd:first-of-type {
  font-size: 24px;
  font-weight: 600;
}

.course_inner dl dd:first-of-type span {
  color: #ff445f;
}

.course_inner dl dd:last-of-type {
  font-size: 18px;
}

.course_inner dl dd:last-of-type p {
  font-weight: 600;
}

.course_inner dl dd:last-of-type ul li:before {
  content: "○";
  display: inline-block;
  margin-right: 5px;
}

@media print, screen and (max-width: 896px) {
  .course_box {
    flex-direction: column;
  }
  
  .course_inner {
    width: 100%;
    margin: 0;
  }
}

@media print, screen and (max-width: 480px) {
  .course_content h3 {
    font-size: 16px;
  }
  
  .course_inner h4 {
    font-size: 16px;
  }
  
  .course_inner dl dt {
    font-size: 16px;
  }
  
  .course_inner dl dd:first-of-type {
    font-size: 18px;
  }
  
  .course_inner dl dd:last-of-type {
    font-size: 14px;
  }
}

/*---------------------------------
  2025.08.27 料金修正
---------------------------------*/
.course_content h3 {
  margin-bottom: 0.5em;
}

.course_content h3+p {
  text-align: center;
  margin-bottom: 3em;
}
.course_inner dt span {
  color: #ff445f;
}

.course_inner dt em {
  font-style: normal;
  font-size: 16px;
  text-decoration: line-through;
}

.addition_course_box {
  margin-bottom: 3em;
}

.addition_course_box h4 {
  color: #333;
}

.addition_course_box .course_inner:first-of-type h4 {
    background: #fef6d5;
}

.addition_course_box .course_inner:nth-of-type(2) h4 {
    background: #def4f7;
}

.addition_course_box .course_inner:last-of-type h4 {
    background: #e3edad;
}
