@charset "UTF-8";
/*********************************************************
base
*********************************************************/
* {
  box-sizing: border-box;
}

body {
  color: #333333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  body {
    padding-bottom: 80px;
  }
}
@media (max-width: 400px) {
  body {
    padding-bottom: 0;
  }
}
body.fixed {
  position: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

button {
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.dib {
  display: inline-block;
}

.inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1024px;
}
@media (max-width: 1024px) {
  .inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ttl {
  color: #1d2e5b;
  font-size: 24px;
  font-weight: bold;
  padding-top: 20px;
  position: relative;
  text-align: center;
}
@media (max-width: 480px) {
  .ttl {
    font-size: 20px;
  }
}
.ttl::before {
  background: #1d2e5b;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
}

.breadcrumb {
  background: #e6ebf7;
  border-bottom: 1px solid #ddd;
  padding: 5px;
  text-align: center;
}

.breadcrumb__list {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1024px;
  display: flex;
}
@media (max-width: 1024px) {
  .breadcrumb__list {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.breadcrumb__item {
  font-size: 12px;
}
.breadcrumb__item:not(:last-child) {
  margin-right: 25px;
}

.breadcrumb__link {
  position: relative;
  text-decoration: underline;
}
.breadcrumb__link:hover {
  text-decoration: none;
}
.breadcrumb__link::after {
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  content: "";
  margin-top: -4px;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: rotate(-45deg) skew(15deg, 5deg);
  width: 8px;
  height: 8px;
}

.wrapper {
  padding-top: 50px;
}

.page-ttl {
  color: #1d2e5b;
  font-size: 36px;
  font-weight: bold;
  padding: 50px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .page-ttl {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .page-ttl {
    font-size: 24px;
  }
}

/*********************************************************
header
*********************************************************/
.header {
  background: #fff;
  box-shadow: 0 1px 5px #999;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s;
  width: 100%;
  z-index: 99;
}
@media (min-width: 1025px) {
  .header.hide {
    transform: translateY(-80px);
  }
}

.header__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
@media (max-width: 1024px) {
  .header__top {
    padding-top: 0;
    padding-right: 15px;
  }
}

.header__logo img {
  width: 200px;
}

.header__contact {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header__contact {
    display: none;
  }
}

.header-tel {
  margin-right: 15px;
}

.header-tel__num {
  color: #1d2e5b;
  font-size: 24px;
  font-weight: bold;
  padding-left: 50px;
  position: relative;
}
.header-tel__num .free {
  height: 30px;
  position: absolute;
  top: 2px;
  left: 0;
}
.header-tel__num .free svg {
  fill: #1d2e5b;
  width: 50px;
  height: 30px;
}

.header-tel__time {
  font-size: 12px;
  text-align: right;
}

.header-contact {
  display: flex;
}

.header-contact__tel a,
.header-contact__mail a {
  font-size: 12px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  transition: 0.3s;
}
.header-contact__tel a:hover,
.header-contact__mail a:hover {
  opacity: 0.8;
}

.header-contact__tel a {
  background: #ff9140;
  color: #fff;
}

.header-contact__mail a {
  background: #000;
  color: #fff;
}

@media (min-width: 1025px) {
  .header__nav {
    margin-top: 15px;
  }
}
@media (max-height: 450px) {
  .header__nav {
    max-height: 80vh;
    overflow: auto;
  }
}

@media (max-width: 1024px) {
  .gnav {
    display: none;
  }
}

.gnav__list {
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .gnav__list {
    flex-direction: column;
  }
}

.gnav__item {
  position: relative;
}
@media (min-width: 1025px) {
  .gnav__item.-pcnone {
    display: none;
  }
  .gnav__item::before {
    background: #666;
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 1px;
    height: 17px;
  }
  .gnav__item:last-child::after {
    background: #666;
    content: "";
    position: absolute;
    top: 7px;
    right: 0;
    width: 1px;
    height: 17px;
  }
}
@media (max-width: 1024px) {
  .gnav__item {
    border-bottom: 1px solid #ddd;
  }
  .gnav__item:first-child {
    border-top: 1px solid #ddd;
  }
}

.gnav__link {
  display: block;
  padding: 5px 15px 10px;
  position: relative;
}
@media (min-width: 1025px) {
  .gnav__link::after {
    content: "";
    opacity: 0;
    transition: 0.3s;
  }
  .gnav__link:hover::after {
    background: #1d2e5b;
    opacity: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
  }
}
@media (max-width: 1024px) {
  .gnav__link {
    font-size: 14px;
    font-weight: bold;
    padding-top: 10px;
    position: relative;
  }
  .gnav__link::after {
    border-right: 2px solid #465d58;
    border-bottom: 2px solid #465d58;
    content: "";
    margin-top: -4px;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: rotate(-45deg);
    width: 6px;
    height: 6px;
  }
}

@media (min-width: 1025px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn__inner {
  cursor: pointer;
  height: 50px;
  position: relative;
  width: 50px;
}
.menu-btn__inner::after {
  color: #1d2e5b;
  content: "メニュー";
  font-size: 10px;
  font-weight: bold;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.menu-btn__inner.close::after {
  content: "閉じる";
}

.menu-btn__bar {
  background: transparent;
  height: 2px;
  position: absolute;
  top: 15px;
  left: 12.5px;
  transition: 0.5s;
  width: 25px;
}
.menu-btn__bar::before, .menu-btn__bar::after {
  background: #1d2e5b;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  transition: 0.5s;
  width: 100%;
}
.menu-btn__bar::after {
  margin-top: 7px;
}

.close .menu-btn__bar {
  background: transparent;
}
.close .menu-btn__bar::before, .close .menu-btn__bar::after {
  margin-top: 0;
}
.close .menu-btn__bar::before {
  transform: rotate(45deg);
}
.close .menu-btn__bar::after {
  transform: rotate(-45deg);
}

@media (min-width: 1025px) {
  .sp-contact {
    display: none;
  }
}

.gnav-contact {
  background: #faf7f2;
}
@media (max-width: 1024px) {
  .gnav-contact {
    display: flex;
    justify-content: center;
    padding: 10px;
  }
}
@media (max-width: 400px) {
  .gnav-contact {
    align-items: center;
    flex-direction: column;
    padding: 5px;
  }
}

.gnav-contact__btn {
  border-radius: 10px;
  overflow: hidden;
  width: 80px;
  height: 110px;
}
@media (max-width: 1024px) {
  .gnav-contact__btn {
    width: 200px;
    height: auto;
  }
  .gnav-contact__btn:first-child {
    margin-right: 15px;
  }
}
@media (max-width: 400px) {
  .gnav-contact__btn {
    width: 180px;
  }
  .gnav-contact__btn:first-child {
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .gnav-contact__btn.-tel ul {
    display: flex;
    font-size: 12px;
  }
  .gnav-contact__btn.-tel ul li:first-child {
    margin-right: 5px;
  }
}
.gnav-contact__btn.-mail {
  border: 1px solid #1d2e5b;
  margin-top: 15px;
}
@media (max-width: 1024px) {
  .gnav-contact__btn.-mail {
    margin-top: 0;
  }
}
@media (max-width: 400px) {
  .gnav-contact__btn.-mail {
    margin-top: 5px;
  }
}
.gnav-contact__btn.-mail .gnav-contact__ttl {
  background: #1d2e5b;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.2;
  padding: 5px 3px;
  text-align: center;
}
@media (max-width: 1024px) {
  .gnav-contact__btn.-mail .gnav-contact__ttl {
    background: #fff;
    color: #1d2e5b;
    flex: 1;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .gnav-contact__btn.-mail .gnav-contact__ttl {
    font-size: 12px;
  }
}

.gnav-contact__link {
  display: block;
  height: 100%;
}
@media (max-width: 1024px) {
  .gnav-contact__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.-tel .gnav-contact__link {
  background: #e32459;
  color: #fff;
  padding: 5px;
}
@media (max-width: 1024px) {
  .-tel .gnav-contact__link {
    padding: 5px 10px;
  }
}
.-tel .gnav-contact__link svg {
  fill: #fff;
}
.-mail .gnav-contact__link {
  background: #fff;
}
@media (max-width: 1024px) {
  .-mail .gnav-contact__link {
    flex-direction: row-reverse;
    padding: 5px 10px;
  }
}
.-mail .gnav-contact__link svg {
  fill: #1d2e5b;
}

.gnav-contact__icon {
  text-align: center;
}
@media (max-width: 1024px) {
  .gnav-contact__icon {
    margin-right: 15px;
  }
}
@media (max-width: 480px) {
  .gnav-contact__icon {
    margin-right: 10px;
  }
}
@media (max-width: 400px) {
  .gnav-contact__icon {
    height: 30px;
  }
}
.-mail .gnav-contact__icon {
  margin-top: 10px;
}
@media (max-width: 400px) {
  .-mail .gnav-contact__icon {
    margin-top: 0;
  }
}
.gnav-contact__icon svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 480px) {
  .gnav-contact__icon svg {
    width: 30px;
    height: 30px;
  }
}

.gnav-contact__txt {
  font-size: 10px;
  text-align: center;
}
@media (max-width: 1024px) {
  .gnav-contact__txt {
    flex: 1;
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .gnav-contact__txt {
    font-size: 12px;
  }
}
.gnav-contact__txt span {
  display: block;
  font-weight: bold;
}

/*********************************************************
footer
*********************************************************/
.footer {
  background: #1d2e5b;
}

.footer__logo {
  background: #fff;
  text-align: center;
}
.footer__logo img {
  width: 200px;
}

.footer-nav {
  padding: 30px 10px;
}
@media (max-width: 800px) {
  .footer-nav {
    padding: 0;
  }
}

.footer-nav__list {
  display: flex;
  justify-content: center;
}
@media (min-width: 801px) {
  .footer-nav__list {
    margin: 0 auto;
    max-width: 1024px;
  }
}
@media (max-width: 800px) {
  .footer-nav__list {
    display: block;
  }
}

.footer-nav__item:not(:last-child) {
  margin-right: 25px;
}
@media (max-width: 800px) {
  .footer-nav__item:not(:last-child) {
    border-bottom: 1px solid #fff;
    margin-right: 0;
  }
}

.footer-nav__link {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  transition: 0.3s;
}
@media (max-width: 800px) {
  .footer-nav__link {
    display: block;
    padding: 10px;
    position: relative;
  }
  .footer-nav__link::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: "";
    margin-top: -4px;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: rotate(-45deg);
    width: 6px;
    height: 6px;
  }
}
.footer-nav__link:hover {
  opacity: 0.8;
}

@media (max-width: 400px) {
  .footer__sticky {
    display: none;
  }
}

/*********************************************************
contact
*********************************************************/
.contact {
  background: #f7f7f7 url(image.php?id=013);
  padding: 50px 10px;
  text-align: center;
}
@media (max-width: 500px) {
  .contact {
    padding: 30px 10px;
  }
}

.contact__txt {
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 480px) {
  .contact__txt {
    font-size: 18px;
  }
}

.contact__btn {
  display: flex;
  justify-content: space-between;
  margin: 15px auto 0;
  max-width: 500px;
}
@media (max-width: 500px) {
  .contact__btn {
    display: block;
  }
}

.contact__tel,
.contact__mail {
  width: 48%;
}
@media (max-width: 500px) {
  .contact__tel,
  .contact__mail {
    width: 100%;
  }
}
.contact__tel a,
.contact__mail a {
  color: #fff;
  display: block;
  font-size: 14px;
  font-weight: bold;
  padding: 10px;
  transition: 0.3s;
}
.contact__tel a:hover,
.contact__mail a:hover {
  opacity: 0.7;
}

.contact__tel a {
  background: #ff9140;
}

@media (max-width: 500px) {
  .contact__mail {
    margin-top: 15px;
  }
}
.contact__mail a {
  background: #000;
}

/*********************************************************
sticky
*********************************************************/
.sticky__container {
  position: fixed;
  z-index: 5;
}
@media (min-width: 1025px) {
  .sticky__container {
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
}
@media (max-width: 1024px) {
  .sticky__container {
    background: #fff;
    display: flex;
    justify-content: center;
    padding: 10px;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

.sticky__btn {
  border-radius: 10px;
  overflow: hidden;
  width: 80px;
  height: 110px;
}
@media (max-width: 1024px) {
  .sticky__btn {
    width: 200px;
    height: auto;
  }
  .sticky__btn:first-child {
    margin-right: 15px;
  }
}
@media (max-width: 400px) {
  .sticky__btn {
    width: 180px;
  }
  .sticky__btn:first-child {
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .sticky__btn.-tel ul {
    display: flex;
    font-size: 12px;
  }
  .sticky__btn.-tel ul li:first-child {
    margin-right: 5px;
  }
}
.sticky__btn.-mail {
  border: 1px solid #1d2e5b;
  margin-top: 15px;
}
@media (max-width: 1024px) {
  .sticky__btn.-mail {
    margin-top: 0;
  }
}
@media (max-width: 400px) {
  .sticky__btn.-mail {
    margin-top: 10px;
  }
}
.sticky__btn.-mail .sticky__ttl {
  background: #1d2e5b;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  line-height: 1.2;
  padding: 5px 3px;
  text-align: center;
}
@media (max-width: 1024px) {
  .sticky__btn.-mail .sticky__ttl {
    background: #fff;
    color: #1d2e5b;
    flex: 1;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .sticky__btn.-mail .sticky__ttl {
    font-size: 12px;
  }
}

.sticky__link {
  display: block;
  height: 100%;
}
@media (max-width: 1024px) {
  .sticky__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.-tel .sticky__link {
  background: #e32459;
  color: #fff;
  padding: 5px;
}
@media (max-width: 1024px) {
  .-tel .sticky__link {
    padding: 5px 10px;
  }
}
.-tel .sticky__link svg {
  fill: #fff;
}
.-mail .sticky__link {
  background: #fff;
}
@media (max-width: 1024px) {
  .-mail .sticky__link {
    flex-direction: row-reverse;
    padding: 5px 10px;
  }
}
.-mail .sticky__link svg {
  fill: #1d2e5b;
}

.sticky__icon {
  text-align: center;
}
@media (max-width: 1024px) {
  .sticky__icon {
    margin-right: 15px;
  }
}
@media (max-width: 480px) {
  .sticky__icon {
    margin-right: 10px;
  }
}
@media (max-width: 400px) {
  .sticky__icon {
    height: 30px;
  }
}
.-mail .sticky__icon {
  margin-top: 10px;
}
@media (max-width: 400px) {
  .-mail .sticky__icon {
    margin-top: 0;
  }
}
.sticky__icon svg {
  width: 40px;
  height: 40px;
}
@media (max-width: 480px) {
  .sticky__icon svg {
    width: 30px;
    height: 30px;
  }
}

.sticky__txt {
  font-size: 10px;
  text-align: center;
}
@media (max-width: 1024px) {
  .sticky__txt {
    flex: 1;
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .sticky__txt {
    font-size: 12px;
  }
}
.sticky__txt span {
  display: block;
  font-weight: bold;
}

/*********************************************************
共通
*********************************************************/
#contact {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 1024px;
  font-family: Avenir, "Helvetica neue", Helvetica, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
@media (max-width: 1024px) {
  #contact {
    padding-left: 2%;
    padding-right: 2%;
  }
}

/*--タイトル・説明文--*/
#contact .title {
  font-size: 24px;
  background: #1d2e5b;
  color: #fff;
  font-weight: bold;
  margin: 5% 0 2% 0;
  padding: 10px;
}

#contact .note {
  font-size: 12px;
  color: #4E4E4E;
  margin: 0 0 5% 0;
}

@media screen and (max-width: 768px) {
  #contact .title {
    font-size: 18px;
  }
}
/*--必須マーク--*/
.required-mark {
  background: #BC0003;
  border-radius: 3px;
  padding: 4px;
  font-weight: bold;
  font-size: 12px;
  color: #FFF;
  margin: 0 5px;
}

/*疑似要素で必須を表示させる場合*/
#contact tr:nth-child(1) th::after,
#contact tr:nth-child(3) th::after,
#contact tr:nth-child(4) th::after {
  background: #BC0003;
  border-radius: 3px;
  color: #FFF;
  content: "必須";
  display: inline-block;
  font-weight: bold;
  font-size: 12px;
  margin: 0 5px;
  padding: 4px;
  vertical-align: middle;
}

/*--テーブル--*/
#contact table,
#contact tr,
#contact th,
#contact td {
  box-sizing: border-box;
}

#contact table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

@media (min-width: 769px) {
  th,
  td {
    border: 1px solid #ddd;
  }
}

#contact th {
  background: #e6ebf7;
  text-align: left;
  padding: 3% 0 3% 1%;
}

#contact td {
  padding: 3% 1% 3% 3%;
}

#contact td input {
  width: 100%;
  box-sizing: border-box;
  height: 2em;
}
#contact td input[type=text] {
  border-radius: 5px;
  border-width: 1px;
  height: 4em;
  padding: 5px;
}

#contact td [type=radio],
#contact td [type=checkbox] {
  width: auto;
  box-sizing: border-box;
  height: auto;
}

#contact td textarea {
  width: 100%;
  border-radius: 10px;
  box-sizing: border-box;
  height: 10em;
  padding: 5px;
}

@media screen and (max-width: 768px) {
  #contact table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  #contact th {
    display: block;
    text-align: center;
    padding: 3% 0 3% 1%;
    font-size: 18px;
  }
  #contact th span {
    background: #BC0003;
    border-radius: 3px;
    padding: 4px;
    font-weight: bold;
    font-size: 12px;
    color: #FFF;
    margin: 0 0 0 5px;
  }
  #contact td {
    display: block;
    margin-top: 15px;
    padding: 0 1% 3% 0;
  }
  #contact td input {
    width: 100%;
    box-sizing: border-box;
    height: 45px;
  }
  #contact td textarea {
    width: 100%;
    box-sizing: border-box;
    height: 80px;
  }
}
/*--ボタン--*/
#contact .submit {
  display: flex;
  justify-content: center;
  margin: 3% auto;
}
@media (max-width: 480px) {
  #contact .submit {
    align-items: center;
    flex-direction: column;
  }
}

#contact .answerbutton,
#contact .returnbutton {
  border-radius: 15px;
  line-height: 50px;
  width: 200px;
  color: #FFF;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  box-sizing: border-box;
}
#contact .answerbutton:hover,
#contact .returnbutton:hover {
  opacity: 0.8;
}

#contact .answerbutton {
  background: #1d2e5b;
  border: 1px solid #1d2e5b;
  margin-right: 15px;
}
@media (max-width: 480px) {
  #contact .answerbutton {
    margin-right: 0;
  }
}

#contact .returnbutton {
  background: #294282;
  border: 1px solid #1d2e5b;
}
@media (max-width: 480px) {
  #contact .returnbutton {
    margin-top: 15px;
  }
}

/*--サンクスページ 末尾 「ご回答ありがとうございました。」削除--*/
#contact p[align=center] {
  display: none;
}
#contact p:last-child {
  display: none;
}