@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
}

p {
  letter-spacing: 0.04em;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

table{
	border-collapse: collapse;
}

body {
  background: #F6F6F6;
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
}

::placeholder {
	color: #ABABAB;
	font-family: "Noto Sans JP", serif;
}

.en {
  font-family: "Roboto", serif;
}

.inner {
  width: min(1600px, 100% - 200px);
  margin: 0 auto;
}
.top_about .inner ,
.top_realizable .inner ,
.contact_area .inner ,
.top_fee .inner {
  width: min(1600px, 100% - 80px);
  margin: 0 auto;
}
@media (max-width: 960px) {
	.inner ,
  .top_about .inner ,
  .top_realizable .inner ,
  .contact_area .inner ,
  .top_fee .inner {
		width: min(1600px, 100% - 40px);
	}
}

.anchor {
  translate: 0 -160px;
  scroll-margin-top: 100px;
}
@media (max-width: 1440px) {
  .anchor {
    translate: 0 -140px;
  }
}
@media (max-width: 1240px) {
  .anchor {
    translate: 0 -120px;
  }
}

#header {
  background: #fff;
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 1;
  transition: 0.1s;
}
.hide {
  transform: translateY(-100%);
  transition: 0.3s;
}
#header .link_area {
  background: #7A7A7A;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  font-size: 16px;
  text-align: center;
}
@media (max-width: 1240px) {
  #header .link_area {
    font-size: 12px;
  }
  .hide {
    transform: none;
  }
}
#header .nav_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  padding: 0 40px;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.16);
}
@media (max-width: 1440px) {
  #header .nav_area {
    height: 100px;
    padding: 0 20px;
  }
}
@media (max-width: 1240px) {
  #header .nav_area {
    height: 80px;
  }
}
#header .nav_area .logo {
  width: 196px;
}
@media (max-width: 1240px) {
  #header .nav_area .logo {
    width: 120px;
  }
}
#header .nav_area .nav {
  display: grid;
  grid-template: "tel contect" "links contect";
  gap: 16px 32px;
}
@media (max-width: 1240px) {
  #header .nav_area .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
  }
}
#header .nav_area .nav .tel {
  grid-area: tel;
  text-align: right;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media (max-width: 1240px) {
  #header .nav_area .nav .tel {
    order: 1;
    display: block;
  }
}
#header .nav_area .nav .tel a {
  background: url(../img/tel-mark-blue.svg) no-repeat left center/30px;
  color: #1D92D6;
  padding-left: 38px;
  font-size: 25px;
  font-weight: 700;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #header .nav_area .nav .tel a {
    pointer-events: auto;
  }
}
#header .nav_area .nav .tel span {
  color: #505050;
  margin-left: 14px;
  font-size: 13px;
}
@media (max-width: 1240px) {
  #header .nav_area .nav .tel span {
    display: block;
    margin: 4px 0 0;
  }
}
#header .nav_area .nav .links {
  grid-area: links;
  display: flex;
  gap: 40px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1440px) {
  #header .nav_area .nav .links {
    gap: 20px;
  }
}
@media (max-width: 1240px) {
  #header .nav_area .nav .links {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  #header .nav_area .nav .links a {
    text-decoration: underline;
  }
}
#header .nav_area .nav .contact {
	grid-area: contect;
	background: #1D92D6;
	color: #fff;
	display: flex;
	align-items: center;
	position: relative;
	width: 210px;
	height: 76px;
	padding-left: 20px;
	font-size: 18px;
	font-weight: 500;
	border-radius: 100px;
	transition: 0.2s;
}
#header .nav_area .nav .contact .btn_mark{
	inset: 50% 12px auto auto;
	translate: 0 -50%;
	width: 47px;
	height: 47px;
}
@media (min-width: 1241px) {
  #header .toggle {
    display: block !important;
  }
}
@media (max-width: 1240px) {
  #header .toggle {
    display: none;
    background: #F6F6F6;
    position: fixed;
    inset: 80px auto auto 0;
    width: 100%;
    height: calc(100% - 80px);
    z-index: -1;
    overflow-y: auto;
  }
}
#header .menu_btn {
  background: #1D92D6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  cursor: pointer;
}
#header .menu_btn::before, #header .menu_btn::after {
  content: "";
  background: #fff;
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 5px;
  transition: 0.2s;
}
#header .menu_btn::before {
  translate: 0 -4.5px;
}
#header .menu_btn::after {
  translate: 0 4.5px;
}
@media (min-width: 1241px) {
  #header .menu_btn {
    display: none;
  }
}
#header.menu_open .menu_btn::before {
  translate: 0;
  rotate: 45deg;
}
#header.menu_open .menu_btn::after {
  translate: 0;
  rotate: -45deg;
}

#main {
  /* margin-top: 120px; */
  margin-top: 100px;
}
@media screen and (max-width: 1440px) {
  #main {
    /* margin-top: 100px; */
    margin-top: 80px;
  }
}

#footer .contact_area {
  background: #1D92D6;
  color: #fff;
  padding: 40px 0;
}
#footer .contact_area .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1240px) {
  #footer .contact_area .row {
    flex-direction: column;
    gap: 40px;
  }
}
#footer .contact_area .row .txt_content {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  #footer .contact_area .row .txt_content {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }
}
#footer .contact_area .row .txt_content .img {
  width: 240px;
}
@media (max-width: 768px) {
  #footer .contact_area .row .txt_content .img {
    width: 160px;
  }
}
@media (max-width: 768px) {
  #footer .contact_area .row .txt_content dl {
    width: 100%;
    max-width: 400px;
  }
}
#footer .contact_area .row .txt_content dl dt {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 768px) {
  #footer .contact_area .row .txt_content dl dt {
    margin-bottom: 32px;
    font-size: 20px;
  }
}
#footer .contact_area .row .txt_content dl dd {
  font-size: 16px;
  font-weight: 700;
}
#footer .contact_area .row .txt_content dl dd a {
  background: url(../img/tel-mark-white.svg) no-repeat left center/30px;
  padding-left: 38px;
  font-size: 25px;
}
#footer .contact_area .row .txt_content dl dd span {
  margin-left: 12px;
  font-size: 13px;
  font-weight: 400;
}
@media (max-width: 768px) {
  #footer .contact_area .row .txt_content dl dd span {
    display: block;
    margin-left: 0;
  }
}
#footer .contact_area .row .contact {
	display: block;
	position: relative;
	width: 440px;
	padding: 68px 50px;
	font-size: 34px;
	font-weight: 700;
	border-radius: 20px;
	border: 1px solid #23a8f5;
	box-shadow: -7px -7px 5px rgba(31, 155, 227, 0.2), 7px 7px 5px #1671A6;
	transition: .2s;
}
#footer .contact_area .row .contact:hover {
	box-shadow: 4px 4px 5px rgba(31, 155, 227, 0.2), -4px -4px 5px #1671A6;
}
#footer .contact_area .row .contact .btn_mark{
	inset: 50% 50px auto auto;
	translate: 0 -50%;
	width: 70px;
	height: 70px;
}
@media (max-width: 1440px) {
	#footer .contact_area .row .contact {
		width: 400px;
    max-width: 400px;
		padding: 68px 32px;
	}
	#footer .contact_area .row .contact .btn_mark{
		inset: 50% 32px auto auto;
	}
}
@media (max-width: 768px) {
	#footer .contact_area .row .contact {
		width: 100%;
		padding: 60px 32px;
		font-size: 26px;
	}
	#footer .contact_area .row .contact .btn_mark{
		width: 50px;
		height: 50px;
	}
}
#footer .nav_area {
  padding: 80px 0 40px;
}
@media (max-width: 768px) {
  #footer .nav_area {
    padding: 40px 0 20px;
  }
}
#footer .nav_area .logo {
  display: block;
  width: 280px;
  margin-bottom: 64px;
}
@media (max-width: 1080px) {
  #footer .nav_area .logo {
    margin: 0 auto 60px;
  }
}
#footer .nav_area .nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 108px;
}
@media (max-width: 1080px) {
	#footer .nav_area .nav {
		flex-direction: column;
		margin-bottom: 60px;
  }
}
#footer .nav_area .nav .copy {
	width: 240px;
}
@media (max-width: 1080px) {
	#footer .nav_area .nav .copy {
		margin: 0 auto 60px;
	}
}
@media (max-width: 768px) {
	#footer .nav_area .nav .copy {
		width: 160px;
	}
}
#footer .nav_area .nav .links {
  display: grid;
  grid-template-columns: repeat(3, minmax(min-content, max-content));
  gap: 56px 64px;
}
@media (max-width: 1080px) {
  #footer .nav_area .nav .links {
    gap: 30px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  #footer .nav_area .nav .links {
    grid-template-columns: repeat(1, 1fr);
  }
  #footer .nav_area .nav .links a {
    text-decoration: underline;
  }
}
#footer .nav_area .nav .links li {
  width: fit-content;
}
@media (max-width: 1080px) {
  #footer .nav_area .nav .links li {
    width: auto;
  }
}
#footer .nav_area .nav2 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  #footer .nav_area .nav2 {
    flex-direction: column-reverse;
    align-items: center;
  }
}
#footer .nav_area .nav2 .copylight {
  font-size: 14px;
}
#footer .nav_area .nav2 .links {
  display: flex;
  gap: 52px;
}
@media (max-width: 1080px) {
  #footer .nav_area .nav2 .links {
    margin-bottom: 32px;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  #footer .nav_area .nav2 .links {
    gap: 30px;
  }
}
#footer .nav_area .nav2 .links a {
  background: url(../img/icon-blank.svg) no-repeat right center/17px;
  display: inline-block;
  padding-right: 27px;
}
@media (max-width: 768px) {
  #footer .nav_area .nav2 .links a {
    text-decoration: underline;
  }
}

#header .nav_area .nav .links a,
#footer .nav_area .nav .links a {
	transition: .2s;
}
#header .nav_area .nav .links a:hover,
#footer .nav_area .nav .links a:hover {
	opacity: .58;
}

.low_head {
  background: #E3EDF3;
  position: relative;
  padding: 80px 0;
}
@media (max-width: 960px) {
  .low_head {
    padding: 60px 0 70px;
  }
}
.low_head .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(1200px, 100% - 40px);
  margin: 0 auto;
}
@media (max-width: 960px) {
  .low_head .box {
    align-items: flex-start;
  }
}
.low_head .box:has(> .img) {
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .low_head .box:has(> .img) {
    flex-direction: column-reverse;
  }
}
.low_head .box .lw-h1 {
  background: url(../img/h2-logo-blue.svg) no-repeat left center/50px;
  color: #1D92D6;
  padding-left: 70px;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (max-width: 960px) {
  .low_head .box .lw-h1 {
    background-size: 30px;
    padding-left: 38px;
    font-size: 28px;
  }
}
.low_head .box .img {
  width: 400px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .low_head .box .img {
    width: 240px;
    margin: 0 auto 40px;
  }
}
.low_head .box .sentence {
  margin-top: 20px;
  line-height: 2;
  text-align: center;
}
@media (max-width: 960px) {
  .low_head .box .sentence {
    font-size: 14px;
    text-align: left;
  }
}
.low_head .breadcrumbs {
  color: #979797;
  display: flex;
  position: absolute;
  inset: auto auto 10px 40px;
  font-size: 14px;
}
@media (max-width: 960px) {
  .low_head .breadcrumbs {
    inset: auto auto 10px 20px;
    font-size: 12px;
  }
}
.low_head .breadcrumbs li {
  margin-right: 1em;
}
.low_head .breadcrumbs li + li::before {
  content: ">";
  margin-right: 1em;
}
.low_head .breadcrumbs a {
  text-decoration: underline;
}

.low_main {
  color: #393F43;
  padding: 120px 0;
}
@media (max-width: 960px) {
  .low_main {
    padding: 60px 0;
  }
}

.low_inner {
  width: min(960px, 100% - 40px);
  margin: 0 auto;
}


.btn_mark{
	position: absolute;
}
.btn_mark::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	transition: .2s;
}
.btn_mark::after{
	content: '';
	position: absolute;
	inset: 50% auto auto 50%;
	translate: -50% -50%;
	width: 40%;
	height: 100%;
}
.btn_mark.blue::before{
	background: #1D92D6;
}
.btn_mark.blue::after{
	background: url(../img/arrow-mark-white.svg) no-repeat center / contain;
}
.btn_mark.white::before{
	background: #fff;
}
.btn_mark.white::after{
	background: url(../img/arrow-mark-blue.svg) no-repeat center / contain;
}

a:hover .btn_mark::before{
	scale: 1.2;
}


.news_tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
  margin-bottom: 90px;
}
@media (max-width: 960px) {
  .news_tags {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.news_tags li {
  flex: 1;
  border-radius: 5px;
  overflow: hidden;
}
.news_tags a {
	background: #EFEFEF;
	display: block;
	padding: 8px;
	text-align: center;
	transition: .2s;
}

.news_tags a.active,
.news_tags a:hover{
	color: #fff;
}
.news_tags a[href="all"].active,
.news_tags a[href="all"]:hover{
	background: #1D92D6;
}
.news_tags a[href="info"].active,
.news_tags a[href="info"]:hover{
	background: #23AEFF;
}
.news_tags a[href="maintenance"].active,
.news_tags a[href="maintenance"]:hover{
	background: #1A81BD;
}
.news_tags a[href="break"].active,
.news_tags a[href="break"]:hover{
	background: #0F4D70;
}

.news_lists li.hide {
  display: none;
}
.news_lists a {
	display: flex;
	align-items: center;
	gap: 32px;
	position: relative;
	padding: 30px 0;
	border-bottom: 1px solid #C9C9C9;
}
.news_lists a::after{
	content: '';
	background: #1D92D6;
	position: absolute;
	inset: auto auto -1px 0;
	width: 100%;
	height: 1px;
	transform: scale(0, 1);
	transform-origin: left center;
	transition: .3s;
}
.news_lists a:hover::after{
	transform: scale(1, 1);
}
.news_lists a p{
	transition: .3s;
}
.news_lists a:hover p{
	color: #1D92D6;
}
@media (max-width: 960px) {
  .news_lists a {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 0;
    font-size: 14px;
  }
}
.news_lists .tag_day {
  width: 130px;
  min-width: 130px;
}
.news_lists .tag_day .tag {
  color: #fff;
  display: block;
  padding: 8px 0;
  text-align: center;
  border-radius: 5px;
}
.news_lists .tag_day .tag.info {
  background: #23AEFF;
}
.news_lists .tag_day .tag.maintenance {
  background: #1A81BD;
}
.news_lists .tag_day .tag.break {
  background: #0F4D70;
}
.news_lists .tag_day .day {
  display: block;
  margin-top: 1em;
  text-align: center;
}
@media (max-width: 960px) {
  .news_lists .tag_day .day {
    margin-top: 10px;
    text-align: left;
  }
}

.post_head {
  margin-bottom: 60px;
  padding: 40px 0;
  border-top: 1px solid #C9C9C9;
  border-bottom: 1px solid #C9C9C9;
}
.post_head .tag {
  color: #fff;
  display: inline-block;
  width: 126px;
  padding: 8px 0;
  text-align: center;
  border-radius: 5px;
}
.post_head .tag.info {
  background: #23AEFF;
}
.post_head .tag.maintenance {
  background: #1A81BD;
}
.post_head .tag.break {
  background: #0F4D70;
}
@media (max-width: 960px) {
  .post_head .tag {
    font-size: 14px;
  }
}
.post_head .day {
  display: inline-block;
  margin-left: 20px;
  text-align: center;
}
@media (max-width: 960px) {
  .post_head .day {
    margin-top: 10px;
    font-size: 14px;
    text-align: left;
  }
}
.post_head .news-h2 {
  margin-top: 24px;
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .post_head .news-h2 {
    font-size: 24px;
  }
}

.post_content {
  margin-bottom: 80px;
}
@media (max-width: 960px) {
  .post_content {
    font-size: 14px;
  }
}

.post_content a {
  color: #1D92D6;
  text-decoration: underline;
}

.post_content table {
  width: 100%;
  border-top: 1px solid #1D92D6;
  border-left: 1px solid #1D92D6;
}
.post_content table th {
  background: #E3EDF3;
  white-space: nowrap;
  font-weight: bold;
  vertical-align: middle !important;
  width: fit-content;
  max-width: 300px;
}
.post_content table th, .post_content table td {
  padding: 10px;
  border-right: 1px solid #1D92D6;
  border-bottom: 1px solid #1D92D6;
  line-height: 1.7;
  letter-spacing: .04em;
}
@media screen and (max-width: 960px) {
  .post_content table th, .post_content table td {
    display: block;
    width: 100%;
    max-width: none;
  }
}
.post_content table td {
  vertical-align: baseline;
}
.post_content p {
  line-height: 1.7;
  overflow-wrap: break-word;
}
.post_content h2,
.post_content h3,
.post_content h4,
.post_content h5,
.post_content h6 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.post_content h2 {
  color: #1A81BD;
  margin-bottom: 0.5em;
}

.post_back {
	background: #1D92D6;
	color: #fff;
	display: flex;
	align-items: center;
	position: relative;
	width: 210px;
	height: 76px;
	margin: 0 auto;
	padding-left: 20px;
	font-size: 18px;
	font-weight: 500;
	border-radius: 100px;
}

.post_back .btn_mark {
	inset: 50% 12px auto auto;
	translate: 0 -50%;
	width: 47px;
	height: 47px;
}


.faq_lead {
  line-height: 2;
}

.faq_anchor {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 80px;
}
.faq_anchor a {
  background: #EFEFEF;
  display: block;
  padding: 10px 0;
  font-size: 14px;
  text-align: center;
  border: 2px solid #EFEFEF;
  border-radius: 5px;
  transition: 0.2s;
}
.faq_anchor a:hover {
  border-color: #1D92D6;
  color: #1D92D6;
}
@media (max-width: 768px) {
	.faq_anchor {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

.faq_block {
  margin-top: 80px;
}
.faq_block .lw-h2 {
  color: #1D92D6;
  margin-bottom: 36px;
  font-size: 24px;
}
@media (max-width: 960px) {
  .faq_block .lw-h2 {
    font-size: 22px;
  }
}
.faq_block .faq_lead {
  margin-bottom: 36px;
}
.faq_block .faq_lists li {
  background: #EFEFEF;
  padding: 0 40px;
  font-size: 15px;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .faq_block .faq_lists li {
    padding: 0 20px;
  }
}
.faq_block .faq_lists li + li {
  margin-top: 20px;
}
.faq_block .faq_lists li .q {
  background: url(../img/faq-q.svg) no-repeat left center / 18px, url(../img/icon-plus-blue.svg) no-repeat right center/20px;
  padding: 30px 40px;
  font-weight: 500;
}
.faq_block .faq_lists li .q.active {
  background: url(../img/faq-q.svg) no-repeat left center / 18px, url(../img/icon-plus-white.svg) no-repeat right center/20px;
}
.faq_block .faq_lists li .a {
  background: url(../img/faq-a.svg) no-repeat left top 32px/18px;
  display: none;
  padding: 30px 0 30px 40px;
  border-top: 1px solid #BDBDBD;
}
@media screen and (max-width: 768px) {
  .faq_block .faq_lists li .q {
    background: url(../img/faq-q.svg) no-repeat left center / 18px, url(../img/icon-plus-blue.svg) no-repeat right center / 20px;
    padding: 20px 30px;
  }
  .faq_block .faq_lists li .a {
    padding: 20px 0 20px 30px;
    background: url(../img/faq-a.svg) no-repeat left top 23px/18px;
  }
}

.form dl {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .form dl {
    flex-direction: column;
    font-size: 14px;
  }
}
.form dl dt {
	color: #1D92D6;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 25%;
	padding: 40px 16px 40px 0;
	font-weight: 700;
	border-top: 1px solid #E9E8E8;
}
@media (max-width: 960px) {
	.form dl dt {
		justify-content: flex-start;
		width: 100%;
		padding: 30px 16px 20px 0;
	}
}
@media (max-width: 768px) {
	.form dl dt {
		font-size: 16px;
	}
}
.form dl dt span {
  background: #D65C49;
  color: #fff;
  display: inline-block;
  padding: 0 10px;
  font-size: 14px;
  border-radius: 5px;
}
@media (max-width: 960px) {
  .form dl dt span {
    margin-left: 10px;
    font-size: 12px;
  }
}
.form dl dd {
  width: 75%;
  padding: 40px 0;
  border-top: 1px solid #E9E8E8;
}
@media (max-width: 960px) {
  .form dl dd {
    width: 100%;
    padding: 0 0 30px;
    border-top: none;
  }
}
.form dl dd input, .form dl dd textarea, .form dl dd select {
  width: 100%;
  padding: 10px;
  border: 0;
  border-radius: 5px;
  line-height: 2;
  border: 1px solid #E9E8E8;
}
.form dl dd .tel{
	display: flex;
	align-items: center;
}
.form dl dd .tel input{
	width: 160px;
}
.form dl dd .tel span{
	padding: 0 5px;
}
@media (max-width: 768px) {
	.form dl dd .tel input{
		width: 100%;
	}
}

.form .privacy {
  padding-top: 40px;
  border-top: 1px solid #E9E8E8;
}
@media (max-width: 960px) {
  .form .privacy {
    font-size: 14px;
  }
}
.form .privacy .ttl {
  color: #1D92D6;
  margin-bottom: 16px;
  font-weight: 700;
}
.form .privacy .txt {
  margin-bottom: 16px;
}
.form .privacy .box {
  background: #E9E8E8;
  height: 14em;
  margin-bottom: 16px;
  padding: 20px;
  border-radius: 5px;
  overflow: scroll;
}
.form .privacy .label {
  font-weight: 700;
  text-align: center;
  margin: 0 auto 16px;
}
.form .privacy .label input {
  margin-right: 8px;
}
.form [type="submit"], .form [type="button"]{
	background: #1D92D6 url(../img/arrow-mark-contact.svg) no-repeat right 12px center / 47px;
	color: #fff;
	display: flex;
	align-items: center;
	width: 210px;
	height: 76px;
	margin: 0 auto;
	padding-left: 20px;
	font-size: 18px;
	font-weight: 500;
	font-family: "Noto Sans JP", serif;
	text-align: left;
	border: none;
	border-radius: 100px;
	transition: 0.2s;
	cursor: pointer;
}
.form .row{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	margin-top: 48px;
}
.form .row input{
	margin: 0;
}
.form .row input.back{
  display: block;
  appearance: none; 
	background-color: transparent;
	background-image: none;
	color: #979797;
	border: 2px solid #979797;
	text-align: center !important;
	padding-left: inherit;
}
.form .row span{
	display: none;
}
.form .btn_entry{
	margin-top: 48px;
}
.form .contact_thanks_txt{
	text-align: center;
}
.form .contact_thanks_btn{
	background: #1D92D6 url(../img/arrow-mark-contact.svg) no-repeat right 12px center / 47px;
	color: #fff;
	display: flex;
	align-items: center;
	width: 210px;
	height: 76px;
	margin: 1rem auto 0;
	padding-left: 20px;
	font-size: 18px;
	font-weight: 500;
	text-align: left;
	border: none;
	border-radius: 100px;
	transition: 0.2s;
	cursor: pointer;
}

.h2-nomal {
	color: #1D92D6;
	margin-bottom: 32px;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.08em;
}
@media (max-width: 1440px) {
	.h2-nomal {
		font-size: 26px;
	}
}
@media (max-width: 768px) {
	.h2-nomal {
		margin-bottom: 24px;
	}
}

.h2-logo {
	background: url(../img/h2-logo-blue.svg) no-repeat left center/40px;
	color: #1D92D6;
	margin-bottom: 32px;
	padding-left: 48px;
	font-size: 32px;
	font-weight: 700;
	letter-spacing: 0.04em;
}
@media (max-width: 1440px) {
	.h2-logo {
		background-size: 24px;
		padding-left: 32px;
		font-size: 26px;
	}
}
@media (max-width: 768px) {
	.h2-logo {
		margin-bottom: 24px;
	}
}
.h2-logo.white {
  background-image: url(../img/h2-logo-white.svg);
  color: #fff;
}

.catchphrase {
  color: #393F43;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media (max-width: 1440px) {
  .catchphrase {
    font-size: 26px;
  }
}
@media (max-width: 1240px) {
  .catchphrase {
    font-size: 20px;
  }
}

.sentence {
  color: #505050;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media (max-width: 1440px) {
  .sentence {
    font-size: 15px;
  }
}
@media (max-width: 1440px) {
  .sentence {
    font-size: 14px;
  }
}

.top_mv {
  background: url(../img/mv-image-top.svg) no-repeat center top -40px/100vw, url(../img/mv-image-bottom.svg) no-repeat center bottom/100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 144px;
}
@media (max-width: 1240px) {
  .top_mv {
    background-size: 1240px;
    margin-bottom: 90px;
  }
}
.top_mv .copy {
  width: 25vw;
  margin-bottom: 120px;
}
@media (max-width: 1240px) {
  .top_mv .copy {
    width: 280px;
  }
}

.top_about {
  margin-bottom: 212px;
}
@media (max-width: 1240px) {
  .top_about {
    margin-bottom: 112px;
  }
}
.top_about .row {
	display: flex;
	align-items: flex-start;
	gap: 20px 80px;
}
@media (max-width: 1080px) {
  .top_about .row {
    flex-direction: column-reverse;
  }
}
.top_about .row .txt_content {
  flex: 1;
}
.top_about .row .txt_content .catchphrase {
  margin-bottom: 44px;
}
@media (max-width: 1080px) {
  .top_about .row .txt_content .catchphrase {
    margin-bottom: 10px;
  }
}
.top_about .row .txt_content .sentence {
  margin-bottom: 40px;
}
.top_about .row .txt_content .zerotrast {
	position: relative;
}
.top_about .row .txt_content .zerotrast .close {
	background: #1D92D6;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	inset: 20px 20px auto auto;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	cursor: pointer;
}
@media screen and (min-width: 769px) {
  .top_about .row .txt_content .zerotrast .close {
    display: none;
  }
}
.top_about .row .txt_content .zerotrast .close::before ,
.top_about .row .txt_content .zerotrast .close::after {
	content: '';
	background: #fff;
	position: absolute;
	width: 15px;
	height: 1px;
}
.top_about .row .txt_content .zerotrast .close::before {
	rotate: 45deg;
}
.top_about .row .txt_content .zerotrast .close::after {
	rotate: -45deg;
}
.top_about .row .txt_content .zerotrast .btn {
	display: flex;
	align-items: center;
	gap: 55px;
	width: -moz-fit-content;
	width: fit-content;
	height: 76px;
	padding: 0 15px 0 40px;
	border: 1px solid #E8E8E8;
	border-radius: 100px;
	box-shadow: 2px 2px 2px rgb(197, 197, 197), -2px -2px 2px rgb(255, 255, 255);
	transition: 0.2s;
	user-select: none;
	cursor: pointer;
}
.top_about .row .txt_content .zerotrast .btn:hover{
	box-shadow: -2px -2px 2px rgb(197, 197, 197), 2px 2px 2px rgb(255, 255, 255);
}
.top_about .row .txt_content .zerotrast .btn img{
	width: 40px;
	transition: 0.2s;
}
.top_about .row .txt_content .zerotrast .box {
	background: rgba(255, 255, 255, .95);
	display: none;
	position: absolute;
	inset: auto auto 105% 0;
	translate: 50% 0;
	width: 90%;
  max-width: 420px;
	padding: 20px;
	border-radius: 10px;
}
.top_about .row .txt_content .zerotrast .box dt {
	color: #1D92D6;
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 700;
}
.top_about .row .txt_content .zerotrast .box dd {
	font-size: 14px;
	line-height: 2;
}
.top_about .row .img {
  width: 800px;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .top_about .row .img {
    width: 600px;
  }
}
@media (max-width: 1240px) {
  .top_about .row .img {
    width: 500px;
  }
}
@media (max-width: 1080px) {
	.top_about .row .txt_content .zerotrast .btn{
		margin: 0 auto;
	}	
}
@media (max-width: 960px) {
	.top_about .row .txt_content .zerotrast .box{
		inset: 50% auto auto 50%;
		translate: -50% -50%;
	}
}

.top_realizable {
  margin-bottom: 292px;
}
@media (max-width: 1240px) {
  .top_realizable {
    margin-bottom: 132px;
  }
}
.top_realizable .row {
	display: flex;
	gap: 120px;
  gap: 6.25vw;
	width: 1200px;
	max-width: 100%;
	margin: 76px auto 0;
}
@media (max-width: 1240px) {
	.top_realizable .row {
		width: 1000px;
		gap: 80px;
	}
}
@media (max-width: 1080px) {
	.top_realizable .row {
		width: 820px;
		gap: 40px;
	}
}
@media (max-width: 768px) {
	.top_realizable .row {
		flex-direction: column;
		gap: 80px;
		margin-top: 64px;
	}
}
.top_realizable .row li {
  flex: 1;
}
.top_realizable .row .img {
  margin: 0 auto 20px;
  border-radius: 20px;
  overflow: hidden;
  width: 20.8vw;
  min-width: 200px;
  max-width: 320px;
}
@media (max-width: 768px) {
	.top_realizable .row .img {
		width: 280px;
		margin: 0 auto 20px;
	}
}
.top_realizable .row .ttl {
  color: #393F43;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 1440px) {
  .top_realizable .row .ttl {
    font-size: 18px;
  }
}
.top_realizable .row .txt {
  color: #505050;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 1080px) {
  .top_realizable .row .txt {
    font-size: 14px;
  }
}

.top_about2 {
  display: flex;
  align-items: center;
  position: relative;
  height: auto;
  padding: 12vw 0;
}
@media (max-width: 960px) {
	.top_about2 {
		background: #1D92D6 url(../img/about-z-sase-bg.svg) no-repeat center bottom 40px/85%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 64px 0px 80px;
		height: 100%;
    overflow-x: clip;
	}
}
.top_about2::before {
  content: "";
  background: #1D92D6;
  position: absolute;
  inset: 0 auto auto 0;
  width: 77vw;
  height: 100%;
  border-radius: 0 40px 40px 0;
  z-index: -1;
}
@media (max-width: 960px) {
  .top_about2::before {
    display: none;
  }
}
.top_about2 .about2_sase {
  position: absolute;
  inset: auto auto calc(100% - 2px) 0;
  width: 60vw;
}
@media (max-width: 960px) {
  .top_about2 .about2_sase {
    width: calc(100vw - 40px);
  }
}
.top_about2 .img {
	position: absolute;
	inset: 50% 0 auto auto;
	translate: 0 -50%;
	width: 50vw;
	border-radius: 40px 0 0 40px;
	overflow: hidden;
}
@media (max-width: 960px) {
	.top_about2 .img {
		position: initial;
		translate: none;
		width: calc(100vw - 20px);
		margin: 0 -40px 32px 0;
    height: 480px;
		border-radius: 20px 0 0 20px;
		overflow: hidden;
	}
}
@media screen  and (max-width: 768px) {
	.top_about2 .img {
		height: 300px;
		margin: 0 -20px 32px 0;
	}
}
.top_about2 .img img {
	object-fit: cover;
	object-position: center;
  height: 100%;
}
.top_about2 .txt_content {
	background: url(../img/about-z-sase-bg.svg) no-repeat left center/45%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: min(1600px, 100% - 80px);
	height: 100%;
  min-height: 524px;
	margin: 0 auto;
}
@media (max-width: 960px) {
  .top_about2 .txt_content {
    display: contents;
  }
}
.top_about2 .txt_content > * {
  color: #fff;
  margin-right: 50vw;
}
@media (max-width: 960px) {
  .top_about2 .txt_content > * {
    width: min(1600px, 100% - 40px);
    margin: 0 auto;
  }
}
.top_about2 .txt_content .h2-logo {
  margin-bottom: 36px;
}
@media (max-width: 960px) {
  .top_about2 .txt_content .h2-logo {
    order: -1;
    width: auto;
  }
}
.top_about2 .txt_content .catchphrase {
  margin-bottom: 48px;
}
@media (max-width: 960px) {
  .top_about2 .txt_content .catchphrase {
    margin-bottom: 20px;
  }
}

.top_service {
  padding: 160px 0 200px;
}
@media (max-width: 1240px) {
  .top_service {
    padding: 60px 0 124px;
  }
}
.top_service .lists {
  max-width: 1360px;
  margin: 0 auto;
}
.top_service .lists li {
	display: flex;
	align-items: center;
	gap: 0 80px;
	margin-top: 128px;
}
@media (max-width: 960px) {
	.top_service .lists li {
		flex-direction: column;
		align-items: flex-start;
	}
}
@media (min-width: 961px) {
	.top_service .lists li:nth-child(even) {
		flex-direction: row-reverse;
	}
}
@media (max-width: 768px) {
	.top_service .lists {
		margin-top: 60px;
	}
	.top_service .lists li {
		margin-top: 0;
	}
	.top_service .lists li + li {
		margin-top: 56px;
	}
}
.top_service .lists .txt_content {
  width: calc(47% - 80px);
}
@media (max-width: 960px) {
  .top_service .lists .txt_content {
    display: contents;
  }
}
.top_service .lists .txt_content .num {
  color: #88C4E6;
  margin-bottom: 8px;
  font-size: 72px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .top_service .lists .txt_content .num {
    font-size: 48px;
  }
}
.top_service .lists .txt_content .catchphrase {
  margin-bottom: 40px;
}
@media (max-width: 960px) {
  .top_service .lists .txt_content .catchphrase {
    margin-bottom: 24px;
  }
}
@media (max-width: 960px) {
  .top_service .lists .txt_content .sentence {
    order: 1;
  }
}
.top_service .lists .img {
  width: 53%;
  border-radius: 20px;
  overflow: hidden;
}
.top_service .lists .img.border_none {
	border-radius: 0;
}
@media (max-width: 960px) {
  .top_service .lists .img {
    width: 100%;
    margin-bottom: 24px;
  }
}

.top_function {
  background: #1D92D6;
  padding: 80px 0 132px;
}
@media (max-width: 1240px) {
  .top_function {
    padding: 60px 0 44px;
  }
}
.top_function .h2-logo {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.top_function .catchphrase {
  color: #fff;
  margin-bottom: 72px;
  text-align: center;
}
.top_function .cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 768px) {
	.top_function .catchphrase {
		margin-bottom: 32px;
	}
}
@media (max-width: 768px) {
  .top_function .cards {
    gap: 40px;
  }
}
.top_function .cards li {
  background: #fff;
  width: 30%;
  min-width: 300px;
  max-width: 100%;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1080px) {
  .top_function .cards li {
    padding: 32px;
    width: 360px;
  }
}
.top_function .cards li .ttl {
  background: #CBE6F5;
  color: #1D92D6;
  margin-bottom: 28px;
  padding: 10px 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .top_function .cards li .ttl {
    font-size: 21px;
  }
}
.top_function .cards li .img {
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
}
.top_function .cards li .sentence {
  display: none;
}
@media screen and (max-width: 1080px) {
  .top_function .cards li .sentence {
    display: inherit;
  }
}
.function-modal {
  visibility: hidden;
  background-color: rgba(13, 58, 85, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 20px;
  font-size: 14px;
  transition: 0.2s;
  opacity: 0;
}
.top_function .cards li:hover .function-modal {
  visibility: visible;
  opacity: 1;
  transition: 0.2s;
}
@media screen and (max-width: 1080px) {
  .function-modal {
    display: none;
  } 
  .top_function .cards li:hover .function-modal {
    visibility: hidden;
  } 
}
.function-modal dt {
  margin-bottom: 28px;
  padding: 10px 0;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
.function-sentence { 
  font-size: 15px;
  letter-spacing: 0.08em;
  line-height: 2;
}
@media (max-width: 1440px) {
  .function-sentence {
      font-size: 14px;
  }
}


.top_fee {
  padding: 80px 0;
}
@media (max-width: 1240px) {
  .top_fee {
    padding: 60px 0;
  }
}
.top_fee .h2-logo {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.top_fee .catchphrase {
  margin-bottom: 40px;
  text-align: center;
}
.top_fee .plans {
  display: flex;
  gap: 80px 160px;
  max-width: 1360px;
  margin: 0 auto 40px;
}
@media (max-width: 960px) {
  .top_fee .plans {
    flex-direction: column;
    margin: 0 auto 24px;
  }
}
.top_fee .plans .plan {
  background: #CBE6F5;
  flex: 1;
  position: relative;
  padding: 30px 40px;
  border-radius: 20px;
}
@media (max-width: 1240px) {
  .top_fee .plans .plan {
    padding: 40px 24px;
  }
}
.top_fee .plans .plan + .plan::before {
  content: "";
  background: url(../img/fee-plus.svg) no-repeat center/cover;
  position: absolute;
  inset: 50% auto auto -80px;
  translate: -50% -50%;
  width: 48px;
  height: 48px;
}
@media (max-width: 960px) {
  .top_fee .plans .plan + .plan::before {
    inset: -40px auto auto 50%;
    width: 40px;
    height: 40px;
  }
}
.top_fee .plans .plan .ttl {
  color: #1D92D6;
  margin-bottom: 38px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1240px) {
  .top_fee .plans .plan .ttl {
    margin-bottom: 28px;
    font-size: 19px;
  }
}
.top_fee .plans .plan .type {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1240px) {
  .top_fee .plans .plan .type {
    margin-bottom: 0;
    font-size: 12px;
  }
}
.top_fee .plans .plan .fee {
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 1240px) {
  .top_fee .plans .plan .fee {
    margin-bottom: 26px;
    font-size: 12px;
  }
}
.top_fee .plans .plan .fee span {
  color: #393F43;
  display: block;
  font-size: 85px;
}
@media (max-width: 1240px) {
  .top_fee .plans .plan .fee span {
    font-size: 51px;
  }
}
.top_fee .plans .plan .cap li {
  color: #505050;
  font-size: 16px;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 1240px) {
  .top_fee .plans .plan .cap li {
    font-size: 12px;
  }
}
.top_fee .plans .plan .cap li::before {
  content: "※";
}
.top_fee .plans .plan .cap li + li {
  margin-top: 1em;
}
.top_fee .cap2 {
	color: #505050;
	max-width: 1360px;
	margin: 0 auto 140px;
	font-size: 14px;
}
@media (max-width: 960px) {
	.top_fee .cap2 {
		margin: 0 auto 60px;
		font-size: 12px;
	}
}
.top_fee .contact {
  display: block;
  width: 720px;
  margin: 0 auto;
  padding: 60px 52px 60px 36px;
  border: 1px solid #EDEDED;
  border-radius: 20px;
  box-shadow: 5px 5px 5px rgba(197, 197, 197, 0.8), -5px -5px 5px rgba(255, 255, 255, 0.6);
  transition: 0.2s;
}
@media (max-width: 960px) {
  .top_fee .contact {
    width: 400px;
    max-width: 400px;
    padding: 16px 16px 28px;
  }
}
@media (max-width: 768px) {
  .top_fee .contact {
    width: 100%;
  }
}
.top_fee .contact:hover {
  box-shadow: -2px -2px 2px rgb(197, 197, 197), 2px 2px 2px rgb(255, 255, 255);
}
.top_fee .contact .h2-logo {
  margin: 0 0 24px;
}
.top_fee .contact .row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
}
.top_fee .contact .row .txt {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .top_fee .contact .row .txt {
    font-size: 18px;
  }
}

.top_fee .contact .row .btn_mark{
	inset: 50% 0 auto auto;
	translate: 0 -50%;
	width: 80px;
	height: 80px;
}
@media (max-width: 960px) {
	.top_fee .contact .row .btn_mark{
		width: 50px;
		height: 50px;
	}
}

.top_faq {
  background: url(../img/faq-image.jpg) no-repeat center/1920px;
  padding: 76px 0 32px;
}
@media (max-width: 768px) {
  .top_faq {
    background-size: cover;
    padding: 40px 0 32px;
  }
}
.top_faq .box {
  max-width: 1040px;
  margin: 0 auto;
}
.top_faq .box .txt {
  color: #fff;
  margin-bottom: 80px;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 768px) {
  .top_faq .box .txt {
    margin-bottom: 24px;
  }
}
.top_faq .box .btn {
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  margin-left: auto;
  padding-right: 95px;
}
@media (max-width: 768px) {
  .top_faq .box .btn {
    padding-right: 66px;
  }
}

.top_faq .box .btn .btn_mark{
	inset: 50% 0 auto auto;
	translate: 0 -50%;
	width: 50px;
	height: 50px;
}

.top_news {
  padding: 80px 0 160px;
}
@media (max-width: 768px) {
  .top_news {
    padding: 60px 0;
  }
}
.top_news .h2-logo {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
@media (max-width: 768px) {
  .top_news .h2-logo {
    margin: 0 auto 40px;
  }
}
.top_news .box {
  max-width: 1120px;
  margin: 0 auto;
}

.top_news .news_lists li:nth-child(n + 6){
	display: none;
}

.top_news .btn {
	display: flex;
	align-items: center;
	gap: 55px;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	height: 76px;
	margin: 75px 0 0 auto;
	padding: 0 100px 0 40px;
	border: 1px solid #E8E8E8;
	border-radius: 100px;
	box-shadow: 2px 2px 2px rgb(197, 197, 197), -2px -2px 2px rgb(255, 255, 255);
	transition: 0.2s;
}
.top_news .btn:hover {
  box-shadow: -2px -2px 2px rgb(197, 197, 197), 2px 2px 2px rgb(255, 255, 255);
}
.top_news .btn .btn_mark{
	inset: 50% 15px auto auto;
	translate: 0 -50%;
	width: 50px;
	height: 50px;
}
.top_news .btn img{
	width: 40px;
	transition: .2s;
}
@media (max-width: 768px) {
	.top_news .btn {
		margin: 40px auto 0;
	}
}

.terms_lead{
	text-align: right;
}
@media (max-width: 768px) {
	.terms_lead{
		font-size: 14px;
		text-align: left;
	}
}
.terms_block{
	margin-top: 80px;
}
.terms_block > *{
	margin-top: 10px;
	line-height: 1.7;
}
.terms_block .cap{
	font-size: 14px;
}
.terms_block .txt_link{
	color: #1D92D6;
	text-decoration: underline;
}
@media (max-width: 768px) {
	.terms_block p{
		font-size: 14px;
	}
	.terms_block p.cap{
		font-size: 12px;
	}
}
.terms_block .table table{
	width: 100%;
	border-top: 1px solid #1D92D6;
	border-left: 1px solid #1D92D6;
}
.terms_block .table th, .terms_block .table td{
	padding: 10px;
	border-right: 1px solid #1D92D6;
	border-bottom: 1px solid #1D92D6;
	line-height: 1.7;
	letter-spacing: .04em;
}
.terms_block .table th{
	background: #E3EDF3;
	white-space: nowrap;
}
.terms_block .table td{
	vertical-align: baseline;
}
.terms_block ul li{
	display: flex;
}
.terms_block ul li + li{
	margin-top: 10px;
}
.terms_block ul li i{
	padding-right: 10px;
	font-style: normal;
}

.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 0.5s;
}
.top_mv .fadein {
  transform: translateY(0);
}
.scrollin {
  opacity: 1; 
  transform: translateY(0%);
}

.txt_link_nomal {
  color: #1D92D6;
  text-decoration: underline;
}

