@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

body,
html {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 1201px) {
  .is-pc2 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 1201px) {
  .is-sp-tab {
    display: none;
  }
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  color: #292929;
  font-family: YuMincho, "Yu Mincho", serif;
  background-color: #fff;
  overflow-x: hidden;
  font-size: 1.8rem;
  font-weight: 400;
}

html {
  font-size: 62.5%;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

dl,
dd,
dt {
  padding: 0;
  margin: 0;
}

figure {
  margin: 0;
  padding: 0;
}

main {
  padding-left: 19.7472%;
}
@media all and (max-width: 1109px) {
  main {
    padding-left: 0;
  }
}

.side-bar {
  width: 19.7472%;
  background-color: #fff;
  padding-left: 35px;
  position: fixed;
  z-index: 1000;
  height: 100vh;
}
@media all and (max-width: 1109px) {
  .side-bar {
    display: none;
  }
}

.side-h1 {
  color: #4B4B4B;
  font-size: 1.8rem;
  padding-top: 100px;
  max-width: 200px;
}

.side-nav {
  margin-top: 60px;
  color: #AFAFAF;
  font-size: 1.6rem;
  max-width: 200px;
}
.side-nav li {
  line-height: 2.3;
}
.side-nav li a {
  transition: all 0.6s;
  display: block;
  width: 100%;
}
.side-nav li a:hover {
  color: #4b4b4b;
  transform: translateX(20px);
}

.side-address-box {
  margin-top: 120px;
  max-width: 217px;
  font-size: 1.4rem;
}

.sns-icons {
  display: flex;
  width: 99.83px;
}

.fa-link {
  font-size: 3rem;
  font-weight: 900;
}
.fa-link::before {
  display: none;
}

.li-link {
  margin-left: 12.8px;
  font-size: 3rem;
  font-weight: 900;
}

.yo-link {
  margin-left: 12.8px;
  font-size: 3rem;
  font-weight: 900;
}

/*===================================================
# ヘッダー
=================================================== */
header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 65px;
  z-index: 298;
  background-color: rgba(255, 255, 255, 0.9);
}
@media all and (min-width: 1110px) {
  header {
    display: none;
  }
}

.header-container {
  position: relative;
  width: 100%;
}

/* ハンバーガーアイコン＆ドロワーメニュー
----------------------------------------------*/
.drawer-icon {
  position: fixed;
  right: 10px;
  top: 10px;
  display: none;
  z-index: 300;
  width: 60px;
  height: 60px;
  background-color: #1d2088;
  border-radius: 50%;
}

@media screen and (max-width: 1109px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  transform: translateX(-260px);
}

.drawer-icon.is-active .drawer-icon__bar1 {
  top: 8px;
  transform: rotate(-45deg);
  background-color: #fff;
}

.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}

.drawer-icon.is-active .drawer-icon__bar3 {
  top: 8px;
  transform: rotate(45deg);
  background-color: #fff;
}

.drawer-icon__bars {
  width: 26px;
  height: 20px;
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: #fff;
  top: 0;
  left: 0;
  transition: transform 0.5s ease 0s;
}

.drawer-icon__bar1 {
  top: 0px;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  width: 260px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #1d2088;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content__item {
  border-bottom: 1px dotted #fff;
}
.drawer-content__item a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .drawer-content__item a {
    font-size: 1.6rem;
  }
}
.drawer-content__item a::after {
  content: "";
  position: absolute;
  right: 20px;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  width: 7.5px;
  height: 7.5px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
}

.drawer-h3, .drawer-p, .drawer-address-box, .drawer-address-number, .drawer-address, .drawer-tel {
  color: #fff;
  padding-left: 16px;
}

.drawer-h3 {
  font-size: 1.6rem;
  margin-top: 36px;
  line-height: 1.8;
}

.drawer-tel {
  margin-top: 30px;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 297;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*===================================================
# コンテンツエリア
=================================================== */
.content-area {
  background: url(../img/blog_bg.svg) no-repeat top center;
  padding-top: 185px;
  padding-bottom: 250px;
  background-color: #F8F8F8;
}
@media screen and (max-width: 1200px) {
  .content-area {
    padding-top: 125px;
  }
}
@media screen and (max-width: 767px) {
  .content-area {
    padding-top: 95px;
    padding-bottom: 125px;
  }
}

.breadcrumb {
  margin-top: 20px;
  margin-bottom: 100px;
  display: block;
  font-size: 1.5rem;
  color: #535353;
}
@media screen and (max-width: 1200px) {
  .breadcrumb {
    margin-bottom: 75px;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 50px;
    font-size: 1.3rem;
  }
}

.info-content {
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: content-box;
  max-width: 1000px;
  margin: 0 auto;
}
.info-content p {
  color: #3A3A3A;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3;
}
.info-content h1 {
  font-size: 7.2rem;
  color: #535353;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .info-content h1 {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 767px) {
  .info-content h1 {
    font-size: 3.4rem;
  }
}
.info-content h2 {
  font-size: 3.2rem;
}
@media screen and (max-width: 767px) {
  .info-content h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
}
.info-content h3 {
  font-size: 2.6rem;
  line-height: 1.8;
  border-bottom: 3px dashed #3A3A3A;
  margin-bottom: 25.6px;
}
@media screen and (max-width: 767px) {
  .info-content h3 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}

/*===================================================
# フッター
=================================================== */
footer {
  background-color: #002878;
  color: #fff;
  height: 64px;
  font-size: 1.4rem;
  padding-left: 2.307%;
  padding-right: 2.307%;
}
@media all and (max-width: 870px) {
  footer {
    height: 98px;
  }
}

.footer-flex {
  display: flex;
  align-items: center;
  height: 64px;
  position: relative;
}
@media all and (max-width: 870px) {
  .footer-flex {
    display: block;
    height: inherit;
  }
}

.footer-nav {
  display: flex;
}
@media all and (max-width: 870px) {
  .footer-nav {
    position: absolute;
    margin-top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.footer-nav li {
  padding-left: 15px;
}
@media all and (max-width: 870px) {
  .footer-nav li {
    white-space: nowrap;
  }
}
.footer-nav li:first-child {
  padding-left: 0;
}
.footer-nav li:nth-child(n+2) {
  margin-left: 15px;
  border-left: 1px solid #fff;
}

.copyright {
  margin-left: auto;
}
@media all and (max-width: 870px) {
  .copyright {
    white-space: nowrap;
    font-size: 1.1rem;
    position: absolute;
    bottom: 7px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 767px) {
  .copyright {
    font-size: 1.1rem;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .util-title {
    font-size: 2.3rem;
  }
}
.util-title::after {
  font-size: 1.6rem;
}