/* break point */
* {
  box-sizing: border-box;
}

body {
  color: #231815;
  font-family: 'Noto Sans CJK JP', sans-serif;
  font-size: 16px;
  margin: 0;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

p {
  line-height: 1.5;
}

@media (min-width: 768px) {
  p {
    line-height: 1.7;
  }
}

a {
  text-decoration: none;
}

@media (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

picture {
  display: block;
}

.only-pc, .only-pc-inline {
  display: none;
}

@media (min-width: 768px) {
  .only-sp {
    display: none;
  }
  .only-pc {
    display: block;
  }
  .only-pc-inline {
    display: inline;
  }
}

.wrapper {
  padding: 0 15px;
  position: relative;
  width: 100%;
}

@media (min-width: 425px) {
  .wrapper {
    padding: 0 calc((100% - 385px)/2);
  }
}

@media (min-width: 768px) {
  .wrapper {
    padding: 0 calc((100% - 1000px)/2);
  }
}

/*--  header  -----------------------------------------------------*/
header {
  padding-top: 12px;
  position: relative;
}

header .tagline {
  font-size: 10px;
  font-weight: lighter;
  text-align: center;
}

header .content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px 16px;
}

header .content .logo {
  margin-right: 12%;
  width: 30%;
}

header .content .tel {
  width: 40%;
}

header .content .btn {
  cursor: pointer;
  width: 10%;
}

header .content .btn.none {
  display: none;
}

header .menu {
  -webkit-transform: translateY(100%);
  background-color: #1d4e90;
  bottom: 0;
  display: none;
  padding: 0 20px;
  position: absolute;
  transform: translateY(100%);
  width: 100%;
  z-index: 99;
}

header .menu.active {
  display: block;
}

header .menu li {
  border-bottom: 1px solid white;
}

header .menu li:last-child {
  border-bottom: none;
}

header .menu li a {
  color: white;
  display: block;
  font-size: 14px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}

header .menu li a::before {
  background-image: url(../img/header/nav-direction.png);
  background-position: center;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 7px;
  margin-right: 4px;
  width: 12px;
}

@media (min-width: 768px) {
  header {
    padding-top: 0;
  }
  header .tagline {
    border-bottom: 1px solid #231815;
    font-size: 14px;
    height: 32px;
    line-height: 32px;
  }
  header .content {
    padding: 24px calc((100% - 1000px)/2);
  }
  header .content .logo {
    width: 185px;
  }
  header .content .tel {
    width: 350px;
  }
  header .content .btn {
    display: none;
  }
  header .menu {
    -webkit-transform: none;
    display: flex;
    justify-content: space-between;
    padding: 0 calc((100% - 1000px)/2);
    position: static;
    transform: none;
  }
  header .menu li {
    border-bottom: none;
  }
}

/*--  contact  -----------------------------------------------------*/
.contact {
  background-color: #DDE4EE;
  padding-bottom: 30px;
  padding-top: 30px;
}

@media (min-width: 768px) {
  .contact {
    padding-bottom: 90px;
    padding-top: 68px;
  }
}

.contact .web {
  margin: 0 auto 16px;
  width: 84%;
}

@media (min-width: 768px) {
  .contact .web {
    margin-bottom: 24px;
    width: 486px;
  }
}

.contact .tel {
  margin: 0 auto;
  width: 84%;
}

@media (min-width: 768px) {
  .contact .tel {
    width: 325px;
  }
}

/*--  faq  -----------------------------------------------------*/
.faq {
  background-color: gainsboro;
  padding-bottom: 38px;
  padding-top: 53px;
}

@media (min-width: 768px) {
  .faq {
    padding-bottom: 80px;
    padding-top: 92px;
  }
}

.faq .wrap-title {
  margin: 0 auto 20px;
  width: 60%;
}

@media (min-width: 768px) {
  .faq .wrap-title {
    margin-bottom: 50px;
    width: 294px;
  }
}

.faq .items {
  margin-bottom: -24px;
}

@media (min-width: 768px) {
  .faq .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -40px;
  }
}

.faq .items li {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .faq .items li {
    margin-bottom: 40px;
    width: 477px;
  }
}

.faq .items li .content {
  border-bottom: dotted 4px #939394;
  display: flex;
  margin-bottom: 16px;
  padding: 0 8px 12px;
}

@media (min-width: 768px) {
  .faq .items li .content {
    margin-bottom: 24px;
    padding: 0 0 32px;
  }
}

.faq .items li .content .icon {
  flex: none;
  margin-right: 20px;
  width: 40px;
}

@media (min-width: 768px) {
  .faq .items li .content .icon {
    margin-right: 30px;
    width: 52px;
  }
}

.faq .items li .content .title {
  color: #1d4e90;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .faq .items li .content .title {
    font-size: 24px;
  }
}

/*--  about  -----------------------------------------------------*/
.about {
  font-size: 14px;
  padding-bottom: 0;
  padding-top: 38px;
}

@media (min-width: 768px) {
  .about {
    font-size: 18px;
    padding-top: 108px;
  }
}

.about .wrap-title {
  margin: 0 auto 20px;
  width: 48%;
}

@media (min-width: 768px) {
  .about .wrap-title {
    margin-bottom: 57px;
    width: 248px;
  }
}

.about .content {
  border-bottom: solid 1px #231815;
  margin: 0 7px;
}

@media (min-width: 768px) {
  .about .content {
    margin: 0;
  }
}

.about .content .title {
  color: #1d4e90;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .about .content .title {
    font-size: 28px;
  }
}

.about .content .subtitle {
  font-weight: bold;
  text-align: center;
}

@media (min-width: 768px) {
  .about .content .subtitle {
    font-size: 22px;
  }
}

.about .access {
  padding-bottom: 32px;
  padding-top: 0;
}

@media (min-width: 768px) {
  .about .access {
    padding-bottom: 56.5px;
  }
}

.about .access .title {
  margin-bottom: 9px;
}

@media (min-width: 768px) {
  .about .access .title {
    margin-bottom: 14px;
  }
}

.about .access .text {
  margin-bottom: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .about .access .text {
    margin-bottom: 37px;
  }
}

@media (min-width: 768px) {
  .about .access span {
    display: inline-block;
    width: 20px;
  }
}

@media (min-width: 768px) {
  .about .access iframe {
    height: 306px;
  }
}

.about .open {
  padding-bottom: 32px;
  padding-top: 28px;
}

@media (min-width: 768px) {
  .about .open {
    padding-bottom: 65px;
    padding-top: 48px;
  }
}

.about .open .title {
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .about .open .title {
    margin-bottom: 25px;
  }
}

.about .open .subtitle {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .about .open .subtitle {
    margin-bottom: 20px;
  }
}

.about .open .text {
  margin-bottom: 26px;
}

@media (min-width: 768px) {
  .about .open .text {
    margin: 0 auto 50px;
    max-width: 850px;
    text-align: left;
  }
}

.about .open picture {
  text-align: center;
}

.about .facility {
  padding-bottom: 32px;
  padding-top: 30px;
}

@media (min-width: 768px) {
  .about .facility {
    padding-bottom: 53px;
    padding-top: 57px;
  }
}

.about .facility .title {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .about .facility .title {
    margin-bottom: 20px;
  }
}

.about .facility .text {
  margin-bottom: 14px;
  text-align: center;
}

@media (min-width: 768px) {
  .about .facility .text {
    margin-bottom: 33px;
  }
}

.about .slider .box {
  margin-bottom: 8px;
  position: relative;
}

@media (min-width: 768px) {
  .about .slider .box {
    margin-bottom: 10px;
  }
}

.about .slider .box .slider-main {
  margin: 0 auto;
  max-width: 95%;
}

@media (min-width: 768px) {
  .about .slider .box .slider-main {
    max-width: 100%;
  }
}

.about .slider .box .slider-main img {
  display: none;
}

.about .slider .box .slider-main img.active {
  display: inline;
}

.about .slider .box .slider-arrow {
  -webkit-transform: translateY(-50%);
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
}

@media (min-width: 768px) {
  .about .slider .box .slider-arrow {
    width: 38px;
  }
}

.about .slider .box .slider-arrow.left {
  left: 0;
}

@media (min-width: 768px) {
  .about .slider .box .slider-arrow.left {
    left: 10px;
  }
}

@media (min-width: 1200px) {
  .about .slider .box .slider-arrow.left {
    left: -62px;
  }
}

.about .slider .box .slider-arrow.right {
  right: 0;
}

@media (min-width: 768px) {
  .about .slider .box .slider-arrow.right {
    right: 10px;
  }
}

@media (min-width: 1200px) {
  .about .slider .box .slider-arrow.right {
    right: -62px;
  }
}

.about .slider .slider-bottom {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .about .slider .slider-bottom {
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
  }
}

.about .slider .slider-bottom img {
  width: 19%;
}

.about .cooperation {
  padding-bottom: 32px;
  padding-top: 35px;
}

@media (min-width: 768px) {
  .about .cooperation {
    padding-bottom: 65px;
    padding-top: 50px;
  }
}

.about .cooperation .title.institution {
  margin-bottom: 26px;
}

.about .cooperation .title.hospital {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .about .cooperation .title.hospital {
    margin-bottom: 18px;
  }
}

.about .cooperation .subtitle {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .about .cooperation .subtitle {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
  .about .cooperation .text {
    margin: 0 auto;
    max-width: 850px;
    text-align: left;
  }
}

.about .cooperation .text.institution {
  margin-bottom: 37px;
}

.about .cooperation .text.hospital {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .about .cooperation .img {
    margin: 0 auto;
    max-width: 945px;
  }
}

.about .doctor {
  padding-bottom: 27px;
  padding-top: 33px;
}

@media (min-width: 768px) {
  .about .doctor {
    padding: 0 32px;
    padding-bottom: 50px;
    padding-top: 50px;
  }
}

.about .doctor .title {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .about .doctor .title {
    margin-bottom: 25px;
  }
}

.about .doctor .items {
  margin-bottom: -16px;
}

@media (min-width: 768px) {
  .about .doctor .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -20px;
  }
}

.about .doctor .items li {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .about .doctor .items li {
    margin-bottom: 20px;
    width: 50%;
  }
}

@media (min-width: 768px) {
  .about .doctor .items li:nth-child(2), .about .doctor .items li:nth-child(4) {
    padding-left: 40px;
  }
}

.about .doctor .items li .name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .about .doctor .items li .name {
    font-size: 28px;
  }
}

.about .doctor .items li .name span {
  display: inline-block;
  font-size: 12px;
  margin-left: 16px;
}

@media (min-width: 768px) {
  .about .doctor .items li .name span {
    font-size: 16px;
  }
}

.about .doctor .items li .history span {
  display: inline-block;
  width: 45.1px;
}

@media (min-width: 768px) {
  .about .doctor .items li .history span {
    width: 58px;
  }
}

.about .others {
  padding-bottom: 29px;
  padding-top: 36px;
}

@media (min-width: 768px) {
  .about .others {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}

.about .others .title {
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .about .others .title {
    margin-bottom: 15px;
  }
}

.about .others .text {
  text-align: center;
}

.about .others .text a {
  text-decoration: underline;
}

.about .message {
  border-bottom: none;
  padding-bottom: 29px;
  padding-top: 40px;
}

@media (min-width: 768px) {
  .about .message {
    padding-bottom: 93px;
    padding-top: 50px;
  }
}

.about .message .title {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .about .message .title {
    margin-bottom: 45px;
  }
}

.about .message .img {
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 600px;
}

@media (min-width: 768px) {
  .about .message .img {
    margin-bottom: 43px;
  }
}

.about .message .text {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .about .message .text {
    margin: 0 auto;
    margin-bottom: 33px;
    max-width: 850px;
    text-align: left;
  }
}

.about .message .subtitle {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

@media (min-width: 768px) {
  .about .message .subtitle {
    font-size: 22px;
  }
}

.about .message .subtitle span {
  background: linear-gradient(transparent 65%, #FFFF00 65%);
}

/*--  form  -----------------------------------------------------*/
.form-wrapper {
  background-color: #E8EDF4;
  padding-bottom: 40px;
  padding-top: 66px;
}

@media (min-width: 768px) {
  .form-wrapper {
    padding-bottom: 112px;
    padding-top: 88px;
  }
}

.form-wrapper .wrap-title {
  margin: 0 auto 40px;
  width: 81%;
}

@media (min-width: 768px) {
  .form-wrapper .wrap-title {
    margin-bottom: 64px;
    width: 388px;
  }
}

.form-wrapper .top-text {
  font-size: 14px;
  margin-bottom: 11px;
}

@media (min-width: 768px) {
  .form-wrapper .top-text {
    font-size: 18px;
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 850px;
    text-align: left;
  }
}

.form-wrapper .text-bottom {
  color: #1d4e90;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 16px;
  margin-top: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .form-wrapper .text-bottom {
    font-size: 22px;
  }
}

.form-wrapper .tel-bottom {
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .form-wrapper .tel-bottom {
    margin: 0 auto 32px;
    width: 351px;
  }
}

.form-wrapper .text-web {
  font-size: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .form-wrapper .text-web {
    font-size: 17px;
  }
}

/*--  privacy  -----------------------------------------------------*/
.privacy {
  font-size: 14px;
  padding-bottom: 30px;
  padding-top: 48px;
}

@media (min-width: 768px) {
  .privacy {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}

.privacy .content {
  height: 248px;
  overflow-y: scroll;
}

@media (min-width: 768px) {
  .privacy .content {
    height: 357px;
  }
}

.privacy .content::-webkit-scrollbar {
  width: 12px;
}

.privacy .content::-webkit-scrollbar-track {
  background-color: gainsboro;
  border-radius: 6px;
}

.privacy .content::-webkit-scrollbar-thumb {
  background-color: #707070;
  border-radius: 6px;
}

.privacy .content p.mb {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .privacy .content p.mb {
    margin-bottom: 48px;
  }
}

/*--  bottom-menu  -----------------------------------------------------*/
.bottom-menu {
  background-color: rgba(230, 235, 240, 0.9);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  padding: 6.4px 0 8.5px;
  position: fixed;
  width: 100%;
  z-index: 100;
}

.bottom-menu.fixed {
  display: flex;
}

@media (min-width: 768px) {
  .bottom-menu.fixed {
    display: none;
  }
}

.bottom-menu .img {
  margin: 0 1.5%;
  width: 45%;
}

/*--  footer  -----------------------------------------------------*/
footer {
  background-color: #1d4e90;
  color: white;
  font-size: 12px;
  height: 72px;
  line-height: 72px;
  margin-bottom: 75px;
  text-align: center;
}

@media (min-width: 768px) {
  footer {
    font-size: 15px;
    height: 100px;
    line-height: 100px;
    margin-bottom: 0;
  }
}

.bottom__btn {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
  bottom: 0;
  display: flex;
  height: 110px;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 1000;
}

@media only screen and (max-width: 1060px) {
  .bottom__btn {
    height: 10.37736vw;
  }
}

@media only screen and (max-width: 767px) {
  .bottom__btn {
    background-color: rgba(0, 0, 0, 0.6);
    height: 15.46667vw;
  }
}

.bottom__btn--txt {
  flex: 0 0 auto;
  margin-right: 30px;
  width: 525px;
}

@media only screen and (max-width: 1060px) {
  .bottom__btn--txt {
    margin-right: 2.83019vw;
    width: 49.5283vw;
  }
}

@media only screen and (max-width: 767px) {
  .bottom__btn--txt {
    display: none;
  }
}

.bottom__btn--item {
  display: none;
  flex: 0 0 auto;
  width: 300px;
}

.bottom__btn--item.web {
  display: block;
}

@media only screen and (max-width: 1060px) {
  .bottom__btn--item {
    width: 28.30189vw;
  }
}

@media only screen and (max-width: 767px) {
  .bottom__btn--item {
    display: block;
    flex: 0 0 40.8vw;
  }
  .bottom__btn--item.web {
    margin-right: 1.6vw;
  }
}

.footer {
  margin-bottom: 110px;
}

@media only screen and (max-width: 1060px) {
  .footer {
    margin-bottom: 10.37736vw;
  }
}

@media only screen and (max-width: 767px) {
  .footer {
    margin-bottom: 15.46667vw;
  }
}

.l-choice {
  background-color: rgba(29, 78, 144, 0.06);
  overflow: hidden;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1060px) {
  .l-choice {
    padding-bottom: 8.49057vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-choice {
    padding-bottom: 16vw;
  }
}

.l-choice__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-choice__inner {
    padding: 0 4vw;
  }
}

.l-choice__tit {
  margin: 0 -50px 60px;
}

@media only screen and (max-width: 1200px) {
  .l-choice__tit {
    margin: 0 -4.16667 5vw;
  }
}

@media only screen and (max-width: 1060px) {
  .l-choice__tit {
    margin: 0 -2.83019 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-choice__tit {
    margin: 0;
    margin-bottom: 8vw;
  }
}

.l-choice__txt {
  font-size: 18;
  line-height: 1.77778;
  margin: 0 auto 53px;
  max-width: 800px;
}

@media only screen and (max-width: 1060px) {
  .l-choice__txt {
    font-size: 1.69811vw;
    margin-bottom: 5vw;
    max-width: 75.4717vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-choice__txt {
    font-size: 4.26667vw;
    line-height: 1.75;
    margin-bottom: 6.4vw;
    max-width: 100%;
  }
}

.l-choice__list {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  margin: 0;
  padding: 40px 0 55px;
}

@media only screen and (max-width: 1060px) {
  .l-choice__list {
    padding: 3.77358vw 0 5.18868vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-choice__list {
    padding: 8.53333vw 5.33333vw 7.46667vw;
  }
}

.l-choice__item {
  align-items: flex-start;
  border-bottom: 1px solid #E0DCDC;
  display: flex;
  margin: 0 auto;
  margin-bottom: 12px;
  max-width: 800px;
  padding-bottom: 22px;
}

.l-choice__item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1060px) {
  .l-choice__item {
    margin-bottom: 1.13208vw;
    max-width: 75.4717vw;
    padding-bottom: 2.07547vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-choice__item {
    margin-bottom: 4vw;
    max-width: 100%;
    padding-bottom: 4vw;
  }
  .l-choice__item:last-child {
    margin-bottom: 0;
  }
}

.l-choice__term {
  color: #EB6020;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.77778;
  width: 195px;
}

.l-choice__term.blue {
  color: #1D4E90;
}

@media only screen and (max-width: 1060px) {
  .l-choice__term {
    font-size: 1.69811vw;
    width: 18.39623vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-choice__term {
    font-size: 4.26667vw;
    width: 21.33333vw;
  }
}

.l-choice__description {
  font-size: 18px;
  line-height: 1.77778;
  margin: 0;
}

.l-choice__description .small {
  font-size: 0.8em;
}

@media only screen and (max-width: 1060px) {
  .l-choice__description {
    font-size: 1.69811vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-choice__description {
    font-size: 4.26667vw;
    line-height: 1.75;
  }
}

.l-cta {
  background: rgba(235, 96, 32, 0.26);
  padding: 90px 0;
}

.l-cta.blue {
  background: rgba(29, 78, 144, 0.26);
}

@media only screen and (max-width: 1060px) {
  .l-cta {
    padding: 8.49057vw 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-cta {
    padding-bottom: 16vw;
    padding-top: 16vw;
  }
}

.l-cta__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-cta__inner {
    padding: 0 4vw;
  }
}

.l-cta__box {
  background-color: #fff;
  border-radius: 10px;
  padding: 70px 0;
}

@media only screen and (max-width: 767px) {
  .l-cta__box {
    padding-bottom: 9.6vw;
    padding-top: 9.06667vw;
  }
}

.l-cta__tit {
  margin: 0 auto 40px;
  max-width: 630px;
}

@media only screen and (max-width: 1060px) {
  .l-cta__tit {
    margin: 0 auto 3.77358vw;
    max-width: 59.43396vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-cta__tit {
    margin: 0 auto 6.93333vw;
    max-width: 77.33333vw;
  }
}

.l-cta__yoyaku {
  margin: 0 auto 37px;
  max-width: 653px;
}

@media only screen and (max-width: 1060px) {
  .l-cta__yoyaku {
    margin: 0 auto 3.49057vw;
    max-width: 61.60377vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-cta__yoyaku {
    margin: 0 auto 5.86667vw;
    max-width: 60.26667vw;
  }
}

.l-cta__btns {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1060px) {
  .l-cta__btns {
    margin-bottom: 3.77358vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-cta__btns {
    margin-bottom: 3.2vw;
  }
}

.l-cta__btn {
  display: block;
  flex: 0 0 auto;
  width: 394px;
}

.l-cta__btn img {
  width: 100%;
}

@media only screen and (max-width: 1060px) {
  .l-cta__btn {
    width: 37.16981vw;
  }
}

.l-cta__btn:last-child {
  display: none;
}

@media only screen and (max-width: 767px) {
  .l-cta__btn:last-child {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .l-cta__btn {
    width: 40.8vw;
  }
  .l-cta__btn:first-child {
    margin-right: 1.6vw;
  }
}

.l-cta__tel {
  display: block;
  margin: 0 auto;
  max-width: 468px;
}

@media only screen and (max-width: 1060px) {
  .l-cta__tel {
    max-width: 44.15094vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-cta__tel {
    max-width: 83.73333vw;
  }
}

.l-desire {
  background: url(../img2/desire/bg-pc.png) no-repeat center/cover;
  padding-bottom: 119px;
  padding-top: 110px;
  position: relative;
}

@media only screen and (max-width: 1920px) {
  .l-desire {
    background-size: 1920px 100%;
    padding-bottom: 119px;
    padding-top: 110px;
  }
}

@media only screen and (max-width: 1200px) {
  .l-desire {
    background-size: 160vw 58.16667vw;
    padding-bottom: 9.91667vw;
    padding-top: 9.16667vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-desire {
    background-image: url(../img2/desire/bg.png);
    background-size: cover;
    padding-bottom: 19.46667vw;
    padding-top: 11.2vw;
  }
}

.l-desire__btn {
  -webkit-transform: translate(-50%, 50%);
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 50%);
  width: 80px;
}

@media only screen and (max-width: 1200px) {
  .l-desire__btn {
    width: 6.66667vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-desire__btn {
    width: 16vw;
  }
}

.l-desire__inner {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 30px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .l-desire__inner {
    left: 0;
    padding: 0;
    position: relative;
    top: 0;
  }
}

.l-desire__tit {
  margin-bottom: 40px;
  width: 960px;
}

@media only screen and (max-width: 1200px) {
  .l-desire__tit {
    margin-bottom: 3.33333vw;
    width: 80vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-desire__tit {
    margin: 0 auto;
    margin-bottom: 5.6vw;
    width: 89.6vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-desire__list--wrapper {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    padding-left: 24px;
  }
}

.l-desire__list {
  margin-bottom: -25px;
}

@media only screen and (max-width: 1200px) {
  .l-desire__list {
    margin-bottom: -2.08333vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-desire__list {
    margin-bottom: 0;
  }
}

.l-desire__item {
  color: #fff;
  font-size: 26px;
  line-height: 1.34615;
  margin-bottom: 25px;
  padding-left: 53px;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .l-desire__item {
    font-size: 2.16667vw;
    margin-bottom: 2.08333vw;
    padding-left: 4.41667vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-desire__item {
    font-size: 4vw;
    line-height: 1.4;
    margin-bottom: 3.73333vw;
    padding-left: 7.2vw;
  }
}

.l-desire__item::before {
  background: url(../img2/desire/check.png) no-repeat center/cover;
  content: '';
  display: block;
  height: 35px;
  left: 0;
  position: absolute;
  top: 0;
  width: 35px;
}

@media only screen and (max-width: 1200px) {
  .l-desire__item::before {
    height: 2.91667vw;
    width: 2.91667vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-desire__item::before {
    height: 5.6vw;
    width: 5.6vw;
  }
}

.l-downtime {
  overflow: hidden;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1060px) {
  .l-downtime {
    padding-bottom: 8.49057vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-downtime {
    padding-bottom: 16vw;
  }
}

.l-downtime__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-downtime__inner {
    padding: 0 4vw;
  }
}

.l-downtime__tit {
  margin: 0 -50px 60px;
}

@media only screen and (max-width: 1200px) {
  .l-downtime__tit {
    margin: 0 -4.16667 5vw;
  }
}

@media only screen and (max-width: 1060px) {
  .l-downtime__tit {
    margin: 0 -2.83019 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-downtime__tit {
    margin: 0;
    margin-bottom: 6.4vw;
  }
}

.l-downtime__txt {
  font-size: 18px;
  line-height: 1.77778;
  margin: 0 auto;
  max-width: 800px;
}

.l-downtime__txt .orange {
  color: #EB6020;
  font-weight: bold;
}

@media only screen and (max-width: 1060px) {
  .l-downtime__txt {
    font-size: 1.69811vw;
    max-width: 75.4717vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-downtime__txt {
    font-size: 4.26667vw;
    line-height: 1.75;
    max-width: 100%;
  }
}

.l-feature {
  background-color: rgba(29, 78, 144, 0.08);
  padding-bottom: 90px;
  padding-top: 90px;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .l-feature {
    padding-bottom: 7.75862vw;
    padding-top: 7.75862vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-feature {
    padding-bottom: 28.8vw;
    padding-top: 13.33333vw;
  }
}

.l-feature__inner {
  margin: 0 auto;
  max-width: 1160px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-feature__inner {
    padding: 0 4vw;
  }
}

.l-feature__tit {
  margin: 0 auto 60px;
  max-width: 616px;
}

@media only screen and (max-width: 1200px) {
  .l-feature__tit {
    margin-bottom: 5.17241vw;
    max-width: 53.10345vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-feature__tit {
    margin-bottom: 8vw;
    max-width: 88.53333vw;
  }
}

.l-feature__tit2 {
  margin-bottom: 60px;
}

@media only screen and (max-width: 1200px) {
  .l-feature__tit2 {
    margin-bottom: 5.17241vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-feature__tit2 {
    margin-bottom: 8vw;
  }
}

.l-flow {
  background-color: rgba(29, 78, 144, 0.06);
  overflow: hidden;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1060px) {
  .l-flow {
    padding-bottom: 8.49057vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-flow {
    padding-bottom: 16vw;
  }
}

.l-flow__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-flow__inner {
    padding: 0 4vw;
  }
}

.l-flow__tit {
  margin: 0 -50px 60px;
}

@media only screen and (max-width: 1200px) {
  .l-flow__tit {
    margin: 0 -4.16667 5vw;
  }
}

@media only screen and (max-width: 1060px) {
  .l-flow__tit {
    margin: 0 -2.83019 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-flow__tit {
    margin: 0;
    margin-bottom: 8vw;
  }
}

.l-flow__list {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 0 70px;
}

@media only screen and (max-width: 1060px) {
  .l-flow__list {
    padding: 3.77358vw 0 6.60377vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-flow__list {
    padding: 8.53333vw 5.33333vw 7.46667vw;
  }
}

.l-flow__item {
  align-items: center;
  border-bottom: 1px solid #E0DCDC;
  display: flex;
  margin: 0 auto;
  margin-bottom: 27px;
  max-width: 800px;
  padding-bottom: 27px;
}

.l-flow__item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1060px) {
  .l-flow__item {
    margin-bottom: 2.54717vw;
    max-width: 75.4717vw;
    padding-bottom: 2.54717vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-flow__item {
    align-items: flex-start;
    margin-bottom: 7.46667vw;
    max-width: 100%;
    padding-bottom: 6.66667vw;
  }
}

.l-flow__item--tit {
  color: #1D4E90;
  font-size: 24px;
  line-height: 1.45833;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1060px) {
  .l-flow__item--tit {
    font-size: 2.26415vw;
    margin-bottom: 0.9434vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-flow__item--tit {
    font-size: 4.8vw;
    line-height: 1.44444;
    margin-bottom: 2.4vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-flow__item--txt {
    font-size: 4.26667vw;
    line-height: 1.75;
  }
}

.l-flow__item--pic {
  border-radius: 50%;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
  margin-right: 45px;
  width: 149px;
}

@media only screen and (max-width: 1060px) {
  .l-flow__item--pic {
    margin-right: 4.24528vw;
    width: 14.0566vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-flow__item--pic {
    margin-right: 6.66667vw;
    width: 29.33333vw;
  }
}

.l-flow__term {
  color: #EB6020;
  flex: 0 0 auto;
  font-weight: bold;
}

.l-flow__term.blue {
  color: #1D4E90;
}

@media only screen and (max-width: 767px) {
  .l-flow__term {
    font-size: 4.26667vw;
    width: 21.33333vw;
  }
}

.l-flow__description {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .l-flow__description {
    font-size: 4.26667vw;
    line-height: 1.75;
  }
}

.l-fv {
  background: url(../img2/fv/bg-pc.jpg) no-repeat center/cover;
  overflow: hidden;
  padding-top: 46.35417%;
  position: relative;
}

@media only screen and (max-width: 1920px) {
  .l-fv {
    background-size: 1920px 100%;
    padding-top: 890px;
  }
}

@media only screen and (max-width: 1200px) {
  .l-fv {
    background-size: 160vw 74.16667vw;
    padding-top: 74.16667vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-fv {
    background-image: url(../img2/fv/bg.jpg);
    background-size: cover;
    padding-top: 170.66667%;
  }
}

.l-fv__inner {
  width: 100%;
}

.l-fv__inner img {
  width: 100%;
}

.Header {
  background-color: #fff;
  padding-top: 0;
}

.Header__tag {
  border-bottom: 1px solid #1D4E90;
  font-size: 13px;
  font-weight: 400;
  padding: 8px;
  text-align: center;
}

.Header__tag.only-pc {
  border: none;
  padding: 0;
}

@media only screen and (max-width: 1200px) {
  .Header__tag {
    font-size: 1.08333vw;
    padding: 0.66667vw;
  }
}

@media only screen and (max-width: 767px) {
  .Header__tag {
    font-size: 2.66667vw;
    line-height: 1.4;
    padding: 1.86667vw;
  }
}

.Header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  min-height: 110px;
  padding: 0 50px;
}

@media only screen and (max-width: 1200px) {
  .Header__inner {
    max-width: 100vw;
    min-height: 9.16667vw;
    padding: 0 2.5vw;
  }
}

@media only screen and (max-width: 767px) {
  .Header__inner {
    max-width: 100%;
    min-height: 15.46667vw;
    padding: 0 4vw;
    position: relative;
  }
}

.Header__inner .logo {
  max-width: 172px;
}

@media only screen and (max-width: 1200px) {
  .Header__inner .logo {
    max-width: 14.33333vw;
  }
}

@media only screen and (max-width: 767px) {
  .Header__inner .logo {
    max-width: 27.2vw;
  }
}

.Header__inner .tel {
  max-width: 268px;
}

@media only screen and (max-width: 1640px) {
  .Header__inner .tel {
    margin-right: 77px;
    max-width: 268px;
  }
}

@media only screen and (max-width: 1200px) {
  .Header__inner .tel {
    margin-right: 6.41667vw;
    max-width: 22.33333vw;
  }
}

@media only screen and (max-width: 767px) {
  .Header__inner .tel {
    margin-right: 11.2vw;
    max-width: 39.46667vw;
  }
}

.Header__inner .btn {
  display: none;
}

@media only screen and (max-width: 1640px) {
  .Header__inner .btn {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 30px;
    top: 26px;
    width: 53px;
    z-index: 1000;
  }
  .Header__inner .btn.none {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .Header__inner .btn {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 2.5vw;
    top: 2.16667vw;
    width: 4.41667vw;
    z-index: 1000;
  }
  .Header__inner .btn.none {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .Header__inner .btn {
    cursor: pointer;
    display: block;
    position: absolute;
    right: 4vw;
    top: 2.93333vw;
    width: 8.53333vw;
    z-index: 1000;
  }
  .Header__inner .btn.none {
    display: none;
  }
}

.Header__menu {
  -webkit-transform: translateY(-50%);
  position: fixed;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2000;
}

@media only screen and (max-width: 1640px) {
  .Header__menu {
    -webkit-transform: none;
    background: rgba(29, 78, 144, 0.95);
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    left: 0;
    max-width: 100vw;
    padding: 14px 25px;
    position: absolute;
    right: auto;
    top: 110px;
    transform: none;
    width: 100vw;
    z-index: 1000;
  }
  .Header__menu.none {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .Header__menu {
    -webkit-transform: none;
    background: rgba(29, 78, 144, 0.95);
    display: flex;
    flex-wrap: wrap;
    height: auto;
    justify-content: center;
    left: 0;
    max-width: 100vw;
    padding: 1.16667vw 2.08333vw;
    position: absolute;
    right: auto;
    top: 9.16667vw;
    transform: none;
    width: 100vw;
    z-index: 1000;
  }
  .Header__menu.none {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .Header__menu {
    background: rgba(29, 78, 144, 0.95);
    height: 55.2vw;
    justify-content: flex-start;
    left: 0;
    max-width: 100vw;
    padding: 7.46667vw 6.66667vw;
    position: absolute;
    top: 15.46667vw;
    width: 100vw;
  }
  .Header__menu.none {
    display: none;
  }
}

.Header__menu li {
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
  height: 41px;
  margin-bottom: 12px;
  padding-left: 18px;
  width: 211px;
}

.Header__menu li.topbtn {
  background-color: #1D4E90;
  margin-top: 40px;
}

.Header__menu li.topbtn > a {
  color: #fff;
}

.Header__menu li.topbtn > a::before {
  border-color: transparent transparent #fff transparent;
  border-style: solid;
  border-width: 0 6px 6px 6px;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  top: 50%;
  width: 0;
}

@media only screen and (max-width: 1640px) {
  .Header__menu li {
    background-color: transparent;
    border-radius: none;
    box-shadow: none;
    flex: 0 0 auto;
    height: auto;
    margin-bottom: 0;
    margin-right: 20px;
    padding: 0;
    text-align: left;
    width: auto;
  }
  .Header__menu li.topbtn {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .Header__menu li {
    background-color: transparent;
    border-radius: none;
    box-shadow: none;
    flex: 0 0 auto;
    height: auto;
    margin-bottom: 0;
    margin-right: 1.66667vw;
    padding: 0;
    text-align: left;
    width: auto;
  }
  .Header__menu li.topbtn {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .Header__menu li {
    margin-bottom: 2.66667vw;
    margin-right: 6.15385%;
    width: 52.92308%;
  }
  .Header__menu li:nth-child(2n) {
    margin-right: 0;
    width: 40.92308%;
  }
}

.Header__menu li > a {
  color: #000000;
  display: block;
  font-size: 13px;
  line-height: 3.15385;
  padding-left: 20px;
  position: relative;
}

@media only screen and (max-width: 1640px) {
  .Header__menu li > a {
    color: #fff;
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    margin-bottom: 6px;
    padding-left: 20px;
    text-align: left;
    width: 100%;
  }
}

@media only screen and (max-width: 1200px) {
  .Header__menu li > a {
    color: #fff;
    display: inline-block;
    font-size: 1.08333vw;
    line-height: 1;
    margin-bottom: 0.5vw;
    padding-left: 1.66667vw;
    text-align: left;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .Header__menu li > a {
    color: #fff;
    display: inline-block;
    font-size: 3.46667vw;
    padding-left: 6.13333vw;
    text-align: left;
    width: 100%;
  }
}

.Header__menu li > a::before {
  -webkit-transform: translateY(-50%);
  border-color: #1d4f90 transparent transparent transparent;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  content: "";
  display: block;
  height: 0;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

@media only screen and (max-width: 1640px) {
  .Header__menu li > a::before {
    border-color: #fff transparent transparent transparent;
    border-width: 7px 7px 0 7px;
  }
}

@media only screen and (max-width: 1200px) {
  .Header__menu li > a::before {
    border-color: #fff transparent transparent transparent;
    border-width: 0.58333vw 0.58333vw 0 0.58333vw;
  }
}

@media only screen and (max-width: 767px) {
  .Header__menu li > a::before {
    border-color: #fff transparent transparent transparent;
    border-width: 1.86667vw 1.86667vw 0 1.86667vw;
  }
}

.l-hosyo {
  background-color: rgba(29, 78, 144, 0.08);
  padding-top: 117px;
}

@media only screen and (max-width: 767px) {
  .l-hosyo {
    padding-top: 13.33333vw;
  }
}

.l-hosyo__inner {
  margin: 0 auto;
  margin: 0 auto;
  max-width: 1060px;
  max-width: 1060px;
  padding: 0 30px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-hosyo__inner {
    padding: 0 4vw;
  }
}

.l-hosyo__pic {
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
}

@media only screen and (max-width: 767px) {
  .l-hosyo__pic {
    margin-bottom: 8vw;
  }
}

.l-kinds {
  overflow: hidden;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1060px) {
  .l-kinds {
    padding-bottom: 8.49057vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds {
    padding-bottom: 16vw;
  }
}

.l-kinds__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-kinds__inner {
    padding: 0 4vw;
  }
}

.l-kinds__tit {
  margin: 0 -50px 60px;
}

@media only screen and (max-width: 1200px) {
  .l-kinds__tit {
    margin: 0 -4.16667 5vw;
  }
}

@media only screen and (max-width: 1060px) {
  .l-kinds__tit {
    margin: 0 -2.83019 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__tit {
    margin: 0;
    margin-bottom: 6.4vw;
  }
}

.l-kinds__txt {
  font-size: 18px;
  line-height: 1.77778;
  margin: 0 auto 90px;
  max-width: 800px;
}

.l-kinds__txt .orange {
  color: #EB6020;
  font-weight: bold;
}

@media only screen and (max-width: 1060px) {
  .l-kinds__txt {
    font-size: 1.69811vw;
    margin-bottom: 8.49057vw;
    max-width: 75.4717vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__txt {
    font-size: 4.26667vw;
    line-height: 1.75;
    margin-bottom: 6.4vw;
    max-width: 100%;
  }
}

.l-kinds__item {
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 0 55px;
}

@media only screen and (max-width: 1060px) {
  .l-kinds__item {
    padding: 3.77358vw 5.18868vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__item {
    padding: 9.6vw 5.33333vw 12vw;
  }
}

.l-kinds__item:not(:last-child) {
  margin-bottom: 60px;
}

@media only screen and (max-width: 1060px) {
  .l-kinds__item:not(:last-child) {
    margin-bottom: 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__item:not(:last-child) {
    margin-bottom: 8vw;
  }
}

.l-kinds__item--tit {
  color: #EB6020;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: center;
}

@media only screen and (max-width: 1060px) {
  .l-kinds__item--tit {
    font-size: 2.26415vw;
    margin-bottom: 3.77358vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__item--tit {
    font-size: 4.8vw;
    line-height: 1.55556;
    margin: 0 -0.8vw;
    margin-bottom: 3.2vw;
  }
}

.l-kinds__item--txt {
  font-size: 18px;
  line-height: 1.77778;
  margin: 0 auto 40px;
  max-width: 800px;
}

.l-kinds__item--txt .bold {
  font-weight: bold;
}

.l-kinds__item--txt.item03 {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .l-kinds__item--txt.item03:last-child {
    margin-bottom: 0;
  }
}

.l-kinds__item--txt.item04 {
  margin: 0;
  width: 400px;
}

@media only screen and (max-width: 1060px) {
  .l-kinds__item--txt.item04 {
    width: 37.73585vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__item--txt.item04 {
    margin-bottom: 6.4vw;
    width: 100%;
  }
}

@media only screen and (max-width: 1060px) {
  .l-kinds__item--txt {
    font-size: 1.69811vw;
    margin: 0 auto 3.77358vw;
    max-width: 75.4717vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__item--txt {
    font-size: 4.26667vw;
    line-height: 1.75;
    margin-bottom: 6.4vw;
    max-width: 100%;
  }
}

.l-kinds__item--body {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 800px;
}

.l-kinds__item--body.item03 {
  align-items: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1060px) {
  .l-kinds__item--body {
    max-width: 75.4717vw;
  }
  .l-kinds__item--body.item03 {
    margin-bottom: 3.77358vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__item--body {
    display: block;
    max-width: 100%;
  }
  .l-kinds__item--body.item03 {
    margin-bottom: 0;
  }
}

.l-kinds__item--sub {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 14px;
  text-align: center;
}

.l-kinds__item--sub.orange {
  color: #EB6020;
}

@media only screen and (max-width: 1060px) {
  .l-kinds__item--sub {
    font-size: 1.88679vw;
    margin-bottom: 1.32075vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__item--sub {
    font-size: 4.26667vw;
    margin-bottom: 4.26667vw;
  }
}

.l-kinds__pic {
  flex: 0 0 auto;
  margin-bottom: 15px;
  width: 367px;
}

@media only screen and (max-width: 1060px) {
  .l-kinds__pic {
    margin-bottom: 1.41509vw;
    width: 34.62264vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__pic {
    margin-bottom: 4.8vw;
    width: 100%;
  }
}

.l-kinds__pic--txt {
  font-size: 20px;
  text-align: center;
}

.l-kinds__pic--txt.orange {
  color: #EB6020;
}

@media only screen and (max-width: 1060px) {
  .l-kinds__pic--txt {
    font-size: 1.88679vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__pic--txt {
    font-size: 3.46667vw;
    text-align: center;
  }
}

.l-kinds__arrow {
  border-color: transparent transparent transparent #d5d5d5;
  border-style: solid;
  border-width: 25.5px 0 25.5px 36px;
  bottom: 100px;
  display: block;
  height: 0;
  position: relative;
  width: 0;
  width: 0;
}

.l-kinds__arrow.item02 {
  bottom: 90px;
}

@media only screen and (max-width: 1060px) {
  .l-kinds__arrow {
    border-width: 2.40566vw 0 2.40566vw 3.39623vw;
    bottom: 9.43396vw;
  }
  .l-kinds__arrow.item02 {
    bottom: 8.49057vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kinds__arrow {
    border-color: #d5d5d5 transparent transparent transparent;
    border-width: 6.4vw 5.86667vw 0 5.86667vw;
    bottom: 0;
    margin: 5.33333vw auto 4.26667vw;
  }
  .l-kinds__arrow.item02 {
    bottom: 0;
  }
}

.l-kodawari {
  background-color: rgba(29, 78, 144, 0.06);
  overflow: hidden;
  padding: 90px 0;
}

@media only screen and (max-width: 1060px) {
  .l-kodawari {
    padding: 8.49057vw 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-kodawari {
    padding-bottom: 16vw;
    padding-top: 16vw;
  }
}

.l-kodawari__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-kodawari__inner {
    padding: 0 4vw;
  }
}

.l-kodawari__tit {
  margin: 0 auto 60px;
  max-width: 400px;
}

@media only screen and (max-width: 1060px) {
  .l-kodawari__tit {
    max-width: 37.73585vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kodawari__tit {
    margin-bottom: 8vw;
    max-width: 67.73333vw;
  }
}

.l-kodawari__tit2 {
  margin: 0 -50px 60px;
}

@media only screen and (max-width: 1200px) {
  .l-kodawari__tit2 {
    margin: 0 -4.16667 5vw;
  }
}

@media only screen and (max-width: 1060px) {
  .l-kodawari__tit2 {
    margin: 0 -2.83019 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kodawari__tit2 {
    margin: 0;
    margin-bottom: 6.4vw;
  }
}

.l-kodawari__txt {
  font-size: 18;
  line-height: 1.77778;
  margin: 0 auto 53px;
  max-width: 800px;
}

@media only screen and (max-width: 1060px) {
  .l-kodawari__txt {
    font-size: 1.69811vw;
    margin-bottom: 5vw;
    max-width: 75.4717vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kodawari__txt {
    font-size: 4.26667vw;
    line-height: 1.75;
    margin-bottom: 6.4vw;
    max-width: 100%;
  }
}

.l-kodawari__list {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 27px 40px;
}

@media only screen and (max-width: 1060px) {
  .l-kodawari__list {
    padding: 3.77358vw 2.54717vw 3.77358vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kodawari__list {
    display: block;
    padding: 5.33333vw;
  }
}

.l-kodawari__item {
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1.75;
  margin-bottom: 20px;
  padding-left: 62px;
  position: relative;
  width: 447px;
}

.l-kodawari__item:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1060px) {
  .l-kodawari__item {
    font-size: 1.88679vw;
    margin-bottom: 1.88679vw;
    padding-left: 5.84906vw;
    width: 42.16981vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kodawari__item {
    font-size: 4.8vw;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: 3.73333vw;
    max-width: 100%;
    padding-left: 12vw;
    width: 100%;
  }
  .l-kodawari__item:last-child {
    margin-bottom: 3.73333vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kodawari__item.last {
    margin-top: 6.93333vw;
  }
}

.l-kodawari__item img {
  -webkit-transform: translateY(-50%);
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
}

@media only screen and (max-width: 1060px) {
  .l-kodawari__item img {
    width: 4.15094vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-kodawari__item img {
    width: 8.26667vw;
  }
}

.l-mechanism {
  overflow: hidden;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1060px) {
  .l-mechanism {
    padding-bottom: 8.49057vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-mechanism {
    padding-bottom: 16vw;
  }
}

.l-mechanism__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-mechanism__inner {
    padding: 0 4vw;
  }
}

.l-mechanism__tit {
  margin: 0 -50px 60px;
}

@media only screen and (max-width: 1200px) {
  .l-mechanism__tit {
    margin: 0 -4.16667 5vw;
  }
}

@media only screen and (max-width: 1060px) {
  .l-mechanism__tit {
    margin: 0 -2.83019 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-mechanism__tit {
    margin: 0;
    margin-bottom: 12.8vw;
  }
}

.l-mechanism__bold {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 22px;
}

@media only screen and (max-width: 1060px) {
  .l-mechanism__bold {
    font-size: 2.26415vw;
    margin-bottom: 2.07547vw;
  }
}

.l-mechanism__bold.orange {
  color: #EB6020;
}

@media only screen and (max-width: 767px) {
  .l-mechanism__bold {
    font-size: 4.8vw;
    margin-bottom: 5.06667vw;
    text-align: center;
  }
}

.l-mechanism__pic {
  margin-bottom: 25px;
}

@media only screen and (max-width: 1060px) {
  .l-mechanism__pic {
    margin-bottom: 2.35849vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-mechanism__pic {
    margin-bottom: 2.93333vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-mechanism__pic.item02 {
    margin-bottom: 4.8vw;
  }
}

.l-mechanism__list {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 60px;
  max-width: 900px;
}

@media only screen and (max-width: 1060px) {
  .l-mechanism__list {
    margin-bottom: 5.66038vw;
    max-width: 84.90566vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-mechanism__list {
    margin-bottom: 7.46667vw;
    max-width: 100%;
  }
}

.l-mechanism__item {
  flex: 0 0 auto;
  font-size: 18px;
  text-align: center;
  width: 224px;
}

@media only screen and (max-width: 1060px) {
  .l-mechanism__item {
    font-size: 1.69811vw;
    width: 21.13208vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-mechanism__item {
    font-size: 3.46667vw;
    line-height: 1.38462;
    width: 27.73333vw;
  }
}

.l-mechanism__txt {
  font-size: 18px;
  padding-left: 107px;
}

@media only screen and (max-width: 1060px) {
  .l-mechanism__txt {
    font-size: 1.69811vw;
    padding-left: 10.09434vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-mechanism__txt {
    font-size: 3.46667vw;
    line-height: 1.38462;
    padding-left: 0;
  }
}

.l-piko {
  overflow: hidden;
  padding: 90px 0;
}

@media only screen and (max-width: 1060px) {
  .l-piko {
    padding: 8.49057vw 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-piko {
    padding-bottom: 16vw;
    padding-top: 16vw;
  }
}

.l-piko__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-piko__inner {
    padding: 0 4vw;
  }
}

.l-piko__tit {
  margin: 0 auto 60px;
  max-width: 416px;
}

@media only screen and (max-width: 1060px) {
  .l-piko__tit {
    margin: 0 autovw 5.66038vw;
    max-width: 39.24528vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-piko__tit {
    margin: 0 auto 8vw;
    max-width: 75.73333vw;
  }
}

.l-piko__tit2 {
  margin: 0 -50px 60px;
}

@media only screen and (max-width: 1200px) {
  .l-piko__tit2 {
    margin: 0 -4.16667 5vw;
  }
}

@media only screen and (max-width: 1060px) {
  .l-piko__tit2 {
    margin: 0 -2.83019 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-piko__tit2 {
    margin: 0 auto 8vw;
  }
}

.l-piko__box {
  display: flex;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1060px) {
  .l-piko__box {
    margin-bottom: 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-piko__box {
    display: block;
    margin-bottom: 0;
    padding: 0;
  }
}

.l-piko__pic {
  flex: 0 0 auto;
  margin-left: 146px;
  order: 2;
  width: 269px;
}

@media only screen and (max-width: 1060px) {
  .l-piko__pic {
    margin-left: 13.77358vw;
    width: 25.37736vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-piko__pic {
    margin: 0 auto 8vw;
    width: 60.53333vw;
  }
}

.l-piko__txt {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1.77778;
  width: 500px;
}

.l-piko__txt .orange {
  color: #EB6020;
  font-weight: bold;
}

@media only screen and (max-width: 1060px) {
  .l-piko__txt {
    font-size: 1.69811vw;
    margin-bottom: 2.26415vw;
    width: 47.16981vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-piko__txt {
    font-size: 4.26667vw;
    line-height: 1.75;
    margin-bottom: 6.4vw;
    width: 100%;
  }
}

.l-piko__list {
  background-color: rgba(235, 96, 32, 0.1);
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 27px 15px;
}

@media only screen and (max-width: 1060px) {
  .l-piko__list {
    padding: 3.77358vw 2.54717vw 1.41509vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-piko__list {
    display: block;
    padding: 5.33333vw;
  }
}

.l-piko__item {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 25px;
  padding-left: 62px;
  position: relative;
  width: 447px;
}

@media only screen and (max-width: 1060px) {
  .l-piko__item {
    font-size: 1.88679vw;
    margin-bottom: 2.35849vw;
    padding-left: 5.84906vw;
    width: 42.16981vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-piko__item {
    font-size: 4.8vw;
    font-weight: bold;
    margin-bottom: 3.73333vw;
    padding-left: 12vw;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .l-piko__item.last {
    margin-top: 6.93333vw;
  }
}

.l-piko__item img {
  -webkit-transform: translateY(-50%);
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
}

@media only screen and (max-width: 1060px) {
  .l-piko__item img {
    width: 4.15094vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-piko__item img {
    width: 8.26667vw;
  }
}

.l-price {
  overflow: hidden;
  padding: 90px 0;
}

@media only screen and (max-width: 1060px) {
  .l-price {
    padding: 8.49057vw 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-price {
    padding-top: 16;
    padding-top: 14.93333;
  }
}

.l-price__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-price__inner {
    padding: 0 4vw;
  }
}

.l-price__tit {
  margin: 0 auto 60px;
  max-width: 400px;
}

@media only screen and (max-width: 1060px) {
  .l-price__tit {
    margin-bottom: 5.66038vw;
    max-width: 37.73585vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-price__tit {
    margin-bottom: 8vw;
    max-width: 61.86667vw;
  }
}

.l-price__tit2 {
  margin: 0 -50px 60px;
}

@media only screen and (max-width: 1200px) {
  .l-price__tit2 {
    margin: 0 -4.16667 5vw;
  }
}

@media only screen and (max-width: 1060px) {
  .l-price__tit2 {
    margin: 0 -2.83019 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-price__tit2 {
    margin: 0;
    margin-bottom: 8vw;
  }
}

.l-price__txt {
  border-bottom: 1px solid #E0DCDC;
  font-size: 18px;
  line-height: 1.77778;
  margin: 0 auto 32px;
  max-width: 800px;
  padding-bottom: 32px;
}

@media only screen and (max-width: 1060px) {
  .l-price__txt {
    font-size: 1.69811vw;
    margin-bottom: 3.01887vw;
    max-width: 75.4717vw;
    padding-bottom: 3.01887vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-price__txt {
    font-size: 4.26667vw;
    line-height: 1.75;
    margin-bottom: 8vw;
    max-width: 100%;
    padding-bottom: 6.4vw;
  }
}

.l-price__pic {
  margin: 0 auto 90px;
  max-width: 800px;
}

.l-price__pic.last {
  margin: 0 auto;
}

@media only screen and (max-width: 1060px) {
  .l-price__pic {
    margin-bottom: 8.49057vw;
    max-width: 75.4717vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-price__pic {
    margin-bottom: 16vw;
    max-width: 100%;
  }
  .l-price__pic.last {
    margin: 0 auto;
    width: 82.66667vw;
  }
}

.l-price__box {
  border-bottom: 1px solid #E0DCDC;
  display: flex;
  font-size: 18px;
  line-height: 1.77778;
  margin: 0 auto 32px;
  max-width: 800px;
  padding-bottom: 32px;
}

@media only screen and (max-width: 1060px) {
  .l-price__box {
    font-size: 1.69811vw;
    margin-bottom: 3.01887vw;
    max-width: 75.4717vw;
    padding-bottom: 3.01887vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-price__box {
    font-size: 4.26667vw;
    line-height: 1.75;
    margin: 0 auto;
    margin-bottom: 8vw;
    max-width: 81.33333vw;
    padding-bottom: 6.4vw;
  }
}

.l-price__box--point {
  color: #EB6020;
  flex: 0 0 auto;
  font-weight: bold;
  width: 195px;
}

@media only screen and (max-width: 1060px) {
  .l-price__box--point {
    width: 18.39623vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-price__box--point {
    flex: 0 0 auto;
    width: 33.6vw;
  }
}

.l-price__border {
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 0 55px;
}

@media only screen and (max-width: 767px) {
  .l-price__border {
    padding: 8vw 5.33333vw 9.06667vw;
  }
}

.l-question {
  overflow: hidden;
  padding: 90px 0;
}

@media only screen and (max-width: 1060px) {
  .l-question {
    padding: 8.49057vw 0;
  }
}

@media only screen and (max-width: 767px) {
  .l-question {
    padding-bottom: 24vw;
    padding-top: 16vw;
  }
}

.l-question__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-question__inner {
    padding: 0 4vw;
  }
}

.l-question__tit {
  margin: 0 auto 60px;
  max-width: 720px;
}

@media only screen and (max-width: 1060px) {
  .l-question__tit {
    margin-bottom: 5.66038vw;
    max-width: 67.92453vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-question__tit {
    margin-bottom: 9.86667vw;
    max-width: 67.73333vw;
  }
}

.l-question__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -47px;
}

@media only screen and (max-width: 767px) {
  .l-question__list {
    display: block;
    margin-bottom: -10.66667vw;
  }
}

.l-question__item {
  flex: 0 0 auto;
  margin-bottom: 47px;
  width: 47.7%;
}

@media only screen and (max-width: 767px) {
  .l-question__item {
    margin-bottom: 10.66667vw;
    width: 100%;
  }
}

.l-question__q {
  color: #1D4E90;
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.41667;
  margin-bottom: 20px;
  position: relative;
}

@media only screen and (max-width: 1060px) {
  .l-question__q {
    font-size: 2.26415vw;
    margin-bottom: 1.88679vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-question__q {
    font-size: 4.8vw;
    line-height: 1.44444;
    margin-bottom: 4.8vw;
    padding-bottom: 3.2vw;
  }
}

.l-question__q img {
  -webkit-transform: translateY(-50%);
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 53px;
}

@media only screen and (max-width: 1060px) {
  .l-question__q img {
    width: 5vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-question__q img {
    width: 10.13333vw;
  }
}

.l-question__q::after {
  -webkit-transform: translateX(0);
  background: radial-gradient(circle farthest-side, #939394, #939394 37.5%, transparent 37.5%, transparent);
  background-size: 8px 8px;
  bottom: -4px;
  content: '';
  display: inline-block;
  height: 8px;
  left: 0;
  position: absolute;
  transform: translateX(0);
  width: 100%;
}

.l-question__q--txt {
  align-items: center;
  display: flex;
  min-height: 97px;
  padding-left: 90px;
  position: relative;
}

@media only screen and (max-width: 1060px) {
  .l-question__q--txt {
    min-height: 9.15094vw;
    padding-left: 8.49057vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-question__q--txt {
    font-size: 4.8vw;
    line-height: 1.44444;
    min-height: 18.13333vw;
    padding-left: 15.46667vw;
  }
}

.l-question__a {
  font-size: 18px;
  line-height: 1.77778;
  margin: 0;
}

@media only screen and (max-width: 1060px) {
  .l-question__a {
    font-size: 1.69811vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-question__a {
    font-size: 4.26667vw;
    line-height: 1.75;
  }
}

.l-sideeffect {
  overflow: hidden;
  padding-bottom: 90px;
}

@media only screen and (max-width: 1060px) {
  .l-sideeffect {
    padding-bottom: 8.49057vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-sideeffect {
    padding-bottom: 16vw;
  }
}

.l-sideeffect__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 30px;
}

@media only screen and (max-width: 767px) {
  .l-sideeffect__inner {
    padding: 0 4vw;
  }
}

.l-sideeffect__tit {
  margin: 0 -50px 60px;
}

@media only screen and (max-width: 1200px) {
  .l-sideeffect__tit {
    margin: 0 -4.16667 5vw;
  }
}

@media only screen and (max-width: 1060px) {
  .l-sideeffect__tit {
    margin: 0 -2.83019 5.66038vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-sideeffect__tit {
    margin: 0;
    margin-bottom: 8vw;
  }
}

.l-sideeffect__list {
  border-radius: 10px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.08);
  padding: 40px 0 55px;
}

@media only screen and (max-width: 1060px) {
  .l-sideeffect__list {
    padding: 3.77358vw 0 5.18868vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-sideeffect__list {
    padding: 8.53333vw 5.33333vw;
  }
}

.l-sideeffect__item {
  align-items: flex-start;
  border-bottom: 1px solid #E0DCDC;
  display: flex;
  margin: 0 auto;
  margin-bottom: 14px;
  max-width: 800px;
  padding-bottom: 14px;
}

@media only screen and (max-width: 1060px) {
  .l-sideeffect__item {
    margin-bottom: 1.32075vw;
    max-width: 75.4717vw;
    padding-bottom: 1.32075vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-sideeffect__item {
    margin-bottom: 4vw;
    max-width: 100%;
    padding-bottom: 4vw;
  }
  .l-sideeffect__item:last-child {
    margin-bottom: 0;
  }
}

.l-sideeffect__term {
  color: #EB6020;
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.77778;
  width: 195px;
}

@media only screen and (max-width: 1060px) {
  .l-sideeffect__term {
    font-size: 1.69811vw;
    width: 18.39623vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-sideeffect__term {
    font-size: 4.26667vw;
    width: 33.6vw;
  }
}

.l-sideeffect__description {
  font-size: 18px;
  line-height: 1.77778;
  margin: 0;
}

@media only screen and (max-width: 1060px) {
  .l-sideeffect__description {
    font-size: 1.69811vw;
  }
}

@media only screen and (max-width: 767px) {
  .l-sideeffect__description {
    font-size: 4.26667vw;
    line-height: 1.75;
  }
}

.Slider__list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .Slider__list {
    padding-bottom: 5.17241vw;
  }
}

@media only screen and (max-width: 767px) {
  .Slider__list {
    flex-wrap: nowrap;
    justify-content: center;
    justify-content: flex-start;
    padding: 0 4vw;
    white-space: nowrap;
  }
}

.Slider__item {
  flex: 0 0 auto;
  margin-bottom: 60px;
  width: 29.54545%;
}

@media only screen and (max-width: 1200px) {
  .Slider__item {
    margin-bottom: 5.17241vw;
  }
}

@media only screen and (max-width: 767px) {
  .Slider__item {
    margin-bottom: 0;
    width: 265px;
  }
}

.Slider__item:not(:last-child) {
  margin-right: 5.63636%;
}

@media only screen and (max-width: 767px) {
  .Slider__item:not(:last-child) {
    margin-right: 6.93333vw;
  }
}

.Slider__item:nth-child(3) {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .Slider__item:nth-child(3) {
    margin-right: 6.93333vw;
  }
}

.Slider__item:nth-child(n + 4) {
  margin-bottom: 0;
}

.Slider__img {
  margin-bottom: 13px;
  width: 100%;
}

@media only screen and (max-width: 1200px) {
  .Slider__img {
    margin-bottom: 1.12069vw;
  }
}

@media only screen and (max-width: 767px) {
  .Slider__img {
    margin-bottom: 4.26667vw;
  }
}

.Slider__body--tit {
  color: #1D4E90;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.42857;
  text-align: left;
}

@media only screen and (max-width: 1200px) {
  .Slider__body--tit {
    font-size: 2.41379vw;
  }
}

@media only screen and (max-width: 767px) {
  .Slider__body--tit {
    font-size: 5.86667vw;
    line-height: 1.45455;
    margin-bottom: 2.4vw;
  }
}

.Slider__body--txt {
  font-size: 18px;
  line-height: 1.77778;
  white-space: normal;
}

@media only screen and (max-width: 1200px) {
  .Slider__body--txt {
    font-size: 1.55172vw;
  }
}

@media only screen and (max-width: 767px) {
  .Slider__body--txt {
    font-size: 4.26667vw;
    line-height: 1.75;
  }
}

.Slider__prev {
  cursor: pointer;
  display: none;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .Slider__prev {
    bottom: 16VW;
    display: block;
    left: 4vw;
    width: 2.66667vw;
    z-index: 10;
  }
}

.Slider__next {
  cursor: pointer;
  display: none;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .Slider__next {
    bottom: 16vw;
    display: block;
    right: 4vw;
    top: auto;
    width: 2.66667vw;
    z-index: 10;
  }
}

.Slider__dots {
  display: none;
}

@media only screen and (max-width: 767px) {
  .Slider__dots {
    -webkit-transform: translateX(-50%);
    align-items: center;
    bottom: 16vw;
    display: flex;
    justify-content: center;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
  }
  .Slider__dots .dot {
    border: 1px solid #1D4E90;
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 2.93333vw;
    width: 2.93333vw;
  }
  .Slider__dots .dot.active {
    background: #1D4E90;
    pointer-events: none;
  }
  .Slider__dots .dot:not(:last-child) {
    margin-right: 3.2vw;
  }
}

#my-slider {
  overflow: hidden;
  padding-bottom: 60px;
  pointer-events: none;
  position: relative;
}

#my-slider::after {
  -webkit-transform: translateX(0);
  background: radial-gradient(circle farthest-side, #1D4E90, #1D4E90 37.5%, transparent 37.5%, transparent);
  background-size: 8px 8px;
  bottom: 0;
  content: '';
  display: inline-block;
  height: 8px;
  left: 0;
  position: absolute;
  transform: translateX(0);
  width: 100%;
}

@media only screen and (max-width: 767px) {
  #my-slider {
    margin: 0 -4vw;
    padding-bottom: 0;
    pointer-events: auto;
  }
  #my-slider::after {
    display: none;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */
