@charset "UTF-8";
html {
  font-size: 62.5%;
}

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

:root {
	--noto-font:  "Noto Sans JP", sans-serif;
  --navy-color:  #223256;
  --narmal-txt-color:  #2C363C;
}

body {
  margin: 0;
  font-family: var(--noto-font);
  font-size: 1.6rem;
  color: var(--narmal-txt-color);
  background-color: #FAFAF9;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  color: inherit;
}

a{
  display: block;
}

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

h1, h2, h3, h4{
  font-weight: normal;
  font-size: inherit;
  margin: 0;
}

ol, ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.mv {
  background: url(img/mv.jpg) no-repeat center / cover;
  padding: 64px 0;
}

.mv_logo {
  max-width: 760px;
  margin: 0 auto;
  transform: scale(0); /* 初期は非表示（縮小） */
  opacity: 0;
  transition: none;
  height: max-content;
  opacity: 0;
  visibility: hidden;
  transition: none;
  /* transform: scale(0); ← 使わない！ */
  /* 高さや幅は確保する */
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv_logo.animate {
  animation: zoomIn 0.5s ease-out forwards;
  visibility: visible;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}


.mv_flex_wrap {
  margin-top: 55px;
  margin-bottom: 55px;
  display: flex;
  align-items: flex-end;
}

.mv_flex_img {
  width: 52%;
  padding: 0 5%;
}

.mv_flex_fukidashi {
  width: 48%;
  display: flex;
  align-items: flex-end;
  column-gap: 45px;
}

.mv_flex_fukidashi_jushoku {
  width: 42px;
}

.mv_flex_fukidashi_jushoku img {
  width: 42px;
}

.slider1 .swiper-wrapper {
  align-items: flex-end;
}

.mv_flex_fukidashi_slider {
  overflow: hidden;
}

.slider1 .swiper-slide {
  display: flex;
  align-items: flex-end;
  column-gap: 10px;
  justify-content: center;
  position: relative;
}

.mv_slider_fukidashi_wrap {
  padding-bottom: 46px;
  padding-right: 80px;
}

.slider1 .mv_slider_fukidashi {
  position: relative;
  padding-bottom: 30px;
}

.slider1 .mv_slider_fukidashi p {
  padding: 40px 50px;
  background-color: rgba(255, 255, 255, .9);
  border-radius: 10px;
  font-size: 2.8rem;
  line-height: 1.75;
  color: var(--navy-color);
  font-weight: 700;
  word-break: auto-phrase;
}

.mv_slider_fukidashi_sankaku {
  position: absolute;
  bottom: 0;
  right: 24px;
  height: 30px;
  opacity: .9;
}

.mv_flex_fukidashi_person {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 150px;
}

.to-form_btn {
  position: relative;
  background: #DDFB40;
  width: 370px;
  padding: 23px 20px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 5px 10px 0 rgba(00, 00, 00, 0.75);
  transition: .5s;
}

.to-form_btn:hover {
  transform: scale(1.08);
}

.to-form_wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.to-form_btn_txt {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
  color: #223256;
}

.to-form_btn_kane {
  display: block;
  width: 47px;
  height: 40px;
  margin-right: auto;
}

.to-form_btn_dash {
  display: block;
  width: 43px;
  height: 24px;
  margin-left: auto;
}

.worries_section {
  padding: 100px 0 60px;
}

.inner {
  max-width: 1540px;
  padding: 0 20px;
  margin: 0 auto;
}

.worries_head_wrap {
  display: grid;
  grid-template-columns: 420px auto;
  justify-content: space-between;
  align-items: center;
  column-gap: 100px;
}

.normal_h2 {
  font-size: 5rem;
  line-height: 1.5;
  color: var(--navy-color);
  font-weight: 700;
}

.text-animation span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
}

/* .in-view クラスが付いたときだけアニメーションを適用 */
.text-animation.in-view span {
  animation: fadeInUp 0.5s ease forwards;
}

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


.worries_head_p_wrap {
  position: relative;
  padding: 0 0 40px 90px;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--navy-color);
  border-bottom: 1px solid #AEAEAE;
}

.worries_head_p_wrap::before {
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  font-size: 4rem;
  font-weight: 700;
  content: '？';
  background: #DDFB40;
  color: var(--navy-color);
  top: 0;
  left: 0;
}

.worries_content_wrap {
  max-width: 1160px;
  margin: 90px auto;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(00, 00, 00, 0.15);
  padding: 45px 20px 55px;
}

.worries_content_title_wrap {
  position: relative;
  padding-top: 80px;
  font-size: 4.4rem;
  font-weight: 700;
  color: var(--navy-color);
  text-align: center;
}

.worries_content_title_wrap::before {
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  font-size: 4rem;
  font-weight: 700;
  content: '！';
  background: var(--navy-color);
  color: #DDFB40;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.worries_content_txt {
  margin-top: 50px;
  line-height: 2;
  text-align: center;
}

.marker_txt {
  margin-top: 60px;
  text-align: center;
}

.marker_txt_span {
  font-size: 2.4rem;
  padding: 5px 25px;
  font-weight: 700;
  display: inline;
  background-color: #DDFB40;
  color: var(--navy-color);
}

.price_part_wrap {
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 260px auto;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 30px;
  max-width: 920px;
  border-bottom: 1px solid #AEAEAE;
  padding-bottom: 36px;
}

.price_part_title {
  padding-bottom: 10px;
}

.price_part_title span {
  font-size: 2.7rem;
  padding: 8px 28px;
  border-radius: 32px;
  border: 5px solid var(--navy-color);
  font-weight: 700;
  display: inline;
  color: var(--navy-color);
}

.price_part_price {
  font-weight: 700;
  color: var(--navy-color);
  font-size: 4.4rem;
  line-height: 1;
}

.inline-block {
  display: inline-block;
}

.price_number {
  font-size: 12rem;
}

.price_note {
  font-size: 1.6rem;
  font-weight: 400;
}

.price_note_txt {
  text-align: right;
  margin: 10px auto 0;
  max-width: 920px;
}

.price_note_txt span {
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
  padding-left: 25px;
}

.price_note_txt span::before {
    content: '※1';
    position: absolute;
    top: 0;
    left: 0;
}

.worries_img {
  margin: 80px auto 0;
  max-width: 770px;
  width: 60%;
}

.to-form_section {
  background: url(img/mv.jpg) no-repeat center / cover;
  padding: 100px 0;
  position: relative;
}

.to-form_section::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.to-form_section .inner {
  position: relative;
  z-index: 3;
}

.to-form_section_content {
  position: relative;
  z-index: 4;
}

.to-form_section .normal_h2 {
  color: #fff;
  text-align: center;
}

.to-form_section_txt {
  margin-top: 60px;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 2;
}

.to-form_section .to-form_btn {
  margin-top: 70px;
}

.to-form_section_person01,.to-form_section_person02 {
  position: absolute;
  bottom: -50px;
  height: 217px;
}

.to-form_section_person01 {
  left: 10%;
}

.to-form_section_person02 {
  right: 10%;
}

.solution_section {
  padding: 135px 0;
}

.solution_section h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.h2_logo {
  display: inline-block;
  width: 270px;
  margin: 0 10px;
}

.q-and-a_list_wrap {
  margin-top: 90px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.q-and-a_list_img {
  position: sticky;
  top: 100px;
  z-index: 1;
  width: 430px;
}

.q-and-a_list {
	display: grid;
	row-gap: 60px;
  max-width: 900px;
  z-index: 2;
}

.q-and-a_list dl {
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 10px 20px 0 rgba(00, 00, 00, 0.15);
}

.q_area {
	position: relative;
	/* cursor: pointer; */
	padding: 40px 180px 30px 140px;
}

.q_area p , .a_area_title {
	font-size: 2.4rem;
  line-height: 1.75;
  color: var(--navy-color);
	font-weight: 700;
}

.q_area::before, .a_area::before {
	display: flex;
	width: 60px;
	height: 60px;
	justify-content: center;
  line-height: 1.2;
	border-radius: 50%;
	position: absolute;
	font-size: 4rem;
  font-weight: 700;
}

.q_area::before {
	content: 'Q';
	background: #ddfb40;
	color: var(--navy-color);
	top: 30px;
	left: 40px;
}

.q_area_illust {
  position: absolute;
  width: 100px;
  right: 52px;
  bottom: 0;
}

/* .plus_icon {
	width: 13px;
	height: 13px;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

.plus_icon::before,
.plus_icon::after {
	content: '';
	display: inline-block;
	background: #333;
	position: absolute;
}

.plus_icon::before {
	width: 100%;
	height: 1px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
}

.plus_icon::after {
	width: 1px;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.q_area.open .plus_icon::after{
	opacity: 0;
	transform: scale(0);
} */

.a_area{
	/* display: none; */
	padding: 36px 36px 40px 140px;
	position: relative;
}

.a_area::before {
	content: 'A';
	background: var(--navy-color);
	color: #ddfb40;
	top: 30px;
	left: 40px;
}

.a_area::after {
	content: '';
	width: calc(100% - 72px);
	border-top: 1px solid #aeaeae;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 0;
}

.a_area_txt {
  line-height: 2;
  margin-top: 20px;
}

.example_section {
  padding: 135px 0;
}

.example_section h2 {
  text-align: center;
}

.example_list {
  margin-top: 90px;
  display: grid;
	row-gap: 90px;
}

.example_list_li {
  border-radius: 15px;
  background-color: #fff;
  box-shadow: 0 10px 20px 0 rgba(00, 00, 00, 0.15);
  padding: 54px 75px 54px 54px;
  display: grid;
  grid-template-columns: 450px auto;
  column-gap: 6.56%;
}

.example_img_part {
  display: grid;
  row-gap: 40px;
}

.example_img {
  box-shadow: 0 5px 10px 0 rgba(00, 00, 00, 0.1);
}

.example_img_note {
  margin-top: 20px;
  text-align: center;
  font-size: 1.4rem;
  color: #a4a4a4;
}

.example_title {
  font-size: 2.4rem;
  color: var(--navy-color);
  font-weight: 700;
}

.example_info {
  margin-top: 30px;
  font-size: 1.4rem;
  color: var(--navy-color);
  font-weight: 700;
  padding-left: 15px;
  border-left: 5px solid #DDFB40;
}

.example_info span {
  color: #a4a4a4;
  display: inline-block;
}

.example_content-list {
  margin-top: 44px;
  border-radius: 10px;
  padding: 25px 30px;
  max-width: 450px;
  background-color: #f6f6f6;
}

.example_content-list_head {
  margin-left: -8px;
}

.example_content-list ul {
  margin-top: 10px;
  display: grid;
  row-gap: 10px;
}

.example_content-list ul li {
  list-style: disc;
  margin-left: 20px;
}

.example_txt {
  margin-top: 34px;
  line-height: 2;
}

.example_url {
  margin-top: 34px;
  color: var(--navy-color);
  font-weight: 700;
  display: grid;
  row-gap: 10px;
}

.example_url a {
  display: inline-block;
  color: #c0d200;
  text-decoration: underline;
}

.example_url span {
  font-weight: 400;
  display: inline-block;
}

.contact {
  padding: 135px 0;
  background: url(img/mv.jpg) no-repeat center / cover;
  position: relative;
}

.contact::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.contact .inner {
  position: relative;
  z-index: 3;
}

.contact h2 {
  color: #fff;
  text-align: center;
}

.contact_txt {
  margin-top: 60px;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 2;
}

.contact_form{
  max-width: 800px;
  margin: 0 auto;
}

.form_input_area dl {
  margin-top: 50px;
}

.form_input_area dt {
  margin-bottom: 10px;
  color: #fff;
}

.form_input_area dd input, .form_input_area dd textarea, .rec-entryform .form_input_area dd select {
  width: 100%;
  background-color: #fff;
  border: none;
  padding: 20px 15px;
}

.required-wrap {
  color: #223256;
  background-color: #DDFB40;
  padding: 0 5px;
  font-size: 1.4rem;
  font-weight: 700;
  margin-left: 5px;
}

.contact_bottom {
  text-align: center;
  margin-top: 50px;
  line-height: 2;
  color: #fff;
}

.contact_bottom p a {
  display: inline-block;
  color: #c0d200;
  text-decoration: underline;
}

.contact_bottom .accept {
  margin-top: 30px;
}

.submit_btn {
  margin-top: 50px;
}

.submit_btn .submit {
  background: #DDFB40;
  width: 370px;
  padding: 23px 20px;
  box-shadow: 0 5px 10px 0 rgba(00, 00, 00, 0.75);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 2.4rem;
  color: #223256;
}

footer {
  background-color: #222;
}

.footer_inner {
  max-width: 810px;
  padding: 100px 20px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 270px auto;
  column-gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer_right {
  font-size: 1.4rem;
  line-height: 2;
  color: #fff;
  font-weight: 700;
}

.company_info a {
  display: inline-block;
  text-decoration: underline;
}

.copy-right {
  margin-top: 14px;
}

.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overscroll-behavior-y: none;
  background: rgba(0,0,0,0.8);
}

.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
}

.modal-outer-wrapper {
  display: table;
  position: relative;
  width: 100%;
  height: 100%;
}

.modal-inner-wrapper {
  display: table-cell;
  width: 100%;
  height: 100%;
  position: relative;
  vertical-align: middle;
  text-align: center;
  padding: 80px 25px;
}

.modal-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: auto;
  text-align: left;
  color: #000;
  max-width: 1000px;
  border-radius: 0px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  cursor: auto;
  overflow-y: scroll;
  height: 80vh;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.modal-content-container {
  padding: 30px;
}

.privacy_declearation {
  margin-bottom: 30px;
}

.modal-wrapper p {
  text-align: left;
}

.privacy_section {
  margin-bottom: 30px;
}

.privacy_section h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.privacy_section p {
  margin-bottom: 15px;
}

.modal-close {
  position: fixed;
  right: 20px;
  top: 20px;
  color: #fff;
  cursor: pointer;
  opacity: 1;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0);
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.modal-wrapper .modal-close {
  border: none;
  background: transparent;
  padding: 0;
  -webkit-appearance: none;
}

.modal-close:before, .modal-close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 14px;
  left: 23px;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #fff;
  -webkit-transition: background 0.2s ease-in-out;
  transition: background 0.2s ease-in-out;
}

.modal-close:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.modal-close span {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.modal-close:after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pc_br {
  display: block;
}

.sp_br {
  display: none;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up.show {
  animation: fadeInUp 1s linear 1 normal forwards;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.contact_sub-page {
  padding: 50px 0 135px;
}

.contact_sub-page_logo {
  max-width: 300px;
  margin: 0 auto 50px;
}

.contact_sub-page h2 {
  text-align: center;
}

.contact_top_big_text {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy-color);
}

p.error_messe {
  margin: 5px 0;
  color: red;
  text-align: center;
}

.submit_btn.error_btn {
  text-align: center;
}

table.formTable {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  margin-top: 30px;
}

table.formTable td, table.formTable th {
  border: 1px solid #aeaeae;
  padding: 10px;
}

table.formTable th {
  width: 30%;
  font-weight: normal;
  background: var(--navy-color);
  color: #fff;
  text-align: left;
}

table.formTable td {
  background-color: #fff;
}

@media screen and (max-width: 1439px){

  .mv_logo {
    max-width: 560px;
    height: 325px;
  }

  .mv_flex_fukidashi {
    column-gap: 35px;
  }

  .mv_flex_fukidashi_jushoku {
    width: 32px;
  }

  .mv_flex_fukidashi_jushoku img {
    width: 32px;
  }

  .mv_slider_fukidashi_wrap {
    padding-bottom: 36px;
    padding-right: 50px;
  }

  .slider1 .mv_slider_fukidashi p {
    padding: 20px 30px;
    font-size: 2rem;
  }

  .mv_flex_fukidashi_person {
    height: 115px;
  }

  .worries_head_wrap {
    grid-template-columns: 1fr;
    row-gap: 60px;
  }

  .q-and-a_list_img {
    display: none;
  }

  .q-and-a_list {
    margin: 0 auto;
  }

  .example_list_li {
    grid-template-columns: 1fr;
    row-gap: 50px;
    padding: 54px;
  }

  .example_img {
    width: 70%;
    margin: 0 auto;
  }

}


@media screen and (max-width: 1023px){

  body {
  font-size: 1.4rem;
  }

  .mv {
    background: url(img/mv_sp.jpg) no-repeat center / cover;
    padding: 32px 0;
  }

  .mv_logo {
    max-width: 320px;
    padding: 0 10px;
    height: 174px;
  }

  .mv_flex_wrap {
    margin-top: 30px;
    margin-bottom: 30px;
    flex-direction: column-reverse;
    align-items: center;
    row-gap: 10px;
  }

  .mv_flex_img {
    width: 82%;
    max-width: 290px;
    padding: 0 10px;
  }

  .mv_flex_fukidashi {
    width: 95%;
    margin-left: auto;
    column-gap: 20px;
  }

  .mv_flex_fukidashi_jushoku {
    width: 28px;
  }

  .mv_flex_fukidashi_jushoku img {
    width: 28px;
  }

  .mv_slider_fukidashi_wrap {
    padding-bottom: 26px;
    padding-right: 30px;
  }

  .slider1 .mv_slider_fukidashi {
    padding-bottom: 15px;
  }

  .slider1 .mv_slider_fukidashi p {
    padding: 15px 20px;
    font-size: 1.6rem;
  }

  .mv_slider_fukidashi_sankaku {
    height: 15px;
    bottom: 5px;
  }

  .mv_flex_fukidashi_person {
    height: 100px;
  }

  .to-form_btn {
    width: 85%;
    max-width: 320px;
    padding: 18px 15px;
  }

  .to-form_btn_txt {
    font-size: 2rem;
  }

  .worries_section {
    padding: 50px 0 30px;
  }

  .worries_head_wrap {
    row-gap: 30px;
  }

  .normal_h2 {
    font-size: 3rem;
  }

  .worries_head_p_wrap {
    padding: 0 0 15px 40px;
    font-size: 1.8rem;
  }

  .worries_head_p_wrap::before {
    width: 30px;
    height: 30px;
    font-size: 2rem;
  }

  .worries_content_wrap {
    margin: 45px auto;
    padding: 20px 20px 25px;
  }

  .worries_content_title_wrap {
    position: relative;
    padding-top: 40px;
    font-size: 2.2rem;
  }

  .worries_content_title_wrap::before {
    width: 30px;
    height: 30px;
    font-size: 2rem;
  }

  .pc_br {
    display: none;
  }

  .sp_br {
    display: block;
  }

  .worries_content_txt {
    margin-top: 25px;
    text-align: justify;
  }

  .marker_txt {
    margin-top: 30px;
  }

  .marker_txt_span {
    font-size: 1.8rem;
    padding: 5px 10px;
  }

  .price_part_wrap {
    grid-template-columns: 1fr;
    text-align: center;
    column-gap: 15px;
    max-width: 920px;
    padding-bottom: 18px;
    row-gap: 8px;
  }

  .price_part_title span {
    font-size: 1.35rem;
    padding: 4px 14px;
    border-radius: 16px;
    border: 2.5px solid var(--navy-color);
  }

  .price_part_price {
    font-size: 2.2rem;
  }

  .price_number {
    font-size: 6rem;
  }

  .price_note {
    font-size: 1.4rem;
  }

  .price_note_txt {
    text-align: left;
    margin: 5px auto 0;
  }

  .price_note_txt span {
    font-size: 1rem;
    padding-left: 22px;
  }

  .worries_img {
    margin: 40px auto 0;
    width: 85%;
  }

  .to-form_section {
    background: url(img/mv_sp.jpg) no-repeat center / cover;
    padding: 50px 0;
    overflow: hidden;
  }

  .to-form_section_txt {
    margin-top: 30px;
    text-align: left;
    font-size: 1.4rem;
  }

  .to-form_section_person01, .to-form_section_person02 {
    bottom: 40px;
    height: 110px;
  }

  .to-form_section_person01 {
    left: -15px;
  }

  .to-form_section_person02 {
    right: -15px;
  }

  .solution_section h2 {
    flex-direction: column;
    row-gap: 5px;
  }

  .h2_logo {
    width: 100%;
    max-width: 135px;
  }

  .solution_section {
    padding: 65px 0;
  }

  .q-and-a_list_wrap {
    margin-top: 45px;
  }

  .q-and-a_list {
    row-gap: 30px;
  }

  .q_area {
    padding: 20px 20px 15px 60px;
  }

  .q_area::before, .a_area::before {
    width: 30px;
    height: 30px;
    font-size: 2rem;
  }

  .q_area::before {
    top: 20px;
    left: 20px;
  }

  .q_area p, .a_area_title {
    font-size: 1.6rem;
  }

  .q_area_illust {
    width: 40px;
    right: 20px;
  }

  .a_area {
    padding: 13px 20px 20px 60px;
  }

  .a_area::before {
    top: 13px;
    left: 20px;
  }

  .a_area_txt {
    margin-top: 10px;
  }

  .a_area::after {
    width: calc(100% - 40px);
  }

  .example_section {
    padding: 65px 0;
  }

  .example_list {
    margin-top: 45px;
    row-gap: 45px;
  }

  .example_list_li {
    row-gap: 25px;
    padding: 30px 20px;
  }

  .example_img_part {
    row-gap: 20px;
  }

  .example_img {
    width: 100%;
  }

  .example_img_note {
    margin-top: 10px;
    font-size: 1.2rem;
  }

  .example_title {
    font-size: 1.6rem;
  }

  .example_info {
    margin-top: 15px;
    padding-left: 10px;
    font-size: 1.2rem;
  }

  .example_content-list {
    margin-top: 22px;
    padding: 12.5px 15px;
  }

  .example_content-list ul li {
    margin-left: 16px;
  }

  .example_txt {
    margin-top: 17px;
  }

  .example_url {
    margin-top: 17px;
    row-gap: 5px;
  }

  .contact {
    padding: 65px 0;
    background: url(img/mv_sp.jpg) no-repeat center / cover;
  }

  .contact_txt {
    margin-top: 30px;
    font-size: 1.4rem;
  }

  .form_input_area dl {
    margin-top: 25px;
  }

  .form_input_area dd input, .form_input_area dd textarea, .rec-entryform .form_input_area dd select {
    padding: 10px 8px;
  }

  .contact_bottom {
    text-align: left;
    margin-top: 25px;
  }

  .contact_bottom .accept {
    margin-top: 15px;
    text-align: center;
  }

  .submit_btn {
    margin-top: 25px;
    text-align: center;
  }

  .submit_btn .submit {
    font-size: 2rem;
    width: 85%;
    max-width: 320px;
    padding: 18px 15px;
  }

  .footer_inner {
    padding: 50px 20px;
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .footer_left {
    max-width: 150px;
    margin: 0 auto;
  }

  .footer_right {
    font-size: 1.2rem;
    text-align: center;
  }

}