@charset "UTF-8";
/* アニメーションベンダープレフィックス込み指定 */
body {
  color: #333333;
  background: #fefefe;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: normal;
  position: relative;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #047dd8;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

#wrapper {
  overflow: hidden;
}

em {
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}

.img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-round {
  border-radius: 0 0 20px 0;
}

h2,
h3,
h4 {
  line-height: 1.4;
}

/* animation
----------------------------------*/
@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  align-items: center;
  background: #fdfdfd;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #048bf1;
  border-radius: 50%;
  border-right: 1px solid rgba(4, 139, 241, 0.2);
  border-top: 1px solid rgba(4, 139, 241, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}
.loader.off {
  display: none;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* page-top
----------------------------------*/
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 15px;
  bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.3s;
  color: #fff;
  background: #048bf1;
  z-index: 250;
  font-size: 1.4rem;
  opacity: 0;
}
@media screen and (max-width: 576px) {
  .pagetop {
    bottom: 15px;
  }
}

.pagetop:hover {
  color: #fff;
  background: #00bbd5;
}

/* mv
----------------------------------*/
#slide-wrap {
  position: relative;
}

#mv {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
}
#mv .mv_bg-img {
  -o-object-position: 10% bottom;
     object-position: 10% bottom;
}
@media screen and (max-width: 1280px) {
  #mv {
    aspect-ratio: 1.8/1;
  }
}
@media screen and (max-width: 1024px) {
  #mv {
    aspect-ratio: 1.6/1;
  }
}
@media screen and (max-width: 768px) {
  #mv {
    aspect-ratio: 1.4/1;
  }
}
@media screen and (max-width: 576px) {
  #mv {
    aspect-ratio: 1/1.6;
  }
  #mv .mv_main-img {
    -o-object-position: 10% bottom;
       object-position: 10% bottom;
  }
}

#catch-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 20;
}
@media screen and (max-width: 576px) {
  #catch-wrap {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-top: 20px;
  }
}

#catch {
  opacity: 0;
  transform: translateX(-20px);
  margin-right: 5%;
  z-index: 20;
}
#catch .catch_lead {
  position: relative;
  color: #fff;
}
#catch .catch_lead .catch_lead-inner {
  display: block;
  position: relative;
  line-height: 1.2;
  font-size: 7rem;
  font-weight: 600;
  transform: scaleX(0);
  animation: 1s cubic-bezier(0.25, 0.1, 0.25, 1) 1s forwards text-in normal;
}
#catch .catch_lead .catch_lead-inner .big {
  font-size: 4rem;
}
@media screen and (max-width: 1024px) {
  #catch .catch_lead .catch_lead-inner {
    font-size: 2.8em;
  }
  #catch .catch_lead .catch_lead-inner .big {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #catch .catch_lead {
    padding-left: 10px;
  }
  #catch .catch_lead .catch_lead-inner {
    font-size: 2.4em;
  }
  #catch .catch_lead .catch_lead-inner .big {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) {
  #catch .catch_lead {
    padding-left: 20px;
  }
  #catch .catch_lead .catch_lead-inner {
    font-size: 2.2em;
  }
}
#catch .catch_sub {
  position: relative;
  margin-top: 30px;
}
#catch .catch_sub .catch_sub-inner {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
#catch .catch_sub .catch_sub-inner:first-of-type {
  margin-bottom: 10px;
}
#catch .catch_sub .bg {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #00bbd5;
  z-index: 4;
  display: block;
  transform: scaleX(0);
  animation: 0.9s cubic-bezier(0.18, 0.06, 0.23, 1) 0.7s forwards bg-in normal;
  z-index: -1;
}
#catch .catch_sub .text {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  animation: 0.8s cubic-bezier(0.18, 0.06, 0.23, 1) 0.8s forwards text-in;
  padding: 4px 10px;
  font-size: 4rem;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 1280px) {
  #catch .catch_sub .text {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #catch .catch_sub {
    padding-left: 10px;
  }
  #catch .catch_sub .text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 576px) {
  #catch .catch_sub {
    padding-left: 20px;
    margin-top: 10px;
  }
  #catch .catch_sub .text {
    font-size: 1.8rem;
  }
}
#catch.on {
  opacity: 1;
  transform: translateX(0);
}

@keyframes bg-in {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  40% {
    transform-origin: left;
    transform: scaleX(0);
  }
  48% {
    transform-origin: left;
    transform: scaleX(1);
  }
  48.1%, 100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}
@keyframes text-in {
  0%, 60% {
    transform-origin: left;
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
#mv_main-img {
  display: block;
  max-width: 900px;
}
@media screen and (max-width: 1280px) {
  #mv_main-img {
    width: 55%;
  }
}
@media screen and (max-width: 576px) {
  #mv_main-img {
    width: 95%;
    margin: 0 auto 8px;
  }
}

#mv_deco {
  position: absolute;
  left: 0%;
  bottom: -9px;
  width: 31%;
  z-index: 2;
}
#mv_deco img {
  width: 100%;
}
@media screen and (max-width: 576px) {
  #mv_deco {
    width: 40%;
  }
}

@keyframes slideIn {
  0%, 60% {
    transform-origin: left;
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.mv_wave {
  position: relative;
  margin-top: -5.5%;
  z-index: 10;
}
.mv_wave .mv_wave-img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv_wave {
    margin-top: -6.5%;
    width: 120%;
    margin-left: -10%;
  }
}

/* footer
----------------------------------*/
#l-footer {
  position: relative;
}
#l-footer .inner {
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  z-index: 2;
  padding: 80px 20px 80px 20px;
}
@media screen and (max-width: 768px) {
  #l-footer .inner {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  #l-footer .inner {
    padding: 30px 20px 30px;
  }
}

.top-footer .footer__cbt {
  display: none;
}

.copyright {
  padding: 20px 0;
  font-size: 1.4rem;
  position: relative;
  z-index: 2;
  color: #fff;
  border-bottom: 0;
  background: #00bbd5;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 12px;
  }
}



/* contents
----------------------------------*/
.single {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .single {
    padding: 80px 10px;
  }
}
@media screen and (max-width: 576px) {
  .single {
    padding: 40px 10px;
  }
}

.single02 {
  margin: 0 5%;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .single02 {
    padding: 80px 10px;
  }
}
@media screen and (max-width: 576px) {
  .single02 {
    padding: 40px 10px;
  }
}

.margin-top {
  margin-top: -100px;
}
@media screen and (max-width: 576px) {
  .margin-top {
    margin-bottom: -60px;
  }
}

.margin-bottom {
  margin-bottom: -100px;
}
@media screen and (max-width: 576px) {
  .margin-bottom {
    margin-bottom: -30px;
  }
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

.box1 {
  position: relative;
  z-index: 4;
  margin-inline: auto;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 18px;
  padding: 25px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .box1 {
    padding: 20px 15px;
  }
}
.box1.type1 {
  margin-top: -40px;
  max-width: 700px;
}
@media screen and (max-width: 576px) {
  .box1.type1 {
    max-width: 90%;
  }
}

.box2 {
  background: white;
  padding: 35px 40px;
  position: relative;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 18px;
}
.box2.shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 18px 50px -10px;
}
.box2.transparent {
  background: transparent;
}
.box2.type_negative {
  padding-top: 60px;
}
@media screen and (max-width: 576px) {
  .box2 {
    padding: 20px 15px;
    border-radius: 0 0 20px 0;
  }
}

.box3all {
  display: flex;
  gap: 1em;
}
@media screen and (max-width: 576px) {
  .box3all {
    display: block;
  }
}

.box3 {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #F3F6F5;
  margin-top: 20px;
}

.box3 .box-title {
  font-size: 1.8rem;
  background: #048bf1;
  padding: 15px;
  text-align: center;
  color: #FFF;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .box3 .box-title {
    font-size: 1.6rem;
    padding: 10px;
  }
}

.box3 p {
  flex-grow: 1;
  padding: 30px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .box3 p {
    padding: 15px;
  }
}

.sentence p + p {
  margin-top: 20px;
}

#main {
  float: left;
  width: 76%;
}
#main .mbox {
  min-height: 300px;
}
@media screen and (max-width: 768px) {
  #main .mbox {
    min-height: initial;
  }
}
@media screen and (max-width: 768px) {
  #main {
    float: none;
    width: 100%;
  }
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  #side {
    float: none;
    width: 100%;
    position: static;
    margin-top: 40px;
  }
}

/* Contactform
----------------------------------*/

.form-container {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  max-width: 800px;
}

@media screen and (max-width: 768px) {
  .bg02 {
    padding: 5%;
  }
}
@media screen and (max-width: 576px) {
  .bg02 {
    padding: 5%;
  }
}

.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.required:after {
  content: ' ※';
  color: red;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}
textarea {
  height: 100px;
  resize: vertical;
}
.radio-group, .checkbox-group {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}
.radio-item, .checkbox-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dependent-field {
  margin-top: 10px;
  margin-left: 20px;
  display: none;
}
button {
  background: linear-gradient(90deg, #00bbd5, #048bf1);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  margin-top: 20px;
}
button:hover {
  background: linear-gradient(90deg, #00a9c1, #037ad8);
}
.error-message {
  color: red;
  font-size: 14px;
  margin-top: 5px;
  display: none;
}

/* column
----------------------------------*/
.list2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 4%;
}
@media screen and (max-width: 576px) {
  .list2 {
    grid-template-columns: 1fr;
  }
}
.list2.type1 > li,
.list2.type1 .child {
  background: #fefefe;
  padding: 15px;
}
.list2 > li,
.list2 .child {
  position: relative;
}
.list2 > li.child-100,
.list2 .child.child-100 {
  grid-column: 2fr;
}

.list3 {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .list3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 3%;
  }
}
.list3.type1 li,
.list3.type1 .child {
  background: #fefefe;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.6;
  font-size: 1.1em;
}
@media screen and (max-width: 576px) {
  .list3.type1 li,
  .list3.type1 .child {
    padding: 20px 10px 10px;
  }
}
.list3 li {
  position: relative;
}
@media screen and (max-width: 576px) {
  .list3 {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    gap: 25px 0;
  }
}

.list4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 2%;
}
@media screen and (max-width: 576px) {
  .list4 {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 576px) {
  .list4.sp-column2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* item-contents
----------------------------------*/
.main-item {
  position: relative;
}
.main-item:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  height: calc(100% - 100px);
  background-color: #F3F6F5;
  border-radius: 80px 0 80px 0;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .main-item:before {
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .main-item:before {
    border-radius: 40px 0 40px 0;
  }
}
@media screen and (max-width: 576px) {
  .main-item:before {
    height: calc(100% - 60px);
    border-radius: 40px 0 40px 0;
  }
}
.main-item .inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  padding: 40px 20px;
}
@media screen and (max-width: 768px) {
  .main-item .inner {
    padding: 20px;
  }
}
.main-item .inner .left {
  position: absolute;
  left: 20px;
  top: 80px;
  line-height: 1;
}
.main-item .inner .left .main-item-title {
  font-size: 4rem;
  margin-bottom: 30px;
  color: #00bbd5;
}
.main-item .inner .left .main-item-lead span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 20px;
  color: #ffffff;
  background-image: linear-gradient(90deg, #00bbd5, #048bf1);
  font-size: 2.6rem;
}
.main-item .inner .left .main-item-lead span:not(:last-of-type) {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .main-item .inner .left {
    left: 40px;
  }
  .main-item .inner .left .main-item-title {
    font-size: 3rem;
  }
  .main-item .inner .left .main-item-lead span {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .main-item .inner .left {
    top: 40px;
  }
  .main-item .inner .left .main-item-title {
    font-size: 2.2rem;
  }
  .main-item .inner .left .main-item-lead span {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 576px) {
  .main-item .inner .left {
    position: relative;
    top: auto;
    left: 20px;
  }
  .main-item .inner .left .main-item-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  .main-item .inner .left .main-item-lead span {
    font-size: 1.4rem;
  }
}
.main-item .inner .right {
  width: 40%;
  margin-right: -5%;
  margin-left: auto;
}
.main-item .inner .right img {
  text-align: right;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .main-item .inner .right {
    width: 105%;
    margin-top: -20px;
  }
  .main-item .inner .right img {
    display: block;
    width: 60%;
    margin: 50px auto 0;
  }
}

.item {
  position: relative;
}
.item .inner {
  position: relative;
  max-width: 1100px;
  margin-inline: auto;
  padding: 90px 0 20px;
  z-index: 2;
}
@media screen and (max-width: 576px) {
  .item .inner {
    padding: 45px 15px;
  }
}
.item p {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .item p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .item p {
    font-size: 1.4rem;
  }
}

.item-title {
  position: relative;
  margin-bottom: 20px;
  line-height: 1.6;
}
.item-title span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.item-title .main {
  font-size: 4rem;
  text-align: center;
  color: #00bbd5;
}
@media screen and (max-width: 1024px) {
  .item-title .main {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .item-title .main {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 576px) {
  .item-title .main {
    font-size: 1.8rem;
  }
}

.first-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.first-item img {
  width: 40%;
  height: auto;
  border-radius: 10px;
}

.text {
  width: 60%;
  padding: 20px 40px 20px;
}
@media screen and (max-width: 576px) {
  .text {
    padding: 10px;
  }
}

.first-item:nth-of-type(2) {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0px;
  flex-direction: row-reverse;
}

.first-item:nth-of-type(2) img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .first-item:nth-of-type(2) img {
    width: 50%;
    display: block;
    margin: 0 auto;
  }
}

.first-item:nth-of-type(2) .text {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .first-item:nth-of-type(2) .text {
    width: 100%;
  }
}

.first-item-title {
  position: relative;
  padding: 1rem 1rem 1rem 1.5rem;
  border: 3px solid #048bf1;
  font-weight: bold;
  font-size: 2rem;
  background-color: #048bf1;
  color: #ffffff;
  margin-bottom: 20px;
  border-radius: 20px;
  text-align: center;
}

.first-item-title:before,
.first-item-title:after {
  position: absolute;
  top: 100%;
  left: 30px;
  height: 0;
  width: 0;
  border: solid transparent;
  content: "";
}

.first-item-title:before {
  margin-left: 14px;
  border-color: transparent;
  border-top-color: #048bf1;
  border-width: 12px;
}

.first-item-title:after {
  margin-left: 14px;
  border-color: transparent;
  border-top-color: #048bf1;
  border-width: 8px;
}

@media screen and (max-width: 768px) {
  .first-item-title {
    font-size: 1.8rem;
  }
  .first-item {
    flex-direction: column !important;
    text-align: center;
  }
  .first-item img {
    width: 50%;
    display: block;
    margin: 0 auto;
  }
  .first-item .text {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .first-item {
    margin-bottom: 0%;
  }
  .first-item-title {
    padding: 10px;
    font-size: 1.6rem;
  }
}
.arrange {
  display: inline-block;
  margin: 70px 0 0 0;
}
@media screen and (max-width: 768px) {
  .arrange {
    margin: 0px 0 0 0;
  }
}

.second-item {
  margin-top: 60px;
  gap: 50px 2%;
}
.second-item > li {
  position: relative;
  margin-inline: auto;
  border-radius: 40px;
}
.second-item > li .num {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 60px;
  height: 60px;
  margin: -45px auto 10px;
  background: #048bf1;
  border-radius: 50%;
  color: #048bf1;
  font-weight: 600;
  font-size: 3rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .second-item > li .num {
    gap: 25px 2%;
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 576px) {
  .second-item > li .num {
    margin-top: -35px;
  }
}
.second-item > li .lead {
  margin-bottom: 1em;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
.second-item > li .lead .small {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-bottom: 1px solid #048bf1;
  font-size: 2rem;
  color: #048bf1;
}
@media screen and (max-width: 768px) {
  .second-item > li .lead .small {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .second-item > li .lead .small {
    font-size: 1.4rem;
  }
}
.second-item > li .txt {
  letter-spacing: 0;
}

.size {
  width: 150px;
}
@media screen and (max-width: 576px) {
  .size {
    width: 100px;
  }
}

/* title
----------------------------------*/
.mtitle {
  margin: 0 auto 30px;
  text-align: center;
  position: relative;
  z-index: 3;
}
.mtitle:before {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  content: attr(data-title);
  font-size: 3.8rem;
  margin-inline: auto;
  color: transparent;
  background-image: linear-gradient(90deg, #00bbd5, #048bf1);
  -webkit-background-clip: text;
  letter-spacing: 0;
  white-space: nowrap;
}
.mtitle .ja {
  font-size: 2.4rem;
  color: #333333;
  display: block;
}
.mtitle .img {
  display: block;
  width: 140px;
  margin: 8px 0;
}
.mtitle.white {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white:before {
  color: #fff;
}
.mtitle.white span {
  color: #fff;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.mtitle.white span:after {
  background-color: #eee;
}
.mtitle.mtitle_left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}
.mtitle.mtitle_left:before {
  margin-left: 0;
}
.mtitle.mtitle_right {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .mtitle {
    margin: 0 auto 20px;
    text-align: center;
  }
  .mtitle:before {
    font-size: 3rem;
    white-space: nowrap;
  }
  .mtitle .ja {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 576px) {
  .mtitle {
    text-align: center;
  }
  .mtitle:before {
    font-size: 2.2rem;
    white-space: nowrap;
  }
  .mtitle .ja {
    font-size: 1.4rem;
  }
}

.mtitle2 {
  position: relative;
  margin-bottom: 20px;
  padding: 1rem 0;
  border-bottom: 1px solid;
  color: #048bf1;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mtitle2 {
    font-size: 1.6rem;
  }
}

/* btn
----------------------------------*/
.btn-fixed {
  position: fixed;
  right: 0;
  top: 180px;
  z-index: 60;
}
@media screen and (min-width: 768px) {
  .btn-fixed {
    width: 63px;
  }
}
@media screen and (max-width: 1024px) {
  .btn-fixed {
    right: 10px;
  }
}
.btn-fixed a {
  position: relative;
  display: block;
  padding: 15px 10px 15px 0;
  z-index: 2;
}
.btn-fixed a:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #24a90f;
  transform: translateX(10px);
  -webkit-clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
          clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
}
.btn-fixed a span {
  display: block;
  position: relative;
  padding: 25px 12px;
  background-image: linear-gradient(#9de042, #2ec214);
  -webkit-clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 93%);
          clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 93%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(73, 45, 24, 0.3);
}
@media screen and (max-width: 768px) {
  .btn-fixed a span {
    font-size: 1.6rem;
  }
}
.btn-fixed a span:before {
  content: "";
  margin-bottom: 8px;
  color: #fff;
}
.btn-fixed a:hover span {
  transform: translateX(5px);
}
@media screen and (max-width: 1024px) {
  .btn-fixed {
    top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .btn-fixed span {
    font-size: 1.6rem;
  }
}

.btn-fixed02{
  position: fixed;
  right: 0;
  top: 425px;
  z-index: 60;
}
@media screen and (min-width: 768px) {
  .btn-fixed02 {
    width: 63px;
  }
}
@media screen and (max-width: 1024px) {
  .btn-fixed02 {
    right: 10px;
  }
}
.btn-fixed02 a {
  position: relative;
  display: block;
  padding: 15px 10px 15px 0;
  z-index: 2;
}
.btn-fixed02 a:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #048bf1;
  transform: translateX(10px);
  -webkit-clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
          clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 92%);
}
.btn-fixed02 a span {
  display: block;
  position: relative;
  padding: 25px 12px;
  background-image: linear-gradient(#00bbd5, #048bf1);
  -webkit-clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 93%);
          clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 93%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-feature-settings: "pkna";
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(73, 45, 24, 0.3);
}
@media screen and (max-width: 768px) {
  .btn-fixed02 a span {
    font-size: 1.6rem;
  }
}
.btn-fixed02 a span:before {
  content: "";
  margin-bottom: 8px;
  color: #fff;
}
.btn-fixed02 a:hover span {
  transform: translateX(5px);
}
@media screen and (max-width: 1024px) {
  .btn-fixed02 {
    top: 340px;
  }
}
@media screen and (max-width: 768px) {
  .btn-fixed02 span {
    font-size: 1.6rem;
  }
}



.btn-cbt-area {
  position: relative;
  margin-top: -50px;
  transform: translateY(50px);
}
.btn-cbt-area .cbt-lead {
  text-align: center;
  margin-bottom: 1em;
}
.btn-cbt-area .cbt-lead span {
  display: block;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
}
@media screen and (max-width: 576px) {
  .btn-cbt-area .cbt-lead span {
    font-size: 1.4rem;
  }
}
.btn-cbt-area .btn-cbt {
  margin-inline: auto;
}

.button01 {
  position: relative;
  z-index: 2;
  transform: translateY(100px);
  max-width: 900px;
  margin-inline: auto;
  gap: 20px 4%;
  bottom: 120px;
}
@media screen and (max-width: 1024px) {
  .button01 {
    transform: translateY(70px);
    bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .button01 {
    bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .button01 {
    bottom: 70px;
  }
}

.btn-cbt {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 450px;
  width: 100%;
  height: 78px;
  transform: translate(-5px, -5px);
  z-index: 3;
}
.btn-cbt:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #E6E6E6;
  -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
          clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
  transform: translate(15px, 12px);
  z-index: -2;
}
.btn-cbt .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
          clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
  z-index: -2;
}
.btn-cbt .icon {
  position: absolute;
  display: flex;
  align-items: center;
  left: 25px;
  top: 0;
  width: 80px;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.btn-cbt .icon span {
  display: block;
  position: relative;
  z-index: 99;
  width: 55px;
}
.btn-cbt .icon span:before {
  position: absolute;
  content: "";
  right: -10%;
  top: 15%;
  width: 80%;
  height: 130%;
  -webkit-clip-path: polygon(0 25%, 80% 0, 100% 100%, 20% 100%);
          clip-path: polygon(0 25%, 80% 0, 100% 100%, 20% 100%);
  mix-blend-mode: multiply;
  transform: rotate(-28deg);
  z-index: 0;
  opacity: 0.7;
}
.btn-cbt .txt {
  display: block;
  position: relative;
  z-index: 4;
  padding: 0 15px 0 60px;
  line-height: 1.4;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  text-shadow: 2px 2px 8px rgba(73, 45, 24, 0.3);
}
@media screen and (max-width: 768px) {
  .btn-cbt .txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 576px) {
  .btn-cbt {
    height: 70px;
    max-width: 90%;
    margin-inline: auto;
  }
  .btn-cbt:before {
    transform: translate(8px, 6px);
  }
  .btn-cbt .icon span {
    width: 40px;
  }
  .btn-cbt .icon span:before {
    top: 12%;
    height: 150%;
  }
  .btn-cbt .txt {
    font-size: 1.4rem;
  }
}
.btn-cbt.btn-instagram .bg {
  background-image: linear-gradient(90deg, #fccb01, #ff6a2c, #c219ab, #7c36f4);
}
.btn-cbt.btn-line .bg {
  background-image: linear-gradient(90deg, #9de042, #2ec214);
}
.btn-cbt:hover {
  transform: translate(0, 0);
}
.btn-cbt:hover:before {
  transform: translate(0, 0);
}

/* bg
----------------------------------*/
.bg00 {
  position: relative;
  padding-top: 40px;
}
.bg00:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/bg00.jpg");
  background-position: top;
  background-size: cover;
}
@media screen and (max-width: 576px) {
  .bg00 {
    padding-top: 20px;
  }
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  background-image: linear-gradient(90deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2)), linear-gradient(0deg, transparent 95%, rgba(204, 204, 204, 0.2) 50%, rgba(204, 204, 204, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg01 {
  background-image: url("../img/bg01.jpg");
  background-position: top;
  background-size: cover;
}

.bg02 {
  background-color: #048bf1;
}

/* tbl
----------------------------------*/
.table01 {
  border-collapse: collapse;
  width: 100%;
}

.table01 th, .table01 td {
  border: 4px solid #fff;
  background-color: #F3F6F5;
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .table01 th, .table01 td {
    padding: 10px;
  }
}

.table01 th {
  background-color: #048bf1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 25%;
  min-width: 4em;
}
@media screen and (max-width: 768px) {
  .table01 th {
    width: 40%;
  }
}

/* list
----------------------------------*/
.list_check {
  max-width: 1000px;
  margin-inline: auto;
}
.list_check.type1 {
  display: flex;
  flex-wrap: wrap;
}
.list_check.type1 li {
  background: #048bf1;
  padding: 12px 8px;
  width: 31%;
  color: #fff;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .list_check.type1 li {
    width: 95%;
    margin: 0 auto 5px;
  }
  .list_check.type1 li:nth-child(2n) {
    margin-left: auto;
  }
}
.list_check li {
  padding: 4px;
  padding-left: 30px;
  font-weight: normal;
  position: relative;
  margin-bottom: 5px;
}
.list_check li a {
  color: #048bf1;
  border-bottom: 1px dotted #048bf1;
}
.list_check li:before {
  position: absolute;
  left: 0;
  top: 20px;
  content: "";
  width: 10px;
  height: 2px;
  background: #048bf1;
}
@media screen and (max-width: 768px) {
  .list_check li:before {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .list_check li {
    width: 98%;
    margin: 0 auto 10px;
    font-size: 1.4rem;
    padding-left: 0px;
  }
}

.list_check2 li {
  padding: 8px;
  font-weight: normal;
  margin-bottom: 4px;
  border-bottom: 1px solid #ccc;
}
.list_check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 8px;
  color: #048bf1;
}

@media screen and (max-width: 576px) {
  .list_check2 li {
    font-size: 1.4rem;
  }
}
/* faq
----------------------------------*/
.qa-list dl {
  position: relative;
  margin: 0;
  padding: 28px 80px 28px 30px;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  background-color: #F3F6F5;
}

.qa-list dl:first-child {
  border-top: 1px solid #ccc;
}

.qa-list dl::before {
  position: absolute;
  top: 35px;
  right: 35px;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  transform: rotate(135deg);
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
}

.qa-list .open::before {
  transform: rotate(-45deg);
}

.qa-list dl dt {
  position: relative;
  margin: 0;
  padding: 0 0 0 50px;
  font-weight: bold;
  font-size: 1.8rem;
}

.qa-list dl dt::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  content: "Q.";
  color: #048bf1;
}

.qa-list dl dd::before {
  font-size: 22px;
  line-height: 1;
  position: absolute;
  top: 3px;
  left: 2px;
  display: block;
  content: "A.";
  font-weight: bold;
  color: #EE50A9;
}

.qa-list dl dd {
  position: relative;
  display: none;
  height: auto;
  margin: 20px 0 0;
  padding: 0 0 0 50px;
}

.qa-list dl dd p {
  margin: 30px 0 0;
}

.qa-list dl dd p:first-child {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .qa-list dl {
    position: relative;
    padding: 15px 40px 15px 10px;
  }
  .qa-list dl::before {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
  }
  .qa-list dl dt {
    padding: 0 0 0 30px;
    font-size: 1.4rem;
  }
  .qa-list dl dt::before {
    font-size: 14px;
    top: 3px;
    left: 5px;
    content: "Q.";
  }
  .qa-list dl dd::before {
    font-size: 14px;
    top: 5px;
    left: 5px;
    content: "A.";
  }
  .qa-list dl dd {
    margin: 10px 0 0;
    padding: 0 0 0 30px;
    font-size: 1.4rem;
  }
  .qa-list dl dd p {
    margin: 30px 0 0;
  }
  .qa-list dl dd p:first-child {
    margin-top: 0;
  }
}
/* etc
----------------------------------*/
.cut {
  overflow: hidden;
  zoom: 1;
}

.tcenter {
  text-align: center;
}

.spbr {
  display: none;
}
@media screen and (max-width: 576px) {
  .spbr {
    display: block;
  }
}

.relative {
  position: relative;
}

@media screen and (max-width: 768px) {
  .fleft0,
  .fleft1,
  .fleft2,
  .fright0,
  .fright1,
  .fright2 {
    display: block;
    float: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
}/*# sourceMappingURL=basis.css.map */

