@charset "UTF-8";
/*!*** Base Rules *****/
/*!
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&family=Shippori+Mincho:wght@400;500;600;700;800&display=swap");
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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav 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 Rules(Custom) *****/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.7;
  color: #333333;
  font-size: 1.8rem;
}

li {
  list-style-type: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

.serif {
  font-family: "Shippori Mincho", serif;
}

#page-top {
  display: block;
  z-index: 10;
  line-height: 1;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #336FAB;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #page-top {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #page-top {
    right: 20px;
    bottom: 20px;
  }
}

#page-top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page-top a::before {
  font: var(--fa-font-solid);
  font-weight: 900;
  content: "\f077";
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

#menu-button {
  width: 32px;
  height: 44px;
  position: relative;
  font-size: 1.2rem;
  text-align: center;
  cursor: pointer;
}
#menu-button .top {
  display: block;
  width: 14px;
  height: 1px;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  background-color: #707070;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 15px;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#menu-button .bottom {
  display: block;
  width: 14px;
  height: 1px;
  position: absolute;
  left: 50%;
  margin-left: -7px;
  background-color: #707070;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 15px;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  -webkit-transform-origin: center;
          transform-origin: center;
}
#menu-button .text {
  position: absolute;
  bottom: 0;
  width: 32px;
  left: 50%;
  margin-left: -16px;
}
#menu-button.open .top {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#menu-button.open .bottom {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.scroll-up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.scroll-up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.delay2s {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay3s {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.delay4s {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay5s {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

/*!*** Module Rules *****/
.header-nav-wrap {
  width: 100%;
  height: 100px;
  border-bottom: 5px solid #00305F;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 990px) {
  .header-nav-wrap {
    padding-right: 30px;
  }
}
@media screen and (max-width: 768px) {
  .header-nav-wrap {
    padding-right: 3%;
    padding-left: 3%;
    height: 80px;
    border-bottom: 3px solid #00305F;
  }
}
.header-nav-wrap .header-logo {
  font-family: "Shippori Mincho", serif;
  font-size: 3.4rem;
  font-weight: 800;
}
@media screen and (max-width: 1400px) {
  .header-nav-wrap .header-logo {
    font-size: 2.4rem;
  }
}
.header-nav-wrap .header-logo a {
  color: #333;
}
.header-nav-wrap .pc-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1400px) {
  .header-nav-wrap .pc-nav {
    width: 700px;
  }
}
@media screen and (max-width: 990px) {
  .header-nav-wrap .pc-nav {
    display: none;
  }
}
.header-nav-wrap .pc-nav .pc-nav-list {
  width: 439px;
  height: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1400px) {
  .header-nav-wrap .pc-nav .pc-nav-list {
    width: 320px;
  }
}
.header-nav-wrap .pc-nav .pc-nav-list > li {
  text-align: center;
  line-height: 1.2;
}
.header-nav-wrap .pc-nav .pc-nav-list > li > a, .header-nav-wrap .pc-nav .pc-nav-list > li > span {
  height: 100px;
  padding-top: 30px;
  display: inline-block;
  color: #333;
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1400px) {
  .header-nav-wrap .pc-nav .pc-nav-list > li > a, .header-nav-wrap .pc-nav .pc-nav-list > li > span {
    font-size: 1.6rem;
  }
}
.header-nav-wrap .pc-nav .pc-nav-list > li > a > span, .header-nav-wrap .pc-nav .pc-nav-list > li > span > span {
  display: block;
  font-size: 1.4rem;
  color: #9C9C9C;
}
@media screen and (max-width: 1400px) {
  .header-nav-wrap .pc-nav .pc-nav-list > li > a > span, .header-nav-wrap .pc-nav .pc-nav-list > li > span > span {
    font-size: 1.2rem;
  }
}
.header-nav-wrap .pc-nav .pc-nav-list > li > a:hover::after, .header-nav-wrap .pc-nav .pc-nav-list > li > span:hover::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8px 13.9px 8px;
  border-color: transparent transparent #000305 transparent;
}
@media screen and (max-width: 1400px) {
  .header-nav-wrap .pc-nav .pc-nav-list > li > a:hover::after, .header-nav-wrap .pc-nav .pc-nav-list > li > span:hover::after {
    bottom: -33px;
  }
}
.header-nav-wrap .pc-nav .pc-nav-list > li.nav-service ul.sub-nav {
  display: none;
}
.header-nav-wrap .pc-nav .pc-nav-list > li.nav-service:hover {
  position: relative;
}
.header-nav-wrap .pc-nav .pc-nav-list > li.nav-service:hover ul.sub-nav {
  position: absolute;
  width: 190px;
  display: block;
  bottom: -118px;
  border: 1px solid #00305F;
  left: -51px;
}
.header-nav-wrap .pc-nav .pc-nav-list > li.nav-service:hover ul.sub-nav > li a {
  display: block;
  color: #fff;
  background-color: #00305F;
  padding: 1em 2em;
}
.header-nav-wrap .pc-nav .pc-nav-list > li.nav-service:hover ul.sub-nav > li a:hover {
  opacity: 1;
  background-color: #fff;
  color: #00305F;
  border: 1px solid #00305F;
}
.header-nav-wrap .pc-nav .pc-nav-list > li.nav-service:hover ul.sub-nav > li:first-child a {
  border-bottom: 1px solid #fff;
}
.header-nav-wrap .pc-nav .header-tel {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: right;
  line-height: 1.2;
}
@media screen and (max-width: 1400px) {
  .header-nav-wrap .pc-nav .header-tel {
    font-size: 2rem;
  }
}
.header-nav-wrap .pc-nav .header-tel > a {
  color: #333;
}
.header-nav-wrap .pc-nav .header-tel > a > i {
  margin-right: 10px;
}
.header-nav-wrap .pc-nav .header-tel > span {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 1400px) {
  .header-nav-wrap .pc-nav .header-tel > span {
    font-size: 1.2rem;
  }
}
.header-nav-wrap .pc-nav .header-contact > a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  background-color: #00305F;
  width: 262px;
  height: 100px;
}
@media screen and (max-width: 1400px) {
  .header-nav-wrap .pc-nav .header-contact > a {
    width: auto;
    padding-right: 1em;
    padding-left: 1em;
    font-size: 1.6rem;
  }
}
.header-nav-wrap .pc-nav .header-contact > a span > i {
  font-size: 2.9rem;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 1400px) {
  .header-nav-wrap .pc-nav .header-contact > a span > i {
    font-size: 2rem;
  }
}

#menu-button {
  display: none;
}
@media screen and (max-width: 990px) {
  #menu-button {
    display: block;
  }
}

.sp-nav {
  display: none;
}
@media screen and (max-width: 990px) {
  .sp-nav {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 50;
    width: 100%;
    height: 100vh;
    border: 1px solid #3cabe3;
    padding-top: 80px;
  }
  .sp-nav .sp-nav-list {
    text-align: center;
  }
  .sp-nav .sp-nav-list > li {
    margin-bottom: 1.5em;
    font-size: 2rem;
    line-height: 1.2;
  }
  .sp-nav .sp-nav-list > li > a, .sp-nav .sp-nav-list > li > span {
    display: inline-block;
    color: #333;
  }
  .sp-nav .sp-nav-list > li > a > span, .sp-nav .sp-nav-list > li > span > span {
    font-size: 1.2rem;
    display: block;
  }
  .sp-nav .sp-nav-list li.nav-service > span {
    margin-bottom: 16px;
  }
  .sp-nav .sp-nav-list li.nav-service .sub-nav > li {
    margin-bottom: 16px;
  }
  .sp-nav .sp-nav-list li.nav-service .sub-nav > li > a {
    font-size: 1.6rem;
    color: #333;
  }
  .sp-nav .sp-header-tel > a {
    display: block;
    color: #333;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
  }
  .sp-nav .sp-header-tel > a i {
    margin-right: 10px;
  }
  .sp-nav .sp-header-tel > a span {
    font-size: 1.4rem;
  }
  .sp-nav .sp-header-contact > a {
    margin-top: 1em;
    padding: 0.5em;
    border: 1px solid #00305F;
    display: block;
    color: #333;
    font-size: 1.6rem;
    text-align: center;
  }
}

.hero-header {
  width: 100%;
  height: 100vh;
  background-image: url(../images/mv2.jpg);
  background-size: cover;
  background-attachment: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .hero-header {
    background-position: center center;
  }
}
.hero-header .hero-header-inner {
  width: 100%;
}
.hero-header .catch-copy {
  font-size: 3.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 768px) {
  .hero-header .catch-copy {
    font-size: 2.2rem;
  }
}
.hero-header .news-area {
  width: 1000px;
  height: 230px;
  margin-top: 100px;
  background-color: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .hero-header .news-area {
    width: 94%;
    margin-top: 50px;
  }
}
.hero-header .news-area .news-area-inner {
  width: 1000px;
  height: 230px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .hero-header .news-area .news-area-inner {
    width: 100%;
    display: block;
    padding-top: 1em;
  }
}
.hero-header .news-area .heading-news {
  font-size: 5rem;
  width: 272px;
  height: 157px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .hero-header .news-area .heading-news {
    font-size: 3rem;
    border: none;
    width: 100%;
    height: auto;
    margin-bottom: 0.5em;
  }
}
.hero-header .news-area .news-list {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .hero-header .news-area .news-list {
    margin-left: 0;
    padding-left: 1em;
  }
}
.hero-header .news-area .news-list > li {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .hero-header .news-area .news-list > li {
    font-size: 1.4rem;
  }
  .hero-header .news-area .news-list > li .date {
    font-size: 1.2rem;
  }
}
.hero-header .news-area .news-list > li a {
  color: #333;
}
.hero-header .news-area .button-more > a {
  display: inline-block;
  font-size: 2rem;
  width: 100px;
  text-align: center;
  background-color: #00305F;
  color: #fff;
  position: absolute;
  right: 20px;
  bottom: 20px;
  line-height: 1;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  -webkit-box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.hero-header .news-area .button-more > a > i {
  font-size: 1.6rem;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  .hero-header .news-area .button-more > a {
    right: 10px;
    bottom: 10px;
    font-size: 1.4rem;
  }
  .hero-header .news-area .button-more > a > i {
    font-size: 1.2rem;
    margin-left: 5px;
  }
}

.footer {
  background-color: #00305F;
  color: #fff;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 1em;
}
.footer a {
  color: #fff;
}
.footer .footer-logo {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-size: 3.4rem;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .footer .footer-logo {
    font-size: 2.8rem;
    margin-bottom: 1em;
  }
}
.footer .footer-nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3em;
}
@media screen and (max-width: 768px) {
  .footer .footer-nav-list {
    display: none;
  }
}
.footer .footer-nav-list > li {
  margin-right: 1em;
  margin-left: 1em;
}
.footer .footer-tc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .footer .footer-tc {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.footer .footer-tel {
  font-size: 2.8rem;
  text-align: right;
  font-weight: 700;
  line-height: 1;
  margin-right: 30px;
}
.footer .footer-tel i {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .footer .footer-tel {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
.footer .footer-tel span {
  font-size: 1.6rem;
  font-weight: 500;
}
.footer .footer-contact > a {
  display: inline-block;
  border: 1px solid #fff;
  padding: 1em 1.5em;
}
.footer .footer-contact > a:hover {
  background-color: #fff;
  color: #00305F;
}
.footer .footer-contact > a i {
  margin-right: 10px;
}
.footer address {
  font-style: normal;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .footer address {
    font-size: 1.4rem;
  }
}
.footer .copy-right {
  font-size: 1.6rem;
  margin-top: 3em;
}
@media screen and (max-width: 768px) {
  .footer .copy-right {
    font-size: 1.4rem;
  }
}

.heading-02 {
  font-family: "Shippori Mincho", serif;
  font-size: 5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1em;
}
.heading-02 > span {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #8B8B8B;
  display: block;
}
@media screen and (max-width: 768px) {
  .heading-02 {
    font-size: 3.2rem;
    margin-bottom: 0.5em;
  }
  .heading-02 > span {
    font-size: 1.4rem;
  }
}

.button-blue > a {
  display: block;
  color: #fff;
  width: 220px;
  height: 60px;
  background-color: #00305F;
  font-size: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.16);
  position: relative;
}
.button-blue > a::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f054";
  font-size: 1.6rem;
  line-height: 1;
  position: absolute;
  right: 10px;
  top: 22px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .button-blue > a {
    width: 120px;
    height: 40px;
    font-size: 1.4rem;
  }
  .button-blue > a::after {
    right: 8px;
    top: 14px;
    font-size: 1.2rem;
  }
}

.home-greeting {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-greeting {
    padding-bottom: 140px;
  }
}
.home-greeting::before {
  content: "";
  width: 1300px;
  height: 366px;
  background-color: rgba(0, 132, 219, 0.1);
  position: absolute;
  top: 80px;
  right: -100px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .home-greeting::before {
    content: none;
  }
}
.home-greeting .home-greeting-inner {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home-greeting .home-greeting-inner {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.4rem;
  }
}
.home-greeting .home-greeting-inner .heading-02 {
  text-align: left;
}
.home-greeting .home-greeting-inner .heading-02 span {
  display: inline-block;
  margin-left: 10px;
}
.home-greeting .home-greeting-photo {
  width: 547px;
  height: 365px;
  margin-top: 40px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .home-greeting .home-greeting-photo {
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0.5em;
  }
}
.home-greeting .home-greeting-photo img {
  width: 100%;
}
.home-greeting .home-greeting-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -70px;
}
@media screen and (max-width: 768px) {
  .home-greeting .home-greeting-content {
    display: block;
    margin-top: 0;
  }
}
.home-greeting .home-greeting-content .home-greeting-desc {
  width: 566px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-greeting .home-greeting-content .home-greeting-desc {
    width: 100%;
  }
}
.home-greeting .home-greeting-content .home-greeting-desc .text-wrap {
  margin-bottom: 70px;
}
.home-greeting .home-greeting-content .home-greeting-desc .text-wrap p {
  margin-bottom: 1em;
  text-indent: 1em;
}
@media screen and (max-width: 768px) {
  .home-greeting .home-greeting-content .home-greeting-desc .text-wrap {
    margin-bottom: 1em;
  }
}
.home-greeting .home-greeting-content .home-greeting-desc .button-blue {
  position: absolute;
  right: 0;
}

.home-service {
  background-color: rgba(136, 136, 136, 0.1);
  padding-top: 70px;
  padding-bottom: 70px;
}
.home-service .home-service-inner {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home-service .home-service-inner {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.4rem;
  }
}
.home-service .home-service-inner .heading-02 {
  text-align: left;
}
.home-service .home-service-inner .heading-02 span {
  display: inline-block;
  margin-left: 10px;
}
.home-service .service-category {
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  background-color: #00305F;
  color: #fff;
  text-align: center;
  margin-bottom: 1em;
  padding: 0.2em 1em;
}
@media screen and (max-width: 768px) {
  .home-service .service-category {
    font-size: 2rem;
  }
}
.home-service .service-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.home-service .service-list.business {
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-bottom: 2em;
}
.home-service .service-list > li > a {
  display: block;
  width: 276px;
  height: 276px;
  border: 5px solid #00305F;
  margin-bottom: 1em;
  background-color: #fff;
  color: #333;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .home-service .service-list > li > a {
    width: 45vw;
    height: 45vw;
  }
}
.home-service .service-list > li > a:hover {
  background-color: #00305F;
  color: #fff;
}
.home-service .service-list > li > a:hover i {
  -webkit-filter: invert(100%);
          filter: invert(100%);
}
.home-service .service-list > li > a span {
  width: auto;
  display: block;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .home-service .service-list > li > a span {
    font-size: 1.6rem;
  }
}
.home-service .service-list > li > a span i {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  margin-right: auto;
  margin-left: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .home-service .service-list > li > a span i {
    width: 50px;
    height: 50px;
  }
}
.home-service .service-list > li > a span i.legal-icon01 {
  background-image: url(../images/SVG/icon01.svg);
}
.home-service .service-list > li > a span i.legal-icon02 {
  background-image: url(../images/SVG/icon02.svg);
}
.home-service .service-list > li > a span i.legal-icon03 {
  background-image: url(../images/SVG/icon03.svg);
}
.home-service .service-list > li > a span i.legal-icon04 {
  background-image: url(../images/SVG/icon04.svg);
}
.home-service .service-list > li > a span i.legal-icon05 {
  background-image: url(../images/SVG/icon05.svg);
}
.home-service .service-list > li > a span i.legal-icon06 {
  background-image: url(../images/SVG/icon06.svg);
}
.home-service .service-list > li > a span i.legal-icon07 {
  background-image: url(../images/SVG/icon07.svg);
}

.home-price {
  padding-top: 70px;
  padding-bottom: 140px;
  position: relative;
}
.home-price::before {
  content: "";
  width: 1300px;
  height: 366px;
  background-color: rgba(0, 132, 219, 0.1);
  position: absolute;
  top: 157px;
  left: -50px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .home-price::before {
    content: none;
  }
}
.home-price .home-price-inner {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home-price .home-price-inner {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.4rem;
  }
}
.home-price .home-price-inner .heading-02 {
  text-align: left;
}
.home-price .home-price-inner .heading-02 span {
  display: inline-block;
  margin-left: 10px;
}
.home-price .home-price-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .home-price .home-price-content {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.home-price .home-price-content .home-price-desc {
  width: 566px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home-price .home-price-content .home-price-desc {
    width: 100%;
  }
}
.home-price .home-price-content .home-price-desc .text-wrap {
  margin-bottom: 90px;
}
.home-price .home-price-content .home-price-desc .text-wrap p {
  margin-bottom: 1em;
  text-indent: 1em;
}
@media screen and (max-width: 768px) {
  .home-price .home-price-content .home-price-desc .text-wrap {
    margin-bottom: 0;
  }
}
.home-price .home-price-content .home-price-desc .button-blue {
  position: absolute;
  right: 0;
}
.home-price .home-price-photo {
  width: 547px;
  height: 365px;
  margin-top: 30px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .home-price .home-price-photo {
    width: 100%;
    height: auto;
    margin-top: 0;
    margin-bottom: 0.5em;
  }
}
.home-price .home-price-photo img {
  width: 100%;
}

.home-contact {
  background-color: rgba(136, 136, 136, 0.1);
  padding-top: 70px;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .home-contact {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.4rem;
  }
}
.home-contact .home-contact-text {
  text-align: center;
}
.home-contact .contact-cta {
  width: 700px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 1em;
  border: 1px solid #00305F;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 80px;
}
@media screen and (max-width: 768px) {
  .home-contact .contact-cta {
    width: 90%;
    padding: 30px 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.home-contact .contact-cta .cta-tel {
  text-align: right;
  line-height: 1.2;
  margin-right: 50px;
}
.home-contact .contact-cta .cta-tel > a {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00305F;
}
.home-contact .contact-cta .cta-tel > a i {
  margin-right: 10px;
}
.home-contact .contact-cta .cta-tel span {
  font-size: 1.6rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .home-contact .contact-cta .cta-tel {
    margin-right: 0;
    margin-bottom: 1em;
  }
}
.home-contact .contact-cta .cta-contact > a {
  display: block;
  background-color: #00305F;
  color: #fff;
  padding: 1em;
}
.home-contact .contact-cta .cta-contact > a > i {
  margin-right: 10px;
}

.home-access {
  margin-top: 70px;
}
.home-access .home-access-map {
  position: relative;
  padding-bottom: 38%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .home-access .home-access-map {
    padding-bottom: 56.2%;
  }
}
.home-access .home-access-map iframe,
.home-access .home-access-map object,
.home-access .home-access-map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-access .home-access-text {
  text-align: center;
  margin-bottom: 3em;
}
.home-access .home-access-text .button-blue {
  margin-top: 1em;
}
.home-access .home-access-text .button-blue a {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .home-access .home-access-text {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 768px) {
  .home-access .home-access-inner {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.4rem;
  }
}

.low-header {
  margin-top: 100px;
  width: 100%;
  height: 180px;
  background-image: url(../images/mv.jpg);
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .low-header {
    margin-top: 80px;
    height: 100px;
  }
}
.low-header .heading-low {
  font-size: 3.4rem;
  color: #fff;
  letter-spacing: 0.13em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .low-header .heading-low {
    font-size: 2.4rem;
  }
}

.breadcrumb {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.4rem;
  }
}

.low-article, .low-wrap {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding: 70px 0 100px;
}
@media screen and (max-width: 768px) {
  .low-article, .low-wrap {
    width: 94%;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.4rem;
    padding: 40px 0;
  }
}
.low-article .heading-line, .low-wrap .heading-line {
  font-size: 2.8rem;
  border-bottom: 1px solid #000;
}
.low-article .heading-line.mt0, .low-wrap .heading-line.mt0 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .low-article .heading-line, .low-wrap .heading-line {
    font-size: 2rem;
  }
}
.low-article .heading-line2, .low-wrap .heading-line2 {
  font-size: 2.4rem;
  border-bottom: 1px solid #000;
  margin-top: 1.5em;
}
.low-article .heading-line2.mt0, .low-wrap .heading-line2.mt0 {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .low-article .heading-line2, .low-wrap .heading-line2 {
    font-size: 1.8rem;
  }
}
.low-article .heading-bl, .low-wrap .heading-bl {
  padding-top: 100px;
  margin-top: -100px;
}
.low-article .heading-bl.mtfix, .low-wrap .heading-bl.mtfix {
  margin-top: 0;
}
.low-article .heading-bl span, .low-wrap .heading-bl span {
  display: block;
  background-color: #00305F;
  font-size: 2.8rem;
  color: #fff;
  padding: 0.2em 0.5em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .low-article .heading-bl span, .low-wrap .heading-bl span {
    font-size: 2rem;
  }
}
.low-article .heading-bl2, .low-wrap .heading-bl2 {
  font-size: 2rem;
  background-color: #00305F;
  color: #fff;
  padding: 0.5em;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .low-article .heading-bl2, .low-wrap .heading-bl2 {
    font-size: 1.8rem;
  }
}
.low-article .article-date, .low-wrap .article-date {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .low-article .article-date, .low-wrap .article-date {
    font-size: 1.2rem;
  }
}
.low-article h2, .low-wrap h2 {
  margin-top: 2em;
  margin-bottom: 1em;
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .low-article h2, .low-wrap h2 {
    font-size: 2rem;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
  }
}
.low-article h3, .low-wrap h3 {
  margin-top: 2em;
  margin-bottom: 0.5em;
}
.low-article p, .low-wrap p {
  margin-bottom: 1em;
  text-indent: 1em;
}
.low-article p.tin, .low-wrap p.tin {
  text-indent: 0;
}
.low-article .article-content, .low-article .section-content, .low-wrap .article-content, .low-wrap .section-content {
  padding: 0 3em;
}
@media screen and (max-width: 768px) {
  .low-article .article-content, .low-article .section-content, .low-wrap .article-content, .low-wrap .section-content {
    padding: 0;
  }
}
.low-article .article-content img, .low-article .section-content img, .low-wrap .article-content img, .low-wrap .section-content img {
  width: 100%;
}
.low-article .pager, .low-wrap .pager {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 5em;
}
.low-article .notes-list, .low-wrap .notes-list {
  font-size: 1.6rem;
  color: #555;
}
@media screen and (max-width: 768px) {
  .low-article .notes-list, .low-wrap .notes-list {
    font-size: 1.2rem;
  }
}
.low-article .notes-list li, .low-wrap .notes-list li {
  list-style-type: "※";
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.low-article .price-table, .low-wrap .price-table {
  width: 100%;
  margin-top: 1em;
}
.low-article .price-table th, .low-wrap .price-table th {
  text-align: left;
  background-color: #f2f2f2;
}
.low-article .price-table th, .low-article .price-table td, .low-wrap .price-table th, .low-wrap .price-table td {
  padding: 0.5em;
  border: 1px solid #888;
}
.low-article .comission-wrap, .low-wrap .comission-wrap {
  border: 1px solid #888;
  padding: 1em;
  margin-bottom: 0.5em;
}
.low-article .commission-table, .low-wrap .commission-table {
  margin-bottom: 1em;
}
.low-article .commission-table th, .low-wrap .commission-table th {
  white-space: nowrap;
  text-align: right;
  padding: 0.5em;
  padding-right: 0;
}
.low-article .policy-list, .low-wrap .policy-list {
  border: 1px solid #ccc;
  padding: 1em;
  margin-bottom: 1em;
}
.low-article .policy-list li, .low-wrap .policy-list li {
  list-style-type: decimal;
  margin-left: 1em;
}
.low-article .lawyer-photo, .low-wrap .lawyer-photo {
  text-indent: 0;
  text-align: center;
  margin-bottom: 0.5em;
}
.low-article .lawyer-photo img, .low-wrap .lawyer-photo img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .low-article .lawyer-photo img, .low-wrap .lawyer-photo img {
    width: 100%;
  }
}
.low-article .lawyer, .low-wrap .lawyer {
  font-size: 2.4rem;
  font-weight: bold;
  text-indent: 0;
  text-align: center;
}
.low-article .lawyer span, .low-wrap .lawyer span {
  font-size: 1.6rem;
  font-weight: 500;
  margin-right: 1em;
}
.low-article .profile-table th, .low-wrap .profile-table th {
  white-space: nowrap;
}
.low-article .profile-table td, .low-wrap .profile-table td {
  padding-left: 1em;
  padding-bottom: 0.5em;
}
.low-article .office-photo-list, .low-wrap .office-photo-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.low-article .office-photo-list > li, .low-wrap .office-photo-list > li {
  width: 32%;
  margin-bottom: 1em;
}
.low-article .office-photo-list > li img, .low-wrap .office-photo-list > li img {
  width: 100%;
}
.low-article .service-list, .low-wrap .service-list {
  padding-left: 1em;
  margin-top: 1em;
  border-left: 2px solid #ccc;
}
@media screen and (max-width: 768px) {
  .low-article .service-list, .low-wrap .service-list {
    border: none;
  }
}
.low-article .service-wrap, .low-wrap .service-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .low-article .service-wrap, .low-wrap .service-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.low-article .service-wrap .service-icon, .low-wrap .service-wrap .service-icon {
  padding-right: 2em;
  padding-left: 2em;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .low-article .service-wrap .service-icon, .low-wrap .service-wrap .service-icon {
    width: 100%;
    padding: 0;
    text-align: center;
    padding-top: 2em;
    padding-bottom: 1em;
  }
}
.low-article .service-wrap .service-icon.ptfix, .low-wrap .service-wrap .service-icon.ptfix {
  padding-top: 1em;
}
.low-article .service-wrap .service-icon img, .low-wrap .service-wrap .service-icon img {
  width: 100px;
}
.low-article .normal-list, .low-wrap .normal-list {
  padding-left: 2em;
}
.low-article .normal-list li, .low-wrap .normal-list li {
  list-style-type: disc;
}
.low-article .contact-list, .low-wrap .contact-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.low-article .contact-list dt, .low-wrap .contact-list dt {
  width: 15%;
  font-weight: 700;
}
.low-article .contact-list dd, .low-wrap .contact-list dd {
  width: 85%;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .low-article .contact-list dt, .low-article .contact-list dd, .low-wrap .contact-list dt, .low-wrap .contact-list dd {
    width: 100%;
  }
}
.low-article .box-wrap, .low-wrap .box-wrap {
  border: 1px solid #ccc;
  padding: 1em;
}
.low-article .box-wrap p, .low-wrap .box-wrap p {
  text-indent: 0;
}
.low-article .box-wrap p a, .low-wrap .box-wrap p a {
  overflow-wrap: break-word;
}

form#mail_form {
  width: 100%;
  border-radius: 0;
  -webkit-box-shadow: inherit;
          box-shadow: inherit;
}

form#mail_form input[type=button] {
  padding: 7px 20px;
  border: none;
  border-radius: 3px;
  background: #00305F;
  font-size: 16px;
  color: #ffffff;
  font-family: inherit;
  -webkit-appearance: none;
  margin-left: 0;
}

form#mail_form p#form_submit {
  text-align: center;
}

form#mail_form input[name=name_1], form#mail_form input[name=name_2], form#mail_form input[name=read_1], form#mail_form input[name=read_2], form#mail_form input[name=postal], form#mail_form input[name=phone], form#mail_form input[name=schedule] {
  width: 70%;
}

.way-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .way-wrap {
    display: block;
  }
}
.way-wrap p {
  text-indent: 0;
}
.way-wrap .way-photo {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .way-wrap .way-photo {
    width: 100%;
  }
}
.way-wrap .way-photo img {
  width: 100%;
}
.way-wrap .way-text {
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .way-wrap .way-text {
    margin-bottom: 0.5em;
  }
}

/*!*** Helper Rules *****/
.fz10 {
  font-size: 10px;
}

.fz12 {
  font-size: 12px;
}

.fz13 {
  font-size: 13px;
}

.fz14 {
  font-size: 14px;
}

.fz18 {
  font-size: 18px;
}

.fz20 {
  font-size: 20px;
}

.fz22 {
  font-size: 22px;
}

.fz23 {
  font-size: 23px;
}

.fz24 {
  font-size: 24px;
}

.fz26 {
  font-size: 26px;
}

.fz27 {
  font-size: 27px;
}

.fz28 {
  font-size: 28px;
}

.fz30 {
  font-size: 30px;
}

.fz32 {
  font-size: 32px;
}

.fz33 {
  font-size: 33px;
}

.fz34 {
  font-size: 34px;
}

.fz35 {
  font-size: 35px;
}

.fz42 {
  font-size: 42px;
}

.fz49 {
  font-size: 49px;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.lh1 {
  line-height: 1;
}

.lh12 {
  line-height: 1.2 !important;
}

.lh15 {
  line-height: 1.5;
}

.lh2 {
  line-height: 2;
}

.lh47 {
  line-height: 47px;
}

.lh60 {
  line-height: 60px;
}

.va20 {
  letter-spacing: 0.02em;
}

.ltsp100 {
  letter-spacing: 0.1em;
}

.tdu {
  text-decoration: underline;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.flex-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.pt1em {
  padding-top: 1em;
}

.pb1em {
  padding-bottom: 1em;
}

.pr2p {
  padding-right: 2%;
}
@media (min-width: 768px) {
  .pr2p {
    padding-right: 0;
  }
}

.plr2p {
  padding-right: 2%;
  padding-left: 2%;
}

.plr5p {
  padding-right: 5%;
  padding-left: 5%;
}

.plr1em {
  padding-right: 1em;
  padding-left: 1em;
}

.mb0 {
  margin-bottom: 0 !important;
}

.ml1em {
  margin-left: 1em;
}

.mb1em {
  margin-bottom: 1em;
}

.mt1em {
  margin-top: 1em;
}

.mb2em {
  margin-bottom: 2em;
}

.mt2em {
  margin-top: 2em;
}

.mb3em {
  margin-bottom: 3em;
}

.br-sp, .sp {
  display: inherit;
}

.br-tb {
  display: inherit;
}

.br-pc, .pc {
  display: none;
}

.text-sp {
  display: inline;
}

.text-pc {
  display: none;
}

@media (min-width: 768px) {
  .br-sp, .sp {
    display: none;
  }
  .br-tb {
    display: inherit;
  }
  .br-pc, .pc {
    display: inline-block;
  }
  .text-sp {
    display: none;
  }
  .text-pc {
    display: inline;
  }
  .pc-fz14 {
    font-size: 14px;
  }
  .pc-fz18 {
    font-size: 18px;
  }
  .pc-fz26 {
    font-size: 26px;
  }
  .pc-fz27 {
    font-size: 27px;
  }
  .pc-fz30 {
    font-size: 30px;
  }
  .pc-fz36 {
    font-size: 36px;
  }
  .pc-fz38 {
    font-size: 38px;
  }
  .pc-fz40 {
    font-size: 40px;
  }
  .pc-fz49 {
    font-size: 49px;
  }
  .plr2p {
    padding-left: inherit;
    padding-right: inherit;
  }
  .pc-tac {
    text-align: center;
  }
  .pc-lh12 {
    line-height: 1.2;
  }
  .pc-w780 {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
  }
  .pc-w730 {
    max-width: 730px;
    margin-right: auto;
    margin-left: auto;
  }
  .pc-w265 {
    max-width: 265px;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .pc-w410 {
    max-width: 410px;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
  .pc-mb0 {
    margin-bottom: 0;
  }
  .pc-mt0 {
    margin-top: 0;
  }
  .pc-mb2em {
    margin-bottom: 2em;
  }
  .pc-mb3em {
    margin-bottom: 3em;
  }
}
@media (min-width: 1000px) {
  .br-tb {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */