@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%;
	
font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
 /* padding-bottom: 62px;*/
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #333;
}

@media screen and (min-width: 768px) {
  body {
    min-width: 980px;
    /*padding-bottom: 62px;*/
  }
}

@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:  #f08a70;
  text-decoration: underline;
}
a:hover {
  color:#ffb8a6;
  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: 900px;
    margin: 0 auto;
}
/*----------------------------PC SP footer---------------------------*/
#footer {
        font-size: 15px;
    padding: 15px 0px 15px 0px;
    background-color:#f08a70;
	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: 860px;
  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-notice a {
       display: block;
    padding: 6px 0px 6px 0px;
    margin: 8px 0px 15px 0px;
    border-radius: 116px;
    font-size: 12px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s 
ease;
    word-break: break-word;
    position: relative;
    color: #f08a70;
    background: #fff;
    font-weight: normal;
    letter-spacing: 0.12em;
    width: 30%;
}
@media screen and (max-width: 767px) {
.support-notice a {
   width: 60%;
	margin: 8px auto 15px auto;
  }
}
.support-notice a:hover {
 background: #eff4fa;
	color: #94c1e0;
}
.support-notice a::after {
    content: '';
    border: 0;
    border-bottom: solid 1px #fff;
    border-right: solid 1px #fff;
    display: inline-block;
    width: 6px;
    height: 6px;
    position: absolute;
    top: 50%;
    left: 7px;
    transform: translateY(-50%) rotate(-45deg);
}
.support-notice_in_bbr {
    background: #f08a70;
    width: 4px;
    height: 4px;
    display: inline-flex;
    margin: 0px 6px 0px 0px;
    position: relative;
    top: -4px;
}
.support-box {
        box-sizing: border-box;
    max-width: 900px;
    margin: 0px auto 20px auto;
    padding: 21px 42px 0px 42px;
    border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .support-box {
    margin: 0px;
    padding: 0px;
  }
}
.support-box_all {
	padding: 20px 0px 0px 0px;
    background-color:#ffefeb;
}

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

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

.support-box__ttl_in {
      font-size: 18px;
    padding: 0px 0px 13px 0px;
    display: block;
    font-weight: 600;
    letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .support-box__ttl_in {
	  padding: 0px 0px 1px 0px;
 }
}
.support-box__tel {
  list-style: none;
    justify-content: center;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
@media screen and (max-width: 956px) {
  .support-box__tel  {
list-style: none;
    justify-content: center;
    margin: 0 auto;
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
	  padding: 0px 0px 20px 0px;
  }
}
@media screen and (min-width: 768px) {
  .support-box__tel a.no {
    pointer-events: none;
  }
}
.support_list{
 margin: 0px 0px 0px 0px;
    width: 40%;
}
@media screen and (max-width: 767px) {
.support_list{
  width: 100%;
	margin: 0px 15% 0px 15%;
}
}
.support-area2-btn .support_img_r{
	display: inline-block;
    width: 9%;
    position: relative;
    top: 2px;
}
.support-area3-btn .support_img_r{
	display: inline-block;
    width: 11%;
    position: relative;
    top: 0px;
}
.support-area2-btn a {
 position: relative;
    top: 0;
    display: block;
    margin: 17px 0px 7px 0px;
    padding: 11px 0px 0px 0px;
    border-radius: 100px;
    font-size: 17px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: #f9b4a2 url(../images/arrow2.png) center right 10px no-repeat;
    background-size: 6px 14px;
    height: 32px;
    cursor: pointer;
    transition: .2s 
cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (max-width: 767px) {
.support-area2-btn a {
  position: relative;
    top: 0;
    display: block;
    margin: 17px 0px 7px 0px;
    padding: 11px 0px 0px 0px;
    border-radius: 100px;
    font-size: 17px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-size: 5px 10px;
    height: 32px;
    cursor: pointer;
    transition: .2s 
cubic-bezier(0.45, 0, 0.55, 1);
}
}
.support-area2-btn a:hover {
  box-shadow: 0 0 #2b65a3; /* 影を0pxにする */
  background: #ffd4d4 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 7px 0px;
    padding: 9px 0px 0px 0px;
    background:#f9b4a2;
    border-radius: 100px;
    font-size: 17px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    height: 34px;
	cursor: pointer;
    transition: .2s 
cubic-bezier(0.45, 0, 0.55, 1);
}

.support-area3-btn a:hover {
  box-shadow: 0 0 #cc613c; /* 影を0pxにする */
  background: #ffa9a9 url(../images/arrow2.png) center right 16px no-repeat;
  background-size: 10px 21px;
}
.support-box__tel .support_t_r {
display: block;
text-align: center;
padding: 3px 0px 10px 0px;
line-height: 1.6;
font-size: 14px;
	    color: #f08a70;
}
@media screen and (max-width: 767px) {
 .support-box__tel .support_t_r {
padding: 0px 0px 0px 0px;
	 line-height: 1.0;
}
}
.support-notice {
  line-height: 1.66;
  max-width: 900px;
  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__ttl {
  font-weight: 600;
    padding: 6px 0px 3px 0px;
}

.support-notice_t {
    font-size: 13px;
    line-height: 1.9;
    display: block;
    margin: 0px 0% 25px 0%;
    font-weight: normal;
    letter-spacing: 0.08em;
}

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

@media screen and (max-width: 767px) {
  .support-notice ul li {
    font-size: 14px;
	 line-height: 1.7;
	  margin:0% 0% 25px 0%;
  }
}
.support-text_in {
  font-size: 125%;
    display: inline;
    position: relative;
    top: -3px;
    letter-spacing: 0.11em;
}
/*---*/
.cautionbox {
  max-width: 860px;
  margin: 0 auto;
  padding: 0px 0px 0px 0px;
}
@media screen and (max-width: 767px) {
  .cautionbox {
  max-width: 90%;
 }
}
.caution_ttl {
  font-size:52px;
  font-weight:800;
  line-height: 1.0;
	text-align: center;
	    letter-spacing: 0.08em;
	 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;
    letter-spacing: 0.08em;
	   
}
.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: 14px;
    font-weight: normal;
    text-align: center;
    letter-spacing: 0.18em;
    background: #88a1c3;
}
.e_text2{
	font-size: 14px;
	padding: 0px 0px 0px 0px;
	letter-spacing: 0.08em;
}


.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;
	letter-spacing: 0.08em;
	    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: 900px;
  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: 18px 0px 16px 0px;
    background: #f08a70;
    margin: 0px 0px 0px 0px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
@media screen and (max-width: 767px) {
 .warning_title{
       line-height: 1.5;
        font-size: 16px;
        padding: 10px 5% 8px 5%;
}
}

.warning_text{
        line-height: 1.8;
    color: #333;
    font-size: 15px;
    /*border-bottom: 1px solid #c6d5de;*/
    padding: 6px 0px 0px 0px;
	letter-spacing: 0.08em;
	text-align: center;
	display: inline;
	    font-weight: normal;
	margin: 0px 0px 0px 10px;
}
.warning_text_in{
     background: #cee0f7;
    color: #103772;
}

/*=============================================================================*/
.c_text_in223r_t {
   display: block;
    text-align: center;
    padding: 11px 0px 11px 0px;
    width: 860px;
    margin: 0px auto 0px auto;
    letter-spacing: 0.08em;
    font-size: 16px;
    line-height: 1.0;
    color: #fff;
    border: 1px solid #fff;
	    border-radius: 3px;
}
@media screen and (max-width: 767px) {
 .c_text_in223r_t {
   display: block;
    text-align: center;
    padding: 11px 0px 11px 0px;
    width: 90%;
    margin: 0px auto 0px auto;
    letter-spacing: 0.08em;
    font-size: 13px;
    line-height: 1.0;
    color: #fff;
    border: 1px solid #fff;
}
}
.c_text_in223r {
    display: block;
    text-align: center;
    padding: 15px 0px 0px 0px;
	width: 860px;
	margin: auto;
	letter-spacing: 0.08em;
	font-size: 45px;
	text-shadow: 0px 0px 5px rgb(216 111 76);
	font-weight: 700;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
 .c_text_in223r {
            display: block;
        text-align: center;
        padding: 15px 0px 0px 0px;
        width: 90%;
        margin: auto;
        font-size: 25px;
}
  }

.c_text_in223 {
      background: linear-gradient(181deg, rgb(255 180 158) 0%, rgb(233 137 109) 40%, rgb(255 166 140) 70%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 1) 100%);
    color: #fff;
    line-height: 1.6;
    display: block;
    text-align: center;
    padding: 30px 0px 0px 0px;
}
@media screen and (max-width: 767px) {
.c_text_in223 {
        font-size: 20px;
    color: #fff;
    line-height: 1.6;
    display: block;
    text-align: center;
}
  }
.c_text_in223r_in {
    font-size: 70%;
}
/*--------------------------------------留意事項-----------------------------------*/
.r_box_all {
    letter-spacing: 0.05em;
    background: #fff;
    width: 860px;
    margin: 0px auto 10px auto;
}
@media screen and (max-width: 767px) {
  .r_box_all {
  width: 90%;
  }
  }
.r_title {
      color: #474747;
    padding: 0px 0px 0px 0px;
    line-height: 1.25;
    font-size: 22px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.09em;
}
.r_text {
  color: #333333;
  padding: 0px 0px 0px 0px;
  line-height: 1.8;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
 .r_text {
     margin: 0% 0% 0% 0%;
}
  }
.r_text2 {
         display: block;
    line-height: 2.0;
    font-size: 14px;
    border: 1px solid #e4e4e4;
    padding: 15px 35px 25px 35px;
    margin: 0px 0px 50px 0px;
}
.r_text_in {
  padding: 5px 35px 25px 35px;
    background: #ededed;
    margin: 0px 0px 0px 0px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	letter-spacing: 0.11em;
}
@media screen and (max-width: 767px) {
.r_text_in {
  padding: 5px 5% 25px 5%;
    background: #ededed;
    margin: 0px 0px 0px 0px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	text-align: center;
	letter-spacing: 0.11em;
}
  }
.r_text_in_b {
        font-weight: normal;
    color: #fff;
    padding: 7px 0px 6px 0px;
    font-size: 15px;
    line-height: 1.2;
    display: block;
    margin: 15px 0px 0px 0px;
    background: #b6b6b6;
    letter-spacing: 0.18em;
	    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
	text-align: center;
}

.r_text_in_1 {
        padding: 14px 0px 21px 0px;
    display: block;
    border-bottom: 1px dotted #b6b6b6;

}
@media screen and (max-width: 767px) {
.r_text_in_1 {
        padding: 15px 0px 18px 0px;
	display: block;
	line-height: 1.8;
}
	}
  .r_text_in_11 {
    padding: 18px 0px 8px 0px;
    display: block;

}
@media screen and (max-width: 767px) {
.r_text_in_11 {
    padding: 18px 0px 5px 0px;
display: block;
}
}
.r_text_in2 {
  font-weight: 600;
	display: block;
	    padding: 0px 0px 6px 0px;
	font-size: 16px;
}
.r_text_in3 {
  font-weight: 600;
	    
}
/*-------------------------------------------------------------------*/
/* 下三角形 */
.triangle-bottom {
    background: linear-gradient(to top, #94b9ec, #fff);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    height: 30px;
    width: 220px;
    margin: 0px auto 0px auto;
    padding: 0px 0px 0px 0px;
    position: relative;
    top: -10px;
}
/*-------------------------------------------------------------------*/
.r_text_in_bbr {
    background: #7c7c7c;
    width: 4px;
    height: 13px;
    display: inline-flex;
    margin: 0px 6px 0px 0px;
    position: relative;
    top: 1px;
}

/*-------------------------------------------------------------------*/
.m_text_in {
        padding: 13px 0px 0px 0px;
    line-height: 1.8;
    display: block;
    letter-spacing: 0.08em;
    text-align: center;
    font-size: 15px;
    font-weight: normal;
    text-shadow: 0px 0px 5px rgb(193 61 60);
}
@media screen and (max-width: 767px) {
 .m_text_in {
     font-size: 15px;
	 line-height: 1.8;
	  padding: 9px 0px 0px 0px;
}
  }
.m_text_in2 {
        padding: 8px 0px 20px 0px;
    line-height: 1.8;
    display: block;
    letter-spacing: 0.08em;
    text-align: center;
    font-size: 15px;
    font-weight: normal;
    text-shadow: 0px 0px 5px rgb(193 61 60);
}
@media screen and (max-width: 767px) {
 .m_text_in2 {
     font-size: 15px;
	 line-height: 1.8;
	 padding: 20px 0px 20px 0px;
}
  }
/*-------------------------------------------------------------------*/
.calendar-table_g92md {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.calendar-table_g92md th,
.calendar-table_g92md td {
  border:1px solid #c5c5c5;
  padding: 10px;
  text-align: center;
  white-space: normal; /* nowrap → normal に変更して折り返す */
  word-break: break-word;
  font-size: 14px;
	    letter-spacing: 0.10em;
}


.calendar-header-top_b2kfx {
  background-color: #e6e6e6;
  font-weight: bold;
}

.calendar-subhead_j28mv {
  background-color: #f4f4f4;
  font-weight: bold;
	letter-spacing: 0.09em;
}

.calendar-holiday-cell_k9cda {
  background-color: #fce9e6;
  color: #eb6148;
}

.calendar-normal_h3sna {
  color: #333;
}

.calendar-stop-red_bx22q {
  color: #eb6148;
    font-weight: bold;
    background-color:#fcf7f6;
}

.calendar-stop-red_bx22q2 {
    color: #248cda;
    font-weight: bold;
	background-color:#fcf7f6;
}
.calendar-stop-red_bx22q22 {
  color:#333333;
  font-weight: bold;
}
.calendar-date-column_p9owq {
  font-weight: bold;
	letter-spacing: 0.09em;
}
.calendar-date-column_p9owq_4 {
	color:#f08a70;
	
}
@media screen and (max-width: 768px) {
  .calendar-table_g92md th,
  .calendar-table_g92md td {
    padding: 6px;
    font-size: 13px;
  }
}
/*-------------------------------------------------------------------*/
.tbl-unique-csmnw35r_box {
      background: #fff;
    width: 100%;
    max-width: 860px;
    margin: 60px auto 10px auto;
    padding: 0px;
    border-radius: 6px;
    box-sizing: border-box;
}

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

/*-------------------------------------------------------------------*/
.menu-wrapper-vx82qj9d {
  max-width: 860px;
  width: 90%;
  margin: 0 auto;
	padding: 10px 0px 0px 0px ;
}
@media screen and (max-width: 767px) {
  .menu-wrapper-vx82qj9d {
      max-width: 860px;
    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(50.00% - 11px);
  min-width: 140px;
}

.menu-button-vx82qj9d a {
     display: block;
    width: 100%;
    letter-spacing: 0.09em;
    padding: 10px 0px 10px 0px;
    background-color: #fff;
    color: #cd6045;
    border-radius: 116px;
    font-size: 17px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s 
ease;
    word-break: break-word;
    box-shadow: 0px 0px 5px rgb(232 128 126);
    position: relative;
}
.menu-button-vx82qj9d a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 11px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #f08a70;
  border-right: 2px solid #f08a70;
  transform: translateY(-2px) rotate(135deg);
  box-sizing: border-box;
}
.menu-button-vx82qj9d a:hover {
  background-color: #ffeee4;
}

@media (max-width: 768px) {
  .menu-button-vx82qj9d {
    flex: 1 1 100%;
  }
}
.menu-button-vx82qj9d_in {
  font-size: 75%;
	    letter-spacing: 0.042em;
}
@media (max-width: 768px) {
  .menu-button-vx82qj9d_in {
      font-size: 75%;
    letter-spacing: 0.042em;
    line-height: 1.4;
    display: block;
    padding: 1% 9% 0% 9%;
    font-weight: normal;
}
}
/*-------------------------------------------------------------------*/
