/*
Theme Name:Twenty Twenty-Two child
Theme URI:
Description:child
Template:twentytwentytwo
Author:Osu
Author URI:https://www.takuken.or.jp/
Version:1.4
*/

/*必要ならばここにコードを書く*/
/***ページタイトル削除***/
h1.entry-title{
 display:none;
}

/**タイトル用**/
.heading01 {
	font-size: 2rem;
  font-weight: 700;
}

.heading01::before {
	content: attr(data-en);
	display: block;
	font-size: 1.5rem;
}

.heading01::after {
	content: '';
	display: block;
	width: 25%;
	height: 5px;
}

/***ステップバーデザイン3***/
.step-wrap3 {
 counter-reset: count;
 margin: 2em 0;
 position: relative;
}
.step-content3 {
 padding: 1.3em 0 .3em 1em;
 margin: 0 0 1em 1em;
 position: relative;
 border-top: solid 2px #ddd;.
}
.step-content3::before {
 content: "";
 display: block;
 position: absolute;
 bottom: 0;
 left: -10px;
 border-style: solid;
 border-width: 17px 8px 0 8px;
 border-color: #ddd transparent transparent transparent;
}
.step-content3::after {
 content: "";
 display: block;
 height: calc(100% - 36px);
 border-left: dashed 4px #ddd;
 position: absolute;
 top: 16px;
 left: -4px;
}
.step-label3 {
 padding: 3px 20px 3px 15px;
 color: #fff;
 font-weight: bold;
 position: absolute;
 top: -18px;
 left: -20px;
 background: #A0C060;
 border-radius: 20px;
 z-index: 1;
}
.step-label3::after {
 counter-increment: count;
 content: counter(count);
 position: relative;
 left: .3em;
}
.step-title3 {
 font-weight: bold;
 font-size: 120%;
}
.step-body3 {
 margin-top: .2em;
 padding: 0 0 1em;
}
.step-wrap3 > :last-child {
 -shadow: 5px 7px 0 -5px #ddd;
}
.step-wrap3 > :last-child::before, .step-wrap3 > :last-of-type::after {
 display: none;
}
/***ステップバーデザイン3***/

/***flex1***/
.flex1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3px !important;
}

.fbox {
  background-color: #F0F0E0;
  margin: 5px ;
  width: 45%;
}

.fbox .fbox-title {
  font-size: 1.1em;
  background-color: #A0C060;
  text-align: center;
  color: #fff;
  padding: 6px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.fbox p {
  margin: 15px;
}
@media screen and (max-width: 767px) {
    .fbox {
        display: block;
    }
    .fbox {
        width: 100%;
        margin: 0 auto;
    }
}
/***flex1***/

/***flex2***/
ul.flex2 {
 padding: 0;
 display: flex;
 flex-wrap: wrap;
 width: 100%;
}
ul.flex2 > li {
 width: 50%;
 list-style: none;
 background: #C0E080;
 border: 1px solid #ffffff;
 box-sizing: border-box;
}
/***flex2***/

/***ボックス1***/
.box4{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 19px;
  margin: 2em 0;
  color: #2c2c2f;
  background: #F0F0E0;
  font-weight: bold;
  font-size: 110%;
  border-top: solid 10px #fae16e;
  border-bottom: solid 10px #fae16e;
}
.box4 p {
  margin: 0;
  padding: 0;
}
.box4 h6 {
  position: relative;
  padding: 1rem .5rem;
  font-weight: bold;
  font-size: 120%;
}

.box4 h6:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  content: '';
  border-radius: 3px;
  background-image: -webkit-gradient(linear, right top, left top, from(#F0F0E0), to(#fae16e));
  background-image: -webkit-linear-gradient(right, #F0F0E0 0%, #fae16e 100%);
  background-image: linear-gradient(to left, #F0F0E0 0%, #fae16e 100%);
}
/***ボックス1***/

/***ボックス2***/
.box2 {
    margin: 2em 0;
    background: #F0F0E0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.box2 .box-title {
    font-size: 1.2em;
    background: #fff;
    box-sizing: border-box;
    border: 3px solid #d89b67;
    padding: 4px;
    text-align: center;
    color: #000;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.box2 p {
    padding: 0.2em 20px;
    margin: 0;
}
/***ボックス2***/

/***光る***/

.anim-box.kira {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.anim-box.kira::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.anim-box.kira:hover::before {
  animation: kiran 0.5s linear 1;
}

@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/***光る***/

/***文字フェードイン***/
.matrix .bg-wrap,
.matrix .bg-wrap .inn {
  display: block;
}

.matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}

.matrix .bg-wrap + .bg-wrap {
  margin-top: 10px;
}

.matrix .bg-wrap .inn.large {
  font-size: 36px;
  font-weight: bold;
}
.matrix .bg-wrap .inn.small {
  font-size: 15px;
}

.matrix .bg-wrap .inn {
  opacity: 0;
  transform: matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.matrix.is-animated .bg-wrap {
  opacity: 1;
}

.matrix.is-animated .bg-wrap .inn {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}
/***文字フェードイン***/

/*========= レイアウトのためのCSS ===============*/

.wrapper{
  overflow: hidden;
  width: 100%;
  display: flex;
}

.box{
  width: 220px;
  padding: 20px;
  margin:0 20px 20px 0;
  background: #666;
  color: #fff;
  box-sizing:border-box;
}

/* jQ-fadeUp アニメーション*/

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:2.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(250px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}
	
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeUpTrigger,
.fadeRightTrigger {
    opacity: 0;
}
/* jQ-fadeUp */

/*h1*/
h1 {
  position: relative;
  font-weight: bold !important;
  font-size: 140% !important;
  font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif !important;
  padding: .25em 0 .5em .75em;
  border-left: 6px solid #ccc;
}
h2,h3,h4,h5,h6{
            font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif !important;
}
h1::before {
  position: absolute;
  left: -6px;
  bottom: 0;
  content: '';
  width: 6px;
  height: 50%;
  background-color: #80A040;
}
h1::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  width: 100%;
  height: 0;
  border-bottom: 2px solid #80A040;
}
/*h1*/
/*横幅*
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
     max-width: 70rem;
     width: calc(85% - 4rem);
 }
*横幅*/
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
     max-width: 90rem;
     width: calc(95% - 2rem);
 }

/*大ボタン1*/
section {
  max-width: 300px;
  margin: 0 auto;
}
a.btn_a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  background: #fff;
  position: relative;
}
a.btn_a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #fff;
  box-sizing: border-box;
  color: #333;
  font-size: 110%;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-shadow: 0px 5px 12px #CAD4E2, -6px -6px 12px #FFF;
  border-radius: 10px;
  position: absolute;
  top: -5px;
  left: 0;
  transition-duration: 0.2s;
}
a.btn_a:hover span {
  left: 0;
  top: 0;
  box-shadow: 0 0 4px #CAD4E2, -2px -2px 4px #FFF;
}

/*強調表示*/
span.mark_y {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #d46353 60%);
}

span.mark_p {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #fae16e 60%);
}

span.mark_r {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #edc37c 60%);
}

span.mark_g {
  font-weight: bold;
  background: linear-gradient(transparent 60%, #C0E080 60%);
}
/*強調表示*/
/*比較表*/
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.listcards{
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items:stretch;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center
        }
.listcards div{
        font-size: 1em;
        letter-spacing: 10px;
        line-height: 2;
        font-weight: bold;
}
.listcard{
  flex: 0 0 33%;
  border: 2px solid #F0F0E0;
  padding-bottom: 1rem;
  box-sizing: border-box;
  text-align: center;
  margin:0 auto 3em;
        }
        .listcard h3 {
            background: #a2bc10;
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
            padding: 10px;
            margin: 0;
        }
        .listcard.web h3 {
            background: #d46353;
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
            padding: 10px;
            margin: 0;
        }
        .listcard.premium {
            border: 6px solid #d46353;
            background: #F0F0E0;
            padding-bottom: 3rem
        }
        .listcard.premium h3{
            background: #d46353;
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
            padding: 10px;
            margin: 0;
        }
        .listcard h4, .listcard.web h4{
            font-size: 300%;
            margin: 0 auto;
            padding: 1rem 0 0;
        }

        .listcard.premium h4 {
            padding: 20px;
        }
        .listcard p, .listcard.web p {
            margin: 0;
            padding: 1rem;
            text-align: left;
        }
        .listcard a, .listcard.web a {
            padding: 10px 40px;
            background: #fb5859;
            color: #fff;
            text-decoration: none;
            border-radius: 3px;
            display: inline-block;
        }

        .listcard h2, .listcard.premium h2, .listcard.web a {
            position: relative;
            display: inline-block;
            margin-bottom: 1em;
          }
        .listcard h2, .listcard.premium h2, .listcard.web a {
            content: '';
            position: absolute;
            bottom: -15px;
            display: inline-block;
            width: 60px;
            height: 5px;
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
            background-color: black;
            border-radius: 2px;
          }

@media screen and (max-width: 600px){
.profile_card, .listcards, .profile_cards {
    flex-direction: column;
    -webkit-flex-direction: column;
}
  .listcard, .card_photo {
    flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
}
  .listcard.premium {
    order: 1;
    -webkit-order: 1;
}
}
/*比較表*/
div.maru {
  position: relative;
  color: #333;
  display: inline-block;
  margin: 47px 0;
  text-shadow: 0 0 2px #fff;
  width: 90%;
}
div.maru:before {
  content: "";
  position: absolute;
  background: #F0F0E0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 50%;
  border: dashed 1px #fff;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: -1;
  box-shadow: 0px 0px 0px 5px #fff;
}
div.maru2 {
  position: relative;
  color: #333;
  display: inline-block;
  margin: 47px 0;
  text-shadow: 0 0 2px #F0F0E0;
  width: 90%;
}
div.maru2:before {
  content: "";
  position: absolute;
  background: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 50%;
  border: dashed 1px #F0F0E0;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: -1;
  box-shadow: 0px 0px 0px 5px #F0F0E0;
}
/*文字囲み*/
.kakomi{
text-shadow:1px 1px 0 #2d2d2d, -1px -1px 0 #2d2d2d,
          -1px 1px 0 #2d2d2d, 1px -1px 0 #2d2d2d,
          0px 1px 0 #2d2d2d,  0-1px 0 #2d2d2d,
          -1px 0 0 #2d2d2d, 1px 0 0 #2d2d2d;
}
/*文字囲み*/
/*h5*/
h5 {
  position: relative;
  padding: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin: 0.3em auto 0.2em;
}

h5:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #d89b67;
  margin: 0 auto 0.5em;
}

/*olリストデザイン1 */
.list_design1 {
  list-style: none;
  counter-reset: list;
  display: inline-block;
  padding: 0.1rem 0.5rem;
  margin: 0.1rem;
}

.list_design1 li {
  position: relative;
  padding: 0 0.5rem;
  margin: 0.5rem;
  padding-left: 43px;
  line-height: 30px;
  border: 2px solid #80A040;
  color: #000000;
  font-weight: bold;
}

.list_design1 li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: 0px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height: 30px;
  background: #80A040;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.list_design1 li:after {
  content: "";
  display: block;
  position: absolute;
  left: 30px;
  height: 0;
  width: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #80A040;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
/*リストデザイン1*/
/*ulリストデザイン2*/
ul.list2{
 padding: 0;
 font: 16px/1.6 'arial narrow', sans-serif;
 width:90%;
 list-style: none;
 margin: 5px auto;
 text-align: center;
}

ul.list2 li{
 position: relative;
 padding: 7px 5px 7px 35px;
 margin-bottom:5px;
 color: #000;
 font-weight: bold;
 text-align: left;
}
ul.list2 li:before{
 content: "";
 position: absolute;
 left: 10px;
 display: block;
 width: 1em;
 height: 1em;
 border-radius: 50%;
 background: #fff
 top: 50%;
 -moz-transform: translateY(-50%);
 -webkit-transform: translateY(-50%);
 -o-transform: translateY(-50%);
 -ms-transform: translateY(-50%);
 transform: translateY(-50%);
}

@media screen and (max-width: 640px) {
 .last td:last-child {
   border-bottom: solid 1px #ccc;
   width: 100%;
 }
table {
   width: 90%;
   margin:auto;
 }
table th,
table td {
   border-bottom: none;
   display: block;
   width: 100%;
 }
}
/*ulリストデザイン2*/
/*リスト項目 */
li.list_web,li.list_cre {
   background: #d46353;
   border: 1px dashed #fff; /*線の太さ・色*/
   box-shadow: 0px 0px 0px 2px #d46353;
}
li.list_mado,li.list_gen {
   background: #96D6E0;
   border: 1px dashed #F0F0E0; /*線の太さ・色*/
   box-shadow: 0px 0px 0px 2px #96D6E0;
}
li.list_yuso,li.list_gin {
   background: #C0E080;
   border: 1px dashed #F0F0E0; /*線の太さ・色*/
   box-shadow: 0px 0px 0px 2px #C0E080;
}
li.list_con {
   background: #fae16e;
   border: 1px dashed #F0F0E0; /*線の太さ・色*/
   box-shadow: 0px 0px 0px 2px #fae16e;
}
li.youken {
border: 3px solid #d89b67; /*線の太さ・色*/
border-radius: 8px; /*角の丸み*/
}
li.youken_ten {
border: 3px dotted #d89b67; /*線の太さ・色*/
border-radius: 8px; /*角の丸み*/
}
/*リスト項目 */
/*フォーム誘導ボタン */
@import "https://use.fontawesome.com/releases/v5.13.0/css/all.css";

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html.btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn_wrap {
  margin: 2rem 0.2rem;
}

a.btn_zenweb {
  font-size: 1.4rem;
  position: relative;
  padding: 0.25rem 1.5rem 1rem 1.5rem;
  color: #fff;
  background: #d46353;
  -webkit-box-shadow: 0 5px 0 #d54632;
  box-shadow: 0 5px 0 #d54632;
}

a.btn_zenweb span {
  font-size: 1.1rem;
  position: absolute;
  top: -10px;
  left: calc(50% - 150px);
  display: block;
  width: 70%;
  padding: 0.2rem 0.1rem;
  color: #d46353;
  border: 2px solid #d46353;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn_zenweb:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #d1857a;
  -webkit-box-shadow: 0 2px 0 #d54632;
  box-shadow: 0 2px 0 #d54632;
}
a.btn_zenyuso {
  font-size: 1.4rem;
  position: relative;
  padding: 0.25rem 1.5rem 1rem 1.5rem;
  color: #fff;
  background: #96D6E0;
  -webkit-box-shadow: 0 5px 0 #78d3e2;
  box-shadow: 0 5px 0 #78d3e2;
}

a.btn_zenyuso span {
  font-size: 1.1rem;
  position: absolute;
  top: -10px;
  left: calc(50% - 150px);
  display: block;
  width: 70%;
  padding: 0.2rem 0.1rem;
  color: #96D6E0;
  border: 2px solid #96D6E0;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn_zenyuso:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #b4d9df;
  -webkit-box-shadow: 0 2px 0 #78d3e2;
  box-shadow: 0 2px 0 #78d3e2;
}
a.btn_zagaku {
  font-size: 1.4rem;
  position: relative;
  padding: 0.25rem 1.5rem 1rem 1.5rem;
  color: #fff;
  background: #A0C060;
  -webkit-box-shadow: 0 5px 0 #94bf3d;
  box-shadow: 0 5px 0 #94bf3d;
}

a.btn_zagaku span {
  font-size: 1.1rem;
  position: absolute;
  top: -10px;
  left: calc(50% - 150px);
  display: block;
  width: 70%;
  padding: 0.2rem 0.1rem;
  color: #A0C060;
  border: 2px solid #A0C060;
  border-radius: 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn_zagaku:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #aec287;
  -webkit-box-shadow: 0 2px 0 #94bf3d;
  box-shadow: 0 2px 0 #94bf3d;
}
a.btn_zenweb,a.btn_zenyuso,a.btn_zagaku:hover:before {
  left: 0.1rem;
  width: 280px;
}
/*フォーム誘導ボタン */
/*点*/
span.dot_text {
    padding-top: .4em;
    background-position: top left -2px;
    background-repeat: repeat-x;
    background-size: 1.3em .3em;
    background-image: radial-gradient(.15em .15em at center center,#d89b67,#d89b67 100%,transparent);
}
/*olリストデザイン3 バナー設置箇所 */
table.list3 {
  margin: 20px auto;
  text-align: left;
  margin: 5%;
  width: auto;
  }

p.list3 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
}

.list3 th {
  font-size: 1rem;
  font-weight: bold;
  background: #94bf3d;
  color: #fff;
  padding: 10px;
}
.list3 td {
  font-size: 1rem;
  padding: 10px;
}

@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .list3 {
    width: 80%;
  }
  .list3 th,
  .list3 td {
    border-bottom: none;
    display: block;
    width: 15rem;
  }
}
/* flex ２列設置 */
.wrapper div.fcolum-1 {
  width: 52%;
}
.wrapper div.fcolum-2 {
  width: 48%;
  text-align: left;
}

@media screen and (max-width: 640px) {
.wrapper div.fcolum-1,
.wrapper div.fcolum-2 {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}
 /* flex ２列設置*/
 /* hr 水平線 */
hr.com {
  height: 3px;
  background-color: #fae16e;
  width: 60%;
  border: none;
 }
/* バナー案内用見出し */
.midashi {
  justify-content: center;
  align-items: center;
  padding: 8px 19px;
  margin: 2em 0;
  color: #2c2c2f;
  background: #F0F0E0;
  font-weight: bold;
  font-size: 110%;
  border-top: solid 10px #fae16e;
  border-bottom: solid 10px #fae16e;
}
div.midashi-bnr {
margin: 0;
position: relative;
font-size: 1.5rem;
text-align: center;
}

span.midashi-after {
display: block;
font-size: 1.2rem;
margin-top:  10px;
position: relative;
width: 140px;
margin: 10px auto 0;
background-color: #d89b67;
border-radius: 8px;
}

span.midashi-after:before {
content: '';
height: 1px;
background-color: #d89b67;
position: absolute;
top: 0;
bottom: 0;
margin: auto;
z-index: -1;
width: 200px;
left: -30px;
}

/* チェックボックス */
.checkbox input[type=checkbox].checkbox_item{
  font-weight: bold;
  background: #fae16e;
  margin: 2rem 1rem;
}

.checkbox label {
  display: inline-block;
}

/* spanの左側にボタンを配置するスペースを作る */
.checkbox .checkbox_item + span {
  padding-left: 2em;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
.checkbox .checkbox_item + span::after,
.checkbox .checkbox_item + span::before {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid #AAAAAA;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}

/* after上書き */
.checkbox .checkbox_item + span::after {
  opacity: 0;
  width: 10px;
  height: 15px;
  transform: rotate(45deg);
  left: 5px;
  border: none;
  border-right: 3px solid #f18800;
  border-bottom: 3px solid #f18800;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.checkbox .checkbox_item:checked + span {
  color: #f18800;
}

.checkbox .checkbox_item:checked + span::after {
  opacity: 1;
}
/* 必須マーク */
.must {
	background: #edc37c;
}

/* 任意マーク */
.free {
	background: #999;
}

.must,
.free {
	color: #FFF;
	border-radius: 3px;
	font-size: 16px;
	margin-right: 10px;
	padding: 5px 10px;
	letter-spacing: 0.2em;
}

/* CF pick */
div.pick {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0.2rem 1.5rem 130px;
  border: 4px double #F0F0E0;
  font-size: 1.2rem;
  font-weight: 600;
}

div.pick:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 225px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #94bf3d;
}

div.pick span {
  font-size: 40px;
  font-size: 4rem;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 0.1px;
  padding-left: 16px;
  color: #fff;
}

div.pick2 {
position: relative;
padding: 1rem;
border: 3px dashed #f18800;
border-radius: 5px;
margin: 1.2rem;
}

/* flex3 */
.flex3 {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.flex3-item {
  width: 380px;
  height: auto;
  margin: 5px;
  text-align: center;
}

/* width: 100%;で残りスペースを埋める */
.spacer {
  width: 100%;
}

/* 確定ボタン */
.s-btn {
  display: block;
  position: relative;
  width: 80%;/*ボタンの幅*/
  padding: 10px 0;
  margin: 30px auto;
  background-color: #d46353;/*ボタンの色 #2ba6e1*/
  box-shadow: 0 3px 0 0 rgb(212, 53, 30);/*影の色(rgbaの値を変更) rgb(0, 110, 181)*/
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: 0.2s;
}
.s-btn:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
  box-shadow: none;
  -webkit-transform: translateY(3px);
}
.s-btn::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: s-btn 3.5s ease-in-out infinite;
}
.s-btn::after {
  content: "\f054";
  font-family: 'Font Awesome 5 Free';
  font-size: 1.3rem;
  font-weight: bold;
  margin-left: 0.5em;
}
@-webkit-keyframes s-btn {
  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; }
}

	/* スケジュールボタン */
.btn-sc a{
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 auto;
    max-width: 60%;
    padding: 0.5rem 1rem;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 800;
	margin: 0 0 4rem;
}
.btn-sc a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #d46353;
  transition: 0.2s ease 0s;
}

.btn-sc a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #d46353;
  transition: 0.2s ease 0.2s;
}

.btn-sc a:hover::before {
  width: 0%;
}

.btn-sc a:hover::after {
  height: 0%;
}

.btn-sc a:hover {
  text-decoration: none;
  background-color: #ccc;
}
/*menu*/
div.t-b1 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  text-decoration: none;
  margin: 0 auto;
  padding: 0.5em 1em;
  width: 250px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}

div.t-b1 a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  transition: 0.2s ease 0s;
}

div.t-b1 a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 70%;
  background-color: #78d3e2;
  transition: 0.2s ease 0.2s;
}

div.t-b1 a:hover::before {
  width: 0%;
}

div.t-b1 a:hover::after {
  height: 0%;
}

div.t-b1 a:hover {
  text-decoration: none;
  background-color: #78d3e2;
}

div.t-b2 a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  text-decoration: none;
  margin: 0 auto;
  padding: 0.5em 1em;
  width: 250px;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}

div.t-b2 a::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  transition: 0.2s ease 0s;
}

div.t-b2 a::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 70%;
  background-color: #d89b67;
  transition: 0.2s ease 0.2s;
}

div.t-b2 a:hover::before {
  width: 0%;
}

div.t-b2 a:hover::after {
  height: 0%;
}

div.t-b2 a:hover {
  text-decoration: none;
  background-color: #d89b67;
}
/*fontsize*/
.n-09 {
font-size: 0.9rem;
}
.n-12 {
font-size: 1.2rem;
}
.n-14 {
font-size: 1.4rem;
}
.n-15 {
font-size: 1.4rem;
}
.b-09 {
font-size: 0.9rem;
font-weight: 700;
}
.b-12 {
font-size: 1.2rem;
font-weight: 700;
}
.b-14 {
font-size: 1.4rem;
font-weight: 700;
}
.b-15 {
font-size: 1.5rem;
font-weight: 700;
}