@charset "UTF-8";
/* -----------------------------------*/
/*              　common   　　        */
/* -----------------------------------*/
*,
*:after,
*::before {
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Noto Sans JP", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
  -webkit-print-color-adjust: exact;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  width: 100%;
  overflow-x: hidden;
}

.futura {
  font-family: "Renner*";
}

body {
  font-size: 1.6rem;
  color: #333333;
  background: #fffbf7;
}

main {
  overflow: hidden;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  main {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 768px) {
  main {
    margin-bottom: 100px;
  }
}

h1, h2, h3, h4, h5, h6, h7, h8, p, dt, dd, li, td, th {
  line-height: 1.6em;
}
@media screen and (min-width: 768px) {
  h1, h2, h3, h4, h5, h6, h7, h8, p, dt, dd, li, td, th {
    line-height: 1.8em;
  }
}

p {
  margin-bottom: 1em;
}

a {
  text-decoration: none;
  color: #333333;
}

li {
  list-style-type: none;
}

@media screen and (min-width: 1025px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc, .tab {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .pc_only {
    display: block !important;
  }
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .sp_only {
    display: none !important;
  }
}

.center {
  text-align: center;
}

.inr {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #4d99e0;
  border: solid 2px #fff;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  cursor: pointer;
  opacity: 0.7;
}
.pagetop:hover {
  opacity: 1;
  transition: 0.7s;
}

.pagetop__arrow {
  display: block;
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

.link_btn {
  text-align: center;
}
.link_btn a {
  display: inline-block;
  background: #fff;
  min-width: 180px;
  padding: 15px 40px 15px 20px;
  border: 4px solid #258274;
  border-radius: 100px;
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2rem;
  color: #258274;
  margin: 15px auto;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .link_btn a {
    font-size: 2.4rem;
    padding: 20px 50px 20px 30px;
  }
}
.link_btn a::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  background: #258274;
  right: 15px;
  top: 21px;
  transform: rotate(45deg);
  transition: 0.7s;
}
@media screen and (min-width: 768px) {
  .link_btn a::after {
    width: 14px;
    top: 26px;
  }
}
.link_btn a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  background: #258274;
  right: 15px;
  bottom: 21px;
  transform: rotate(-45deg);
  transition: 0.7s;
}
@media screen and (min-width: 768px) {
  .link_btn a::before {
    width: 14px;
    bottom: 26px;
  }
}
.link_btn a:hover {
  opacity: 0.85;
  transition: 0.7s;
}
.link_btn a:hover::after, .link_btn a:hover::before {
  right: 10px;
  transition: 0.7s;
}

.ttl_1 {
  text-align: center;
  margin: 40px 0;
}
@media screen and (min-width: 768px) {
  .ttl_1 {
    margin: 60px 0;
  }
}
.ttl_1 span {
  display: inline-block;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  padding: 10px 20px;
  letter-spacing: 2px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .ttl_1 span {
    font-size: 2.4rem;
    padding: 12px 24px;
  }
}
.ttl_1 span::before {
  content: "";
  width: 3px;
  height: 100%;
  display: inline-block;
  background: #333333;
  left: -9px;
  top: 0;
  bottom: 0;
  position: absolute;
}
.ttl_1 span::after {
  content: "";
  width: 3px;
  height: 100%;
  display: inline-block;
  background: #333333;
  right: -9px;
  top: 0;
  bottom: 0;
  position: absolute;
}

/*              　header   　　        */
header .header_wrap {
  width: 100%;
  height: 60px;
  position: fixed;
  z-index: 9999;
  background: #fff;
}
@media screen and (min-width: 768px) {
  header .header_wrap {
    height: 80px;
  }
}
header .header_inr .header_logo {
  position: relative;
  top: 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.8rem;
  margin-left: 20px;
  display: inline-block;
  z-index: 10;
}
header .header_inr .header_logo img {
  width: 40px;
  position: relative;
  top: 4px;
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  header .header_inr .header_logo {
    font-size: 2.2rem;
    letter-spacing: 0.5px;
    top: 20px;
    margin-left: 40px;
  }
}
header .header_inr .main_menu {
  display: flex;
  justify-content: end;
  position: relative;
  top: -39.5px;
}
header .header_inr .main_menu li {
  height: 80px;
  width: 160px;
}
@media screen and (min-width: 1025px) {
  header .header_inr .main_menu li {
    transform: rotateZ(0.03deg);
  }
}
header .header_inr .main_menu li a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 1.2em;
  letter-spacing: 1px;
}
header .header_inr .main_menu li a span {
  display: block;
  font-size: 1.2rem;
}
header .header_inr .main_menu li:hover {
  opacity: 0.7;
  transition: 0.7s;
}
header .header_inr .main_menu li.btn_2 {
  background: #4d99e0;
}
header .header_inr .main_menu li.btn_2 a {
  color: #fff;
}

/* -----------------------------------*/
/*                                    */
/* 　 SP　ハンバーガーメニュー　　        */
/*                                    */
/* -----------------------------------*/
.sp-menu {
  list-style-type: none;
  width: 100%;
  max-width: 330px;
  height: 100vh;
  background: #4d99e0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9999;
  display: none;
  padding: 50px 10px 26px 10px;
  /* スクロールが必要になったら使用　
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  */
}
.sp-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sp-menu ul li {
  border-bottom: 1px solid #fff;
  width: 100%;
  padding: 15px 6px;
  text-align: center;
}
.sp-menu ul li a {
  color: #fff;
}
.sp-menu ul li a span {
  position: relative;
  width: 100%;
  display: block;
  color: #4d99e0;
  font-size: 1.4rem;
  font-weight: 700;
}
.sp-menu ul li a span::after {
  content: ">";
  position: absolute;
  right: 6px;
  bottom: 1em;
  margin: auto;
  color: #fff;
  font-size: 1.7rem;
}
.sp-menu .btn_wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.sp-menu .btn_wrap > div {
  width: 35px;
  margin: 0 8px;
  padding: 2px;
}
.sp-menu .btn_wrap > div img {
  width: 100%;
}
.sp-menu .btn_wrap .x_btn {
  background: #fff;
}

/* -- div#sp-icon ----- */
div#sp-icon {
  width: 60px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0px;
  z-index: 9999;
  background: #4d99e0;
}
@media screen and (min-width: 768px) {
  div#sp-icon {
    width: 80px;
  }
}
@media screen and (min-width: 1025px) {
  div#sp-icon {
    display: none;
  }
}
div#sp-icon:hover {
  cursor: pointer;
  opacity: 0.7;
}
div#sp-icon span,
div#sp-icon span:before,
div#sp-icon span:after {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.3s;
}
div#sp-icon span {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
div#sp-icon span::before {
  content: "";
  transform: translateY(-8px) rotate(0deg);
}
div#sp-icon span::after {
  content: "";
  transform: translateY(8px) rotate(0deg);
}

div.sp-open span {
  background: transparent !important;
}
div.sp-open span:before {
  width: 30px !important;
  transform: translateX(2px) rotate(45deg) !important;
  background: #fff !important;
}
div.sp-open span:after {
  width: 30px !important;
  transform: translateX(2px) rotate(-45deg) !important;
  background: #fff !important;
}

div.sp-open {
  background: transparent !important;
}

/*              footer   　　        */
footer .footer_info {
  background: #fff;
  padding: 40px 20px;
  text-align: center;
}
footer .footer_info .logo {
  width: 60px;
  height: 30px;
  margin: 0 auto 20px auto;
}
footer .footer_info .logo img {
  width: 100%;
}
footer .footer_info h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1em;
}
footer .footer_info .tel {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
}
footer .cp {
  font-size: 1.2rem;
  background: #4d99e0;
  color: #fff;
  text-align: center;
  padding-top: 4px;
  padding-bottom: 4px;
}
footer .cp p {
  margin: 0;
  padding: 0;
}

/* -----------------------------------*/
/*              　index   　　        */
/* -----------------------------------*/
.index {
  padding-top: 60px;
  transform: rotateZ(0.03deg);
}
@media screen and (min-width: 768px) {
  .index {
    padding-top: 80px;
  }
}
.index {
  /*  スライダー */
}
.index .index_mv {
  width: 100%;
  height: 400px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .index .index_mv {
    height: 500px;
  }
}
@media screen and (min-width: 1025px) {
  .index .index_mv {
    height: 700px;
  }
}
.index .index_mv .main_img_wrap {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden !important;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .index .index_mv .main_img_wrap {
    height: 500px;
  }
}
@media screen and (min-width: 1025px) {
  .index .index_mv .main_img_wrap {
    height: 700px;
  }
}
.index .index_mv .main_img_wrap .main_img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 0;
  animation: anime 18s 0s infinite;
}
.index .index_mv .main_img_wrap .main_img:nth-of-type(1) {
  background-image: url("../img/mv_01.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.index .index_mv .main_img_wrap .main_img:nth-of-type(2) {
  background-image: url("../img/mv_02.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  animation-delay: 6s;
}
.index .index_mv .main_img_wrap .main_img:nth-of-type(3) {
  background-image: url("../img/mv_03.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  animation-delay: 12s;
}
@keyframes anime {
  0% {
    opacity: 0;
    transform: scale(1.2) rotate(0.1deg);
  }
  17% {
    opacity: 1;
  }
  34% {
    opacity: 1;
  }
  51% {
    opacity: 0;
    transform: scale(1) rotate(0.1deg);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
.index {
  /* TOP common */
}
.index section {
  margin: 50px auto;
}
@media screen and (min-width: 768px) {
  .index section {
    margin: 140px auto;
  }
}
.index {
  /* index_about */
}
.index .index_about {
  margin: 50px auto;
}
.index .index_about h2 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 40px;
  line-height: 2em;
}
.index .index_about p {
  max-width: 640px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .index .index_about h2 {
    font-size: 2.4rem;
  }
}
.index {
  /* index_hoken */
}
.index .index_hoken {
  background: #fff;
  padding-top: 20px;
  padding-bottom: 60px;
  justify-content: center;
}
.index .index_hoken .item_wrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 640px;
  margin: auto;
}
.index .index_hoken .item_wrap .item {
  width: 50%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .index .index_hoken .item_wrap .item {
    width: 25%;
  }
}
.index .index_hoken .item_wrap .item p {
  color: #4d99e0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  margin-top: 0.4em;
  letter-spacing: 1px;
}
.index .index_hoken .item_wrap .item .icon {
  border: 5px solid #4d99e0;
  height: 120px;
  border-radius: 14px;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .index .index_hoken .item_wrap .item .icon {
    height: 160px;
  }
}
.index .index_hoken .item_wrap .item .icon span {
  display: block;
  width: 100%;
  height: 100%;
}
.index .index_hoken .item_wrap .item:nth-of-type(1) .icon {
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .index .index_hoken .item_wrap .item:nth-of-type(1) .icon {
    margin-right: 20px;
  }
}
.index .index_hoken .item_wrap .item:nth-of-type(1) .icon span {
  background: url(../img/hoken_01.svg) no-repeat center center/contain;
}
.index .index_hoken .item_wrap .item:nth-of-type(2) .icon {
  margin-left: 10px;
}
@media screen and (min-width: 768px) {
  .index .index_hoken .item_wrap .item:nth-of-type(2) .icon {
    margin-right: 20px;
    margin-left: 0;
  }
}
.index .index_hoken .item_wrap .item:nth-of-type(2) .icon span {
  background: url(../img/hoken_02.svg) no-repeat center center/contain;
}
.index .index_hoken .item_wrap .item:nth-of-type(3) .icon {
  margin-right: 10px;
}
@media screen and (min-width: 768px) {
  .index .index_hoken .item_wrap .item:nth-of-type(3) .icon {
    margin-right: 20px;
  }
}
.index .index_hoken .item_wrap .item:nth-of-type(3) .icon span {
  background: url(../img/hoken_03.svg) no-repeat center center/contain;
}
.index .index_hoken .item_wrap .item:nth-of-type(4) .icon {
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .index .index_hoken .item_wrap .item:nth-of-type(4) .icon {
    margin-left: 0;
  }
}
.index .index_hoken .item_wrap .item:nth-of-type(4) .icon span {
  background: url(../img/hoken_04.svg) no-repeat center center/contain;
}
.index .index_hoken ul {
  border: 5px solid #4d99e0;
  padding: 20px;
  border-radius: 14px;
  max-width: 640px;
  margin: auto;
}
.index .index_hoken ul li {
  color: #4d99e0;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 1.7rem;
  margin-top: 0.4em;
  letter-spacing: 1px;
}
.index .index_hoken ul li::before {
  content: "・";
}
.index .index_hoken .jyuusei {
  margin-top: 60px;
}
.index .index_hoken .jyuusei h3 {
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  background: #258274;
  color: #fff;
  padding: 14px 10px;
}
@media screen and (min-width: 768px) {
  .index .index_hoken .jyuusei h3 {
    font-size: 2.4rem;
    padding: 20px;
    letter-spacing: 1px;
  }
}
.index .index_hoken .jyuusei h3 + p {
  margin: 60px auto 20px auto;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .index .index_hoken .jyuusei h3 + p {
    font-size: 1.8rme;
  }
}
.index .index_hoken .jyuusei h3 + p span {
  position: relative;
}
.index .index_hoken .jyuusei h3 + p span::after {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  top: 12px;
  right: -28px;
  background: #333333;
}
.index .index_hoken .jyuusei h3 + p span::before {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  top: 12px;
  left: -28px;
  background: #333333;
}
.index {
  /* index_hoken */
}
@media screen and (min-width: 1025px) {
  .index .index_company .flex_ctr {
    display: flex;
    align-items: stretch;
    height: 100%;
  }
}
.index .index_company .flex_ctr .image {
  width: 100%;
  height: 240px;
  background: url(../img/company.webp) no-repeat left center/cover;
}
@media screen and (min-width: 1025px) {
  .index .index_company .flex_ctr .image {
    width: 50%;
    height: auto;
  }
}
.index .index_company .flex_ctr .detail {
  background: #fff;
  padding: 40px 20px;
}
@media screen and (min-width: 1025px) {
  .index .index_company .flex_ctr .detail {
    width: 50%;
  }
}
.index .index_company .flex_ctr .detail dl {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 1025px) {
  .index .index_company .flex_ctr .detail dl {
    display: flex;
  }
}
.index .index_company .flex_ctr .detail dl:last-of-type {
  border: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.index .index_company .flex_ctr .detail dl dt {
  font-weight: 700;
}
@media screen and (min-width: 1025px) {
  .index .index_company .flex_ctr .detail dl dt {
    width: 9em;
    padding-left: 1em;
  }
}
.index .index_company .gmap {
  width: 100%;
  height: 80vw;
  max-height: 280px;
  margin: 60px auto;
}
@media screen and (min-width: 768px) {
  .index .index_company .gmap {
    max-height: 400px;
  }
}
@media screen and (min-width: 1025px) {
  .index .index_company .gmap {
    max-height: 480px;
    margin: 100px auto;
  }
}
.index {
  /* index_contact */
}
.index .index_contact .ttl_1 + p {
  text-align: center;
  max-width: 440px;
  margin: 20px auto;
}
.index .index_contact .ttl {
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 700;
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  .index .index_contact .ttl {
    font-size: 2rem;
  }
}
.index .index_contact .ttl span {
  position: relative;
}
.index .index_contact .ttl span::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 20px;
  background: url(../img/icon_tel.svg) no-repeat center center/contain;
  position: absolute;
  left: -30px;
  top: 2px;
}
.index .index_contact .tel_wrap {
  padding: 40px 20px;
  background: #fff;
  margin: 40px auto 80px auto;
  max-width: 440px;
}
.index .index_contact .tel_wrap a {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #4d99e0;
  text-align: center;
  font-size: 3.4rem;
  font-weight: 900;
  display: block;
  margin: 20px auto;
}
@media screen and (min-width: 768px) {
  .index .index_contact .tel_wrap a {
    font-size: 4rem;
  }
}
.index .index_contact .tel_wrap dl {
  display: flex;
  justify-content: center;
}
.index .index_contact .tel_wrap dl dt {
  margin-right: 1em;
}
.index .index_contact .mail_wrap {
  width: 100%;
  max-width: 440px;
  margin: 0 auto 0 auto;
}
.index .index_contact .mail_wrap .ttl span::before {
  width: 20px;
  height: 20px;
  background: url(../img/icon_mail.svg) no-repeat center center/contain;
  position: absolute;
  left: -30px;
  top: 2px;
}
.index .index_contact .mail_wrap input {
  width: 100%;
  border: 1px solid #ccc;
  height: 30px;
}
.index .index_contact .mail_wrap textarea {
  width: 100%;
}
.index .index_contact .mail_wrap dl {
  margin-bottom: 30px;
}
.index .index_contact .mail_wrap dl dt {
  font-weight: 700;
}
.index .index_contact .mail_wrap dl dt p {
  margin-bottom: 8px;
}
.index .index_contact .mail_wrap dl dt.req p {
  margin-bottom: 8px;
  display: inline-block;
  position: relative;
}
.index .index_contact .mail_wrap dl dt.req p::after {
  content: "必須";
  font-size: 1.2rem;
  background: #e56767;
  padding: 1px 6px;
  border-radius: 2px;
  color: #fff;
  margin-left: 0.6em;
}
.index .index_contact .mail_wrap .privacy h4 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.8rem;
}
.index .index_contact .mail_wrap .privacy .wrap {
  border: 1px solid #ccc;
  background: #fff;
  padding: 10px;
  width: 100%;
  height: 200px;
  overflow-y: scroll;
}
.index .index_contact .mail_wrap .privacy .wrap h5 {
  margin-bottom: 0.4em;
}
.index .index_contact .mail_wrap .wpcf7-checkbox label {
  display: flex;
  margin: 20px auto;
}
.index .index_contact .mail_wrap .wpcf7-checkbox label input {
  width: 20px;
  height: 20px;
  margin-right: 14px;
}
.index .index_contact .mail_wrap .wpcf7-submit {
  background: #4d99e0;
  border: 0;
  color: #fff;
  font-weight: 700;
  max-width: 240px;
  font-size: 1.8rem;
  height: 40px;
  margin: 0 auto;
  display: block;
}

/* idnex end */
/* -----------------------------------*/
/*              sub　common   　　    */
/* -----------------------------------*//*# sourceMappingURL=style.css.map */