@charset "UTF-8";
/* ===========================================================

    Reset CSS

============================================================ */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1.2;
}

* {
  box-sizing: border-box;
}

/*th, h1, h2, h3, h4, h5, h6 {font-family: "ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro W6","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro W3";}*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* ----------------------------------------------------------
    base
------------------------------------------------------------ */
body, html {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  height: 100%;
  line-height: 1.5;
  width: 100%;
}

a {
  text-decoration: none;
}

a > img {
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
}
a > img:hover {
  opacity: 0.7;
}

/* ----------------------------------------------------------
    header
------------------------------------------------------------ */
header {
  position: fixed;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 132px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  padding: 0 50px;
  background: transparent;
  transition: 0.4s all;
}
header.bgOn {
  height: 88px;
  background: #0c2f42;
}
header .headerLogo img {
  width: 314px;
}
header .header_content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
header .header_contentLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 52px;
  background: #e7233b;
  border: 1px solid #e7233b;
  border-radius: 5px;
  color: #fff;
  font-family: "poppins", sans-serif;
  font-weight: bold;
  font-size: 20px;
  transition: 0.4s all;
}
header .header_contentLink:hover {
  background: #fff;
  color: #e7233b;
}
header .header_contentLink.download {
  background: #4eaca9;
  border: 1px solid #4eaca9;
}
header .header_contentLink.download:hover {
  background: #fff;
  color: #4eaca9;
}
header .headerNavBtn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  position: relative;
  z-index: 9999;
}
header .headerNavBtnTxt {
  font-size: 14px;
  color: #fff;
}
header .headerNavBtnLine {
  display: block;
  width: 26px;
  height: 15px;
  position: relative;
}
header .headerNavBtnLine span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.5s;
}
header .headerNavBtnLine span:nth-of-type(1) {
  top: 0;
}
header .headerNavBtnLine span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
header .headerNavBtnLine span:nth-of-type(3) {
  bottom: 0;
}
header .headerNavBtn.active .headerNavBtnTxt {
  color: #014190;
}
header .headerNavBtn.active span:nth-of-type(1) {
  background: #014190;
  transform: translateY(7px) rotate(-30deg);
}
header .headerNavBtn.active span:nth-of-type(2) {
  opacity: 0;
}
header .headerNavBtn.active span:nth-of-type(3) {
  background: #014190;
  transform: translateY(-7px) rotate(30deg);
}
header .headerNav nav {
  height: 100%;
  padding: 100px 40px 0;
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  transform: translate(100%);
  transition: all 0.5s;
}
header .headerNav nav.open {
  transform: translateZ(0);
}
header .headerNavLink {
  display: block;
}
header .headerNavLink:nth-child(n+2) {
  margin-top: 30px;
}
header .headerNavLinkMain {
  font-size: 40px;
  font-family: "poppins", sans-serif;
  font-weight: bold;
  color: #0c2f42;
  line-height: 1;
  transition: 0.4s all;
}
header .headerNavLinkSub {
  font-size: 18px;
  font-weight: bold;
  color: #0c2f42;
  transition: 0.4s all;
}
header .headerNavLinkContact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  width: 340px;
  height: 70px;
  border-radius: 10px;
  background: #e7233b;
  font-size: 30px;
  font-weight: bold;
  font-family: "poppins", sans-serif;
  color: #fff;
  border: 1px solid #e7233b;
  transition: 0.4s all;
}
header .headerNavLinkContact:hover {
  background: #fff;
  color: #e7233b;
}
header .headerNavLinkContact.download {
  background: #4eaca9;
  border: 1px solid #4eaca9;
}
header .headerNavLinkContact.download:hover {
  background: #fff;
  color: #4eaca9;
}
header .headerNavLinkContact + .headerNavLinkContact {
  margin-top: 25px;
}

/* ----------------------------------------------------------
    main
------------------------------------------------------------ */
main {
  display: block;
  position: relative;
}

/* ----------------------------------------------------------
    header レスポンシブ
------------------------------------------------------------ */
@media screen and (max-width: 640px) {
  header {
    height: 70px;
    padding: 0 20px;
  }
  header.bgOn {
    height: 47px;
  }
  header .headerLogo img {
    width: 203px;
  }
  header .header_contentLink {
    display: none;
  }
  header .headerNavBtnTxt {
    display: none;
  }
  header .headerNavBtnLine {
    width: 17px;
    height: 10px;
  }
  header .headerNavBtnLine span {
    height: 1px;
  }
  header .headerNavBtn.active span:nth-of-type(1) {
    transform: translateY(5px) rotate(-30deg);
  }
  header .headerNavBtn.active span:nth-of-type(3) {
    transform: translateY(-4px) rotate(30deg);
  }
  header .headerNav nav {
    padding: 50px 20px 0;
  }
  header .headerNavLink:nth-child(n+2) {
    margin-top: 20px;
  }
  header .headerNavLinkMain {
    font-size: 20px;
  }
  header .headerNavLinkSub {
    font-size: 13px;
  }
  header .headerNavLinkContact {
    margin-top: 30px;
    width: 100%;
    height: 50px;
    font-size: 19px;
  }
}
.contactArea {
  /* background: #0c2f42; */
}
.contactArea_box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.contactArea_inner {
  background: #0c2f42;
  padding: 160px 50px 120px;
  position: relative;
  width: 50%;
  transition: all 0.4s;
}
.contactArea_inner + .contactArea_inner {
  border-left: 1px solid #fff;
}
.contactArea_inner:hover {
  background: rgba(12, 47, 66, 0.8);
}
.contactArea_inner:hover .contactArea_link {
  right: 40px;
}
.contactArea_h2 {
  color: #fff;
  text-align: left;
  font-size: 80px;
  font-family: "Poppins", serif;
  text-align: left;
  line-height: 1;
  margin-bottom: 50px;
}
.contactArea_h2 span {
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}
.contactArea_txt {
  color: #fff;
  font-size: 22px;
  line-height: 1.7;
}
.contactArea_link {
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  width: 84px;
  height: 84px;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: 0.4s all;
}
.contactArea_link:before, .contactArea_link:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.4s all;
}
.contactArea_link:before {
  width: 20px;
  height: 2px;
  background: #fff;
}
.contactArea_link:after {
  width: 12px;
  height: 12px;
  left: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(45deg);
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
.contactArea_wrap {
  background: #0c2f42;
  border-top: 1px solid #a0abb1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 50px;
}
.contactArea_wrap p {
  font-size: 20px;
  color: #fff;
}
.contactArea_wrap p.telTxt {
  font-size: 34px;
  font-weight: bold;
  font-family: "poppins", sans-serif;
}
.contactArea_foot {
  background: #0c2f42;
  border-top: 1px solid #a0abb1;
  padding: 70px 50px;
  display: flex;
  justify-content: space-between;
}
.contactArea_foot .copyright {
  color: #fff;
  font-size: 18px;
}
.contactArea_logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
.contactArea_logo img {
  width: 375px;
}
.contactArea_logo a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: 0.4s all;
}
.contactArea_logo a.privacyLink {
  font-family: "poppins", sans-serif;
}
.contactArea_logo a:hover {
  opacity: 0.8;
}

.scrollContactBtn {
  position: absolute;
  right: 40px;
  bottom: -125px;
  z-index: 99;
}
.scrollContactBtn.btnFixed {
  position: fixed;
  bottom: 50px;
}
.scrollContactBtn.btnHidden {
  display: none;
}
.scrollContactBtnLink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  position: relative;
  transition: 0.4s all;
}
.scrollContactBtnLink:before {
  content: url("../svg/circle_text.svg");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: textCircle 10s linear infinite;
}
.scrollContactBtnLinkInner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background: #e7233b;
  border: 1px solid #e7233b;
  border-radius: 100%;
  text-align: center;
  font-size: 30px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  transition: 0.4s all;
}
.scrollContactBtnLink:hover .scrollContactBtnLinkInner {
  background-color: #fff;
  color: #e7233b;
}

@media screen and (max-width: 640px) {
  .contactArea_h2 {
    margin-bottom: 20px;
    font-size: 44px;
  }
  .contactArea_h2 span {
    font-size: 19px;
  }
  .contactArea_box {
    flex-wrap: wrap;
    padding: 0;
  }
  .contactArea_inner {
    position: relative;
    width: 100%;
    padding: 30px 20px;
  }
  .contactArea_inner + .contactArea_inner {
    border-left: none;
    border-top: solid 1px #fff;
  }
  .contactArea_txt {
    font-size: 15px;
  }
  .contactArea_link {
    position: absolute;
    display: inline-block;
    top: 40px;
    right: 20px;
    transform: translateY(0);
    width: 50px;
    height: 50px;
    border-width: 1px;
  }
  .contactArea_link:before {
    width: 20px;
    height: 1px;
  }
  .contactArea_link:after {
    width: 12px;
    height: 12px;
    border-width: 1px;
  }
  .contactArea_wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .contactArea_wrap p {
    font-size: 14px;
  }
  .contactArea_wrap p.telTxt {
    font-size: 21px;
    margin-bottom: 15px;
  }
  .contactArea_foot {
    flex-direction: column;
    padding: 30px 20px 35px;
  }
  .contactArea_foot .copyright {
    font-size: 13px;
    margin-top: 30px;
  }
  .contactArea_logo img {
    display: none;
  }
  .contactArea_logo a {
    font-size: 14px;
  }
  .scrollContactBtn {
    bottom: 10%;
    right: calc(50% - 80px);
  }
  .scrollContactBtn.btnFixed {
    bottom: 10px;
    right: 10px;
  }
  .scrollContactBtnLink {
    width: 160px;
    height: 160px;
  }
  .scrollContactBtnLinkInner {
    width: 130px;
    height: 130px;
    font-size: 19px;
  }
}