@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 500;
  color: #2d2c2c;
  line-height: 1.6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
html body {
  overflow-x: hidden;
}

@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}

@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
.noto {
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.shippori {
  font-family: "Shippori Mincho", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ＭＳ 明朝", "MS Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}
/*慶追加*/
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-in {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in.visible {
  opacity: 1;
  transform: translateX(0);
}
/*慶追加*/

.upper {
  text-transform: uppercase;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

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

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

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

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

a {
  color: #2d2c2c;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

p {
  line-height: 1.6;
}

.wrapper {
  width: 100%;
}

.cont {
  width: 86.3%;
  max-width: 1100px;
  margin: 0 auto;
}

li {
  list-style: none;
}

@media screen and (min-width: 1250px) {
  .ham_block {
    display: none;
  }
  .header {
    position: fixed;
    width: 100%;
    height: 95px;
    top: 0;
    left: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    z-index: 11;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header h1 {
    width: 237px;
    height: 71px;
    margin-top: 16px;
  }
  .header h1 a {
    display: block;
  }
  .header h1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .header__inner {
    padding-left: 55px;
    width: 1210px;
    height: 100%;
    margin: 0 auto;
  }
  .header .header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .wrap p {
    font-size: 1.1rem;
    color: #686868;
    font-weight: 400;
  }
  .header .gnav ul {
    gap: 23px;
    margin-right: 23px;
  }
  .header .gnav li a {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2;
  }
}
main {
  background: #fefef8;
}

.header_btn {
  margin-top: auto;
  margin-bottom: 14px;
}
@media screen and (max-width: 1249.9px) {
  .header_btn {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  .header_btn {
    margin-top: 10px;
  }
}

.header_btn a {
  border-radius: 28px;
  width: 190px;
  display: block;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.header_btn a img {
  height: 100%;
  display: block;
}
@media screen and (max-width: 767.9px) {
  .header_btn a {
    width: 95px;
  }
}

.header.HeightMin {
  background: #fff;
}

@media screen and (max-width: 1249.9px) {
  .header {
    height: 125px;
    top: 0;
    display: block;
    width: 100%;
    z-index: 11;
    position: fixed;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .header {
    height: 75px;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 430px) {
  .header {
    height: 64px;
  }
}
@media screen and (max-width: 1249.9px) {
  .header .header_text {
    position: absolute;
    font-size: 1.4rem;
    top: 18px;
    left: 30px;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .header .header_text {
    font-size: 1rem;
    font-size: 1.85vw;
    top: 7px;
    left: 15px;
  }
}
@media screen and (max-width: 1249.9px) {
  .header h1 {
    width: 228px;
    margin-top: 45px;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .header h1 {
    width: 113px;
    margin-top: 32px;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 430px) {
  .header h1 {
    margin-top: 22px;
  }
}
@media screen and (max-width: 1249.9px) {
  .header .ham_block.btn {
    position: absolute;
    top: 13px;
    right: 48px;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .header .ham_block.btn {
    top: 18px;
  }
}
@media screen and (max-width: 1249.9px) {
  .header .ham_block.btn a {
    font-size: 1.8rem;
    height: 54px;
    padding: 0 50px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    line-height: 5.4rem;
    border-radius: 27px;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .header .ham_block.btn a {
    font-size: 1.2rem;
    border-radius: 13px;
    height: 26px;
    line-height: 2.6rem;
    padding: 0 20px;
  }
}
@media screen and (max-width: 1249.9px) {
  .header .header__inner {
    padding: 0 88px 0 25px;
    height: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .header .header__inner {
    padding: 0 44px 0 15px;
  }
}
@media screen and (max-width: 1249.9px) {
  .header .header-wrap {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    overflow: auto;
    display: block;
    margin: 0;
    width: 100%;
    height: 100dvh;
    background: #fff;
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
    padding: 64px 24px;
  }
  .header .header-wrap .wrap p {
    display: none;
  }
  .header .header-wrap .header_btn a {
    max-width: 200px;
    width: 100%;
    margin: 0 auto;
  }
  .header .gnav ul {
    display: block;
    margin-bottom: 58px;
  }
  .header .gnav ul li {
    padding: 20px 0;
    border-bottom: solid 1px;
  }
  .header .gnav ul li a {
    display: block;
    font-size: 1.6rem;
    line-height: 2;
  }
  .header .sp_logo {
    margin-bottom: 54px;
  }
  .header .sp_logo a {
    width: 200px;
    display: block;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .header .sp_logo a {
    width: 150px;
  }
}
.hamburger {
  display: none;
}

@media screen and (max-width: 1249.9px) {
  .hamburger {
    display: block;
    cursor: pointer;
    width: 48px;
    height: 48px;
    position: fixed;
    right: 20px;
    z-index: 99;
    border-radius: 50%;
    border: none;
    background: transparent;
    top: 18px;
  }
  /*activeクラスが付与されると線が回転して×になる*/
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .hamburger {
    top: 0;
    right: 3px;
  }
}
@media screen and (max-width: 1249.9px) {
  .hamburger__line,
  .hamburger__line::before,
  .hamburger__line::after {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    width: 22px;
    height: 1px;
    background: #283337;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .hamburger__line,
  .hamburger__line::before,
  .hamburger__line::after {
    width: 18px;
  }
}
@media screen and (max-width: 1249.9px) {
  .hamburger__line {
    top: 18px;
    left: 16px;
  }
  .hamburger__line::before {
    content: "";
    top: 8px;
    left: 0;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .hamburger__line::before {
    top: 6px;
  }
}
@media screen and (max-width: 1249.9px) {
  .hamburger__line::after {
    content: "";
    top: 16px;
    left: 0;
  }
}
@media screen and (max-width: 1249.9px) and (max-width: 767.9px) {
  .hamburger__line::after {
    top: 12px;
  }
}
@media screen and (max-width: 1249.9px) {
  .hamburger.active .hamburger__line {
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
  }
  .hamburger.active .hamburger__line::before {
    opacity: 0;
    -webkit-transition: opacity 0.1s;
    transition: opacity 0.1s;
  }
  .hamburger.active .hamburger__line::after {
    top: 0px;
    left: 0px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .header-wrap.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
  }
}
/* fadeUp */
.fade {
  opacity: 0;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@media screen and (max-width: 767.9px) {
  .main_visual {
    margin-top: 10px;
  }
}
.main_visual .main_visual_wrapper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1183/1062;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_wrapper {
    aspect-ratio: 1500/2125;
  }
}
.main_visual .cont {
  max-width: 1183px;
}
@media screen and (max-width: 767.9px) {
  .main_visual .cont {
    width: 100%;
  }
}
.main_visual .swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main_visual .main_visual_back {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.main_visual .main_visual_img {
  width: 55.5%;
  top: 12.6%;
  left: 49.5%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_img {
    width: 92.3%;
    top: 13.6%;
    left: 50%;
  }
}
.main_visual .cta {
  margin-top: -15.21%;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 767.9px) {
  .main_visual .cta {
    margin-top: -10px;
  }
}

.cta {
  text-align: center;
  max-width: 94%;
  margin: 0 auto;
}
.cta a {
  -webkit-animation: heart-beat 1s ease infinite alternate;
          animation: heart-beat 1s ease infinite alternate;
  width: 830px;
  max-width: 100%;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .cta a {
    width: 500px;
  }
}

@-webkit-keyframes heart-beat {
  /*フェードインの詳細な動き*/
  from {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes heart-beat {
  /*フェードインの詳細な動き*/
  from {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.worries {
  position: relative;
  margin-top: -12px;
  z-index: 2;
}
.worries h2 {
  position: absolute;
  max-width: 803px;
  width: 57.36%;
  max-width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 15.8%;
}
@media screen and (max-width: 767.9px) {
  .worries h2 {
    width: 82.8%;
    top: 11%;
  }
}

.service {
  position: relative;
  margin-top: -13.5%;
}
@media screen and (max-width: 767.9px) {
  .service {
    margin-top: -15.8%;
  }
}
.service h2 {
  position: absolute;
  width: 19%;
  max-width: 267px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 31.5%;
}
@media screen and (max-width: 767.9px) {
  .service h2 {
    width: 33.7%;
    top: 28.5%;
  }
}
.service p {
  position: absolute;
  width: 100%;
  top: 37.3%;
  text-align: center;
  font-size: 1.7vw;
  line-height: 1.7916666667;
}
@media screen and (min-width: 1500px) {
  .service p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .service p {
    font-size: 2.9vw;
    top: 35.5%;
  }
}

.features {
  padding-top: 90px;
}
@media screen and (max-width: 767.9px) {
  .features {
    padding-top: 9%;
  }
}
.features h2 {
  font-size: 5vw;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 115px;
}
@media screen and (min-width: 1500px) {
  .features h2 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767.9px) {
  .features h2 {
    font-size: 7.4vw;
    margin-bottom: 21px;
  }
}
.features h2 span {
  color: #10afe8;
}
.features ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 118px;
}
@media screen and (max-width: 767.9px) {
  .features ul {
    row-gap: 17px;
  }
}
.features li {
  width: 89.3%;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .features li {
    width: 94.7%;
  }
}
.features li .features_detail {
  position: absolute;
  width: 29.2%;
  top: 30.5%;
  right: 0;
}
@media screen and (max-width: 767.9px) {
  .features li .features_detail {
    position: static;
    padding: 5px 3% 5px 8%;
    width: 100%;
  }
}
.features li h3 {
  font-size: 3.2vw;
  letter-spacing: 0.02em;
  line-height: 1.4222222222;
  margin-bottom: 5%;
}
@media screen and (min-width: 1500px) {
  .features li h3 {
    font-size: 4.5rem;
  }
}
@media screen and (max-width: 767.9px) {
  .features li h3 {
    font-size: 6.3vw;
    margin-bottom: 19px;
  }
}
.features li p {
  font-size: 1.43vw;
  line-height: 2;
}
@media screen and (min-width: 1500px) {
  .features li p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .features li p {
    font-size: 4vw;
  }
}
.features li p span {
  background: #ffff00;
  font-weight: 700;
}
.features li .note {
  font-size: 1.15vw;
  color: #808080;
}
@media screen and (min-width: 1500px) {
  .features li .note {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .features li .note {
    font-size: 1.2rem;
  }
}
.features li:nth-child(2) h3 {
  margin-right: -40px;
}
@media screen and (max-width: 767.9px) {
  .features li:nth-child(2) h3 {
    margin-right: 0;
  }
}
.features li:nth-child(4) {
  margin-top: -52px;
}
@media screen and (max-width: 767.9px) {
  .features li:nth-child(4) {
    margin-top: 5px;
  }
}
.features li:nth-child(4) .features_detail {
  top: 36%;
}
.features li:nth-child(2n) {
  margin-left: auto;
  margin-right: 0;
}
.features li:nth-child(2n) .features_detail {
  left: 0;
}
@media screen and (max-width: 767.9px) {
  .features li:nth-child(2n) .features_detail {
    padding: 5px 8% 5px 3%;
  }
}
@media screen and (max-width: 767.9px) {
  .features .cont {
    width: 100%;
  }
}
.features .cta {
  margin-top: 60px;
}
@media screen and (max-width: 767.9px) {
  .features .cta {
    margin-top: 21px;
  }
}
.features .cta p {
  font-size: 2.5rem;
  margin-top: -4px;
}
@media screen and (max-width: 767.9px) {
  .features .cta p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 430px) {
  .features .cta p {
    font-size: 3.5vw;
  }
}

.agent {
  padding-top: 73px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .agent {
    padding-top: 50px;
  }
}
.agent .content {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding-top: 84px;
  padding-left: 20px;
}
@media screen and (max-width: 767.9px) {
  .agent .content {
    width: 93%;
    padding-top: 27px;
    padding-left: 0;
  }
}
.agent .content .bg {
  position: absolute;
  width: calc(100% - 20px);
  left: 20px;
  top: 0;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .agent .content .bg {
    left: 0;
    width: 100%;
  }
}
.agent .content .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: unset;
     object-fit: unset;
}
.agent .content .inner {
  position: relative;
  z-index: 2;
  padding-bottom: 130px;
  max-width: 1050px;
}
@media screen and (max-width: 767.9px) {
  .agent .content .inner {
    padding-bottom: 60px;
  }
}
.agent .content h2 {
  text-align: center;
  padding-right: 21px;
}
@media screen and (max-width: 767.9px) {
  .agent .content h2 {
    padding-right: 14px;
  }
}
.agent .content h2 img {
  width: 83%;
}
@media screen and (max-width: 767.9px) {
  .agent .content h2 img {
    width: 91%;
  }
}
.agent .content ul {
  margin-top: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .agent .content ul {
    margin-top: 8px;
    margin-bottom: 16px;
  }
}
.agent .content li {
  padding: 60px 0;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .agent .content li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 40px 0;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}
.agent .content li::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 81%;
  height: 1px;
  background: #e2e2e2;
  bottom: 0;
}
.agent .content li .left {
  width: 31%;
  text-align: center;
  padding-left: 2.5%;
}
@media screen and (max-width: 767.9px) {
  .agent .content li .left {
    padding-left: 0;
    width: 100%;
  }
}
.agent .content li .right {
  width: 68.5%;
}
@media screen and (max-width: 767.9px) {
  .agent .content li .right {
    width: 100%;
    text-align: center;
    margin-top: 8%;
  }
}
.agent .content li .right h3 {
  font-size: 2.8vw;
  margin-bottom: 24px;
  margin-left: 25px;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 1500px) {
  .agent .content li .right h3 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767.9px) {
  .agent .content li .right h3 {
    margin-left: 0;
    font-size: 4.2vw;
    margin-bottom: 33px;
  }
}
.agent .content li .right h3 span {
  font-size: 1.9vw;
  display: inline-block;
  margin-left: 12px;
}
@media screen and (min-width: 1500px) {
  .agent .content li .right h3 span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .agent .content li .right h3 span {
    font-size: 2.8vw;
    vertical-align: text-bottom;
    margin-left: 4px;
  }
}
.agent .content li .right p {
  line-height: 1.8;
  margin-left: 25px;
  font-size: 1.43vw;
}
@media screen and (min-width: 1500px) {
  .agent .content li .right p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .agent .content li .right p {
    font-size: 3.2vw;
    margin-left: 0;
    text-align: left;
  }
  .agent .content li .right p br {
    display: none;
  }
}
.agent .content li .right .shippori {
  margin-left: 0;
  margin-bottom: 20px;
  font-size: 1.86vw;
  font-weight: 700;
  line-height: 2.0384615385;
  padding: 0 0 0 25px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #10afe8;
  background: rgb(245, 245, 245);
  background: -webkit-gradient(linear, left top, right top, from(rgb(245, 245, 245)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgb(245, 245, 245) 0%, rgb(255, 255, 255) 100%);
}
@media screen and (min-width: 1500px) {
  .agent .content li .right .shippori {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767.9px) {
  .agent .content li .right .shippori {
    width: 100%;
    text-align: center;
    font-size: 3.7vw;
    padding-left: 0;
    margin-bottom: 11px;
  }
  .agent .content li .right .shippori .sp-block {
    display: block;
  }
}
.agent .content li:nth-child(1) img {
  width: 64%;
}
@media screen and (max-width: 767.9px) {
  .agent .content li:nth-child(1) img {
    width: 32%;
  }
}
.agent .content li:nth-child(2) img {
  width: 74%;
  margin-bottom: 13px;
}
@media screen and (max-width: 767.9px) {
  .agent .content li:nth-child(2) img {
    width: 56%;
    margin-bottom: -7px;
  }
}
.agent .content li:nth-child(3)::after {
  content: none;
}
.agent .content li:nth-child(3) img {
  width: 70%;
  margin-bottom: 13px;
}
@media screen and (max-width: 767.9px) {
  .agent .content li:nth-child(3) img {
    width: 38%;
    margin-bottom: -3px;
  }
}
.agent .content .img_wrap {
  padding-left: 14px;
  width: 94%;
  margin: 0 auto;
}
@media screen and (max-width: 767.9px) {
  .agent .content .img_wrap {
    padding-left: 0;
    width: 95%;
  }
}

.flow {
  margin-top: -320px;
  padding-top: 490px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .flow {
    margin-top: -122px;
    padding-top: 47%;
  }
}
.flow .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
}
.flow .cont {
  max-width: 1000px;
}
.flow h2 {
  text-align: center;
  margin-bottom: 130px;
  margin-top: -100px;
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .flow h2 {
    padding-top: 97px;
    margin-bottom: 0;
  }
}
.flow h2 img {
  width: 61%;
}
@media screen and (max-width: 767.9px) {
  .flow h2 img {
    width: 72%;
  }
}
.flow ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .flow ul {
    margin-top: 73px;
    row-gap: 73px;
    margin-bottom: 36px;
  }
}
.flow li {
  background: #fffcfe;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: rgba(132, 132, 132, 0.08) -15px 17px 25px -6px;
          box-shadow: rgba(132, 132, 132, 0.08) -15px 17px 25px -6px;
  height: auto;
  aspect-ratio: 1000/258;
}
@media screen and (max-width: 767.9px) {
  .flow li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    position: relative;
    overflow: unset;
    aspect-ratio: unset;
    -webkit-box-shadow: rgba(132, 132, 132, 0.08) 0px 4px 12px;
            box-shadow: rgba(132, 132, 132, 0.08) 0px 4px 12px;
  }
}
.flow li .left {
  width: 74%;
  padding: 35px 44px 10px 55px;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .flow li .left {
    height: auto;
    width: 100%;
    border-radius: 0 0 15px 15px;
    padding: 16px 24px 18px 30px;
  }
}
.flow li .left img {
  width: 15.8%;
  margin-right: 27px;
}
@media screen and (max-width: 767.9px) {
  .flow li .left img {
    position: absolute;
    top: -38px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 56px;
  }
}
.flow li .left .detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767.9px) {
  .flow li .left .detail {
    width: 100%;
    border-radius: 15px 15px 0 0;
    text-align: left;
  }
}
.flow li .left .detail h3 {
  font-size: 2vw;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5357142857;
  margin-top: 13px;
  margin-bottom: 20px;
}
@media (min-width: 1400px) {
  .flow li .left .detail h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767.9px) {
  .flow li .left .detail h3 {
    margin-top: 0;
    font-size: 4.3vw;
    margin-left: 3px;
    margin-bottom: 10px;
    letter-spacing: 0.09em;
  }
}
.flow li .left .detail h3 span {
    color: #fff;
    background-image: url(var(--theme-url) + '/assets/img/line_bg.webp');
    background-size: contain;
    background-repeat: no-repeat;
    padding: 0 3% 2px;
    line-height: 1.4285714286;
}
.flow li .left .detail p {
  line-height: 1.8;
  font-size: 1.43vw;
  color: #4e4e4e;
}
@media (min-width: 1400px) {
  .flow li .left .detail p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .flow li .left .detail p {
    font-size: 3.5vw;
  }
  .flow li .left .detail p br {
    display: none;
  }
}
.flow li .right {
    width: 26%;
    height: 100%;
    background-image: url(var(--theme-url) + '/assets/img/flow_bg@2x.webp');
    background-size: cover;
    display: grid;
    place-content: center;
    justify-items: center;
}
@media screen and (max-width: 767.9px) {
  .flow li .right {
    width: 100%;
    height: auto;
    aspect-ratio: 323/130;
    border-radius: 15px 15px 0 0;
  }
}
.flow li:nth-child(1) .detail h3 {
  margin-top: 6px;
}
@media screen and (max-width: 767.9px) {
  .flow li:nth-child(1) .detail h3 {
    margin-top: 0;
  }
}
.flow li:nth-child(1) .right img {
  width: 65.77%;
  min-width: 65.77%;
}
@media screen and (max-width: 767.9px) {
  .flow li:nth-child(1) .right img {
    width: 35%;
    min-width: 35%;
    margin-top: 10px;
  }
}
.flow li:nth-child(2) .detail h3 {
  margin-top: 0px;
  margin-bottom: 9px;
}
.flow li:nth-child(2) .right img {
  width: 56.5%;
  min-width: 56.5%;
}
@media screen and (max-width: 767.9px) {
  .flow li:nth-child(2) .right img {
    width: 33.5%;
    min-width: 33.5%;
    margin-top: 18px;
  }
}
.flow li:nth-child(3) .right img {
  width: 57.7%;
  min-width: 57.7%;
}
@media screen and (max-width: 767.9px) {
  .flow li:nth-child(3) .right img {
    width: 24.7%;
    min-width: 24.7%;
    margin-top: 15px;
  }
}
.flow li:nth-child(4) .right img {
  width: 59.6%;
  min-width: 59.6%;
}
@media screen and (max-width: 767.9px) {
  .flow li:nth-child(4) .right img {
    width: 29.6%;
    min-width: 29.6%;
    margin-top: 15px;
  }
}
.flow li:nth-child(5) .right img {
  width: 72.3%;
  min-width: 72.3%;
}
@media screen and (max-width: 767.9px) {
  .flow li:nth-child(5) .right img {
    width: 35.3%;
    min-width: 35.3%;
    margin-top: 7px;
  }
}
.flow .flow_comment {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767.9px) {
  .flow .flow_comment {
    margin-bottom: 26px;
  }
}
.flow .flow_comment img {
  width: 67.1%;
}
@media screen and (max-width: 767.9px) {
  .flow .flow_comment img {
    width: 94.1%;
  }
}
@media screen and (max-width: 767.9px) {
  .flow .cta {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
  }
  .flow .cta img {
    width: 94%;
  }
}

.why {
  position: relative;
  margin-top: 47px;
}
@media screen and (max-width: 767.9px) {
  .why {
    margin-top: 33px;
  }
}
.why p {
  position: absolute;
  text-align: center;
  top: 39.8%;
  font-size: 1.43vw;
  line-height: 2;
  letter-spacing: 0.02em;
  width: 100%;
  left: 0;
}
@media screen and (min-width: 1500px) {
  .why p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767.9px) {
  .why p {
    display: none;
  }
}

.case {
  position: relative;
  padding-top: 12.9%;
  margin-top: -100px;
  padding-bottom: 11.6%;
}
@media screen and (max-width: 767.9px) {
  .case {
    margin-top: -125px;
    padding-top: 22.9%;
    padding-bottom: 17%;
  }
}
.case .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.case .bg img {
  height: 100%;
  -o-object-position: top;
     object-position: top;
}
.case h2 {
  font-size: 3.8vw;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 75px;
  text-align: center;
}
@media screen and (min-width: 1500px) {
  .case h2 {
    font-size: 5.3rem;
  }
}
@media screen and (max-width: 767.9px) {
  .case h2 {
    font-size: 5.3vw;
    margin-bottom: 28px;
  }
}
.case ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 3px;
}
@media screen and (max-width: 767.9px) {
  .case ul {
    row-gap: 30px;
  }
}
.case ul li {
  position: relative;
  width: 90.28%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 767.9px) {
  .case ul li {
    width: 97.2%;
  }
}
.case ul li:nth-child(2) {
  margin-left: 0;
}
.case ul li:nth-child(2) p {
  left: 13%;
}
@media screen and (max-width: 767.9px) {
  .case ul li:nth-child(2) p {
    left: 12%;
    top: 61.5%;
  }
}
@media screen and (max-width: 767.9px) {
  .case ul li:nth-child(3) p {
    top: 63.5%;
  }
}
.case ul p {
  position: absolute;
  font-size: 1.56vw;
  line-height: 1.7727272727;
  top: 56.3%;
  left: 11%;
  width: 77.5%;
  color: #4e4e4e;
}
@media screen and (max-width: 767.9px) {
  .case ul p {
    font-size: 3.5vw;
    line-height: 2;
    top: 59.5%;
    left: 15%;
    width: 79%;
  }
}
.case ul p span {
  font-weight: 700;
  color: #2d2c2c;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(75%, #ffff00));
  background: linear-gradient(transparent 60%, #ffff00 75%);
}
.case ul p .lineh {
  height: 12px;
  display: block;
  background: none;
}
@media screen and (max-width: 767.9px) {
  .case ul p .lineh {
    height: 10px;
  }
}
@media screen and (max-width: 767.9px) {
  .case ul p .lineh.sp-none {
    display: none;
  }
}

.reason {
  position: relative;
}
.reason .cta {
  position: absolute;
  top: 83.4%;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767.9px) {
  .reason .cta {
    bottom: 4.2%;
    top: auto;
  }
}

.faq .title {
    position: relative;
    cursor: pointer;
    padding: 20px;  /* クリッカブルな領域を確保 */
}

.faq .box {
    display: none;
}

/* 矢印の状態 */
.faq .title::after {
    content: "";
    width: 32px;
    height: 18px;
    background-image: url(var(--theme-url) + '/assets/img/fill_b.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 44px;
    right: 4px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* 開いているときの矢印 */
.faq .title.close::after {
    transform: rotate(0deg);
}


.faq {
  margin-top: -73px;
  padding-top: 200px;
  padding-bottom: 194px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.9px) {
  .faq {
    margin-top: -19px;
    padding-top: 60px;
    padding-bottom: 77px;
  }
}
.faq .cont {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .faq .cont {
    width: 90%;
  }
}
.faq .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.faq .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: unset;
     object-fit: unset;
}
.faq h2 {
  font-size: 3.8vw;
  font-weight: 700;
  margin-bottom: 118px;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 1500px) {
  .faq h2 {
    font-size: 5.3rem;
  }
}
@media screen and (max-width: 767.9px) {
  .faq h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.faq ul {
  gap: 35px;
}
@media screen and (max-width: 767.9px) {
  .faq ul {
    gap: 7px;
  }
}
.faq ul li {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 0 50px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
          box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
@media screen and (max-width: 767.9px) {
  .faq ul li {
    padding: 0 17px;
  }
}
.faq ul .title {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  cursor: pointer;
  padding: 40px 0;
}
@media screen and (max-width: 767.9px) {
  .faq ul .title {
    padding: 20px 0;
  }
}
.faq ul .title::after {
    content: "";
    width: 32px;
    height: 18px;
    background-image: url(var(--theme-url) + '/assets/img/fill_b.svg');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 44px;
    right: 4px;
    transform: rotate(180deg);
}
@media screen and (max-width: 767.9px) {
  .faq ul .title::after {
    top: 28px;
    right: -3px;
    width: 12px;
    height: 8px;
  }
}
.faq ul .title .detail {
  color: #10afe8;
  font-size: 2.8rem;
  line-height: 1.2857142857;
  font-weight: 700;
  padding-right: 70px;
}
@media screen and (max-width: 767.9px) {
  .faq ul .title .detail {
    font-size: 1.56rem;
    font-weight: 800;
    padding-right: 26px;
  }
}
.faq ul .title.close::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faq ul .box {
  padding: 36px 0;
  border-top: solid 1px #10afe8;
}
@media screen and (max-width: 767.9px) {
  .faq ul .box {
    padding: 10px 0 20px;
  }
}
.faq ul .box .detail {
  font-size: 2rem;
  line-height: 1.55;
}
@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .faq ul .box .detail {
    font-size: 1.34rem;
  }
}
.faq ul li:nth-child(n+2) .box {
  display: none;
}

.presents {
  margin-top: -6.6%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .presents {
    margin-top: -10%;
  }
}
@media screen and (max-width: 767.9px) {
  .presents {
    margin-top: -25.6%;
  }
}

.cta_last {
  background: #fff;
  padding: 77px 0 51px;
}
@media screen and (max-width: 767.9px) {
  .cta_last {
    padding: 50px 0 53px;
  }
}
.cta_last p {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767.9px) {
  .cta_last p {
    margin-bottom: 23px;
  }
}
.cta_last p img {
  width: 89.6%;
}
@media screen and (max-width: 767.9px) {
  .cta_last p img {
    width: 77.6%;
  }
}
.cta_last .cta {
  width: 100%;
}
@media screen and (max-width: 767.9px) {
  .cta_last .cont {
    width: 100%;
  }
}

.footer {
  background: #2d2c2c;
  padding: 33px 0;
}
@media screen and (max-width: 767.9px) {
  .footer {
    padding: 20px 0;
  }
}
.footer .cont {
  max-width: 1200px;
  gap: 20px;
}
@media screen and (max-width: 767.9px) {
  .footer .cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: 90%;
  }
}
.footer .f_logo {
  width: 181px;
  margin-left: 50px;
}
@media screen and (max-width: 767.9px) {
  .footer .f_logo {
    width: 140px;
    margin-left: auto;
    margin-right: auto;
  }
}
.footer ul {
  gap: 25px;
  margin-top: 4px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767.9px) {
  .footer ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3px;
  }
}
.footer ul a {
  font-size: 1.5rem;
  line-height: 3;
  display: inline-block;
  color: #fff;
}
@media screen and (max-width: 767.9px) {
  .footer ul a {
    font-size: 1rem;
    line-height: 2;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
.footer .right_bottom {
  text-align: right;
}
@media screen and (max-width: 767.9px) {
  .footer .right_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 28px;
  }
}
.footer .right_bottom a {
  color: #838383;
  font-size: 1.4rem;
  line-height: 3;
  display: inline-block;
  margin-left: 25px;
}
@media screen and (max-width: 767.9px) {
  .footer .right_bottom a {
    line-height: 2;
    font-size: 1rem;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    margin-left: 0;
    margin-right: 4px;
  }
}
.footer .right_bottom small {
  color: #565758;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: inline-block;
  margin-left: 40px;
}
@media screen and (max-width: 767.9px) {
  .footer .right_bottom small {
    font-size: 1rem;
    margin-left: auto;
    margin-right: 0;
  }
}/*# sourceMappingURL=style.css.map */

#cta4 {
  text-align: center;
  background: #fff;
  padding-bottom: 20px;
}
#formWrap {
  width: 100%;
  margin:0 auto;
  color:#000;
  line-height:120%;
}
.formTable{
  width:90%;
  margin:0 auto;
  border-collapse:collapse;
}
.contact-title {
  text-align: center;
  max-width: 100%;
  font-size: 3.5rem;
  line-height: 1.8;
  margin-bottom: 60px;
  font-weight: bold;
}
.contact-title .contact-title-first {
position: relative;
}
.contact-title .contact-title-first:before {
  content: "";
  background: #F4E505;
  width: calc(100% + 10px);
  height: 10px;
  bottom: -8px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
.contact-title b {
  font-size: 2.5rem;
  display: block;
}
.contact-title .contact-title-notifitication {
  font-size: 1.8rem;
  line-height: 3rem;
  display: inline-block;
  position: relative;
}
.contact-title .contact-title-notifitication:after {
  content: "";
  background: #F4E505;
  width: calc(100% + 10px);
  height: 10px;
  bottom: -15px;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
/*以下、②左側のコメント*/
.balloon {
  width: 100%;
  margin: 10px 0;
  overflow: hidden;
}
.balloon .faceicon {
float: left;
margin-right: -50px;
width: 70px;
}
.balloon .faceicon img{
width: 100%;
height: auto;
border-radius: 50%;
}
.balloon .chatting {
width: 100%;
text-align: left;
}
.says {
display: inline-block;
position: relative;
margin: 0 0 0 80px;
padding: 25px;
max-width: 70%;
border-radius: 12px;
background: #f5f5f5;
font-size: 1.8rem;
font-weight: bold;
line-height: 3rem;
}
.says span{
color:tomato;
}
.says:after {
content: "";
display: inline-block;
position: absolute;
top: 15px; 
left: -19px;
border: 8px solid transparent;
border-right: 18px solid #f5f5f5;
-webkit-transform: rotate(25deg);
transform: rotate(35deg);
}
.says p {
margin: 0;
padding: 0;
}
.question {
  width: 100%;
  display: block;
  border: solid 1px #37BADD;
  padding: 0 25px 25px 25px;
  background-color: #E8F6F9;
  border-radius: 10px;
  margin: 30px 0 30px auto;
}
.question-title{
display: block;
font-size: 1.6rem;
width:100%;
font-weight:bold;
text-align:left;
margin-top: 25px;
margin-bottom: 20px;
}
.question-title:nth-of-type(2){
margin-top: 10px;
}
.question-contents input, .question-contents select {
width: 100%;
font-size: 20px;
/* height: 48px; */
}
input[type="radio"] {
  opacity: 0;
  visibility: hidden;
  /* position: absolute; */
}
.wpcf7-radio {
  display: flex;
}
.wpcf7-list-item {
  width: 100%;
  margin: 0;
}
.wpcf7-list-item.first {
  margin-left: 0;
}
span.wpcf7-list-item-label {
box-sizing: border-box;
-webkit-transition: background-color 0.2s linear;
transition: background-color 0.2s linear;
position: relative;
display: inline-block;
margin: 0px 0px 8px 10px;
padding: 15px 15px 15px 45px;
background-color: #fff;
border: 1px solid #37BADD;
vertical-align: middle;
cursor: pointer;
padding-right: 20px;
width: 90%;
text-align: left;
font-size: 15px;
font-weight: bold;
}
span.wpcf7-list-item-label:before {
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  position: absolute;
  top: 50%;
  left: 21px;
  display: none;
  margin-top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #37BADD;
  content: "";
}
span.wpcf7-list-item-label:after {
  -webkit-transition: border-color 0.2s linear;
  transition: border-color 0.2s linear;
  position: absolute;
  top: 53%;
  left: 17px;
  display: block;
  margin-top: -10px;
  width: 16px;
  height: 16px;
  border: 2px solid #bbb;
  border-radius: 50px;
  content: "";
}
input[type="radio"]:checked + span.wpcf7-list-item-label:before {
  display: block;
}
.btn {
  font-size: 1.6rem;
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  color: #fff;
  border: none;
  background: #37BADD;
}
.privacy-policy {
text-align: center;
font-size: 1.0rem;
font-weight: bold;
margin-top: 20px;
}
.privacy-policy a{
color: #37BADD;
text-decoration: none;
}
.btn-submit{
  font-size: 2.0rem;
  font-weight: bold;
  width: 100%;
  padding: 25px;
  color: #fff;
  border: none;
  background: #37BADD;
}
.q2,.q3,.q4,.q5,.q6,.q7,.q8,.q9,.q10 {
display: none;
}

.b2,.b3,.b4,.b5,.b6,.b7,.b8,.b9,.b10 {
display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.thank-you{
	padding:50px;
	margin-top: 30px;
}
.thank-you p{
	font-size:1.5rem;
}

.thank-txt {
  text-align: center;
}
.red {
  margin: 30px 0;
  color: red;
  font-weight: bold;
}
.thank-txt img {
  display: block;
  margin: 0 auto;
  width: 20%;
  height: 100%;
  padding-top: 30px;
}
.thank-txt a img{
  padding-top: 0px;
}
.thank-caution {
  width: 40%;
  margin: 30px auto 0 auto;
  background: #efefef;
  padding: 20px 30px;
  font-weight: bold;
}
.thank-caution p span{
  color: tomato;
}
.thank-caution a{
  text-decoration: none;
  color: #000;
}
@media screen and (max-width:572px) {
.red {
  font-size: 1.0rem;
}
.thank-txt img {
  width: 65%;
}
.thank-caution {
  width: 100%;
}
}

.scroll-in {
display: block;
animation-name: showAnime; 
animation-duration: 1s; 
animation-fill-mode: forwards;
perspective: 10; /*スマホのちらつき防止*/
-webkit-perspective: 10;
}
@keyframes showAnime {
0% {
  opacity: 0;
  transform: translate(-50px, 0);
}
100% {
  transform: translate(0, 0);
  opacity: 1;
}

