@charset "UTF-8";

/************************************
** 基本表示
************************************/
/*初期化*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

html {
    font-size: 62.5%;
    font-weight: 400;
}

body {
  font-family: "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 1.8rem;
  color: #333;
  line-height: 1.8;
  margin: 0;
  overflow-wrap: break-word;
  background-attachment: fixed;
}

/*デフォルトリンク*/
a {
  color: #e53900;
}
a:hover {
  color: #1967d2;
}

ol, ul {
  margin: 1em 0;
  padding-left: 4rem;
}

hr {
  color: #eee;
}

/* クリアフィックス */
.cf::after {
  clear: both;
  content: "";
  display: block;
}

.header-container,
.wrap,
.footer {
  background-color: #fff;
}

.wrap {
  width: 1236px;
  margin: 0 auto;
}

body, .header {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

.entry-head h1 {
    font-size: 2.4rem;
    padding: 1rem 0;
    line-height: 1.35;
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid #aaa;
}

.wrap .inner {
    margin: 2rem auto;
    padding: 0 1rem;
}

p {
    margin: 1.2em 0;
}

/*************************************
** header
**************************************/
.header-in {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tagline {
    text-align: center;
    font-size: 1.4rem;
    margin: .6em 0;
}

.logo-header {
    padding: 2rem 0 3rem;
    text-align: center;
}

.site-name {
  color: #333;
  font-weight: normal;
  text-decoration: none;
}

.site-name_txt {
    font-size: 4.8rem;    
    font-weight: bold;
    line-height: 1;
}

/*************************************
** footer
**************************************/
.footer {
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-bottom {
  margin-top: 2.4rem;
  padding: .8rem;
  font-size: 1.4rem;
  text-align: center;
}



/**************************************
** お問い合わせ
***************************************/
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
  padding: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.8rem;
  width: 100%;
}

input[type='submit'] {
  padding: 1.6rem;
  width: 48%;
  margin: 1.6rem auto 0;
  cursor: pointer;
  background-color: #fff;
  color: #fd3f3f;
  font-weight: bold;
  font-size: 1.6rem;
  border: 3px solid #fd3f3f;
  border-radius: 5px;
}

input[type="submit"].back {
    color: #666;
    border-color: #666;
}

input[type='submit']:hover {
  background-color: #fd3f3f;
  color: #fff;
}

input[type="submit"].back:hover {
  background-color: #666;
}

.form-submit {
  display: flex;
}

.mwform-tel-field input[type="text"][size="5"] ,
.mwform-tel-field input[type="text"][size="6"] {
  width: 25%;
}

.contact_description {
  text-align: center;
}

span.contact_description__txt__req {
  color: red;
  display: block;
  font-size: .9em;
}

.contForm,
.mw_wp_form_complete {
    width: 765px;
    margin: 1rem auto;
}

p.cont-ttl {
    margin: 1.2em 0 .6em;
}

span.req {
    color: red;
}

p.sendOK_txt {
    text-align: center;
    border: 3px solid #85b7ea;
    padding: 2rem 0;
}

/**************************************
** media screen
***************************************/
@media screen and (max-width: 1240px) {
  .wrap {
      width: auto;
  }
}

@media screen and (max-width: 1023px) {
  .header {
      background-size :cover;
  }
  
  .footer {
    margin-bottom: 5rem;
  }
}

@media screen and (max-width: 768px) {
  .header div.header-in{
    min-height: auto;
  }
  
  #header .site-name_txt {
    font-size: 3.8rem;
  }
  
  .contForm,
  .mw_wp_form_complete {
    width: 100%;
}
}

@media screen and (max-width: 480px) {
  body {
    font-size: 1.6rem;
  }
}




