@charset "UTF-8";
:root {
  --header-h: 72px; /* 実寸に合わせる */
}
@media screen and (max-width: 1024px) {
  :root {
    --header-h: 75px;
  }
}
:root {
  --space-xxs: 10px;
  --space-xs: 20px;
  --space-sm: 40px;
  --space-md: 80px;
  --space-lg: 130px;
}
@media screen and (max-width: 820px) {
  :root {
    --header-h: 75px;
    --space-sm: 30px;
    --space-md: 60px;
    --space-lg: 90px;
  }
}
@media screen and (max-width: 599px) {
  :root {
    --space-sm: 20px;
    --space-md: 30px;
    --space-lg: 40px;
  }
}
:root {
  --color-main: #445A78;
  --color-bg: #F4F7FA;
  --color-accent: #E78A4E;
  --color-text: #2F3742;
  --color-link: #3B6EA8;
  --font-base: 'Noto Sans JP', sans-serif;
  --font-heading: 'Zen Kaku Gothic New', sans-serif;
  --font-E-heading: 'Montserrat', sans-serif;
  --font-mincho: "Zen Old Mincho", serif;
}

html {
  font-size: 100% !important;
}

body {
  text-align: center;
  margin: 0px;
  padding: 0px;
  font-size: 1rem !important;
  font-family: var(--font-base);
  z-index: 50;
  color: var(--color-text);
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  body.menu-open {
    overflow: hidden;
  }
}
@media screen and (max-width: 599px) {
  body {
    font-size: 0.875rem;
    line-height: 1.6em;
  }
}
body a {
  text-decoration: none;
  color: var(--color-accent);
}

@media screen and (max-width: 599px) {
  .js-gsap-hidden {
    opacity: 0;
    visibility: hidden;
  }
}
.header {
  width: 100%;
  padding-block: 10px;
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 820px) {
  .header {
    padding-block: 10px !important;
  }
}
@media screen and (max-width: 599px) {
  .header {
    padding-inline: 10px !important;
  }
}
.header__container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: grid;
  grid-template-columns: 4fr 6fr;
  position: relative;
  height: 60px;
}
@media screen and (max-width: 820px) {
  .header__container {
    grid-template-columns: 1fr;
  }
}
.header__title {
  background-image: url(../svg/logo.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 60px auto;
  padding-left: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  font-size: 1.75rem;
  font-family: var(--font-E-heading);
  position: relative;
  color: var(--color-main);
}
@media screen and (max-width: 820px) {
  .header__title {
    width: 100% !important;
    height: 60px;
    padding-block: 5px;
    padding-left: 65px;
  }
}
@media screen and (max-width: 599px) {
  .header__title {
    background-size: 50px auto;
    font-size: 1.3125rem;
    padding-left: 55px;
    padding-block: 20px;
  }
}
.header__title a {
  color: var(--color-main) !important;
}
.header__menu {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
}
@media screen and (max-width: 820px) {
  .header__menu {
    display: none;
  }
}
.header__menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  list-style: none;
}
.header__menu ul li {
  border-right: 1px solid var(--color-text);
  padding-inline: 40px;
}
.header__menu ul li:last-child {
  border-right: 0px solid;
}
.header__menu ul li a {
  color: var(--color-text) !important;
}
.header__toggle {
  display: none;
}
@media screen and (max-width: 820px) {
  .header__toggle {
    position: absolute;
    display: block;
    background: none;
    border: 0;
    justify-self: end;
    top: 20%;
    right: 5%;
    cursor: pointer;
  }
}
@media screen and (max-width: 599px) {
  .header__toggle {
    right: 6%;
  }
}
.header__toggle span {
  position: absolute;
  left: 6px;
  width: 28px;
  height: 2px;
  background: #333;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.header__toggle span:nth-child(1) {
  top: 11px;
}
.header__toggle span:nth-child(2) {
  top: 19px;
}
.header__toggle span:nth-child(3) {
  top: 27px;
}
.header__toggle.is-open span:nth-child(1) {
  top: 19px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.header__toggle.is-open span:nth-child(3) {
  top: 19px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.sp-menu {
  display: none;
}
@media screen and (max-width: 820px) {
  .sp-menu {
    display: block;
    position: fixed;
    top: 80px;
    right: 0%;
    width: min(80vw, 320px);
    height: auto;
    background: rgba(68, 90, 120, 0.95);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 20px;
    z-index: 1001;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: hidden;
    -webkit-transition: 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    transition: 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    border-left: 3px solid #FFF;
    border-bottom: 3px solid #FFF;
    -webkit-box-shadow: -5px 5px 8px #333;
            box-shadow: -5px 5px 8px #333;
  }
  .sp-menu.is-open {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
    -webkit-transition: visibility 0s, -webkit-transform 0.35s ease;
    transition: visibility 0s, -webkit-transform 0.35s ease;
    transition: transform 0.35s ease, visibility 0s;
    transition: transform 0.35s ease, visibility 0s, -webkit-transform 0.35s ease;
  }
  .sp-menu ul {
    list-style: none;
    text-align: left;
  }
  .sp-menu ul li {
    font-size: 1.9375rem;
    font-weight: 300 !important;
    margin-bottom: 20px;
    font-family: var(--font-base);
  }
  .sp-menu ul li a {
    color: #FFF;
  }
}

.contact {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  background-image: url(../img/contact-area.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .contact {
    height: 300px;
  }
}
.contact__container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  position: relative;
  height: 350px;
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 820px) {
  .contact__container {
    height: 300px;
  }
}
.contact__container i {
  color: var(--color-main);
}
.contact__card {
  position: absolute;
  top: 50%;
  left: 98%;
  -webkit-transform: translate(-98%, -50%);
          transform: translate(-98%, -50%);
  background-color: var(--color-bg);
  padding: 0px 20px;
  width: 35%;
  text-align: left;
  font-size: 1.9375rem;
  -webkit-box-shadow: 0px 0px 20px var(--color-text);
          box-shadow: 0px 0px 20px var(--color-text);
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .contact__card {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 820px) {
  .contact__card {
    font-size: 1.3125rem;
    width: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.85);
    text-align: center;
  }
}
@media screen and (max-width: 599px) {
  .contact__card {
    width: 80%;
  }
}
.contact__card a {
  color: var(--color-text);
}
.contact__phone {
  font-weight: 700;
  margin: 0;
  color: var(--color-accent);
}
.contact__mail {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid #445a78;
  color: #445a78;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contact__mail:hover {
  background: #445a78;
  color: #fff !important;
}
.contact__mail i {
  color: var(--color-main);
}

.footer {
  width: 100%;
  border-top: 1px solid #939393;
  padding-top: 30px;
}
.footer__logo {
  background-image: url(../svg/logo.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 40px auto;
  padding-left: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.5rem;
  font-family: var(--font-E-heading);
  text-align: center;
  width: 260px;
  margin-inline: auto;
}
.footer__phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-main);
}
.footer__address {
  font-size: 0.875rem;
}

address {
  font-size: 0.875rem;
}

.media-block {
  width: 100%;
  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: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .media-block {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-inline: 10px;
  }
}
.media-block__text {
  padding-top: 24px;
  width: 52%;
}
.media-block__text--half {
  width: 48%;
}
@media screen and (max-width: 820px) {
  .media-block__text--half {
    width: 46%;
  }
}
@media screen and (max-width: 1024px) {
  .media-block__text {
    width: 53%;
    padding-top: 0;
  }
}
@media screen and (max-width: 599px) {
  .media-block__text {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .media-block__text--reverse {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.media-block__text h2 {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: var(--color-main);
  font-weight: 500;
  position: relative;
  padding-bottom: 15px;
  line-height: 1.4em;
}
@media screen and (max-width: 1024px) {
  .media-block__text h2 {
    margin-top: 0;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .media-block__text h2 {
    font-size: 1.3125rem;
  }
}
.media-block__text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #939393;
}
.media-block__text h2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 3px;
  background: var(--color-accent);
  z-index: 1;
}
.media-block__image {
  width: 40%;
}
.media-block__image--half {
  width: 48%;
}
@media screen and (max-width: 820px) {
  .media-block__image--half {
    width: 46%;
  }
}
@media screen and (max-width: 1024px) {
  .media-block__image {
    width: 45%;
  }
}
@media screen and (max-width: 599px) {
  .media-block__image {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
.media-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 5px;
}
@media screen and (max-width: 599px) {
  .media-block__image--reverse {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}

.pict-block {
  width: 100%;
}
.pict-block img {
  width: 100%;
  height: auto;
}

.sentence-block {
  width: 100%;
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 599px) {
  .sentence-block {
    padding-inline: 10px;
  }
}

.margin_pattern01 {
  margin-bottom: 130px !important;
}
@media screen and (max-width: 820px) {
  .margin_pattern01 {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 599px) {
  .margin_pattern01 {
    margin-bottom: 60px !important;
  }
}

.margin_pattern02 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 820px) {
  .margin_pattern02 {
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 599px) {
  .margin_pattern02 {
    margin-bottom: 40px !important;
  }
}

.margin_pattern03 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 820px) {
  .margin_pattern03 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .margin_pattern03 {
    margin-bottom: 20px !important;
  }
}

.margin_pattern04 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 820px) {
  .margin_pattern04 {
    margin-bottom: 15px !important;
  }
}
@media screen and (max-width: 599px) {
  .margin_pattern04 {
    margin-bottom: 10px !important;
  }
}

.margin_pattern05 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 820px) {
  .margin_pattern05 {
    margin-bottom: 7px !important;
  }
}
@media screen and (max-width: 599px) {
  .margin_pattern05 {
    margin-bottom: 5px !important;
  }
}

.margin-canceling {
  margin: inherit !important;
}

.align--left {
  text-align: left;
}
.align--center {
  text-align: center;
}
.align--center {
  text-align: center;
}

br.pc {
  display: block;
}
@media screen and (max-width: 599px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}
@media screen and (max-width: 599px) {
  br.sp {
    display: block;
  }
}

#hero {
  width: 100%;
  height: 65vh;
  position: relative;
}
#hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#hero .catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 3.1875rem;
  color: var(--color-text);
  font-family: var(--font-mincho);
  max-width: 1200px;
  width: 100%;
  padding-inline: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
  text-shadow: #fff 2px 0px 8px, #fff -2px 0px 8px, #fff 0px -2px 8px, #fff -2px 0px 8px, #fff 2px 2px 8px, #fff -2px 2px 8px, #fff 2px -2px 8px, #fff -2px -2px 8px, #fff 1px 2px 8px, #fff -1px 2px 8px, #fff 1px -2px 8px, #fff -1px -2px 8px, #fff 2px 1px 8px, #fff -2px 1px 8px, #fff 2px -1px 8px, #fff -2px -1px 8px, #fff 1px 1px 8px, #fff -1px 1px 8px, #fff 1px -1px 8px, #fff -1px -1px 8px;
}
@media screen and (max-width: 1024px) {
  #hero .catch {
    top: 30%;
    left: 50%;
    -webkit-transform: translate(-50%, -30%);
            transform: translate(-50%, -30%);
    text-align: center;
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 599px) {
  #hero .catch {
    font-size: 1.9375rem;
    line-height: 1.5em;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
}
.container--narrow {
  max-width: 850px;
}

.lower {
  width: 100%;
  height: 200px;
  position: relative;
  background-image: url(../img/h1.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 0px;
}
.lower__title {
  font-size: 1.9375rem;
  background-color: rgba(225, 225, 225, 0.85);
  text-align: center;
  padding: 10px 40px;
  display: inline-block;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .lower__title {
    font-size: 1.5rem;
    width: 90%;
    padding: 10px 0px;
  }
}

.colored {
  font-size: 1.3125rem;
  color: var(--color-accent);
  margin: 0;
  line-height: 2rem;
  font-weight: 400;
}

.corp-deta {
  display: grid;
  grid-template-columns: 250px 1fr;
}
@media screen and (max-width: 599px) {
  .corp-deta {
    grid-template-columns: 1fr;
  }
}
.corp-deta dt,
.corp-deta dd {
  padding: 20px;
  margin: 0;
}
.corp-deta dt {
  font-weight: 600;
  border-bottom: 2px solid var(--color-main);
}
.corp-deta dd {
  text-align: left;
  border-bottom: 1px solid #ddd;
}/*# sourceMappingURL=style.css.map */