@charset "utf-8";
/* CSS Document */

@import "reset.css";
@import "base_sp_min.css";

/*******************

 LP style

#color
orange : #ff9600
black : #303030 
green : #56ba62  hover: #78c881

********************/

/*-------------------------------------------
 common
-----------------------------------------------*/
.red {color: #d00;}
.bold {font-weight: bold;}
.uline{text-decoration: underline;}
.mk { /* marker color rgba(255,222,0,1) */
  background: -webkit-linear-gradient(rgba(255,222,0,0) 0%, rgba(255,222,0,0) 14%, rgba(255,222,0,1) 15%, rgba(255,222,0,1) 85%, rgba(255,222,0,0) 86%, rgba(255,222,0,0) 100%);
  background: -o-linear-gradient(rgba(255,222,0,0) 0%, rgba(255,222,0,0) 14%, rgba(255,222,0,1) 15%, rgba(255,222,0,1) 85%, rgba(255,222,0,0) 86%, rgba(255,222,0,0) 100%);
  background: linear-gradient(rgba(255,222,0,0) 0%, rgba(255,222,0,0) 14%, rgba(255,222,0,1) 15%, rgba(255,222,0,1) 85%, rgba(255,222,0,0) 86%, rgba(255,222,0,0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffde00', endColorstr='#00ffde00',GradientType=0 );
}


/* btn */
.btn-img {
  opacity: 1;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}
.btn-img {
  opacity: .7;
}

.btn-green {
  background-color: #56ba62;
  border-radius: .3em;
  color: #fff;
  display: inline-block;
  font-size: 1em;
  padding: .5em 2em;
  position: relative;
}
.btn-green:before {
  content: "▲";
  display: block;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  position: absolute;
  top: 50%;
  right: .5em;
  line-height: 1em;
  margin-top: -.5em;
}
.btn-green:hover {
  background-color: #78c881;
}

.btn-box-l {
  margin: 2em auto;
  font-size: 2em;
  line-height: 1.3em;
  text-align: center;
  width: 80%;
}


/* block */
.block-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  margin: 3em auto;
}
.block-4 > * {
 width: -webkit-calc(100% / 2); 
 width: -o-calc(100% / 2); 
 width: calc(100% / 2); 
}
.block-4 p {
  margin-top: .5em;
  text-align: center;
  font-size: .85em;
  line-height: 1.35em;
}
/* prof-box*/
.prof-box {
  box-sizing: border-box;
  border: 2px solid #303030;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1000px;
  margin: 2em auto;
  padding: 1em;
  position: relative;
  overflow: hidden;
}
.prof-box:before {
  content: "";
  background-color: #ff9600;
  width: 5em;
  height: 10em;
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: rotate(45deg) translate(-100%, 0%);
  -ms-transform: rotate(45deg) translate(-100%, 0%);
  -o-transform: rotate(45deg) translate(-100%, 0%);
  transform: rotate(45deg) translate(-100%, 0%);
}
.prof-box:after {
  content: "";
  background-color: #ff9600;
  width: 10em;
  height: 5em;
  display: block;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  -webkit-transform: rotate(135deg) translate(0, -100%);
  -ms-transform: rotate(135deg) translate(0, -100%);
  -o-transform: rotate(135deg) translate(0, -100%);
  transform: rotate(135deg) translate(0, -100%);
}
.prof-img {
  width: 150px;
  display: block;
  position: relative;
  z-index: 2;
}
.prof-txt {
  width: -webkit-calc( 100% - 170px);
  width: -o-calc( 100% - 170px);
  width: calc( 100% - 170px);
  display: block;
  position: relative;
  z-index: 2;
}
.prof-txt dt {
  line-height: 1.3;
  font-size: 1.2em;
  font-weight: bold;
}
.prof-txt-name {
  font-size: 1.3em;
  padding-right: .5em;
}
.prof-txt dd {
  box-sizing: border-box;
  padding: .5em;
}



/* title */
.ttl {
  font-size: 1.7em;
  font-weight: bold;
  border-bottom: 3px solid #303030;
  padding-bottom: .3em;
  position: relative;
  margin-bottom: 1em;
}
.ttl:before {
  content: "";
  background-color: #ff9600;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 3px;
  width: 10%;
}


.content p + p {
  margin-top: 1em;
}
.att {
  text-align: right;
  font-size: .8em;
  line-height: 1.5em;
}

/* table */
.table-box {
  width: 100%;
  margin: 1em auto;
}
.table-box dl {
  display: table;
  width: 100%;
  border-bottom: 2px solid #fff;
}
.table-box dt {
  box-sizing: border-box;
  border-bottom: 2px solid #eee;
  background-color: #ff9600;
  color: #fff;
  display: table-cell;
  padding: 10px;
  width: 8em;
}
.table-box dd {
  box-sizing: border-box;
  border-bottom: 2px solid #eee;
  display: table-cell;
  padding: 10px;
}

/*-------------------------------------------
 header
-----------------------------------------------*/
.site-header {
  border-top: .3em solid #ff9600;
  width: 100%;
}
.site-header-box {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
  text-align: left;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.site-header-logo {
  max-width: 180px;
  width: 36%;
}
.site-header-link {
  box-sizing: border-box;
  padding: .2em;
}
.btn-fb {
  border-radius: .3em;
  display: inline-block;
  overflow: hidden;
  width: 2.8em;
  vertical-align: middle;
}
.btn-tw {
  border-radius: .3em;
  display: inline-block;
  overflow: hidden;
  width: 2.8em;
  vertical-align: middle;
}
/*-------------------------------------------
 catch
-----------------------------------------------*/
#catch {
  background-color: #000000;
  background-image: url(../img/cover.gif),url(../img/ogp.jpg);
  -webkit-background-size: auto auto , cover;
  background-size: auto auto , cover;
  background-position: 50% 50%;
  box-sizing: border-box;
  color: #fff;
  padding: 2.2em 0;
  width: 100%;
}
.catch-box {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1000px;
}
.catch-before {
  border-bottom: 2px solid #fff;
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  padding-bottom: .5em;
  text-shadow: 2px 2px 20px rgba(0,0,0,.8);
}
.catch-ttl {
  font-size: 2.7em;
  font-weight: bold;
  text-align: center;
  line-height: 1.2em;
  letter-spacing: 0.05em;
  padding: .4em 0;
  text-shadow: 2px 2px 20px rgba(0,0,0,.8);
}
.catch-date {
  text-align: center;
  font-weight: bold;
  font-size: 1.4em;
  text-shadow: 2px 2px 20px rgba(0,0,0,.8);
}

/* content */
.content {
  box-sizing: border-box;
  max-width: 1000px;
  margin: 3em auto;
  padding: 0 10px;
}
.content + .content {
  margin-top: 5em;
}

/*-------------------------------------------
 footer
-----------------------------------------------*/

.guide {
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: 3em auto;
  padding: 0 10px;
}
.guide dt {
  text-align: center;
  font-weight: bold;
  padding-bottom: .2em;
}
.guide dd p{
  line-height: 1.5em;
  font-size: .85em;
  text-align: center;
}

.footer-link {
  text-align: center;
  margin-top: 3em;
}
.footer-link li{
  font-size: .95rem;
  margin-bottom: .4em;
}
.footer-link-obi {
  text-align: left;
}
.footer-link-obi li {
  margin-bottom: 0;
}
.footer-link-obi li a{
  display: block;
  background-color: #ccc;
  box-sizing: border-box;
  width: 100%;
  padding: .9em;
  position: relative;
  line-height: 1em;
  border-bottom: 1px solid #fff;
}
.footer-link-obi li a:after {
  content: "＞";
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 50%;
  right: .5rem;
  margin-top: -.5em;
  -webkit-transform: scaleX(.8);
  -ms-transform: scaleX(.8);
  -o-transform: scaleX(.8);
  transform: scaleX(.8);
}

#copy {
  text-align: center;
  font-size: .75em;
  color: #fff;
  background-color: #ff9600;
  box-sizing: border-box;
  padding: .5em;
}

/* res */
.sp-only {
    display: none;
  }
.pc-only {
    display: block;
  }
@media screen and (max-width:641px){
  .site-header .btn-fb ,
  .site-header .btn-tw {
    font-size: .76em;
  }
  .site-header .btn-green {
    padding: .2em 1.5em .2em .5em;
  }
  .catch-before {
    font-size: 1.1em;
    width: 90%;
    margin: 0 auto;
  }
  .catch-ttl {
    line-height: 1.5em;
    font-size: 1.5em;
    font-feature-settings: 'palt' 1;
    letter-spacing: -0.05em;
  }
  .catch-date {
    font-size: 1.1em;
  }
  .block-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  margin: 1em auto;
}
  .block-4 > * {
    width: 50%;
    box-sizing: border-box;
    padding:0 10px 1em;
  }
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .prof-box {
  display: block;
}
.prof-box:before {
  content: "";
  background-color: #ff9600;
  width: 5em;
  height: 10em;
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transform: rotate(45deg) translate(-100%, 0%);
  -ms-transform: rotate(45deg) translate(-100%, 0%);
  -o-transform: rotate(45deg) translate(-100%, 0%);
  transform: rotate(45deg) translate(-100%, 0%);
}
.prof-box:after {
  content: "";
  background-color: #ff9600;
  width: 10em;
  height: 5em;
  display: block;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  -webkit-transform: rotate(135deg) translate(0, -100%);
  -ms-transform: rotate(135deg) translate(0, -100%);
  -o-transform: rotate(135deg) translate(0, -100%);
  transform: rotate(135deg) translate(0, -100%);
}
.prof-img {
  width: 150px;
  display: block;
  position: relative;
  z-index: 2;
  margin: 0 auto 1em;
}
.prof-txt {
  width: 100%;
  display: block;
  position: relative;
  z-index: 2;
}
  .prof-txt dt {
    font-size: 1.1em;
  }
  .prof-txt dd {
    padding: 10px 0 0;
  }
  
  .ttl {
    font-size: 1.6em;
  }
  .btn-box-l {
    font-size: 1.2em;
    width: 95%;
}
  .table-box dl {
    display: block;
  }
  .table-box dt {
    display: block;
    width: 100%;
    padding: .2em 10px;
    border-bottom: none;
  }
  .table-box dd {
    display: block;
    width: 100%;
    padding: .5em 10px 1.2em;
    border-bottom: none;
  }
  
}
@media screen and (min-width:640px){
  .footer-link {
    text-align: center;
    margin-top: 3em;
    margin-bottom: 1em;
  }
  .footer-link-obi {
    text-align: center;
  }
  .footer-link-obi li {
    display: inline-block;
    background-color: transparent;
    padding: 0 .8em;
    line-height: 1.4em;
  }
  .footer-link-obi li + li {
    border-left: 1px solid;
  }
   .footer-link-obi li a{
    display: inline-block;
    background-color: transparent;
    box-sizing: border-box;
    width: auto;
    padding: 0;
    position: relative;
    line-height: 1em;
    border-bottom: 1px solid #fff;
  }
  .footer-link-obi li a:after {
    content: none;
  }
}


/* form ----------------------*/
#form-area {
  margin: 3em auto 1em;
  max-width: 900px; 
}
.form-ttl {
  position: relative;
  text-align: center;
  font-size: 1.8em;
}
#form-area .must {
  background-color: #d00;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: .8em;
  font-weight: bold;
  line-height: 1em;
  letter-spacing: 0.05em;
  padding: .3em .4em;
  vertical-align: middle;
} 
#form-area dt .must {
  margin-left: .5em;
}
#form-area .table-box dt {
  min-width: 12em;
}
#form-area input[type="text"],
#form-area input[type="email"] {
  box-sizing: border-box;
  padding: .5em;
  width: 100%;
  margin: .2em auto;
}
#form-area input[type="tel"] {
  box-sizing: border-box;
  padding: .5em;
  width: auto;
  margin: .2em ;
}
#form-area select {
  box-sizing: border-box;
  padding: .5em;
  width: auto;
  margin: .2em;
}
#form-area .error-mes {
  color: #d00;
  font-size: .9em;
  font-weight: bold;
}
#form-area label {
  padding: 0 .5em;
  display: inline-block;
  cursor: pointer;
}
#form-area label + label {
  margin-left: 1em;
}
#form-area input[type="radio"] ,
#form-area input[type="checkbox"] {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  margin-right: .3em;
  margin-bottom: .2em;
}

.priv-box {
  border: 2px solid #ccc;
  width: 93.75%;
  margin: 1em auto;
  padding: 1em;
  box-sizing: border-box;
}
.priv-box .priv-ttl {
  box-sizing: border-box;
  font-weight: bold;
  font-size: 1.2em;
}
.priv-box dd p {
}
.priv-box .scrollbox {
  border: 1px solid #ccc;
  width: 100%;
  margin: 0 auto;
  height: 8em;
  box-sizing: border-box;
  padding: 10px;
  overflow-y: scroll;
}
.priv-box .scrollbox p {
  font-size: .75em;
  line-height: 1.5em;
}
.priv-btn {
  text-align: center;
  padding-top: 1em;
}
#form-area .priv-btn label {
  border: 4px solid #ff9600;
  text-align: center;
  padding: .2em 1em;
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1.6;
}
.form-btn .btn-green {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  margin: 0 auto;
  font-size: 1.5em;
  cursor: pointer;
}
@media screen and (max-width:641px){
  .priv-box .scrollbox {
    padding: 5px;
    width: 100%;
  }
  .priv-box .scrollbox p {
  font-size: .9em;
  line-height: 1.5em;
}
}




/* placeholder */
:placeholder-shown { color: #aaa; }
::-webkit-input-placeholder {color: #aaa; }
:-moz-placeholder { color: #aaa; opacity: 1; }
::-moz-placeholder { color: #aaa; opacity: 1; }
:-ms-input-placeholder { color: #aaa; }


/* confirm */
.confirm #catch {
  padding: 1.5em;
}
.confirm .catch-before {
  font-size: .9em;
}
.confirm .catch-ttl {
  font-size: 1.4em;
}
.confirm .catch-date {
  font-size: 1.2em;
}
.btn-back {
  background-color: #aaa;
  border-radius: .3em;
  color: #fff;
  display: inline-block;
  font-size: 1em;
  padding: .5em 1em;
  position: relative;
  margin: 1.5em auto;
  display: block;
  width: 8em;
  text-align: center;
}
.btn-back:hover {
  background-color: #bbb;
}

/* thanks */
.thanks .catch-before {
  font-size: .9em;
}
.thanks .catch-before br{
  display: none;
}
.thanks .catch-ttl {
  font-size: 1.4em;
}
.thanks .catch-ttl br {
  display: none;
}
.thanks .catch-date {
  font-size: 1.2em;
}
.sns-box {
  margin: 2em auto;
  width: 90%;
  text-align: center;
  border: 2px solid;
  padding: 1em;
  box-sizing: border-box;
}
.sns-box dt {
  text-align: center;
  font-size: 1.2em;
}
.sns-box a {
  margin: 0 .5em;
}

@media screen and (max-width:641px){
  
.confirm #catch {
  padding:1em .5em;
}
.thanks #catch {
  padding:1em .5em;
}
}
@media screen and (min-width:640px){
  .confirm .catch-before br{
    display: none;
  }
  .confirm .catch-ttl br {
    display: none;
  }
  .thanks .catch-before br{
    display: none;
  }
  .thanks .catch-ttl br {
    display: none;
  }
}