@charset "UTF-8";
/* 基本設定
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background: #F4F8FD;
  color: #002849;
  font-family: "Shippori Mincho", serif;
  line-height: 1.45;
  font-weight: 500;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.util-title {
  font-family: "Dancing Script", cursive;
  color: #4B97DB;
  font-size: 4.2rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 767px) {
  .util-title {
    font-size: 3.6rem;
  }
}

.util-subtitle {
  color: #002849;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
}

.util-link-box {
  margin: 70px auto 0;
  text-align: center;
}
@media (max-width: 767px) {
  .util-link-box {
    text-align: center;
    margin-top: 60px;
  }
}

.util-link {
  color: #002849;
  font-family: "Shippori Mincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0 0 0 20px;
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  z-index: 1;
}
.util-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  z-index: -1;
  width: 50px;
  height: 50px;
  background: #A6D2F7;
  border-radius: 25px;
  transition: 0.3s ease-out;
}
.util-link:hover:before {
  width: 120px;
}
.util-link:after {
  position: absolute;
  content: "";
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-top: 1px solid #002849;
  border-right: 1px solid #002849;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .util-link.service-more:hover {
    background: #002849;
    color: #fff;
  }
}
@media (max-width: 767px) {
  .util-link {
    font-size: 1.6rem;
    margin: 0 auto;
    max-width: 268px;
    padding-top: 3px;
    padding-bottom: 13px;
  }
}

img {
  width: 100%;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.section {
  padding-top: 132px;
  padding-bottom: 132px;
}
@media (max-width: 767px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* コンテンツスタイル
===================================== */
/* header
---------------------------- */
.header {
  background: transparent;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.add-scrolled .header {
  background: transparent;
}
@media (min-width: 768px) {
  .header {
    height: 80px;
    text-align: center;
    transition: 0.2s;
    z-index: 1000;
  }
}
@media (max-width: 767px) {
  .header {
    height: 68px;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  vertical-align: middle;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header-inner {
    padding: 0 40px;
    height: 80px;
  }
}

.header-logo {
  width: 30px;
  text-align: center;
  display: flex;
}
@media (max-width: 767px) {
  .header-logo {
    width: 30px;
    line-height: 58px;
    margin-left: 16px;
  }
}

.header-logo-link {
  align-self: center;
}

.header-nav {
  align-items: center;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .header-nav {
    background: #fff;
    bottom: 0;
    position: fixed;
    right: -300px;
    text-align: center;
    top: 0;
    transition: right 0.3s linear;
    width: 300px;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .add-active .header-nav {
    right: 0;
  }
}

@media (min-width: 768px) {
  .header-nav-list {
    display: flex;
  }
}

@media (min-width: 768px) {
  .header-nav-item + .header-nav-item {
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .header-nav-item + .header-nav-item {
    margin-top: 20px;
  }
}

.header-nav-item-link {
  color: #002849;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.025em;
  position: relative;
}
@media (min-width: 768px) {
  .header-nav-item-link {
    padding: 0.5em 0;
  }
  .header-nav-item-link:after {
    background: #3e3e3e;
    bottom: 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform 0.2s;
    width: 100%;
  }
  .header-nav-item-link:hover:after {
    transform: scaleX(1);
  }
}
@media (max-width: 767px) {
  .header-nav-item-link {
    font-size: 1.8rem;
  }
}

.header-burger {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}
@media (max-width: 767px) {
  .header-burger {
    display: block;
    height: 26px;
    left: -42px;
    position: absolute;
    top: 20px;
    transition: right 0.3s linear;
    width: 26px;
  }
}

@media (max-width: 767px) {
  .header-burger-inline {
    background-color: #002849;
    border-radius: 3px;
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    transition: 0.3s;
    width: 26px;
    z-index: 1;
  }
  .header-burger-inline:nth-child(1) {
    top: 2px;
  }
  .header-burger-inline:nth-child(2) {
    top: 10px;
  }
  .header-burger-inline:nth-child(3) {
    top: 18px;
  }
}
@media (max-width: 767px) {
  .add-active .header-burger-inline {
    background-color: #fff;
  }
  .add-active .header-burger-inline:nth-child(1) {
    top: 10px;
    transform: rotate(-45deg);
  }
  .add-active .header-burger-inline:nth-child(2) {
    left: 100%;
    opacity: 0;
  }
  .add-active .header-burger-inline:nth-child(3) {
    top: 10px;
    transform: rotate(45deg);
  }
}

.header-overlay {
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: 0.3s;
  visibility: hidden;
  width: 100%;
}
.add-active .header-overlay {
  opacity: 1;
  visibility: visible;
}

/* footer
------------------------------------------------------*/
.footer {
  padding: 20px 0;
  text-align: center;
  background: #FFF;
}
@media (max-width: 767px) {
  .footer {
    padding: 20px 0;
  }
}

.footer-totop-link {
  display: block;
  height: 50px;
  opacity: 0;
  position: fixed;
  right: 16px;
  transition: 0.5s;
  visibility: hidden;
  width: 50px;
  z-index: 100;
}
@media (min-width: 768px) {
  .footer-totop-link {
    bottom: 40px;
    right: 40px;
  }
}
.add-scrolled .footer-totop-link {
  opacity: 1;
  visibility: visible;
}

.fa-circle-up {
  color: #002849;
  font-size: 3.5rem;
}
.fa-circle-up:hover {
  opacity: 0.7;
}

.footer-logo {
  margin-top: 10px;
}
.footer-logo a {
  margin: auto;
  display: block;
  width: 25px;
}
.footer-logo a:hover {
  opacity: 0.7;
}

.footer-sns {
  margin-top: 18px;
}
@media (max-width: 767px) {
  .footer-sns {
    margin-top: 10px;
  }
}

.footer-sns-link {
  font-size: 2.4rem;
  color: #002849;
}
.footer-sns-link:hover {
  opacity: 0.7;
}

.footer-copyright {
  margin-top: 16px;
  font-size: 1.2rem;
}