img {
  width: 100%;
  height: auto;
}
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  color: #000;
}
:root {
  --primary-font: "Noto Serif JP", serif;
  --primary-font2: "Noto Sans JP", sans-serif;
  --secondary-font: "Yuji Syuku", serif;
  --en-font: "Gelasio", serif;
  --secondary-en-font: "Georgia", "Vollkorn", serif;
  --color-main: #000;
  --color-second: #112D58;
}
/* 文字基準 */
html, h1, h2, h3, h4, h5, h6, p {
  font-family: var(--primary-font);
  line-height: 1.8;
  font-size: 62.5%;
}
/* 文字基準 */
/* 見出し */
.section-heading01 {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
}
.section-heading01_en {
  font-size: 2.3rem;
  font-weight: 400;
  display: block;
  color: var(--color-second);
  font-family: var(--secondary-en-font);
}
.section-heading02 {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 14px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .section-heading02 {
    font-size: 1.8rem;
  }
}
/*-- レイアウト --*/
.ly_cont {
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding: 0 30px;
}
.ly_cont_s {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding: 0 30px;
}
/*-- ブロック --*/
.bl_card {
  width: 30%;
}
/*-- エレメント --*/
/*見出し*/
.el_lv2_ttl {
  font-size: 2.4rem;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 34px;
}
.el_lv3_ttl {
  font-size: 2.4rem;
  font-family: 'Times New Roman', Times, serif;
  margin-bottom: 30px;
}
/*-- ヘルパー --*/
.hp_colWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hp_col01 {
  width: 48%;
  margin-bottom: 20px;
}
.hp_rev {
  flex-direction: row-reverse;
}
.txt-c{
	text-align: center;
}
.txt-r{
	text-align: right;
}
.txt-l{
	text-align: left;
}
@media screen and (max-width: 767px) {
  .hp_colWrap {
    flex-direction: column;
  }
  .hp_col01 {
    width: 100%;
  }
  .hp_rev {
    flex-direction: column-reverse;
  }
}
/*display*/
.hp_display_sp, .hp_display_sp2, .hp_display_sp3,.hp_display_sp4 {
  display: none;
}
/*pc非表示*/
.hp_display_pc {
  display: inline-block;
}
/*pc表示*/
@media screen and (max-width :1000px) {
.hp_display_sp4	{
    display: inline-block !important;
  }
}
@media screen and (max-width :767px) {
  .hp_display_sp3 {
    display: inline-block !important;
  }
  .hp_display_sp {
    display: inline-block !important;
  }
  /*sp表示*/
  .hp_display_pc {
    display: none !important;
  }
  /*sp非表示*/
}
@media screen and (max-width :360px) {
  .hp_display_sp2 {
    display: inline-block !important;
  }
}
.main_content :is(dt, dd) {
  font-family: var(--primary-font2);
  font-weight: 400;
}
/*button*/
button a, button span, .inquiry-form-submit{
  box-shadow: none;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 10px 25px;
  color: var(--color-second);
  transition: 0.3s ease-in-out;
  font-weight: 600;
  width: 350px;
  height: 75px;
  letter-spacing: 0.05rem;
  border-top: 1px solid var(--color-second);
  border-bottom: 1px solid var(--color-second);
  font-family: var(--primary-font);
}
button span.entry{
  box-shadow: none;
  font-size: 1.8rem;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 10px 25px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  width: 350px;
  height: 75px;
  letter-spacing: 0.05rem;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-family: var(--primary-font2);
	z-index: 1;
}
@media screen and (max-width :480px) {
  button a, button span {
    max-width: 350px;
    width: 100%;
  }
}
button a:hover,button span:hover {
  color: #333;
}
button span.entry:hover {
  color: #fff;
}
button a:before,button span:before,.inquiry-form-submit:before, button a:after, button span:after {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.3s;
  right: 0.6rem;
  top: 50%;
}
button a:before,button span:before,.inquiry-form-submit:before {
  width: 60px;
  height: 10px;
  background-image: url(../images/arrow.svg);
  /* transform: translateY(-50%);
  transform: translateX(20%); */
  background-repeat: no-repeat;
  right: 0;
  top: calc(50% - 5px);
}
button span.entry:before {
  content: none;
  top: calc(50% - 5px);
}
button a:after,button span:after {
  opacity: 0;
  width: 0;
  height: 0;
}
button a:hover:before,button span:hover:before,.inquiry-form-submit:hover:before  {
  transform: translateX(20%);
}
button a:hover:after,button span:hover:after {
  opacity: 1;
  width: 8px;
  height: 8px;
}
.fadein {}