@charset "utf-8";

/*　共通　*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
}
html {
    scroll-behavior: smooth;
}
body{
    margin: 0 auto;
    font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",  sans-serif;
    font-size: 20px;
    line-height: 1.8;
    color: #1f1f1f;
}

ul {
    padding-inline-start: 0px;
}


/*初期設定*/
#wrapper {
    width: 100%;
}
.container {
    max-width: 950px;
    width: 100%;
    padding: 0 0 0 0;
    overflow: visible;
    margin: auto;
    position: relative;
    display: block;
}
.content{
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}
.pc {
    display: block;
}
.sp {
    display: none;
}

@media (max-width: 1200px) {
.content {
    width: 95%;
}
}

@media (max-width: 767px) {
    body{
        margin: 0 auto;
        width: 100%;
        font-size: 0.95rem;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .content{
    width: 92%;
}
}

/*layout*/
img{
    display: block;
    width: 100%;
}
.fwB {
    font-weight: bold;
}
.taC {
    text-align: center;
}
.taL {
    text-align:left;
}
.marker {
background: linear-gradient(transparent 60%, #fff352 60%, #fff352 90%, transparent 90%);
}
.marker2 {
background: linear-gradient(transparent 60%, #fff352 60%, #fff352 80%, transparent 80%);
}

.red {
    color: #ff0000;
    font-weight:bold;
}
.green {
    color:#00a5b1;
    font-weight:bold;
}

.shadow {
filter: drop-shadow(3px 3px 15px rgba(197, 203, 209, 0.5));
}
.note {
    font-size: 0.7rem!important;
    line-height: 1.3;
    margin: 10px 0 0;
}
.note2 {
    font-size: 1rem!important;
    line-height: 1.3;
    margin: 10px 0 0;
    font-weight: 100;
}
.rela {
    position: relative;
}
.flex {
    display: flex;
}
p {
    margin-bottom: 20px;
}
.mt20 {
    margin-top: 20px;
}
.mt10 {
    margin-top: 10px!important;
}
.mb0 {
    margin-bottom: 0!important;
}
.mb10 {
    margin-bottom: 10px;
}

a {
    color: #00a5b1;
}

@media (max-width: 767px) {
.note {
    font-size: .85rem!important;
    line-height: 1.5;
}
.note2 {
    font-size: .85rem!important;
    line-height: 1.3;
    margin: 10px 0 0;
    font-weight: 100;
}
}

/*header*/
header {
    height: 70px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 200;
}
.h_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1100px;
    max-width: 1100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
}
h1 {
    width: 70%;
}
@media (max-width: 1200px) {
.h_inner {
    width: 950px;
}
}
@media (max-width: 767px) {
header {
    height: 60px;
}
.h_inner {
    width: 95%;
}
h1 {
    width: 50%;
}
}
/*headerEND*/


/*ナビ*/
nav{
    background:#00a5b1;
}

nav ul {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 15px;
}

ul.nav_inner li {
  position: relative;
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

ul.nav_inner li a{
    display: block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding:12px 5px;
    text-align: center;
}

ul.nav_inner li::after {
    content: '';
    position: absolute;
    right: 20%;
    top: 19px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(135deg);
}

ul.nav_inner li.nav_arrow::after {
    right: 4%;
}

.nav_inner li:hover {
  background-color: #007e86;
}
.nav_inner li:active {
  background-color: #007e86;
}
.nav_inner li {
  border-right: 0.5px solid #c9e8ea;
}
.nav_inner li:first-child {
    border-left: 0.5px solid #c9e8ea;
}

@media (max-width: 767px) {
nav ul {
    flex-wrap: wrap;
}
ul.nav_inner li {
    width: 49.5%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 0.5px solid #c9e8ea;
    line-height: 1.5;
}
ul.nav_inner li.nav_arrow::after {
    right: 12%;
}
ul.nav_inner li::after {
    right: 12%;
    top: 25px;
}
}
/*ナビEND*/


/*fv*/
.abs_fv {
    position: absolute;
    width: 45%;
    left: 13%;
    bottom: -14.5%;
    filter: drop-shadow(3px 3px 10px rgba(0, 165, 177, 0.3))
}

/*cta*/
.cta-area_fv {
    margin: 13% auto 5%;
}

.cta-area {
    margin: 7% auto 0;
    padding-bottom: 7%;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
}
.cta_btn {
    width: 60%;
    padding: 3% 4%;
    border-radius: 12px;
    border-bottom: 8px solid #005548;
    background-color: #008F79;
    box-sizing: border-box;
    max-width: 700px;
}
section.step .cta_btn , section.qa .cta_btn{
    width: 70%;
    margin: 0 auto;
}
.check_btn {
    width: 37%;
    padding: 2.7% 4%;
    border-radius: 12px;
    border-bottom: 8px solid #c0871a;
    background-color: #fab122;
    box-sizing: border-box;
    max-width: 450px;
}
.cta_btn_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.check_btn_inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta_btn img {
    width: 17%;
}
.btn_ttl {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    margin: 0 40px 0 0;
}
.check_btn_ttl {
    font-size: clamp(21px, 2.5vw, 30px);
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 0;
}
section.step .btn_ttl ,section.qa .btn_ttl{
    font-size: clamp(20px, 4vw, 38px);
}

.btn_ttl span ,.check_btn_ttl span {
    font-size: clamp(14px, 2.3vw, 22px);
}

section.step .btn_ttl span {
    font-size: clamp(14px, 2.4vw, 26px);
}

.check_btn img {
    position: absolute;
    width: 15%;
    top: 47%;
    left: 20%;
}
.cta_btn:active {
    transform: translateY(4px);
    border-bottom: 1px solid #b73129;
}
.check_btn:active {
    transform: translateY(4px);
    border-bottom: 1px solid #fab122;
}
.cta_btn a ,.check_btn a{
    text-decoration: none;
}

/*追従ボタン*/
.fixed_btn_area {
    display: none;
    position: fixed;
    bottom: 0;
    background-color: #fffcda;
    width: 100%;
    padding: 10px 0;
    z-index: 100;
}

a.fixed_btn {
    padding: 8px 50px;
    border-radius: 18px;
    border-bottom: 8px solid #005548;
    background-color: #008F79;
    box-sizing: border-box;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    width: fit-content;
    line-height: 1.5;
}
a.fixed_btn:hover {
    margin-top: 6px;
    border-bottom: 1px solid #008F79;
    color: #fff;
}

.fixed_btn span {
    font-size: 26px;
    color: #fff352;
}
.fixed_btn a {
    color: #fff;
    text-decoration: none;
    display: block;
}
.yazirusi {
    margin-left: 10px;
    width: 40px;
    height: 8px;
    border-bottom: 4px solid #fff352;
    border-right: 6px solid #fff352;
    transform: skew(45deg);
    display: inline-block;
}

@media (max-width: 767px) {
.cta-inner {
    display: block;
}
.cta_btn {
    width: 100%;
    padding: 5% 4%;
    margin-bottom:20px;
}
.check_btn {
    width: 100%;
    padding: 5% 4%;
}
.check_btn {
    width: 100%;
}
.check_btn img {
    position: absolute;
    width: 13%;
    top: 47%;
    left: 24%;
}
.fixed_btn span {
    font-size: 1.4rem;
}
a.fixed_btn {
    padding: 8px 8px 0;
    border-radius: 18px;
    border-bottom: 6px solid #005548;
    width: 90%;
    font-size: 0.9rem;
}
.btn_ttl {
    margin-right: 8%;
}
.cta-area_fv {
    margin: 10% auto;
}
}
/*CTAEND*/



/*6つのポイント*/
section.point {
    background-color: #f4f4f4;
    padding: 7% 0 2%;
}
h2 {
    font-size:clamp(24px, 2.3vw, 48px);
    text-align:center;
    font-weight: bold;
    line-height: 0.9;
}
h2 .point_ttl {
    color: #00a5b1;
    font-family: 'Afacad', sans-serif;
    font-weight: bold;
    font-size: clamp(60px, 8vw, 120px);
    vertical-align: middle;
}

.point_flex {
    display: flex;
    flex-wrap:wrap;
    justify-content:space-between;
    margin: 3% 0;
}

.point_item {
    background-color:#fff;
    filter: drop-shadow(3px 7px 10px rgba(0, 165, 177, 0.3));
    width:calc(33.3333333% - 15px);
/*    margin-bottom:2%;*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.point_item_inner {
    margin: 9% 5% 3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 240px;
}
.point_item_inner img {
    width: 70%;
}
.point_item_ttl {
    color:#00a5b1;
    font-weight:bold;
    text-align:center;
    line-height: 1.3;
    font-size: clamp(19px, 2.3vw, 21px);
}
.point_item_text {
    color:#008F79;
    line-height: 1.3;
    font-size: clamp(20px, 2.3vw, 28px);
        font-weight:bold;
    text-align:center;
}
.point_item_text2 {
    color:#008F79;
    line-height: 1.3;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(36px, 3vw, 42px);
}
.point_item_text3 {
    color:#008F79;
    line-height: 1.3;
    font-size: clamp(18px, 2.3vw, 21px);
}
.point_item p {
    margin-bottom: 10px;
}

.point_btn {
    background-color: #00a5b1;
    display: flex;
    height: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
}
.point_btn img {
    width: 28%;
}

.triangle {
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 8px;
  right: 8px;
  border-left: 20px solid transparent;
  border-bottom: 20px solid #fff352;
}



@media (max-width: 767px) {
section.point {
    padding: 15% 0 2%;
}
.point_flex {
    display: block;
}
.point_item {
    width: 100%;
}
.point_item_inner {
    margin: 5% 5% 3%;
    height: 150px;
}
.point_item p {
    margin-bottom: 0;
}
.point_item_inner img {
    width: 38%;
}
.point_btn img {
    width: 22%;
}
.point_btn {
    height: 37px;
}
.point_item {
    filter: drop-shadow(2px 4px 7px rgba(0, 165, 177, 0.3));
    margin-bottom: 6%;
}
.point_area {
    margin: 7% 0;
}
}


/*6つのポイント詳細*/
.list-item {
background-color: #a6e1e5;
    padding: 13% 5% 4.5%;
    margin-bottom: 5%;
}
.point_n {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 12%;
}

h3 {
    text-align: center;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 3%;
    letter-spacing: 2px;
}
h3 .list-item_sub {
    font-size: clamp(20px, 3vw, 60px);
}

.oswald {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: bold;
}
.oswald2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(36px, 2.3vw, 45px);
    font-weight: bold;
}
.list-item_text {
    text-align: center;
    margin-bottom: 3%;
    font-size: clamp(15px, 2.3vw, 19px);
    line-height: 1.5;
}
.list-item_text2 {
    text-align: center;
    font-size: clamp(18px, 2.3vw, 24px);
    font-weight: bold;
}

.list-item_p {
    width: 80%;
    margin: auto;
}
.list_item_inner {
    background-color: #fff;
    padding: 3.5% 3.5% 2.5%;
}
.list_item_flex {
    display: flex;
    justify-content: space-between;
}
.list_item_p2_l {
    width: 57%;
}
.list_item_p2_r {
    width: 36%;
}
.list_item_p6_l ,.list_item_p6_r {
    width: 47%;
}

ul.point_list {
    padding: 2% 8% 1.5%;
    list-style-type: none;
    background-color: rgba(255, 255, 255, 0.4);
    margin-bottom: 3%;
    font-size: clamp(15px, 2.3vw, 19px);
    line-height: 1.4;
}
ul.point_list li {
    position:relative;
    padding: 0em 0.3em 0.3em 1.3em;
}
ul.point_list li:after,ul.point_list li:before {
    position:absolute;
    content:'';
    display:block;
    background: #ffaf50;
    top: 0.43em;
    left: 0.5em;
    height: 11px;
    width: 4px;
    border-radius: 10px;
    transform: rotate(45deg);
}
ul.point_list li:before {
    top: 0.6em;
    left: 0.2em;
    height:8px;
    transform:rotate(-45deg);
}



/*閉じるボタン*/
.more-closetop {
    position: absolute;
    top: 4%;
    right: 3%;

}
button.close-btn {
    width: 140px;
    padding: 6%;
    border-radius: 10px;
    border:none;
    border-bottom: 3px solid #005548;
    background-color: #008F79;
    color: #fff;
    font-size: clamp(12px, 2.3vw, 16px);
    font-weight: bold;
}

button.close-btn::after {
content: '';
    position: absolute;
    right: 20%;
    top: 19px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
}
/*閉じるボタンEND*/


/*詳しいお手続きはこちら*/
.click_btn {
  text-align: right;
  margin-top: 4%;
}
.click_btn a {
    color: #fff;
    background-color: #007e86;
    text-decoration: none;
    font-size: clamp(12px, 2.3vw, 14px);
    padding: 12px 18px;
    font-weight: bold;
}

@media (max-width: 767px) {
h3 {
    margin-bottom: 5%;
}
.point_n {
    width: 18%;
}
.list-item_p {
    width: 100%;
}
.list-item {
    padding: 22% 5% 4.5%;
}
button.close-btn {
    width: 100px;
}
button.close-btn::after {
    right: 14%;
    top: 14px;
}
.list_item_inner {
    padding: 5%;
}
.list_item_flex {
    display: block;
}
.list_item_p2_l {
    width: 100%;
}
.list_item_p2_r {
    width: 100%;
}
.list_item_p6_l ,.list_item_p6_r {
    width: 100%;
}
ul.point_list {
    padding: 2% 4% 1.5%;
    font-size: clamp(14px, 2.3vw, 19px);
    margin-bottom: 7%;
}
.taL_sp {
    text-align:left;
}
}
/*6つのポイントEND*/


/*3秒診断*/
section.shindan {
    background-color: #fbfaeb;
    padding: 7% 0 5%;
}

h2 .content_ttl {
    color: #00a5b1;
    font-weight: bold;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.8;
    letter-spacing: 2px;
}

.shindan_ttl_sub {
    font-size: clamp(20px, 2.3vw, 26px);
    text-align:center;
    font-weight: bold;
    letter-spacing: 1.5px;
}


/*フォーム*/
.form_box {
  max-width: 700px;
  margin: 0  auto;
}

.form_box form {
  width: 100%;
}
.form_box form table {
  width: 100%;
}
.form_box form table tr {
  position: relative;
}
.form_box form table tr th {
    width: 40%;
    font-weight: bold;
    padding: 1em 0.5em;
    text-align: left;
    font-size: clamp(18px, 2.3vw, 23px);
}
.formTable td {
    white-space: nowrap; /* テキストを折り返さないようにする */
}

.required {
    display: inline-block;
    padding: 0 10px;
    background-color: #dc2828;
    color: white;
    margin-left: 10px;
    font-size: 15px;
    width: fit-content;
}
.form_box form table tr td {
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: bold;
}

.select-wrapper::after {
    content: "\25BC"; /* ▼ のUnicode文字を追加 */
    position: absolute;
    right: 15%;
    top: 50%; /* 上下中央に配置 */
    transform: translateY(-50%); /* 上下中央に配置 */
    pointer-events: none; /* クリックを無効化 */
}


.form_box form table tr label input {
  cursor: pointer;
  display: none;
  vertical-align: middle;
}

.form_box form table tr select, .form_box form table tr input {
    width: 90%;
    height: 3.5em;
    padding: 1em;
    margin-right: 10px;
    border-radius: 10px;
    border: none;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: clamp(18px, 2.3vw, 23px);
    appearance: none;
}

@media only screen and (max-width: 768px) {
section.shindan {
    background-color: #fbfaeb;
    padding: 14% 0 8%;
}
  .form_box {
    width: 95%;
  }
  .form_box form table tr th {
    width: 100%;
    display: block;
    padding: 1em 0 0;
  }
  .form_box form table tr td {
    padding: 0.5em 0;
    display: block;
    width: 90%;
  }
  .select-wrapper::after {
    right: 17%;
    top: 50%;
}
}

.btn {
  margin: 3% 0;
  text-align: center;
}
.btn input {
  display: inline-block;
  background: #eee;
  padding: .5em 4em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

input[type="submit"] {
    width: 600px;
    padding: 4% 3%;
    border-radius: 70px;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: clamp(24px, 4vw, 35px);
    font-weight: bold;
    border-bottom: 8px solid #c0871a;
    background-color: #fab122;
}
input{
    -webkit-appearance: none;
}
@media (max-width: 767px) {
input[type="submit"] {
    width: 100%;
    padding: 6% 3%;
    border-bottom: 6px solid #c0871a;
}
}
/*フォーム*/


/*診断popup*/
.popup-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.popup-inside {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  height: 500px;
  background: white;
  border-radius: 10px;
  border: 1px solid #008F79;
  margin: 10% auto;
  padding: 20px;
  position: relative;
}

.message {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    padding: 5% 10% 2%;
}
.message img {
    width: 30%;
    margin: 3% auto;
}

.message h2 {
    text-align: center;
    color: #00a5b1;
    font-size: 35px;
    letter-spacing: 3px;
}

.message h3 {
    font-size: 28px;
    line-height: 1.5;
}
.POP_ma {
    margin: 3%;
}
.popup_btn {
    padding: 2.5%;
    border-radius: 5px;
    border-bottom: 5px solid #b73129;
    background-color: #008F79;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 0;
}

.popup_btn a {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0;
    text-decoration: none;
}

.popup_btn span {
     font-size: 18px;
}

.message p {
     font-size: 9px;
     line-height: 1.5;
}

.close {
    position: absolute;
    top: 0;
    right: 12px;
    cursor: pointer;
    font-size: 24px;
}

@media (max-width: 767px) {
.popup-inside {
    width: 80%;
    height: 430px;
}
.message {
    padding: 6% 2% 2%;
}
.message h3 {
    letter-spacing: 0.5px;
    font-size: 6.4vw;
    margin-bottom: 2%;
    line-height: 1.4;
}
.message img {
    width: 48%;
    margin: 7% auto 4%;
}
.message p {
margin-bottom: 10px;
}
.popup_btn {
    padding: 5%;
}
.popup_btn span {
     font-size: 4vw;
}
.popup_btn a {
    font-size: 5.7vw;
}
}




/*footer*/
footer {
    background-color: #f5f9fd;
        margin-bottom: 50px;
}
.footer {
    padding: 4% 27%;
    max-width: 550px;
    margin: auto;
}
h5 {
color:#00a5b1;
text-align:center;
font-weight:bold;
font-size: clamp(18px, 2.3vw, 25px);
}
.store {
    background-color: #323232;
    width: fit-content;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    padding: 0 30px;
    display: block;
    margin: 0 auto 6%;
    font-weight:bold;
}
.footer_text {
    font-size: clamp(12px, 2.3vw, 14px);
    margin-top: 3%;
}
.notice {
    font-size: 0.9rem!important;
    line-height: 1.5;
    margin: 10px 0 0;
}
@media (max-width: 767px) {
.footer {
    padding: 10% 5%;
    margin-bottom: 15vw;
}
.notice {
    width: 100%;
}
.footer_text {
    font-size: 1rem;
    line-height: 1.5;
}
.footer_note_sp {
    text-align: center;
    border: 1px solid #323232;
    padding: 4px 0 0;
    font-size: 1.1rem;
}
}


/*step*/
section.step {
    padding: 6% 0 0;
}
.step_bg {
    background-color:#f4f4f4;
}
.flow_area {
    background-color: #a6e1e5;
    padding: 3% 18%;
    margin: 1% 0 0;
}

h4 {
    position: relative;
    overflow: hidden;
    font-size: clamp(18px, 2.3vw, 26px);
    background-color: #00a5b1;
    color: #fff;
    padding: 1.3% 1% 1.3% 22%;
    font-weight: bold;
}

h4:before {
  position: absolute;
  top: -150%;
  left: -22px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #007e86;
}

h4 span {
    font-size: clamp(18px, 2.3vw, 26px);
    font-weight: bold;
    position: absolute;
    z-index: 1;
    display: block;
    color: #fff;
    left: 8%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

/*▼*/
.arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  border-top: 40px solid #fff352;
  border-bottom: 0;
  margin: auto;
}

.guest_icon::after {
    content: 'お客さま';
    font-size: clamp(15px, 2.3vw, 14px);
    font-weight: bold;
    line-height: 1.3;
    display: inline-block;
    color: #fff;
    background: #008F79;
    border-radius: 40px;
    padding: 5px 18px;
    vertical-align: middle;
    width: fit-content;
    margin-left: 10px;
}

.our_icon::after {
    content: '八十二長野銀行';
    font-size: clamp(15px, 2.3vw, 14px);
    font-weight: bold;
    line-height: 1.3;
    display: inline-block;
    color: #fff;
    background: #007e86;
    border-radius: 40px;
    padding: 5px 18px;
    vertical-align: middle;
    width: fit-content;
    margin-left: 10px;
}

.step_inner {
    background-color: #fff;
    padding: 4% 7% 2%;
}

h6.guest {
    background-color: #a6e1e5;
    text-align: center;
    font-size: clamp(18px, 2.3vw, 24px);
    font-weight: bold;
    padding: 5px;
}
h6.our {
    border-bottom: 1px solid #00a5b1;
    text-align: center;
    font-size: clamp(18px, 2.3vw, 24px);
    font-weight: bold;
    padding: 5px;
    color: #00a5b1;
}

.step_flex {
    display: flex;
    margin: 2% 0;
    justify-content: space-between;
    align-items: center;
}

.step_p {
    width: 18%;
}
.step_text {
    width: 79%;
}

.res {
    background-color: #f4f4f4;
    padding: 2% 5%;
    margin: 3% 0;
}

.res_w {
    background-color: #fff;
}
.atm {
    border: 1px solid #00a5b1;
    padding: 2% 14%;
    margin: 4% 0;
}

/*step_accordion*/
/*.acc-container {
    margin: 1% 0 8%;
}*/

.acc-list:not(:first-child) {
  margin-top: 5%;
}

.acc-ttl {
  cursor: pointer;
  position: relative;
}

.acc-ttl:before {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #fff352;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
  z-index: 100;
}

.acc-ttl:after {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #fff352;
  transition: all .3s ease-in-out;
}

.acc-ttl.open:before {
  transform: rotate(180deg);
}
.acc-ttl.open:after {
  opacity: 0;
}

/*.acc-text {
  display: none;
}*/

dd.acc-text {
    margin: 0;
}

@media (max-width: 1200px) {
}
@media (max-width: 767px) {
section.step {
    padding: 12% 0 0;
}
.flow_area {
    padding: 9% 8%;
    margin: 1% 0 0;
}
section.step .cta_btn, section.qa .cta_btn {
    width: 100%;
    margin: 0 auto;
    padding: 4%;
}
.step_inner {
    padding: 7% 4% 2%;
}
h4 {
    padding: 2.2% 1% 2.2% 32%;
}
h4:before {
    left: -86px;
    width: 180px;
}
h4 span {
    left: 12%;
}
.guest_icon::after {
    font-size: clamp(12px, 2.3vw, 14px);
    padding: 4px 15px;
}
.our_icon::after {
    font-size: clamp(12px, 2.3vw, 14px);
    padding: 4px 15px;
}
h6.guest {
    padding: 1px;
}
.step_flex {
    margin: 5% 0 2%;
}
.step_p {
    width: 26%;
}
.step_text {
    width: 70%;
    line-height: 1.6;
}
.arrow {
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-top: 30px solid #fff352;
}
dl.acc-list {
    margin-bottom: 12%;
}
}


/*qa*/
section.qa {
    padding: 5% 0 0;
}

section.qa_inner {
    padding: 3% 0;
}

.qa_bg {
    background-color:#f4f4f4;
    padding: 3% 5% 3%;
    margin-bottom: 20px;
}

h6.bank {
    text-align: center;
    font-weight: bold;
    color: #007e86;
    background-color: #a6e1e5;
    margin-bottom: 10px;
    font-size: clamp(16px, 2.3vw, 20px);
    padding: 3px;
}

h6.cvs {
    text-align: center;
    font-weight: bold;
    color: #00a5b1;
    border:1px solid #00a5b1;
    font-size: clamp(16px, 2.3vw, 20px);
    padding: 3px;
}

.qa_flex {
    display: flex;
    justify-content: space-between;
    margin: 3% 0 1%;
    flex-direction: row-reverse;
}

.qa_flex2 {
    display: flex;
    justify-content: space-between;
    margin: 3% 0 1%;
    align-items: center;
}

.qa_p ,.qa_p2 {
    width: 23%;
}
.qa_text, .qa_text2 {
    width: 72%;
}
.qa_text_reset {
    width: 100%;
}

.qa_step {
    border-top: 1px solid #00a5b1;
    position: relative;
    padding-top: 15px;
}
.abs_qa_step {
    position: absolute;
    width: 15%;
    top: -10px;
    left: 20px;
}

.type {
    background-color: #fff;
    padding: 3.5%;
    width: calc(50% - 15px);
    margin: 2% 0;
    box-sizing: border-box;
}

.schedule_flex {
    display: flex;
    justify-content: space-between;
}
.type_flame {
    border: 1px solid #00a5b1;
    padding: 7%;
    margin-top:8%;
}

.contact {
    background-color: #f4f4f4;
    padding: 3% 5%;
    text-align: center;
    margin: 3% 0 0;
}
.contact img {
    width: 50%;
    margin: auto;
}

.qa-list dl {
    position: relative;
    margin: 0;
    padding: 2% 5%;
    cursor: pointer;
}

.qa-list dl::before {
    position: absolute;
    top: 30px;
    right: 100px;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 3px solid #00a5b1;
    border-right: 3px solid #00a5b1;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin-bottom: 0%;
    padding: 0 0 5px 60px;
    font-weight: bold;
    font-size: clamp(17px, 2.3vw, 22px);
    border-bottom: 1px solid #00a5b1;
}
dt.q::before {
    content: '';
    width: 35px;
    height: 35px;
    position: absolute;
    background-image: url(/kojin/kariru/kanta_card/img/q.png);
    top: -2px;
    left: 10px;
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
}

.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
}
.qa-list dl dd p {
    font-size: clamp(15px, 2.3vw, 17px);
    line-height: 1.7;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

/*section.qa .cta-area {
    padding: 4% 0 0;
}*/

@media screen and (max-width: 767px) {
section.qa {
    padding: 12% 0 0;
}
dt.q::before {
    width: 30px;
    height: 30px;
    top: -2px;
    left: 8px;
}
.qa_text2 {
    width: 60%;
}
.qa_p2 {
    width: 35%;
}

.qa_text {
    width: 100%;
}
.qa_p {
    width: 100%;
}

.qa-list dl {
    position: relative;
    padding: 15px 0px;
}
.qa-list dl::before {
    top: 20px;
    right: 20px;
    width: 7px;
    height: 7px;
}

.qa-list dl dt {
    padding: 0 0 7px 50px;
    line-height: 1.4;
}
.qa-list dl dd {
    margin: 15px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
.schedule_flex {
    display: block;
}
.type {
    width: 100%;
    margin: 5% 0;
    padding: 7% 5%;
}
.type_flame {
    padding: 4%;
}
.qa_flex {
    display: block;
}
.abs_qa_step {
    width: 25%;
}
.qa_p {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.qa_p img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 85px;
}
section.qa .cta-area {
    padding: 2% 0 8%;
}
.qa_bg {
    padding: 4% 5% 4%;
}
.contact img {
    width: 100%;
}
.contact {
    padding: 5%;
    margin: 5% 0;
}
}

/*cookie*/
  .cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 12px;
    color: #fff;
    background: rgba(0,0,0,.7);
    padding: 1.2em;
    box-sizing: border-box;
    visibility: hidden;
    z-index: 9999; /* クッキー同意ボタンを追従ボタンよりも前面に表示 */
  }
  .cookie-consent.is-show {
    visibility: visible;
  }
  .cookie-consent a {
    color: #1e90ff !important;
    text-decoration: none;
  }
.cookie-agree {
    color: #fff;
    background: #1e90ff;
    padding: 0.5em;
    width: 80px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cookie-more {
    color: #1e90ff;
    background: #fff;
    border: 2px solid #1e90ff;
    padding: 0.5em;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
  .cookie-agree:hover , .cookie-more {
    cursor: pointer;
  }
    .cookie-text {
    width: 80%;
}
.cookie-btn {
    width: 200px;
    display: flex;
    justify-content: space-between;
}

  /* パッと消える */
  .cc-hide1 {
    display: none;
  }
  /* ゆっくり消える */
  .cc-hide2 {
    animation: hide 1s linear 0s;
    animation-fill-mode: forwards;
  }
  @keyframes hide {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
      visibility: hidden;
    }
  }
  /* メディアクエリ */
  @media screen and (max-width: 600px) {
    .cookie-consent {
      flex-direction: column;
  }
  .cookie-text {
      margin-bottom: 1em;
      width: 95%;
  }
  .cookie-btn {
    width: 95%;
}
.cookie-agree {
    padding: 0.2em 1.5em;
    width: 38%;
}
.cookie-more {
    padding: 0.2em 1.5em;
    width: 38%;
}
}





