@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@300;400;500;700&Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap");
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  background-color: #fff;
  height: 100%;
}

html,
body {
  font-size: 62.5%;
  /*10px*/
  height: 100%;
  width: 100%;
}

body {
  font-size: 15px;
  font-family: YakuHanJP, Roboto, "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", arial, helvetica, clean, sans-serif;
  line-height: 1.618;
  /* 黄金比 */
  text-align: left;
  -webkit-font-smoothing: antialiased;
  color: #19181B;
}

p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: #012B75;
  transition: 0.4s;
}

a:hover,
a:focus {
  color: #fc2888;
  text-decoration: none;
  opacity: 0.85;
}

p {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
}
p:last-child {
  margin-bottom: 0;
}

ul, ol {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  padding-left: 22px;
  list-style: outside;
}

dl,
dt {
  margin-top: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin-top: 1em;
}

.brackets,
.brackets_list li {
  padding-left: 1.6em;
  text-indent: -1.6em;
}

.idt,
.idt_list li {
  padding-left: 1em;
  text-indent: -1em;
}

.text-right {
  text-align: right;
}

/* clearfix */
.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* google map レスポンシブ */
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text-center {
  text-align: center;
}

/*------------------------------------------------------------
    全体
------------------------------------------------------------*/
body {
  background: #fff;
  font-weight: 400;
  margin: 0;
}

.wrapper {
  width: 100%;
  position: relative;
}
@media (max-width: 480px) {
  .wrapper {
    padding-top: 53px;
  }
}

.inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .inner {
    width: 100%;
    padding: 0 16px;
  }
}

.w800 {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .w800 {
    width: 100%;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 480px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media (max-width: 480px) {
  .pc_only {
    display: none;
  }
}

/*--------------------------------
    modal
--------------------------------*/
.btn_menu {
  position: relative;
  /* display: none; */
  z-index: 1000;
  cursor: pointer;
  display: none;
}
.btn_menu .humberger {
  position: relative;
  width: 48px;
  height: 48px;
}
.btn_menu .humberger span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 8px;
  height: 3px;
  border-radius: 4px;
  background-color: #012B75;
  width: 28px;
}
.btn_menu .humberger span:nth-of-type(1) {
  top: 16px;
}
.btn_menu .humberger span:nth-of-type(2) {
  top: 24px;
}
.btn_menu .humberger span:nth-of-type(3) {
  top: 32px;
}
.btn_menu .label {
  font-size: 1.6rem;
  font-weight: 700;
}
.btn_menu.active span:nth-of-type(1) {
  top: 16px;
  left: 12px;
  transform: translateY(6px) rotate(-45deg);
  width: 28px;
}
.btn_menu.active span:nth-of-type(2) {
  top: 28px;
  left: 12px;
  transform: translateY(-6px) rotate(45deg);
  width: 28px;
}
.btn_menu.active span:nth-of-type(3) {
  display: none;
}
.btn_menu.active .label {
  display: none;
}
@media (max-width: 980px) {
  .btn_menu {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 50px;
    display: flex;
    align-items: center;
  }
  .btn_menu .humberger span:nth-of-type(3) {
    display: none;
  }
  .btn_menu .label {
    font-size: 1rem;
    position: absolute;
    width: 100%;
    text-align: center;
    left: -3px;
    bottom: 3px;
    color: #012B75;
  }
}

.modal,
.modal2 {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.3);
  transition: all 1s ease-in-out;
  z-index: 200;
}
.modal.panelactive,
.modal2.panelactive {
  display: block;
}

.modal-content {
  /* overflow-y: auto; */
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: scroll;
  background: rgba(255, 255, 255, 0.9);
  animation: show 0.6s linear 0s;
  font-size: 1.6rem;
}
.modal-content .modal-container {
  padding: 8px 16px 32px;
  min-height: 80%;
  color: #19181B;
}
.modal-content .g_nav {
  list-style: none;
  padding: 60px 0 16px;
  margin: 0;
}
.modal-content .g_nav li a {
  list-style: none;
  display: flex;
  padding: 8px 0;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}
.modal-content .g_nav li a:before {
  content: "";
  background: url(../images/icon_arrow_pink.png) center center no-repeat;
  width: 28px;
  height: 28px;
  background-size: 100% auto;
}
.modal-content .sns_nav {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.modal-content .sns_nav li {
  width: 44px;
}

.modal2 {
  z-index: 100000;
}
.modal2 .modal-content {
  opacity: 0;
  transition: opacity 1s ease;
  background: rgba(1, 43, 117, 0.86);
  display: flex;
  padding: 16px;
  box-sizing: border-box;
}
.modal2.panelactive .modal-content {
  opacity: 1;
  transition: opacity 1s ease;
}
.modal2 .humberger {
  width: 48px;
  height: 48px;
  position: absolute;
  right: 8px;
}
.modal2 .humberger span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  right: 8px;
  height: 3px;
  border-radius: 4px;
  background-color: #fff;
  width: 28px;
}
.modal2 .humberger span:nth-of-type(1) {
  top: 16px;
}
.modal2 .humberger span:nth-of-type(2) {
  top: 24px;
}
.modal2 .humberger span:nth-of-type(3) {
  top: 32px;
}
.modal2 .humberger span:nth-of-type(1) {
  top: 16px;
  right: 12px;
  transform: translateY(6px) rotate(-45deg);
  width: 28px;
}
.modal2 .humberger span:nth-of-type(2) {
  top: 28px;
  right: 12px;
  transform: translateY(-6px) rotate(45deg);
  width: 28px;
}
.modal2 .humberger span:nth-of-type(3) {
  display: none;
}

/*--------------------------------
    header
--------------------------------*/
.header {
  padding: 8px 0;
}
.header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.header .logo .logo_image {
  width: 60px;
}
.header .logo .title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #012B75;
}
.header .sns_nav._h {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.header .sns_nav._h li.icon {
  width: 32px;
}
.header .sns_nav._h li.app img {
  height: 32px;
  width: auto;
}
@media (max-width: 980px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0;
    background: #fff;
  }
  .header .logo {
    justify-content: flex-start;
  }
  .header .logo .logo_image {
    width: 40px;
  }
  .header .h_nav {
    display: none;
  }
}

/*--------------------------------
    page_content
--------------------------------*/
.sec_cv {
  text-align: center;
  padding-bottom: 16px;
}
.sec_cv .cv_btn_area {
  padding-bottom: 16px;
}
@media (max-width: 980px) {
  .sec_cv .inner {
    padding: 0 8px;
  }
  .sec_cv .cv_btn_area {
    padding-bottom: 8px;
  }
}

.sns_nav {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  padding-bottom: 16px;
}
.sns_nav .item {
  background: #fff;
}
.sns_nav .item a {
  width: 300px;
  text-decoration: none;
  display: inline-block;
  padding: 12px 0px;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  border: 1px solid #ccc;
}
.sns_nav .item a img {
  display: block;
  width: 40px;
  margin: 0 auto 8px;
}
.sns_nav .item a:hover {
  border: 1px solid #fc2888;
  color: #fc2888;
}
@media (max-width: 980px) {
  .sns_nav {
    padding: 0 0px 8px;
  }
  .sns_nav .item {
    width: calc(50% - 8px);
  }
  .sns_nav .item a {
    width: 100%;
  }
}

.cv_app_area {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 608px;
  margin: auto;
  margin-bottom: 16px;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}
.cv_app_area .original_app {
  width: 60px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  padding: 4px;
}
.cv_app_area .app_title {
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2;
  padding: 0 16px 0 8px;
  color: #012B75;
}
.cv_app_area .app img {
  height: 44px;
}
@media (max-width: 980px) {
  .cv_app_area {
    flex-wrap: wrap;
    width: 100%;
    padding: 0 0px 8px;
    background: #fff;
  }
  .cv_app_area .original_app {
    width: 100%;
    border: none;
    padding-bottom: 0;
    text-align: center;
  }
  .cv_app_area .original_app img {
    width: 72px;
  }
  .cv_app_area .app_title {
    width: 100%;
    font-size: 1.6rem;
  }
  .cv_app_area .app_title br {
    display: none;
  }
}

.cv_btn_area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 24px;
}
.cv_btn_area .btn {
  display: inline-block;
  width: 300px;
  position: relative;
  padding: 24px 0px;
  background: #012B75;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}
.cv_btn_area .btn.inquiry_26 {
  background: #fc2888;
}
.cv_btn_area .btn:after {
  position: absolute;
  top: calc(50% - 10px);
  right: 16px;
  content: "";
  background: url(../images/icon_arrow.png) center center no-repeat;
  width: 20px;
  height: 20px;
  background-size: 100% auto;
}
@media (max-width: 980px) {
  .cv_btn_area {
    gap: 0px;
    padding: 8px 0;
  }
  .cv_btn_area .item {
    width: 100%;
  }
  .cv_btn_area .btn {
    width: 100%;
    font-size: 1.5rem;
    text-indent: -8px;
  }
  .cv_btn_area .btn:after {
    right: 8px;
  }
}

.fixed_bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}
.fixed_bar .inner {
  padding: 0 8px;
}
@media (max-width: 980px) {
  .fixed_bar {
    display: block;
  }
}

.sec_movie {
  background: url(../images/bg_movie.jpg) center center no-repeat;
  background-size: cover;
  padding: 40px 16px 60px;
  text-align: center;
}
.sec_movie .inner {
  max-width: 480px;
}
.sec_movie .sec_title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
  color: #fff;
}
.sec_movie .btn_intro_movie {
  cursor: pointer;
  transition: 0.3s;
}
.sec_movie .btn_intro_movie:hover {
  transform: scale(1.05, 1.05);
}
.sec_movie .youtube {
  aspect-ratio: 16/9;
  margin: auto;
}
@media (max-width: 980px) {
  .sec_movie .youtube {
    width: 100%;
  }
  .sec_movie .youtube iframe {
    width: 100%;
    height: 100%;
  }
}

.sec_policy {
  background: url(../images/bg_policy2.jpg) center center no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.sec_policy .inner {
  max-width: 480px;
}
.sec_policy .sec_title {
  font-size: 3.2rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  margin-bottom: 24px;
  text-align: center;
}
.sec_policy p {
  margin: 16px 0;
  font-size: 1.7rem;
  font-weight: bold;
}

.sec_message {
  background: url(../images/bg_message.jpg) center center no-repeat;
  background-size: cover;
  padding: 180px 0;
  text-align: center;
}
.sec_message .sec_title {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  background: #012B75;
  padding: 4px 16px;
  display: inline-block;
  margin-bottom: 8px;
}
.sec_message .sec_title span {
  color: #fc2888;
}
.sec_message p {
  margin: 16px 0;
  font-size: 1.7rem;
  font-weight: bold;
}
.sec_message p span {
  background: #fff;
  padding: 4px 8px;
}
@media (max-width: 980px) {
  .sec_message {
    padding: 32px 0;
  }
  .sec_message .sec_title {
    font-size: 2.2rem;
    padding: 4px 8px;
    margin-top: 0;
  }
  .sec_message p {
    font-size: 1.6rem;
  }
  .sec_message p span {
    padding: 4px;
  }
}

/*--------------------------------
    page_heading
--------------------------------*/
.page_heading {
  /* background: url(../images/bg_intro.jpg) center center no-repeat; */
  background: #f2f2f2;
  background-size: cover;
  text-align: center;
}
.page_heading .keyvisual {
  max-width: 2560px;
  margin: 0 auto;
}
.page_heading .keyvisual img {
  max-width: none;
  width: 100%;
}
/*--------------------------------
    page_bottom
--------------------------------*/
.page_bottom {
  background: #F4F4F4;
  text-align: center;
}
.page_bottom .cv {
  padding: 40px 16px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.page_bottom .cv .item {
  max-width: 400px;
}
.page_bottom .cv .item .eyecatch {
  margin: 0 0 16px;
}
.page_bottom .cv .btn_box .btn {
  display: inline-block;
  width: 300px;
  position: relative;
  padding: 16px 0px;
  background: #012B75;
  color: #fff;
  border-radius: 48px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1;
}
.page_bottom .cv .btn_box .btn.inquiry_26 {
  background: #fc2888;
}
.page_bottom .cv .btn_box .btn:after {
  position: absolute;
  top: calc(50% - 10px);
  right: 16px;
  content: "";
  background: url(../images/icon_arrow.png) center center no-repeat;
  width: 20px;
  height: 20px;
  background-size: 100% auto;
}
@media (max-width: 980px) {
  .page_bottom .cv {
    padding: 16px;
  }
  .page_bottom .cv .item {
    width: calc(50% - 4px);
  }
  .page_bottom .cv .item .eyecatch {
    margin: 0 0 4px;
  }
  .page_bottom .cv .btn_box .btn {
    display: block;
    width: 100%;
    font-size: 1.2rem;
    border-radius: 0;
    text-indent: -12px;
  }
  .page_bottom .cv .btn_box .btn.inquiry_26 {
    background: #fc2888;
  }
  .page_bottom .cv .btn_box .btn:after {
    position: absolute;
    top: calc(50% - 8px);
    right: 4px;
    width: 16px;
    height: 16px;
  }
}
.page_bottom .sns {
  background: #012B75;
  padding: 40px 16px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.page_bottom .sns .item a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  width: 160px;
  aspect-ratio: 2/1;
  border-radius: 4px;
  overflow: hidden;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
}
.page_bottom .sns .item a .icon {
  width: 32px;
  height: 32px;
}
.page_bottom .sns .cv_app_area {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  width: auto;
  margin: 0;
  padding: 9px;
}
@media (max-width: 480px) {
  .page_bottom .sns {
    flex-wrap: nowrap;
  }
  .page_bottom .sns .item {
    width: calc((100% - 16px) / 3);
  }
  .page_bottom .sns .item a {
    width: 100%;
    font-size: 1rem;
    border-radius: 4px;
  }
  .page_bottom .sns .item a .icon {
    width: 24px;
    height: 24px;
  }
  .page_bottom .sns .cv_app_area {
    width: auto;
  }
}
@media (max-width: 980px) {
  .page_bottom .sns {
    padding: 16px;
    flex-wrap: wrap;
  }
  .page_bottom .sns .cv_app_area {
    width: 100%;
  }
}

/*--------------------------------
    footer
--------------------------------*/
.footer {
  padding-top: 40px;
  text-align: center;
  color: #012B75;
}
.footer .logo {
  width: 148px;
  margin: auto;
}
.footer .title {
  font-weight: bold;
  font-size: 1.6rem;
}
.footer .address {
  font-weight: bold;
  font-style: normal;
  font-size: 1.2rem;
}
.footer .corpyright {
  margin-top: 40px;
  font-weight: bold;
  font-size: 1rem;
}
@media (max-width: 980px) {
  .footer {
    padding-bottom: 88px;
  }
}

/*# sourceMappingURL=style.css.map */
