@charset "UTF-8";
/* Utility 多用CSS-------------------------------------------------------------------------- */
.flex {
  display: flex;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left50 {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.mb05e {
  margin-bottom: 0.5em;
}

.mb1e {
  margin-bottom: 1em;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb160 {
  margin-bottom: 160px;
}

.mb170 {
  margin-bottom: 170px;
}

.mb180 {
  margin-bottom: 180px;
}

.mb190 {
  margin-bottom: 190px;
}

.mb200 {
  margin-bottom: 200px;
}

.empty:empty::before {
  content: "-";
}

.first-line::first-line {
  font-size: 20px;
}

.line-clamp {
  width: 200px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@font-face {
  font-family: "ShinMGoPro-DeBold";
  src: url("../fonts/ShinMGoPro-DeBold.otf") format("opentype");
}
.rounded {
  font-family: "ShinMGoPro-DeBold", sans-serif;
}

[class*=fadeIn] {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  visibility: visible !important;
}

.fadeInBottom {
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.wavy {
  display: inline-block;
  -webkit-text-decoration: underline wavy 2px #27abb8;
          text-decoration: underline wavy 2px #27abb8;
  text-underline-offset: 0.2em;
  font-weight: bold;
}

.mint {
  color: #27abb8;
}

.left50.fadeInBottom {
  -webkit-animation-name: fadeInBottomCenter;
  animation-name: fadeInBottomCenter;
}

@-webkit-keyframes fadeInBottomCenter {
  0% {
    opacity: 0;
    transform: translateY(20px) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}

@keyframes fadeInBottomCenter {
  0% {
    opacity: 0;
    transform: translateY(20px) translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}
.display0s {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: display;
          animation-name: display;
}

.display1s {
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-name: display;
          animation-name: display;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes display {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes display {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Base 全体共通-------------------------------------------------------------------------- */
@font-face {
  font-family: "HiraKakuPro-W3";
  src: url("../fonts/HiraKakuPro-W3.otf") format("opentype");
}
body {
  color: #000;
  font-size: 1rem;
  font-family: "HiraKakuPro-W3", sans-serif;
  font-weight: 500;
  font-size: 24px;
}
@media screen and (max-width: 550px) {
  body {
    font-size: 16px;
  }
}

table {
  border-collapse: collapse;
}

li {
  list-style-type: none;
  list-style-position: inside;
  line-height: 1.8;
}

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

a {
  color: #000;
  text-decoration: none;
  word-break: break-all;
}

p {
  line-height: 1.8;
}

.wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1250px) {
  .wrap {
    max-width: 710px;
  }
}
@media screen and (max-width: 828px) {
  .wrap {
    width: calc(100% - 30px);
  }
}

h2 {
  text-align: center;
}
@media screen and (max-width: 550px) {
  h2 img {
    max-width: 80%;
    margin-bottom: 10px;
  }
}
h2 .rounded {
  color: #27abb8;
  font-size: 40px;
  display: block;
  color: #27abb8;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  h2 .rounded {
    font-size: 20px;
  }
}

/* Layout 全体配置-------------------------------------------------------------------------- */
.layout-header {
  height: 110px;
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  position: fixed;
  z-index: 5;
  transition: height 0.3s;
  padding-left: 25px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.025);
  justify-content: space-between;
}
@media screen and (max-width: 1250px) {
  .layout-header {
    padding-left: 20px;
  }
}
@media screen and (max-width: 550px) {
  .layout-header {
    padding-left: 10px;
    height: 60px;
  }
}
.layout-header.scroll {
  height: 80px;
}
@media screen and (max-width: 550px) {
  .layout-header.scroll {
    height: 60px;
  }
}
.layout-header.scroll .b-gnav__item a {
  line-height: 80px;
}
.layout-header.scroll .b-gnav__item a::after {
  bottom: 15px;
}
.layout-header.scroll .b-gnav__item--entry a {
  height: 80px;
}
.layout-header.scroll .b-gnav__item--entry .uppercase {
  padding-top: 20px;
  margin-bottom: 0.5em;
}
.layout-header.scroll .b-gnav__item--entry .ja {
  font-size: 1.25rem;
}
@media screen and (max-width: 1250px) {
  .layout-header.scroll .b-header__name a img {
    width: 80%;
  }
}
@media screen and (max-width: 550px) {
  .layout-header.scroll .b-header__name a img {
    width: auto;
  }
}
.layout-mv {
  width: 100%;
  margin-top: 110px;
  flex-direction: column;
  display: flex;
  align-items: center;
  background-image: url(../img/top/mv-bg-pc.png);
  background-size: cover;
  background-position: center;
  padding-top: 65px;
  gap: 20px;
  padding-bottom: 10px;
}
@media screen and (max-width: 550px) {
  .layout-mv {
    margin-top: 60px;
    background-image: url(../img/top/mv-bg-sp.png);
  }
}
.layout-mv img {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1250px) {
  .layout-mv img {
    max-width: 710px;
  }
}
@media screen and (max-width: 828px) {
  .layout-mv img {
    width: calc(100% - 30px);
  }
}
.layout-campaign {
  padding-top: 130px;
}
#campaign02.layout-campaign {
  padding-top:0;
}
.layout-campaign .wrap {
  border: #303030 1px solid;
  border-radius: 15px;
  padding: 0 40px 50px;
}
@media screen and (max-width: 550px) {
  .layout-campaign .wrap {
    padding: 0 15px 50px;
  }
}
.layout-campaign .flex {
  gap: 30px;
  margin-top: 60px;
  flex-direction: column;
}

@media screen and (min-width: 1251px){
  .layout-campaign .flex img{
    width: 100%;
    max-width: 700px;
  }
  .campaign01,
  .campaign02,
  .campaign03,
  .campaign04{
    text-align: center;
  }
}
@media screen and (max-width: 828px) {
  .layout-campaign .flex {
    flex-direction: column;
    gap: 0;
    margin-top: 0;
  }
}
.layout-campaign h2 img {
  position: relative;
  top: -10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 550px) {
  .layout-campaign h2 img {
    margin-bottom: 20px;
  }
}
.layout-campaign h2 span {
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.layout-campaign h2 .small {
  font-size: 32px;
  display: block;
}
@media screen and (max-width: 550px) {
  .layout-campaign h2 .small {
    font-size: 16px;
  }
}
@media screen and (max-width: 550px) {
  .layout-onayami h2 {
    margin-bottom: 20px;
  }
}
.layout-merit {
  position: relative;
  background-color: #ddecee;
  padding-top: 180px;
  padding-bottom: 80px;
}
@media screen and (max-width: 550px) {
  .layout-merit {
    padding-top: 100px;
  }
}
.layout-merit::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  background-image: url(../img/top/merit-top-bg.png);
  background-size: 100% 100%;
}
@media screen and (max-width: 550px) {
  .layout-merit::before {
    height: 50px;
  }
}
.layout-about {
  padding: 80px 0;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .layout-about h2 {
    margin-bottom: 20px;
  }
}
.layout-about p {
  text-align: left;
}
.layout-service {
  background-image: url(../img/top/service-bg.png);
  background-repeat: repeat;
  padding: 80px 0;
}
@media screen and (max-width: 550px) {
  .layout-service h2 {
    margin-bottom: 30px;
  }
}
.layout-flow {
  padding: 80px 0;
}
.layout-faq {
  background-color: #ddecee;
  padding: 80px 0;
}
@media screen and (max-width: 550px) {
  .layout-faq h2 {
    margin-bottom: 30px;
  }
}
.layout-attention {
  padding-top: 80px;
}
@media screen and (max-width: 550px) {
  .layout-attention h2 {
    margin-bottom: 20px;
  }
}
.layout-contact {
  padding: 90px 0;
  background-image: url(../img/top/contact-bg.png);
  background-size: cover;
}
.layout-contact .wrap {
  padding: 50px 40px 85px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.025);
}
@media screen and (max-width: 550px) {
  .layout-contact .wrap {
    padding: 40px 20px 40px;
  }
  .layout-contact .wrap h2 {
    margin-bottom: 20px;
  }
}
.layout-footer {
  padding: 30px 25px;
}
@media screen and (max-width: 550px) {
  .layout-footer {
    padding: 30px 15px;
  }
}
.layout-footer .flex {
  justify-content: space-between;
  padding-bottom: 80px;
}
@media screen and (max-width: 550px) {
  .layout-footer .flex {
    flex-direction: column;
    padding-bottom: 40px;
  }
}
.layout-footer h2 {
  text-align: left;
}
@media screen and (max-width: 550px) {
  .layout-footer h2 {
    margin-bottom: 20px;
  }
  .layout-footer h2 img {
    max-width: 150px;
  }
}
.layout-footer a {
  color: #27abb8;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  display: inline-block;
  margin-bottom: 1em;
}
@media screen and (max-width: 550px) {
  .layout-footer small {
    font-size: 13px;
  }
}

/* BEM ページ共通-------------------------------------------------------------------------- */
.b-header__name {
  padding-top: 12px;
}
@media screen and (max-width: 550px) {
  .b-header__name {
    padding-top: 0;
  }
}
.b-header__name img {
  transition: all 0.3s;
}
@media screen and (max-width: 550px) {
  .b-header__name img {
    max-height: 35px;
  }
}
.b-header__name span {
  font-size: 0.8125rem;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 550px) {
  .b-header__name span {
    font-size: 0.6875rem;
  }
}
.b-header__btn {
  width: 110px;
  height: 110px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .b-header__btn {
    height: 60px;
    width: 60px;
  }
}
.b-header__btn span {
  display: inline-block;
  width: 50px;
  height: 2px;
  background-color: #2a424b;
  position: absolute;
  left: 30px;
  transition: all 0.3s;
}
@media screen and (max-width: 550px) {
  .b-header__btn span {
    width: 40px;
    left: 10px;
  }
}
.b-header__btn span:first-child {
  top: 38px;
  transform: rotate(0);
}
@media screen and (max-width: 550px) {
  .b-header__btn span:first-child {
    top: 20px;
  }
}
.b-header__btn span:nth-child(2) {
  top: 55px;
}
@media screen and (max-width: 550px) {
  .b-header__btn span:nth-child(2) {
    top: 30px;
  }
}
.b-header__btn span:last-child {
  top: 72px;
  transform: rotate(0);
}
@media screen and (max-width: 550px) {
  .b-header__btn span:last-child {
    top: 40px;
  }
}
.b-header__btn.open span:first-child {
  top: 55px;
  transform: rotate(45deg);
}
@media screen and (max-width: 550px) {
  .b-header__btn.open span:first-child {
    top: 30px;
  }
}
.b-header__btn.open span:nth-child(2) {
  display: none;
}
.b-header__btn.open span:last-child {
  top: 55px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 550px) {
  .b-header__btn.open span:last-child {
    top: 30px;
  }
}
.b-header__gnav {
  width: 50%;
  position: fixed;
  height: calc(100% - 110px);
  top: 110px;
  right: 0;
  background-color: #fff;
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.025);
  transform: translateX(100%);
  transition: all 0.3s;
  z-index: 100;
}
@media screen and (max-width: 550px) {
  .b-header__gnav {
    height: calc(100% - 60px);
    width: 100%;
    top: 60px;
  }
}
.b-header__gnav.open {
  right: 0;
  transform: translateX(0);
}
.b-header__gnav-scroll {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  width: 100%;
  height: 100%;
  padding: 20px;
}
.b-header__gnav-list {
  flex-direction: column;
  align-items: flex-end;
  z-index: 100;
}
.b-header__gnav-list--sp {
  border-top: 1px solid #e6e6e6;
  margin-top: 40px;
  line-height: 2.5;
  margin-bottom: 1em;
  padding-top: 35px;
}

@media screen and (max-width: 1250px) {
  .b-gnav__item {
    width: 100%;
  }
}
.b-gnav__item a {
  line-height: 3;
  margin: 0 20px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1250px) {
  .b-gnav__item a {
    margin: 0 0.75em;
  }
}
@media screen and (max-width: 1250px) {
  .b-gnav__item a {
    line-height: 3;
    margin: 0;
  }
}
.b-gnav__item a::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  background-color: #27abb8;
  transition: all 0.3s ease;
}
.b-gnav__item a:hover, .b-gnav__item a.current {
  color: #000;
}
.b-gnav__item a:hover::after, .b-gnav__item a.current::after {
  transform: scaleX(1);
}

@media screen and (max-width: 1250px) {
  .b-attention-list__item {
    width: 100%;
  }
}
.b-attention-list__item a {
  line-height: 3;
  margin: 0 20px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1250px) {
  .b-attention-list__item a {
    margin: 0 0.75em;
  }
}
@media screen and (max-width: 1250px) {
  .b-attention-list__item a {
    line-height: 3;
    margin: 0;
  }
}
.b-attention-list__item a::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: calc(50% - 12px);
  width: 24px;
  height: 1px;
  transform: scaleX(0);
  background-color: #000;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1250px) {
  .b-attention-list__item a::after {
    bottom: 0;
  }
}
.b-attention-list__item a:hover, .b-attention-list__item a.current {
  color: #000;
}
.b-attention-list__item a:hover::after, .b-attention-list__item a.current::after {
  transform: scaleX(1);
}

.b-fixed-bottom {
  position: fixed;
  right: 0;
  top: 120px;
  background-color: #ef9a32;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border: 2px solid #fff;
  border-right: none;
  font-weight: bold;
  transition: all 0.3s;
}
.b-fixed-bottom:hover {
  border: 2px solid #ef9a32;
  background-color: #fff;
}
.b-fixed-bottom:hover p {
  color: #ef9a32;
}
@media screen and (max-width: 1250px) {
  .b-fixed-bottom {
    top: calc(100% - 115px);
    width: 100%;
    border: none;
    border-top: 2px solid #fff;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
  }
}
@media screen and (max-width: 550px) {
  .b-fixed-bottom {
    top: calc(100% - 60px);
  }
}
.b-fixed-bottom a {
  display: block;
  margin-bottom: 0;
  text-decoration: none;
  padding: 25px;
}
@media screen and (max-width: 1250px) {
  .b-fixed-bottom a {
    padding: 0;
  }
}
.b-fixed-bottom p {
  writing-mode: vertical-lr;
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  .b-fixed-bottom p {
    writing-mode: horizontal-tb;
    line-height: 115px;
    text-align: center;
  }
}
@media screen and (max-width: 550px) {
  .b-fixed-bottom p {
    line-height: 60px;
    font-size: 1rem;
  }
}
.b-fixed-bottom img {
  position: absolute;
  top: 25px;
  left: 25px;
  transform: translateX(-100%);
}
@media screen and (max-width: 1250px) {
  .b-fixed-bottom img {
    top: -40px;
    left: calc(100% - 25px);
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 828px) {
  .b-fixed-bottom img {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 550px) {
  .b-fixed-bottom img {
    top: -35px;
    width: 60px;
    height: 60px;
    left: calc(100% - 10px);
  }
}

/* BEM topページ-------------------------------------------------------------------------- */
.campaign01 {
  position: relative;
}
.campaign01::before {
  position: absolute;
  content: "";
  top: -45px;
  left: -15px;
  width: 115px;
  height: 115px;
  background-size: contain;
  background-image: url("../img/top/campaign01-number.png");
}
@media screen and (max-width: 550px) {
  .campaign01::before {
    height: 100px;
    width: 100px;
  }
}

.campaign01 img {
  width: 100%;
}

.campaign02 {
  position: relative;
}
.campaign02::before {
  position: absolute;
  content: "";
  top: -45px;
  left: -15px;
  width: 115px;
  height: 115px;
  background-size: contain;
  background-image: url("../img/top/campaign02-number.png");
}
@media screen and (max-width: 550px) {
  .campaign02::before {
    height: 100px;
    width: 100px;
  }
}
.campaign02 img {
  width: 100%;
}

.campaign03 {
  position: relative;
}
.campaign03::before {
  position: absolute;
  content: "";
  top: -45px;
  left: -15px;
  width: 110px;
  height: 110px;
  background-size: contain;
  background-image: url("../img/top/campaign03-number.png");
}
@media screen and (max-width: 550px) {
  .campaign03::before {
    height: 70px;
    width: 70px;
  }
}
.campaign03 img {
  width: 100%;
}

.campaign04 {
  position: relative;
}
.campaign04::before {
  position: absolute;
  content: "";
  top: -45px;
  left: -15px;
  width: 110px;
  height: 110px;
  background-size: contain;
  background-image: url("../img/top/campaign04-number.png");
}
@media screen and (max-width: 550px) {
  .campaign04::before {
    height: 70px;
    width: 70px;
  }
}
.campaign04 img {
  width: 100%;
}

@media screen and (max-width: 550px) {
  .b-campaign-list {
    margin-bottom: 40px;
  }
}
.b-campaign-list dt {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  .b-campaign-list dt {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.b-campaign-list dt::before {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #27abb8;
  margin-right: 0.25em;
}
.b-campaign-list dd {
  line-height: 1.8;
}

.b-campaign-link {
  display: block;
  text-align: center;
  line-height: 130px;
  border-radius: 75px;
  background-color: #27abb8;
  border: 2px solid #27abb8;
  font-weight: bold;
  color: #fff;
  transform: all 0.3s;
}
.b-campaign-link:hover {
  background-color: #fff;
  color: #27abb8;
}
@media screen and (max-width: 550px) {
  .b-campaign-link {
    line-height: 80px;
    border-radius: 40px;
  }
}

.b-onayami-list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 1250px) {
  .b-onayami-list {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 550px) {
  .b-onayami-list {
    margin-bottom: 30px;
  }
}
.b-onayami-list li {
  background: #ddecee;
  padding: 26px 38px;
  padding-left: 78px;
  margin-bottom: 20px;
  border-radius: 10px;
  position: relative;
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1250px) {
  .b-onayami-list li {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .b-onayami-list li {
    padding: 15px;
    padding-left: 35px;
  }
}
.b-onayami-list li::before {
  content: "";
  width: 26px;
  height: 26px;
  background-image: url(../img/top/check.png);
  background-size: cover;
  display: inline-block;
  position: absolute;
  left: 38px;
  top: 30px;
}
@media screen and (max-width: 550px) {
  .b-onayami-list li::before {
    left: 10px;
    width: 20px;
    height: 20px;
    top: 20px;
  }
}

.b-merit-list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1250px) {
  .b-merit-list {
    flex-direction: column;
    gap: 0;
  }
}
.b-merit-list__item {
  background-color: #fff;
  padding: 200px 40px 60px;
  border-radius: 20px;
  margin-bottom: 160px;
  text-align: center;
  position: relative;
  width: calc(33.3% - 15px);
}
@media screen and (max-width: 1250px) {
  .b-merit-list__item {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .b-merit-list__item {
    padding: 120px 15px 30px;
  }
}
.b-merit-list__item:first-child h3::before {
  content: url(../img/top/01.png);
  left: 5px;
}
@media screen and (max-width: 1250px) {
  .b-merit-list__item:first-child h3::before {
    left: 75px;
  }
}
@media screen and (max-width: 550px) {
  .b-merit-list__item:first-child h3::before {
    left: 5px;
  }
}
.b-merit-list__item:nth-child(2) {
  padding-top: 245px;
}
@media screen and (max-width: 550px) {
  .b-merit-list__item:nth-child(2) {
    padding-top: 120px;
  }
}
.b-merit-list__item:nth-child(2) img {
  top: -100px;
}
.b-merit-list__item:nth-child(2) h3::before {
  content: url(../img/top/02.png);
  left: 5px;
}
@media screen and (max-width: 1250px) {
  .b-merit-list__item:nth-child(2) h3::before {
    left: 90px;
  }
}
@media screen and (max-width: 550px) {
  .b-merit-list__item:nth-child(2) h3::before {
    left: 5px;
  }
}
.b-merit-list__item:last-child {
  margin-bottom: 0;
}
.b-merit-list__item:last-child h3::before {
  content: url(../img/top/03.png);
  top: 0.25em;
  left: 5px;
}
@media screen and (max-width: 1250px) {
  .b-merit-list__item:last-child h3::before {
    left: 100px;
  }
}
@media screen and (max-width: 550px) {
  .b-merit-list__item:last-child h3::before {
    left: 5px;
  }
}
@media screen and (max-width: 550px) {
  .b-merit-list__item:last-child img {
    max-width: 150px;
  }
}
.b-merit-list__item img {
  position: absolute;
  top: -85px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 550px) {
  .b-merit-list__item img {
    max-width: 220px;
  }
}
.b-merit-list__item h3 {
  font-size: 24px;
  position: relative;
  margin-bottom: 50px;
  z-index: 2;
}
@media screen and (max-width: 1250px) {
  .b-merit-list__item h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 550px) {
  .b-merit-list__item h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.b-merit-list__item h3::before {
  position: absolute;
  top: -0.25em;
  z-index: -1;
}
.b-merit-list__item p {
  text-align: left;
}

.b-service-list__item {
  margin-bottom: 40px;
}
@media screen and (max-width: 550px) {
  .b-service-list__item {
    margin-bottom: 30px;
  }
}
.b-service-list__item h3 {
  background-color: #fff;
  padding: 40px;
  padding-right: 105px;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .b-service-list__item h3 {
    padding: 15px;
    padding-right: 40px;
    font-size: 16px;
  }
}
.b-service-list__item h3::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  top: calc(50% - 7px);
  right: 40px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 550px) {
  .b-service-list__item h3::after {
    width: 15px;
    height: 15px;
    right: 15px;
    top: calc(50% - 10px);
  }
}
.b-service-list__item h3.close::after {
  transform: rotate(135deg);
}
.b-service-list__item section {
  padding-top: 40px;
  display: none;
}
@media screen and (max-width: 550px) {
  .b-service-list__item section {
    padding-top: 20px;
  }
}
.b-service-list__item section p,
.b-service-list__item section li,
.b-service-list__item section table {
  margin-bottom: 1em;
}
@media screen and (max-width: 550px) {
  .b-service-list__item section p,
.b-service-list__item section li,
.b-service-list__item section table {
    font-size: 15px;
  }
}
.b-service-list__item section a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.b-service-list__item section th {
  width: 50%;
  background-color: #27abb8;
  color: #fff;
  text-align: center;
  border: #ddecee 1px solid;
}
.b-service-list__item section td {
  background-color: #fff;
  border: #ddecee 1px solid;
  text-align: center;
  padding: 0.5em;
}

.b-flow-list__item {
  border: #27abb8 4px solid;
  padding: 40px;
  border-radius: 19px;
  margin-bottom: 80px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1250px) {
  .b-flow-list__item {
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  .b-flow-list__item {
    border: #27abb8 3px solid;
    padding: 20px;
    border-radius: 10px;
  }
}
.b-flow-list__item::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  border-left: 4px solid #27abb8;
  border-bottom: 4px solid #27abb8;
  position: absolute;
  left: calc(50% - 22.5px);
  bottom: -47px;
  transform: rotate(-45deg);
}
.b-flow-list__item:last-child {
  margin-bottom: 0;
}
.b-flow-list__item:last-child::after {
  display: none;
}
.b-flow-list__item h3 {
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 28px;
  margin-bottom: 1em;
  min-width: 400px;
}
@media screen and (max-width: 1250px) {
  .b-flow-list__item h3 {
    min-width: 0;
  }
}
@media screen and (max-width: 550px) {
  .b-flow-list__item h3 {
    font-size: 18px;
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 550px) {
  .b-flow-list__item h3 img {
    max-width: 75px;
  }
}
.b-flow-list__item a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.b-faq-list__item {
  margin-bottom: 40px;
  background-color: #fff;
  border-radius: 19px;
}
@media screen and (max-width: 550px) {
  .b-faq-list__item {
    border-radius: 10px;
  }
}
.b-faq-list__item h3 {
  padding-top: 38px;
  padding-bottom: 38px;
  padding-left: 90px;
  padding-right: 105px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .b-faq-list__item h3 {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 40px;
    padding-right: 40px;
    font-size: 16px;
  }
}
.b-faq-list__item h3::before {
  content: "";
  width: 31px;
  height: 37px;
  background-image: url(../img/top/question.png);
  background-size: contain;
  position: absolute;
  top: 40px;
  left: 40px;
}
@media screen and (max-width: 550px) {
  .b-faq-list__item h3::before {
    left: 10px;
    width: 21.7px;
    height: 25.9px;
    top: 15px;
  }
}
.b-faq-list__item h3::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  position: absolute;
  top: calc(50% - 7px);
  right: 40px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 550px) {
  .b-faq-list__item h3::after {
    width: 15px;
    height: 15px;
    right: 15px;
  }
}
.b-faq-list__item h3.close::after {
  transform: rotate(135deg);
}
.b-faq-list__item section {
  display: none;
  border-top: 1px dotted #000;
  padding: 50px 40px 100px 95px;
  position: relative;
}
@media screen and (max-width: 550px) {
  .b-faq-list__item section {
    padding: 20px 20px 20px 40px;
  }
}
.b-faq-list__item section::before {
  content: "";
  width: 29px;
  height: 37px;
  background-image: url(../img/top/answer.png);
  background-size: contain;
  position: absolute;
  top: 50px;
  left: 40px;
}
@media screen and (max-width: 550px) {
  .b-faq-list__item section::before {
    left: 10px;
    width: 20.3px;
    height: 25.9px;
    top: 20px;
  }
}
.b-faq-list__item section p {
  margin-bottom: 1em;
}
@media screen and (max-width: 550px) {
  .b-faq-list__item section p {
    font-size: 15px;
  }
}
.b-faq-list__item section a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.b-attention-list {
  margin-bottom: 80px;
}
@media screen and (max-width: 550px) {
  .b-attention-list {
    margin-bottom: 60px;
  }
}
.b-attention-list__item {
  margin-bottom: 40px;
  background-color: #fff;
}
@media screen and (max-width: 550px) {
  .b-attention-list__item {
    margin-bottom: 25px;
  }
}
.b-attention-list__item h3 {
  padding: 40px;
  padding-right: 105px;
  border-radius: 19px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  background-color: #27abb8;
  color: #fff;
}
@media screen and (max-width: 550px) {
  .b-attention-list__item h3 {
    padding: 15px;
    padding-right: 40px;
    font-size: 16px;
    border-radius: 10px;
  }
}
.b-attention-list__item h3::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: calc(50% - 7px);
  right: 40px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 550px) {
  .b-attention-list__item h3::after {
    width: 15px;
    height: 15px;
    right: 15px;
    top: calc(50% - 10px);
  }
}
.b-attention-list__item h3.close {
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media screen and (max-width: 550px) {
  .b-attention-list__item h3.close {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}
.b-attention-list__item h3.close::after {
  transform: rotate(135deg);
}
.b-attention-list__item section {
  display: none;
  padding: 30px 40px 50px;
  position: relative;
  border-bottom-left-radius: 19px;
  border-bottom-right-radius: 19px;
  border: 2px solid #27abb8;
}
@media screen and (max-width: 550px) {
  .b-attention-list__item section {
    padding: 20px;
    border-bottom-left-radius: 10x;
    border-bottom-right-radius: 10px;
  }
}
.b-attention-list__item section p {
  margin-bottom: 1em;
}
.b-attention-list__item section a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
/*# sourceMappingURL=style.css.map */

/* 230810追加 */
.w100{
  width: 100%;
}
/* 230821 */
.underline{
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* 240809 */
.layout-banner {
  margin-bottom: 50px;
}

.layout-banner .wrap {
  background: #ddecee;
  border-radius: 15px;
  padding: 50px;
}

.layout-banner .wrap a {
  position: relative;
  display: block;
  max-width: 480px;
  width: 100%;
  border-radius: 60px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #27abb8;
  text-align: center;
  padding: 20px 45px;
  color: #27abb8;
  font-weight: bold;
  font-size: 2rem;
}

.layout-banner .wrap a:hover {
  background: #27abb8;
  color: #fff;
}

.layout-banner .wrap a:after {
  position: absolute;
  content: '>';
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #27abb8;
}

.layout-banner .wrap a:hover:after {
  color: #fff;
}

.banner-area{
  margin: 20px 15px;
  text-align: center;
}

.banner-area:hover{
  opacity: 0.6;
  transition: 0.5s;
}

@media screen and (max-width: 768px) {
  .banner-area .pc{
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .banner-area .sp{
    display: none;
  }
}

.campaign_text{
  margin-bottom: 60px;
}
@media screen and (min-width: 769px) {
  .campaign_text{
   text-align: center;
  }
}

@media screen and (min-width: 1250px){
  .campaign01::before{
    left: 234px;
    top: -62px;
    width: 150px;
    height: 150px;
  }
  .campaign02::before{
    left: 234px;
    top: -62px;
    width: 150px;
    height: 150px;
  }
  .campaign03::before{
    left: 234px;
    top: -62px;
  }
  .campaign04::before{
    left: 234px;
    top: -62px;
  }
}