@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.1rem;
}

.Century {
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

a:hover {
  opacity: 0.5;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.wide_only {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.blue {
  color: #00145e;
}

.white {
  color: #ffffff;
}

.aline_right {
  text-align: right;
}

.fadeInUpTrigger {
  opacity: 0;
}

.ft_24 {
  font-size: 2.4rem;
}

/* header */
header {
  width: 100%;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.header_inner {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 2vw
}

.header_inner .logo {
  width: 200px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #00145e;
}

.nav_wrap nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffff;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}

.nav_wrap.show {
  right: 0;
}

.nav_wrap nav .sp_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap nav .sp_nav li {
  border-bottom: 1px solid #ffffff;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 60px;
  height: 60px;
  z-index: 999;
  margin-right: 16px;
  background-color: #00145e;
  margin: 0;
  top: 0;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 15px;
  height: 1px;
  background: #fff;
  width: 30px;
  top: 30px;
}

.ham_btn span:nth-of-type(1) {
  top: 20px;
}

.ham_btn span:nth-of-type(2) {
  top: 40px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 23px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 35px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
}

/* MV */
.MV {
  position: relative;
}

.MV_slide {
  margin-inline: auto;
  overflow: hidden;
}

.slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.MV_text {
  position: absolute;
  text-align: justify;
  top: 40%;
  padding: 0 6vw;
  z-index: 20;
  font-size: 6vw;
  color: #ffffff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}

/* 共通 */
section {
  position: relative;
  padding: 100px 0 120px;
}

.section_inner {
  padding: 0 6vw;
}

.section_ttl h2 {
  font-size: 4.0rem;
  margin-bottom: 40px;
  text-align: left;
  position: relative;
  line-height: 1;
  padding-left: 50px;
}

.section_ttl h2::before {
  content: "";
  width: 44px;
  height: 37px;
  background-image: url(../img/deco_01@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contentInner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  text-align: justify;
  margin: 60px auto;
  width: 100%;
}

.content_item h3 {
  font-size: 3.0rem;
}

.more a {
  display: block;
  width: 80%;
  max-width: 247px;
  margin: 40px auto;
  height: 50px;
  border-radius: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00145e;
  font-size: 2.0rem;
  padding-right: 8rem;
}

.more a::after {
  content: "";
  width: 75px;
  height: 8px;
  background-image: url(../img/arrow@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 40%;
  right: 14px;
  z-index: 10;
}

.more a:hover {
  opacity: 1;
}

.more a::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  transition: background-color 0.3s;
  top: 0;
  left: 0;
  transition: 1s all;
}

.more a:hover::before {
  background-color: rgba(255, 255, 255, 0.5);
}

.section_ttl--deco {
  position: absolute;
}

#top_01 .content_item:nth-of-type(2) h3 {
  font-size: 2.4rem;
}

#top_01 .content_item a {
  opacity: 1;
}

#top_01 .content_item a::before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#top_01 .content_item--img {
  overflow: hidden;
  position: relative;
}

#top_01 .content_item--img img {
  transition: 1s all;
}

#top_01 .content_item--img img:hover {
  transform: scale(1.1, 1.1);
  transition: 1s all;
  opacity: 0.5;
}

#top_01 .section_ttl--deco {
  bottom: 60px;
}

#top_02 {
  background-image: url(../img/sp_top02_bg@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 160px 0 100px;
}

#top_02::after {
  content: "";
  height: calc(100% - 12vw);
  width: calc(100% - 12vw);
  border: 1px solid #ffffff;
  position: absolute;
  top: 6vw;
  left: 6vw;
  z-index: 1;
}

#top_02 .section_inner {
  position: relative;
  z-index: 10;
}

#top_02 h2 {
  padding: 0;
  text-align: center;
}

#top_02 .section_ttl h2::before {
  display: none;
}

#top_02 .content_lead {
  padding-bottom: 80px;
}

#top_03 {
  padding: 120px 0;
}

#top_03 .section_lead {
  padding: 40px 0 0;
  text-align: justify;
}

#top_03 .contentInner {
  gap: 30px;
  margin-bottom: 80px;
}

#top_04 .contentInner {
  gap: 20px;
}

dl {
  width: 100%;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
  font-weight: 700;
  color: #333333;
}

dt,
dd {
  padding: 20px 8px 16px;
  border-bottom: 1px solid #333333;
  line-height: 1.8;
}

#top_04 .section_ttl--deco {
  width: 80%;
  bottom: 5%;
}

#contact {
  background-color: #fdf6e6;
  padding-bottom: 0;
}

#contact .section_inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 0;
  padding: 0;
}

#contact h2 {
  text-align: center;
  display: inline-block
}

#contact .contact_inner {
  padding: 0 6vw;
}

#contact .section_lead {
  line-height: 2.2;
  text-align: left;
  display: inline-block;
  margin: 40px auto 20px;
}

.contact_btn--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin: 60px auto 100px;
}

.contact_btn a {
  width: 312px;
  height: 64px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00145e;
  font-size: 3.0rem;
  position: relative;
}

.contact_btn a:hover {
  opacity: 1;
}

.contact_btn a::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  transition: background-color 0.3s;
  transition: 1s all;
}

.contact_btn a:hover::after {
  background-color: rgba(255, 255, 255, 0.5);
}

.contact_btn p {
  padding-left: 4rem;
}

.contact_btn::before {
  content: "";
  position: absolute;
  left: 27px;
  height: 33px;
  width: 33px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.contact_btn.tel::before {
  background-image: url(../img/tel_w@2x.png);
  z-index: 10;
}

.contact_btn.mail::before {
  background-image: url(../img/mail_w@2x.png);
  height: 20px;
  width: 28px;
  left: 40px;
  z-index: 10;
}

.contact_btn.chat::before {
  background-image: url(../img/chat@2x.png);
  height: 39px;
  width: 46px;
  left: 40px;
  z-index: 10;
}

#contact .map {
  display: block;
  width: 100%;
}

#contact .map iframe {
  display: block;
  width: 100%;
  height: 500px;
}

footer {
  color: #333333;
}

.footer_inner {
  background-image: url(../img/footer_bg@2x.png);
  background-size: cover;
  padding: 40px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 10;
}

.footer_item01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0 auto;
  font-size: 1.6rem;
  max-width: 480px;
  position: relative;
  z-index: 10;
}

.footer_logo {
  width: 60%;
  margin: 0 auto;
}

.footer_item02 {
  margin: 0 auto;
  font-size: 1.6rem;
  width: 100%;
  max-width: 390px;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.footer_FB a {
  width: 40px;
  margin: 0 auto 20px;
  display: inline-block;
}

.footer_FB a img {
  width: 19px;
}

.footer_nav li {
  margin-bottom: 14px;
  text-align: left;
}

.footer_nav li a {
  color: #00145e;
  font-size: 1.6rem;
}

.footer_nav li a span {
  display: block;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 900;
}

.footer_deco {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.cr {
  padding: 10px 0;
  background-color: #00145e;
  color: #ffffff;
  text-align: center;
}

#go_top {
  width: 47px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  header {
    width: 100%;
    height: 130px;
  }

  header a {
    color: #00145e;
  }

  .header_inner {
    height: 100%;
    padding: 0 2vw;
  }

  .header_left {
    width: calc(100% - 600px);
    max-width: 310px;
  }

  .header_inner .logo {
    width: 420px;
  }

  .header_right {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: calc(100% - 200px);
    max-width: 860px;
    height: 100%;
    background: none;
    align-items: flex-end;
    min-width: 680px;
    font-weight: 700;
  }

  .header_btnWrap {
    display: flex;
    gap: 100px;
    align-items: center;
  }

  .header_tel {
    position: relative;
    padding-right: 10px;
  }

  header .tel a {
    color: #00145e;
    font-size: 4.0rem;
  }

  .header_tel a::before {
    content: "";
    position: absolute;
    background-image: url(../img/tel@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 24px;
    left: -18%;
    top: 50%;
    transform: translateY(-50%);
  }

  .header_right nav {
    width: 100%;
  }

  .header_right nav ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding-bottom: 0px;
  }

  .header_right nav ul li {
    padding: 0 0px 4px;
    display: flex;
    justify-content: space-between;
    width: calc(100% / 6);
    position: relative;
    height: 100%;
  }

  .header_right nav ul li a {
    width: 100%;
    color: #00145e;
    font-size: 1.6rem;
    letter-spacing: 0.01rem;
    line-height: 1.3;
  }

  .header_right nav ul li a::after {
    content: "";
    width: 50%;
    height: 2px;
    background-color: #00145e;
    position: absolute;
    left: 25%;
    bottom: 0px;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: left top;
  }

  .header_right nav ul li a:hover {
    opacity: 1;
  }

  .header_right nav ul li a:hover::after {
    transform: scale(1, 1);
  }

  .MV_text {
    font-size: 6.0rem;
    line-height: 1.5;
    padding: 0;
    left: 10%;
  }

  section {
    padding: 160px 6vw 160px;
  }

  .section_inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
  }

  .section_ttl h2 {
    font-size: 5.0rem;
  }

  .section_lead {
    padding: 0;
    text-align: center;
  }

  .contentInner {
    flex-direction: row;
    max-width: 1440px;
    margin: 0px auto 60px;
    gap: 60px;
  }

  .section_ttl--deco {
    position: absolute;
    width: 100%;
    left: 0;
  }

  #top_01 .content_item {
    width: calc((100% - 60px) / 2);
  }

  #top_01 .content_item--text {
    padding: 20px 30px;
  }

  #top_02 {
    background-image: url(../img/top02_bg@2x.png);
    padding: 200px 0 100px;
    background-position: top right;
  }

  #top_02::after {
    content: "";
    height: calc(100% - 100px);
    width: calc(100% - 100px);
    border: 1px solid #ffffff;
    position: absolute;
    top: 50px;
    left: 50px;
    z-index: 1;
  }

  #top_03 {
    padding: 160px 6vw 160px;
  }

  #top_03 .section_lead {
    max-width: 1280px;
    margin: 0 auto;
  }

  #top_03 .contentInner {
    margin: 100px 0;
  }

  #top_04 .section_ttl--deco {
    width: 55%;
    top: 50%;
    transform: translateY(-40%);
    bottom: auto;
  }

  #top_04 .contentInner {
    flex-direction: row-reverse;
    gap: 20px;
    max-width: 1280px;
    margin: 100px auto;
    justify-content: space-between;
    align-items: center;
  }

  dl {
    max-width: 500px;
    margin: 0;
  }

  .description-item {
    display: flex;
  }

  dt,
  dd {
    padding: 24px 8px 20px;
    line-height: 1.8;
  }

  dt {
    width: 100px;
  }

  dd {
    width: calc(100% - 100px);
  }

  #contact {
    padding: 0;
  }

  #contact .section_inner {
    max-width: none;
    flex-direction: row;
  }

  #contact .map iframe {
    height: 100%;
  }

  #contact .contact_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px;
    width: 100%;
  }

  #contact .section_lead {
    margin-bottom: 0;
  }

  .contact_btn--wrap {
    flex-direction: row;
    justify-content: space-between;
    max-width: 720px;
    gap: 0;
    margin: 80px auto 0;
    padding: 0;
  }

  .contact_btn {
    width: 100%;
    min-width: 390px;
  }

  .footer_inner {
    flex-direction: row;
    gap: 80px;
    justify-content: flex-start;
    padding: 60px 6vw;
  }

  .footer_item01 {
    margin: 0;
    flex-direction: row;
    justify-content: flex-start;
    max-width: 540px;
  }

  .footer_logo {
    max-width: 540px;
    margin: 0;
    width: 100%;
  }

  .footer_item02 {
    max-width: 800px;
    margin: auto 0 0;
    padding: 0;
    gap: 60px;
  }

  .footer_nav {
    width: 100%;
    margin: auto 0 0;
    min-width: 710px;
  }

  .footer_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0px;
  }

  .footer_nav ul li {
    padding: 0 10px 0px;
    display: flex;
    justify-content: space-around;
    width: calc(100% / 5);
    position: relative;
    text-align: center;
  }

  .footer_deco {
    width: 100%;
  }

  #go_top {
    width: 60px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 900;
  }
}