@charset "UTF-8";
/* Scss Document */
/* ------------------------------------------------------------------------------------------ 
  common
------------------------------------------------------------------------------------------ */

/*-------------------------------------
  	layout
-------------------------------------*/
#container {
  background: #fafff5
}

.pagebody {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.pc_view {
  position: relative;
    z-index: 1;
}
.pc_view_left,
.pc_view_right { display: none; }

.pc_view_left_center {
  max-width: 424px;
}

.bl_qr {
    color: #fff;
    background: #39A0DC;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding-top: 10px;
    min-height: 200px;
}
.pc_view_right__text {
    font-size: 1.8rem;
    line-height: 2;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
}

.main {
  position: relative;
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
.main_inner {
  padding: 50px 20px;
  background: #F8FCFF;
  
}
.main_header {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 20px;
}

.site_footer {
  color: #192344;
  font-size: 1.4rem;
  padding: 40px 20px;
  background: #fff;
}
.footer_address {}
.footer_address .name {
  text-align: center;
  margin-bottom: 20px;
}
.footer_address .name dt {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer_address .list {
  display: flex;
  gap: 10px;
}
.footer_address .list + .list { margin-top: 10px;}
.footer_address .list dt {}
.footer_address .list dd { flex: 1; }
.footer_address ..font_s { font-size: 1.2rem;}

#copyright {
    color: #666;
    font-size: 1.2rem;
    margin-top: 70px;
}

/*----- for tablet -----*/
@media print, screen and (min-width: 768px) {
  .pc_view {
    display: flex;
    /* background: #D7F0FF url(/image/bg.png)0 0 /cover; */
    height: 100vh;
    overflow: hidden;
    gap: 70px;
    padding: 70px 40px 0;
    z-index: 10;
    position: relative;
  }
  .pc_view_left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 70px;
  }
  .pc_view_center {
    max-width: 424px;
    width: 100%;
    height: 100%;
    background: #39A0DC;
    border: 24px solid #39A0DC;
    border-bottom: none;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    position: relative;
  }
  .main {
    border-radius: 10px 10px 0 0;
    height: 100%;
    overflow-y: scroll;
    position: absolute;
    width: 100%;
  }
  .main::-webkit-scrollbar {
    display:none
  }
}
/*----- for PC -----*/
/* pc */
@media print, screen and (min-width: 1200px) {
  .pc_view {
    padding: 70px 70px 0;
  }
  .pc_view_left {
    gap: 100px;
  }
  .pc_view_right {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 100px;
  }

  .footer_address .tel a {
    pointer-events: none;
    text-decoration: none;
    color: #192344;
  }
}


/*-------------------------------------
  	contents
-------------------------------------*/

.navi_ttl {
  margin-bottom: 40px;
  font-size: 1.8rem;
  text-align: center;
}
.navi_ttl img { width: 50%; }

.page_ttl {
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 15px;
  border: 0.909px solid rgba(67, 24, 209, 0.08);
  background: #FFF;
  box-shadow: 0px 8px 24px 0px rgba(1, 69, 129, 0.06);
  margin-bottom: 15px;
  padding: 10px;
}

/* main_menu */
.main_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  margin-top: 40px;
}
.main_menu li {
  width: calc(50% - 6px);
}
.main_menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #FFF;
  padding: 15px;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 1.5rem;
  height: 100%;
  transition: .3s;
  border-radius: 15px;
  border: 1px solid rgba(67, 24, 209, 0.08);
  box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
}
.main_menu a:hover {
  color: #0f5ebc;
  transform: scale(1.1);
}
.main_menu .thumb {
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main_menu a svg {
  height: 40px;
  fill: #ccc;
}
.main_menu a .ttl {
  flex:1;
  line-height: 1.2
}
.main_menu a .note {
  font-size: 1.2rem;
  color: #666;
  font-style: normal;
  font-weight: 400;
}

/* about_q */
.start_info {
  padding: 40px 20px;
  border-radius: 15px;
  border: 1px solid rgba(67, 24, 209, 0.08);
  box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
  background: #fff;
}
.about_q {
  margin-bottom: 20px;
  display: flex;
  gap: 30px;
}
.about_q dl {
  flex: 1;
  font-weight: 700;
  text-align: center;
  border: 1px solid rgba(67, 24, 209, 0.08);
  border-radius: 15px;
  padding: 20px;
}
.about_q dl dt {
  margin-bottom: 10px;
}
.about_q dl dd {}
.about_q dl dd strong {
  color: #39A0DC;
    font-size: 4.6rem;
    margin: 0 5px;
  line-height: 1;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
}
.about_q img {
    position: absolute;
    top: -82px;
    left: 50%;
    margin-left: -52px;
}

.start_btn {}
.start_btn button {
  color: #fff;
  text-align: center;
  background: #39A0DC;
  border: 1px solid #1884C3;
  border-radius: 30px;
  width: 80%;
  max-width: 260px;
  padding: 11px 20px;
  display: block;
  margin: auto;
}

a.btn_back {
    color: #666;
    text-decoration: none;
    display: inline-block;
    background: url(../image/icon_back.svg) no-repeat 0 4px;
    padding-left: 26px;
    transition: .3s;
}
a.btn_back:hover { opacity: .8; }

/* q_form */
.q_form {
  margin-bottom: 95px;
}
.q_form .q_box {
  position: relative;
}
.q_form .q_box .inner {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(67, 24, 209, 0.08);
  box-shadow: 0px 0px 6px rgb(0 0 0 / 10%);
  margin-bottom: 45px;
  position: relative;
}
.q_form .q_box + .q_box {
    margin-top: 200px;
}
.q_form .q_box + .q_box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 6px;
  height: 0;
  background: #c1ddff;
  z-index: 0;
  margin-top: -200px;
  margin-left: -3px;
  transition: 2s;
}

.q_form .q_box + .q_box.open::before {
  height: 200px;
}

.q_next_btn {
  position: absolute;
  left: 0;
  bottom: -45px;
  text-align: center;
  width: 100%;
  z-index: 1;
}
.q_next_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border: 1px solid #B8B3B3;
    text-decoration: none;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    pointer-events: none;
    transition: .3s;
    background: #fff;
    margin: auto;
}
.q_next_btn a:hover {
  color: #fff;
}
.go_next .q_next_btn a {
  background: #39A0DC;
  pointer-events: auto;
  color: #fff;
  border-color: #39A0DC;
}
.go_next .q_next_btn a:hover {
  transform: scale(1.2);
}
.q_back_btn {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    text-align: center;
}
.q_back_btn a {
  display: inline-block;
    color: #fff;
    background: #A4A4A4;
    text-decoration: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    padding-top: 15px;
    font-size: 1.3rem;
  transition: .3s;
}
.q_back_btn a:hover {
  color: #fff;
  margin-top: -5px;
}

.icon_q_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.icon_q {
    font-weight: 700;
}
.icon_q_wrap .icon {
  font-size: 1.4rem;
  background: #E9F7FF;
  padding: 2px 10px;
}
.icon_q strong {
  color: #39A0DC;
  font-size: 2.6rem;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.text_q {
  margin-bottom: 10px;
  font-size: 1.6rem;
  font-weight: normal;
}
.text_q_none {
  font-size: 1.4rem;
  color: #444;
}
.q_count {
  font-size: 1.8rem;
  text-align: right;
  color: #B1B1B1;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  margin-top: 25px;
}
.q_count strong {
  font-size: 2.2rem;
  color: #666666;
}

.q_form { display: none; }
.q_form .q_box { display: none; }
.q_form .ansers { margin-top: 30px; }
.q_form .ansers li + li  { margin-top: 10px; }
.q_form .q_box input[type='checkbox'],
.q_form .q_box input[type='radio'] { display: none; }

.q_form .q_box input[type='checkbox'] + label,
.q_form .q_box input[type='radio'] + label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  display: block;
      background: #F2F2F2;
      border: 1px solid #F2F2F2;
    padding: 16px 16px 16px 49px;
    border-radius: 15px;
}
.q_form .q_box input[type='checkbox']:checked  + label,
.q_form .q_box input[type='radio']:checked  + label {
  font-weight: bold;
  background: #E9F7FF;
  border-color: #39A0DC;
}
.q_form .q_box input[type='checkbox'] + label::before {
    content: "";
    background: #fff;
    width: 18px;
    height: 18px;
    border: 1px solid #C9C9C9;
    position: absolute;
    left: 15px;
    top: 18px;
    border-radius: 3px;
  transition: .3s;
}
.q_form .q_box input[type='checkbox'] + label::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 22px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  width: 12px;
  height: 6px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: .3s;
}
.q_form .q_box input[type='checkbox']:checked + label::before {
  border-color: #39A0DC;
  background: #39A0DC;
}
.q_form .q_box input[type='checkbox']:checked + label::after {
  opacity: 1;
}

.q_form .q_box input[type='radio'] + label::before {
  content: "";
  background: #fff;
  width: 18px;
  height: 18px;
  border: 1px solid #C9C9C9;
  position: absolute;
  left: 15px;
  top: 18px;
  border-radius: 50%;
  transition: .3s;
}
.q_form .q_box input[type='radio'] + label::after {
  content: "";
  background: #39A0DC;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 20px;
  top: 23px;
  border-radius: 50%;
  opacity: 0;
  transition: .3s;
}
.q_form .q_box input[type='radio']:checked + label::after {
  opacity: 1
}
.q_form .error {
  color: #e85400;
  font-size: 1.3rem;
}
.q_form .error::before {
    content: "!";
    background: #e85400;
    display: inline-block;
    width: 20px;
    height: 20px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    margin-right: 7px;
    font-weight: bold;
}

.q_submit_btn {
  display: block;
  margin-top: 30px;
  text-align: center;
}
.q_submit_btn span {
  color: #39A0DC;
  display: inline-block;
}
.go_next .q_submit_btn a {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;  
  color: #fff;
    text-align: center;
    background: #39A0DC;
    border: 1px solid #1884C3;
    border-radius: 50px;
    padding: 20px;
    display: block;
    margin-top: 15px;
}

.btn_01 {
  text-align: center;
  background: #55BA45;
  font-size: 1.8rem;
  width: 100%;
  border: none;
  border-radius: 10px;
  padding: 20px;
  color: #fff;
  position: relative;
  text-decoration: none;
  display: block;
}
.btn_01::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: rotate(-45deg);
  margin-top: -5px;
}
.btn_01:hover {
  transform: rotate(1.1);
}
.btn_02 {
  text-align: center;
  background: none;
  border: 2px solid #55BA45;
  font-size: 1.8rem;
  width: 80%;
  border-radius: 0 45px;
  padding: 20px;
  color: #55BA45 !important;
  position: relative;
  text-decoration: none;
  display: block;
  margin: 0 auto;
}
.btn_02::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #55BA45;
  border-bottom: 2px solid #55BA45;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: rotate(135deg);
  margin-top: -5px;
}
.btn_02:hover {
  transform: rotate(1.1);
}



/* result */
.result {}

.action_copy {
  margin: 40px auto;
  text-align: center;
}
.action_copy ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.action_copy li {}
.action_copy li + li { border-left: 1px dashed #39A0DC; }
.action_copy a {
  text-align: center;
  text-decoration: none;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #329859;
  padding: 10px 20px;
  transition: .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.action_copy a.copy_btn {color: #E08A00;}

.action_copy_note {
  border-radius: 10px;
  background: rgba(57, 160, 220, 0.20);
  padding: 15px;
  font-size: 1.5rem;
  text-align: left;
  margin-top: 30px;
}



.a_list {
  border-radius: 15px;
  border: 0.909px solid rgba(67, 24, 209, 0.08);
  background: #FFF;
  box-shadow: 0px 8px 24px 0px rgba(1, 69, 129, 0.06);
  padding: 30px 20px;
}
.a_list .ttl {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 15px;
}
.a_list .ttl strong {
  color: #39A0DC;
  font-family: Barlow;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  margin-right: 5px;
}
.a_list ol {
  list-style: decimal;
  font-size: 1.4rem;
  border-radius: 10px;
  border: 2px solid rgba(57, 160, 220, 0.20);
  background: #FFF;
  padding: 10px 10px 10px 30px;
  font-weight: bold;
}
.a_list li::marker {
  color: #2A2A2A;
}
.a_list li a {
  color: #39A0DC;
}
.a_list li a:hover {
    text-decoration: underline;
}

.a_box {
  background: #fff;
  padding: 0 20px 30px;
  border-radius: 15px;
  border: 0.909px solid rgba(67, 24, 209, 0.08);
  background: #FFF;
  box-shadow: 0px 8px 24px 0px rgba(1, 69, 129, 0.06);
}
.a_box + .a_box {
  margin-top: 100px;
}
.a_box + .a_box::before,
.a_box + .a_box::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: -80px;
    margin-left: -10px;
    border-left: 2px solid #bfc152;
    border-bottom: 2px solid #bfc152;
    transform: rotate(-45deg);
}
.a_box + .a_box::after { top: -60px; }

.a_box .title_a {
  color: var(--, #2A2A2A);
  padding: 10px 15px;
  margin-bottom: 20px;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 0px 0px 15px 15px;
  background: rgba(57, 160, 220, 0.20);
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.a_box .title_a::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: 2px;
  border-radius: 2px 2px 0px 0px;
  background: rgba(57, 160, 220, 0.50);
}
.a_box .title_a .no {
  color: #FFF;
  font-family: Barlow;
  font-size: 2,2rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  background: #39A0DC;
  box-shadow: 0px 8px 24px 0px rgba(1, 69, 129, 0.06);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a_box .title_a_note {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.a_box dl {
  border-top: 1px dotted #39A0DC;
  padding: 20px 0;
}
.a_box dl dt {
  color: #39A0DC;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap:10px;
}
.a_box dl dd {
  font-size: 1.5rem;
}

.a_box dl dd ul {}
.a_box dl dd ul li {
  position: relative;
  padding-left: 25px;
}
.a_box dl dd ul li + li { margin-top: 10px; }
.a_box dl dd ul li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #bfc152;
    border-radius: 50%;
}

a.btn_back_home {
  color: #39A0DC;
  font-size: 2rem;
  font-weight: 700;
  border-radius: 50px;
  border: 1px solid rgba(2, 113, 178, 0.60);
  background: #FFF;
  box-shadow: 0px 8px 24px 0px rgba(1, 69, 129, 0.06);
  display: block;
  text-align: center;
  padding: 9px;
  text-decoration: none;
  transition: .3s;
}
a.btn_back_home::before {
  content: "";
  background: url(../image/icon_back_blue.svg) no-repeat 0 0;
  display: inline-block;
  width: 18px;
  height: 15px;
  vertical-align: middle;
  margin-right: 10px;
}
a.btn_back_home:hover {
  color: #fff;
  background-color: #39A0DC;
}
a.btn_back_home:hover::before {
  background-image: url(../image/icon_back_white.svg);
}


/* -----  pc_view ----- */
.pc_view {}
.pc_view .links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pc_view .links li {}
.pc_view .links a {
  color: #000;
  text-decoration: none;
  font-size: 1.3rem;
  text-align: center;
  padding: 10px 15px;
  display: block;
  background: #fff;
  border-radius: 30px;
  width: 100%;
  max-width: 220px;
  margin: auto;
}
.pc_view .links a svg {
  width: 12px;
  margin-left: 7px;
  fill: #6c6f0b;
}

.bl_main__links {
  background: #A6D7FF;
  padding: 40px;
}

/* pc */
@media print, screen and (min-width: 1200px) {
  .pc_view .links a {
    font-size: 1.6rem;
    padding: 6px 15px;
    transition: color .3s, background .3s;
  }
  .pc_view .links a:hover {
    color: #fff;
    background-color: #39A0DC;
  }
}

.overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 30;
}
.overlay .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(57, 160, 220, 0.20);
}
.overlay .inner {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 90vw;
  padding: 30px 30px 40px;
  border-radius: 16px;
  text-align: center;
  background: #fff;
}
.overlay .close_btn {
  color: #fff;
    text-align: center;
    background: #39A0DC;
    border: 1px solid #1884C3;
    border-radius: 30px;
    width: 80%;
    max-width: 260px;
    padding: 11px 20px;
    display: block;
    margin: 15px auto 0;
}

/*-------------------------------------
  	print
-------------------------------------*/
.print_page {}
.print_btn {}
.print_btn button {
  border: #55BA45 solid 2px;
  background: #fff;
  color: #55BA45;
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 20px;
  border-radius: 5px;
  font-size: 1.8rem;
  font-weight: bold;
}
.print_btn .icon {
  width: 20px;
  margin-right: 5px;
  fill:#55BA45;
}
.print_btn .text {}


.lead_01 {
  margin-bottom: 10px;
  margin-top: 40px;
  color: #e85400;
}
.lead_01 .icon {
  height: 20px;
  color: #ccc;
  fill:#e85400
}

.pc_view_bg {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: #e6f7fb;
  overflow: hidden; /* 両端見切れ部分を隠す */
  z-index: 0;
}
.bg_fuwa_icon {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0;
  pointer-events: none;
  animation: fuwa-float 8s linear infinite;
  /* 初期transformはJSで上書き */
}
@keyframes fuwa-float {
  0% {
    transform: translateY(100vh) scale(var(--fuwa-scale-from,1)) rotate(var(--fuwa-rotate,0deg));
    opacity: 0;
  }
  10% {
    opacity: 0.7;
    transform: translateY(80vh) scale(var(--fuwa-scale-from,1)) rotate(var(--fuwa-rotate,0deg));
  }
  50% {
    transform: translateY(40vh) scale(var(--fuwa-scale-to,1.1)) rotate(calc(var(--fuwa-rotate,0deg) + 20deg * var(--fuwa-rotate-dir, 1)));
    opacity: 0.8;
  }
  80% {
    opacity: 0.7;
    transform: translateY(10vh) scale(var(--fuwa-scale-from,1)) rotate(calc(var(--fuwa-rotate,0deg) + 30deg * var(--fuwa-rotate-dir, 1)));
  }
  100% {
    transform: translateY(-120px) scale(var(--fuwa-scale-to,1.1)) rotate(calc(var(--fuwa-rotate,0deg) + 40deg * var(--fuwa-rotate-dir, 1)));
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .main {
    position: static;
    height: auto;
    overflow-y: visible;
  }
}