@charset "utf-8";


/*
*	Title: CELF
*/


#celf_contents * {
	color: #333;
}

#celf_contents .summary {
	margin-top: 22px;
	margin-bottom: 10px !important;
	min-height: 38px;
	padding-left: 50px;
	font-size: 120%;
	line-height: 270%;
	background: url(../img/msct_01.png) 14px center no-repeat;
}


@media screen and (max-width:768px) and (min-width:1px) {
#celf_contents .summary {
    line-height: 150%;
}}

#celf_contents .step_01,
#celf_contents .step_02,
#celf_contents .step_03 {
	margin-left: 22px;
	padding: 2px 0 2px 10px;
	font-size: 120%;
}

#celf_contents .step_01 {
	border-left: 5px solid #00a73c;
}

#celf_contents .step_02 {
	border-left: 5px solid #ffbb38;
}

#celf_contents .step_03 {
	border-left: 5px solid #00b3ee;
}

#celf_contents p {
	font-size: 13px;
	line-height: 1.6em;
}

#celf_contents p.step {
	margin-left: 22px;
    font-size: 14px;
    line-height: 120%;
}

#celf .title_bk_01 {
    background: url(../img/title_bk_01.png) no-repeat 0 bottom;
    padding: 4px 0 5px 28px;
    font-size: 130%;
    line-height: 130%;
}

#celf .title_bk_02 {
    background: url(../img/title_bk_02.png) no-repeat 0 bottom;
    font-size: 130%;
    line-height: 130%;
    padding: 4px 0 5px 50px;
}

#celf .title_bk_03 {
    background: url(../img/title_bk_03.png) no-repeat 0 bottom;
    font-size: 130%;
    line-height: 130%;
    padding: 4px 0 5px 50px;
}

#celf .title_bk_04 {
    background: url(../img/title_bk_04.png) no-repeat 0 bottom;
    font-size: 130%;
    line-height: 130%;
    padding: 4px 0 5px 50px;
}

#celf_contents .clr_grn {
	color: #00a73c;
	font-size: 100%;
	line-height: 100%;
}

#celf_contents .clr_00a73c {
	color: #00a73c;
    font-size: 115%;
    line-height: 130%;
}

#celf_contents .clr_ffbb38 {
	color: #ffbb38;
    font-size: 115%;
    line-height: 130%;
}

#celf_contents .clr_f5a600 {
	color: #f5a600;
    font-size: 115%;
    line-height: 130%;
}

#celf_contents .clr_00b3ee {
	color: #00b3ee;
    font-size: 115%;
    line-height: 130%;
}

#celf_contents .tbl_01 {
    box-sizing: border-box;
	width: 100%;
	border-collapse: collapse;
}

#celf_contents tr.odd_nbr {
	background-color: #eaeaea;
}

#celf_contents td {
	padding: 4px 0 4px 5px;
}


/*
	2022/10/27 更新
--------------------------------------------*/
.main-v {
  width: 980px;
  height: 374px;
  position: relative;
  z-index: 3;
  border: 40px solid #00a73c;
}
.main-v .main-v-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 980px;
  height: 300px;
  object-fit: cover;
  z-index: -3;
}
.main-v .main-v-chara {
  position: absolute;
  width: 378px;
  bottom: -6px;
  right: 20px;
}
.main-v .text-area {
  width: 550px;
  padding: 20px;
}
.main-v .text-area p {
  font-size: 28px;
  font-weight: bold;
  line-height: 38px;
}
.main-v .text-area p .strong {
  font-size: 38px;
  line-height: 48px;
}
.main-v .text-area p .small-font {
  font-size: 16px;
}
.main-v .text-area .main-v_boxes {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 350px;
}
.main-v .text-area .main-v_boxes .main-v_box-01,
.main-v .text-area .main-v_boxes .main-v_box-02 {
  border: 2px solid #000;
  border-radius: 5px;
  background: #FFF;
  color: #000;
  width: 150px;
  height: 60px;
  text-align: center;
  line-height: 22px;
  font-weight: bold;
  padding: 5px 10px;
}
.main-v .text-area .main-v_boxes .main-v_box-01 {
  line-height: 50px;
}
.main-v .text-area .main-v_boxes .main-v_box-01 .large {
  font-size: 22px;
}
.main-v .text-area .main-v_boxes .main-v_box-02 .medium {
  font-size: 18px;
}

.clr_grn {
    color: #00a73c;
    font-size: 100%;
    line-height: 100%;
}

@keyframes sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  100% {
    transform: skewY(-45deg) translateX(35em);
  }
}
.celf-btn-wrap{
position:relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    height:60px;
}
.celf-btn-wrap .celf-btn{
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ボタンをキラッとさせる対応*/
@keyframes shiny {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}
.celf-btn-wrap .celf-btn .button {
    padding: 1em 3em;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #4472C4;
    font-size: 16px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.celf-btn-wrap .celf-btn .button::after {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(100deg,  rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1) 100%, rgba(255, 255, 255, 0) 0%);
    
    /* アニメーション */
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}
.celf-btn-wrap .celf-btn .button:hover {
  //background-color: #2194E0;
  color: #fff!important;
 text-decoration: none!important;
}
/*
.celf-btn-wrap .celf-btn .button {
    padding: 1em 3em;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background: #4472C4;
    font-size: 16px;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
}
.celf-btn-wrap .celf-btn .button:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: -5.5em;
  transform: skewX(-45deg) translateX(0);
  transition: none;
}
.celf-btn-wrap .celf-btn .button:hover {
  //background-color: #2194E0;
  color: #fff!important;
 text-decoration: none!important;
}
.celf-btn-wrap .celf-btn .button:hover:before {
  transform: skewX(-45deg) translateX(35em);
  transition: all 0.5s ease-in-out;
}*/

.tbl_01 {
    box-sizing: border-box;
    width: 100%;
    border-collapse: collapse;
}
.tbl_01 tr.odd_nbr {
    background-color: #eaeaea;
}
.tbl_01 td {
    padding: 4px 0 4px 5px;
}

@media screen and (max-width: 768px) and (min-width: 1px) {
  .main-v {
    width: 100%;
    height: 400px;
    z-index: 3;
    border: 20px solid #00a73c;
    background: url(../img/202210_bg.png);
  }
  .main-v .main-v-bg {
    display: none;
  }
  .main-v .main-v-chara {
    width: 80%;
    right: initial;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
  }
  .main-v .text-area {
    width: 100%;
    margin: auto;
    padding: 10px;
  }
  .main-v .text-area p {
    font-size: 16px;
    font-weight: bold;
    line-height: 22px;
  }
  .main-v .text-area p .strong {
    font-size: 22px;
    line-height: 32px;
  }
  .main-v .text-area p .small-font {
    font-size: 14px;
  }
  .main-v .text-area .main-v_boxes {
    width: 100%;
    flex-wrap: wrap;
  }
  .main-v .text-area .main-v_boxes .main-v_box-01,
  .main-v .text-area .main-v_boxes .main-v_box-02 {
    border: 2px solid #000;
    border-radius: 5px;
    background: #FFF;
    color: #000;
    width: 100%;
    height: 35px;
    text-align: center;
    line-height: 18px;
    font-weight: bold;
    padding: 3px 10px;
  }
  .main-v .text-area .main-v_boxes .main-v_box-01 {
    line-height: 29px;
    margin-bottom: 10px;
  }
  .main-v .text-area .main-v_boxes .main-v_box-01 .large {
    font-size: 18px;
  }
  .main-v .text-area .main-v_boxes .main-v_box-02 {
    line-height: 29px;
  }
  .main-v .text-area .main-v_boxes .main-v_box-02 .medium {
    font-size: 18px;
  }

  h2.heading-202210 {
    line-height: 150%;
  }
  .celf-btn-wrap{
  width:100%;
  }
  .celf-btn-wrap .celf-btn{
  width:100%;
  }
  .celf-btn-wrap .celf-btn .button{
  width:100%;
  }
  .tbl_01 td:first-of-type{
     width:25px;
  }
  .tbl_01 td:nth-of-type(2){
    width:120px;
  }
  .sp-mL1em{
  margin-left:1em!important;
  }
}
