@charset "utf-8";


/*----------------------------------

mv

----------------------------------*/
.mv {
  background-image: url(../img/mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  text-align: left;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  flex-direction: column;
}

.mv .wrap {
  color: #fff;
  max-width: 100%;
  padding: 0 100px;
}

.mv .wrap .copy {
  font-size: 1.6rem;
  margin-bottom: 40px;
}

.mv .wrap .category li {
  border: solid 1px #fff;
  border-radius: 9999px;
  font-size: 1.3rem;
  padding: 5px 13px 7px;
  display: inline-block;
  margin-right: 8px;
}

.mv .wrap h1 {
  display: inline-block;
  margin-top: 30px;
}

.mv .wrap h1 img {
  height: clamp(75px, 6.5vw, 110px);
  width: auto;
}

.mv .wrap .read {
  margin-top: 50px;
  font-size: 1.5rem;
  line-height: 2;
}

.mv .wrap .cta {
  margin-top: 40px;
}



@media screen and (max-width: 768px) {

.mv .wrap {
  padding: 0 clamp(30px, 8vw, 100px);
}

.mv .wrap .copy {
  line-height: 1.4;
}

}



@media screen and (max-width: 480px) {


.mv {
  -webkit-box-pack: center;
  justify-content: center;
}

.mv .wrap {
  padding: 0 clamp(20px, 4vw, 30px);
}

.mv .wrap .copy {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

.mv .wrap .category li {
  font-size: 1.1rem;
  padding: 4px 11px 6px;
  margin-right: 5px;
}

.mv .wrap h1 img {
  height: clamp(44px, 4vw, 75px);
}

.mv .wrap .read {
  font-size: 1.145rem;
  margin-top: 30px;
}

.mv .copyright {
  font-size: .8rem;
  left: clamp(20px, 4vw, 30px);
  bottom: 20px;
}

.mv .wrap .cta {
  margin-top: 0;
}

.mv .is-hidden {
  visibility: hidden;
  opacity: 0;
  transition: all .2s;
}


}




/*----------------------------------

about

----------------------------------*/
.about .wrap {
  max-width: 900px;
}




/*----------------------------------

recommend

----------------------------------*/
.recommend {
  background: var(--bg-color);
}

.recommend .lists ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.recommend .lists li {
  font-size: 1.6rem;
  background: #fff;
  padding: 20px;
  display: -webkit-box;
  display: flex;
  align-items: center;
}

.recommend .lists li span {
  line-height: 1.4;
}

.recommend .lists li:before {
  content: "";
  display: inline-block;
  min-width: 28px;
  min-height: 28px;
  background-image: url(../img/ico_check.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 20px;
}



@media screen and (max-width: 480px) {

.recommend .lists ul {
  grid-template-columns: 1fr;
}

.recommend .lists li {
  font-size: 1.4rem;
}

.recommend .lists li:before {
  margin-right: 15px;
  min-width: 24px;
  min-height: 24px
}

}



/*----------------------------------

feature

----------------------------------*/
.feature .inner {
  counter-reset: number 0;
  display: -webkit-box;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: clamp(20px, 4vw, 45px);
}

.feature .inner > div {
  border: solid 1px var(--main-color);
  padding: 30px 40px 40px;
}

.feature .inner > div:before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  font-size: 6rem;
  color: var(--key-color);
}

.feature .inner > div h3 {
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 10px;
}

.feature .inner > div h3 em {
  border-bottom: solid 2px var(--key-color);
  color: var(--key-color);
}

.feature .inner > div .read {
  font-size: 1.4rem;
  margin-top: 30px;
}


@media screen and (max-width: 768px) {

.feature .inner {
  grid-template-columns: 1fr 1fr;
}

.feature .inner > div:nth-of-type(3) {
  grid-column: 1 / 3;
}

}



@media screen and (max-width: 480px) {

.feature .inner {
  grid-template-columns: 1fr;
}

.feature .inner > div:nth-of-type(3) {
    grid-column: inherit;
}

.feature .inner > div {
  padding: 25px 30px 30px;
}

.feature .inner > div:before {
  font-size: 4rem;
}

.feature .inner > div h3 {
  font-size: 1.8rem;
}

.feature .inner > div .read {
  font-size: 1.3rem;
}


}



/*----------------------------------

major

----------------------------------*/
.major {
  background: var(--bg-color);
}

.major .inner {
  margin-top: 60px;
}

.major .inner > div {
  background: #fff;
  padding: 45px 60px 70px;
  margin-top: 30px;
}

.major .inner > div h3 {
  font-size: 1.8rem;
  line-height: 1.5;
}

.major .inner > div h3 .note {
  padding-left: 10px;
}

.major .inner > div h3:before {
  content: "";
  display: inline-block;
  min-width: 20px;
  min-height: 20px;
  background-image: url(../img/ico_circle.svg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 15px;
  vertical-align: sub;
}

.major .inner > div ul {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.major .inner > div li {
  background: #f2f2f2;
  padding: 25px 30px;
  border-radius: 4px;
  display: -webkit-box;
  display: flex;
  align-items: center;
}

.major .inner > div li figure {
  width: max(13% 70px);
}

.major .inner > div li figure img {
  margin: 0 auto;
  max-width: 70px;
  max-height: 70px;
}

.major .inner > div li .txt {
  margin-left: 30px;
  width: calc(87% - 30px);
}

.major .inner > div li .txt h4 {
  font-size: 1.6rem;
}

.major .inner > div li .txt p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: 12px;
}

.major .inner > div .read {
  margin-top: 30px;
}



@media screen and (max-width: 768px) {


.major .inner > div {
  padding-bottom: 60px;
}

.major .inner > div ul {
  grid-template-columns: 1fr;
}


}


@media screen and (max-width: 480px) {

.major .inner {
  margin-top: 40px;
}

.major .inner > div {
  padding: 30px 30px 30px;
  margin-top: clamp(20px, 4vw, 45px);
}

.major .inner > div h3 {
  font-size: 1.6rem;
}

.major .inner > div h3:before {
  margin-right: 10px;
}

.major .inner > div ul {
  gap: 12px;
}

.major .inner > div li {
  padding: 25px 15px;
}

.major .inner > div li figure {
  width: 20%;
}

.major .inner > div li .txt {
  margin-left: 15px;
  width: calc(80% - 15px);
}

.major .inner > div li .txt h4 {
  font-size: 1.5rem;
}

.major .inner > div li .txt p {
  font-size: 1.2rem;
}

.major .inner > div .read {
  margin-top: 25px;
}



}




/*----------------------------------

faq

----------------------------------*/
.accordion .block:not(:first-of-type) {
  margin-top: 20px;
}

.accordion .toggle {
  display: none;
}

.accordion .toggle:checked + .question span {
  transform: rotate(-135deg) !important;
}

.accordion .read {
  height: 0;
  overflow: hidden;
}

.accordion .head {
  padding: 20px 30px;
  border: solid 1px var(--main-color);
  border-radius: 4px;
  line-height: 1.6;
  font-size: 1.5rem;
  display: block;
  cursor: pointer;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  align-items: center;
}

.accordion .head,
.accordion .read {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all .3s;
}

.accordion .head:before {
  content: "Q";
  display: inline-block;
  font-size: 1.8rem;
  padding-right: 20px;
}

.accordion .toggle:checked + .head + .read {
  height: auto;
  margin: 30px 0 40px;
  transition: all .4s;
}

.accordion .head span {
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  margin-left: auto;
  transition: all .4s;
}

.accordion .head span::before,
.accordion .head span::after {
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  transition: all .4s;
  display: inline-block;
  color: var(--key-color);
  width: 14px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.accordion .head span::before {
  vertical-align: middle;
  margin: 0 0 0 7px;
}

.accordion .head span::after {
  vertical-align: middle;
  margin: -47px 0 0 7px;
  transform: rotate(90deg);
}

.accordion .toggle:checked + .head span {
  transform: rotate(180deg) !important;
}

.accordion .toggle:checked + .head span:after {
  opacity: 0;
}


@media screen and (max-width: 480px) {

.accordion .head {
  padding: 15px 10px 15px 20px;
  font-size: 1.4rem;
}

.accordion .head:before {
  padding-right: 15px;
}

.accordion .block:not(:first-of-type) {
  margin-top: 12px;
}

.accordion .toggle:checked + .head + .read {
  margin: 20px 0 30px;
}

.accordion .head span::before {
  margin-top: 3px;
}

.accordion .head span::after {
  margin-top: -41px;
}


}






/*----------------------------------

flow

----------------------------------*/
.flow {
  background: var(--bg-color);
}

.flow .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px clamp(30px, 5vw, 60px);
}

.flow .inner > div {
  background: #fff;
  padding: 25px 40px 40px;
  position: relative;
}

.flow .inner > div:not(:last-of-type):after {
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--key-color);
  border-right: 1px solid var(--key-color);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(-5% - 8px);
  margin: auto;
  content: "";
  transition: all .2s;
}

.flow .inner > div:nth-child(even):after {
  display: none;
}

.flow .inner h3 {
  color: var(--key-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.flow .inner h3 em {
  display: block;
  font-size: 4rem;
}


@media screen and (max-width: 768px) {

.flow .inner {
  grid-template-columns: 1fr;
  row-gap: 50px;
}

.flow .inner > div:not(:last-of-type):after {
  transform: rotate(135deg);
  right: calc(50% - 10px);
  bottom: calc(-25px - 6px);
  top: auto;
}

.flow .inner > div:nth-child(even):after {
  display: block;
}




}


@media screen and (max-width: 480px) {

.flow .inner > div {
  padding: 25px 30px 30px;
}


}


