@charset "utf-8";
/* CSS Document */
/* 目次 
* リセット
* 共通（レイアウト・テキスト・見出し・ボタン・ヘッダー・フッター・ぱんくず・その他)
* TOP
* 下層共通 ※変更不可

* サイトマップ
* 説明会・お問い合わせ #briefing
* 説明会予約 #calender
* お問い合わせ #contact
*/
/*=================== モバイルファースト ==================*/
/**************************************************
* 共通（レイアウト・テキスト・見出し・ボタン・ヘッダー・フッター・ぱんくず・その他)
***************************************************/
/*------------------------------
レイアウト ※変更不可
------------------------------*/
.sp {
  display: block;
}
.tb {
  display: none;
}
.pc {
  display: none;
}
#container {
  margin: 0;
  padding: 0;
}
/*フッター位置調整*/
.wrapper {
  min-height: calc(100vh - 500px);
  padding: 0;
}
/*wrap共通*/
.wrap, .wrap-l, .wrap-m, .wrap-s {
  margin: 0 auto;
}
.wrap {
  padding-bottom: 30px;
}
.wrap-l {
  width: 100%;
}
.wrap-m {
  max-width: 1000px;
  width: 92%;
}
.wrap-s {
  max-width: 800px;
  width: 88%;
}
.flex-box {
  display: flex;
  flex-wrap: wrap;
}
/*------------------------------
テキスト ※変更不可
------------------------------*/
p, a, li, th, td, dt, dd {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #1a1a1a;
}
.lead {
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.lead .lead-s {
  font-size: 12px;
  font-size: 1.2rem;
}
.text-s {
  font-size: 12px;
  font-size: 1.2rem
}
/*------------------------------
見出し h1-h6 ※変更不可
------------------------------*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.7;
}
h2, h3 {
  text-align: center;
}
h1 {
  font-size: 26px;
  font-size: 2.6rem;
  font-weight: normal;
}
h2 {
  font-size: 24px;
  font-size: 2.4rem;
 line-height: 1.1;
}
#top .con01 h2, #top .con04 h2, #top .con05 h2 {
  margin-bottom: 24px;
}
h3 {
  font-size: 22px;
  font-size: 2.2rem;
}
h4 {
  font-size: 20px;
  font-size: 2.0rem;
}
h5 {
  font-size: 18px;
  font-size: 1.8rem;
}
h6 {
  font-size: 16px;
  font-size: 1.6rem;
}
/*見出し横に線、ぶたはなアイコン*/
.ttl-hana {
  display: flex;
  align-items: center;
  padding-top: 60px;
}
.ttl-hana::before, .ttl-hana::after {
  display: block;
  flex: 0 0 40px;
  content: '';
  border-top: 1px solid #1a1a1a;
  margin: auto;
}
.ttl-hana::before {
  margin-right: 10px;
}
.ttl-hana::after {
  margin-left: 10px;
}
.ttl-hana span {
  position: relative;
  text-align: center;
        line-height: 1.4;
}
.ttl-hana span:before {
  content: '';
  display: inline-block;
  background: url("../images/common/hana-ico.svg") no-repeat 0 0;
  width: 45px;
  height: 32px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
/*------------------------------
ボタン ※変更不可
------------------------------*/
/* 共通 */
.btn-box {
  text-align: center;
  margin-top: 20px;
}
.btn-box .btn {
  position: relative;
  display: flex;
  width: 78%;
  padding: 0 20px 0 0;
  color: #E16939;
  font-weight: bold;
  max-width: 437px;
  height: 63px;
  border-radius: 42px;
  background: #fff;
  border: 3px solid #e16939;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
  align-items: center;
  justify-content: center;
  margin: auto;
}
.btn-box .arrow::after {
  position: absolute;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5rem;
  margin: 0;
  padding: 0;
  content: '';
  background-image: url(../images/top/arrow-ore.svg);
  background-repeat: no-repeat;
  width: 32px;
  height: 31px;
  color: #666;
  display: inline-block;
  transition: all .3s;
}
.btn-box .btn:hover {
  opacity: 0.8;
}
.btn-box .btn:hover::after {
  right: 1rem;
}
/* 戻るボタン */
.btn-box.back {
  padding: 0 0 50px
}
/*------------------------------
table共通 ※変更不可
------------------------------*/
table {
  margin: 30px auto 40px;
  width: 100%;
}
tbody {
  height: 60px;
}
tbody th {
  display: list-item;
  list-style-type: none;
  padding: 3%;
  background: #FAF5ED;
  border: 1px solid #DCDCDC;
  margin-top: -1px;
  text-align: left;
}
tbody td {
  display: list-item;
  border: none;
  list-style-type: none;
  padding: 3%;
  border-bottom: 1px solid #DCDCDC;
  border-right: 1px solid #DCDCDC;
  border-left: 1px solid #DCDCDC;
}
/*------------------------------
ヘッダー、Gナビ共通 ※変更不可
------------------------------*/
#header {
  height: 50px;
  background: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0px 3px 6px #00000029;

}
#header .logo {
  display: flex;
  align-items: center;
  margin-left: 6px;
  margin-top: 6px;
}
#header .logo .img-box {
	width: 38%;
   max-width: 123px;
  margin-right: 2%;
}
#header .logo h1 {
  font-size: 10px;
  font-size: 1.0rem;
  font-weight: 600;
  letter-spacing: .2rem;
}


.sp-nav{
	display: block;
}
/*アクティブになったエリア*/
#g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
}
/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #E16939;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  top: -50px;
  transition: all .6s; /*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}
/*ナビゲーションの縦スクロール*/
#g-nav-list {
  display: none; /*はじめは表示なし*/
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list {
  display: block; /*クラスが付与されたら出現*/
}
/*ナビゲーション*/
#g-nav ul {
  opacity: 0; /*はじめは透過0*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
  opacity: 1;
}
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: .2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*リストのレイアウト設定*/
#g-nav li {
  text-align: center;
  list-style: none;
}
#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 12px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1.3;
}
/*資料請求・説明会予約*/
/*お問い合わせ・電話*/
#g-nav li:last-child,#g-nav li:nth-last-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
}
#g-nav .req-btn,#g-nav .rese-btn,
#g-nav li .telbox, #g-nav li .mailbox {
  margin-top: 5%;
}
#g-nav .req-btn,
#g-nav li .telbox {
  margin-right: 20px;
}

#g-nav .req-btn,#g-nav .rese-btn{
  display: block;
  width: 46%;
    max-width: 240px;
  border: 2px solid #E16939;
  background: #fff;
  border-radius: 6px;
}

#g-nav .req-btn a,#g-nav .rese-btn a{
	color: #E16939;
	display: block;
}

#g-nav li .telbox img, #g-nav li .mailbox img {
  display: block;
  width: 60px;
  border: 2px solid #fff;
  background: #fff;
  border-radius: 50%;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 0px;
  right: 10px;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #1a1a1a;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn span:nth-of-type(3) {
  top: 31px;
}
.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*------------------------------
pagetopボタン ※変更不可
------------------------------*/
#page-top {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #E16939;
  opacity: 0.8;
  border-radius: 50%;
}
#page-top a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  text-decoration: none;
}
#page-top a::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  background-image: url(../images/top/arrow-w.svg);
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  background-size: 25px;
  transform: rotate(-90deg);
}
#page-top a:hover {
  background: #1A1A1A;
  border-radius: 50%;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}
/*　左の動き　*/
#page-top.LeftMove {
  animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*　右の動き　*/
#page-top.RightMove {
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}
/*------------------------------
フッター ※変更不可
------------------------------*/
/* foot-contactbox */
.f-contactbox {
  width: 100%;
  padding: 50px 0;
  background: url("../images/common/cv-bg.jpg") no-repeat center center;
  background-size: cover;
}
.f-contactbox > p {
  text-align: center;
  margin-bottom: 2em;
}
.f-contactbox .cv-list {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.f-contactbox .cv-list > li:hover {
  opacity: 0.8;
}
.f-contactbox .telbox {
  margin-bottom: 25px;
}
.f-contactbox .cv-btn {
  width: 100%;
  max-width: 360px;
  height: 110px;
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 16px;
  opacity: 1;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 3% 20px;
}
.f-contactbox .cv-btn.tel {
  border: 3px solid #E16939;
  background: #fff;
}
.f-contactbox .cv-btn.mail {
  border: 3px solid #fff;
  background: #E16939;
  color: #fff;
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
  white-space: nowrap;
}
.f-contactbox .cv-btn.tel::before, .f-contactbox .cv-btn.mail::before {
  content: '';
  width: 44px;
  height: 44px;
  display: inline-block;
  margin-right: 10px;
}
.f-contactbox .cv-btn.tel::before {
  content: '';
  background: url("../images/common/tel-ico-ft.svg") no-repeat 0 0;
  background-size: 44px;
}
.f-contactbox .cv-btn.mail::before {
  content: '';
  background: url("../images/common/mail-ico-ft.svg") no-repeat 0 0;
  background-size: 44px;
}
.f-contactbox .cv-btn.tel img {
  max-width: 230px;
  width: 100%;
}
/* f-nav */
#footer.f-nav {
  background: #1A1A1A;
  width: 100%;
  padding: 50px 0 0;
}
#footer.f-nav .ft-logo-img {
       width: 160px;
    height: 160px;
    margin: 0 auto 40px;
    background: rgba(255,255,255,0.85);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer.f-nav .ft-logo-img a{
    width: 60%;
    display: block;
}
#footer.f-nav ul {
  margin: 30px auto 25px;
  width: 90%;
  max-width: 1200px;
}
#footer.f-nav ul li {
  margin-bottom: 20px;
}
#footer.f-nav ul li, #footer.f-nav ul li a {
  color: #F4F4F4;
  font-size: 14px;
  font-size: 1.4rem;
}
/* copyright */
#footer .copyright {
  border-top: 1px solid #4D4D4D;
  text-align: center;
  color: #FFFFFFA5;
  padding: 1em 0;
}
#footer .copyright a {
  display: block;
  color: #FFFFFFA5;
  /*
  font-size: 12px;
  font-size: 1.2rem;
*/
}
/*------------------------------
ぱんくず ※変更不可
------------------------------*/
#breadcrumbs {
  padding: 10px 10px;
}
#breadcrumbs li {
  display: inline;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
}
#breadcrumbs li a {
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
}
#breadcrumbs li a:hover, #breadcrumbs li a:active, .common-bg #breadcrumbs li a:hover, .common-bg #breadcrumbs li a:active  {
  color: #E16939;
  transition: all .3s;
}
#breadcrumbs a {
  display: inline-block;
  position: relative;
  padding-right: 1.5em;
}
#breadcrumbs a:after {
  content: "";
  vertical-align: middle;
  position: absolute;
  top: calc(50% - 4px);
  right: -6px;
  width: 6px;
  height: 6px;
  margin: auto;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 1em;
}
.common-bg #breadcrumbs li,
.common-bg #breadcrumbs li a {
  color: #000000;
}
.common-bg #breadcrumbs a:after {
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
}
/*=================== 共通 /ヘッダー/フッター 320用 ==================*/
@media screen and (max-width: 320px) {
  .wrap-m, .wrap-s {
    width: 96%;
  }
/*------------------------------
テキスト ※変更不可
------------------------------*/
  p, a, li, th, td, dt, dd {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .lead {
    font-size: 15px;
    font-size: 1.5rem;
  }
  .lead .lead-s {
    font-size: 11px;
    font-size: 1.1rem;
  }
  .text-s {
    font-size: 10px;
    font-size: 1.0rem
  }
  /*------------------------------
ボタン  ※変更不可
------------------------------*/
  .btn-box .arrow::after {
    right: 1.5rem;
    width: 30px;
    height: 26px;
    background-size: 90%;
  }
  .f-contactbox .cv-btn {
    padding: 3% 12px;
  }
  .f-contactbox .cv-btn.mail {
    font-size: 18px;
    font-size: 1.8rem;
  }
  /*------------------------------
ヘッダー、Gナビ共通 ※変更不可
------------------------------*/
  #header .logo .img-box {
    max-width: 95px;
  }
} /*=================== 共通 /ヘッダー/フッター 320用 閉じ ==================*/
/**************************************************
* TOP
***************************************************/
/*------------------------------
kv
------------------------------*/

/*------------------------------
con01,con02共通
------------------------------*/
 #top .con02, #top .con04, #top .con05,#top .video {
  padding: 10% 0;
}
#top .con01{
  padding: 4% 0 10%;  
}

/*ブロックとbtn-boxとの余白＊一括指定*/
#top .con01 ul, #top .con02 ul, #top .con04 ul, #top .con05 ul {
  margin-bottom: 3em;
}
/*リストのフレックス*/
#top .con01 ul, #top .con02 ul {
  justify-content: center;
}
#top .con01 .point-list, #top .con02 .menu-list {
  position: relative;
  max-width: 380px;
  margin-bottom: 1.5em;
}

/*MV下動画*/

#top .con01 .video{
    padding-top: 0;
    text-align: center;
}

#top .con01 .video h2{
    border-radius: 50px;
    padding: 11px 30px;
    display: inline-block;
    color: #fff;
    background: #1a1a1a;
    font-size: 14px;
    font-size: 1.4rem;
}

/*吹き出しアイコン*/
.bubble {
  position: relative;
  margin-top: 60px;
}
.bubble::before {
  content: '';
  display: inline-block;
  background: url("../images/top/bubble.svg") no-repeat 0 0;
  width: 130px;
  height: 69.5px;
  position: absolute;
  top: -77px;
  left: 50%;
  transform: translateX(-50%);
  background-size: 100%;
  z-index: 2;
}
/*------------------------------
con01
------------------------------*/
#top .con01.bg {
  background: url("../images/top/top-merrit-bg-r.png"), url("../images/top/top-merrit-bg-l.png"), #FCF8F2;
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left bottom;
  background-size: 80% auto, 80% auto;
}
#top .con01 .ttl:first-letter {
  font-size: 35px;
  font-size: 3.5rem;
  margin-right: -6px;
}
#top .con01 .ttl span {
  font-size: 18px;
  font-size: 1.8rem;
}

#top .con01 .txt-1{
margin-bottom: 20px;

}


#top .con01 .point-list {
  margin-bottom: 1em;
 position: relative;
}
#top .con01 .point-list .poi-text-box {
  position: absolute;
  top: 0;
  left: 0;
}
#top .con01 .point-list .poi-ttl-sub {
  background-color: #1a1a1a;
  color: #fff;
  padding: 12px 21px;
  border-radius: 24px 0px;
  display: inline-block;
}
#top .con01 .point-list .poi-ttl {
  font-size: 30px;
  font-size: 3.0rem;
  margin-left: 20px;
  margin-top: 12px;
  font-weight: bold;
  line-height: 1.2;
    text-align: left;
}
.font-m {
  font-size: 20px;
  font-size: 2.0rem;
}
/*------------------------------
con02
------------------------------*/
#top .con02 .menu-list:hover {
  opacity: 1;
  transition: all .3s;
}
#top .con02 .menu-list.bubble {
  margin-top: 40px;
}
#top .con02 .menu-list.bubble::before {
  top: -46px;
}
#top .con02 .menu-list.bubble:last-child::before {
  content: '';
  background: url("../images/top/bubble-2.svg") no-repeat 0 0;
  width: 130px;
  height: 69.5px;
  background-size: 100%;
  z-index: 2;
}
#top .con02 .menu-list a {
  display: block;
}
#top .con02 .menu-list .menu-text {
  position: absolute;
  top: 0px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  width: 100%;
  z-index: 2;
}
#top .con02 .menu-list .menu-ttl-sub {
  border-radius: 18px;
  background: #1a1a1a;
  padding: 4px 12px;
  color: #fff;
  width: auto;
  text-align: center;
}
#top .con02 .menu-list .menu-ttl {
  margin-bottom: 6px;
  margin-top: 6px;
  line-height: 1.3;
}
#top .con02 .menu-list .arrow-cir {
  max-width: 48px;
}
#top .con02 .menu-list .img-box {
  border-radius: 20px;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.16);
}
/*------------------------------
con03
------------------------------*/
#top .con03 ul {
  flex-direction: column;
  justify-content: center;
}
#top .con03 li {
  width: 100%;
  display: block;
  border-bottom: 3px solid #E16939;
}
#top .con03 li:first-child {
  border-top: 3px solid #E16939;
}
#top .con03 li a {
  padding: 30px 0;
  display: block;
  color: #E16939;
  position: relative;
}
#top .con03 li a::after {
  content: '';
  background: url("../images/top/arrow-ore.svg") no-repeat;
  width: 32px;
  height: 31px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  margin: 0;
  padding: 0;
  display: inline-block;
  transition: all .3s;
}
#top .con03 li:hover {
  background-color: #E16939;
  transition: all .3s;
  backface-visibility: hidden;
}
#top .con03 li a:hover {
  color: #fff;
}
#top .con03 li a:hover::after {
  content: '';
  background: url("../images/top/arrow-w.svg") no-repeat;
  width: 32px;
  height: 31px;
  color: #fff;
}
/*------------------------------
con4
------------------------------*/
#top .con04.bg {
  background-color: #FCF8F2;
}
#top .con04 ul {
  display: flex;
    display: -ms-flexbox;
 flex-wrap: wrap;
width: 100%;
}

#top .con04 li:nth-child(-n+2) ,
#top .con04 li:nth-child(2){
    flex-basis: 50%;
}
#top .con04 li:nth-child(n+3){
    flex-basis: 33.33333%;
} 


/*=================== TOP 320用 ==================*/
@media screen and (max-width: 320px) {
  #top .con02 .menu-list .menu-ttl {
    margin-bottom: 8px;
    margin-top: 8px;
  }
  #top .con02 .menu-list .arrow-cir {
    max-width: 38px;
  }
  #top .con02 .menu-list .menu-ttl-sub {
    padding: 2px 12px;
  }
} /*=================== TOP 320用 閉じ ==================*/
/**************************************************
* newsList共通（TOP・category）
***************************************************/
.newsList li {
  border-bottom: 1px solid #D9D9D9;
  padding: 1rem 0;
}
.newsList li:first-child {
  border-top: 1px solid #D9D9D9;
}
.newsList .date,#news .date {
  font-family: 'Verdana', sans-serif;
  color: #E16939;
  font-weight: 500;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
/**************************************************
* 下層共通 ※変更不可
***************************************************/
/* 見出し */
.h2-bdrttl {
  position: relative;
}
.h2-bdrttl{
  width: 100%;
  height: 150px;
  /* padding-top: 20px; */
  color: #fff;
}
.h2-bdrttl:after {
  content: '';
  position: relative;
  top: 10px;
  display: block;
  width: 50px;
  height: 2px;
  margin: 0 auto 0;
  background-color: #ffffff;
}
.common-bg .page-title h2  {
  color: #000000;
}
.common-bg .page-title h2:after {
  background-color: #000000;
}

/* 背景色 */
.page {
  background-color: #F2F2F2;
}
.common-bg.page {
  background-color: #ffffff;
}

/* 線の長さが可変 */
.bd-both {
  display: flex;
  align-items: center;
	margin: 0 auto 60px;
  width: 100%;
}
.bd-both::before, .bd-both::after {
  display: block;
  flex: 0 0 40px;
  content: '';
  border-top: 2px solid #1a1a1a;
  margin: auto;
}
.bd-both::before {
  margin-right: 10px;
}
.bd-both::after {
  margin-left: 10px;
}

/* リード文 */
.page .lead {
  text-align: center;
}
.page .frame-text {
  display: inline-block;
  margin: 10px 0 30px;
  color: #E16939;
  border: solid 2px #E16939;
  padding: 8px 0;
}

/* 背景イメージ */
#company.wrapper,
#contact.wrapper,
#thanks-contact.wrapper {
  background: url("../images/company/bg/company_kv.png") no-repeat top center;
  background-size: 200%;
  z-index: -100;
}
#about.wrapper {
  background: url("../images/about/bg/butamon_kv.png")  no-repeat top center;
  background-size: 200%;
  z-index: -100;
}
#benefit.wrapper {
  background: url("../images/benefit/bg/merit_kv.png")  no-repeat top center;
  background-size: 200%;
  z-index: -100;
}
.common-bg.wrapper {
  background:  url("../images/common/bg/common_kv.png") repeat-x 0 0;
  z-index: -100;
}


#merit .page-title h2 {
  background: url("../images/common/h2bg/merit-h2bg.png") no-repeat center/cover;
}


/* 背景画像がないパターン */
.page-title.stripe h2 {
  background-color: #1e3d77;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(.25, #2c4a81), color-stop(.25, transparent), color-stop(.5, transparent), color-stop(.5, #2c4a81), color-stop(.75, #2c4a81), color-stop(.75, transparent), to(transparent));
  -webkit-background-size: 14px 14px;
}



/* 枠 */
.page-wrap .page-wrap-box {
  position: relative;
  top: -40px;
  background-color: #ffffff;
  padding: 30px 4%;
  border-radius: 12px;
  /* margin: 0 0 40px 0; */
}


/* ページネーション */
.page-numbers {
  display: flex;
  margin: 6px auto;
  justify-content: center;
  flex-wrap: wrap;
  width: 96%;
}

.page-numbers li {
  align-self: center;
  padding: 0 5px;
  margin: 4px 0;
}

.page-numbers  a.page-numbers,
.page-numbers .current {
  padding: 5px 10px;
  border: 1px solid #E16939;
  border-radius: 4px;
  background: #E16939;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.3;
  width: 95%;
}

.page-numbers > li.page-numbers:hover,
.page-numbers > li.prev.page-numbers:hover,
.page-numbers > li.next.page-numbers:hover {
  opacity: 0.7;
}

.page-numbers .current {
  background-color: #fff;
  color: #E16939;
}

.page-numbers  a.page-numbers.next,
.page-numbers  a.page-numbers.prev {
  border: none;
  background: #fff;
  color: #E16939;
  font-size: 14px;
  font-size: 1.4rem;
}

/*pagenav*/
.pagenav {
  margin: 24px 0;
  width: 100%;
  text-align: center;
}
.pagenav span.prev {
  margin-right: 16px;
}

/**************************************************
* 開業後のフォロー体制 （テンプレパーツ）
***************************************************/
/* 開業後のサポート */
.after-follow{
    justify-content: center;
}
.after-follow .img-box {
  width: calc(100% / 2 - 10px);
  margin-right: 10px;
    margin-bottom: 24px;
}
.after-follow .img-box:nth-child(even) {
  margin-right: 0;
}


.after-follow .img-box p {
  font-weight: bold;
  text-align: center;
}

/**************************************************
* 会社情報
***************************************************/
/*------------------------------
con01
------------------------------*/
/* リード文 */
#company .con01 div {
  text-align: center;
}

/*------------------------------
con02
------------------------------*/
/* グループ店舗 */
#company .flex-box .detail {
  width: calc(96%/2);
  margin: auto;
}
#company .flex-box .detail:nth-child(odd) {
  margin-left: 0;
}
#company .flex-box .detail:nth-child(even){
  margin-right: 0;
}

@media screen and (max-width: 320px) {
  #company .frame-text {
    font-size: 1.3rem;
  }
}

/**************************************************
* 「ぶたもん」の想い
***************************************************/
/* 見出し */
#about .h2-bdrttl span {
  font-size: 20px;
  font-size: 2rem;
}

#about .message-bg {
  background: url("../images/about/bg/butamon_bg.jpg") no-repeat top center;
  background-size: 130%;
  z-index: -100;
  height: 220px;
  margin: 0 0 -120px 0;
}

#about .con02 .bd-both{
    margin-top: 30px;
    margin-bottom: 30px;
}

/*------------------------------
con01
------------------------------*/
#about .con01 .page-wrap-box {
  margin: 0 0 40px;
}
#about .con01 .lead-text-box .lead{
    margin-bottom: 20px;
}


#about .kodawari {
  text-align: center;
  margin: 30px auto 40px;
}
#about .kodawari .item {
  margin: 50px 0 0 0;
}
#about .kodawari .img-box {
  margin: 0 auto;  
    width: 60%;
    max-width: 317px;

}
#about .kodawari .caption {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin: 15px 0 10px 0;
}
#about .kodawari .title {
  width: 100%;
  margin: 0 auto 20px auto;
}
#about .kodawari .title span {
  font-size: 70px;
  font-size: 7rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #000000;
  border-radius: 50%;
  padding: 26px;
  z-index: 1;
}
#about .kodawari .title span:first-child {
  margin: auto -5px auto auto;
}
#about .kodawari .title span:last-child {
  margin: auto auto auto -5px;
}
#about .kodawari .description {
  text-align: left;
}

/*------------------------------
con02
------------------------------*/
#about .con02 {
  text-align: center;
}
#about .message {
  text-align: left;
}
#about .message .signature {
  text-align: right;
}
@media screen and (max-width: 320px) {
  #about .frame-text {
    font-size: 1.3rem;
  }
}
/**************************************************
* 「ぶたもん」で独立するメリット
***************************************************/
/* 見出し */
#benefit .h2-bdrttl span {
  font-size: 20px;
  font-size: 2rem;
}
/*------------------------------
con01　con02共通
------------------------------*/
#benefit .merit .item {
  margin: 0 0 30px 0;
}
#benefit .merit .title {
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  margin: 0 0 20px 0;
  padding: 9px 0;
  background-color: #000000;
  border-radius: 30px;
}
#benefit .merit .description {
  margin: 0 0 20px 0;
}
#benefit .merit .img-box {
  margin: 0 0 20px 0;
}

/*------------------------------
con01
------------------------------*/
#benefit .table01 {
  text-align: left;
}
#benefit .table01 th {
  background-color: #F7F7F7;
}
/*------------------------------
con03
------------------------------*/
#benefit .con03 {
  text-align: center;
}
/* 開業プランパネル */
#benefit .panel {
  margin: 0 0 40px 0;
}
#benefit .plan-panel {
  display: inline-block;
  width: calc(96% / 2);
  border: solid 4px #E16939;
  border-radius: 10px;
  margin: auto;
  padding: 20px 0;
  font-weight: bold;
}
#benefit .sub-title {
  font-weight: bold;
  margin: 0 0 20px 0;
  border-bottom: solid 3px #000000;
  display: inline-block;
}

#benefit .plan-title {
  color: #E16939;
  font-weight: bold;
  text-align: left;
  margin: 0 0 10px;
  padding: 10px 0 10px 10px;
  border-left: solid 11px #E16939;
  border-top: solid 1px #E16939;
  border-right: solid 1px #E16939;
  border-bottom: solid 1px #E16939;
}

#benefit .table-title {
  color: #000000;
  font-weight: bold;
  text-align: left;
  margin: 0 0 20px 0;
  padding: 5px 0 5px 10px;
  border: solid 1px #707070;
  background-color: #F7F7F7;
}
#benefit .supple {
  font-size: 12px;
  font-size: 1.2rem;
  text-align: left;
}

/* 収支表 */
#benefit .table02 {
  margin: 10px auto 40px;
}
/* フォントサイズ */
#benefit .table02 th,
#benefit .table02 td {
  font-size:12px;
  font-size:1.2rem;
  padding: 1%;
}
/* 単位 */
#benefit .table02 .unit th,
#benefit .table02 .unit td {
  background-color: #ffffff !important;
  border-left: none;
  border-right: none;
  padding: 1% 1% 0% 1%;
}
#benefit .table02 .unit th {
  visibility: hidden;
}
#benefit .table02 .unit td:last-child {
  font-weight: bold;
}

#benefit .table02 th {
  display: table-cell;
  padding: 2%;
  background-color: #F7F7F7;
}
#benefit .table02 td {
  display: table-cell;
  text-align: right;
}

/* セル幅 */
#benefit .table02 th {
  width: 25%;
}
#benefit .table02 td:not(:last-child) {
  width: 18%;
}
#benefit .table02 td:last-child {
  width: 20%;
}
#benefit .table02 td:last-child  {
  background-color: #FDF5F2;
}

/* 売上・粗利*/
/* ロイヤリティ */
#benefit .table02 .sales th:first-child, 
#benefit .table02 .royalty th:first-child {
  display: none;
}
/* 営業利益 */
#benefit .table02 .profit {
  font-weight: bold;
  background-color: #FDF5F2;
}

/* マイナス */
#benefit .table02 .minus {
  color: #E50A0A;
}

/* 営業利益 */
#benefit .table02 .profit td {
  font-size: 15px;
  font-size: 1.5rem;
}
#benefit .table02 .profit th {
  color: #ffffff;
  background-color: #E16939;
  text-align: center;
}


/* アコーディオン */
#benefit .table02 .accordion-a,
#benefit .table02 .accordion-b {
  display: none;
}

#benefit .accordion_icon,
#benefit .accordion_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
#benefit .accordion_icon {
	position: relative;
  top: 4px;
	width: 30px;
	float: right;
	margin: 0;
}
#benefit .accordion_icon span {
	position: absolute;
    left: 6px;
    width: 50%;
	height: 3px;
	border-radius: 4px;
        background-color: #333;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
}
#benefit .accordion_icon span:nth-of-type(1) {
    top: 5px;
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
#benefit .accordion_icon span:nth-of-type(2) {
    top: 5px;
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
/*＋、－切り替え*/
#benefit .accordion_icon.active span:nth-of-type(1) {
	display:none;
}
#benefit .accordion_icon.active span:nth-of-type(2) {
	top: 5px;
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

@media screen and (max-width: 320px) {
  /* フォントサイズ */
  #benefit .table02 th,
  #benefit .table02 td {
    font-size: 11px;
    font-size: 1.1rem;
    padding: 1%;
  }
}
/**************************************************
* 1日のスケジュール
***************************************************/
/*------------------------------
con01
------------------------------*/
/* 見出し */
#oneday .page-title h2,
#oneday .page-title span {
  color: #000000;
}
#oneday .page-title h2:before {
  top: 100px;
  background-color: #000000;
}
#oneday .page-title span {
  font-size: 15px;
  font-size: 1.5rem;
}

/* 時系列 */
#oneday .timeline .item {
  margin: 30px 0 0 0;
}
#oneday .timeline .time {
	width: 10px;
	height: 20px;
	border: solid 3px #000000;
	box-sizing: border-box;
  border-radius: 30px;
  border-radius: 0 75px 75px 0; /* 右側を丸める */
  border-left: 0; /* 直線部分を消す */
  background-color: #ffffff;
  margin: 0 0 0 -4.3%;
}
#oneday .timeline .time:after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 3px;
  margin: -20px 0px 17px 10px;
  background-color: #000000;
}
#oneday .timeline .time p {
    display: inline-block;
    padding: 8px 20px;
    color: #ffffff;
    background-color: #000000;
    border-radius: 30px;
    margin: -33px -12px -25px 28px;
}

#oneday .timeline .text-box {
  margin: 20px 0 0 30px;
}
#oneday .timeline .text-box .title {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
}
#oneday .timeline .img-box {
  margin: 20px 0 0 30px;
}
#oneday .timeline img {
  width: 70%;
}
#oneday .timeline .img-box .schedule-img2 {
  text-align: right;
  margin: 0 0 20px 20px;
}

/**************************************************
* 開業の流れ
***************************************************/
/*背景色*/
#flow.common-bg.page  {
  background-color: #FAF5ED;
}

/*------------------------------
con01
------------------------------*/
#flow .con01 {
  margin: 0 0 40px 0;
}
#flow .flow .img-box {
  margin: auto;
    width: 100%;
    max-width: 280px;
}
#flow .flow .img-box img {
  margin: 0 0 30px 0;
}



/**************************************************
* 研修制度
***************************************************/
/*------------------------------
con01
------------------------------*/
/* 合計期間 */
#training .total {
  color: #ffffff;
  background-color: #E16939;
  border-radius: 50%;
  width: 50%;
  max-width: 200px;
  margin: 30px auto;
}
#training .total .total-inner {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
#training .total .img-box {
  width: 30%;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 10%;
}
#training .total p {
  position: absolute;
  left: 0;
  right: 0;
  color: #ffffff;
  width: 90%;
  margin: auto;
  text-align: center;
  font-weight: bold;
}
#training .total .caption {
  top: 40%;
}
#training .total .month {
  top: 55%;
  font-size: 35px;
  font-size: 3.5rem;
}

/* 研修内容 */
#training .training .item {
  margin: 0 0 80px 0;
}
#training .training .item:last-child {
  margin: 0;
}
#training .training .title {
  color: #ffffff;
  background-color: #E16939;
  padding: 15px;
  text-align: left;
  position: relative;
}
#training .training .title:before {
  content: "";
  background: url(../images/training/icon-pig-orange.svg)  no-repeat;
  display: inline-block;
  position: absolute;
  top: -10px;
  background-size: contain;
  vertical-align: middle;
  width: 30px;
  height: 30px;
}
#training .training .title span {
  position: absolute;
  top: 20%;
  right: 5%;
  color: #000000;
  background-color: #FAF5ED;
  border-radius: 30px;
  padding: 10px 20px;
  margin: auto;
}
#training .training .caption {
  background-color: #FAF5ED;
  padding: 15px;
  text-align: left;
  margin: 0 0 20px 0;
}
#training .training .ojt .img-box {
  width: 80%;
max-width: 223px;
  margin: 0 auto 30px;
}

#training .training .description {
  text-align: left;
margin: 0 2%;
}

#training .training .text-box {
  text-align: center;
}
#training .training .open .text-box .choice {
  width: 80%;
  margin: auto;
  padding: 30px 10px;
  border-radius: 10px;
  font-weight: bold;
}

#training .training .text-box .or {
  color: #E16939;
  font-size: 24px;
  font-size: 2.4rem;
  width: 100%;
  padding: 0;
  margin: 20px auto;
}

#training .training .support .text-box .description:first-child {
  color: #E16939;
}
#training .training .support .text-box .description {
  margin: 0 2% 20px;
}

@media screen and (max-width: 320px) {
  #training .total .caption {
    top: 40%;
  }
  #training .total .month {
    top: 55%;
    font-size: 35px;
    font-size: 3.5rem;
  }
}

/**************************************************
* よくある質問
***************************************************/
/*アコーディオン*/
.acobox .acolist dt {
  display: block;
  padding: 15px 25px 10px 5px;
  border-top: 1px solid #ababab;
/*  border-bottom: 1px solid #ababab;*/
  margin-bottom: -1px !important;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000000;
}
.acobox .acolist dd {
  display :none;
  padding: 15px 5px;
  background: #fff;
 font-weight: bold;
}
.acobox dl.acolist{
  border-bottom: 1px solid #ababab;
  background-color: #FAF5ED;
}
/* ∨Λ */
.aco_icon:after{
  content: "";
  vertical-align: middle;
  position: absolute;
  top: 45%;
  right: -5px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-bottom: 2px solid #E16939;
  border-right: 2px solid #E16939;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 1em;
}
.aco_icon.active:after{
  content: "";
  vertical-align: middle;
  position: absolute;
  top: 45%;
  right: -5px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-bottom: none;
  border-right: none;
  border-top: 2px solid #E16939;
  border-left: 2px solid #E16939;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 1em;
}

/**************************************************
* 資料請求　
***************************************************/
/* 必須アイコン */
.formTable dl dt .icon {
  position: absolute;
  margin-top: -10px;
  padding: 4px 8px 6px;
  top: 50%;
  right: 25px;
  line-height: 1;
  color: #ffffff;
  border-radius: 2px;
}

.formTable dl dt .icon.required {
  background-color: #E16939;
}

.formTable dl dd .caution {
  margin-top: 15px;
  line-height: 1.6;
}

.formTable dl dd .yubinLink {
  color: #e72a2a;
  text-decoration: underline;
}


/* form */
.formTable {
  margin: 30px 0 30px;
}

.formTable dl {
  display: table;
  width: 100% !important;
  border-bottom: 1px solid #D9D9D9;
}

.formTable dl:nth-of-type(1) {
  border-top: 1px solid #D9D9D9;
}

.formTable dl dt {
  position: relative;
  display: table-cell;
  padding: 4% 6.2% 4% 2%;
  width: 25% !important;
  line-height: 1.6;
  vertical-align: middle;
  background-color:#FAF5ED;
  /* color: #333333; */

}

.formTable dl dd {
  display: table-cell;
  padding: 3% 2.4%;
  vertical-align: middle;
  background: #fff;
}

.formTable dl dd .mwform-radio-field {
  display: inline-block;
  margin-right: 25px;
  margin-left: 0 !important;
}

.formTable dl dd .mwform-checkbox-fieldf {
  margin-right: 25px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 10px;
}

.mwform-checkbox-field label, .mwform-radio-field label {
  font-weight: normal;
  margin-bottom: 0;
}

.formTable dl dd .mwform-radio-field:last-of-type {
  margin-right: 0;
}

.formTable dl dd .mwform-radio-field label .mwform-radio-field-text {
  position: relative;
  display: inline-block;
  padding-left: 5px;
  cursor: pointer;
}

.formTable dl dd .mwform-radio-field label input:checked + .mwform-radio-field-text::after {
  background-color: #99cb6c;
}

.formTable dl dd input[type="text"] {
  width: 440px !important;
}

.formTable dl dd input[type="text"].age {
  margin-right: 7px;
  width: 60px !important;
}

.formTable dl dd input[type="text"].postalcode {
  margin-left: 5px;
  width: 200px !important;
}

.formTable dl dd input[type="text"]:focus::-webkit-input-placeholder { color: white; } /* Chrome・Safari・Opera用(※Edgeにも使える) */
.formTable dl dd input[type="text"]:focus:-moz-placeholder { color: white; }  /* Firefox18以前用 */
.formTable dl dd input[type="text"]:focus::-moz-placeholder { color: white; } /* Firefox19以上用 */
.formTable dl dd input[type="text"]:focus::placeholder { color: white; } /* CSS標準(予定)の記述 */

.formTable dl dd input[type="email"]:focus::-webkit-input-placeholder { color: white; } /* Chrome・Safari・Opera用(※Edgeにも使える) */
.formTable dl dd input[type="email"]:focus:-moz-placeholder { color: white; }  /* Firefox18以前用 */
.formTable dl dd input[type="email"]:focus::-moz-placeholder { color: white; } /* Firefox19以上用 */
.formTable dl dd input[type="email"]:focus::placeholder { color: white; } /* CSS標準(予定)の記述 */

.formTable dl dd textarea, .formTable dl dd select, .formTable dl dd input[type="text"], .formTable dl dd input[type="email"] {
  padding: 5px 15px;
  outline: none;
  border: 1px solid #cccccc;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.formTable dl dd select {
  height: 38px;
}

.formTable dl dd textarea {
  width: 100% !important;
  height: 150px !important;
}

/* textinBox */
.formTable dl dd .textinBox {
  margin-top: 15px;
}

.formTable dl dd .textinBox:nth-of-type(1) {
  margin-top: 0;
}

.formTable dl dd .textinBox .fieldName {
  margin-bottom: 2px;
}

/* dateBox */
.formTable dl dd .dateBox {
  margin-bottom: 15px;
}

.formTable dl dd .dateBox .month {
  display: inline-block;
}

.formTable dl dd .dateBox .date {
  display: inline-block;
  margin-left: 10px;
}

/* 送信ボタン */
.submitBtn {
  margin-top: 50px;
  text-align: center;
}

.submitBtn input[type="submit"] {
  padding: 15px 10px 17px 10px;
  width: 36% !important;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  border: none;
  color: #ffffff;
  background: #333333;
  border-radius: 30px;
  transition: .3s;
}

.submitBtn input[type="submit"]:hover {
  opacity: .7;
}
/*　ーーーーーーーーーーーーーーーーー
/*  フォームプラグイン用CSS
ーーーーーーーーーーーーーーーーー */
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
/* iOSでのデフォルトスタイルをリセットここまで */

#submit.btn-box {
  width: 100%;
  text-align: center;
}
.mw_wp_form.mw_wp_form_input .submitBtn {
  padding: 15px 10px 17px 10px;
  width: 36% ;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  border: none;
  color: #ffffff;
  background: #333333;
  border-radius: 30px;
  transition: .3s;
  margin: 30px auto 0;
}
.submitBtn:hover {
  opacity: .7;
}
.mw_wp_form.mw_wp_form_input #submit{
clear: both;
overflow: hidden;
position: relative; 
margin-bottom: 100px;
}

.mw_wp_form.mw_wp_form_input #submit.Btn_db  {
display: none;
width:100%;
margin:0 auto;

}
.mw_wp_form_confirm.mw_wp_form_preview #submit.Btn_db{
display: block;
}
.mw_wp_form_confirm.mw_wp_form_preview #submit .back,
.mw_wp_form_confirm.mw_wp_form_preview #submit .done_btn{
width: 15%;
    position: relative;
    left: 30%;
    float: left;
    margin-left: 30px;
}
.mw_wp_form_confirm.mw_wp_form_preview #submit .back{
  background: #a9a9a9;
}
.mw_wp_form_confirm.mw_wp_form_preview .disp_none{
  display: none;
}
.mw_wp_form .error {
  margin-top: 8px;
}
.mw_wp_form .policy {
  text-align: center;
}
.mw_wp_form  .policy a {
  border-bottom: 1px solid #333;
}

/*　ーーーーーーーーーーーーーーーーー
確認画面でのフォームのサイズ縮小
ーーーーーーーーーーーーーーーーー　*/

main.confirm h2.ttl-2{
 padding: 30px 0 10px;
 text-decoration: underline;
}
main.confirm .formTable dl dt{
  padding:10px 6.2% 10px 2%;
}
main.confirm .formTable dl dd{
  padding:10px 2.4%;
}
/*　ーメディアクエリなしここまでーーーーーーーーーー　*/

/*----------------------------------
Tab
----------------------------------*/
@media screen and (max-width:959px){

/* form */
.formTable {
  margin: 20px 0 20px;
  padding: 0 3%;
}

.formTable dl dt {
  display: block;
  padding: 3% 20% 3% 3%;
  width: 100% !important;
}

.formTable dl dt .icon {
  margin-top: -12px;
  right: 12px;
}

.formTable dl dd {
  display: block;
  padding: 5% 3%;
  width: 100% !important;
}

.formTable dl dd .mwform-radio-field {
  display: block;
  margin-right: 0;
  margin-left: 0 !important;
}

.formTable dl dd .mwform-radio-field label .mwform-radio-field-text::before {
  width: 16px;
  height: 16px;
  top: 6px;
}

.formTable dl dd .mwform-radio-field label .mwform-radio-field-text::after {
  width: 10px;
  height: 10px;
  top: 9px;
  left: 4px;
}

.formTable dl dd textarea, .formTable dl dd select, .formTable dl dd input[type="text"], .formTable dl dd input[type="email"] {
  width: 100% !important;
}

.formTable dl dd input[type="text"] {
  width: 100% !important;
}

.submitBtn {
  margin-top: 30px;
}

.submitBtn input[type="submit"] {
  padding: 12px 10px 14px 10px;
  width: 80% !important;
}
    
/*select 年齢 幅調整*/
.formTable dl:nth-child(n+3) dd> select{
        width: 40%!important;
    }
/*select 希望日時 幅調整*/
.formTable dl dd> .dateBox > div > select{
        width: 70%!important;
    }
.formTable dl dd> .timeBox > select{
        width: 50%!important;
    }
    
/*　ーーーーーーーーーーーーーーーーー
確認画面でのフォームのサイズ縮小
ーーーーーーーーーーーーーーーーー　*/
.mw_wp_form_confirm.mw_wp_form_preview #submit .back, .mw_wp_form_confirm.mw_wp_form_preview #submit .done_btn{
width: 20%;
    left: 25%;
    margin-left: 25px;
}
.mw_wp_form.mw_wp_form_input #submit {
    margin-bottom: 50px;
}
}
/*　ー以下480pxまでーーーーーーーーーーーーーーーーー　*/
@media screen and (max-width: 480px) {
  .mw_wp_form.mw_wp_form_input .submitBtn {
    padding: 12px 10px 14px 10px;
    width: 80%;
  }
/*　ーーーーーーーーーーーーーーーーー
確認画面でのフォームのサイズ縮小
ーーーーーーーーーーーーーーーーー　*/
.mw_wp_form_confirm.mw_wp_form_preview #submit .back, .mw_wp_form_confirm.mw_wp_form_preview #submit .done_btn{
  width: 40%;
  left: 0%;
	margin-left:25px;
}
}

/*　ーーーーーーーーーーーーーーーーー
サンクスページ　資料ダウンロード
ーーーーーーーーーーーーーーーーー　*/
#thanks-request .dl-link {
  margin: 30px auto 0 auto;
  padding: 20px 0;
}
#thanks-request .dl-link a {
  color: #203774;
  background: #fff;
  border: 2px solid #203774;
  border-radius: 8px;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 20px 10px;
}
#thanks-request .dl-link a:hover {
  color: #fff;
  background: #203774;
  border: 2px solid #203774;
  transition: .3s;
}
@media screen and (max-width: 320px) {
  #thanks-request .dl-link a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}


/**************************************************
* お知らせ詳細
***************************************************/
#news.wrapper {
  padding-bottom: 40px;
}
#news .page-wrap .page-wrap-box {
  top: 0;
}
.single #news .date {
  margin:14px 0 20px;
}
#news.common-bg.page  {
  background-color: #F2F2F2;
}

#news .wrap_blog img {
    max-width: 100%;
    width: auto;
    height: auto;
}
#news .wrap_blog,
#news .wrap_blog pre,
#news .wrap_blog span,
#news .wrap_blog a,
#news .wrap_blog p{
    word-break: break-all;
    overflow-wrap: break-word;
        font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
}
#news .wrap_blog .aligncenter{
    display: block;
    margin: 0 auto;
}
#news .wrap_blog .alignright{
    display: block;
    margin-left: auto;
}
#news .wrap_blog iframe {
    max-width: 100%;
}


/**************************************************
* お問い合わせ #contact
***************************************************/
/*------------------------------
フォーム 共通 ※変更不可
------------------------------*/

input, textarea, select {
  font-size: 1em;
}
/*inputフォーカス時の影やborderを消す 必須*/
form input:focus, form textarea:focus, form button[type="submit"]:focus {
  outline: 0;
  border: 2px solid #57b2e2;
}


form input.inputTxt01 {
  width: 100%;
}
form input, form select, form textarea {
  margin: 0 auto;
  padding: 4px;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  line-height: 1.5;
}

/**************************************************
* プライバシーポリシー #cprivacy
***************************************************/
#privacy h3{
    text-align: left;
}

/**************************************************
* サイトマップ #sitemap
***************************************************/
#sitemap .sitemap-list li{
  margin-bottom: 20px;
}
#sitemap .sitemap-list li a:hover{
  color: #E16939;
    transition: .3s;
}



