@charset "UTF-8";
/*-----------------------------------------------------------------------------------------------------
PC用レイアウト（768px以上スクリーン）
-----------------------------------------------------------------------------------------------------*/

/*--------------------------------------------------------
共通設定(PC)
--------------------------------------------------------*/

/* 初期スタイル調整 */
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/* body全体の初期スタイル調整 */
body {
	font-size: 62.5%;
	line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
	color: #000;
	background-color: #fff;
}

/*リンク文字の設定*/
a {
	text-decoration: underline;
}
a:link, a:visited {
	color: #39f;
}
a:hover, a:active {
	color: #f60;
}
p {
	margin: 0 !important;
	padding: 0 !important;
}
section {
	overflow: hidden;
}

ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0px !important;
}

/*H2タグ*/
h2 {
	margin: 0.5em 0 0.5em;
	font-size: 2.4em;
	font-weight: bold;
    font-style: italic;
	text-align: center;
}
/*H3タグ*/
h3 {
      margin: 0 0 0em;
      padding: 0.5em 0em 0.5em;
      font-size: 1.6em;
      font-weight: bold;
      color:#bf0405;
}
/*H4タグ*/
h4 {
	margin: 0 0 0.5em;
	padding: 0.3em 0.6em;
	font-size: 1.4em;
	border: 1px solid #8e8e8e;
	font-weight: bold;
}
/*H5タグ*/
h5 {
	margin: 0 0 0.5em;
	padding: 0.2em 0.4em;
	font-size: 1.2em;
	border-bottom: 2px solid #414141;
	font-weight: bold;
}
/*カラムが狭くなってもテーブルタグがはみ出ないようにする*/
table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	word-break: break-all;
	word-wrap: break-word;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        display: none;
        opacity: 0;
        z-index: -1;
    }
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 0s;
  background-color: #EF0305;
	/* 以下のコードを追加 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 2.0s infinite ease-in-out;
}
/* ローディングアニメーション */
/*@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}

.loaded {
  opacity: 0;
  visibility: hidden;
}*/

/*--------------------------------------------------------
全体レイアウト/背景設定（PC）
--------------------------------------------------------*/

/*全体エリア(全体背景の設定はここ)*/
.main {
  overflow: hidden;
}
/*記事(ボディ)エリア*/
.article{
	width: 100%;
    margin: 0 auto;    
}

/*記事(ボディ)エリアの行間*/
.article p {
	line-height: 1.6em;
	margin-bottom: 1em;
}
/*記事(ボディ)エリアのフォントサイズ*/
.article {
	font-size: 1.8em;
}
/*カラム全体の幅を変更する*/
.header_inr, .top_image_in {
	width: 1100px;
	margin: 0 auto;
    overflow: hidden;
}

/*カラム全体の幅を変更する*/
.top_image_in,.section_inr{
  width: 1100px;
  margin: 0 auto; /*真ん中に要素を置きたいときに使う*/
}
/*--------------------------------------------------------
上部固定ヘッダー設定
--------------------------------------------------------*/

/*上部固定ヘッダー全体*/
.header {
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 50000;
	background: linear-gradient( 135deg, rgba(255, 0, 0.8), rgba(121, 9, 9, 0.8));
	overflow: hidden;
    padding-bottom: 1em
}


/*ヘッダーロゴ*/
.header_logo {
	float: left;
	width: 18%;
	margin: 1.5em 0.5em 0em;
}
/*ヘッダー 電話ボタン*/
.header_tel {
	width: 25%;
	float: right;
	margin: 0.5em 0.5em 0em;
}
/*ヘッダー 問い合わせボタン*/
.header_mail {
	width: 22%;
	float: right;
	margin: 1.5em 0.3em 0em;
}
/*ヘッダー内の画像はエリア幅に合わせる*/
.header_logo img, .header_tel img, .header_mail img {
	width: 100%;
}
/*--------------------------------------------------------
ファーストビュー設定
--------------------------------------------------------*/

.top_image {
  background: linear-gradient( 135deg, rgba(255, 0, 0.8), rgba(121, 9, 9, 0.8)),
  url("../images/top_image_back.webp");
  background-size:cover;
  height: 100%;
    overflow: hidden;
  position: relative;
   z-index: -1000;
}

.top_image_in{
    padding-top: 10em;
    padding-bottom: 8em;
    position: relative;
    z-index: 1000;
}

.top_image_in img {
	width: 100%;
}

.top_image p{
  margin:20px 10px;
  text-align: left;
  font-size:4.5em;
  font-style: italic;
  font-weight: bold;
  color: #fff;
}

.top_image_in_inr {
   margin-top: 4.5em;
    width: 50%;
}

.top_image_in_inr p{
    line-height: 1;
}

p.title_main_01{
     font-size: 4.5em;
     font-style:normal;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

p.title_main_02{
    font-size: 18.5em;
     font-style:normal;
    font-weight: bold;
    color: #fff;
    text-align: center;
}

p.title_main_03{
     font-size: 3.8em;
     font-style:normal;
    color: #fff;
    text-align: center;
}

.top_smartphone_img_pc{
    position: absolute;
    right:50px;
    bottom:-20px;
    z-index: 0;
    transform:rotate(0deg);
}

.top_smartphone_img_pc{
    width: 45%;
}

.top_smartphone_img_sp{
        display: none;
 }

/*スライダー*/

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}


/*全共通*/

.bgextend{
  animation-name:bgextendAnimeBase;
  animation-duration:1s;
  animation-fill-mode:forwards;
  position: relative;
  overflow: hidden;/*　はみ出た色要素を隠す　*/
  opacity:0;
}

@keyframes bgextendAnimeBase{
  from {
    opacity:0;
  }

  to {
    opacity:1;  
}
}

/*中の要素*/
.bgappear{
  animation-name:bgextendAnimeSecond;
  animation-duration:1s;
  animation-delay: 0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond{
  0% {
  opacity: 0;
  }
  100% {
  opacity: 1;
}
}

/*左から右*/
.bgLRextend::before{
  animation-name:bgLRextendAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background:#FFEF00;
}
@keyframes bgLRextendAnime{
  0% {
    transform-origin:left;
    transform:scaleX(0);
  }
  50% {
    transform-origin:left;
    transform:scaleX(1);
  }
  50.001% {
    transform-origin:right;
  }
  100% {
    transform-origin:right;
    transform:scaleX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger{
    opacity: 0;
}


/*-----------------------------------------------------------------------------------------------------
※※※※※※※※※メイン部分(ボディ) ※ここに案件独自のcssを記述していく
-----------------------------------------------------------------------------------------------------*/

/*以下、制作しながらセクション単位で追記していく*/

.section_01 {
	background-color: #fff;
	padding: 1.5em 4.5em;
}
.section_02 {
	background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(121,121,121,0.9) 0%, rgba(0,0,0,0.9) 100%), url("../images/bg_01.webp");
	padding: 1.5em 0em;
}

.section_03 {
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(121,121,121,0.9) 0%, rgba(0,0,0,0.9) 100%), url("../images/bg_01.webp");
    position: relative;
	padding: 1.5em 0em;
}

.section_04 {
      background: linear-gradient( 135deg, rgba(255, 0, 0.7), rgba(121, 9, 9, 0.7)),
  url("../images/bg_01.webp");
}

.section_05 {
     background: linear-gradient( 135deg, rgba(255, 255, 255,0.9), rgba(255, 255, 255, 0.9)),
  url("../images/bg_01.webp");
    background-position: top center;
    background-size: 100%;
}

.section_06 {
     background: linear-gradient( 135deg, rgba(255, 255, 255,0.9), rgba(255, 255, 255, 0.9)),
  url("../images/bg_02.webp");
    background-position: top center;
    background-size: cover;
}

.section_07 {
     background: linear-gradient( 135deg, rgba(255, 255, 255,0.9), rgba(255, 255, 255, 0.9)),
  url("../images/bg_03.webp");
    background-position: top center;
    background-size: cover;
}

.section_08{
    background: #eef2f4;
}

.section_09{
    padding: 0em;
}


.semicircle {
  position: relative;
  background: #2c3e50;
  height: 50vh;
}

.semicircle::before {
  position: absolute;
  content: '';
  left: 50%;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: inherit;
  transform: translateX(-50%) translateY(50%);
  bottom: 0px;
}




.area_cta {
     background: linear-gradient( 135deg, rgba(255, 0, 0.7), rgba(121, 9, 9, 0.7)),
  url("../images/bg_01.webp");
    background-position: top center;
    background-size: cover;
	padding: 0em 0em;
}

.box_cta{
    background: #fff;
    margin: 1em 3em;
    padding: 0em 2em 1em;
   box-shadow: 0px 8px 25px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
}

.box_cta_title{
    background: linear-gradient(135deg, rgba(255, 0, 0.8), rgba(121, 9, 9, 0.8));
    color: #fff;
    margin: 0 -1.13em;
    padding: 0em 0em;
    font-size: 1.8em;
    font-weight: 700;
    text-align: center;
}

.box_cta_title img{
    width: 80%;
}

.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.85);
  }
}



.box_left{
	background: #FF0;
	width: 250px;
	float: left;
	height: 100px;
}

.cta_img{
    text-align: center;
    padding:0 0 0 1.5em;
    margin-bottom: 0.5em;
}

.cta_img img{
    width: 90%;
}


.cta_btn{
    text-align: center;
}

.cta_btn img{
   width: 90%;
}

.subhead_01{
    text-align: center;
    font-size: 3.5em;
    font-weight: bold;
    margin-top:1em;
}

.subhead_01 p{
   line-height: 1.5;
    color: #F30003;
    letter-spacing: 0.1;
    font-style:italic;
}


.text_01{
    text-align: center;
    font-size: 1.4em;
  font-weight: 700;
}

.photo_01{
    width: 100%;
    margin: 1.5em auto;
}

.photo_01 img{
    width: 100%;
    /*box-shadow: 15px 15px 0 #bf0405;*/
}

.blue_line {
    background:rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ccf0ff 0%) repeat scroll 0 0;
}

.yellow_line {
    background:rgba(0, 0, 0, 0) linear-gradient(transparent 90%, #FF0 0%) repeat scroll 0 0;
}

.photo_04{
    width: 100%;
    margin: 1.5em auto;
}

.photo_04 img{
    width: 100%;
    box-shadow: 15px 15px 0 #bf0405;
}



.box_right{
	background: #F00;
	width: 250px;
	float: right;
	height: 100px;
}

.cta_card{
    text-align: center;
}

.cta_card img{
   width: 70%;
}

.benefit_img{
      text-align: center;
}

.benefit_img img{
   width: 100%;
}



.subhead_02{
    text-align: center;
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 1em;
}

.subhead_02 p{
   line-height: 1.5;
    color: #fff;
    letter-spacing: 0.1;
    font-style:italic;
}

.area_nayami{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap:30px;
    margin-bottom: 1.8em;
}

.area_nayami_02{
    display: flex;
    justify-content:space-around;
    flex-wrap: wrap;
    gap:30px;
    margin-bottom: 1.8em;
}


.box_nayami{
    background: #fff;
    width: 31%;
    padding: 1.5em;
    color: #000;
    text-align: center;
    font-size: 1em;
    position: relative;
   display: inline-block;
  border-radius: 15px;
}

.box_nayami img{
    width: 80%;
}

.box_nayami:before{
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #fff;
}

.box_person{
    background:none;
    width: 31%;
    color: #000;
    text-align: center;
}

.box_person img{
    width: 50%;
}





.subhead_03{
    text-align: center;
    font-size: 3em;
    font-weight: bold;
    margin-top:1em;
    margin-bottom: 1em;
}

.subhead_03 p{
   line-height: 1.4;
    color: #000;
    letter-spacing: 0.1;
    font-style:italic;
}

.box_reason{
    background-color: #eef2f4;
    margin: 0 1em;
    margin-bottom: 3em;
    padding: 1.5em 3em;
    font-size: 1.2em;
     position: relative;
    box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
    overflow: auto;
}

.box_reazon_img_01{
  
}

.box_reazon_img_01 img{
   width: 15%;
}

.box_reazon_img_02{
    position: absolute;
    top: -20px;
    left: 0px;
    z-index: 10000;
}

.box_reazon_img_02{
   width: 15%;
    transform: rotate(-5deg)
}

.box_reazon_img_03{
    position: absolute;
    top: -70px;
    right: 0px;
    z-index: 10000;
}

.box_reazon_img_03{
   width: 15%;
    transform: rotate(-5deg)
}


.title_reason_01{
    font-size: 1.2em;
    color: #C9C9C9;
    text-align: center;
}

.title_reason_02{
    background: linear-gradient( to right,  rgba(69,179,224,1) 25%, rgba(102,51,153,1) 75% );
  -webkit-background-clip: text;
  color: transparent;
    font-size: 2.5em;
    text-align: center;
    font-weight: 700;
    border-bottom: 1px dotted #ccc;
    margin-bottom: 2em;
}

.img_yajirusi{
    text-align: center;
    margin-top: -1.5em;
}

.img_yajirusi img{
    width: 5%;
}

.img_itumademo{
    text-align: center;
    margin: 1em auto 0;
      width: 100%;
    
}

.img_itumademo img{
    width: 100%;
}

.subhead_04{
    text-align: center;
    font-size: 3.5em;
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 1em;
}

.subhead_04 p{
   line-height: 1.5;
    color: #fff;
    letter-spacing: 0.1;
    font-style:italic;
}


.subhead_05{
    text-align: center;
    font-size: 3.5em;
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 1em;
    color: #fff;
}

.subhead_05 p{
   line-height: 1.5;
    color: #fff;
    letter-spacing: 0.1;
    font-style:italic;
}



.deg_none{
      transform:rotate(0deg);
    z-index: 0;
}

.photo_03{
    width: 80%;
    margin: 1.5em auto;
}

.photo_03 img{
    width: 100%;
}

.ocu{
  margin-top: 2em;
  margin-bottom: 1em;
  text-align: center;
}

.ocu img{
    width: 100%;
}

.clearfix{
	clear:both;
}

.box_main{
	background-color: #ccc;
	border: 10px solid #6C6C6C;
	overflow: auto;
}


.box_area{
   background-color: #FF0;
	width: 300px;
	height: 300px;
	position: static;
}

.box_cru{
        background-color: #eef2f4;
    margin: 0 1em;
    margin-bottom: 2em;
    padding: 1.5em 1.5em;
    font-size: 1.2em;
    text-align: center;
     position: relative;
    box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
}

.title_cru{
        background: linear-gradient( to right,  rgba(69,179,224,1) 25%, rgba(102,51,153,1) 75% );
  -webkit-background-clip: text;
  color: transparent;
    font-size: 2.5em;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
}

.tag_cru{
    position: absolute;
    top:0px;
    right: -10px;
    transform: rotate(10deg);
    opacity: 0.1;
}

.tag_cru_reverse{
    position: absolute;
    top:0px;
    left: -10px;
    transform: rotate(-10deg);
    opacity: 0.1;
}

.tag_cru_reverse_02{
    position: absolute;
    top:0px;
    left: -100px;
    transform: rotate(-10deg)
}

.tag_cru img{
    width: 80%;
}

.tag_cru_reverse img{
    width: 80%;
}

.tag_cru_reverse_02 img{
    width: 80%;
}



.img_cru{
    /*border: 10px solid #FC9293;*/
}

.line_tyosei{
        line-height: 1;
}

.small_text{
    font-size:0.7em !important;
}


.box_reazon{
    display: flex;
    flex-direction: row-reverse;
    margin-bottom: 2.5em;
}

.box_reazon_reverse{
    display: flex;
    flex-direction: row;
    margin-bottom: 2.5em;
}

.box_reazon_inr{
    width: 95%;
    padding: 30px;
    position: relative;
}

.box_reazon_img {
    width: 90%;
    box-shadow: 15px 15px 0 #bf0405;
}

.box_reazon_img img{
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: fill;
}


.tag_point{
    font-family: "Osaka-mono", "MS Gothic", "monospace";
     position: absolute;
    top:-20px;
    right: 0px;
    font-size: 6em;
    font-weight: 900;
    font-style:italic;
    letter-spacing: 0.1;
    opacity: 0.1;
    color: #bf0405;
}

.tag_point_reverse{
    font-family: "Osaka-mono", "MS Gothic", "monospace";
     position: absolute;
    top:-20px;
    left: 0px;
    font-size: 6em;
    font-weight: 900;
    font-style:italic;
    letter-spacing: 0.1;
    opacity: 0.1;
    color: #bf0405;
}

.koe_area{
    position: relative;
}

.box_koe_img{
    position: absolute;
    top: 0px;
    right:-15px;
    width: 33%;
    z-index: 10000;
}

.img_tyosei{
    transform: rotate(25deg);
}

.box_koe_img img{
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    width: 100%;
}

.box_koe_img_reverse{
    position: absolute;
    top: 0px;
    left:-15px;
    width: 33%;
    z-index: 10000;
}

.box_koe_img_reverse img{
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    width: 100%;
}


.box_koe_txt{
    background-color: #eef2f4;
    margin-bottom: 2em;
    padding: 2em 2em;
    width: 70%;
    float: left;
    box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
}

.box_koe_txt_reverse{
    background-color: #eef2f4;
    margin-bottom: 2em;
    padding: 2em 2em;
    width: 70%;
    float: right;
    box-shadow: 0px 8px 16px -2px rgba(10,10,10,0.1), 0px 0px 0px 1px rgba(10,10,10,0.02);
}

.section_teacher_01{
    background-image: url("../images/bg_04.webp"); /* 全体の背景画像 */
background-repeat: no-repeat;            /* 背景を繰り返さない */
background-position: 50% 50%;            /* 背景画像の位置は画面中央 */
background-attachment:fixed;             /* 背景画像を固定する */
background-size:cover;
    color: #fff;
}

.section_teacher_02{
    background-image: url("../images/bg_05.webp"); /* 全体の背景画像 */
background-repeat: no-repeat;            /* 背景を繰り返さない */
background-position: 50% 50%;            /* 背景画像の位置は画面中央 */
background-attachment:fixed;             /* 背景画像を固定する */
background-size:cover;
    color: #fff;
}


.box_profile_01_img{
    width: 40%;
    float: left;
    padding-top: 0em;
}

.box_profile_01_img img{
    width: 100%;    
}

.box_profile_01{
    width: 55%;
    float: right;
    margin-bottom: 3em;
}

.box_profile_02_img{
    width: 40%;
    float: right;
    padding-top: 0em;
}

.box_profile_02_img  img{
    width: 100%;    
}


.box_profile_02{
   width: 55%;
    float: left;  
    margin-top: 3em;
    margin-bottom: 3em;
}

.box_message{
    text-align: center;
}








/* timeline */
/*========= バー表示のためのCSS ===============*/
/*タイムライン全体の設定*/
.timeline {
  max-width: 1100px;
  width: 100%;
  margin: 50px auto;
  padding: 0 30px;
}
.timeline li {
  /*線の起点とするためrelativeを設定*/
  position: relative;
  list-style: none;
  padding: 0 0 20px 0;
}
.timeline dl {
  margin: 0 0 20px 3em;
}
.timeline dd strong {
  display: block;
  padding: 10px 0;
}
.timeline dt {
  font-size: 1.6em;
  font-family: "peignot";
  color: #DE181F;
}
/*絶対配置で線を設定*/
.border-line {
  /*線の位置*/
  position: absolute;
  left: 0.25em;
  top: 0;
  width: 5px; /*線の太さ*/
  height: 0; /*はじめは高さを0に*/
  background: #DE181F;
}
/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: #DE181F;
  border-radius: 50%;
}
.step_title {
  color: #DE181F;
  font-size: 1.6em;
}



/*--------------------------------------------------------
段落・リスト・テーブル設定
--------------------------------------------------------*/


/*テーブルタグ*/
table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid #959595;
	border-left: 1px solid #959595;
	margin-top: 1em;
	margin-bottom: 1em;
}
th, td {
	padding: 0.5em;
	border-right: 1px solid #959595;
	border-bottom: 1px solid #959595;
}
th {
	background-color: #f0f0f0;
	font-weight: bold;
	text-align: left;
}
td {
	background-color: #fff;
	text-align: left;
}
table.table-style01 th, table.table-style01 td {
	text-align: left;
	vertical-align: middle;
}
/*Youtube埋め込み調整*/

.youtube_size {
	width:100%;
	height: 440px;
}
/*-----------------------------------------------------------------------------------------------------
テンプレート用のcss※必要に応じて使用する
-----------------------------------------------------------------------------------------------------*/

/*画像化したサブヘッドを横に広げる*/
h2.subhead {
	margin: 0em -2em;
}
/*よくある質問(文章ver.)*/
.box_qa {

}
.box_qa_q {
	background-color: #fff;
	padding: 1em 2em;
	border-bottom: 1px solid #ccc;
	font-size: 120%;
	font-weight: bold;
	color: #CD3B3E;
}
.box_qa_a {
	background-color: #fff;
	padding: 1em 2em;
	line-height: 1.8;
}
.box_qa_q p {
	text-indent: 0em;
}
.box_qa_a p {
	text-indent: 0em;
	margin-left: 0em;
}
/*よくある質問(文章ver.)*/
.box_qa {
	background-color: #efefef;
	padding: 1em;
}
.box_qa_q {
	background-color: #fff;
	padding: 1em 2em;
	border-bottom: 1px solid #ccc;
	font-size: 120%;
	font-weight: bold;
	color: #CD3B3E;
}
.box_qa_a {
	background-color: #fff;
	padding: 1em 2em;
	line-height: 1.8;
}
.box_qa_q p {
	text-indent: 0em;
}
.box_qa_a p {
	text-indent: 0em;
	margin-left: 0em;
}



/*-----------------------------------------------------------------------------------------------------
フッター部分
-----------------------------------------------------------------------------------------------------*/

.footer {
	background: linear-gradient( 135deg, rgba(255, 0, 0.8), rgba(121, 9, 9, 0.8));
	padding: 2em 0 0.5em;
	text-align: center;
	font-size: 1.4em;
	color: #fff;
}
.footer a {
	color: #fff;
}
/*スマホ用下部固定メニュー*/
.fix_menu_smartphone {
	display: none;
}

/*-----------------------------------------------------------------------------------------------------
フェードイン部分
-----------------------------------------------------------------------------------------------------*/

.fadein {
  opacity: 0;
  transform: translateY(0px);
  transition: all 2s;
}

.fadeintop {
  opacity: 0;
  transform: translateY(-40px);
  transition: all 2s;
}

.fadeinleft {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 2s;
}
.fadeinright {
  opacity: 0;
  transform: translateX(40px);
  transition: all 2s;
}
.fadeinbottom {
  opacity: 0;
  transform: translateY(40px);
  transition: all 2s;
}

.fadeinbottom_02 {
  opacity: 0;
  transform: translateY(40px);
  transition: all 2s;
}

.sp_br{
    display: none;
    }


