@charset "UTF-8";

/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */

/*General Elements
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  font-family: YuGothic, "Yu Gothic", Verdana, Meiryo,
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka,
    "MS PGothic", arial, helvetica, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  color: #707070;
}

a {
  text-decoration: underline;
  outline: none;
}

a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

/* _:-ms-lang(x), body {
	font-family: 'Noto Sans Japanese';
	font-style: normal;
	font-weight: 400;
} */

img {
  max-width: 100%;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: YuGothic, "Yu Gothic", Verdana, Meiryo,
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, メイリオ, Osaka,
    "MS PGothic", arial, helvetica, sans-serif;
}

.header-fix {
  position: relative;
  z-index: 1000;
  background: #fff;
  width: 100%;
  top: 0;
}

/*l-header
---------------------------------------------------------------------------- */
.l-header {
  padding: 0 30px;
  min-height: 190px;
  background: url("../../images/common/bg_header.png") repeat-x;
  background-position: center bottom;
}

.l-header .content {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  padding: 20px 0 0;
}

.l-header .content .logo {
  width: 520px;
  line-height: 1;
}

.l-header .content .logo a {
  display: block;
  text-decoration: none;
  transition: 0.3s;
}

.l-header .content .button {
  position: absolute;
  right: 0;
  top: 0;
  min-width: 170px;
}

.l-header .content .button a {
  display: block;
  min-height: 60px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: rgba(250, 112, 112, 0.7);
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 0 0 15px 15px;
  padding: 18px 10px 0;
  line-height: 1;
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .l-header .content .logo a:hover {
    opacity: 0.7;
  }

  .l-header .content .button a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .l-header {
    padding: 0 10px;
    min-height: 130px;
    background: url("../../images/common/bg_header_sp.png") repeat-x;
    background-size: 434px;
    background-position: center bottom;
  }

  .l-header .content {
    padding: 40px 0 0;
  }

  .l-header .content .logo {
    max-width: 354px;
    width: 90%;
    margin: 0 auto;
  }

  .l-header .content .button {
    min-width: 80px;
    right: 20px;
  }

  .l-header .content .button a {
    font-size: 1rem;
    min-height: 40px;
    padding: 20px 0 0;
    border-radius: 0 0 10px 10px;
  }
}

/* l-gNav
---------------------------------------------------------------------------- */
.l-gNav {
  background: #82ac28;
  text-align: center;
  padding: 25px 30px;
  line-height: 1;
  font-size: 0;
}

.l-gNav li {
  display: inline-block;
  position: relative;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0 70px 0 0;
  padding-left: 15px;
  vertical-align: middle;
}

.l-gNav li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 8px solid transparent;
  border-left: 8px solid #fff;
  pointer-events: none;
}

.l-gNav li:last-child {
  margin-right: 0;
}

.l-gNav li a {
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .l-gNav li a:hover {
    text-decoration: underline;
  }
}

@media screen and (max-width: 767px) {
  .l-gNav {
    padding: 23px 20px;
  }

  .l-gNav li {
    font-size: 1.4rem;
    margin: 5px 15px 5px 0;
    padding-left: 10px;
  }

  .l-gNav li::before {
    border: 6px solid transparent;
    border-left: 5px solid #fff;
    top: 1px;
  }
}

@media screen and (max-width: 320px) {
  .l-gNav li {
    font-size: 1.2rem;
  }
}

/* l-topicPath
---------------------------------------------------------------------------- */
.l-topicPath {}

.l-topicPath li {
  display: inline-block;
}

.l-topicPath li.p-topicHome {
  /*
    background: url(../../../images/common/bg_crumb_home.png) left center no-repeat;
    padding-left: 22px;
    */
}

.l-topicPath li a {
  text-decoration: underline;
  color: #0588ce;
}

.l-topicPath li a:hover {
  text-decoration: none;
}

.l-topicPath-arrow {
  margin-left: 0.5em;
}

.l-topicPath-arrow:before {
  content: "＞ ";
}

@media screen and (max-width: 767px) {}

/* l-pageBody
---------------------------------------------------------------------------- */
.l-pageBody {
  padding-top: 0;
  width: 100%;
  overflow: hidden;
}

/* @media screen and (max-width: 782px) {
  .l-pageBody {
    padding-top: 242px;
  }
} */
@media screen and (max-width: 767px) {
  .l-pageBody {
    padding-top: 0;
    min-width: 0;
  }
}

@media screen and (max-width: 507px) {
  .l-pageBody {
    padding-top: 0;
    min-width: 0;
  }
}

/* l-sidebar
---------------------------------------------------------------------------- */
.l-sidebar {}

@media screen and (max-width: 767px) {}

/* l-pageTop
---------------------------------------------------------------------------- */
.l-pageTop {}

@media screen and (max-width: 767px) {}

/* l-footer
---------------------------------------------------------------------------- */
.l-footer {
  padding: 0 30px 20px;
  background: #82ac28;
}

.l-footer .content {
  display: flex;
  justify-content: space-between;
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 0 80px;
}

.l-footer .content .logo {
  width: 370px;
  margin-right: 3%;
}

.l-footer .content .sitemap {
  min-width: 600px;
  padding-top: 40px;
}

.l-footer .content .sitemap ul {
  font-size: 0;
}

.l-footer .content .sitemap li {
  display: inline-block;
  position: relative;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 35px 10px 0;
  padding-left: 15px;
  vertical-align: middle;
  line-height: 1;
}

.l-footer .content .sitemap li::before {
  position: absolute;
  content: "";
  left: 0;
  top: -1px;
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 8px solid transparent;
  border-left: 8px solid #fff;
  pointer-events: none;
}

.l-footer .content .sitemap li:last-child {
  margin-right: 0;
}

.l-footer .content .sitemap li a {
  color: #fff;
  text-decoration: none;
}

.l-footer .content .logo a {
  display: block;
  text-decoration: none;
  transition: 0.3s;
}

.l-footer .content .sitemap .button {
  margin: 50px auto 0;
}

.l-footer .content .sitemap .button a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #82ac28;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  background: #fff;
  border: solid 2px #fff;
  border-radius: 70px;
  min-height: 70px;
  padding: 20px;
  transition: 0.3s;
}

.l-footer .copy {
  color: #fff;
  display: block;
  text-align: center;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .l-footer .content .logo a:hover {
    opacity: 0.7;
  }

  .l-footer .content .sitemap li a:hover {
    text-decoration: underline;
  }

  .l-footer .content .sitemap .button a:hover {
    background: #82ac28;
    border: solid 2px #fff;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .l-footer .content .sitemap {
    min-width: inherit;
    width: 100%;
  }

  .l-footer .content {
    flex-wrap: wrap;
    padding: 40px 0 60px;
  }

  .l-footer .content .logo {
    width: 80%;
    margin: 0 auto;
  }

  .l-footer .content .sitemap li {
    display: block;
    margin: 0 auto 20px;
  }

  .l-footer .content .sitemap .button {
    margin: 40px auto 0;
  }

  .l-footer .content .sitemap .button a {
    min-height: auto;
    padding: 15px 20px;
  }

  .l-footer .copy {
    font-size: 1rem;
  }
}


/* コンタクトフォームのスタイル */
#contact .inner {
  padding: 70px 30px 100px;
}

#contact .inner table {
  width: 100%;
  max-width: 770px;
  margin: 80px auto 40px;
  border-bottom: solid 1px #c3c6c2;
  color: #707070;
  font-size: 16px;
  font-size: 1.6rem;
}

#contact .inner table tr {
  border-top: solid 1px #c3c6c2;
}

#contact .inner table th {
  text-align: center;
  width: 240px;
  padding: 30px 40px 30px 0;
  vertical-align: middle;
}

#contact .inner table td {
  text-align: left;
  padding: 15px 0 15px 40px;
  vertical-align: middle;
}

.inner.page-contact-confirm table td>span {
  margin-left: 50px;
  margin-right: 15px;
}

.inner.page-contact-confirm table td>span:first-of-type {
  margin-left: 0;
}

#contact input.text-short {
  background: rgba(112, 112, 112, 0.07);
  margin-left: 15px;
  margin-right: 30px;
  height: 50px;
  width: 190px;
  padding: 0 20px;
  font-size: 1.6rem;
}

/* ボタンエリア */
.page-contact-confirm .mw_wp_form_confirm .button,
.page-contact .mw_wp_form_confirm .button {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* 戻る・送信ボタン共通 */
.page-contact-confirm .mw_wp_form_confirm .button input[type="submit"],
.page-contact-confirm .mw_wp_form_confirm .button input[type="button"],
.page-contact-confirm .mw_wp_form_confirm .button button,
.page-contact .mw_wp_form_confirm .button input[type="submit"],
.page-contact .mw_wp_form_confirm .button input[type="button"],
.page-contact .mw_wp_form_confirm .button button {
  min-width: 220px;
  height: 56px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 送信ボタン */
.page-contact-confirm .mw_wp_form_confirm .button input[name*="mwform_submitButton-199"] {
  background: #fb9b9b;
  color: #FFF;
}

/* 戻るボタン */
.page-contact-confirm .mw_wp_form_confirm .button input[name*="submitBack"] {
  background: #1f3c88;
  color: #fff;
}

/* hover */
.page-contact-confirm .mw_wp_form_confirm .button input:hover,
.page-contact-confirm .mw_wp_form_confirm .button button:hover,
.page-contact .mw_wp_form_confirm .button input:hover,
.page-contact .mw_wp_form_confirm .button button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.page-contact-confirm .privacy {
  text-align: center;
}

.mw_wp_form_complete .button {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.mw_wp_form_complete .button a {
  display: block;
  min-width: 220px;
  background: #fb9b9b;
  border: solid 2px #fb9b9b;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 999px;
  transition: 0.3s;
  padding: 15px 30px;
  text-align: center;
}