@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

body {
  font-size: 15px;
}

.sp_hidden,
.pc_wide {
  display: none !important;
}

.inner {
  width: 100%;
  padding: 0 5%;
}

.mg-b20 {
  margin-bottom: 10px;
}

.mg-b30 {
  margin-bottom: 20px;
}

.mg-b40 {
  margin-bottom: 25px;
}

.mg-b50 {
  margin-bottom: 30px;
}

.txt-left {
  font-size: 12px;
}

.txt-right {
  font-size: 12px;
}



/*--------------------
	KeyVisual
--------------------*/
.kv-pc {
  display: none;
}

.sp-area {
  display: block;
  position: relative;
  overflow: hidden;
}

.kv-sp-bg {
  position: relative;
}

.kv-sp-logo {
  width: 90%;
  position: absolute;
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
}

.kv-sp-txt {
  width: 90%;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto 20px;
}

.header-nav {
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s linear;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  background: url(../img/nav-bg.png) center / cover no-repeat;
  transition: ease .4s;
  z-index: 1;
  overflow: auto;
  height: 100%;
}

.header-nav.active {
  pointer-events: auto;
  opacity: 1;
}

.header-nav-inner {
  padding: 5%;
}

.nav-logo {
  width: 60%;
  margin-bottom: 15px;
}

.nav-banner {
  display: block;
  margin-top: 20px;
}

.nav-banner img {
  width: 100%;
}

.sp-nav {
  background: #FFFFFF;
  position: relative;
  font-size: 14px;
  font-weight: 700;
}

.sp-nav-box {
  border-radius: 10px;
  margin-top: 15px;
}

.sp-nav-box.box01 {
  border: 1px solid #F5B987;
  margin-top: 0;
}

.sp-nav-box.box02 {
  border: 1px solid #FAD58A;
}

.sp-nav-box.box03 {
  border: 1px solid #A5D2CD;
}

.sp-nav-box.box04 {
  border: 1px solid #9CC3D7;
}

.sp-nav-box.box05 {
  border: 1px solid #A3B4D7;
}

.sp-nav-box.box06 {
  border: 1px solid #C69DCE;
}

.sp-nav-box.box07 {
  border: 1px solid #E1C8A9;
}

.sp-nav-ttl {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}

.sp-nav-ttl .icon {
  width: 65px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px 0 0 5px;
}

.sp-nav-box.box01 .sp-nav-ttl .icon {
  background: #F5B987;
}

.sp-nav-box.box02 .sp-nav-ttl .icon {
  background: #FAD58A;
}

.sp-nav-box.box03 .sp-nav-ttl .icon {
  background: #A5D2CD;
}

.sp-nav-box.box04 .sp-nav-ttl .icon {
  background: #9CC3D7;
}

.sp-nav-box.box05 .sp-nav-ttl .icon {
  background: #A3B4D7;
}

.sp-nav-box.box06 .sp-nav-ttl .icon {
  background: #C69DCE;
}

.sp-nav-box.box07 .sp-nav-ttl .icon {
  background: #E1C8A9;
}

.sp-nav-box.box01 .sp-nav-ttl .icon img {
  height: 59%;
}

.sp-nav-box.box02 .sp-nav-ttl .icon img {
  height: 76%;
}

.sp-nav-box.box03 .sp-nav-ttl .icon img {
  height: 48%;
}

.sp-nav-box.box04 .sp-nav-ttl .icon img {
  height: 57%;
}

.sp-nav-box.box05 .sp-nav-ttl .icon img {
  height: 74%;
}

.sp-nav-box.box06 .sp-nav-ttl .icon img {
  height: 67%;
}

.sp-nav-box.box07 .sp-nav-ttl .icon img {
  height: 61%;
}

.sp-nav-ttl .ttl {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  padding-left: 10px;
}

.sp-nav-ttl::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  top: 50%;
  right: 10px;
  background: #505050;
  transform: translateY(-50%);
}

.sp-nav-ttl::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 2px;
  background: #505050;
  transition: .4s;
  transform: translateY(-50%) rotate(90deg);
}

.sp-nav-ttl.open::after {
  transform: translateY(-50%) rotate(180deg);
}

.sp-nav-list {
  display: none;
}

.sp-nav-list .list {
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  padding: 10px 15px 10px 40px;
  position: relative;
  background: #fff;
}

.sp-nav-list .list:last-child {
  border-radius: 0 0 10px 10px;
}

.sp-nav-box.box01 .sp-nav-list .list {
  border-top: 1px solid #F5B987;
}

.sp-nav-box.box02 .sp-nav-list .list {
  border-top: 1px solid #FAD58A;
}

.sp-nav-box.box03 .sp-nav-list .list {
  border-top: 1px solid #A5D2CD;
}

.sp-nav-box.box04 .sp-nav-list .list {
  border-top: 1px solid #9CC3D7;
}

.sp-nav-box.box05 .sp-nav-list .list {
  border-top: 1px solid #A3B4D7;
}

.sp-nav-box.box06 .sp-nav-list .list {
  border-top: 1px solid #C69DCE;
}

.sp-nav-box.box07 .sp-nav-list .list {
  border-top: 1px solid #E1C8A9;
}

.sp-nav-list .list::before,
.sp-nav-list .list::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 17px;
  width: 11px;
  height: 2px;
  border-radius: 9999px;
  transform-origin: calc(100% - 1px) 50%;
}

.sp-nav-box.box01 .sp-nav-list .list::before,
.sp-nav-box.box01 .sp-nav-list .list::after {
  background: #C9752E;
}

.sp-nav-box.box02 .sp-nav-list .list::before,
.sp-nav-box.box02 .sp-nav-list .list::after {
  background: #D6A542;
}

.sp-nav-box.box03 .sp-nav-list .list::before,
.sp-nav-box.box03 .sp-nav-list .list::after {
  background: #72A8A2;
}

.sp-nav-box.box04 .sp-nav-list .list::before,
.sp-nav-box.box04 .sp-nav-list .list::after {
  background: #6FA0B9;
}

.sp-nav-box.box05 .sp-nav-list .list::before,
.sp-nav-box.box05 .sp-nav-list .list::after {
  background: #6A85BC;
}

.sp-nav-box.box06 .sp-nav-list .list::before,
.sp-nav-box.box06 .sp-nav-list .list::after {
  background: #A87AB1;
}

.sp-nav-box.box07 .sp-nav-list .list::before,
.sp-nav-box.box07 .sp-nav-list .list::after {
  background: #AF8859;
}

.sp-nav-list .list::before {
  transform: rotate(45deg);
}

.sp-nav-list .list::after {
  transform: rotate(-45deg);
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  background: #FF9538;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
  margin: 0 auto;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px auto;
}

.hamburger span:nth-child(3) {
  top: 0;
}

.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -11px;
  transform: rotate(-45deg);
}

/*--------------------
	section01
--------------------*/
.sec01 {
  padding: 30px 0 0;
}

.sec01-btn {
  width: 100%;
  flex-wrap: wrap;
  margin: 0 auto 20px;
}

.sec01-btn-l {
  width: 30%;
  margin-bottom: 15px;
}

.sec01-btn-l:last-child {
  margin: 0 auto 15px;
}

.sec01-btn-l.btn01 img,
.sec01-btn-l.btn02 img,
.sec01-btn-l.btn04 img,
.sec01-btn-l.btn05 img,
.sec01-btn-l.btn06 img,
.sec01-btn-l.btn07 img {
  width: auto;
  height: 70%;
}

.sec01-btn-l.btn03 img {
  width: auto;
  height: 60%;
}

.sec01-btn-l .l-txt {
  font-size: 15px;
}

.sec01-btn-l.btn01.active-button {
  background: #F5B987;
  border: 3px solid #F5B987;
}

.sec01-btn-l.btn02.active-button {
  background: #FAD58A;
  border: 3px solid #FAD58A;
}

.sec01-btn-l.btn03.active-button {
  background: #A5D2CD;
  border: 3px solid #A5D2CD;
}

.sec01-btn-l.btn04.active-button {
  background: #9CC3D7;
  border: 3px solid #9CC3D7;
}

.sec01-btn-l.btn05.active-button {
  background: #A3B4D7;
  border: 3px solid #A3B4D7;
}

.sec01-btn-l.btn06.active-button {
  background: #C69DCE;
  border: 3px solid #C69DCE;
}

.sec01-btn-l.btn07.active-button {
  background: #E1C8A9;
  border: 3px solid #E1C8A9;
}


.sec01-btn-l.active-button .l-txt {
  color: #333333;
  border-top: none;
}

.sec01-btn-l.btn01.active-button .l-txt,
.sec01-btn-l.btn02.active-button .l-txt,
.sec01-btn-l.btn03.active-button .l-txt,
.sec01-btn-l.btn04.active-button .l-txt,
.sec01-btn-l.btn05.active-button .l-txt,
.sec01-btn-l.btn06.active-button .l-txt {
  background: #fff;
}

.sec01-txt .txt {
  font-size: 14px;
  line-height: 1.5;
}

.sec01-txt .txt .name {
  font-size: 24px;
}


/*--------------------
	section02
--------------------*/
.sec02 {
  line-height: 0;
}

.sec02-inner {
  padding: 40px 0 25px;
}

.sec02-l {
  display: block;
  padding: 6%;
}

.sec02-l .l-video {
  width: 100%;
  margin-bottom: 20px;
}

.sec02-l .l-txt {
  width: 100%;
}

.sec02-l .l-txt p {
  font-size: 16px;
}

.modal-content {
  width: 90%;
  padding-top: 51.2%;
}

.modal-close {
  top: -15%;
  width: 6%;
  padding-top: 6%;
}


/*--------------------
	section03
--------------------*/
.sec03 {
  padding: 40px 0 0;
}

.sec03 .inner {
  padding: 0 5% 30px;
}

.sec03-ttl {
  display: none;
}

.sec03-ttl-sp {
  display: block;
  margin-bottom: 50px;
}

.sec03-l {
  display: block;
}

.sec03-l .l-box {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  box-shadow: none;
}

.sec03-l .l-box.box01 .box-ttl a,
.sec03-l .l-box.box02 .box-ttl a,
.sec03-l .l-box.box03 .box-ttl a,
.sec03-l .l-box.box04 .box-ttl a,
.sec03-l .l-box.box06 .box-ttl a,
.sec03-l .l-box.box07 .box-ttl a {
  border: 0;
}

.sec03-l .l-box.box05 .box-ttl a {
  border: 0;
}

.sec03-l .l-box.box01 .box-txt a,
.sec03-l .l-box.box02 .box-txt a,
.sec03-l .l-box.box03 .box-txt a,
.sec03-l .l-box.box04 .box-txt a,
.sec03-l .l-box.box05 .box-txt a,
.sec03-l .l-box.box06 .box-txt a,
.sec03-l .l-box.box07 .box-txt a {
  border: 0;
}

.sec03-l .l-box::before {
  width: 77px;
  height: 77px;
  top: 5px;
  bottom: auto;
}

.sec03-l .l-box .box-ttl a {
  font-size: 20px;
  line-height: 1.3;
  height: 78px;
  margin: 0 0 20px 85px;
  padding: 0 0 0 70px;
  border-radius: 10px;
  box-shadow: 5px 7px 20px -8px #777777;
}

.sec03-l .l-box.box01 .box-ttl a::before {
  width: 43px;
  height: 30px;
  left: 13px;
}

.sec03-l .l-box.box02 .box-ttl a::before {
  width: 27px;
  height: 47px;
}

.sec03-l .l-box.box03 .box-ttl a::before {
  width: 46px;
  height: 26px;
  left: 13px;
}

.sec03-l .l-box.box04 .box-ttl a::before {
  width: 38px;
  height: 32px;
  left: 16px;
}

.sec03-l .l-box.box05 .box-ttl a::before {
  width: 43px;
  height: 42px;
  left: 12px;
}

.sec03-l .l-box.box06 .box-ttl a::before {
  width: 34px;
  height: 42px;
  left: 18px;
}

.sec03-l .l-box.box07 .box-ttl a::before {
  width: 37px;
  height: 37px;
  left: 16px;
}



.sec03-l .l-box .box-ttl a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  border-style: solid;
  border-width: 8px 13px 8px 0;
  translate: -100% -50%;
}

.sec03-l .l-box.box01 .box-ttl a::after {
  border-color: transparent #F5B987 transparent transparent;
}

.sec03-l .l-box.box02 .box-ttl a::after {
  border-color: transparent #FAD58A transparent transparent;
}

.sec03-l .l-box.box03 .box-ttl a::after {
  border-color: transparent #A5D2CD transparent transparent;
}

.sec03-l .l-box.box04 .box-ttl a::after {
  border-color: transparent #9CC3D7 transparent transparent;
}

.sec03-l .l-box.box05 .box-ttl a::after {
  border-color: transparent #A3B4D7 transparent transparent;
}

.sec03-l .l-box.box06 .box-ttl a::after {
  border-color: transparent #C69DCE transparent transparent;
}

.sec03-l .l-box.box07 .box-ttl a::after {
  border-color: transparent #E1C8A9 transparent transparent;
}

.sec03-l .l-box.box01:hover .box-ttl a {
  color: #fff;
  background: #C9752E;
  border: 0;
}

.sec03-l .l-box.box02:hover .box-ttl a {
  color: #fff;
  background: #D6A542;
  border: 0;
}

.sec03-l .l-box.box03:hover .box-ttl a {
  color: #fff;
  background: #72A8A2;
  border: 0;
}

.sec03-l .l-box.box04:hover .box-ttl a {
  color: #fff;
  background: #6FA0B9;
  border: 0;
}

.sec03-l .l-box.box05:hover .box-ttl a {
  color: #fff;
  background: #6A85BC;
  border: 0;
}

.sec03-l .l-box.box06:hover .box-ttl a {
  color: #fff;
  background: #A87AB1;
  border: 0;
}

.sec03-l .l-box.box07:hover .box-ttl a {
  color: #fff;
  background: #AF8859;
  border: 0;
}

.sec03-l .l-box.box01:hover .box-ttl a::after {
  border-color: transparent #C9752E transparent transparent;
}

.sec03-l .l-box.box02:hover .box-ttl a::after {
  border-color: transparent #D6A542 transparent transparent;
}

.sec03-l .l-box.box03:hover .box-ttl a::after {
  border-color: transparent #72A8A2 transparent transparent;
}

.sec03-l .l-box.box04:hover .box-ttl a::after {
  border-color: transparent #6FA0B9 transparent transparent;
}

.sec03-l .l-box.box05:hover .box-ttl a::after {
  border-color: transparent #6A85BC transparent transparent;
}

.sec03-l .l-box.box06:hover .box-ttl a::after {
  border-color: transparent #A87AB1 transparent transparent;
}

.sec03-l .l-box.box07:hover .box-ttl a::after {
  border-color: transparent #AF8859 transparent transparent;
}

.sec03-l .l-box.box01:hover .box-txt a,
.sec03-l .l-box.box02:hover .box-txt a,
.sec03-l .l-box.box03:hover .box-txt a,
.sec03-l .l-box.box04:hover .box-txt a,
.sec03-l .l-box.box05:hover .box-txt a,
.sec03-l .l-box.box06:hover .box-txt a,
.sec03-l .l-box.box07:hover .box-txt a {
  border: 0;
}

.sec03-l .l-box .box-txt {
  display: block;
  height: auto;
  min-height: auto;
  background-color: transparent;
}

.sec03-l .l-box .box-txt a {
  display: block;
  height: auto;
  padding: 0;
  pointer-events: none;
}

.sec03-l .l-box .box-txt a::before {
  content: none;
}

.sec03-l .l-box .box-txt a::after {
  content: none;
}


.sec03-l .l-box .box-list li {
  font-size: 18px;
  margin-bottom: 15px;
}

.sec03-l .l-box .box-list li::before {
  top: 2px;
}

.sec03-l .l-box .box-link {
  display: none;
}

.sec03-l .box-link-sp {
  display: block;
  text-align: right;
  margin-bottom: 50px;
}

.sec03-l .box-link-sp a {
  font-size: 18px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  position: relative;
  display: block;
  width: 150px;
  background: #fff;
  border-radius: 20px;
  padding-right: 10px;
  margin-left: auto;
}

.sec03-l .box-link-sp.btn01 a {
  color: #C9752E;
  border: 2px solid #C9752E;
}

.sec03-l .box-link-sp.btn02 a {
  color: #D6A542;
  border: 2px solid #D6A542;
}

.sec03-l .box-link-sp.btn03 a {
  color: #72A8A2;
  border: 2px solid #72A8A2;
}

.sec03-l .box-link-sp.btn04 a {
  color: #6FA0B9;
  border: 2px solid #6FA0B9;
}

.sec03-l .box-link-sp.btn05 a {
  color: #6A85BC;
  border: 2px solid #6A85BC;
}

.sec03-l .box-link-sp.btn06 a {
  color: #A87AB1;
  border: 2px solid #A87AB1;
}

.sec03-l .box-link-sp.btn07 a {
  color: #AF8859;
  border: 2px solid #AF8859;
}

.sec03-l .box-link-sp a::before,
.sec03-l .box-link-sp a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 13px;
  width: 13px;
  height: 3px;
  border-radius: 9999px;
  transform-origin: calc(100% - 1px) 50%;
}

.sec03-l .box-link-sp.btn01 a::before,
.sec03-l .box-link-sp.btn01 a::after {
  background-color: #C9752E;
}

.sec03-l .box-link-sp.btn02 a::before,
.sec03-l .box-link-sp.btn02 a::after {
  background-color: #D6A542;
}

.sec03-l .box-link-sp.btn03 a::before,
.sec03-l .box-link-sp.btn03 a::after {
  background-color: #72A8A2;
}

.sec03-l .box-link-sp.btn04 a::before,
.sec03-l .box-link-sp.btn04 a::after {
  background-color: #6FA0B9;
}

.sec03-l .box-link-sp.btn05 a::before,
.sec03-l .box-link-sp.btn05 a::after {
  background-color: #6A85BC;
}

.sec03-l .box-link-sp.btn06 a::before,
.sec03-l .box-link-sp.btn06 a::after {
  background-color: #A87AB1;
}

.sec03-l .box-link-sp.btn07 a::before,
.sec03-l .box-link-sp.btn07 a::after {
  background-color: #AF8859;
}

.sec03-l .box-link-sp a::before {
  transform: rotate(45deg);
}

.sec03-l .box-link-sp a::after {
  transform: rotate(-45deg);
}


.sec03-bg {
  width: 100%;
}

.sec03-bg::before {
  content: none;
}

.sec03-bg::after {
  content: none;
}


/*--------------------
	footer
--------------------*/
.footer-inner {
  margin: 40px auto 10px;
}

.footer-area01 .area01-left,
.footer-area01 .area01-center,
.footer-area01 .area01-right {
  width: 100%;
}

.footer-area01 .area01-left {
  margin-bottom: 30px;
}

.footer-area01 .area01-center {
  width: auto;
  padding-left: 18%;
  margin-bottom: 35px;
}

.area01-right {
  text-align: center;
}

.footer-area01 .area01-center ul li {
  font-size: 16px;
  margin-bottom: 25px;
}

.footer-area01 .area01-center ul li a {
  font-size: 19px;
}

.footer-area01 {
  display: block;
}

.footer-area01 .area01-left .logo {
  width: 68%;
  margin: 0 auto 25px;
}

.footer-area01 .area01-left .txt {
  text-align: center;
}

.footer-area01 .area01-left .txt .name {
  font-size: 16px;
}

.footer-area02 .area02-top li {
  width: 12%;
}

.footer-area02 .area02-bottom {
  margin-bottom: 15px;
}

.footer-area02 .area02-bottom li {
  font-size: 10px;
  text-align: center;
}

.footer-area02 .area02-bottom li a {
  font-size: 10px;
  line-height: 1.2;
}

.footer-area02 .area02-bottom li::before {
  height: 10px;
}

.footer-area02 .area02-bottom li:nth-child(1) {
  padding: 0 3px 0 0;
}

.footer-area02 .area02-bottom li:nth-child(2) {
  padding: 0 3px;
}

.footer-area02 .area02-bottom li:nth-child(3) {
  padding: 0 0 0 3px;
}

.footer-logo {
  width: 60%;
}

.footer-copyright {
  font-size: 10px;
}


/*--------------------
	下層
--------------------*/
.fixed-area {
  position: relative;
  top: auto;
}

.under-ttl-wrap {
  margin-top: 0 !important;
}

.under-header {
  background: url(../img/under/u-header-bg-sp.png) bottom center / cover no-repeat;
  border-bottom: none;
}

.u-header-inner {
  width: 100%;
  padding: 20px 5% 15px;
  box-sizing: border-box;
}

.u-header-inner .left {
  width: 60%;
}

.u-header-inner .right {
  display: none;
}

.under-nav {
  display: none;
}

.under-ttl,
.about .under-ttl {
  width: 90%;
  padding: 30px 0 0;
  box-sizing: border-box;
}

.under-ttl h2 {
  font-size: 22px;
  text-align: left;
  letter-spacing: 2px;
}

.under-ttl h2 span {
  margin-left: 2%;
}

.under-contents {
  width: 90%;
  margin: 40px auto 0;
}

.u-ttl-h3 {
  margin: 0 auto 25px;
}

.u-ttl-h3::before {
  height: 26px;
  bottom: -3px;
}

.u-ttl-h3 h3,
.u-ttl-h3.small h3 {
  font-size: 18px;
  padding: 7px 10%;
}

.u-ttl-h3 h3::before {
  width: 23px;
  height: 30px;
  background: url(../img/under/h3-img-sp.png) center / cover no-repeat;
  transform: translateY(-50%);
}

@media screen and (max-width:500px) {
  .u-ttl-h3 h3::before {
    right: 10px;
  }
}

@media screen and (max-width:350px) {
  .u-ttl-h3 h3::before {
    right: 5px;
  }
}

.u-ttl-h4 {
  font-size: 18px;
  padding: 0 0 10px 20px;
  margin-bottom: 10px;
}

.u-ttl-h4::before {
  width: 7px;
  height: 23px;
}

.under-btn {
  justify-content: space-between;
  margin: 0 auto 50px;
  padding-top: 10px;
}

.under-btn a {
  width: 48%;
  height: 50px;
  font-size: 16px;
}

.under-btn .small {
  font-size: 14px;
}

.under-btn .left {
  margin-right: 0;
  padding-left: 40px;
}

.under-btn .left::before {
  width: 27px;
  height: 17px;
  left: 16px;
}

.under-btn .right {
  margin-left: 0;
  padding-right: 40px;
}

.under-btn .right::before {
  width: 27px;
  height: 17px;
  right: 16px;
}

.under-bg {
  width: 100%;
}

.under-bg::before {
  content: none;
}

.under-bg::after {
  content: none;
}

.tall {
  margin: -15px 0 45px;
  padding: 15px 0 0;
}

.under-contents .tall:last-child {
  margin: 0 0 50px;
}

.short {
  margin: 0 0 35px;
}

.link-position {
  margin-top: 0;
  padding-top: 0;
}

.list-question li {
  margin-bottom: 30px;
  text-indent: -32px;
  padding-left: 32px;
}

.list-question li a {
  font-size: 14px;
  padding: 0 20px 7px 30px;
}

.list-question li a::before {
  width: 16px;
  height: 16px;
  right: 0;
}

.list-question li a::after {
  width: 20px;
  height: 51px;
  top: -30px;
  left: 3px;
}

.link-icon-txt01 img {
  width: 13px;
}

.link-icon-txt02 img {
  width: 13px;
}

.life-ttl {
  margin: 50px 0 35px;
}

.link-icon-txt02 {
  font-size: 12px;
}

.link-icon-txt02::before {
  width: 18px;
  height: 17px;
}

.table-sp {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}

.table-sp th {
  display: block;
  font-size: 16px;
  font-weight: 700;
  vertical-align: middle;
  text-align: left;
  padding: 10px 15px;
  line-height: 1.5;
  letter-spacing: 1px;
  box-sizing: border-box;
}

.table-sp th .popup-link {
  font-weight: 700;
}

.table-sp th .normal,
.table-sp th .normal .popup-link {
  font-weight: normal;
}

.table-sp td {
  display: block;
  padding: 15px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.table-sp .ttl {
  padding: 13px 30px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.table-sp td .bold-txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}


/*--------------------
	about
--------------------*/
.about .under-ttl h2 {
  font-size: 22px;
  padding: 0 3% 10px 16%;
}

.about .under-ttl h2::before,
.about .under-ttl h2::after {
  content: none;
}

.about .under-ttl h2 span::before {
  width: 42px;
  height: 31px;
  left: -11%;
}

@media screen and (max-width:600px) {
  .about .under-ttl h2 span::before {
    left: -13%;
  }
}

@media screen and (max-width:500px) {
  .about .under-ttl h2 span::before {
    left: -15%;
  }
}

@media screen and (max-width:450px) {
  .about .under-ttl h2 span::before {
    left: -18%;
  }
}

@media screen and (max-width:350px) {
  .about .under-ttl h2 {
    font-size: 20px;
    padding: 0 3% 10px 18%;
  }

  .about .under-ttl h2 span::before {
    width: 38px;
    height: 27px;
    left: -20%;
  }
}

@media screen and (max-width:310px) {
  .about .under-ttl h2 {
    font-size: 20px;
  }

  .about .under-ttl h2 span::before {
    left: -22%;
  }
}

.about-table th,
.about-table td,
.about-table.table03 th,
.about-table.table03 td {
  font-size: 16px;
  padding: 15px 10px;
}

.about-layout02 {
  display: block;
  margin-bottom: 20px;
}

.about-layout02 .desc {
  margin: 0 0 30px;
}

.about-layout02 .img {
  width: 70%;
  text-align: center;
  margin: 0 auto;
}

.about-layout03 {
  display: block;
}

.about-layout03 .desc {
  margin: 0 0 30px;
}

.about-layout03 .img {
  width: 60%;
  margin: 0 auto;
}

.about-check li {
  padding-left: 35px;
  margin-bottom: 15px;
}

.about-check li::before {
  width: 25px;
  height: 26px;
}

.about-list {
  margin-bottom: 0;
}

.about-list+.bold-txt {
  margin-top: 15px;
}

.about-list li {
  font-size: 15px;
  padding-left: 20px;
  margin-bottom: 5px;
}

.about-list li::before {
  width: 14px;
  height: 14px;
}

/*--------------------
	diagnosis
--------------------*/
.diagnosis .under-ttl h2 {
  font-size: 22px;
  text-align: center;
  padding: 0 5% 10px 10%;
}

.diagnosis .under-ttl h2::before,
.diagnosis .under-ttl h2::after {
  content: none;
}

.diagnosis .under-ttl h2 span::before {
  width: 23px;
  height: 41px;
  left: -22%;
  transform: translateY(-67%);
}

@media screen and (max-width:350px) {
  .diagnosis .under-ttl h2 span::before {
    width: 21px;
    height: 39px;
    left: -20%;
  }
}

.diagnosis-layout01 {
  display: block;
}

.diagnosis-layout01 .img {
  width: 100%;
  margin: 0 0 30px;
  text-align: center;
}

.diagnosis-table {
  display: none;
}

.diagnosis-layout02 {
  display: block;
  margin-bottom: 30px;
}

.diagnosis-layout02 p {
  width: 100%;
  margin-bottom: 20px;
}

.diagnosis-layout02 .img {
  position: static;
  width: 40%;
  margin: 0 auto 20px;
  text-align: center;
}

.diagnosis-layout03 dl {
  display: block;
}

.diagnosis-layout03 dl dt,
.diagnosis-layout03 dl:last-child dt {
  width: 100%;
  height: 45px;
  font-size: 20px;
  margin: 0 0 20px;
}

.diagnosis-layout03 dl:first-child .diagnosis-check,
.diagnosis-check {
  width: 100%;
  box-sizing: border-box;
}

.diagnosis-check li {
  padding-left: 35px;
}

.diagnosis-check li+li {
  margin-top: 10px;
}

.diagnosis-check li::before {
  width: 25px;
  height: 25px;
  top: -2px;
}

.table-sp.diagnosis th {
  background: #fef7e7;
}

.table-sp.diagnosis .ttl {
  background: #D6A542;
}

.table-sp.diagnosis td .bold-txt {
  color: #D6A542;
}

.table-sp.diagnosis th .normal {
  font-weight: normal;
}

.table-sp.diagnosis th .icon {
  color: #D6A542;
}

/*--------------------
	watchful
--------------------*/
.watchful .under-ttl h2 {
  font-size: 22px;
  text-align: center;
  padding: 0 5% 10px 10%;
}

.watchful .under-ttl h2::before,
.watchful .under-ttl h2::after {
  content: none;
}

.watchful .under-ttl h2 span::before {
  width: 44px;
  height: 24px;
  left: -23%;
}

@media screen and (max-width:350px) {
  .watchful .under-ttl h2 {
    font-size: 20px;
  }

  .watchful .under-ttl h2 span::before {
    width: 42px;
    height: 22px;
    transform: translateY(-48%);
  }
}

@media screen and (max-width:310px) {
  .watchful .under-ttl h2 {
    font-size: 18px;
  }
}

.watchful-layout01 {
  display: block;
}

.watchful-layout01 .desc {
  margin: 0 0 30px;
}

.watchful-layout01 .img {
  width: 60%;
  margin: 0 auto;
}

.watchful-table {
  display: none;
}

.watchful-table-link img {
  width: 13px;
}

.table-sp.watchful th {
  background: #ecf6f5;
  font-weight: normal;
}

.table-sp.watchful .ttl {
  background: #71a8a2;
  font-weight: 700;
}

.table-sp.watchful td .bold-txt {
  color: #71a8a2;
}

/*--------------------
	faq
--------------------*/
.faq .under-ttl h2 {
  font-size: 22px;
  text-align: center;
  padding: 0 5% 10px 10%;
}

.faq .under-ttl h2::before,
.faq .under-ttl h2::after {
  content: none;
}

.faq .under-ttl h2 span::before {
  width: 38px;
  height: 39px;
  left: -88%;
}

.faq-accordion dt {
  font-size: 15px;
  line-height: 1.5;
  padding: 10px 45px;
}

.faq-accordion dd {
  font-size: 15px;
  line-height: 1.5;
  padding: 10px 20px 20px 45px;
}

.faq-accordion dt::before,
.faq-accordion dt::after {
  width: 20px;
}

.faq-accordion dt .icon,
.faq-accordion dd .icon {
  font-size: 25px;
  top: 2px;
  left: 13px;
}

.faq-layout01 {
  display: block;
}

.faq-layout01 .desc {
  margin-bottom: 20px;
}

.faq-layout01 .img {
  margin: 0 auto;
  text-align: center;
}

.faq-layout01 .img.img01,
.faq-layout01 .img.img04 {
  width: 70%;
}

.faq-layout01 .img.img02,
.faq-layout01 .img.img03 {
  width: 60%;
}

.faq-accordion dd .link {
  margin-top: 20px;
}

.faq-accordion dd .link a {
  padding: 0 23px 0 13px;
}

.faq-accordion dd .link a::before {
  width: 13px;
  height: 13px;
}

/*--------------------
	life
--------------------*/
.life .under-ttl h2 {
  font-size: 22px;
  text-align: center;
  padding: 0 5% 10px 10%;
}

.life .under-ttl h2::before,
.life .under-ttl h2::after {
  content: none;
}

.life .under-ttl h2 span {
  margin-left: 2%;
}

.life .under-ttl h2 span::before {
  width: 38px;
  height: 39px;
  left: -43%;
  transform: translateY(-62%);
}

.life-layout01 {
  display: block;
}

.life-layout01 .desc {
  margin: 0 0 20px;
}

.life-layout01 .img {
  width: 100%;
  margin: 0 auto;
}

.life-layout01 .img.img01,
.life-layout01 .img.img02,
.life-layout01 .img.img03,
.life-layout01 .img.img04 {
  width: 70%;
}

.life-table {
  display: none;
}

.life-table-link img {
  width: 13px;
}

.life-layout02 {
  padding: 20px 20px 0;
}

.life-layout02-top {
  display: block;
  margin-bottom: 20px;
}

.life-layout02-top .left {
  width: 100%;
  margin: 0 0 20px;
}

.life-layout02-top .left p {
  font-size: 15px;
}

.life-layout02-top .right {
  width: 100%;
  margin: 0;
}

.life-layout02-top .left .img {
  margin: 20px 0;
  text-align: center;
}

.life-check li {
  font-size: 16px;
  padding-left: 28px;
}

.life-check li::before {
  width: 21px;
  height: 21px;
}

.table-sp.life th {
  background: #f0f5f8;
  font-weight: normal;
}

.table-sp.life .ttl {
  background: #7395b0;
  font-weight: 700;
}

.table-sp.life td .bold-txt {
  color: #7395b0;
}

/*--------------------
	caregiver
--------------------*/
.caregiver .under-ttl h2 {
  font-size: 21px;
  text-align: center;
  padding: 0 5% 10px 12%;
}

.caregiver .under-ttl h2::before,
.caregiver .under-ttl h2::after {
  content: none;
}

.caregiver .under-ttl h2 span::before {
  width: 31px;
  height: 37px;
  left: -16%;
}

@media screen and (max-width:380px) {
  .caregiver .under-ttl h2 {
    padding: 0 3% 10px 10%;
  }

  .caregiver .under-ttl h2 span::before {
    width: 29px;
    height: 35px;
    left: -15%;
    transform: translateY(-57%);
  }
}

@media screen and (max-width:360px) {
  .caregiver .under-ttl h2 {
    font-size: 19px;
  }
}

@media screen and (max-width:330px) {
  .caregiver .under-ttl h2 {
    padding: 0 2% 10px 9%;
    font-size: 17px;
  }
}

.caregiver-layout01 {
  display: block;
  margin-bottom: 30px;
}

.caregiver-layout01 .desc {
  margin-bottom: 20px;
}

.caregiver-layout01 .img {
  width: 100%;
  margin: 0 auto;
}

.caregiver-layout01 .img.img01 {
  width: 70%;
}

.caregiver-layout01 .img.img02 {
  width: 70%;
}

.caregiver-layout02 {
  padding: 20px;
}

.caregiver-check li {
  font-size: 15px;
  letter-spacing: 1px;
  padding-left: 33px;
  margin-bottom: 20px;
}

.caregiver-check li .ttl {
  font-size: 16px;
  line-height: 1.5;
}

.caregiver-check li::before {
  width: 25px;
  height: 26px;
  top: -4px;
}

.caregiver-check li .ttl+.txt {
  margin-top: 5px;
}

.caregiver-layout03 {
  display: block;
}

.caregiver-layout03 .desc {
  width: 100%;
  margin: 0 0 20px
}

.caregiver-layout03 .list {
  width: 100%;
  margin-left: 0;
  padding: 20px 15px;
}

.checksheet-ttl {
  font-size: 16px;
  padding: 10px;
  margin-bottom: 30px;
}

.checksheet-ttl::before {
  left: 13.3%;
}

.checksheet-ttl::after {
  left: 13%;
}

.checksheet-ttl-icon {
  position: relative;
  padding: 0 40px 0 10px;
}

.checksheet-ttl-icon::before {
  width: 30px;
  height: 30px;
}

.checksheet-box .box-ttl {
  font-size: 20px;
  line-height: 1.5;
  padding: 10px 10px 10px 63px;
}

.checksheet-box.blue .box-ttl::before {
  width: 35px;
  height: 35px;
}

.checksheet-box.green .box-ttl::before {
  width: 35px;
  height: 26px;
}

.checksheet-box.orange .box-ttl::before {
  width: 35px;
  height: 28px;
}

.checksheet-inner {
  display: block;
}

.checksheet-inner .left-side {
  width: 100%;
  margin: 0 0 30px;
}

.checksheet-inner .right-side {
  width: 100%;
  margin: 0;
}

.checksheet-box+.checksheet-box {
  margin-top: 30px;
}

.checksheet-box label {
  font-size: 17px;
}

.checksheet-box label+label {
  margin-top: 15px;
}

.checksheet-box label::before {
  width: 25px;
  height: 25px;
  top: 3px;
}

.checksheet-box label:has(:checked)::after {
  top: -5px;
  left: 4px;
}

.checksheet .txt {
  font-size: 12px;
  margin: 10px 0 30px;
}

.download-btn {
  font-size: 19px;
  line-height: 1;
  width: 95%;
  padding: 15px 67px 18px 15px;
  margin: 0;
}

.download-btn::before {
  background: url(../img/under/caregiver-check04-sp.png) center / cover no-repeat;
  width: 75px;
  height: 75px;
  right: -13px;
}

.checksheet-pdf {
  max-width: 100%;
  width: 100%;
}

.responsive-svg {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* .check-mark label {
  margin-bottom: 55.3%;
}

.check-mark.area03 label:nth-child(10) {
  margin-bottom: 161%;
}

@media screen and (max-width:650px) {
  .check-mark.area03 label:nth-child(10) {
    margin-bottom: 160%;
  }
} */

.caregiver-layout04 {
  display: block;
}

.caregiver-layout04 .box {
  width: 100%;
  height: auto;
  padding: 25px 15px 15px;
  margin: 40px 0 0;
}

.caregiver-layout04 .box .txt {
  font-size: 16px;
  line-height: 1.5;
}

.caregiver-layout04 .img {
  width: 50%;
  text-align: center;
  margin: 20px auto 0;
}

/*--------------------
	treatment
--------------------*/
.treatment .under-ttl h2 {
  font-size: 22px;
  text-align: center;
  padding: 0 5% 10px 10%;
}

.treatment .under-ttl h2::before,
.treatment .under-ttl h2::after {
  content: none;
}

.treatment .under-ttl h2 span::before {
  width: 42px;
  height: 36px;
  top: 50%;
  transform: translateY(-60%);
  left: -33%;
}

@media screen and (max-width:350px) {
  .treatment .under-ttl h2 span::before {
    width: 40px;
    height: 34px;
    left: -30%;
  }
}

.treatment-layout01 {
  margin-bottom: 30px;
}

.treatment-layout01 .ttl {
  font-size: 18px;
}

.box-wrap {
  padding: 20px 0 0;
}

.box-wrap .box {
  padding: 0 20px;
  margin-bottom: 20px;
}

.box-wrap.col2 {
  display: block;
}

.box-wrap.col2 .box {
  width: 100%;
}

.box-wrap .box-ttl {
  margin-bottom: 10px;
}

.box-wrap .box-txt {
  font-size: 15px;
  margin-bottom: 15px;
}

.box-wrap .box-txt.box01 {
  margin-bottom: 15px;
}

.box-wrap .box-img.img01,
.box-wrap .box-img.img02 {
  width: 50%;
}

.treatment-layout01-col2 {
  display: block;
}

.treatment-layout01-col2 .treatment-layout01 {
  width: 100%;
}

.treatment-layout01-col2 .treatment-layout01+.treatment-layout01 {
  margin: 0;
}

.treatment-layout01-col2 .treatment-layout01 .box-wrap .box {
  display: block;
}

.treatment-layout01-col2 .treatment-layout01 .box-wrap .box .box-txt {
  margin-bottom: 15px;
}

.treatment-layout01-col2 .treatment-layout01 .box-wrap .box .box-img {
  width: 70%;
  margin: 0 auto;
}

.treatment-layout02 {
  padding: 15px 15px 5px;
}

.treatment-layout02 .ttl {
  margin-bottom: 15px;
  font-size: 16px;
}

.treatment-layout02 .list {
  align-items: center;
}

.treatment-layout02 .list li {
  width: 48%;
  font-size: 15px;
  padding: 10px 5px;
  margin: 0 0 10px;
}

.treatment-layout03 {
  display: block;
  padding: 0;
  margin: 20px 0 30px;
  background: none;
  position: relative;
}

.treatment-layout03::before {
  content: "";
  width: 20%;
  height: 100%;
  background: url(../img/under/treatment-img05-sp.png) center / contain no-repeat;
  position: absolute;
  top: 0;
  right: 10px;
  z-index: -1;
}

.treatment-layout03-box {
  width: 100%;
}

.treatment-layout03-box:nth-child(2) {
  margin: 20px 0;
}

.treatment-layout03-box .box {
  font-size: 17px;
  padding: 10px 5px;
  margin-bottom: 15px;
}

.treatment-layout04 {
  font-size: 16px;
  padding: 15px;
}

.treatment-table {
  display: none;
}

.treatment-list {
  margin-bottom: 0;
}

.treatment-list+.bold-txt {
  margin-top: 15px;
}

.treatment-list li {
  font-size: 15px;
  padding-left: 20px;
  margin-bottom: 5px;
}

.treatment-list li::before {
  width: 14px;
  height: 14px;
}

.treatment-check {
  width: 100%;
  box-sizing: border-box;
}

.treatment-check li {
  padding-left: 35px;
}

.treatment-check li+li {
  margin-top: 10px;
}

.treatment-check li::before {
  width: 25px;
  height: 25px;
  top: -2px;
}

.table-sp.treatment th {
  background: #f1f6fa;
}

.table-sp.treatment .ttl {
  background: #6FA0B9;
}

.table-sp.treatment td .bold-txt {
  color: #6FA0B9;
}

.popup {
  left: 0 !important;
  transform: translateX(0);
  width: 80%;
}

.pageTop {
  margin-left: 8px;
}

/*--------------------
	pageTop
--------------------*/
.pageTop {
  width: 48px;
}