@charset "UTF-8";
/*---------------------------------
  Basic
---------------------------------*/
body {
	color: #2c3e57;
  font-family: "Roboto", "Noto Sans JP", 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
  font-size: clamp(14px, 2.5vw, 16px);
  font-weight: 500;
	line-height: 2em;
	margin: 0;
	padding: 0;
  position: relative;
}

h1,h2,h3,h4,h5 {
  letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
}

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

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

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

i {
	vertical-align: middle;
}

table {
  width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

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

::selection {
	background: #bedef9;
}

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

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

/*---------------------------------
  ScrollTrigger
---------------------------------*/
.invisible {
  transition: all 1s ease;
  opacity: 0.0;
}

.visible {
  transition: all 1s ease;
  opacity: 1.0;
}

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

.btn {
	color: #fff !important;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	border-radius: 3px;
	padding: 0.5em 1.5em;
	display: block;
	position: relative;
}

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

.btn_forward:after {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
  font-size: clamp(12px, 2.5vw, 14px);
	position: absolute;
	right: 1.3em;
}

.btn_forward:hover:after {
	right: 1em;
	transition: 0.3s;
}

.btn_back:after {
	content: "\f104";
	font-family: 'Font Awesome 5 Free';
  font-size: clamp(12px, 2.5vw, 14px);
	position: absolute;
	left: 1.3em;
}

.btn_back:hover:after {
	left: 1em;
	transition: 0.3s;
}

/*---------------------------------
  Common
---------------------------------*/
.contents_wrap {
  margin-top: 7em;
}

.wrapper {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1em;
}

.contents_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 3em;
  position: relative;
}

.contents_title:before,
.contents_title:after {
  content: '';
  width: 2px;
  height: 95px;
  background-color: #004098;
  display: block;
}

.contents_title:before {
  margin-right: 3em;
  transform: rotate(-15deg);
}

.contents_title:after {
  margin-left: 3em;
  transform: rotate(15deg);
}

.contents_title h2 {
  color: #004098;
  font-size: clamp(18px, 3vw, 36px);
  text-align: center;
  padding-bottom: 0.5em;
}

.contents_title h2 span {
  color: #41a2eb;
  font-size: clamp(16px, 2.5vw, 21px);
  margin-bottom: 1em;
  display: block;
}

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

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

@media print, screen and (max-width: 896px) {
  .contents_wrap {
    margin-top: 5em;
  }
  
  .wrapper {
    padding: 0 4%;
  }
  
  .contents_title:before,
  .contents_title:after {
    height: 65px;
  }
  
  .contents_title:before {
    margin-right: 1.5em;
    transform: rotate(-10deg);
  }
  
  .contents_title:after {
    margin-left: 1.5em;
    transform: rotate(10deg);
  }
  
  .contents_title h2 span {
    margin-bottom: 0.5em;
  }
}

@media print, screen and (max-width: 896px) {
  .contents_title h2 span {
    margin-bottom: 0.2em;
  }
}

/*---------------------------------
  Hero
---------------------------------*/
.hero_wrap {
  width: 100%;
  overflow: hidden;
	font-weight: 600;
	position: relative;
	padding: 4em 0 8em 4%;
}

.hero_bg {
	width: 75%;
	height: 100%;
  border-radius: 0 0 0 5em;
  background: #dff2fa;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -2;
}

.hero_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.hero_content h1 {
  width: 20%;
  min-width: 100px;
  max-width: 135px;
  position: absolute;
  top: 0;
  left: 0;
}

.hero_box {
  width: 50%;
  max-width: 750px;
  padding-top: 5em;
  padding-right: 1em;
  position: relative;
}

.hero_box h2 {
  color: #004098;
  font-size: clamp(24px, 3.5vw, 58px);
  font-weight: 800;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  margin-top: 1em;
}

.hero_box h2 span {
  width: fit-content;
  display: block;
  position: relative;
}

.hero_box h2 span:after {
  content: '';
  /*width: 100%;*/
  width: 0;
  height: 20px;
  background: #fff584;
  display: block;
  position: absolute;
  bottom: 0.3em;
  left: 0;
  z-index: -1;
  animation: slide-in 1.5s ease forwards;
  animation-delay: 1s;
}

@keyframes slide-in {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.hero_box h3 {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.8em;
  margin-top: 1em;
}

.hero_box ul {
  max-width: 90%;
  margin-top: 2em;
}

.hero_box ul li {
  color: #fff;
  font-size: clamp(12px, 1.5vw, 16px);
  text-align: center;
  border-radius: 0.5em;
  background: #41a2eb;
  display: inline-block;
  margin: 0.5em 0.5em 0.5em 0;
  padding: 0.8em 1.5em;
}

.hero_illust {
  width: 25%;
  min-width: 150px;
  position: absolute;
  bottom: -4em;
  right: 1em;
}

.hero_thumb {
	width: 50vw;
	margin-right: calc(50% - 50vw);
	display: flex;
	flex-wrap: wrap;
}

.hero_thumb div {
	width: 50%;
}

.hero_thumb div ul li {
	margin: 10px;
}

.hero_thumb_left ul li:first-of-type {
	margin-bottom: 20px;
}

.hero_thumb_left ul li img {
	height: 270px;
	object-fit: cover;
	border-radius: 1em;
}

.hero_thumb_right ul li img {
	height: 560px;
	object-fit: cover;
	border-radius: 1em 0 0 1em;
}

@media print, screen and (max-width: 896px) {
  .hero_content {
    flex-direction: column-reverse;
  }
  
  .hero_box {
    width: 100%;
    padding-top: 0;
  }
  
  .hero_illust {
    min-width: inherit;
    top: -4em;
    bottom: inherit;
    z-index: 1;
  }
  
  .hero_thumb {
    width: 100%;
    margin-right: calc(50% - 50vw + 10px - 4%);
    padding-top: 6em;
  }
  
  .hero_thumb_left ul li img {
    height: 150px;
  }
  
  .hero_thumb_right ul li img {
    height: 320px;
  }
}

/*---------------------------------
  Trouble
---------------------------------*/
.trouble_wrap {
  padding-top: 7em;
  position: relative;
}

.trouble_bg {
	width: 75%;
	height: 100%;
  border-radius: 0 5em 0 0;
	background: #41a2eb;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
}

.trouble_content {
  border-radius: 3em 3em 0 0;
  background: #fff;
  margin: 0 auto;
  padding: 5em 4% 2em 4%;
}

.trouble_content .text_box p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 2em;
  text-align: center;
}

.trouble_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3em;
}

.trouble_inner {
  width: calc(100% / 3 - 2em);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  margin: 0.5em 1em;
}

.trouble_inner h3 {
  color: #41a2eb;
  font-size: clamp(14px, 1.9vw, 18px);
  text-align: center;
  line-height: 1.8em;
  border-radius: 0.5em;
  background: #dff2fa;
  margin-bottom: 1.5em;
  padding: 0.8em 1em;
}

.trouble_thumb {
  max-width: 45%;
  margin: 0 auto;
  position: relative;
}

.trouble_thumb:before,
.trouble_thumb:after {
	content: "\f111";
	font-family: 'Font Awesome 5 Free';
  color: #dff2fa;
  font-weight: 600;
  position: absolute;
}

.trouble_thumb:before {
  font-size: clamp(10px, 2vw, 12px);
  right: -0.5em;
  top: 0;
}

.trouble_thumb:after {
  font-size: clamp(14px, 2vw, 16px);
  right: -1.3em;
  top: -1.3em;
}

@media print, screen and (max-width: 896px) {
  .trouble_box {
    flex-direction: column;
  }
  
  .trouble_inner {
    width: 100%;
    align-items: center;
    flex-direction: row-reverse;
  }
  
  .trouble_inner h3 {
    width: calc(100% - 100px);
    text-align: left;
  }
  
  
  .trouble_inner h3 br {
    display: none;
  }
  
  .trouble_thumb {
    max-width: 60px;
    margin: inherit;
  }
}

@media print, screen and (max-width: 896px) {
  .trouble_content {
    border-radius: 2em 2em 0 0;
  }
  
  .trouble_content .text_box p {
    text-align: left;
  }
}

/*---------------------------------
  Reason
---------------------------------*/
.reason_wrap {
	position: relative;
	padding: 7em 0;
}

.reason_bg {
	width: 75%;
	height: 100%;
  border-radius: 5em 0 0 5em;
	background: #f2f4f5;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -2;
}

.reason_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 7em;
}

.reason_inner {
  width: 46%;
  border-radius: 1em;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  position: relative;
}

.reason_inner:nth-of-type(even) {
  margin-top: 7em;
}

.reason_inner > p {
  color: #004098;
  font-size: clamp(42px, 6vw, 58px);
  position: absolute;
  top: -0.8em;
  right: 4%;
}

.reason_inner > p span {
  color: #41a2eb;
  font-size: clamp(12px, 2.5vw, 18px);
  letter-spacing: 0.1em;
  vertical-align: text-top;
  margin-right: 0.5em;
  padding-top: 0.5em;
  display: inline-block;
}

.reason_thumb img {
  height: 250px;
  object-fit: cover;
  border-radius: 1em 1em 0 0;
}

.reason_text {
  border-radius: 0 0 1em 1em;
  position: relative;
  padding: 2em 2em 3em 2em;
}

.reason_illust {
  width: 18%;
  position: absolute;
  top: -2em;
  right: 4%;
}

.reason_text h3 {
  width: fit-content;
  color: #004098;
  font-size: clamp(16px, 2.5vw, 28px);
  text-align: center;
  line-height: 1.5em;
  margin: 0 auto 1em auto;
  position: relative;
  z-index: 1;
}

.reason_text h3 span:first-of-type {
  color: #41a2eb;
  font-size: clamp(14px, 2vw, 18px);
  display: block;
}

.reason_text h3 span:last-of-type {
  background: linear-gradient(transparent 60%, #fff584 60%);
  position: relative;
  display: block;
}

.reason_caution {
  color: #9aa0a6;
  font-size: clamp(12px, 2.5vw, 14px);
  line-height: 1.8em;
  text-indent: -1em;
  margin-top: 0.5em;
  padding-left: 1em;
}

.reason_caution:before {
  content: '※';
}

@media print, screen and (max-width: 896px) {
  .reason_box {
    flex-direction: column;
    margin-top: 5em;
  }
  
  .reason_inner {
    width: 100%;
  }
  
  .reason_inner:nth-of-type(n+2) {
    margin-top: 5em !important;
  }
}

@media print, screen and (max-width: 480px) {
  .reason_thumb img {
    height: 250px;
  }
}

/*---------------------------------
  Question
---------------------------------*/
.question_wrap {
  background: #dff2fa;
  padding: 7em 0;
}

.question_content {
  position: relative;
}

.question_thumb {
  width: 16%;
  min-width: 160px;
  position: absolute;
  right: 0;
}

.question_inner {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

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

.question_inner dt {
  width: 100%;
  font-size: clamp(14px, 2vw, 18px);
	font-weight: 600;
	border-radius: 0.5em;
  background: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 1em 2.5em 1em 2em;
}

.question_inner dt:hover {
  opacity: 0.85;
  transition: 0.3s;
}

.question_inner dt:before {
  content: 'Q';
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: #41a2eb;
  display: inline-block;
  margin-right: 10px;
}

.question_inner dt:after {
  content: "\2b";
  color: #2c3e57;
  font-family: 'Font Awesome 5 Free';
  font-size: 18px;
  position: absolute;
  right: 2em;
}

.question_inner dt.active {
  border-radius: 5px 5px 0 0;
}

.question_inner dt.active:after {
  content: "\f068";
	font-family: 'Font Awesome 5 Free';
}

.question_inner dt p {
  width: calc(100% - 1em - 40px);
}

.question_inner dd {
  border-top: dashed 1px #dfe1e5;
  border-radius: 0 0 5px 5px;
	background: #fff;
  display: flex;
  flex-wrap: wrap;
	padding: 2em 2.25em;
}

.question_inner dd:before {
  content: 'A';
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  background: #e35f4a;
  display: inline-block;
  margin-right: 10px;
}

.question_inner dd p {
  width: calc(100% - 40px);
}

@media print, screen and (max-width: 896px) {
  .question_thumb {
    min-width: 100px;
  }
  
  .question_inner dt {
    padding: 1em 2.5em 1em 1.5em;
  }
  
  .question_inner dt:after {
    right: 1em;
  }
}

@media print, screen and (max-width: 480px) {
  .question_thumb {
    min-width: 80px;
    top: 2.5em;
    z-index: 1;
  }
}

/*---------------------------------
  Contact
---------------------------------*/
.contact_wrap {
  padding-top: 7em;
  position: relative;
}

.contact_wrap:after {
  content: '';
  width: 100%;
  height: 700px;
  background: url("images/bg_contact.jpg") no-repeat;
  background-position: center top;
  background-size: cover;
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0.4;
}

.contact_content {
  text-align: center;
}

.contact_phone {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 2em 0;
}

.contact_phone p:first-of-type {
  position: relative;
	display: inline-block;
	padding: 0 1em;
	width: auto;
	height: 40px;
	color: #fff;
	line-height: 40px;
  font-size: clamp(12px, 2.5vw, 14px);
  border-radius: 5px;
	background: #e35f4a;
	z-index: 0;
}

.contact_phone p:first-of-type:after {
	content: "";
	position: absolute;
	top: 50%;
  right: -8px;
	margin-top: -8px;
	display: block;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 8px 0 8px 8px;
	border-color: transparent transparent transparent #e35f4a;
}

.contact_phone p:nth-of-type(2) {
  color: #004098;
  font-size: clamp(26px, 3vw, 28px);
  margin: 0 0.5em 0 1.5em;
}

.contact_phone p:nth-of-type(2) span {
  font-weight: 600;
  letter-spacing: 0.1em;
}

.contact_phone p:nth-of-type(2):before {
  vertical-align: sub;
  content: "\e0cd";
	font-family: 'Material Icons';
  font-weight: 600;
  margin-right: 10px;
}

.contact_phone p:last-child {
  font-size: clamp(10px, 3vw, 12px);
}

.form_content {
  border-radius: 3em;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-top: 4em;
  padding: 5em 4%;
}

@media print, screen and (max-width: 896px) {
  .contact_content {
    text-align: left;
  }
  
  .contact_phone {
    flex-direction: column;
  }
  
  .contact_phone p:first-of-type {
    margin-bottom: 2em;
  }
  
  .contact_phone p:first-of-type:after {
    content: "";
    position: absolute;
    top: inherit;
    right: inherit;
    margin-top: -8px;
	  bottom: -8px;
    left: 50%;
	  margin-left: -8px;
	  display: block;
	  width: 0px;
	  height: 0px;
	  border-style: solid;
	  border-width: 8px 8px 0 8px;
	  border-color: #e35f4a transparent transparent transparent;
  }
  
  .contact_phone p:nth-of-type(2) {
    margin: 0;
  }
  
  .form_content {
    padding: 2em 4% 3em 4%;
  }
}

@media print, screen and (max-width: 480px) {
  .form_content {
    border-radius: 2em;
  }
}

/*---------------------------------
  Thanks
---------------------------------*/
.thanks_content .contents_title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.thanks_content .btn {
  max-width: 300px;
  background: #2c3e57;
  margin: 3em auto 0 auto;
}

/*---------------------------------
  Footer
---------------------------------*/
footer {
  color: #dff2fa;
  background: #2c3e57;
  margin-top: 7em;
  padding: 5em 0;
}

.footer_head_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer_head_thumb {
  width: 100px;
  margin-right: 1em;
}

.footer_head_inner h3 {
  font-size: clamp(10px, 1.5vw, 12px);
  line-height: 1.8em;
}

.footer_head_inner h2 {
  font-size: clamp(18px, 2.5vw, 21px);
}

.footer_box {
  text-align: center;
  margin: 2em 0 3em 0;
}

.footer_link_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5em;
}

.footer_link_inner li {
  font-size: clamp(12px, 2.5vw, 14px);
  margin: 0.5em;
}

.footer_link_inner li a {
  min-width: 200px;
  color: #dff2fa !important;
  border: solid 1px #dff2fa;
  border-radius: 3px;
  padding: 0.5em 1.5em;
  display: block;
  position: relative;
}

.footer_link_inner li a:after {
  content: '\f08e';
	font-family: 'Font Awesome 5 Free';
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  right: 5%;
}

.footer_link_inner li a:hover {
  color: #fff !important;
  border: solid 1px #fff;
  transition: 0.3s;
}

address {
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
}

@media print, screen and (max-width: 896px) {
  .footer_head_thumb {
    width: 70px;
  }
}

/*---------------------------------
  PageTop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 55px;
	border-radius: 50%;
	color: #fff !important;
	font-size: 18px;
	text-align: center;
	background: rgba(65, 162, 235, 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: 45px;
		font-size: 14px;
		right: 10px;
		bottom: 10px;
	}
}

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