@charset "UTF-8";
/* =====
 * 共通レイアウト
============================================================================= */
@font-face {
  font-family: 'Noto Sans JP';
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Serif JP';
  src: url("../fonts/Noto_Serif_JP/NotoSerifJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../fonts/Lato/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  color: #222;
  line-height: 1.75;
  letter-spacing: 0.06em;
}

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ", "Meiryo", sans-serif;
  }
}

/* -----
 * font setting
----------------------------------------------------------------------------- */
.font-serif {
  font-family: "Noto Serif JP", "游明朝 Medium", "YuMincho Medium", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho ProN", serif;
  font-weight: 400;
}

.font-lato {
  font-family: "Lato", sans-serif;
  font-weight: 400;
}

.font-lato.-light {
  font-weight: 300;
}

/* -----
 * link setting
----------------------------------------------------------------------------- */
a {
  color: inherit;
}

a[href^="tel:"] {
  display: inline-block;
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

a img {
  vertical-align: bottom;
  box-shadow: #000 0 0 0;
}

/* -----
 * tag setting
----------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin: 1.3em 0 1em;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

p, ul, ol, table {
  margin: 1em 0;
}

p:last-child, ul:last-child, ol:last-child, table:last-child {
  margin-bottom: 0;
}

p:first-child, ul:first-child, ol:first-child, table:first-child {
  margin-top: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

img.js-ofi {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

table {
  border-collapse: collapse;
}

* {
  box-sizing: border-box;
}

/* -----
 * 共通クラス
----------------------------------------------------------------------------- */
.adjust-width {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: content-box;
}

._sp-only {
  display: none;
}

.section-title {
  font-size: 18px;
  font-size: 1.125rem;
  color: #142662;
  text-align: center;
  letter-spacing: 0.08em;
}

.section-title:after {
  display: block;
  content: "";
  width: 200px;
  height: 1px;
  background: #142662;
  margin: 0 auto;
}

.section-title.js-waypoint:after {
  width: 0;
  transition: width 0.5s cubic-bezier(0.46, 0.07, 0.86, 1);
}

.section-title.js-waypoint.-show:after {
  width: 200px;
}

/* -----
 * Wrapper
----------------------------------------------------------------------------- */
#Wrapper {
  position: relative;
  overflow: hidden;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

#Wrapper.-ready {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/* -----
 * Hero
----------------------------------------------------------------------------- */
#Hero {
  width: 100%;
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}

#Hero .content {
  text-align: center;
  letter-spacing: 0.08em;
}

#Hero .content h1 {
  color: #7D7D7D;
  font-size: 40px;
  font-size: 2.5rem;
  margin: 0;
  line-height: 1;
}

#Hero .content h1 span {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: opacity 1s;
}

#Hero .content .name {
  color: #7D7D7D;
  margin: 8px 0 0;
  margin: 0.5rem 0 0;
  line-height: 1;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: opacity 2s;
}

#Hero .content .position {
  margin: 32px 0 0;
  margin: 2rem 0 0;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  position: relative;
  color: #fff;
}

#Hero .content .position:after {
  display: block;
  content: "";
  width: 0;
  height: 100%;
  background: #142662;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.8s cubic-bezier(0.46, 0.07, 0.86, 1);
  transition-delay: 1.5s;
}

#Hero .content .position span {
  display: block;
  position: relative;
  z-index: 1;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
}

#Hero .gnavi {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
}

#Hero .gnavi .toggle {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
}

#Hero .gnavi .toggle:before, #Hero .gnavi .toggle:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #222;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
  transition: transform 0.2s cubic-bezier(0.46, 0.07, 0.86, 1);
}

#Hero .gnavi .toggle:before {
  transform: translate(-50%, -4px);
}

#Hero .gnavi .toggle:after {
  transform: translate(-50%, 4px);
}

#Hero .gnavi .menu {
  font-size: 14px;
  font-size: 0.875rem;
  position: relative;
  top: 80px;
  line-height: 1;
}

#Hero .gnavi .menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#Hero .gnavi .menu ul li {
  text-align: right;
  border-bottom: 1px solid #222;
  position: relative;
  right: -100%;
  transition: right 0.3s cubic-bezier(0.46, 0.07, 0.86, 1);
}

#Hero .gnavi .menu ul li a {
  display: block;
  padding: 0.5em 0 0.5em 1em;
  text-decoration: none;
}

#Hero .gnavi .menu ul li:nth-child(2) {
  transition-delay: 0.1s;
}

#Hero .gnavi .menu ul li:nth-child(3) {
  transition-delay: 0.2s;
}

#Hero .gnavi.-opened .toggle:before {
  transform: rotate(45deg) translate(-50%, -50%);
}

#Hero .gnavi.-opened .toggle:after {
  transform: rotate(-45deg) translate(-50%, -50%);
}

#Hero .gnavi.-opened .menu ul li {
  right: 40px;
}

#Hero.-ready .content h1 span {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#Hero.-ready .content .name {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#Hero.-ready .content .position:after {
  width: 100%;
}

/* -----
 * Message
----------------------------------------------------------------------------- */
#Message {
  background: #FAFAFA;
  color: #7D7D7D;
  padding: 60px 20px;
  line-height: 2;
  font-size: 14px;
  font-size: 0.875rem;
}

#Message p {
  display: table;
  margin: 0 auto;
}

/* -----
 * Service
----------------------------------------------------------------------------- */
#Service {
  margin-top: 100px;
}

#Service .content {
  margin-top: 60px;
}

#Service .content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

#Service .content ul:before, #Service .content ul:after {
  display: block;
  content: "";
  width: 22.7%;
}

#Service .content ul:before {
  -ms-flex-order: 1;
      order: 1;
}

#Service .content ul li {
  width: 22.7%;
  min-height: 135px;
  margin-bottom: 30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
}

#Service .content ul li:before, #Service .content ul li:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #B9B9B9;
}

#Service .content ul li:before {
  width: 0;
  height: 1px;
  transition: width 0.8s cubic-bezier(0.46, 0.07, 0.86, 1);
}

#Service .content ul li:after {
  width: 1px;
  height: 0;
  transition: height 0.8s cubic-bezier(0.46, 0.07, 0.86, 1);
}

#Service .content ul li .item {
  text-align: center;
}

#Service .content ul li .item span {
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  transition: opacity 0.5s cubic-bezier(0.46, 0.07, 0.86, 1);
}

#Service .content ul li .item span.ja {
  font-size: 14px;
  font-size: 0.875rem;
}

#Service .content ul li .item span.en {
  font-size: 12px;
  font-size: 0.75rem;
  color: #7D7D7D;
  margin-top: 1em;
  letter-spacing: 0.04em;
}

#Service .content ul li .item:before, #Service .content ul li .item:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #B9B9B9;
}

#Service .content ul li .item:before {
  width: 0;
  height: 1px;
  transition: width 0.8s cubic-bezier(0.46, 0.07, 0.86, 1);
}

#Service .content ul li .item:after {
  width: 1px;
  height: 0;
  transition: height 0.8s cubic-bezier(0.46, 0.07, 0.86, 1);
}

#Service .content ul li.-show:before {
  width: 93.33%;
}

#Service .content ul li.-show:after {
  height: 81.48%;
}

#Service .content ul li.-show .item span {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#Service .content ul li.-show .item:before {
  width: 93.33%;
}

#Service .content ul li.-show .item:after {
  height: 81.48%;
}

#Service .content > p {
  text-align: right;
  color: #7D7D7D;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
}

/* -----
 * Footer
----------------------------------------------------------------------------- */
#Profile {
  margin-top: 100px;
  padding: 60px 0 20px;
  background: #FAFAFA;
  font-size: 12px;
  font-size: 0.75rem;
}

#Profile .content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: start;
}

#Profile .content .icon {
  width: 70px;
  margin-right: 30px;
}

#Profile .content .text .name {
  letter-spacing: 0.08em;
}

#Profile .content .text .name span {
  vertical-align: middle;
}

#Profile .content .text .name span.ja {
  font-size: 18px;
  font-size: 1.125rem;
}

#Profile .content .text .name span.en {
  font-size: 14px;
  font-size: 0.875rem;
  color: #B9B9B9;
  margin-left: 1em;
}

#Profile .content .text address {
  font-style: normal;
}

#Profile .content .text address p {
  display: inline-block;
  margin: 0 2em 0 0;
}

#Profile .content .text address p .label {
  margin-right: 1em;
  color: #142662;
}

#Profile .content .text .notes {
  color: #7D7D7D;
}

#Profile .copyright {
  color: #B9B9B9;
  text-align: right;
  margin: 4em 60px 0 0;
}

/* =====
 * 共通レイアウト レスポンシブ
============================================================================= */
@media screen and (min-width: 944px) {
  /* PC */
  /* -----
   * link setting
  ----------------------------------------------------------------------------- */
  a {
    transition: opacity 0.3s linear;
  }
  a:hover {
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  }
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}

@media screen and (min-width: 768px) and (max-width: 943px) {
  /* tablet */
  /* -----
   * link setting
  ----------------------------------------------------------------------------- */
  a[href^="tel:"] {
    display: inline-block;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
  }
}

@media screen and (max-width: 767px) {
  /* smart phone */
  body {
    width: 100%;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
  }
  /* -----
   * link setting
  ----------------------------------------------------------------------------- */
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline;
  }
  /* -----
   * 共通クラス
  ----------------------------------------------------------------------------- */
  .adjust-width {
    max-width: initial;
    max-width: auto;
  }
  ._sp-only {
    display: block;
  }
  ._sp-only.-il {
    display: inline;
  }
  ._sp-only.-ibk {
    display: inline-block;
  }
  ._pc-only {
    display: none;
  }
  .section-title {
    width: 130px;
    font-size: 1rem;
    text-align: right;
    position: relative;
  }
  .section-title:after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  .section-title.js-waypoint.-show:after {
    width: 100%;
  }
  /* -----
   * Hero
  ----------------------------------------------------------------------------- */
  #Hero .gnavi .toggle {
    top: 10px;
    right: 20px;
    z-index: 2;
  }
  #Hero .gnavi .menu {
    position: static;
    width: 100vw;
    height: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    overflow: auto;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    visibility: hidden;
    transition-property: visibility, opacity;
    transition-duration: 0.3s;
    transition-timing-function: cubic-bezier(0.46, 0.07, 0.86, 1);
  }
  #Hero .gnavi .menu:after {
    display: block;
    content: "";
    width: 100vw;
    height: 100vh;
    background: #fff;
    position: absolute;
    top: 0;
    right: 0;
  }
  #Hero .gnavi .menu .label {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  #Hero .gnavi .menu .label a {
    text-decoration: none;
    color: #7D7D7D;
  }
  #Hero .gnavi .menu ul {
    position: relative;
    z-index: 1;
  }
  #Hero .gnavi .menu ul li {
    text-align: center;
    border-bottom: 1px solid #222;
    right: -20px;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    transition-property: right, opacity;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.09, 0.34, 0.63, 1);
  }
  #Hero .gnavi .menu ul li a {
    padding: 1em 1em 0.5em;
  }
  #Hero .gnavi.-opened .menu {
    height: 100vh;
    visibility: visible;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  #Hero .gnavi.-opened .menu ul li {
    right: 0;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  /* -----
   * Message
  ----------------------------------------------------------------------------- */
  #Message {
    padding: 50px 20px;
  }
  #Message p {
    display: block;
  }
  /* -----
   * Service
  ----------------------------------------------------------------------------- */
  #Service {
    margin-top: 80px;
  }
  #Service .content {
    margin-top: 50px;
  }
  #Service .content ul:before, #Service .content ul:after {
    display: none;
  }
  #Service .content ul li {
    width: calc(50% - 10px);
    min-height: 107px;
    margin-bottom: 20px;
    line-height: 1.6;
  }
  #Service .content ul li:before {
    width: 0;
  }
  #Service .content ul li:after {
    height: 0;
  }
  #Service .content ul li .item span.ja {
    font-size: 0.8125rem;
  }
  #Service .content ul li .item span.en {
    font-size: 0.6875rem;
    margin-top: 0.5em;
  }
  #Service .content ul li .item:before {
    width: 0;
  }
  #Service .content ul li .item:after {
    height: 0;
  }
  #Service .content ul li.-show:before {
    width: calc(100% - 10px);
  }
  #Service .content ul li.-show:after {
    height: calc(100% - 15px);
  }
  #Service .content ul li.-show .item:before {
    width: calc(100% - 10px);
  }
  #Service .content ul li.-show .item:after {
    height: calc(100% - 15px);
  }
  #Service .content > p {
    font-size: 0.75rem;
  }
  /* -----
   * Footer
  ----------------------------------------------------------------------------- */
  #Profile {
    margin-top: 80px;
    padding: 50px 0 20px;
  }
  #Profile .content {
    display: block;
  }
  #Profile .content .icon {
    width: 50px;
    margin: 0 auto;
  }
  #Profile .content .text .name {
    text-align: center;
    margin: 3em 0;
  }
  #Profile .content .text .name span {
    display: block;
  }
  #Profile .content .text .name span.ja {
    font-size: 1rem;
  }
  #Profile .content .text .name span.en {
    font-size: 0.75rem;
    margin: 0;
  }
  #Profile .content .text .comment {
    margin-bottom: 1.5em;
  }
  #Profile .content .text address {
    font-style: normal;
    margin-bottom: 1.5em;
  }
  #Profile .content .text address p {
    display: block;
    margin: 0 0 1em;
  }
  #Profile .content .text address p .label {
    display: block;
    margin-right: 0;
  }
  #Profile .copyright {
    text-align: center;
    margin: 5em 0 0;
  }
}

@media screen and (max-width: 350px) {
  /* smart phone */
  html {
    font-size: 3.75vw;
  }
}
