@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&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: #434343;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

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;
  color: #434343;
}
a:hover {
  opacity: 0.8;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

#page-top {
  display: block;
  z-index: 10;
  line-height: 1;
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #105EAC;
  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;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: #fff;
}

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%;
}

/*!*** Module Rules *****/
.sp-nav-wrap {
  display: none;
}
@media screen and (max-width: 990px) {
  .sp-nav-wrap {
    display: block;
  }
}
.sp-nav-wrap .sp-nav {
  position: fixed;
  z-index: -1;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  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;
}
.sp-nav-wrap .sp-nav .sp-nav-list {
  text-align: center;
}
.sp-nav-wrap .sp-nav .sp-nav-list > li {
  margin-bottom: 1em;
  font-size: 2rem;
}
.sp-nav-wrap .sp-nav .sp-nav-list > li i {
  font-size: 3rem;
  color: #105EAC;
}
.sp-nav-wrap .sp-nav .sp-nav-list > li.button-contact a {
  background-color: #105EAC;
  -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);
  color: #fff;
  font-size: 2rem;
  border-radius: 5px;
  padding: 0.5em 1em;
}
.sp-nav-wrap .sp-nav .sp-nav-list > li.button-contact a i {
  margin-right: 0.5em;
  font-size: 2rem;
}

.global-nav-wrap {
  width: 100%;
  height: 100px;
  -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);
  padding-right: 30px;
  padding-left: 30px;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .global-nav-wrap {
    padding-right: 10px;
    padding-left: 10px;
    height: 80px;
  }
}
.global-nav-wrap .global-nav-inner {
  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: 768px) {
  .global-nav-wrap .global-nav-inner {
    height: 80px;
  }
}
.global-nav-wrap .global-nav-inner .home-logo a {
  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;
}
.global-nav-wrap .global-nav-inner .home-logo img {
  width: 90px;
  margin-right: 20px;
}
@media screen and (max-width: 1520px) {
  .global-nav-wrap .global-nav-inner .home-logo img {
    width: 70px;
  }
}
@media screen and (max-width: 768px) {
  .global-nav-wrap .global-nav-inner .home-logo img {
    width: 50px;
    margin-right: 10px;
  }
}
.global-nav-wrap .global-nav-inner .home-logo span {
  display: block;
  line-height: 1.2;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .global-nav-wrap .global-nav-inner .home-logo span {
    display: none;
  }
}
.global-nav-wrap .global-nav-inner .home-logo span.company-name-ja {
  font-size: 3.3rem;
  font-weight: 700;
}
@media screen and (max-width: 1520px) {
  .global-nav-wrap .global-nav-inner .home-logo span.company-name-ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .global-nav-wrap .global-nav-inner .home-logo span.company-name-ja {
    font-size: 2rem;
  }
}
.global-nav-wrap .global-nav-inner .home-logo span.company-name-en {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 1520px) {
  .global-nav-wrap .global-nav-inner .home-logo span.company-name-en {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .global-nav-wrap .global-nav-inner .home-logo span.company-name-en {
    font-size: 1rem;
  }
}
.global-nav-wrap .global-nav-inner .global-nav {
  width: 840px;
}
@media screen and (max-width: 1520px) {
  .global-nav-wrap .global-nav-inner .global-nav {
    width: 600px;
  }
}
@media screen and (max-width: 990px) {
  .global-nav-wrap .global-nav-inner .global-nav {
    display: none;
  }
}
.global-nav-wrap .global-nav-inner .global-nav .nav-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;
}
.global-nav-wrap .global-nav-inner .global-nav .nav-list > li > a i {
  font-size: 3rem;
  color: #105EAC;
}
@media screen and (max-width: 1520px) {
  .global-nav-wrap .global-nav-inner .global-nav .nav-list {
    font-size: 1.4rem;
  }
}
.global-nav-wrap .global-nav-inner .global-nav .nav-list .button-contact a {
  background-color: #105EAC;
  -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);
  color: #fff;
  font-size: 2rem;
  border-radius: 5px;
  padding: 0.5em 1em;
}
@media screen and (max-width: 1520px) {
  .global-nav-wrap .global-nav-inner .global-nav .nav-list .button-contact a {
    font-size: 1.4rem;
  }
}
.global-nav-wrap .global-nav-inner .global-nav .nav-list .button-contact a i {
  margin-right: 0.5em;
  font-size: 1.8rem;
  color: #fff;
}

.hero-header {
  width: 100%;
  height: 600px;
  padding-top: 100px;
  background-image: url("../images/mv.jpg");
  background-size: cover;
  position: relative;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .hero-header {
    height: auto;
    padding-bottom: 50px;
  }
}
.hero-header .hero-header-inner {
  width: 1200px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  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 .hero-header-inner {
    width: 96%;
  }
}
.hero-header .catch-copy {
  font-size: 3.8rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  background-color: rgba(0, 0, 0, 0.38);
  padding: 0.5em 1em;
}
@media screen and (max-width: 768px) {
  .hero-header .catch-copy {
    font-size: 2rem;
    margin-bottom: 1em;
  }
}
.hero-header .news-wrap {
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(29px);
          backdrop-filter: blur(29px);
  width: 1200px;
  position: absolute;
  bottom: 60px;
  left: 50%;
  margin-left: -600px;
  padding: 50px 70px;
}
@media screen and (max-width: 768px) {
  .hero-header .news-wrap {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    bottom: 0;
    left: 0;
    padding: 20px 5%;
  }
}
.hero-header .news-wrap .news-title {
  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-bottom: 20px;
}
.hero-header .news-wrap .news-title .heading-news {
  color: #105EAC;
  font-size: 4rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .hero-header .news-wrap .news-title .heading-news {
    font-size: 2.4rem;
  }
}
.hero-header .news-wrap .news-title .heading-news::after {
  display: inline-block;
  content: "";
  width: 740px;
  height: 1px;
  background-color: #707070;
  margin-bottom: 15px;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .hero-header .news-wrap .news-title .heading-news::after {
    content: none;
  }
}
.hero-header .news-wrap .news-title .button-more-s > a {
  display: block;
  background-color: #105EAC;
  padding: 0.5em 1em;
  color: #fff;
  border-radius: 5px;
}
.hero-header .news-wrap .news-title .button-more-s > a::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f04b";
  font-size: 1.4rem;
  margin-left: 1em;
}
.hero-header .news-wrap .news-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;
}
@media screen and (max-width: 768px) {
  .hero-header .news-wrap .news-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.hero-header .news-wrap .news-list > li {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .hero-header .news-wrap .news-list > li {
    width: 100%;
    margin-bottom: 2em;
  }
}
.hero-header .news-wrap .news-list > li img {
  width: 100%;
}
.hero-header .news-wrap .news-list > li .article-info {
  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;
}
.hero-header .news-wrap .news-list > li .article-info .category::before {
  display: inline-block;
  content: "●";
  margin-right: 5px;
}
.hero-header .news-wrap .news-list > li .article-info .category.cat1::before {
  color: #BFAC49;
}
.hero-header .news-wrap .news-list > li .article-info .category.cat2::before {
  color: #07B8B3;
}
.hero-header .news-wrap .news-list > li .article-info .category.cat3::before {
  color: #0896C2;
}
.hero-header .news-wrap .news-list > li .article-heading {
  font-weight: 700;
}

#about {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 80px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  #about {
    width: 96%;
    padding-bottom: 50px;
    padding-top: 30px;
  }
}
#about .heading-about {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #105EAC;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  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;
}
#about .heading-about img {
  width: 100px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  #about .heading-about img {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  #about .heading-about {
    font-size: 1.8rem;
  }
}
#about .about-text-wrap {
  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;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  #about .about-text-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
#about .about-text-wrap .logo-large img {
  width: 425px;
}
@media screen and (max-width: 768px) {
  #about .about-text-wrap .logo-large {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2em;
  }
  #about .about-text-wrap .logo-large img {
    width: 100%;
  }
}
#about .about-text-wrap .about-text {
  width: 800px;
}
#about .about-text-wrap .about-text p {
  margin-bottom: 1em;
}

.heading-02 {
  color: #105EAC;
  font-size: 3.8rem;
  text-align: center;
  margin-bottom: 2em;
}
.heading-02 span {
  display: block;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .heading-02 {
    font-size: 3rem;
    margin-bottom: 1em;
  }
  .heading-02 span {
    font-size: 1.2rem;
  }
}

.button-more > a {
  display: block;
  width: 200px;
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
  background-color: #105EAC;
  padding: 0.5em 1em;
  color: #fff;
  border-radius: 5px;
  -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);
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .button-more > a {
    margin-top: 20px;
  }
}
.button-more > a::after {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f04b";
  font-size: 1.4rem;
  margin-left: 1em;
  position: absolute;
  right: 10px;
  top: 18px;
}
@media screen and (max-width: 768px) {
  .button-more > a::after {
    top: 12px;
  }
}

#column {
  background-image: url("../images/bg01.jpg");
  background-size: cover;
  background-position: center right;
}
#column .bg-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  #column .bg-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#column .column-inner {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #column .column-inner {
    width: 96%;
  }
}
#column .column-inner .column-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;
}
#column .column-inner .column-list > li {
  width: 560px;
  margin-bottom: 100px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
#column .column-inner .column-list > li figure {
  aspect-ratio: 16/10;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #column .column-inner .column-list > li {
    width: 100%;
    margin-bottom: 2em;
  }
}
#column .column-inner .column-list > li img {
  width: 100%;
}
#column .column-inner .column-list > li .column-heading {
  width: 560px;
  height: 346px;
  border: 1px solid #105EAC;
  position: absolute;
  top: 50px;
  left: 30px;
  z-index: -1;
}
#column .column-inner .column-list > li .column-heading span {
  position: absolute;
  bottom: 10px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  #column .column-inner .column-list > li .column-heading {
    width: auto;
    height: auto;
    position: relative;
    border: none;
    top: 0;
    left: 0;
  }
  #column .column-inner .column-list > li .column-heading span {
    position: relative;
    bottom: 0;
    left: 0;
  }
}

#case {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #case {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #case .swiper {
    padding: 2%;
  }
}
#case .case-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;
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
#case .case-list > li {
  width: 280px;
  height: auto;
  margin-bottom: 3em;
}
@media screen and (max-width: 1740px) {
  #case .case-list > li {
    width: 250px;
  }
}
@media screen and (max-width: 1170px) {
  #case .case-list > li {
    width: 150px;
  }
}
#case .case-list > li figure {
  width: 280px;
  height: 280px;
  overflow: hidden;
}
#case .case-list > li figure img {
  width: 100%;
}
@media screen and (max-width: 1740px) {
  #case .case-list > li figure {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 1170px) {
  #case .case-list > li figure {
    width: 150px;
    height: 150px;
  }
}
#case .case-list > li .heading-case {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #case .case-list > li {
    width: 100%;
  }
  #case .case-list > li figure {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
}

#blog {
  background-image: url("../images/bg02.jpg");
  background-size: cover;
  background-position: center center;
}
#blog .bg-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: rgba(255, 255, 255, 0.8);
}
#blog .blog-inner {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(29px);
          backdrop-filter: blur(29px);
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #blog .blog-inner {
    width: 96%;
  }
}
#blog .blog-inner .button-more a {
  margin-top: 0;
}
#blog .blog-inner .blog-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;
  width: 1060px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #blog .blog-inner .blog-list {
    width: 96%;
  }
}
#blog .blog-inner .blog-list > li {
  width: 320px;
  margin-bottom: 3em;
}
@media screen and (max-width: 768px) {
  #blog .blog-inner .blog-list > li {
    width: 100%;
  }
}
#blog .blog-inner .blog-list > li img {
  width: 100%;
}
#blog .blog-inner .blog-list > li .article-info {
  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;
}
#blog .blog-inner .blog-list > li .article-info .category::before {
  display: inline-block;
  content: "●";
  margin-right: 5px;
}
#blog .blog-inner .blog-list > li .article-info .category.cat1::before {
  color: #BFAC49;
}
#blog .blog-inner .blog-list > li .article-info .category.cat2::before {
  color: #07B8B3;
}
#blog .blog-inner .blog-list > li .article-info .category.cat3::before {
  color: #0896C2;
}
#blog .blog-inner .blog-list > li .article-heading {
  font-weight: 700;
}

#links {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #links {
    width: 96%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#links .links-sns {
  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: 70px;
}
@media screen and (max-width: 768px) {
  #links .links-sns {
    display: block;
    margin-bottom: 50px;
  }
}
#links .links-sns span {
  display: block;
}
#links .links-sns li {
  text-align: center;
  margin-right: 3em;
  margin-left: 3em;
  margin-bottom: 1em;
}
#links .links-sns li i {
  font-size: 10rem;
  color: #105EAC;
}
#links .links-upper {
  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-bottom: 70px;
}
@media screen and (max-width: 768px) {
  #links .links-upper {
    display: block;
    margin-bottom: 1em;
  }
}
#links .button-square01 > a {
  display: block;
  width: 520px;
  height: 200px;
  font-size: 2.8rem;
  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;
  -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);
  border: 5px solid #105EAC;
}
@media screen and (max-width: 768px) {
  #links .button-square01 > a {
    width: 96%;
    height: auto;
    font-size: 2rem;
    padding: 1em;
    margin-bottom: 1em;
    margin-right: auto;
    margin-left: auto;
  }
}
#links .button-square01 > a i {
  margin-right: 0.5em;
  color: #BFAC49;
}
#links .button-square01 > a:hover {
  background-color: #105EAC;
  color: #fff;
}
#links .button-square02 {
  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;
}
#links .button-square02 > a {
  display: block;
  width: 520px;
  height: 100px;
  font-size: 2.8rem;
  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;
  -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);
  border: 5px solid #105EAC;
}
@media screen and (max-width: 768px) {
  #links .button-square02 > a {
    width: 96%;
    height: auto;
    font-size: 2rem;
    padding: 1em;
  }
}
#links .button-square02 > a i {
  margin-right: 0.5em;
  color: #BFAC49;
}
#links .button-square02 > a:hover {
  background-color: #105EAC;
  color: #fff;
}

.footer {
  background-color: #042648;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 20px;
  margin-top: 70px;
  text-align: center;
}
.footer a {
  color: #fff;
}
.footer .footer-logo {
  margin-bottom: 20px;
}
.footer .footer-logo img {
  width: 100px;
}
.footer .footer-company-name {
  font-size: 3rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .footer .footer-company-name {
    font-size: 1.4rem;
    margin-bottom: 2em;
  }
}
.footer .footer-company-name span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-company-name span {
    font-size: 1.2rem;
  }
}
.footer .footer-sns-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;
}
.footer .footer-sns-list li {
  margin: 30px 1em;
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .footer .footer-sns-list {
    display: none;
  }
}
.footer .footer-nav-list {
  width: 700px;
  margin-right: auto;
  margin-left: auto;
  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: 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .footer .footer-nav-list {
    display: none;
  }
}
.footer .copy-right {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .footer .copy-right {
    font-size: 1rem;
    margin-bottom: 50px;
  }
}

.low-header .heading-low-wrap {
  width: 100%;
  height: 300px;
  padding-top: 100px;
  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;
  font-size: 3.3rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .low-header .heading-low-wrap {
    height: 200px;
    font-size: 2.4rem;
  }
}
.low-header .breadcrumb {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .low-header .breadcrumb {
    width: 96%;
    font-size: 1.2rem;
  }
}
.low-header .breadcrumb a {
  text-decoration: underline;
}

.archive-list {
  padding-top: 80px;
  padding-bottom: 80px;
  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;
  width: 1060px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .archive-list {
    width: 96%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.archive-list > li {
  width: 320px;
  margin-bottom: 3em;
}
@media screen and (max-width: 768px) {
  .archive-list > li {
    width: 100%;
  }
}
.archive-list > li img {
  width: 100%;
}
.archive-list > li .article-info {
  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;
}
.archive-list > li .article-info .category::before {
  display: inline-block;
  content: "●";
  margin-right: 5px;
}
.archive-list > li .article-info .category.cat1::before {
  color: #BFAC49;
}
.archive-list > li .article-info .category.cat2::before {
  color: #07B8B3;
}
.archive-list > li .article-info .category.cat3::before {
  color: #0896C2;
}
.archive-list > li .article-heading {
  font-weight: 700;
}

.article-wrap {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
  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-top: 50px;
}
.article-wrap.one-col {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .article-wrap {
    width: 96%;
    display: block;
    padding-top: 30px;
  }
}
.article-wrap .article {
  width: 840px;
}
@media screen and (max-width: 768px) {
  .article-wrap .article {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
  }
}
.article-wrap .article h1 {
  font-size: 3.4rem;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .article-wrap .article h1 {
    font-size: 2.4rem;
  }
}
.article-wrap .article .tag-update {
  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;
  font-size: 1.4rem;
  margin-top: 10px;
  margin-bottom: 20px;
}
.article-wrap .article .tag-update .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
}
.article-wrap .article .tag-update .tag-list > li {
  list-style-type: none;
  margin-right: 10px;
  margin-bottom: 10px;
}
.article-wrap .article .tag-update .tag-list > li > a {
  width: 100px;
  height: 30px;
  border-radius: 15px;
  border: 1px solid #707070;
  padding: 0.2em 2em;
}
@media screen and (max-width: 768px) {
  .article-wrap .article .tag-update .tag-list > li > a {
    width: auto;
    font-size: 1.2rem;
    padding: 0.2em;
  }
}
.article-wrap .article img {
  width: 100%;
}
.article-wrap .article h2 {
  font-size: 2.8rem;
  margin-top: 2em;
  margin-bottom: 1em;
  border-left: 5px solid #105EAC;
  padding-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .article-wrap .article h2 {
    font-size: 1.8rem;
  }
}
.article-wrap .article .fwb {
  font-weight: bold;
}
.article-wrap .article .tdu {
  text-decoration: underline;
}
.article-wrap .article p {
  margin-bottom: 1em;
}
.article-wrap .article .images-col2 {
  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-bottom: 1em;
}
.article-wrap .article .images-col2 img {
  width: 48%;
}
.article-wrap .article h3 {
  font-size: 2.4rem;
  margin-top: 2em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .article-wrap .article h3 {
    font-size: 1.6rem;
  }
}
.article-wrap .article ul {
  margin-left: 2em;
}
.article-wrap .article ul li {
  list-style-type: disc;
}
.article-wrap .article .next-prev {
  margin-top: 80px;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  padding-top: 2em;
  padding-bottom: 2em;
  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;
  line-height: 1;
}
.article-wrap .article .next-prev p {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .article-wrap .article .next-prev {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}
.article-wrap .article .related-article-list {
  margin-left: 0;
  padding-bottom: 80px;
  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;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.article-wrap .article .related-article-list li {
  list-style-type: none;
}
@media screen and (max-width: 768px) {
  .article-wrap .article .related-article-list {
    width: 96%;
    padding-top: 10px;
    padding-bottom: 50px;
  }
}
.article-wrap .article .related-article-list > li {
  width: 48%;
  margin-bottom: 3em;
}
@media screen and (max-width: 768px) {
  .article-wrap .article .related-article-list > li {
    width: 100%;
  }
}
.article-wrap .article .related-article-list > li img {
  width: 100%;
}
.article-wrap .article .related-article-list > li .article-info {
  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;
  font-size: 1.4rem;
}
.article-wrap .article .related-article-list > li .article-info .category::before {
  display: inline-block;
  content: "●";
  margin-right: 5px;
}
.article-wrap .article .related-article-list > li .article-info .category.cat1::before {
  color: #BFAC49;
}
.article-wrap .article .related-article-list > li .article-info .category.cat2::before {
  color: #07B8B3;
}
.article-wrap .article .related-article-list > li .article-info .category.cat3::before {
  color: #0896C2;
}
.article-wrap .article .related-article-list > li .article-heading {
  font-weight: 700;
}
.article-wrap .article .company-table {
  width: 100%;
}
.article-wrap .article .company-table th, .article-wrap .article .company-table td {
  border: 1px solid #c0c0c0;
  padding: 1em;
}
@media screen and (max-width: 768px) {
  .article-wrap .article .company-table th, .article-wrap .article .company-table td {
    display: block;
  }
}
.article-wrap .article .company-table th {
  text-align: left;
  min-width: 200px;
  background-color: rgb(230, 230, 230);
}
.article-wrap .article section.article-tag-list ul {
  margin-left: 0em;
}
.article-wrap .article section.article-tag-list ul li {
  list-style-type: none;
  display: inline-block;
}
.article-wrap .article section.article-tag-list ul li a {
  list-style-type: none;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  font-size: 15px !important;
  padding: 2px 5px;
  border-radius: 5px;
}
.article-wrap .article section.article-tag-list ul li a:hover {
  background-color: #105EAC;
  color: #fff;
}
.article-wrap .aside {
  width: 320px;
}
@media screen and (max-width: 768px) {
  .article-wrap .aside {
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
.article-wrap .aside img {
  width: 100%;
}
.article-wrap .aside h2 {
  font-size: 2.8rem;
  border-left: 5px solid #105EAC;
  border-bottom: 1px solid #105EAC;
  margin-bottom: 1em;
  padding-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .article-wrap .aside h2 {
    font-size: 1.8rem;
  }
}
.article-wrap .aside .aside-list {
  padding-bottom: 50px;
  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;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .article-wrap .aside .aside-list {
    width: 96%;
    padding-top: 10px;
    padding-bottom: 50px;
  }
}
.article-wrap .aside .aside-list > li {
  width: 100%;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .article-wrap .aside .aside-list > li {
    width: 100%;
  }
}
.article-wrap .aside .aside-list > li .thumbnail img {
  width: 100%;
}
.article-wrap .aside .aside-list > li .article-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 1.4rem;
}
.article-wrap .aside .aside-list > li .article-info .date {
  margin-right: 1em;
}
.article-wrap .aside .aside-list > li .article-info .category::before {
  display: inline-block;
  content: "●";
  margin-right: 5px;
}
.article-wrap .aside .aside-list > li .article-info .category.cat1::before {
  color: #BFAC49;
}
.article-wrap .aside .aside-list > li .article-info .category.cat2::before {
  color: #07B8B3;
}
.article-wrap .aside .aside-list > li .article-info .category.cat3::before {
  color: #0896C2;
}
.article-wrap .aside .aside-list > li .article-heading {
  font-weight: 700;
}

.contact-wrap {
  width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .contact-wrap {
    width: 96%;
  }
}

/*!*** 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;
}

.mt0 {
  margin-top: 0 !important;
}

.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: 600px) {
  .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 */