@charset "utf-8";
/* CSS Document */

#header_box{
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
    width: 100%;
}
#header_box img{
    max-width: 300px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
h1{
    background-color: var(--ichiro_color);
    padding: 2rem;
    width: 100%;
    color: #FFFFFF;
    font-size: 3rem;
    /*font-family: "fot-udmarugo-large-pr6n", sans-serif;*/
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    text-align: center;
    margin-top: -2px;
    font-style: normal;
    font-variant: normal;
}
@media (max-width:566px) {
	h1{
    font-size: 2rem;
    padding-left: 0px;
    padding-right: 0px;
	}	
}

#support_tool{
    max-width: 1300px;
    height: auto;
    margin-right: auto;
    padding: 1rem;
    margin-left: auto;
    border-radius: 4px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 5rem;
}
#support_tool div{
    width: calc((100% - 4.5rem) / 4);
    border-right: 1px solid rgba(204, 204, 204, 0.5);
    padding-right: 1rem;
    position: relative;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    background-color: #ffffff;
    /* アニメーションの土台 */
    transition: transform .25s ease,
        box-shadow .25s ease,
        background-color .25s ease,
        border-color .25s ease;
}
#support_tool div:last-child{
	border-right: 0px;
	padding-right: 0;
}
@media (max-width:900px) {
	#support_tool div{
		width: calc((100% - 3rem) / 2);
	}
	#support_tool div:nth-child(1),
	#support_tool div:nth-child(3){
		border-right: 1px solid rgba(204, 204, 204, 0.5);
		padding-right: 2rem;
		padding-left: 1rem;
	}
	#support_tool div:nth-child(2),
	#support_tool div:nth-child(4){
		border-right: 0;
		width: calc((100% - 1rem) / 2);
	}

}
@media (max-width:566px) {
	#support_tool{
    flex-direction: column;
    width: 94%;
    margin-right: auto;
    margin-left: auto;
	}	
	#support_tool div{
		padding: 0 !important;
		margin: 0 !important;
		width: 100% !important;
		border:0px !important;
	}
}

#support_tool div a{
    text-decoration: none;	
}
#support_tool div a img{
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 80px;
    height: auto;
	transition: transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease,
    border-color .25s ease;
}
#support_tool div a h2{
    color: var(--main_color);
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    font-size: 1.5rem;
    padding: 0;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 5px;
    text-align: center;
	transition: transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease,
    border-color .25s ease;
} 
#support_tool div a p{
    color: #333;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    padding: 0;
    margin: 0;
    font-size: .85rem;
}
@media (max-width:566px) {
	#support_tool div a p{
		 margin-bottom: 1rem;
	}	
}

/* 下に伸びるアクセントライン（初期は幅0） */
#support_tool div::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    /* お好みで色変えてOK（例：イチローカラー＋青系グラデ） */
    background: linear-gradient(90deg, var(--ichiro_color, #1976d2), #42a5f5);
    transition: width .25s ease;
}

/* ホバー＆フォーカス時の「かっこいい」動き */
#support_tool div:hover,
#support_tool div:focus-within{
    background-color: #ffffff;
    border-color: #bbbbbb;
}



/* アクセントラインを全幅までニョキっと */
#support_tool div:hover::after,
#support_tool div:focus-within::after{
    width: calc(100% - 1rem);
}
/* ★ 最後の div だけは 100% にしたい場合 */
#support_tool div:last-child:hover::after,
#support_tool div:last-child:focus-within::after {
    width: 100%;
}


#support_tool div:hover h2{
	transform: translateY(-4px);  
	color: var(--ichiro_color);
}
#support_tool div:hover img{
	transform: translateY(-4px);           /* 少しだけ上に */
}









.txt{
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.2rem;
    color: #333;
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 6rem;
    line-height: 1.65;
    height: auto;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
}
.txt p{
    font-size: .75rem;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    color: #333;
}
@media (max-width:1000px) {
	.txt{
		width: 94%;
	}
}




#tel{
    max-width: 1300px;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    margin-top: 1rem;
    margin-bottom: 5rem;
    height: auto;
}
@media (max-width:1000px) {
	#tel{
		width: 94%;
	}
}
#tel_title{
    display: flex;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    justify-content: center; /* ← これで左右中央揃え */
    align-items: center;     /* 高さ方向も中央揃えにしたい場合 */
    width: 100%;
    margin-top: 1rem;

}
@media (max-width: 550px) {
	#tel_title{
		flex-direction: column;
	}
}



#tel_title div{
    display: flex;
    flex-direction: column; /* 縦並び */
    align-items: stretch;
    padding: 0;
    margin: 0;
    height: 100%; /* 明示的に高さを合わせたい場合 */
}
#tel_title div img{
    height: auto;
    display: block;
    margin-right: .5rem;
    max-width: 80px;
}
#tel_title div h2{
    color: var(--ichiro_color);
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    font-size: 2.5rem;
}


#tel #telno{
    margin: 0;
    width: 100%;
    padding: 0;
    text-align: center;
    display: flex;
	gap:2rem;
    justify-content: center;
}

#tel #telno p{
    font-size: 3.5rem;
    padding-top: 1rem;
    margin-top: 0;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 1rem;
    /*border: 1px solid #ccc;*/
    width: calc((100% - 10rem) / 2);
    border-radius: 4px;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    text-align: center;
	
	transition: transform .25s ease,
    box-shadow .25s ease,
    background-color .25s ease,
    border-color .25s ease;
}
#tel #telno p:hover{
	transform: translateY(-5px);  
	box-shadow: 0 12px 28px rgba(0,0,0,.16);
}

@media (max-width: 1100px) {
	#tel #telno p{
    font-size: 3rem;

	}
}
@media (max-width: 1000px) {
	#tel #telno p{
		font-size: 2.5rem;
	}
}
@media (max-width: 900px) {
	#tel #telno p{
		font-size: 2rem;
	}
}
@media (max-width: 800px) {
	#tel #telno p{
		width: calc((100% - 5rem) / 2);
		font-size:1.6rem;
	}
}
@media (max-width: 566px) {
	#tel #telno{
		flex-direction: column;
	}
	#tel #telno p{
    width: 90%;
    margin-right: auto;
    margin-left: auto;
		font-size: 2.4rem;
	}
}

.yes_smspc{
	border: 1px solid var(--king_color);
	color:var(--king_color);
}
.yes_smspc a{
	color:var(--king_color);
	text-decoration: none;
}
.yes_smspc span{
    color: #fff;
    font-size: 1rem;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    padding-top: 0.5rem;
    vertical-align: middle;
    display: block;
    border-top: 1px solid #fff;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    border-radius: 0;
    background-color: var(--king_color);
    padding-bottom: 0.5rem;
}
.no_smspc{
	border: 1px solid var(--main_color);
	color:var(--main_color);
}
.no_smspc a{
	color:var(--main_color);
	text-decoration: none;
}
.no_smspc span{
    color: #fff;
    font-size: 1rem;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    padding-top: 0.5rem;
    vertical-align: middle;
    display: block;
    border-top: 1px solid #fff;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    border-radius: 0;
    background-color: var(--main_color);
    padding-bottom: 0.5rem;
}



#tel .txt{
    width: 100%;
    margin-left: auto;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-left: 2rem;
    padding-bottom: 0.6rem;
    margin-right: auto;
    margin-top: 3rem;
    font-size: 1rem;
    color: #333333;
    height: auto;
    background-color: #F1F1F1;
    border-top: 1px solid #CCCCCC;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
}

.kome{
    font-size: 0.9rem;	
}
/*---------------------------------------------------------------*/
/*  サブソフトメニュー（カードグリッド）                        */
/*---------------------------------------------------------------*/
#sub_soft_menu {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem 1.2rem;
}
@media (max-width: 980px) {
  #sub_soft_menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 566px) {
  #sub_soft_menu {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
#sub_soft_menu .card {
  border: 1px solid #CCC;
  border-radius: 6px;
  background: #fff;
  transition: box-shadow .2s ease, transform .1s ease, border-color .2s ease;
}
#sub_soft_menu .card > a {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  width: 100%;
  height: 100%;
}
#sub_soft_menu .thumb {
  margin: 0;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
  flex: 0 0 50px;
}
#sub_soft_menu .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#sub_soft_menu .body {
  flex: 1 1 auto;
  min-width: 0;
}
#sub_soft_menu h2 {
  margin: 0;
  color: #333;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2;
}
#sub_soft_menu p {
  margin: 0;
  color: #333;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: .9rem;
  line-height: 1.2;
}
@media (hover:hover) {
  #sub_soft_menu .card:hover {
    border-color: #bbb;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
    transform: translateY(-5px);
  }
}
@media (hover:none) {
  #sub_soft_menu .card:active {
    box-shadow: 0 3px 10px rgba(0, 0, 0, .08);
  }
}
.sms_system{
    margin-right: auto;
    padding: 0;
    margin-left: auto;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-style: normal;
    font-variant: normal;
    font-weight: bold;
    font-size: 2.3rem;
    text-align: center;
    margin-top: 10rem;
    margin-bottom: 0;
	color:var(--ichiro_color);
}

/*---------------------------------------------------------------*/
/*  FAQ                                                          */
/*---------------------------------------------------------------*/
.faq-wrap {
    width: min(100%, 1300px);
    margin: 0 auto;
    padding: 0;
}
.faq-wrap .top_margin_Cancel {
  margin-top: 0;
}
.faq-wrap .question {
  position: relative;
  display: block;
  margin: 2.25rem 0 .5rem;
  color: var(--main_color);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.45;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.faq-wrap .question::before {
  content: "Q";
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .95rem;
  background: #1976CC;
  color: #fff;
}
.faq-wrap .answer {
    position: relative;
    display: block;
    width: 100%;
    padding: 1.5rem 2rem;
    background: #F8FBFF;
    border: 1px solid #DFEAF6;
    border-radius: 4px;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .06);
    font-size: 1rem;
    overflow-wrap: break-word;
    word-break: normal;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
    margin-bottom: 3.5rem;
}
.faq-wrap .answer:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  background-color: #ECF4FF;
  color: #000;
}
.faq-wrap .faq-more {
  margin-top: 2rem;
  color: #666;
  text-align: left;
}
@media (max-width: 560px) {
  .faq-wrap {
    padding: 0;
	  width: 94%;
  }
  .faq-wrap .answer {
    padding: .9rem 1rem;
    margin: 0;
  }
  .faq-wrap .question {
    margin-top: 5rem;
  }
}