@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Roboto:wght@500;700&display=swap");
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

/* PC スマホ　横幅で切替指定
*/
.for-pc { display:block; }
.for-sp { display:none; }

@media only screen and (max-width : 767px){
  .for-pc { display:none; }
  .for-sp { display:block; }
}

/* HTML5 display-role reset for older browsers
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  font-size: 62.5%;
  max-width: 100%;
  overflow-x: hidden;
	 letter-spacing: 0.15em;
}

ul {
  list-style: none;
}

.content{
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
	letter-spacing: 0.08em;
font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
  color:#535353;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 980px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
    max-width: 100%;
  overflow-x: hidden;
  width: 100%;
  }
}

body.drawer-active {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

a {
  color:  #f12d43;
  text-decoration: underline;
}
a:hover {
  color:#ff7e8d;
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  image-rendering: auto;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}

/*画像--------------------------------------------------*/
.img_c img {
  text-align: center;
  margin: auto;
}

.top_image_100{
  height: 100%;
  width: 100%;
}
/*メイン画像--------------------------------------------------*/
.top_pc img {
  text-align: center;
  margin: auto;
  margin: 0px auto 15px auto;
}

.top_sp{
  height: 100%;
  width: 100%;
  margin: 0% 0% 0% 0%;
}
/*説明画像--------------------------------------------------*/
.flow_pc img {
  text-align: center;
  margin: auto;
  margin: 0px auto 15px auto;
}

.flow_sp{
  height: 100%;
  width: 100%;
  margin: 3% 0% 3% 0%;
}
/*トップボタン余白--------------------------------------------------*/
.sp_top_btn_box{
  text-align: center;
  margin: auto;
  margin: 0% 5% 0% 5%;
  padding: 2% 0% 0% 0%;
}
/*--------------------------------------------------*/
h2{
  display: block;
  }
h3{
display: block;
}

/*---------たてゆれ-アニメーション------------------------------------------------------------------*/
.fuwafuwa {
  animation: fuwafuwa 3s linear infinite;
} 

@keyframes fuwafuwa {
0% { transform: translateY(0) }
33.33333% { transform: translateY(10px) }
66.66667% { transform: translateY(0) }
100% { transform: translateY(0) }
}
/*---------きらりんアニメーション---------------------------------------------------------------------*/
.animation2{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}

.keyframe2{
  animation-name: anim_h;
}

@keyframes anim_h {
  0% {
    transform: translate(0px, 0);
  }
  100% {
    transform: translate(30px, 0);
  }
}

.reflection-img{
  /*width       :100%;*/
  height      :100%;
  position    :relative;
  overflow    :hidden;
}

.reflection {
  height      :100%;
  width       :30px;
  position    :absolute;
  top         :-180px;
  left        :0;
  background-color: #fff;
  opacity     :0;
  transform: rotate(45deg);
  animation: reflection 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
  -moz-transform: rotate(45deg);
  -moz-animation: reflection 2s ease-in-out infinite;
  -ms-transform: rotate(45deg);
  -ms-animation: reflection 2s ease-in-out infinite;
  -o-transform: rotate(45deg);
  -o-animation: reflection 2s ease-in-out infinite;
  line-height: 0%;
}

@keyframes reflection {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflection {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-moz-keyframes reflection {
  0% { -moz-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -moz-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -moz-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -moz-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-ms-keyframes reflection {
  0% { -ms-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -ms-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -ms-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -ms-transform: scale(50) rotate(45deg); opacity: 0; }
}
@-o-keyframes reflection {
  0% { -o-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -o-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -o-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -o-transform: scale(50) rotate(45deg); opacity: 0; }
}
/*----------------------------PC  header---------------------------*/
.header__wrap {
    max-width: 960px;
    margin: 0 auto;
}
/*----------------------------PC SP footer---------------------------*/
#footer {
        font-size: 15px;
    padding: 15px 0px 15px 0px;
    background-color: #ff6b7c;
	color: #fff;
}

@media screen and (max-width: 767px) {
  #footer {
    padding:5% 5% 5% 5%;
    font-size: 13.5px;
	  font-weight: 400;
  }
}

#footer p {
  line-height: 1.75;
	font-size: 13px;
}

.footer__wrap {
  max-width: 960px;
  margin: 0 auto;
}
.footer_img {
  float: right;
  width: 148px;
}
@media screen and (max-width: 767px) {
  .footer_img {
  float: right;
  width: 50%;
}
}
.copyright {
  display: block;
  margin: 10px 0px 0px 0px;
	  line-height: 1.75;
	font-size: 11px;
}

@media screen and (min-width: 768px) {
  .copyright {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .copyright {
    margin-top: 3.15385vw;
  }
}
/*----------------------------テキストのゆれ　アニメーション--------------------------*/
@keyframes sway22 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-5px);
  }
  100% {
    transform: translateX(0);
  }
}

.text_yurayura {
  animation: sway22 2s infinite ease-in-out;
  display: inline-block;
}
/*----------------------------テキストのゆれ　アニメーションをやめる--------------------------*/
.text_yurayura_no {
  
  display: inline-block;
}
/*----------------------------ふわっと表示させる記述---------------------------*/
.e {
  opacity: 0;
}
.e-v {
  animation: fadeIn 1s ease forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY( 20px );
  }
  100% {
    opacity: 1;
    transform: translateY( 0 );
  }
}

/*--------------------------------------PC SP support-------------------------------------*/

.support .support-notice a {
  color:#003670;
  text-decoration:underline;
}
.support .support-notice a:hover {
  color:#427dbd;
  text-decoration:underline;
}
.support .line_t{
	    border-top: 1px solid #c6d5de;
}

.support-notice__l_in{
	font-weight: 600;
    border-bottom: solid 2px #ffd5bd;
	line-height: 1.0;
	padding: 0px 0px 2px 0px;
	margin: 0px 0px 3px 0px;
}
@media screen and (max-width: 767px) {
  .support-notice__l_in{
	    font-weight: 600;
        border-bottom: solid 2px #ffd5bd;
        line-height: 1.6;
        padding: 0px 0px 0px 0px;
        margin: 0px 0px 7px 0px;
        display: inline-block;
}
}

.support-notice__l li{
	padding: 0px 0px 23px 0px;
}
@media screen and (max-width: 767px) {
  .support-notice__l li{
	padding: 0px 0px 25px 0px;
}
}

.support-box {
        box-sizing: border-box;
    max-width: 960px;
    margin: 0px auto 30px auto;
    padding: 31px 42px 20px 42px;
    background-color:#fff;
    box-shadow: 0 2px 5px rgb(248 188 195);
    border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .support-box {
    margin: 2vw 5% 7vw 5%;
    padding: 5.15385vw 3.41026vw 2.15385vw 3.41026vw;
  }
}
.support-box_all {
	 padding: 30px 0px 0px 0px;
    background-color: #ffdbdf;
}
.support-box p {
  font-size: 1.8rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .support-box p {
    font-size: 12px;
    font-size: 3.07692vw;
  }
}

.support-box p:not(:last-child) {
  margin-bottom: 20px;
}

.support-box p.support-box-notice {
  color: #0f3d9a;
}

.support-box__ttl {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  margin: 0px 0px 6px 0px;
  text-align: center;
  color:#f12d43;
}

@media screen and (max-width: 767px) {
  .support-box__ttl {
    font-size: 21px;
	line-height: 1.4;
	    margin: 0px 0px 0px 0px;
  }
}

.support-box__ttl_in {
  font-size: 15px;
	padding: 0px 0px 15px 0px;
	display:block;
	font-weight: 600;
}
@media screen and (max-width: 767px) {
  .support-box__ttl_in {
  font-size: 15px;
	  padding: 0px 0px 10px 0px;
 }
}
.support-box__tel {
  list-style: none;
  display: flex;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 956px) {
  .support-box__tel  {
  flex-wrap: wrap;
	width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .support-box__tel a.no {
    pointer-events: none;
  }
}

.support-box__tel .support_t_r {
display: block;
text-align: center;
padding: 1px 0px 10px 0px;
line-height: 1.6;
font-size: 15px;
}

.support-notice {
  line-height: 1.66;
  max-width: 960px;
  margin: 0 auto;
  overflow-wrap: break-word;
  padding: 0px 0px 20px 0px;
}

@media screen and (max-width: 767px) {
  .support-notice {
    margin:0% 5% 0% 5%;
  }
}

.support-notice ul li {
  font-size: 15px;
    line-height: 1.7;
    display: block;
    margin: 0px 0% 25px 0%;
    font-weight: normal;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .support-notice ul li {
    font-size: 15px;
	 line-height: 1.7;
	  margin:0% 0% 25px 0%;
  }
}
/*------------*/
.support-notice__ttl {
	font-size: 17px;
    font-weight: 600;
    padding: 0px 0px 8px 0px;
    line-height: 1.5;
    color:#f12d43;
    display: block;
    text-align: center;
}
@media screen and (max-width: 767px) {
	.support-notice__ttl {
font-weight: 700;
		line-height: 1.4;
		font-size: 19px;
}
}

.support_list{
  margin: 0px 0px 0px 0px;
  width: 50%;
  margin-right: 2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
.support_list{
  margin: 0px 0px 0px 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
}
.support-box__tel a{
	display: block;
}
/*------------*/
.support-area2-btn a {
      position: relative;
    top: 0;
    display: block;
    margin: 17px 0px 17px 0px;
    padding: 11px 0px 0px 0px;
    box-shadow: 0 4px #b12b3a;
    border-radius: 100px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: .2s ease-in-out;
    background: #ff6b7c url(../images/arrow2.png) center right 16px no-repeat;
    background-size: 10px 21px;
    height: 42px;
}
@media screen and (max-width: 767px) {
.support-area2-btn a {
      position: relative;
    top: 0;
    display: block;
    margin: 17px 0px 10px 0px;
    padding: 11px 0px 0px 0px;
    box-shadow: 0 4px #b12b3a;
    border-radius: 100px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    transition: .2s ease-in-out;
    background: #ff6b7c url(../images/arrow2.png) center right 16px no-repeat;
    background-size: 10px 21px;
    height: 42px;
}
}
.support-area2-btn a:hover {
  top: 9px; /* 元の位置から9px分下げる */
  box-shadow: 0 0 #a2dc5f; /* 影を0pxにする */
  background:#ffa8b2 url(../images/arrow2.png) center right 16px no-repeat;
  background-size: 10px 21px;
}

.support-area3-btn a {
  position: relative;
  top: 0;
  display: block;
  margin: 17px 0px 17px 0px;
  padding: 9px 0px 0px 0px;
  background-color: #ff6b7c;
  box-shadow: 0 4px #b12b3a;
  border-radius: 100px;
  font-size: 22px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: .2s ease-in-out;
	height: 45px;
}
@media screen and (max-width: 767px) {
  .support-area3-btn a {
  position: relative;
  top: 0;
  display: block;
  margin: 17px 0px 10px 0px;
  padding: 9px 0px 0px 0px;
  background-color: #ff6b7c;
  box-shadow: 0 4px #b12b3a;
  border-radius: 100px;
  font-size: 22px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: .2s ease-in-out;
	height: 45px;
}
}
.support-area3-btn a:hover {
  top: 9px; /* 元の位置から9px分下げる */
  box-shadow: 0 0 #a2dc5f; /* 影を0pxにする */
  background: #ffa8b2 url(../images/arrow2.png) center right 16px no-repeat;
  background-size: 10px 21px;
}

.support-text_in{
font-size: 130%;
	display: inline;
}
.support-area2-btn .support_img_r{
	display: inline-block;
	width: 9%;
	position: relative;
    top: 5px;
}
.support-area3-btn .support_img_r{
	display: inline-block;
    width: 11%;
    position: relative;
    top: 1px;
}

.cautionbox {
  max-width: 960px;
  margin: 0 auto;
  padding: 0px 0px 0px 0px;
}
@media screen and (max-width: 767px) {
  .cautionbox {
  max-width: 90%;
 }
}
.cautionbox_b {
  font-weight: 600;
    font-size: 140%;
    line-height: 1.0;
	    color: #ffffb2;
}

.cautionbox_b .support_img_rs {
  display: inline-block;
    width: 4%;
    position: relative;
    top: 5px;
}
@media screen and (max-width: 767px) {
.cautionbox_b .support_img_rs {
  display: inline-block;
    width: 7%;
    position: relative;
    top: 5px;
}
}
.m_text_in6 .support_img_rs2 {
  display: inline-block;
    width: 2%;
    position: relative;
    top: 5px;
    margin: 0px 3px 0px 6px;
}
@media screen and (max-width: 767px) {
.m_text_in6 .support_img_rs2 {
  display: inline-block;
    width: 3%;
    position: relative;
    top: 5px;
    margin: 0px 3px 0px 6px;
}
}
.caution_ttl {
  font-size:52px;
  font-weight:800;
  line-height: 1.0;
	text-align: center;
	 color: #fff;
	    padding: 0px 0px 10px 0px;
}
@media screen and (max-width: 767px) {
  .caution_ttl {
    font-size: 32px;
    line-height: 1.6;
	      padding: 0px 0px 0px 0px;
  }
}

.caution_ttl_in4 {
    color: #ffff89;
	    font-size: 120%;
}

.caution_c{
	text-align: center;
	padding: 22px 0px 20px 0px;
}
.caution_txt {
         font-size: 16px;
    line-height: 1.7;
    padding: 20px 0px 0px 0px;
	   
}
.caution_txt li {
  margin:0px 0px 20px 0px;
  font-weight:normal;
}
@media screen and (max-width: 767px) {
  .caution_txt li {
	  line-height: 1.6;
	  text-align: center;
 }
}
.caution_txt li b{
  font-weight: 700;
   background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(0%, #113777));
   background: -webkit-linear-gradient(transparent 40%, #113777 0%);
   background: linear-gradient(transparent 40%, #113777 0%);
}
.caution_txt_in {
	display: block;
    padding: 16px 0px 0px 0px;
}

/*------------------------------explanation--------------------------*/
section.explanation {
  background: #f1f4f8;
	padding:40px 0px 0px 0px;
}
 @media (max-width: 768px) {
  section.explanation {
    padding:0px 0px 20px 0px;
  }
}
.container {
    max-width: 100%;
    margin:0px auto 0px auto;
    padding:0px 0px 0px 0px;
}


.explanation__main {
  max-width: 760px;
  margin: 0 auto;
  padding: 0px 0px 0px 0px;
}
@media screen and (max-width: 767px) {
    .explanation__main {
    }
}

.explanation__title {
    margin: 10px 0px 0px 0px;
	  font-size: 2rem;
	text-align: center;
}
@media screen and (max-width: 767px) {
    .explanation__title {
    margin: 10px 0px 0px 0px;
	    font-size: 4vw;
	text-align: center;
}
}

.e_text1{
	    line-height: 1.8;
    color: #fff;
    font-size: 15px;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.18em;
    background: #88a1c3;
}
.e_text2{
	font-size: 15px;
	padding: 0px 0px 0px 0px;
}


.explanation .explanation__title {
    font-size: var(--h2-size, clamp(24px, 4vw, 26px));
}
.explanation__dl {
    border-top: 1px solid #99b1c8;
    font-weight: var(--font-light);
}
@media screen and (min-width: 768px) {
    .explanation__dl {
    }
}

[data-scroll-trigger=top].\:visible {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
[data-scroll-trigger=top] {
    -webkit-transform: translateY(8%);
    transform: translateY(8%);
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    transition-timing-function: cubic-bezier(.165,.84,.44,1);
    will-change: transition;
}
.explanation__dt {
    flex: 0 0 208px;
	font-weight: 600;
	    color: #003670;
}
@media screen and (max-width: 575.98px) {
    .explanation__dt {
        flex: 0 0 100%;
    }
}
.explanation__dd {
    flex: 0 0 calc(100% - 208px);
    line-height: 200%;
}
@media screen and (max-width: 575.98px) {
    .explanation__dd {
        flex: 0 0 100%;
		font-size:15px;
    }
}
.explanation__dl .dl-row {
        display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px solid #c6d5de;
    font-size: 15px;
}
@media screen and (max-width: 575.98px) {
   .explanation__dl .dl-row {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 1px solid #c6d5de;
	font-size: 15px;
}
}
.explanation__dl .dl-row_n {
        display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    border-bottom: 0px solid #c6d5de;
    font-size: 15px;
}
@media screen and (max-width: 575.98px) {
   .explanation__dl .dl-row_n {
    display: flex;
    flex-wrap: wrap;
    padding: 25px 0;
    border-bottom: 0px solid #c6d5de;
	font-size: 1.4rem;
}
}

div.explanationbox {
  max-width: 960px;
  margin: 0 auto;
  padding: 0px 16px 46px 16px;
}
 @media (max-width: 768px) {
  div.explanationbox {
    padding: 25px 16px 0px 16px;
  }
 }
.explanation__dt_in {
    font-size: 12px;
	font-weight: normal;
}
/*=============================================================================*/

.warning_title{
        line-height: 1.0;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.11em;
    padding: 25px 0px 0px 0px;
    background: #ff6b7c;
    margin: 0px 0px 0px 0px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    height: 42px;
	border: 2px solid #fff;
}
@media screen and (max-width: 767px) {
 .warning_title{
              line-height: 1.5;
        font-size: 18px;
        padding: 14px 0px 8px 0px;
        height: 32px;
}
}
.warning_title_in {
       font-size: 50%;
    padding: 8px 10px 6px 10px;
    background: #ffffb2;
    color: #ff6b7c;
    margin: 0px 8px 0px 0px;
    letter-spacing: 0.03em;
    position: relative;
    top: -5px;
}
.warning_title .support_img_rs {
    display: inline-block;
    width: 3.5%;
    position: relative;
    top: 5px;
    margin: 0px 3px 0px 0px;
}
@media screen and (max-width: 767px) {
.warning_title .support_img_rs {
    display: inline-block;
    width: 4%;
    position: relative;
    top: 5px;
    margin: 0px 3px 0px 0px;
}
}
.warning_title .support_img_rs2 {
    display: inline-block;
    width: 4.5%;
    position: relative;
    top: 15px;
    margin: 0px 3px 0px 0px;
}
@media screen and (max-width: 767px) {
.warning_title .support_img_rs2 {
    display: inline-block;
    width: 6.5%;
    position: relative;
    top: 10px;
    margin: 0px 3px 0px 0px;
}
}
.warning_title .support_img_rs3 {
       display: inline-block;
    width: 2.5%;
    position: relative;
    top: 10px;
    margin: 0px 3px 0px 4px;
}
@media screen and (max-width: 767px) {
.warning_title .support_img_rs3 {
       display: inline-block;
    width: 4.5%;
    position: relative;
    top: 10px;
    margin: 0px 3px 0px 4px;
}
}
.contents_text1 .support_img_rs3 {
       display: inline-block;
    width: 2.5%;
    position: relative;
    top: 10px;
    margin: 0px 3px 0px 4px;
}
@media screen and (max-width: 767px) {
.contents_text1 .support_img_rs3 {
       display: inline-block;
    width: 4.5%;
    position: relative;
    top: 10px;
    margin: 0px 3px 0px 4px;
}
}
.r_text_in_4 .support_img_rs3 {
       display: inline-block;
    width: 2.5%;
    position: relative;
    top: 10px;
    margin: 0px 3px 0px 4px;
}
@media screen and (max-width: 767px) {
.r_text_in_4 .support_img_rs3 {
       display: inline-block;
    width: 4.5%;
    position: relative;
    top: 10px;
    margin: 0px 3px 0px 4px;
}
}
.warning_title .support_img_rs4 {
      display: inline-block;
    width: 3.5%;
    position: relative;
    top: 17px;
    margin: 0px 3px 0px 0px;
}
@media screen and (max-width: 767px) {
.warning_title .support_img_rs4 {
      display: inline-block;
    width: 5.5%;
    position: relative;
    top: 13px;
    margin: 0px 3px 0px 0px;
}
}
.warning_text{
        line-height: 1.8;
    color: #333;
    font-size: 15px;
    padding: 6px 0px 0px 0px;
	text-align: center;
	display: inline;
	    font-weight: normal;
	margin: 0px 0px 0px 10px;
}
.warning_text_in{
     background: #cee0f7;
    color: #103772;
}
.warning_title_ina{
    position: relative;
    top: -12px;
	font-size: 150%;
	font-weight: bolder;
	    color: #ffffb2;
}
@media screen and (max-width: 767px) {
 .warning_title_ina{
    position: relative;
    top: -7px;
}
  }
.warning_title_ina2{
    position: relative;
    top: -26px;
}
@media screen and (max-width: 767px) {
 .warning_title_ina2{
    position: relative;
    top: -13px;
}
  }
.warning_title_ina3{
    position: relative;
    top: -15px;
}
@media screen and (max-width: 767px) {
 .warning_title_ina3{
    position: relative;
    top: -8px;
}
  }
 .s_accordion_box{
    padding: 0px 35px 35px 35px;
}
@media screen and (max-width: 767px) {
 .s_accordion_box{
    padding: 0px 5% 5% 5%;
}
  }
/*=============================================================================*/
.c_text_in223r {
        display: block;
    text-align: center;
    width: 960px;
    margin: 0px auto 0px auto;
    font-size: 50px;
    text-shadow: 0px 0px 5px rgb(223 61 82);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.10em;
    border-bottom: dotted 1px #fff;
    padding: 21px 0px 20px 0px;
    color: #fff;
}
@media screen and (max-width: 767px) {
 .c_text_in223r {
              display: block;
        text-align: center;
        padding: 20px 0px 15px 0px;
        width: 90%;
        margin: auto;
        font-size: 31px;
	 line-height: 1.4;
}
  }

.c_text_in223r_in2 {
    font-size: 80%;
	line-height: 1.0;
}
.c_text_in223r_in222 {
    font-size: 50%;
	line-height: 1.0;
	font-weight: normal;
}
.c_text_in223 {
   background:linear-gradient(181deg, rgb(255 77 98) 0%, rgb(255 170 181) 20%, rgb(255 214 219) 70%, rgb(255 255 255) 90%, rgba(255, 255, 255, 1) 100%);
    line-height: 1.6;
    display: block;
    text-align: center;
}
@media screen and (max-width: 767px) {
.c_text_in223 {
        font-size: 17px;
    line-height: 1.8;
    display: block;
    text-align: center;
}
  }

/*-------------------------------------------------------------------*/
.m_text_in {
    padding: 32px 0px 5px 0px;
    line-height: 2.0;
    text-align: center;
    font-size: 17px;
    font-weight: normal;
    text-shadow: 0px 0px 5px rgb(223 61 82);
    color: #fff;
}
@media screen and (max-width: 767px) {
 .m_text_in {
     font-size: 15px;
	 line-height: 1.8;
	 padding: 16px 0px 5px 0px;
}
  }
.m_text_in2 {
	display: block;
	padding: 0px 0px 10px 0px;
}
@media screen and (max-width: 767px) {
.m_text_in2 {
	display: block;
	padding: 0px 0px 20px 0px;
	        line-height: 2.2;
}
  }
.m_text_in2_2 {
	display: block;
	padding: 5px 0px 0px 0px;
}
@media screen and (max-width: 767px) {
.m_text_in2_2 {
	display: block;
	padding: 5px 0px 0px 0px;
	        line-height: 2.2;
}
  }
.m_text_in3 {
    font-weight: 600;
    display: block;
    font-size: 150%;
    padding: 1px 0px 21px 0px;
}
.m_text_in4 {
    font-size: 120%;
	line-height: 1.0;
}
.m_text_in5 {
    font-size: 160%;
    line-height: 1.0;
    position: relative;
    top: 3px;
}
.m_text_in5_5 {
    font-size: 100%;
    line-height: 1.0;
    position: relative;
    top: -5px;
}
.m_text_in5_5_5 {
    font-size: 130%;
    line-height: 0.6;
    position: relative;
    top: 0px;
}
.m_text_in5_6 {
    font-size: 50%;
    line-height: 1.0;
    position: relative;
    top: -1px;
}
@media screen and (max-width: 767px) {
.m_text_in5_6 {
    font-size: 50%;
    line-height: 1.0;
    position: relative;
    top: 0px;
}
}
.m_text_in6 {
	    display: block;
    padding: 0px 0px 15px 0px;
    line-height: 2.2;
}

.m_text_in6 a{
	color: #ffffb2;
}
.m_text_in6 a:hover{
	color:#ffffd6;
}
.m_text_in7_7 {
	font-size: 160%;
}
/*-------------------------------------------------------------------*/
.tbl-unique-csmnw35r_box {
  background: #fff;
  width: 100%; /* 幅固定やめて全幅 */
  max-width: 960px; /* デスクトップでは最大900px */
  padding: 0px;
  border-radius: 6px;
  box-sizing: border-box;
	    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0px auto 50px auto;
}

/* スマホ向けレスポンシブ */
@media screen and (max-width: 767px) {
  .tbl-unique-csmnw35r_box {
    width: 90%;
    margin: 5% auto;
    padding: 0;
  }
}

/*-------------------------------------------------------------------*/
.menu-wrapper-vx82qj9d {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
	padding: 35px 0px 50px 0px ;
}
@media screen and (max-width: 767px) {
  .menu-wrapper-vx82qj9d {
    width: 90%;
    margin: 0 auto;
    padding: 0px 0px 20px 0px;
}
}
.button-container-vx82qj9d {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.menu-button-vx82qj9d {
  flex: 1 1 calc(33.333% - 11px);
  min-width: 140px;
}
.menu-button-vx82qj9d_tikatika {
 /*animation: tikatika 1s infinite;*/
}
.menu-button-vx82qj9d_b {
 font-weight: 600;
	font-size: 150%;
}
@media screen and (max-width: 767px) {
.menu-button-vx82qj9d_b {
 font-weight: 600;
	font-size: 120%;
}
}
.menu-button-vx82qj9d a.m_bg {
	background-color: #fff;
}
.menu-button-vx82qj9d a.m_bg2 {
	background-color: #ffffb2;
}
.menu-button-vx82qj9d a {
  display: block;
    width: 100%;
    padding: 18px 0px 0px 0px;
    color: #f12d43;
    border-radius: 116px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    word-break: break-word;
    box-shadow: 0px 0px 5px rgb(245 98 116);
    letter-spacing: 0.03em;
    position: relative;
    height: 42px;
}
@media screen and (max-width: 767px) {
  .menu-button-vx82qj9d a {
  display: block;
    width: 100%;
    padding: 10px 0px 0px 0px;
    color: #f12d43;
    border-radius: 116px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    word-break: break-word;
    box-shadow: 0px 0px 5px rgb(245 98 116);
    letter-spacing: 0.03em;
    position: relative;
    height: 42px;
}
}
.menu-button-vx82qj9d a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #ff6b7c;
  border-right: 2px solid #ff6b7c;
  transform: translateY(-2px) rotate(135deg);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .menu-button-vx82qj9d a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 11px;
  width: 11px;
  height: 11px;
  margin: auto;
  border-top: 2px solid #ff6b7c;
  border-right: 2px solid #ff6b7c;
  transform: translateY(-2px) rotate(135deg);
  box-sizing: border-box;
}
}
.menu-button-vx82qj9d a:hover {
  background-color:#ffcfd6;
}

@media (max-width: 768px) {
  .menu-button-vx82qj9d {
    flex: 1 1 100%;
  }
}
.menu-button-vx82qj9d a .support_img_rs {
   display: inline-block;
    width: 7%;
    position: relative;
    top: 3px;
    margin: 0px 4px 0px 0px;
}
@media (max-width: 768px) {
.menu-button-vx82qj9d a .support_img_rs {
   display: inline-block;
    width: 5%;
    position: relative;
    top: 3px;
    margin: 0px 4px 0px 0px;
}
}
.menu-button-vx82qj9d a .support_img_rs2 {
   display: inline-block;
    width: 9%;
    position: relative;
    top: 7px;
    margin: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
.menu-button-vx82qj9d a .support_img_rs2 {
   display: inline-block;
    width: 8%;
    position: relative;
    top: 13px;
    margin: 0px 0px 0px 0px;
}
}
.menu-button-vx82qj9d a .support_img_rs3 {
   display: inline-block;
    width: 7%;
    position: relative;
    top: 13px;
    margin: 0px 2px 0px 4px;
}
@media (max-width: 768px) {
  .menu-button-vx82qj9d a .support_img_rs3 {
   display: inline-block;
    width: 5%;
    position: relative;
    top: 8px;
    margin: 0px 0px 0px 4px;
}
}
.menu-button-vx82qj9d a .support_img_rs5 {
   display: inline-block;
    width: 11%;
    position: relative;
    top: 13px;
    margin: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
.menu-button-vx82qj9d a .support_img_rs5 {
   display: inline-block;
    width: 8%;
    position: relative;
    top: 13px;
    margin: 0px 0px 0px 0px;
}
}
.menu-button-vx82qj9d a .j9d_in{
	font-size: 80%;
    background: #ff6b7c;
    color: #fff;
    padding: 4px;
    font-weight: normal;
    margin: 0px 4px 0px 0px;
    position: relative;
    top: -1px;
}
.menu-button-vx82qj9d_in {
         font-size: 70%;
    padding: 4px 11px 2px 11px;
    background: #ff6b7c;
    color:#ffffb2;
    margin: 0px auto 0px auto;
    font-weight: normal;
    letter-spacing: 0.11em;
    position: absolute;
    top: -41px;
    left: 5px;
    border: 2px solid #ffffb2;
    width: 80%;
    /* border-top-left-radius: 16px; */
    /* border-top-right-radius: 16px;*/
}
@media (max-width: 768px) {
.menu-button-vx82qj9d_in {
        font-size: 70%;
        padding: 6px 4px 6px 4px;
        background: #ff6b7c;
        color: #fff;
        margin: 0px 10px 0px 0px;
        font-weight: normal;
        letter-spacing: 0.05em;
        position: relative;
        top: -3px;
        width: 100%;
        border: 0px solid #fff;
	border-radius: 0px;
}
}
.qj9d_b{
        position: relative;
    top: -6px;
}
@media (max-width: 768px) {
.qj9d_b{
        position: relative;
    top: -1px;
}
}
.qj9d_b2{
        position: relative;
    top: -16px;
}
@media (max-width: 768px) {
.qj9d_b2{
        position: relative;
    top: -7px;
}
}
.qj9d_b3{
        position: relative;
    top: -16px;
}
@media (max-width: 768px) {
.qj9d_b3{
        position: relative;
    top: -3px;
}
}
/*-------------------------------------------------------------------*/
.contents_text1{
	    line-height: 1.8;
    display: block;
    text-align: center;
    font-size: 18px;
	padding: 15px 0px 0px 0px;
}
@media (max-width: 768px) {
 .contents_text1{
	    line-height: 1.8;
    display: block;
    text-align: center;
    font-size: 15px;
	 padding: 20px 0px 0px 0px;
}
}
.contents_text2{
	    line-height: 1.8;
    display: block;
    text-align: center;
    font-size: 18px;
	padding: 0px 0px 0px 0px;
}
@media (max-width: 768px) {
  .contents_text2{
	    line-height: 1.8;
    display: block;
    text-align: center;
    font-size: 14px;
	padding: 5% 5% 0px 5%;
}
}
.contents_text1_s{
	 font-weight: 600;
	font-size: 120%;
	line-height: 1.0;
}
@media (max-width: 768px) {
 .contents_text1_s{
	 font-weight: 600;
	font-size: 120%;
	line-height: 1.8;
	 padding: 10px 0px 10px 0px;
	display: inline;
}
}
.contents_text1_s9{
	font-size: 70%;
	line-height: 1.0;
}
.contents_text1_s2{
    font-weight: 600;
    font-size: 240%;
    line-height: 1.0;
    padding: 0px 0px 4px 0px;
    text-align: center;
    display: inline;
    margin: 0px auto 15px auto;
    color: #f12d43;
}
@media (max-width: 768px) {
 .contents_text1_s2{
    font-weight: 600;
    font-size: 140%;
    line-height: 1.0;
    padding: 0px 0px 4px 0px;
    text-align: center;
    display: inline;
    margin: 0px auto 15px auto;
    color: #f12d43;
}
}
.contents_text1_s2 .support_img_rs {
   display: inline-block;
    width: 4%;
    position: relative;
    top: 2px;
    margin: 0px 3px 0px 3px;
}

.contents_text1_s2_2{
        font-weight: 600;
    font-size: 360%;
    line-height: 1.0;
    padding: 0px 0px 4px 0px;
    text-align: center;
    display: inline-block;
    margin: 18px 0px 15px 0px;
    color: #f12d43;
    background: linear-gradient(transparent 30%, #ffffb2 30%);
	/*animation: poyo2 2s ease-out infinite;*/
}
@media (max-width: 768px) {
 .contents_text1_s2_2{
        font-weight: 600;
    font-size: 260%;
    line-height: 1.0;
    padding: 0px 0px 4px 0px;
    text-align: center;
    display: inline-block;
    margin: 8px 0px 25px 0px;
    color: #f12d43;
    background: linear-gradient(transparent 30%, #ffffb2 30%);
}
}

.contents_text1_s2_2_2{
	animation: poyo2 2s ease-out infinite;
    background: linear-gradient(transparent 30%, #ffffb2 30%);
    display: inline;
    margin: auto;
    padding: 0px;
}
@keyframes tikatika {
  0%   { opacity: 1; }
  2%   { opacity: 0; }
  4%   { opacity: 1; }
  100% { opacity: 1; }
}

.contents_text1_s a{
	font-size: 140%;
	line-height: 1.0;
}

.contents_text1_s5{
	    font-weight: 600;
    font-size: 160%;
    line-height: 1.6;
    padding: 20px 0px 5px 0px;
    text-align: center;
    color: #f12d43;
    border-top: 1px solid #deb8bc;
}

@media screen and (max-width: 767px) {
.contents_text1_s5{
	    font-weight: 600;
    font-size: 120%;
    line-height: 1.5;
    padding: 20px 0px 15px 0px;
    text-align: center;
    color: #f12d43;
    border-top: 1px solid #deb8bc;
}
}

.contents_text1_s6{
    line-height: 1.6;
    padding: 0px 0px 20px 0px;
    text-align: center;
}
@media screen and (max-width: 767px) {
.contents_text1_s6{
    line-height: 1.8;
    padding: 0px 0px 20px 0px;
    text-align: center;
}
}

.contents_text1_s6 .support_img_rs {
   display: inline-block;
    width: 2%;
    position: relative;
    top: 3px;
    margin: 0px 4px 0px 0px;
}
@media screen and (max-width: 767px) {
.contents_text1_s6 .support_img_rs {
   display: inline-block;
    width: 4%;
    position: relative;
    top: 3px;
    margin: 0px 4px 0px 0px;
}
}
.contents_text1_s7{
	color: #f12d43;
    font-weight: 600;
    line-height: 1.0;
    font-size: 120%;
}
.contents_text1_s2_s{
    font-size: 80%;
}
/*-------------------------------------------------------------------*/
.r_text_in_b_2_2_2 {
    font-weight: 600;
    color: #f12d43;
    font-size: 22px;
    line-height: 1.6;
    margin: 0px 0px 5px 0px;
	display: inline-block;
	text-align: center;
}
.r_text_in_b_2 {
    font-weight: 600;
    color: #f12d43;
    font-size: 22px;
    line-height: 1.6;
    margin: 0px 0px 5px 0px;
}

.r_text_in_b_3{
   display: block;
}

.r_text_in_b_3_box{
   padding: 0px 0px 25px 0px;
	font-size: 16px;
}
.r_text_in_b_3_in {
        font-size: 140%;
    line-height: 1.0;
    position: relative;
    top: 3px;
}

.r_text_in_b_4_in {
    font-size: 120%;
    line-height: 1.0;
}
.contents_text_box{
   padding:6px 35px 25px 35px;
	text-align: center;
}
@media (max-width: 768px) {
  .contents_text_box{
   padding:0px 5% 20px 5%;
	text-align: center;
}
}
.contents_text_box_2{
   padding:25px 35px 18px 35px;
	text-align: center;
	line-height: 2.0;
}
@media (max-width: 768px) {
  .contents_text_box_2{
   padding:20px 5% 0px 5%;
	text-align: center;
	  font-size: 15px;
        line-height: 1.8;
}
}
.contents_text_box_222{
   padding:0px 35px 18px 35px;
	text-align: center;
	line-height: 1.8;
}
@media (max-width: 768px) {
  .contents_text_box_222{
   padding:0px 5% 5% 5%;
	text-align: center;
	  font-size: 15px;
        line-height: 1.8;
}
}
.contents_text_box_2 .support_img_rs_3 {
    display: inline-block;
    width: 3%;
    position: relative;
    top: 8px;
}
@media (max-width: 768px) {
.contents_text_box_2 .support_img_rs_3 {
    display: inline-block;
    width: 6%;
    position: relative;
    top: 4px;
}
}
/*-------------------------------------------------------------------*/
.r_text_in_4 {
        line-height: 1.8;
    display: block;
    font-size: 16px;
    padding: 10px;
    background: #ffe6e9;
    margin: 20px 0px 0px 0px;
    color: #f12d43;
    border: 1px solid #f3d1d5;
	    border-radius: 4px;
}
@media screen and (max-width: 767px) {
 .r_text_in_4 {
        line-height: 1.8;
    display: block;
    font-size: 15px;
    padding: 10px;
    background: #ffe6e9;
    margin: 20px 0px 0px 0px;
    color: #f12d43;
    border: 1px solid #f3d1d5;
	    border-radius: 4px;
}
}
/*-------------------------------------------------------------------*/
.cautionbox2 {
  max-width: 960px;
  margin: 0px auto 20px auto;
  padding: 30px 0px 25px 0px;
	background: #fff;
	border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .cautionbox2 {
  max-width: 90%;
	  padding: 0px;
 }
}
.cautionbox3 {
	background: #fff;
    padding: 10px 8px 8px 8px;
    color: #f12d43;
    text-shadow: 0px 0px 0px rgb(223 61 82);
    font-size: 40%;
    letter-spacing: 0.03em;
    text-align: center;
    position: relative;
    top: -15px;
}
@keyframes poyo2 {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
/*-------------------------------------------------------------------*/
.contents_text_box2{
   padding:0px 0px 35px 0px;
}
@media screen and (max-width: 767px) {
 .contents_text_box2{
   padding:0px 0px 0px 0px;
}
}
.r_text_in_2_2{
    padding: 0px;
    text-align: left;
    line-height: 1.8;
    display: block;
    font-size: 15px;
}
.r_text_in_b_3_3_box_2{
   padding: 1px 0px 0px 0px;
	font-size: 16px;
}
@media screen and (max-width: 767px) {
 .r_text_in_b_3_3_box_2{
   padding: 1px 0px 0px 0px;
	font-size: 16px;
}
}

.r_text_in_b_3_3_2{
       display: block;
    font-size: 18px;
    padding: 0px 0px 5px 0px;
	text-align: center;
}
@media screen and (max-width: 767px) {
 .r_text_in_b_3_3_2{
       display: block;
    font-size: 15px;
    padding: 0px 0px 5px 0px;
	text-align: center;
}
}
.r_text_in_b_title {
    font-weight: normal;
    color: #f95467;
    font-size: 20px;
    line-height: 1.0;
    margin: 0px 0px 0px 0px;
	text-align: center;
}
@media screen and (max-width: 767px) {
 .r_text_in_b_title {
    font-weight: normal;
    color: #f95467;
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0px 6px 0px;
	text-align: center;
}
}
.tbl-unique-csmnw35r_box_2 {
    width: 100%;
    max-width: 960px;
    padding: 0px 0px 0px 0px;
    border-radius: 6px;
    box-sizing: border-box;
    margin: 0px auto 0px auto;
}

@media screen and (max-width: 767px) {
  .tbl-unique-csmnw35r_box_2 {
    width: 90%;
    margin: 5% auto;
    padding: 0;
  }
}

/*----------------------------------------*/
.authupdate-table-unique {
  width: 100%;
    border-collapse: collapse;
    background-color: #f9fbfd;
    table-layout: fixed;
}

.authupdate-thead-unique {
  background-color: #ffe6e9;
}

.authupdate-row-head-unique {
	font-size: 75%;
	font-weight: normal;
}

.authupdate-cell-head-unique {
    text-align: left;
    font-weight: bold;
    color: #f12d43;
    border-bottom: 1px solid #deb8bc;
    font-size: 15px;
}

.authupdate-row-body-unique:nth-child(odd) {
  background-color: #ffffff;
}

.authupdate-row-body-unique:nth-child(even) {
  background-color: #fff;
}

.authupdate-cell-body-unique {
    font-size: 17px;
    line-height: 1.8;
    text-align: left;
}
@media screen and (max-width: 767px) {
	.authupdate-cell-body-unique {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
}
}
.authupdate-cell-body-unique strong{
    font-size:130%;
	font-weight: bold;
}
.authupdate-cell-body-unique .fa1{
    font-size:100%;
}
.authupdate-col-date-unique {
    width: 35%;
    font-weight: bold;
    color: #f12d43;
    font-size: 170%;
    text-align: left;
}
@media screen and (max-width: 767px) {
	.authupdate-col-date-unique {
    width: 100%;
    font-weight: bold;
    color: #f12d43;
    font-size: 190%;
    text-align: center;
}
}
.authupdate-col-date-unique_2 {
    width: 35%;
    font-weight: bold;
    color: #f12d43;
    text-align: left;
}
@media screen and (max-width: 767px) {
.authupdate-col-date-unique_2 {
    width: 100%;
    font-weight: bold;
    color: #f12d43;
    text-align: left;
}
}
.authupdate-col-date-unique_in {
    padding: 0px 0px 0px 3px;
    font-weight: normal;
}
.authupdate-col-date-unique_in2 {
    padding: 0px 0px 0px 0px;
    display: inline-block;
    position: relative;
    top: 11px;
}
.authupdate-col-date-unique_in22 {
    padding: 0px 0px 0px 0px;
    display: inline-block;
    position: relative;
    top: 11px;
}
@media screen and (max-width: 767px) {
.authupdate-col-date-unique_in22 {
    padding: 0px 0px 0px 0px;
    display: inline-block;
    position: relative;
    top: 11px;
	font-size: 26px;
}
}
.authupdate-col-date-unique .support_img_rs {
    display: inline-block;
    width:11%;
    position: relative;
    top: 8px;
}
@media screen and (max-width: 767px) {
.authupdate-col-date-unique .support_img_rs {
    display: inline-block;
    width: 11%;
    position: relative;
    top: 10px;
}
}
.authupdate-col-date-unique .support_img_rs33 {
    display: inline-block;
    width: 15%;
    position: relative;
    top: 20px;
}
@media screen and (max-width: 767px) {
.authupdate-col-date-unique .support_img_rs33 {
    display: inline-block;
    width: 11%;
    position: relative;
    top: 10px;
}
}
.a_b2 .support_img_rs44 {
    width: 5%;
    position: relative;
    top: 5px;
	display: inline-block;
}
@media screen and (max-width: 767px) {
.a_b2 .support_img_rs44 {
    display: inline-block;
    width: 8%;
    position: relative;
    top: 6px;
}
}
.authupdate-col-date-unique_e {
        font-size: 130%;
    position: relative;
    top: 2px;
}
.authupdate-col-detail-unique  .support_img_rs {
    display: inline-block;
    width: 5%;
    position: relative;
    top: 8px;
}
.authupdate-col-detail-unique  .support_img_rs2 {
    display: inline-block;
    width: 3%;
    position: relative;
    top: 6px;
	margin: 0px 2px 0px 4px;
}
.a_b {
    border-bottom: 1px solid #deb8bc;
    padding: 0px 0px 20px 0px;
  }
@media screen and (max-width: 767px) {
.a_b {
    border-bottom: 0px solid #deb8bc;
    padding: 0px 0px 10px 0px;
	text-align: center;
	 display: block;
  }
	}
.a_b2 {
    font-weight: 600;
    font-size: 125%;
    line-height: 1.0;
	display: block;
	padding: 10px 0px 0px 0px;
  }
@media screen and (max-width: 767px) {
.a_b2 {
    font-weight: 600;
        font-size: 130%;
        line-height: 1.6;
        padding: 7px 0px 0px 0px;
        display: block;
  }
	}
@media screen and (max-width: 767px) {
.a_b3 {
    padding: 0px 0px 10px 0px;
	 display: block;
  }
	}
@media screen and (max-width: 767px) {
  .authupdate-table-unique,
  .authupdate-thead-unique,
  .authupdate-tbody-unique,
  .authupdate-row-head-unique,
  .authupdate-row-body-unique,
  .authupdate-cell-head-unique,
  .authupdate-cell-body-unique {
    display: block;
    width: 100%;
  }
	}

/*-------------------------------------------------------------------*/
.q_menu-wrapper-vx82qj9d {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
	padding: 25px 0px 0px 0px ;
}
@media screen and (max-width: 767px) {
  .q_menu-wrapper-vx82qj9d {
      max-width: 960px;
    width: 90%;
    margin: 0 auto;
    padding: 20px 0px 0px 0px;
}
}
.q_button-container-vx82qj9d {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.q_menu-button-vx82qj9d {
  flex: 1 1 calc(33.333% - 11px);
  min-width: 140px;
}

.q_menu-button-vx82qj9d a {
      display: block;
    width: 100%;
    padding: 11px 0px 11px 0px;
    background-color: #ffe6e9;
    color: #f12d43;
    border-radius: 116px;
    font-size: 17px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
    word-break: break-word;
    position: relative;
        letter-spacing: 0.04em;
    border: 1px solid #f3d1d5;
    font-weight: 600;
}
.q_menu-button-vx82qj9d a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 2px solid #ff6b7c;
  border-right: 2px solid #ff6b7c;
  transform: translateY(-2px) rotate(135deg);
  box-sizing: border-box;
}
.q_menu-button-vx82qj9d a:hover {
  background-color:#ffcfd6;
}

@media (max-width: 768px) {
  .q_menu-button-vx82qj9d {
    flex: 1 1 100%;
  }
}

.q_menu-button-vx82qj9d a .j9d_in{
	font-size: 80%;
    background: #ff6b7c;
    color: #fff;
    padding: 4px;
    font-weight: normal;
    margin: 0px 4px 0px 0px;
    position: relative;
    top: -1px;
}
/*==================================================================================*/
.commission_accordion_bg{
	margin: 10px 0px 0px 0px;
}
/*ベース*/
.accordion1_toggle{
	display: none;
}
.accordion1_title{		/*タイトル*/
	position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 25px;
    background: linear-gradient(to right, #f66a7a 0%, #fabbc4 100%);
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    border-radius: 12px 12px 0 0;
}
@media (max-width: 768px) {
 .accordion1_title{		/*タイトル*/
    font-size: 21px;
}
}
.accordion1_title::before{		/*タイトル横の矢印*/
	width: 9px;
	height: 9px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	right: 20px;
	transform: rotate(135deg);
	content: none; /* ←矢印を無効にする場合 */
}
.accordion1_title,
.accordion1_content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.accordion1_content {		/*本文*/
	height: 0;
	margin-bottom:15px;
	padding:0 20px;
	overflow: hidden;
}
.accordion1_toggle:checked + .accordion1_title + .accordion1_content {	/*開閉時*/
	height: auto;
	padding:0px ;
	transition: all .3s;
}
.accordion1_toggle:checked + .accordion1_title::before {
	transform: rotate(-45deg) !important;
	content: none; /* ←矢印を無効にする場合 */
}


.accordion1_title_in3{
	border-bottom: dotted 1px #fff;
    font-size: 115%;
    padding: 0px 0px 1px 0px;
}

/*-------------------------------------*/
/* デフォルトでは「開く」 */
.accordion1_toggle + label .wa-infoaccordion2-toggle-text::after {
  content: "開く";
  font-size: 15px;
  color: white;
	    margin: 0px 20px 0px 0px;
	font-weight: normal;
	text-shadow: 0px 0px 2px rgb(223 61 82);
}

/* チェックされたら「閉じる」に */
.accordion1_toggle:checked + label .wa-infoaccordion2-toggle-text::after {
  content: "閉じる";
}
/* --------------------------------------------------------- */
.wa-infoaccordion2-toggle-text{
 display: flex;
  align-items: center;
  position: relative;
  margin-left: auto; /* ← flexboxで右に押し出す */
  font-size: 15px;
  color: white;
	font-weight: normal;
}

/* --------------------------------------------------------- */
.accordion1_r{
	text-align: left;
	text-shadow: 0px 0px 5px rgb(223 61 82);
}
@media (max-width: 768px) {
  .accordion1_r{
	text-align: left;
	text-shadow: 0px 0px 5px rgb(223 61 82);
	  line-height: 1.2;
	  font-size: 17px;
}
}

.accordion1_r_in{
	font-size: 70%;
	font-weight: normal;
	margin: 0px 0px 0px 4px;
}

.wa-infoaccordion2-toggle-text{
	display: flex;
}
/* ▼ デフォルト状態（閉じている） */
.accordion1_title::after {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: calc(50% - 6px); /* 中央揃え調整 */
  right: 22px;
  transform: rotate(135deg); /* ▼の向き */
  transition: transform 0.3s ease;
}

/* ▲ 開いている状態 */
.accordion1_toggle:checked + .accordion1_title::after {
  transform: rotate(-45deg); /* ▲の向き */
}

/* --------------------------------------------------------- */
.triangle-bottom_sv {
    background: linear-gradient(to top, #fabdc5, #fff);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    height: 30px;
    width: 220px;
    margin: 20px auto 20px auto;
    padding: 0px 0px 0px 0px;
}
.security_top2_3 {
    margin: 12px 0px 11px 0px;
    font-size: 20px;
    color: #f12d43;
    background: linear-gradient(to right, #ffd2d9 0%, #ffe5e8 100%);
    padding: 11px 15px 11px 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
}
@media (max-width: 768px) {
 .security_top2_3 {
    margin: 12px 0px 11px 0px;
    font-size: 16px;
    color: #f12d43;
    background: linear-gradient(to right, #ffd2d9 0%, #ffe5e8 100%);
    padding: 11px 15px 11px 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
	 line-height: 1.4;
}
}
.security_top2_3_in {
    font-size: 70%;
    font-weight: normal;
	display: block;
	padding: 4px 0px 0px 0px;
}
.security_top1_12_2 img {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #c4d2e5;
    display: block;
	    width: 30%;
    margin: auto;
}
.security_top1_12_22 img {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #c4d2e5;
    display: block;
	    width: 60%;
    margin: auto;
}
.security_top2_4 {
   font-size: 22px;
    color: #f12d43;
    padding: 12px 15px 10px 15px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-align: center;
    line-height: 1.0;
    border: 3px solid #f12d43;
    margin: 15px auto 0px auto;
    display: inline-block;
}
@media (max-width: 768px) {
.security_top2_4 {
   font-size: 17px;
    color: #f12d43;
    padding: 12px 15px 10px 15px;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-align: center;
    line-height: 1.0;
    border: 3px solid #f12d43;
    margin: 15px auto 0px auto;
    display: inline-block;
}
}
.security_top2_4_in {
   font-size: 140%;
    line-height: 1.0;
	position: relative;
	top:1px;
}
.accordion1_r .support_img_rs3 {
   display: inline-block;
    width: 2.5%;
    position: relative;
    top: 6px;
    margin: 0px 6px 0px 0px;
}
@media (max-width: 768px) {
 .accordion1_r .support_img_rs3 {
   display: inline-block;
    width: 4.5%;
    position: relative;
    top: 1px;
    margin: 0px 6px 0px 0px;
}
}
.accordion1_r .support_img_rs3_22 {
   display: inline-block;
    width: 4%;
    position: relative;
    top: 6px;
    margin: 0px 7px 0px 0px;
}
@media (max-width: 768px) {
 .accordion1_r .support_img_rs3_22 {
   display: inline-block;
    width: 8%;
    position: relative;
    top: 4px;
    margin: 0px 7px 0px 0px;
}
}
.contents_text1_s5 .support_img_rs333 {
       display: inline-block;
    width: 2%;
    position: relative;
    top: 5px;
    margin: 0px 3px 0px 4px;
}
@media (max-width: 768px) {
 .contents_text1_s5 .support_img_rs333 {
       display: inline-block;
    width: 4%;
    position: relative;
    top: 3px;
    margin: 0px 3px 0px 4px;
}
}
.contents_text1_s5 .support_img_rs333_22 {
       display: inline-block;
    width: 3%;
    position: relative;
    top: 3px;
    margin: 0px 3px 0px 4px;
}
@media (max-width: 768px) {
 .contents_text1_s5 .support_img_rs333_22 {
       display: inline-block;
    width: 6%;
    position: relative;
    top: 3px;
    margin: 0px 3px 0px 4px;
}
}
/*----------*/
.faq_contents_text1 {
   line-height: 2.0;
    display: block;
    text-align: center;
    font-size: 18px;
    padding: 25px 0px 0px 0px;
}
@media (max-width: 768px) {
.faq_contents_text1 {
   line-height: 1.8;
    display: block;
    text-align: center;
    font-size: 16px;
    padding: 25px 0px 0px 0px;
}
}
.faq_contents_text1_s {
    font-weight: 600;
    font-size: 120%;
    line-height: 1.0;
}
@media (max-width: 768px) {
.faq_contents_text1_s {
    font-weight: 600;
    font-size: 100%;
    line-height: 1.0;
}
}
.faq_accordion1_title_in2 {
    color: #ff6b7c;
    background: #fff;
    padding: 5px 5px 5px 5px;
    margin: 0% 5px 0% 0%;
	text-shadow: 0px 0px 0px rgb(223 61 82);
	font-size: 15px;
}
@media (max-width: 768px) {
.faq_accordion1_title_in2 {
    color: #ff6b7c;
    background: #fff;
    padding: 5px 5px 5px 5px;
    margin: 0% 5px 0% 0%;
	text-shadow: 0px 0px 0px rgb(223 61 82);
	font-size: 13px;
}
}