@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;400;500;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1px;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.8;
}

.body-wrapper {
  position: relative;
  overflow-x: hidden;
}

.sp,
.tb {
  display: none;
}

@media screen and (max-width: 768px) {
  .tb {
    display: block;
  }
  .pc {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .sp {
    display: block;
  }
  .sp-hide {
    display: none;
  }
}

.inner {
  width: 90%;
  max-width: 940px;
  margin: 0 auto;
}

.flex-1 {
  flex: 1;
}

.txt-gradient {
  letter-spacing: 3px;
  background: linear-gradient(180deg, #06568b 0%, #28d9d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* text-fill-color: transparent; */
}

.fw-100 {
  font-weight: 100 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.f-18 {
  font-size: 1.8rem !important;
}

.f-20 {
  font-size: 2rem !important;
}

.f-22 {
  font-size: 2.2rem !important;
}

.f-25 {
  font-size: 2.5rem !important;
}

.f-30 {
  font-size: 3rem !important;
}

.f-35 {
  font-size: 3.5rem !important;
}

.f-40 {
  font-size: 4rem !important;
}

.f-50 {
  font-size: 5rem !important;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem !important;
  }
  .f-15 {
    font-size: 1.3rem !important;
  }
  .f-18 {
    font-size: 1.5rem !important;
  }
  .f-20 {
    font-size: 1.6rem !important;
  }
  .f-22 {
    font-size: 1.8rem !important;
  }
  .f-25 {
    font-size: 2rem !important;
  }
  .f-30 {
    font-size: 2.4rem !important;
  }
  .f-35 {
    font-size: 2.6rem !important;
  }
  .f-40 {
    font-size: 2.8rem !important;
  }
  .f-50 {
    font-size: 3.2rem !important;
  }
}

@media screen and (max-width: 480px) {
  body {
    font-size: 1.3rem !important;
  }
  .f-18 {
    font-size: 1.4rem !important;
  }
  .f-20 {
    font-size: 1.5rem !important;
  }
  .f-22 {
    font-size: 1.6rem !important;
  }
  .f-25 {
    font-size: 1.7rem !important;
  }
  .f-30 {
    font-size: 2rem !important;
  }
  .f-35 {
    font-size: 2.1rem !important;
  }
  .f-40 {
    font-size: 2.2rem !important;
  }
  .f-50 {
    font-size: 2.4rem !important;
  }
}

/********************************************************
************************ Header *************************
********************************************************/

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 3;
}

header .inner {
  height: 56px;
}

.header-logo a {
  display: block;
  line-height: 0;
}
.header-logo a img {
  height: 2.5rem;
}

header nav ul li {
  margin-left: 40px;
  letter-spacing: 1.6px;
}

/***** SP Toggle Menu Btn  *****/

.hambuger {
  position: absolute;
  right: 0;
  top: 50%;
  width: 60px;
  height: 60px;
  padding: 15px 10px;
  background: #00a0e9;
  transform: translateY(-50%);
  z-index: 50;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.menu-trigger {
  position: relative;
  width: 40px;
  height: 30px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 3px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.menu-trigger span:nth-of-type(1) {
  top: 4px;
  -webkit-animation: menu-bar01 0.75s forwards;
  animation: menu-bar01 0.75s forwards;
}

.menu-trigger span:nth-of-type(2) {
  top: 14px;
  -webkit-transition: all 0.25s 0.25s;
  transition: all 0.25s 0.25s;
  opacity: 1;
}

.menu-trigger span:nth-of-type(3) {
  top: 24px;
  -webkit-animation: menu-bar02 0.75s forwards;
  animation: menu-bar02 0.75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
    transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
    transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
  animation: active-menu-bar01 0.75s forwards;
}

@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
  }
}

@keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
    transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }
}

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

.menu-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 0.75s forwards;
  animation: active-menu-bar03 0.75s forwards;
}

@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
  }
}

@keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
    transform: translateY(-10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
}

@media screen and (max-width: 768px) {
  .menu-trigger {
    display: block;
  }
  header nav {
    position: fixed;
    left: 100vw;
    top: 0;
    width: 100vw;
    height: 100vh;
    padding: 15vh 10vw;
    background: #fff;
    z-index: 10;
    transition: all 0.4s ease;
    overflow-y: scroll;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
  header nav.active {
    left: 0;
  }
  header nav ul li {
    width: 100%;
    margin: 10px 0 !important;
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid #221815;
    border-left: none;
  }
  header nav ul li:last-child {
    border-bottom: none;
  }
}

/********************************************************
************************ Footer *************************
********************************************************/

footer {
  position: relative;
  padding: 25px 0;
  background-color: #fff;
}

.footer-link {
  text-decoration: underline;
}

.copyright {
  text-align: right;
  font-size: 1.4rem;
  color: #888888;
  text-transform: uppercase;
}

@media screen and (max-width: 480px) {
  .footer-logo {
    width: 100%;
    margin-bottom: 15px;
    text-align: center;
  }
  .footer-link {
    display: block;
    width: 100%;
    text-align: center;
  }
  .copyright {
    text-align: center;
  }
}

/*************** TOP *****************/

@media screen and (min-width: 769px) {
  main {
    position: relative;
    margin-top: 656px;
  }

  .top {
    height: 100%;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-image: url("../img/mv.jpg");
  }
}

@media screen and (max-width: 768px) {
  main {
    position: relative;
    margin-top: 256px;
  }
}

.top main {
  background: rgba(6, 86, 139, 0.08);
  height: 100%;
}

.top main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-size: 100% auto;
  opacity: 0.15;
}

.mv-txt {
  position: absolute;
  left: 0;
  bottom: -135px;
  width: calc(50% + 100px);
  padding: 50px 15px 65px;
  line-height: 2.75;
  letter-spacing: 0;
  background: rgba(255, 255, 255, 0.7);
}

.mv-txt__cont {
  max-width: 555px;
  margin-left: auto;
}

.mv-txt h1 {
  font-size: 7.6rem;
  line-height: 1.05;
}

@media screen and (max-width: 768px) {
  .mv-txt {
    position: relative;
    bottom: 0;
    width: 100%;
    max-width: 585px;
    margin-top: -17vw;
    padding: 30px 5%;
  }
  .mv-txt h1 {
    font-size: 8vw;
  }
}

.sec-concept {
  padding-top: 80px;
}

.concept-cont {
  position: relative;
  width: calc(50% + 160px);
  margin-left: auto;
  padding: 40px 45px 60px;
  color: #fff;
  background: rgba(40, 217, 214, 0.75);
}

.concept-cont * {
  max-width: 585px;
  line-height: 2.25;
  letter-spacing: 0;
}

.concept-cont h2 {
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .sec-concept {
    padding-top: 0;
  }
  .concept-cont {
    width: 100%;
    max-width: 530px;
  }
}

@media screen and (max-width: 480px) {
  .concept-cont {
    padding: 40px 5%;
  }
}

.sec-ttl {
  font-size: 6.2rem;
  line-height: 0.9;
}

.sec-sub-ttl {
  position: relative;
  padding-left: 60px;
}

.sec-sub-ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 44px;
  height: 1px;
  background: #06568b;
}

.sec-service {
  margin-top: -25px;
}

.service-list li:nth-child(2n) {
  flex-direction: row-reverse;
}

.service-list__cont {
  width: 52.12%;
}

.service-list__cont h3 {
  letter-spacing: 3px;
}

.service-list li:nth-child(2n) .service-list__cont-btn {
  text-align: left;
}

.service-list__cont-btn a {
  display: inline-block;
  width: 100%;
  max-width: 365px;
  text-align: center;
  line-height: 68px;
  border-radius: 34px;
  background: url(../img/btn-border.png) no-repeat center / contain;
  transition: all 0.3s ease-out;
}

.service-list__cont-btn a:hover {
  background: linear-gradient(to bottom, #06568b, #2dc2c0);
  color: #fff;
  transition: all 0.3s ease-out;
}

.service-list li figure {
  flex: 1;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec-service {
    margin-top: 50px;
  }
  .service-list__cont {
    width: 100%;
    margin-bottom: 20px;
  }
  .service-list li figure {
    flex: none;
    width: 100%;
  }
  .service-list__cont-btn {
    text-align: center !important;
  }
}

@media screen and (max-width: 480px) {
  .sec-ttl {
    font-size: 4rem;
  }
  .sec-sub-ttl {
    padding-left: 40px;
  }
  .sec-sub-ttl::before {
    width: 25px;
  }
}

.news-list li {
  padding: 50px 0 35px;
  border-bottom: 1px solid #06568b;
}

.news-list__meta {
  position: relative;
  margin-bottom: 10px;
  padding-left: 50px;
  font-size: 1.3rem;
}

.news-list__meta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 36px;
  height: 1px;
  background: #8b8b8b;
}

.news-list__meta-date {
  margin-right: 18px;
  color: #888888;
}

.news-list__meta-cat {
  color: #2dc2c0;
}

.news-list li a {
  display: block;
}

@media screen and (max-width: 480px) {
  .news-list li {
    padding: 30px 0 20px;
  }
  .news-list__meta {
    padding-left: 35px;
  }
  .news-list__meta::before {
    width: 20px;
  }
}

.sec-about h2 {
  margin-bottom: 40px;
}

.sec-about__item {
  width: calc(70% + 12px);
  padding: 55px 50px 65px;
  background: rgba(255, 255, 255, 0.8);
}

.sec-about__item--right {
  margin-top: 160px;
  margin-left: -24px;
}

.about-cont {
  max-width: 432px;
  margin: auto;
}

.sec-about__item--right .about-cont {
  margin-left: 0;
}

.about-info {
  display: flex;
  flex-wrap: wrap;
}

.about-info dt,
.about-info dd {
  padding: 20px 0;
  line-height: 1.75;
  border-bottom: 1px solid #06568b;
}

.about-info dt {
  width: 140px;
  border-bottom: 1px solid #06568b;
}

.about-info dd {
  width: calc(100% - 140px);
}

@media screen and (max-width: 768px) {
  .sec-about__item {
    width: 100%;
  }
  .sec-about__item--right {
    margin-left: 0;
    margin-top: 40px;
  }
  .about-cont {
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 480px) {
  .sec-about h2 {
    margin-bottom: 20px;
  }
  .sec-about__item {
    padding: 40px 5%;
  }
  .about-info dt {
    width: 90px;
  }
  .about-info dd {
    width: calc(100% - 90px);
  }
}

.sec-contact {
  color: #fff;
  background: rgba(6, 86, 139, 0.88);
}

.sec-contact__ttl {
  width: 47%;
  letter-spacing: 1.8px;
}

.sec-contact__ttl h2 {
  letter-spacing: 3.6px;
}

.sec-contact__cont {
  width: 51%;
}

.sec-contact__cont form ul li {
  display: flex;
  flex-wrap: wrap;
  padding: 14px 15px;
  border-bottom: 1px solid #fff;
}

.sec-contact__cont form ul li label {
  width: 170px;
}

.sec-contact__cont form ul li p {
  flex: 1;
}

.sec-contact__cont form input[type="text"],
.sec-contact__cont form input[type="tel"],
.sec-contact__cont form input[type="email"] {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  background: transparent;
  border: 0px solid #fff;
  box-sizing: border-box;
}

::placeholder {
  color: #aaa;
}

.sec-contact__cont form textarea {
  padding: 15px;
  background: transparent;
  border: 0px solid #fff;
  box-sizing: border-box;
}

.sec-contact__cont button[type="button"] {
  display: block;
  width: 100%;
  max-width: 365px;
  height: 68px;
  margin: 30px auto 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 40px;
  transition: all 0.1s ease-out;
}

.sec-contact__cont button[type="button"]:hover {
  background: #fff;
  color: rgba(6, 86, 139);
  transition: all 0.1s ease-out;
}

.sec-contact__cont form a {
  text-decoration: underline;
}

.sec-contact__cont .msg.success {
  color: #ff0;
}

.sec-contact__cont .msg.error {
  color: red;
}

.sec-contact__cont .msg.success {
  border: 3px solid #b2b5ff;
  background-color: #3521634d;
  margin: 0.5rem 0;
  padding: 0.5rem;
  transition: all 0.2s ease-out;
  text-align: center;
}

.sec-contact__cont .msg.error {
  border: 3px solid #ff7b7b;
  background-color: #6321214d;
  color: red;
  margin: 0.5rem 0;
  padding: 0.5rem;
  transition: all 0.2s ease-out;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .sec-contact__ttl {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
  .sec-contact__cont {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .sec-contact__cont form ul li {
    padding: 15px 0;
  }
  .sec-contact__cont form ul li p {
    flex: none;
    width: 100%;
    margin-top: 10px;
  }
}

/*************** Privacy Policy *****************/
.privacy-mv h1 {
  line-height: 1.35;
}

.privacy-cont {
  background: rgba(255, 255, 255, 0.35);
}

/* .privacy-cont__contact {
    padding: 35px 8.5%;
    border: 5px solid rgba(6, 86, 139, 0.3);
} */

.privacy-cont th {
  padding-left: 6px;
}

/* .privacy-cont ul {
    list-style: disc;
    padding-left: 12px;
} */

.privacy-cont ol {
  padding-left: 24px;
  list-style: decimal;
}

.privacy-cont .list-disc {
  list-style: disc;
  padding-left: 24px;
}

.privacy-cont .list-dec {
  list-style: decimal;
  padding-left: 24px;
}

.privacy-cont .list-roman {
  list-style: upper-roman;
  padding-left: 24px;
}

/* overwrite for bootstrap */
.privacy-cont .table,
tr,
th,
td {
  border: 1px solid #333333;
}
