/* http://meyerweb.com/eric/tools/css/reset/ 
     v2.0 | 20110126
    License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video{margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section{display: block;}
body{line-height: 1;}
ol, ul{list-style: none;}
blockquote, q{quotes: none;}
blockquote:before, blockquote:after,q:before, q:after{content: '';content: none;}
ul li{list-style: none;}
*, *:before, *:after{-webkit-box-sizing: inherit;box-sizing: inherit;}
* {box-sizing: border-box;}
a{text-decoration: none;-webkit-transition: all 0.3s ease 0s;transition: all 0.3s ease 0s;}
a:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
table{border-collapse:collapse}
/*▲▲▲ reset ▲▲▲*/
html {
  font-size: 62.5%;
}
body {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-feature-settings: "palt";
    line-height: 1.7;
    color: #000;
    letter-spacing: .2em;
    background-color: #f6f4f5;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: unset;
    font-size: 2rem;
}
.font_nam{
    font-family: 'Poppins', sans-serif;
}
#wrapper {
    overflow: hidden;
}
a{text-decoration:none;
    -webkit-transition:all 0.3s ease;
    transition:all 0.3s ease;}
a:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
img {
    display:block;
}
#page-top img {
    position: fixed;
    cursor: pointer;
}
/*▲ 初期設定 ▲*/

::selection{
    background: #7af7cf;
    color: #ceff49;
}

/* for Firefox */
::-moz-selection{
    background: #7af7cf;
    color: #ceff49;
}

.bg_white{background:#fff} 
.bg_right_pink{background:#fbccb2}
.bg_right_blue{background: #bee0e8;}
.bg_navy{background:#4b5689}
.bg_orange{background:#fbd4a5}
.bg_red{background:#d44141}
.bg_blue{background:#4993ba}
.bg_gray{background:#ecebea}
.bg_brown{background:#e8e2d5}
.bg_yellow{background:#e3911b}
.bg_mrkr{background:#f3cf1d}
.bg_white{background:#fff}
.bg_yellow02{background:#e8e34d}

.bold{font-weight:700}
.fw400{font-weight:400}
.fw500{font-weight:500}
.alc{text-align:center}
.alL{text-align:left}
.alR{text-align:right}

.col_white{color:#fff}
.col_pink{color:#f1adad }
.col_orange{color:#ffa200}
.col_orange02{color:#fc792d}
.col_blue{color: #003b8b}
.col_d_pink{color:#f64f76}
.col_black{color:#000}
.col_red{color:#b90000}
.col_green{color:#1ca7a0e3}
.col_green02{color:#057771}
.col_pink{color:#e74e70}
.col_gray{color:#1f1d1d}

.mb0{margin-bottom:0!important}
.mb10{margin-bottom:10px}
.mb20{margin-bottom:20px}
.mb30{margin-bottom:30px}
.mb40{margin-bottom:40px}
.mb50{margin-bottom:50px}
.mb60{margin-bottom:60px}
.pb0{padding-bottom:0!important}

.font_16{font-size: 1.6rem}
.font_18{font-size: 1.8rem}
.font_24{font-size: 2.4rem}
.palt{font-feature-settings:"palt"}
.font_italic{font-style: italic}
.auto{margin: 0 auto}

.flex_space{display:flex;justify-content:space-between}
.flex_wrap{display:flex;flex-wrap:wrap;justify-content: space-between}
.flex_row{display:flex;flex-direction: row}
.flex_start{display:flex;justify-content:flex-start}
.block{display: block}
.shadow {
    -moz-box-shadow: 0px 0px 12px 1px rgb(0 0 0 / 8%);
    -webkit-box-shadow: 0px 0px 12px 1px rgb(0 0 0 / 8%);
    box-shadow: 0px 0px 12px 1px rgb(0 0 0 / 8%);
}
.sec_shadow {
    -moz-box-shadow: 0px 13px 20px -1px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 13px 20px -1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 13px 20px -1px rgba(0, 0, 0, 0.08);
    position: relative;
}
.under_line {
    text-decoration: underline;
    text-underline-offset:0.2em;
}
.linethrough{
    text-decoration: line-through;
}
.blank_link{
	text-decoration: underline;
	color: #bf3e3e;
}
.pc_block{
    display: block;
}
.marker_red {
    background-color: transparent;
    background-image: linear-gradient(transparent 70%,#d45b41 0);
}
.marker_yel {
    background-color: transparent;
    background-image: linear-gradient(transparent 70%,#f8e856 0);
}
.border_red{
    text-decoration: solid underline #d45b41 3px;
    text-underline-offset:0.2em;
}
img {
    width:100%;
    height: auto;
}
table{
	width: 100%;
}


/*　▼ header　▼　*/
header{
    background:url(../images/mv_bg.jpg) no-repeat;
    background-size: cover;
    background-position: right top;
}
header img{
	background-size: cover;
	width: 100%;
}
header h1{
	margin-bottom: 0;
}
header h1 img {
    width:1200px;
    margin:0 auto;
}
/*　▼ footer　▼　*/
footer {
	font-weight: 400;
	background:#fff;
	font-size: 1.6rem;
    padding: 2%;
    color: #333;
    border-top: 1px solid #d8dadc;
}
footer .left{
    width: 70%;
}
footer .box {
	width:1000px;
	margin:0 auto;
}
footer .box ul {
	width: 490px;
    margin: 0 auto;
}
footer li a {	
	background-size: 15px;
    background-position: 26px center;
    color: #333;
}
.logo{
	width: 17%;
	height: auto!important;
}
#page-top img{
    position: fixed;
    right: 28px;
    width: 70px;
   bottom: 230px;
}
.tel::before{
	content: '\e0b0';
	font-family: 'Material Icons';
	vertical-align: -2px;
	margin-right: 3px;
}
.mail::before{
	content: '\e0be';
	font-family: 'Material Icons';
	vertical-align: -2px;
	margin-right: 3px;
}

/*動画設定*/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.video {
    position: relative;
    width: 80%;
    padding-top: 56.25%;
    margin: 0 auto 50px;
}
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*▼ ボタン設定　▼*/
.btnfont{
    font-size: 3.0rem;
}

.btn{
    font-size: 2.2rem;
    background-repeat: no-repeat;
    border-radius: 100px;
    background-size: 1.4%;
    background-position: 84% 50%;
	height: 100px;
    line-height: 100px;
    width: 73%;
    margin: 0px auto 15px;
    text-align: center;
    color: #fff;
    display: block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.3); /* 水平方向のオフセット、垂直方向のオフセット、ぼかし半径、色 */
}
.btn:hover{
    background-repeat: no-repeat;
    border-radius: 100px;
    background-size: 1.4%;
    background-position: 84% 50%;
}
.btn::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(.5);
    transform: scale(.5);
}
.btn:hover::after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.btn001{
    font-size: 2.2rem;
    background-repeat: no-repeat;
    border-radius: 100px;
    background-size: 1.4%;
    background-position: 84% 50%;
	height: 100px;
    line-height: 100px;
    width: 73%;
    margin: 29px auto 0px;
    text-align: center;
    color: #fff;
    display: block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.3); /* 水平方向のオフセット、垂直方向のオフセット、ぼかし半径、色 */
    letter-spacing: -0.03em; /* 文字間を詰める */
}
.btn001:hover{
    background-repeat: no-repeat;
    border-radius: 100px;
    background-size: 1.4%;
    background-position: 84% 50%;
}
.btn001:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(.5);
    transform: scale(.5);
}
.btn001:hover::after {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.btn01{
    background-color: #fc792d;
    width: 60%;
    margin: 10px auto 0;
}
.btn01:hover{
    background-color: #fa6108;
}
.btn02{
    background-color: #099644;
    background-position: 91% 50%;
}
.btn02:hover{
    background-color: #08642e;
    background-position: 91% 50%;
}
.btn03{
    background-color: #fc792d;
    background-position: 91% 50%;
}
.btn03:hover{
    background-color: #fa6108;
    background-position: 91% 50%;
}
.btn04{
    background-color: #0089c8;
}
.btn04:hover{
    background-color: #006a9c;
}
.btn05{
    background-color: #b52100;
}
.btn05:hover{
    background-color: #811800;
}
section{
	width: 1000px;
	margin: 0 auto;
	padding: 110px 0;
}
h1{
    font-weight: 700;
	text-align: center;
	margin-bottom: 90px;
	font-size: 4rem;
    letter-spacing: 0.1em;
}
p{
    line-height: 1.5;
}

/*  PC
campaign
 */
.campaign_wrap {
    background: url(../images/campaign_bg.jpg) no-repeat;
    background-size: cover;
    background-position: 40% 10%;
}
.campaign02 {
    padding: 70px 0;
}
/* PC
 sec01 レター
 */

.sec01_heading{
    width: 81%;
}
.point{
    width: 22%;
    margin-bottom: 30px;
}
.sec01 h2{
    font-size: 3.4rem;
    line-height: 1.4;
    margin-bottom: 50px;
}
.sec01_card {
    align-items: center;
}
.sec01_txt{
    width: 60%;
    letter-spacing: 0;
    line-height: 1.4;
}

.sec01_txt ul li{
    position: relative;
    padding-left: 26px;
    font-size: 2.2rem;
}
.sec01_txt ul li::before{
    position: absolute;
    content: "";
    background-image: url(../images/check_blue.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    left: 0;
    top: 10px;
}
.sec01_txt p{
    letter-spacing: 0;
    line-height: 1.4;
}
.sec01_pamph{
    /*width: 21%;*/
    width: 40%;
    height: 100%;
}
.sec01 .box{
    margin-bottom: 70px;
}
.sec01 .box:last-of-type{
    margin-bottom: 0;
}
.sec01_pamph03{
    width: 37%;
    height: 100%;
}

/* PC
　sec02　小冊子の活用方法
*/
.letter_head{
    margin-bottom: 50px;
}
.sec02 .heading_p{
    font-size: 2.7rem;
    line-height: 1.6;
}
.sec02 h1 {
    margin-bottom: 0;
}
.sec02 h1 .font_big{
    font-size: 6.2rem;
}
.sec02 h1 .font_small{
    font-size: 2.8rem;
}
.sec02 h2{
    font-size: 4.7rem;
    text-align: center;
}
.sec02 p{
    letter-spacing: 0;
    line-height: 1.4;
}
.circle_pamoh {
    width: 8%;
    display: inline;
}
.custom-image {
  /* 画像の幅を指定します。コンテナ（親要素）の50%の幅になります */
  width: 70%;
  
  /* 高さはautoにすると、画像の縦横比を保ったまま自動で調整されます */
  height: auto;
  
  /* 親要素の幅を超えないようにする設定。レスポンシブ対応で非常に重要です */
  max-width: 100%;
  
  /* 画像を中央に配置したい場合（親要素がテキスト中央揃えでない場合） */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* PC
　sec03
*/
.sec03_heading{
    width: 48%;
    margin-bottom: 62px;
}
.sec03_img {
    width: 48%;
    margin-right: 30px;
}
.sec03 .box{
    padding: 2%;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    border: 2px solid #fc792d;
    background-color: #fff;
}
.sec03 .box h2{
    font-size: 2.7rem;
}
.sec03 .box:nth-of-type(even) {
    flex-direction: row-reverse;
}
.sec03 .box:nth-of-type(even) .sec03_img {
    margin-right: 0;
    margin-left: 30px;
}
.sec03 .nam {
    width: 19%;
    height: auto;
    margin: 0 auto 30px;
}
.toggle {
    display: none;
}
.Label {
    padding: 1em;
    display: block;
    color: #003b8b;
    font-weight: 500;
    background:#fff;
}
.Label::before{
    content: "";
    width: 15px;
    height: 14px;
    border-top: 3px solid #003b8b;
    border-right: 3px solid #003b8b;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc( 50% - 3px );
    right: 44px;
    transform: rotate(135deg);
}
.Label,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}
.content {
    height: 0;
    margin-bottom:10px;
    padding:0 20px;
    overflow: hidden;
    background:#c4ddff;
}
.toggle:checked + .Label + .content {
    height: auto;
    padding:20px ;
    transition: all .3s;
}
.toggle:checked + .Label::before {
    transform: rotate(-45deg) !important;
}
.ans{
    font-size: 1.8rem;
    /* text-indent: -1.8em; */
    padding-left: 1em;
}

/* PC
　sec04　プロフィール
*/
.heading_img{
    width: 20%;
    margin-bottom: 30px;
}
.sec04 h2{
    font-size: 3rem;
    margin-bottom: 30px;
}
.introduction{
    margin-bottom: 70px;
}
.career{
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.6;
}
.sec04 .left{
    width: 60%;
    margin-right: 30px;
}
.ttl{
    font-size: 1.7rem;
    vertical-align: 5px;
    margin-right: 7px;
}
.sec04 .name{
    font-size: 2.7rem;
}
.office{
    font-size: 1.9rem;
    line-height: 1.5;
    letter-spacing: 0;
}
.sec04 .box{
    margin-bottom: 30px;
    
}
.book{
    width: 60%;
}

/* PC
 sec05  お客様の声
 */
.sec05 .box{
    padding: 4%;
    margin-bottom: 20px;
}
.sec05 h2{
    font-size: 3rem;
    border-bottom: 2px solid #3a6ba5;
    margin-bottom: 20px;
}
.sec05 .left{
    margin-right: 40px;
}
.sec05 .left img{
    width: 100%;
}
.sec05 .name{
    line-height: 1.2;
}
.sec05 .name .font_small{
    font-size: 1.4rem;
}
.sec05 .name .font_big{
    font-size: 2rem;
}
.sec05 .right_txt{
    width: 80%;
}

/* PC
 sec06  目次・概要
 */
.sec06 .box01{
    background: #f9efdc;
    padding: 5%;
    margin-bottom: 50px;
}

.flex_box {
    display: flex; /* これで子要素（dlとimg）が横並びになります */
    align-items: center; /* 垂直方向の中央揃え */
    gap: 20px; /* テキストと画像の間に20pxの隙間を空けます */
}

.flex_box dl {
    flex: 1; /* dl要素が利用可能なスペースをいっぱいに使います */
    /* 既存のdlスタイルを維持 */
    border-bottom: 2px solid #bebebe;
    padding-bottom: 4%;
    margin-bottom: 50px;
}

.flex_box .flex_image {
    width: 10%; /* 画像の幅を30%に設定 */
    /* 必要に応じて、画像のサイズを調整してください */
}

.flex_container {
    display: flex; /* これでdlとimage_containerが横並びになります */
    align-items: center; /* 垂直方向の中央揃え */
    gap: 30px; /* テキストと画像の間の隙間を調整 */
}

.flex_container dl {
    flex-grow: 1; /* dl要素が利用可能なスペースをいっぱいに使います */
    /* 既存のdlスタイルは維持 */
}

.image_container {
    width: 40%; /* 画像コンテナの幅を調整 */
    flex-shrink: 0; /* 画像コンテナは縮小しないようにします */
}

.responsive_image {
    max-width: 100%; /* 画像がコンテナからはみ出さないようにします */
    height: auto; /* 画像の縦横比を維持します */
}



.sec06 .box01 dt{
    font-size: 2.6rem;
}
.sec06 .box01 dl{
    border-bottom: 2px solid #bebebe;
    padding-bottom: 4%;
    margin-bottom: 50px;
}
.sec06 .box01 dl:last-of-type{
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* PC
 sec06after  商品タイプ
 */
.sec06_after .choose{
    width: 14%;
    margin-bottom: 20px;
}
.sec06_after .box02{
    background: #fff;
    padding: 5%;
    margin-bottom: 50px;
}
.sec06_after .box02:last-of-type{
    margin-bottom: 0;
}
.sec06_after .box02 h2{
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}
.sec06_after .box02 .heading_img{
    width: 12%;
}
.sec06_after .box02 p{
    line-height: 1.2;
    margin-bottom: 50px;
}
.sec06_normal_pamph{
    width: 84%;
}
.sec06_special_pamph{
    width: 80%;
    margin-bottom: 50px;
}
.sec06_special_pamph:last-of-type{
    margin-bottom: 0;
}
.sec06_after_memo {
    font-size: 2.4rem;
}

/* PC
 sec07 商品詳細 
 */
.dtl_tbl{
    text-align: left;
    width: 90%;
    margin: 0 auto;
}
.dtl_tbl th{
    background: #057771;
    color: #fff;
    border-bottom: 5px solid #f6f4f5;
    width: 13em;
    padding: 2% 2% 2% 10%;
    vertical-align: middle;
}
.dtl_tbl td{
    background: #fff;
    border-bottom: 5px solid #f6f4f5;
    padding: 2%;
}
.dtl_tbl td .font_small{
    font-size: 1.6rem;
}
@media screen and (max-width: 599px) {
    .dtl_tbl td{
        text-align: left;
    } 
}




/* PC
 sec08 お申込み特典
*/
.sec08_bg{
    background: url(../images/sec08_bg.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
}
.sec08 .heading_img{
    width: 11%;
}
.sec08 h1{
    margin-bottom: 50px;
}
.sec08_lead{
    font-size: 5rem;
    margin-bottom: 60px;
    background-color: #fff;
}

.sec08 .box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3%;
}
.sec08 .box_02 {
    flex-direction: row-reverse;
}
.sec08 .narrow {
    width: 56%;
    letter-spacing: .03em;
    line-height: 1.6;
}
.sec08 .box .nam {
    width: 70px;
}
.sec08 .box h3 {
    font-weight: 700;
    font-size: 2.6rem;
}
.sec08 .box p{
    margin-top: 20px;
    line-height: 1.4;
    margin-bottom: 50px;
}
.sec08_img {
    width: 40%;
}
.sec08_pamph{
    width: 80%;
    /* drop-shadow */
    filter: drop-shadow(0px 0px 3px rgba(0,0,0,0.72));
}
@media screen and (max-width: 599px) {
    .sec08 .narrow{
        width:100%;
    }
    .sec08 .box{
        display:block;
    }
    .sec08_img{
        width:100%;
        margin-bottom:20px;
    }
}





/* PC
 sec09 お申し込みの流れ 
 */
.sec09_bg{
    /* background-color: #f9efdc; */
}

/* PC
 sec010 料金 ノーマルタイプ
 */
.sarani{
    width: 90%;
    margin-bottom: 88px;
}
.sec010 .box h2,
.sec011 .box h2{
    font-size: 3rem;
}
.sec010 .heading_img,
.sec011 .heading_img{
    width: 10%;
}
.tbl_img{
    margin: 30px 0 10px;
}

/* PC
 sec011 料金 スペシャルタイプ
  */
.sec010 h1,
.sec011 h1{
    margin-bottom: 50px;
}

/* PC
 nml_app ノーマルタイプのお申込みはこちらから
 */
.app_heading{
    width: 15%;
}
.app h1{
    font-size: 3.2rem;
    margin-bottom: -50px;
}
.app {
    padding: 40px 0;
}
.app_btn-flex {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.app .btn02,
.app .btn03,
.app .btn04,
.app .btn05{
    width: 47%;
    background-position: 93% 50%;
}
@media screen and (max-width: 599px) {
    .app_btn-flex{
        display:block;
    }
    .app .btn02,
.app .btn03,
.app .btn04,
.app .btn05{
    width: 100%;
    background-position: 93% 50%;
}
}

/* PC
221213　追加　sec00
令和５年度 税制改正大綱の内容を反映した別紙の補助資料を追加！
*/
.sec00_wrap{
    background: #f9dccd;
}
.info02{
    width: 50%;
    margin: 0 auto 40px;
}
.sec00{
    position: relative;
}
.sec00_panph{
    transform: rotate( -12deg );
    width: 160px;
    position: absolute;
    top: 97px;
}
.sec00 ul li::before{
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    color: #3a6ba5;
    font-style: normal;
    padding-right: 0.5%;
    font-weight: 700;
}
.sec00 ul li:last-of-type{
    margin-bottom:0;
}
.sec00 ul li{
    text-indent: -1.2em;
    padding-left: 1.2em;
    margin-bottom:20px;
    line-height: 1.4;
}
.sec00 ul{
    padding: 3% 6%;
    margin-bottom: 40px;
    background: #f6f4f5;
}

/*PC more さらに */
.more{
    padding: 52px 0;
}
.more_img{
    width: 15%;
    margin-bottom: 20px;
}
.more p{
    font-size: 3.2rem;
    letter-spacing: 0;
    line-height: 2.2;
}
.bd_white{
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset:0.3em;
    text-decoration-color: #fff;
}
.more .big{
    font-size: 4rem;
    position: relative;
}
.more .big:before,.more .big:after{
    background-color: #fff;
    position: absolute;
    bottom: -3%;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
}
.more .big:before {
    bottom: 6%;
}

/* 100部ご注文の場合 */
._100bu {
    padding: 60px 0 90px;
}
._100bu h1 {
    font-size: 4.8rem;
}  
/*PC toha KACHIEL税務アカデミーとは？ */
.toha .box{
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}
.toha .box h2{
    font-size: 2.3rem;
    height: 4.5em;
    padding-top: 3%;
}
.toha .check_blue li{
    margin-bottom: 20px;
    text-indent: -1em;
    padding-left: 1em;
}
.toha .check_blue li:before{
    font-family: "Font Awesome 5 Free";
    content: '\f00c';
    color: #4993ba;
    font-style: normal;
    padding-right: 0.5%;
}
.toha .check_blue{
    padding: 5% 8%;
}
.toha .att{
    font-size: 1.6rem;
    margin-bottom: 30px;
}
.price{
    width: 48%;
    height: 100%;
    margin-bottom: 50px;
}
.toha h2 {
    font-size: 4rem;
    font-weight: 700;
}


.toha .btn04 {
    margin-top: 40px;
    margin-bottom: 20px;
}
.toha .btn05 {
    margin-top: 40px;
    margin-bottom: 20px;
}
.yokoku_img {
    width: 96%;
    margin: 40px auto 0;
}
/*PC entry お申し込み */
.entry .box01{
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 70px;
}
.entry .heading{
    background: #d45b41;
    align-items: center;
    height: 5em;
}
.entry .heading h2{
    padding: 1.4% 0;
}
.entry .box01 p{
    padding: 4%;
    font-size: 1.8rem;
    line-height: 2;
}
.entry .box02{
    margin-bottom: 40px;
}
.entry .box02 h2 {
    font-size: 2.2rem;
    border-radius: 5px;
    width: 11em;
    height: 2em;
    padding-top: 0.2%;
    margin: 0 auto 30px;
}
.double{
    text-decoration: underline;
    text-decoration-style: double;
    text-underline-offset:0.2em;
}
.bd_red{
    text-decoration-color: #d45b41; 
}
.entry .box02 .narrow{
    width: 90%;
    margin: 0 auto;
    font-size: 1.8rem;
    line-height: 2;
}


/*------------------------
▲ PC表示終わり　▲
------------------------*/
/*------------------------
913-1200
------------------------*/
@media screen and (min-width: 913px) and (max-width: 1200px) {
header h1 img{
    width: 98%;
    margin: 0 auto;
}
section {
    width: 94%;
}
#page-top img{
    display: none;
}
.logo{
    width: 24%;
}
}

@media screen and (max-width: 1024px){
    .entry .box02 .narrow {
        width: 100%;
    }
    .toha .check_blue {
        padding: 5% 7%;
    }
    .yokoku_img {
    width: 90%;
    margin: 16px auto 0;
}
}
    
@media screen and (max-width: 768px) {
    .toha .box h2 {
        font-size: 2.3rem;
        height: 5.5em;
        padding: 3% 4% 5%;
    }
    .btn03{
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
h1{
    margin-bottom: 60px;
}
}

@media screen and (min-width: 767px) {
.pcnone {
	display:none;
}
}

@media screen and (min-width: 600px) and (max-width: 766px) {
.pcnone{
    display: none;
}
.spnone {
    display: block;
}
}

@media screen and (max-width: 694px) {
.sec02 h2 {
    padding-left: 7%;
}
}

@media screen and (max-width: 628px) {
.sec02 h2 {
    padding-left: 0;
}
}
/*----------------------
600~912
----------------------*/
@media screen and (min-width: 600px) and (max-width: 912px) {
html{
	font-size: 50%;
}
header h1 img{
	width: 98%;
}
section {
    width: 94%;
    padding: 10% 0;
}
#page-top img{
	display: none;
}
.btn{
    width: 100%;
}
}
/*------------------------
スマホ~599px
------------------------*/
@media screen and (max-width: 599px) {
html {
  font-size: 54%;
}
body {
	width:100%;
}
.sp_block,
.sp_br,
.pcnone {
	display:block
}
.spnone {
    display:none
}
.pc_block {
	display:inline
}
.sp_alc {
    text-align: center;
}
.sp_noflex {
    display:block;
}
.sp_flex_space{
    display:flex;justify-content:space-between
}
.sec_wrap {
  width:100%;
  padding:0;
}
section{
	width: 100%!important;
	padding: 14% 6%;
}
/*▼ sp footer ▼*/
footer {
	padding: 2%;
    font-size: 1.4rem;
}
.footer_inner {
    width: 92%;
    margin: 0 auto;
    padding: 2.60416% 0;
}
footer ul{
	width: 100%;
	text-align: left;
}
.logo {
    width:40%;
    display: block;
}
#page-top img {
    display: none;
}
.copy{
	margin-bottom: 10px;
}
/*▲ sp footer ▲*/
header{
    background: url(../images/mv_bg_sp.jpg) no-repeat;
	background-position: center top;
    background-size: cover;
}
header .mv_area{
    padding: 0!important;
}
header h1 img{
	width: 100%;
	margin: 0 auto;
}

/* sp information  */
.information {
    padding: 3% 0;
}
.info_img {
    width: 96%;
}

/* sp sec01 */
.sec01_heading {
    width: 100%;
    margin-bottom: -48px;
}
.point {
    width: 42%;
}
.sec01 h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}
.sec01 p {
    width: 100%;
    margin-bottom: 20px;
}
.sec01_pamph,
.sec01_pamph03 {
    width: 90%;
    height: 100%;
    margin: 0 auto;
}
.sec01_txt{
    width: 100%;
    letter-spacing: 0;
    line-height: 1.4;
}

/* sp sec02 */
.sec02 h1 .font_big {
    font-size: 4.2rem;
}
.sec02 h1 .font_mid {
    font-size: 2.8rem;
}
.sec02 h2 {
    font-size: 2.7rem;
    text-align: center;
    padding-left: 0;
}
.circle_pamoh {
    width: 14%;
    right: 41px;
    top: -42px;
}
.att{
    font-size: 1.4rem;
}
.btn{
    width: 100%;
    height: 80px;
    line-height: 80px;
}

/* sp sec03 */
.sec03 h1{
    margin-bottom: 20px;
}
.sec03_heading {
    width: 100%;
    margin-bottom: 22px;
}
.sec03 .box {
    display: block;
    padding: 5%;
}
.sec03_img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
}
.sec03 .box:nth-of-type(even) .sec03_img {
    margin-left: 0;
}
.heading_img {
    width: 54%;
    margin-bottom: 10px;
}

/* sp sec04 */
.sec04 .left {
    width: 100%;
    margin: 0 auto;
}
.koushi_img{
    width: 70%;
    margin: 0 auto 20px;
}
.office {
    margin-bottom: 20px;
}
.career {
    font-size: 1.8rem;
}
.book {
    width: 100%;
}

/* sp sec05 */
.sec05 h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    padding-bottom: 3%;
}
.sec05 .left {
    width: 100%;
}
.sec05 .left img {
    width: 70%;
    margin: 0 auto 10px;
}
.sec05 .name{
    margin-bottom: 20px;
}
.sec05 .right_txt{
    width: 100%;
}
.sec05 .name .font_small {
    font-size: 1.6rem;
}
.sec05 .name .font_big {
    font-size: 2.4rem;
}

/* sp sec06 */
.sec06 .box01 dl {
    padding-bottom: 8%;
    margin-bottom: 28px;
}
.sec06 .box01 dt {
    margin-bottom: 10px;
    line-height: 1.2;
}
.sec06 dd{
    line-height: 1.2;
    margin-bottom: 10px;
    text-indent: -1.2em;
    padding-left: 1em;
}
.sec06 dd:last-of-type{
    margin-bottom: 0;
}
.sec06 .box02 .heading_img {
    width: 23%;
}
.sec06 .box02 h2 {
    font-size: 3rem;
}
.sec06 .box02 {
    background: #d7e8e9;
    padding: 12% 5% 5%;
}
.sec06_normal_pamph {
    width: 100%;
}
.btn{
    margin: 33px auto 29px;
    background-size: 3.4%;
}
.btn02,
.btn03,
.btn04,
.btn05 {
    width: 100%;
    height: 80px;
    line-height: 80px;
    padding-top: 0%;
}
.sec06_special_pamph {
    width: 100%;
    margin-bottom: 20px;
}


/* sp sec06_after */
.sec06_after .choose {
    width: 30%;
}
.sec06_after .box02 .heading_img {
    width: 25%;
}
.sec06_after .box02 {
    padding: 8% 5% 5%;
}
.sec06_after .btn02,
.sec06_after .btn03{
    line-height: 1.2;
    padding-top: 5%;
}
.sec06_after_memo {
    font-size: 2.0rem;
}


/* sp sec07 */
.dtl_tbl {
    text-align: center;
    width: 100%;
    margin: 0 auto;
}
.dtl_tbl th,.dtl_tbl td{
    display: block;
    width: 100%;
    padding-left: 0;
}
.dtl_tbl td .font_small{
    line-height: 1.2;
    display: block;
}


/* sp sec08 */
.sec08 h1 {
    margin-bottom: 20px;
}
.sec08 .heading_img{
    width: 20%;
}
.sec08 h2 {
    font-size: 2.5rem;
}
.sec08_pamph {
    width: 100%;
}

/* sp sec010 */
.more {
    width: 100%;
    /* margin-bottom: 38px; */
}
.sec010 .heading_img, .sec011 .heading_img {
    width: 20%;
}
.tbl_img {
    margin-top: 0;
    margin-bottom: 20px;
}
.sec010 h1, .sec011 h1 {
    margin-bottom: 20px;
}

/* sp app */
.btn{
    background-size: 2.4%;
}
.app {
    padding: 4% 6%;
}
.app .btn{
    font-size: 2rem;
}
.app_heading {
    width: 27%;
}
.app h1 {
    font-size: 3.2rem;
    margin-bottom: -22px;
}
.app .btn02{
    margin-bottom: 0;
}

/* sp sec011 */
.sec011 h1 {
    margin-bottom: 10px;
}

/*SP　とは */
.more{
    padding: 14% 0;
}
.more_img {
    width: 30%;
}
.toha .box h2 {
    height: 7.5em;
    padding: 7% 4% 5%;
}
.price{
    width: 100%;
    margin: 0 auto 20px;
}
.btn03 {
    width: 100%;
}
.details .box{
  padding:0;
}
._100bu {
    padding: 10% 6%;
}
._100bu h1 {
    font-size: 2.8rem;
    margin-bottom: 36px;
}

}
/*------------------------
〜374
------------------------*/
@media screen and (max-width: 374px) {
body {
    font-size:1.6rem;
}
p {
    line-height: 1.4;
}
}

@media screen and (max-width: 1000px) {
.sec00_panph {
    top: 84px;
    width: 16%;
}
}
@media screen and (max-width: 788px) {
.sec00_panph {
    top: 100px;
    width: 13%;
}
}
@media screen and (max-width: 695px) {
.sec00_panph {
    top: 70px;
    width: 13%;
}
}
@media screen and (max-width: 599px) {
.sec00_panph {
    top: 0;
    width: 69%;
    position: inherit;
    margin: 0 auto 60px;
}
.info02 {
    width: 100%;
    margin: 0 auto 40px;
}
.sec00 h1{
    font-size: 3rem;
    margin-bottom: 20px;
}
.sec00 ul{
    font-size:2rem;
    padding:6%;
}
.sec00 ul li{
    line-height:1.4;
}
}

/*------------------------
カウントダウンタイマー　css
------------------------*/
#page-top img {
    bottom: 249px
  }
  .cdt_wrapper {
    background: #d45b41;
    font-weight: bold;
    text-align: center;
    line-height: 2;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    z-index: 99999;
    bottom: 0;
    width: 100%;
    letter-spacing: 0;
  }
  .cdt_wrapper small {
    padding: 0 .4em;
    color: #fff;
  }
  .cdt {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .cdt_txt {
    display: inline-block;
    margin-right: .6em;
    line-height: 1.2;
  }
  .cdt_txt span {
    color: #fff;
  }
  .cdt_num {
    background-color: #fff;
    padding: 0 .15em;
  }
  .cdt_num {
      line-height: 1;
      padding: .3em .15em;
  }
  .cdt_app{
    background: #fff;
    border-radius: 5px;
    text-decoration: none!important;
    font-weight: 700;
    margin-left: 20px;
    color: #d45b41;
  }
  @media screen and (min-width: 320px) and (max-width: 767px) {
  .cdt_wrapper{
    padding: 0.4em 1% 0.3em;
    line-height: 1.2;
  }
  .cdt_wrapper p{
    margin-bottom: 0;
  }
  .cdt {
    width: 100%;
    /*display: block;*/
    justify-content: center;
  }
  .cdt_txt{
    font-size: 1.6rem;
    line-height: 1.2;
    /*margin-top: -5px
    margin-bottom: 10px;*/
  }
  .cdt_num{
    font-size: 2.2rem;
    padding: .2em .15em;
  }
  .cdt_date{
    margin-bottom: 8px;
  }
  .cdt_app{
    margin-left: 0;
      padding: 4% 0!important;
      width: 28%!important;
      /*display: block;*/
      font-size: 1.6rem!important;
      height: 33px!important;
      line-height: 4px!important;
      text-align: center;
      margin-left: 8px;
      box-sizing: border-box;
      /*margin-top: 6px;*/
  }
  .cdt_txt span{
    font-size: 1.2rem;
  }
  .cdt_date small{
    font-size: 1.2rem;
  }
  footer{
    margin-bottom: 11%!important;
  }
  .kikan{
    display: block;
  }
  }
  @media screen and (min-width: 768px) {
  footer {
      margin-bottom: 90px;
  }
  .cdt_wrapper {
      /*line-height: 2.5;*/
      font-size: 1.8rem;
      padding: 16px 0;
  }
  .cdt_wrapper small {
    font-size: 2.6rem;
    padding: 0 .4em;
  }
  .cdt_date {
    font-size: 2.6rem;
  }
  .cdt_date small{
    font-size: 2rem;
  }
  .cdt_txt{
    font-size: .6em;
    margin-right: 25px;
  }
  .cdt_txt span{
    font-size: 2rem;
    line-height: 1.2;
    display: block;
  }
  .cdt_app {
      width: 164px;
      display: block;
      font-size: 2.2rem;
      height: 60px;
      line-height: 60px;
  }
  }
  @media only screen and (max-width: 768px) and (orientation: portrait) {
  .cdt_app {
      width: 230px;
      display: block;
      font-size: 2.4rem;
      height: 45px;
      line-height: 45px;
  }
  footer{
    margin-bottom: 72px;
  }
  @media only screen and (max-width: 320px) and (orientation:portrait) {
  footer{
    margin-bottom: 14%!important;
  }
  .cdt_app {
      width: 24%!important;
      font-size: 1.2rem!important;
      height: 33px;
      line-height: 9px!important;   
  }
  .cdt_txt{
    font-size: 1.2rem;
  }
  }

