@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

main {
  display: block;
}

th {
  text-align: left;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  51% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  50% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  51% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
  100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right top;
            transform-origin: right top;
  }
}
/* 点滅 */
.blinking {
  -webkit-animation: blink 0.5s ease-out infinite alternate;
  animation: blink 0.5s ease-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.js-fadein {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: transform 1s ease , opacity 1s ease , visibility 1s ease;
  -webkit-transition: opacity 1s ease , visibility 1s ease , -webkit-transform 1s ease;
  transition: opacity 1s ease , visibility 1s ease , -webkit-transform 1s ease;
  transition: transform 1s ease , opacity 1s ease , visibility 1s ease;
  transition: transform 1s ease , opacity 1s ease , visibility 1s ease , -webkit-transform 1s ease;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}
.js-fadein.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* base --------------------------*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*
@supports(-webkit-touch-callout: none){
	html{
		height: -webkit-fill-available;
	}
	body{
		min-height: 100vh;
		min-height: -webkit-fill-available;
	}
}
*/
body {
  height: 100vh;
}

@supports (-webkit-touch-callout: none) {
  body {
    height: -webkit-fill-available;
  }
}
html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}
html.wf-active *, html.loading-delay * {
  visibility: visible;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 400;
  font-size: 1.6rem;
  color: #5e5e5e;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media screen and (max-width: 740px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  color: inherit;
}

a,
button {
  -webkit-transition: color 0.5s ease, opacity 0.5s ease, background 0.5s ease, transform 0.2s ease;
  -webkit-transition: color 0.5s ease, opacity 0.5s ease, background 0.5s ease, -webkit-transform 0.2s ease;
  transition: color 0.5s ease, opacity 0.5s ease, background 0.5s ease, -webkit-transform 0.2s ease;
  transition: color 0.5s ease, opacity 0.5s ease, background 0.5s ease, transform 0.2s ease;
  transition: color 0.5s ease, opacity 0.5s ease, background 0.5s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

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

p {
  line-height: 1.8;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 740px) {
  p {
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

.clearfix,
section {
  zoom: 1;
}

.clearfix:before,
.clearfix:after,
.section:before,
.section:after {
  content: "";
  display: table;
}

.clearfix:after,
.section:after {
  clear: both;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 740px) {
  .aligncenter {
    width: 100%;
    float: none;
  }
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 740px) {
  .alignright {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
}

.alignleft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 740px) {
  .alignleft {
    width: 100%;
    float: none;
    margin: 0 auto;
  }
}

.noscroll {
  overflow: hidden;
  height: 100%;
}

.pc {
  display: inline;
}
@media screen and (max-width: 740px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 740px) {
  .sp {
    display: inline;
  }
}

*:focus {
  outline: none;
}

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

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

/*form*/
input[type=text],
input[type=email],
input[type=tel],
input[type=submit],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  background-color: #fff;
  font-size: 1.6rem;
  padding: 15px;
  border: 1px solid #707070;
  -webkit-transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, filter 0.4s ease;
  -webkit-transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, -webkit-filter 0.4s ease;
  transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, -webkit-filter 0.4s ease;
  transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, filter 0.4s ease;
  transition: opacity 0.4s ease, color 0.4s ease, background-color 0.4s ease, filter 0.4s ease, -webkit-filter 0.4s ease;
}
input[type=checkbox] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #000;
}

input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  font-size: 16px;
  padding: 0;
}

textarea {
  min-height: 270px;
  resize: vertical;
}

select {
  background: #fff url(../imgs/common/select_arrow.svg) no-repeat right center/auto 100%;
  cursor: pointer;
}

input[type=submit],
button {
  -webkit-transition: opacity 0.5s ease, color 0.5s ease, background 0.5s ease, filter 0.5s ease;
  -webkit-transition: opacity 0.5s ease, color 0.5s ease, background 0.5s ease, -webkit-filter 0.5s ease;
  transition: opacity 0.5s ease, color 0.5s ease, background 0.5s ease, -webkit-filter 0.5s ease;
  transition: opacity 0.5s ease, color 0.5s ease, background 0.5s ease, filter 0.5s ease;
  transition: opacity 0.5s ease, color 0.5s ease, background 0.5s ease, filter 0.5s ease, -webkit-filter 0.5s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  padding: 0;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #958445;
  opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  z-index: 10;
  cursor: pointer;
  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;
  border: none;
  overflow: hidden;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}
.swiper-button-next::after, .swiper-button-prev::after {
  display: none;
}
@media screen and (max-width: 740px) {
  .swiper-button-next, .swiper-button-prev {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}

.swiper-button-next {
  background: url("../imgs/common/btn_next.svg") no-repeat center;
  background-size: 90% 90%;
}
@media screen and (max-width: 740px) {
  .swiper-button-next {
    right: 10px;
  }
}

.swiper-button-prev {
  background: url("../imgs/common/btn_prev.svg") no-repeat center;
  background-size: 90% 90%;
}
@media screen and (max-width: 740px) {
  .swiper-button-prev {
    left: 10px;
  }
}

.swiper-lazy-preloader {
  border-color: #958445;
  border-top-color: transparent;
}

/*=============================================
Layout
=============================================*/
/* wrapper --------------------------*/
.l-wrapper {
  background: #fff;
  position: relative;
  padding-top: 80px;
}
@media screen and (min-width: 1601px) {
  .l-wrapper {
    padding-top: 95px;
  }
}
@media screen and (max-width: 1024px) {
  .l-wrapper {
    padding-top: 70px;
  }
}

/* main --------------------------*/
/* header --------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  z-index: 999;
  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;
  padding-right: 160px;
}
@media screen and (min-width: 1601px) {
  .l-header {
    padding-left: 115px;
    height: 95px;
  }
}
@media screen and (max-width: 1600px) {
  .l-header {
    padding-left: 65px;
  }
}
@media screen and (max-width: 1300px) {
  .l-header {
    padding-left: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .l-header {
    height: 72px;
  }
}
@media screen and (max-width: 740px) {
  .l-header {
    padding-left: 25px;
    padding-right: 90px;
  }
}
.l-header__ttl {
  width: 327px;
  margin-right: 25px;
}
.l-header__ttl2 {
  width: 105px;
  margin-right: 45px;
}
.l-header-btn-contact {
  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: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  background: #5eaaff url("../imgs/_shared/icon-mail.png") no-repeat center;
  background-size: 21px auto;
  background-position: center 21px;
  color: #ffffff;
  padding: 15px 0;
  text-decoration: none;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  width: 160px;
  height: 100%;
}
@media screen and (min-width: 1601px) {
  .l-header-btn-contact {
    background-size: 25px auto;
    background-position: center 25px;
    padding: 25px 0;
  }
}
@media screen and (max-width: 1024px) {
  .l-header-btn-contact {
    right: 80px;
    width: 130px;
  }
}
@media screen and (max-width: 740px) {
  .l-header-btn-contact {
    display: none;
  }
}

.global-nav-pc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
@media screen and (min-width: 1601px) {
  .global-nav-pc {
    padding-right: 73px;
  }
}
@media screen and (max-width: 1600px) {
  .global-nav-pc {
    padding-right: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .global-nav-pc {
    display: none;
  }
}
.global-nav-pc ul {
  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: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
@media screen and (min-width: 1601px) {
  .global-nav-pc ul {
    width: calc(100% - 200px);
  }
}
@media screen and (max-width: 1600px) {
  .global-nav-pc ul {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 1300px) {
  .global-nav-pc ul {
    width: 100%;
  }
}
.global-nav-pc li:last-child {
  display: none;
}
.global-nav-pc a {
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.global-nav-pc a:hover {
  color: #5eaaff;
}
.global-nav-sp {
  display: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: visibility 0.5s ease, opacity 0.5s ease, -webkit-transform 0s ease 0.5s;
  transition: visibility 0.5s ease, opacity 0.5s ease, -webkit-transform 0s ease 0.5s;
  transition: transform 0s ease 0.5s, visibility 0.5s ease, opacity 0.5s ease;
  transition: transform 0s ease 0.5s, visibility 0.5s ease, opacity 0.5s ease, -webkit-transform 0s ease 0.5s;
}
.global-nav-sp.active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: visibility 0.5s ease, opacity 0.5s ease, -webkit-transform 0s ease 0s;
  transition: visibility 0.5s ease, opacity 0.5s ease, -webkit-transform 0s ease 0s;
  transition: transform 0s ease 0s, visibility 0.5s ease, opacity 0.5s ease;
  transition: transform 0s ease 0s, visibility 0.5s ease, opacity 0.5s ease, -webkit-transform 0s ease 0s;
}
@media screen and (max-width: 1024px) {
  .global-nav-sp {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 998;
    padding-top: 70px;
    overflow: auto;
  }
}
.global-nav-sp__inner {
  padding: 60px 0 120px;
}
.global-nav-sp a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  padding: 20px 10px 20px 45px;
  text-decoration: none;
  gap: 20px;
}
@media screen and (max-width: 740px) {
  .global-nav-sp a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 15px;
  }
}
.global-nav-sp a span:nth-child(1) {
  color: #5eaaff;
  font-family: "Montserrat", sans-serif;
  font-size: 6.4rem;
  font-weight: 500;
}
@media screen and (max-width: 740px) {
  .global-nav-sp a span:nth-child(1) {
    font-size: 3.5rem;
  }
}
.global-nav-sp a span:nth-child(2) {
  font-size: 2rem;
  position: relative;
  top: -5px;
}
@media screen and (max-width: 740px) {
  .global-nav-sp a span:nth-child(2) {
    font-size: 1.6rem;
    top: 0;
  }
}

.burger-menu {
  cursor: pointer;
  position: fixed;
  right: 0;
  top: 0;
  width: 80px;
  height: 72px;
  background: #5d87d9;
  display: none;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .burger-menu {
    display: block;
  }
}
.burger-menu span {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  background: #fff;
  width: 40px;
  height: 2px;
  position: absolute;
  left: 20px;
}
.burger-menu span:first-child {
  top: 35%;
}
.burger-menu span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.burger-menu span:last-child {
  bottom: 35%;
}
.burger-menu.active span:first-child {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 50%;
  margin-top: -1px;
}
.burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.burger-menu.active span:last-child {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  bottom: 50%;
  margin-bottom: -1px;
}
/* footer --------------------------*/
.l-footer {
  background: #f3f3f4;
  padding: 100px 0 130px;
}
.l-footer-grid {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
  gap: 40px 0;
}
@media screen and (max-width: 1024px) {
  .l-footer-grid {
    grid-template-columns: auto;
  }
}
.l-footer-logo {
  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;
}
.l-footer-logo--dentall {
  width: 380px;
  margin-right: 17px;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 740px) {
  .l-footer-logo--dentall {
    width: 60%;
  }
}
.l-footer-logo--hsjg {
  width: 150px;
}
@media screen and (max-width: 740px) {
  .l-footer-logo--hsjg {
    width: 40%;
  }
}
.l-footer-nav {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 1024px) {
  .l-footer-nav {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.l-footer-nav ul {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 50px 0;
}
@media screen and (max-width: 1024px) {
  .l-footer-nav ul {
    gap: 30px 0;
  }
}
.l-footer-nav li {
  cursor: pointer;
}
.l-footer-nav a {
  text-decoration: none;
  line-height: 1;
  font-weight: 700;
  display: inline-block;
  padding-left: 16px;
  position: relative;
  white-space: nowrap;
}
.l-footer-nav a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 1px;
  background: url("../imgs/_shared/arrow_blue.svg") no-repeat center;
}
.l-footer-address {
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  font-weight: 700;
  grid-column: 1/2;
  grid-row: 2/3;
}
.l-footer-address span {
  line-height: 1.67;
}
.l-footer-address span:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
}
.l-footer-address span:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.l-footer-address span:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.l-footer-copyright {
  text-align: center;
  font-size: 16px;
  grid-column: 1/3;
  grid-row: 3/4;
  border-top: 1px solid #707070;
  padding-top: 48px;
  margin-top: 46px;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .l-footer-copyright {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}

/*=============================================
Object
=============================================*/
/* Component */
/* Component --------------------------*/
.c-btn {
  display: inline-block;
  padding: 20px 54px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  border-radius: 100px;
  position: relative;
}
.c-btn::after {
  width: 8px;
  height: 14px;
  content: "";
  display: block;
  background: url("../imgs/_shared/arrow_white.svg") no-repeat center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
.c-btn--1 {
  color: #fff;
  background: #444444;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.c-btn--1:hover {
  background: #ccc;
}
.c-btn--2 {
  border: 1px solid #fff;
}

.c-inner {
  padding: 0 15px;
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 740px) {
  .c-inner {
    padding: 0 0;
  }
}

.c-ttl1-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 22px;
  line-height: 1;
}
.c-ttl1-1 span {
  display: block;
}
.c-ttl1-1 span:nth-child(1) {
  font-family: "Montserrat", sans-serif;
  font-size: 4.5rem;
  color: #444444;
  font-weight: 500;
}
.c-ttl1-1 span:nth-child(2) {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5eaaff;
}

.c-ttl2-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  line-height: 1;
  font-weight: 500;
}
.c-ttl2-1 span {
  display: block;
}
.c-ttl2-1 span:nth-child(1) {
  font-family: "Montserrat", sans-serif;
  font-size: 7.4rem;
  color: #444444;
}
@media screen and (max-width: 740px) {
  .c-ttl2-1 span:nth-child(1) {
    font-size: 4.8rem;
  }
}
.c-ttl2-1 span:nth-child(2) {
  font-size: 2.6rem;
  font-weight: 700;
  color: #5eaaff;
}
.c-table {
  display: grid;
  grid-template-columns: 236px auto;
  border-top: 1px solid #e6e6e6;
}
@media screen and (max-width: 740px) {
  .c-table {
    grid-template-columns: 140px auto;
  }
}
.c-table dt,
.c-table dd {
  padding: 36px 15px;
  line-height: 1.78;
  border-bottom: 1px solid #e6e6e6;
  font-size: 1.6rem;
  font-weight: 500;
  color: #444444;
}
@media screen and (max-width: 740px) {
  .c-table dt,
  .c-table dd {
    padding: 20px 10px;
  }
}

@media screen and (min-width: 1601px) {
  .c-cover {
    padding-left: 115px;
  }
}
@media screen and (max-width: 1600px) {
  .c-cover {
    padding-left: 65px;
  }
}
@media screen and (max-width: 1300px) {
  .c-cover {
    padding-left: 45px;
  }
}
@media screen and (max-width: 740px) {
  .c-cover {
    padding-left: 25px;
  }
}
.c-cover__figure {
  position: relative;
  height: 580px;
}
@media screen and (max-width: 740px) {
  .c-cover__figure {
    height: 350px;
  }
}
.c-cover__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 740px) {
  .c-cover__img--lt {
    -o-object-position: left top;
       object-position: left top;
  }
}
.c-cover__ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 40px 75px 42px 70px;
}
@media screen and (max-width: 740px) {
  .c-cover__ttl {
    padding: 15px 20px 0 2px;
  }
}

.c-contact_recruit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 740px) {
  .c-contact_recruit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.c-contact_recruit > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
  overflow: hidden;
  position: relative;
}
.c-contact_recruit > div:nth-child(1) {
  background: #5eaaff;
}
.c-contact_recruit > div:nth-child(2) {
  background: #5d87d9;
}
.c-contact_recruit > div:hover {
  background: #7e7e7e;
}
.c-contact_recruit > div:hover .c-btn--2 {
  background: #fff;
  color: #444444;
}
.c-contact_recruit > div:hover .c-btn--2::after {
  background: url("../imgs/_shared/arrow_black.svg") no-repeat center;
}
.c-contact_recruit > div > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 100px 65px 70px;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 57px;
}
@media screen and (max-width: 740px) {
  .c-contact_recruit > div > div {
    padding: 80px 20px;
  }
}
.c-contact_recruit__ttl {
  font-size: 24px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.c-contact_recruit span {
  display: block;
}
.c-contact_recruit span:nth-child(1) {
  font-family: "Montserrat", sans-serif;
  font-size: 6rem;
}
.c-contact_recruit span:nth-child(2) {
  font-size: 1.8rem;
  font-weight: 700;
}
.c-contact_recruit__text {
  font-weight: 700;
  margin-bottom: 0;
}
.c-contact_recruit-contact__figure {
  width: 245px;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
@media screen and (max-width: 740px) {
  .c-contact_recruit-contact__figure {
    display: none;
  }
}
.c-contact_recruit-recruit__figure {
  width: 193px;
  position: absolute;
  top: 10%;
  left: 50%;
  -webkit-transform: translateX(68%);
          transform: translateX(68%);
}
@media screen and (max-width: 740px) {
  .c-contact_recruit-recruit__figure {
    display: none;
  }
}

.c-banner {
  padding-top: 110px;
  padding-bottom: 110px;
}
.c-banner ul {
  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;
  max-width: 1017px;
  margin: 0 auto;
}
.c-banner li {
  width: 363px;
}

.c-pagination-archive {
  padding: 30px 0;
  font-weight: 700;
}
.c-pagination-archive ul {
  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;
  gap: 15px;
}
.c-pagination-archive .current {
  color: #5eaaff;
}
.c-pagination-archive a {
  text-decoration: none;
}

/* Project */
/*  ------------------------------------------------------------------------
home
--------------------------------------------------------------------------*/
.p-home-cover {
  position: relative;
  padding-left: 65px;
  height: 850px;
}
@media screen and (min-width: 1601px) {
  .p-home-cover {
    padding-left: 115px;
  }
}
@media screen and (max-width: 1300px) {
  .p-home-cover {
    padding-left: 45px;
  }
}
@media screen and (max-width: 740px) {
  .p-home-cover {
    padding-left: 0;
    height: auto;
  }
}
.p-home-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}
.p-home-cover__figure {
  position: relative;
  height: 100%;
  overflow-y: hidden;
}
@media screen and (max-width: 740px) {
  .p-home-cover__figure {
    overflow-y: visible;
  }
}
.p-home-cover__figure .swiper {
  height: 100%;
}
@media screen and (max-width: 740px) {
  .p-home-cover__figure .swiper {
    height: 320px;
  }
}
.p-home-cover__figure2 {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 20.9454545455%;
  z-index: 10;
}
.p-home-cover__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 34px;
  position: absolute;
  left: 35px;
  top: 50px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .p-home-cover__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    top: 30px;
    left: 10px;
  }
}
@media screen and (max-width: 740px) {
  .p-home-cover__content {
    position: static;
    background: #093b8f;
    padding: 20px 35px;
  }
}
.p-home-cover__p1 {
  margin-bottom: 0;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  font-size: 11.5rem;
  color: #fff;
  line-height: 1.01;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.85);
}
@media screen and (max-width: 740px) {
  .p-home-cover__p1 {
    font-size: 6.5rem;
    font-size: 13.8666666667vw;
    text-shadow: none;
  }
}
.p-home-cover__p2 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 3rem;
  letter-spacing: 0.05em;
  line-height: 1.96;
  color: #fff;
}
.p-home-cover__p2 span {
  background: rgba(0, 0, 0, 0.6);
  padding: 5px;
}
@media screen and (max-width: 740px) {
  .p-home-cover__p2 span {
    background: none;
  }
}
@media screen and (max-width: 740px) {
  .p-home-cover__p2 {
    font-size: 2rem;
    margin-bottom: 0;
  }
}
.p-home-cover__scroll {
  position: absolute;
  left: 37px;
  bottom: 160px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 1601px) {
  .p-home-cover__scroll {
    left: 50px;
  }
}
@media screen and (max-width: 740px) {
  .p-home-cover__scroll {
    display: none;
  }
}
.p-home-cover__scroll::after {
  width: 100px;
  height: 1px;
  content: "";
  display: block;
  background: #666666;
  position: absolute;
  top: 10px;
  left: 60px;
  -webkit-animation: scroll 2s ease-out infinite;
          animation: scroll 2s ease-out infinite;
}
.p-home-news {
  padding-top: 127px;
  padding-bottom: 74px;
}
.p-home-news__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  margin-bottom: 54px;
  gap: 78px;
}
@media screen and (max-width: 1024px) {
  .p-home-news__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 36px;
  }
}
.p-home-news-category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 740px) {
  .p-home-news-category {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10px 0;
  }
}
@media screen and (max-width: 740px) {
  .p-home-news-category__item {
    width: 50%;
  }
}
.p-home-news-category__item a {
  display: inline-block;
  text-decoration: none;
  padding-left: 20px;
  position: relative;
  font-weight: 700;
}
.p-home-news-category__item a::before {
  width: 16px;
  height: 16px;
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../imgs/_shared/arrow2_blue.svg") no-repeat center;
}
.p-home-news-category__item a.current, .p-home-news-category__item a:hover {
  color: #5eaaff;
}
.p-home-news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px 60px;
}
@media screen and (max-width: 1024px) {
  .p-home-news-list {
    gap: 35px 45px;
  }
}
@media screen and (max-width: 740px) {
  .p-home-news-list {
    grid-template-columns: auto;
    gap: 30px 20px;
  }
}
.p-home-news-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.p-home-news-list__item:hover .p-home-news-list__figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-home-news-list__item:hover .p-home-news-list__link {
  opacity: 0.5;
}
.p-home-news-list__link {
  text-decoration: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.p-home-news-list__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-home-news-list__figure {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.p-home-news-list__figure:before {
  content: "";
  display: block;
  padding-top: 143.8%;
}
.p-home-news-list__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
}
.p-home-news-list__figure.noimage {
  background: #e7eeef url("../imgs/_shared/logo-ads.svg") no-repeat center;
  background-size: 77.6315789474% auto;
  background-blend-mode: multiply;
}
.p-home-news-list__figure img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
  max-width: 100%;
}
.p-home-news-list__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 740px) {
  .p-home-news-list__body {
    gap: 10px;
  }
}
.p-home-news-list__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.p-home-news-list__meta time {
  font-weight: 700;
  margin-top: 3px;
}
.p-home-news-list__categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media screen and (max-width: 740px) {
  .p-home-news-list__categories {
    gap: 3px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-home-news-list__categories-item {
  background: #0198e8;
  padding: 4px 10px 3px;
  border-radius: 8px;
  color: #fff;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 740px) {
  .p-home-news-list__categories-item {
    font-size: 1.3rem;
  }
}
.p-home-news-list__categories-item.seminar {
  background: #07d8d8;
}
.p-home-news-list__categories-item.new {
  background: #a19fe0;
}
.p-home-news-list__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 740px) {
  .p-home-news-list__ttl {
    font-size: 1.7rem;
  }
}
.p-home-news__nav {
  margin-top: 60px;
  text-align: center;
}
.p-home-about {
  padding-top: 127px;
  padding-bottom: 74px;
  background: url("../imgs/home/about_bg@2x.png") no-repeat center top;
  background-size: 100% auto;
}
.p-home-about__p1 {
  font-size: 10rem;
  color: #5eaaff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin-bottom: 52px;
}
@media screen and (max-width: 740px) {
  .p-home-about__p1 {
    font-size: 4rem;
  }
}
.p-home-about__p2 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.56;
  margin-bottom: 50px;
}
@media screen and (max-width: 740px) {
  .p-home-about__p2 {
    font-size: 2.4rem;
  }
}
.p-home-about__p3 {
  margin-bottom: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.78;
  margin-bottom: 40px;
}
.p-home-about__nav ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 740px) {
  .p-home-about__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-home-about__nav a {
  display: block;
  position: relative;
}
.p-home-about__btn {
  background: #5eaaff;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 25px 74px;
}
.p-home-about__btn::after {
  width: 6px;
  height: 12px;
  content: "";
  display: block;
  background: url("../imgs/_shared/arrow_white.svg") no-repeat center;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 27px;
}
.p-home-business {
  padding-top: 127px;
  padding-bottom: 74px;
  background: -webkit-gradient(linear, left top, left bottom, from(#d2e6ed), to(#f0fdff));
  background: -webkit-linear-gradient(#d2e6ed 0%, #f0fdff 100%);
  background: linear-gradient(#d2e6ed 0%, #f0fdff 100%);
}
.p-home-business-grid {
  display: grid;
  grid-template-columns: 705fr 496fr;
  grid-template-rows: auto auto auto auto;
  gap: 0 79px;
}
@media screen and (max-width: 1024px) {
  .p-home-business-grid {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto;
  }
}
.p-home-business-ttl1-1 {
  margin-bottom: 33px;
  grid-column: 1/2;
  grid-row: 1/2;
}
.p-home-business__p1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.56;
  margin-bottom: 45px;
  color: #444444;
  grid-column: 1/2;
  grid-row: 2/3;
}
.p-home-business__p2 {
  font-size: 1.8rem;
  line-height: 1.78;
  margin-bottom: 60px;
  color: #444444;
  grid-column: 1/2;
  grid-row: 3/4;
}
.p-home-business__nav {
  text-align: center;
  grid-column: 1/2;
  grid-row: 4/5;
}
@media screen and (max-width: 1024px) {
  .p-home-business__nav {
    grid-row: 5/6;
  }
}
.p-home-business__figure {
  grid-column: 2/3;
  grid-row: 1/4;
}
@media screen and (max-width: 1024px) {
  .p-home-business__figure {
    grid-column: 1/2;
    grid-row: 4/5;
    margin-bottom: 60px;
  }
}
.p-home-business__figure img {
  width: 100%;
}
.p-home-ultradent {
  padding-top: 130px;
  padding-bottom: 134px;
}
.p-home-ultradent-grid {
  display: grid;
  grid-template-columns: 517fr 705fr;
  grid-template-rows: auto auto auto auto;
  gap: 0 58px;
}
@media screen and (max-width: 1024px) {
  .p-home-ultradent-grid {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto;
  }
}
.p-home-ultradent__figure {
  grid-column: 1/2;
  grid-row: 1/5;
}
@media screen and (max-width: 1024px) {
  .p-home-ultradent__figure {
    grid-column: 1/2;
    grid-row: 4/5;
    margin-bottom: 50px;
  }
}
.p-home-ultradent__figure img {
  width: 100%;
}
.p-home-ultradent-ttl1-1 {
  margin-bottom: 33px;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 1024px) {
  .p-home-ultradent-ttl1-1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-home-ultradent-p1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.56;
  margin-bottom: 45px;
  color: #444444;
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 1024px) {
  .p-home-ultradent-p1 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-home-ultradent-p2 {
  font-size: 1.8rem;
  line-height: 1.78;
  font-weight: 500;
  margin-bottom: 70px;
  color: #444444;
  grid-column: 2/3;
  grid-row: 3/4;
}
@media screen and (max-width: 1024px) {
  .p-home-ultradent-p2 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.p-home-ultradent-nav {
  text-align: center;
  grid-column: 2/3;
  grid-row: 4/5;
}
@media screen and (max-width: 1024px) {
  .p-home-ultradent-nav {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
.p-home-products {
  padding-top: 130px;
  padding-bottom: 134px;
}
.p-home-products-grid {
  display: grid;
  grid-template-columns: 517fr 705fr;
  grid-template-rows: auto auto auto auto;
  gap: 0 58px;
}
@media screen and (max-width: 1024px) {
  .p-home-products-grid {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto;
  }
}
.p-home-products__figure {
  grid-column: 1/2;
  grid-row: 1/5;
}
@media screen and (max-width: 1024px) {
  .p-home-products__figure {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
.p-home-products-ttl1-1 {
  margin-bottom: 33px;
  grid-column: 2/3;
  grid-row: 1/2;
}
@media screen and (max-width: 1024px) {
  .p-home-products-ttl1-1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-home-products-p1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.56;
  margin-bottom: 45px;
  color: #444444;
  grid-column: 2/3;
  grid-row: 2/3;
}
@media screen and (max-width: 1024px) {
  .p-home-products-p1 {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-home-products-p2 {
  font-size: 1.8rem;
  line-height: 1.78;
  font-weight: 500;
  margin-bottom: 70px;
  color: #444444;
  grid-column: 2/3;
  grid-row: 3/4;
}
@media screen and (max-width: 1024px) {
  .p-home-products-p2 {
    grid-column: 1/2;
    grid-row: 3/4;
  }
}
.p-home-products-nav {
  text-align: center;
  grid-column: 2/3;
  grid-row: 4/5;
}
@media screen and (max-width: 1024px) {
  .p-home-products-nav {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}
.p-home-recruit {
  padding-top: 127px;
  padding-bottom: 74px;
  background: -webkit-gradient(linear, left top, left bottom, from(#d2e6ed), to(#f0fdff));
  background: -webkit-linear-gradient(#d2e6ed 0%, #f0fdff 100%);
  background: linear-gradient(#d2e6ed 0%, #f0fdff 100%);
}
.p-home-recruit-grid {
  display: grid;
  grid-template-columns: 705fr 496fr;
  grid-template-rows: auto auto auto 1fr;
  gap: 0 79px;
}
@media screen and (max-width: 1024px) {
  .p-home-recruit-grid {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto auto;
  }
}
.p-home-recruit-ttl1-1 {
  margin-bottom: 33px;
  grid-column: 1/2;
  grid-row: 1/2;
}
.p-home-recruit__p1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.56;
  margin-bottom: 45px;
  color: #444444;
  grid-column: 1/2;
  grid-row: 2/3;
}
.p-home-recruit__p2 {
  font-size: 1.8rem;
  line-height: 1.78;
  margin-bottom: 100px;
  color: #444444;
  grid-column: 1/2;
  grid-row: 3/4;
}
.p-home-recruit__nav {
  text-align: center;
  grid-column: 1/2;
  grid-row: 4/5;
}
@media screen and (max-width: 1024px) {
  .p-home-recruit__nav {
    grid-row: 5/6;
  }
}
.p-home-recruit__figure {
  grid-column: 2/3;
  grid-row: 1/5;
}
@media screen and (max-width: 1024px) {
  .p-home-recruit__figure {
    grid-column: 1/2;
    grid-row: 4/5;
    margin-bottom: 60px;
  }
}
.p-home-recruit__figure img {
  width: 100%;
}
.p-home-contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 740px) {
  .p-home-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-home-contact > div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
  background: #5eaaff;
}
.p-home-contact > div:hover {
  background: #7e7e7e;
}
.p-home-contact > div:hover .c-btn--2 {
  background: #fff;
  color: #444444;
}
.p-home-contact > div:hover .c-btn--2::after {
  background: url("../imgs/_shared/arrow_black.svg") no-repeat center;
}
.p-home-contact > div > div {
  padding: 100px 65px 70px;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 57px;
}
@media screen and (max-width: 740px) {
  .p-home-contact > div > div {
    padding: 80px 20px;
  }
}
.p-home-contact__ttl {
  font-size: 24px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.p-home-contact span {
  display: block;
}
.p-home-contact span:nth-child(1) {
  font-family: "Montserrat", sans-serif;
  font-size: 6rem;
}
.p-home-contact span:nth-child(2) {
  font-size: 1.8rem;
  font-weight: 700;
}
.p-home-contact__text {
  font-weight: 700;
  margin-bottom: 0;
}
.p-home-contact__figure {
  width: 458px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
}
@media screen and (max-width: 740px) {
  .p-home-contact__figure {
    display: none;
  }
}

/* second --------------------------*/
/*  ------------------------------------------------------------------------
archives
--------------------------------------------------------------------------*/
.p-archives__meta {
  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;
  gap: 20px;
  margin-bottom: 16px;
}
@media screen and (max-width: 740px) {
  .p-archives__meta {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.p-archives__meta-date {
  font-size: 1.6rem;
  color: #444444;
  font-weight: 700;
}
@media screen and (max-width: 740px) {
  .p-archives__meta-date {
    font-size: 1.5rem;
  }
}
.p-archives__meta-category {
  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;
  gap: 10px;
}
@media screen and (max-width: 740px) {
  .p-archives__meta-category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: normal;
    -webkit-align-items: normal;
        -ms-flex-align: normal;
            align-items: normal;
    gap: 5px;
  }
}
.p-archives__meta-category li {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: #0198e8;
  border-radius: 8px;
  padding: 4px 10px;
}
@media screen and (max-width: 740px) {
  .p-archives__meta-category li {
    font-size: 1.3rem;
  }
}
.p-archives__meta-category li.seminar {
  background: #07d8d8;
}
.p-archives__meta-category li.new {
  background: #a19fe0;
}
.p-archives-archive {
  padding-top: 112px;
  padding-bottom: 210px;
}
@media screen and (max-width: 740px) {
  .p-archives-archive {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-archives-archive__inner {
  max-width: 1160px;
}
.p-archives-archive__ttl1 {
  margin-bottom: 129px;
}
@media screen and (max-width: 740px) {
  .p-archives-archive__ttl1 {
    margin-bottom: 80px;
  }
}
.p-archives-archive-sort {
  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: 150px;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-sort {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.p-archives-archive-sort__category-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 68px;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-sort__category-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 10px 0;
  }
}
.p-archives-archive-sort__category-list li {
  position: relative;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-sort__category-list li {
    width: 50%;
  }
}
.p-archives-archive-sort__category-list li::after {
  content: "";
  width: 1px;
  height: 20px;
  background: #444444;
  position: absolute;
  top: -2px;
  right: -34px;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-sort__category-list li::after {
    display: none;
  }
}
.p-archives-archive-sort__category-list li:last-child::after {
  display: none;
}
.p-archives-archive-sort__category-list a {
  text-decoration: none;
  font-weight: 700;
}
.p-archives-archive-sort__category-list a.current, .p-archives-archive-sort__category-list a:hover {
  color: #5eaaff;
}
.p-archives-archive-sort__date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-sort__date {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.p-archives-archive-sort__ttl {
  font-size: 4rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #aaaaaa;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-sort__ttl {
    font-size: 2.6rem;
  }
}
.p-archives-archive-sort__ttl--1 {
  margin-bottom: 37px;
}
.p-archives-archive-sort__ttl--2 {
  margin-bottom: 20px;
}
.p-archives-archive-sort__select {
  width: 256px;
  background: url(../imgs/_shared/arrow_pulldown2.svg) no-repeat center right;
  background-size: auto 100%;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-sort__select {
    width: 100%;
  }
}
@media screen and (max-width: 740px) {
  .p-archives-archive-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-columns: auto;
    gap: 20px;
  }
}
.p-archives-archive-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: #707070 1px solid;
  position: relative;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-list__item {
    padding-top: 0;
    padding-bottom: 40px;
    border-bottom: none;
    display: block;
  }
}
.p-archives-archive-list__figure {
  width: 300px;
  height: 300px;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-list__figure {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    width: 100%;
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .p-archives-archive-list__figure:before {
    content: "";
    display: block;
    padding-top: 56.1797752809%;
  }
  .p-archives-archive-list__figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto auto;
  }
  .p-archives-archive-list__figure:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .p-archives-archive-list__figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto auto;
  }
}
.p-archives-archive-list__figure.noimage {
  background: #e7eeef url("../imgs/_shared/logo-ads.svg") no-repeat center;
  background-size: 77.6315789474% auto;
  background-blend-mode: multiply;
}
.p-archives-archive-list__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-archives-archive-list__body {
  padding: 30px 0 0 30px;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-list__body {
    padding: 10px 0 0;
  }
}
.p-archives-archive-list__ttl {
  font-size: 2.4rem;
  line-height: 1.67;
  font-weight: 700;
}
@media screen and (max-width: 740px) {
  .p-archives-archive-list__ttl {
    font-size: 1.7rem;
  }
}
.p-archives-archive-list__link {
  text-decoration: none;
  color: #333333;
}
.p-archives-archive-list__link::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.p-archives-single {
  padding-top: 112px;
  padding-bottom: 210px;
}
.p-archives-single__inner {
  max-width: 1160px;
}
.p-archives-single__ttl2 {
  margin-bottom: 144px;
}
@media screen and (max-width: 740px) {
  .p-archives-single__ttl2 {
    margin-bottom: 80px;
  }
}
.p-archives-single__ttl1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.67;
  margin-bottom: 30px;
}
@media screen and (max-width: 740px) {
  .p-archives-single__ttl1 {
    font-size: 2.4rem;
  }
}
.p-archives-single__cover {
  max-width: 500px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 740px) {
  .p-archives-single__cover {
    max-width: 100%;
  }
}
.p-archives-single__content {
  padding-bottom: 150px;
  text-align: center;
}
.p-archives-single__content p {
  font-size: 1.6rem;
}
.p-archives-single__content strong {
  font-weight: 700;
}
.p-archives-single__nav {
  text-align: center;
}

/*  ------------------------------------------------------------------------
company
--------------------------------------------------------------------------*/
.p-company-grid {
  display: grid;
  grid-template-columns: 170px auto;
  gap: 20px 40px;
  padding-top: 130px;
  padding-left: 70px;
  padding-right: 70px;
}
@media screen and (max-width: 740px) {
  .p-company-grid {
    display: block;
    padding-left: 0;
    padding-right: 0;
    padding-top: 80px;
  }
}
.p-company-left {
  position: relative;
}
.p-company-left__nav {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding-bottom: 112px;
}
@media screen and (max-width: 740px) {
  .p-company-left__nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 65px;
    padding-bottom: 0;
  }
}
.p-company-left a {
  text-decoration: none;
  display: inline-block;
  font-weight: 700;
  padding-left: 23px;
  position: relative;
}
@media screen and (max-width: 740px) {
  .p-company-left a {
    color: #5eaaff;
    padding: 15px 10px;
    width: 100%;
    border: 1px solid #5eaaff;
    text-align: center;
  }
}
.p-company-left a.current, .p-company-left a:hover {
  color: #5eaaff;
}
.p-company-left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  margin-top: -1px;
  background: url("../imgs/_shared/arrow2_blue.svg") no-repeat center;
}
@media screen and (max-width: 740px) {
  .p-company-left a::before {
    display: none;
  }
}
.p-company-outline {
  margin-bottom: 160px;
}
.p-company-outline__ttl {
  margin-bottom: 75px;
}
.p-company-office {
  margin-bottom: 120px;
}
.p-company-office__ttl1 {
  margin-bottom: 120px;
}
.p-company-office__list {
  display: grid;
  grid-template-columns: auto;
  gap: 120px;
}
.p-company-office__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto -webkit-min-content;
  grid-template-rows: auto min-content;
  gap: 44px 35px;
}
@media screen and (max-width: 1024px) {
  .p-company-office__item {
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    gap: 20px 0;
  }
}
.p-company-office__ttl2 {
  grid-column: 1/2;
  grid-row: 1/2;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .p-company-office__ttl2 {
    grid-column: 1/2;
    grid-row: 1/2;
    font-size: 2.4rem;
  }
}
.p-company-office__address {
  grid-column: 1/2;
  grid-row: 2/3;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.78;
}
@media screen and (max-width: 1024px) {
  .p-company-office__address {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-company-office__map {
  grid-column: 2/3;
  grid-row: 1/3;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.p-company-office__map:before {
  content: "";
  display: block;
  padding-top: 67.3076923077%;
}
.p-company-office__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .p-company-office__map {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}
.p-company-photo {
  margin-bottom: 274px;
}
.p-company-history {
  margin-bottom: 112px;
}
.p-company-history__ttl1 {
  margin-bottom: 75px;
}
.p-company-history dt {
  font-size: 2.6rem;
  font-weight: 700;
  color: #5eaaff;
  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: 740px) {
  .p-company-history dt {
    font-size: 2.2rem;
  }
}
.p-company-history dd {
  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;
  font-size: 1.8rem;
}

/*  ------------------------------------------------------------------------
business
--------------------------------------------------------------------------*/
.p-business-total_support {
  padding-top: 192px;
  padding-bottom: 70px;
}
@media screen and (max-width: 740px) {
  .p-business-total_support {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-business-total_support__p1 {
  font-size: 4.8rem;
  line-height: 1.8;
  color: #444444;
  margin-bottom: 52px;
  font-weight: 700;
}
@media screen and (max-width: 740px) {
  .p-business-total_support__p1 {
    font-size: 3rem;
  }
}
.p-business-total_support__p2 {
  font-size: 2.4rem;
  line-height: 1.96;
  color: #444444;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 740px) {
  .p-business-total_support__p2 {
    font-size: 1.8rem;
  }
}
.p-business-total_support__photo {
  display: grid;
  grid-template-columns: 673fr 607fr;
  grid-template-rows: 1fr 1fr;
}
.p-business-total_support__figure:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/3;
}
.p-business-total_support__figure:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
}
.p-business-total_support__figure:nth-child(3) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.p-business-total_support__figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-business-support {
  padding-bottom: 220px;
}
.p-business-support__ttl2 {
  font-size: 3.7rem;
  font-weight: 700;
  padding-left: 20px;
  margin-bottom: 48px;
  border-left: #5eaaff 8px solid;
}
@media screen and (max-width: 740px) {
  .p-business-support__ttl2 {
    font-size: 2.4rem;
  }
}
.p-business-support__p1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.96;
  margin-bottom: 80px;
}
.p-business-support__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 40px;
}
@media screen and (max-width: 740px) {
  .p-business-support__list {
    grid-template-columns: auto;
    grid-template-rows: repeat(3, 1fr);
  }
}
.p-business-support__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid #5faaff;
  padding: 20px 0;
}
.p-business-support__num {
  font-size: 3rem;
  font-weight: 700;
  color: #5eaaff;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1;
}
.p-business-support__ttl3 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.57;
  margin-bottom: 56px;
  text-align: center;
  height: 3em;
}
@media screen and (max-width: 740px) {
  .p-business-support__ttl3 {
    height: auto;
  }
}
.p-business-support__p2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  color: #444444;
  margin: 0 20px;
}

/*  ------------------------------------------------------------------------
philosophy
--------------------------------------------------------------------------*/
.p-philosophy-cover {
  position: relative;
  overflow: hidden;
}
.p-philosophy-cover__figure2 {
  position: absolute;
  top: 0px;
  right: 13px;
  width: 469px;
}
@media screen and (max-width: 1300px) {
  .p-philosophy-cover__figure2 {
    width: 36.0769230769vw;
  }
}
@media screen and (max-width: 740px) {
  .p-philosophy-cover__figure2 {
    top: 0px;
    right: 0px;
    width: 37.3333333333vw;
  }
}
.p-philosophy-hsj_philosophy {
  padding-top: 157px;
  padding-bottom: 158px;
}
@media screen and (max-width: 740px) {
  .p-philosophy-hsj_philosophy {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-philosophy-hsj_philosophy__ttl1 {
  height: 430px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  padding-left: 60px;
  background: url("../imgs/philosophy/photo1@2x.jpg?2") no-repeat center left;
  background-size: cover;
  gap: 15px;
  margin-bottom: 50px;
}
@media screen and (max-width: 740px) {
  .p-philosophy-hsj_philosophy__ttl1 {
    padding-left: 10px;
  }
}
.p-philosophy-hsj_philosophy__ttl1 span {
  color: #fff;
}
.p-philosophy-hsj_philosophy__ttl1 span:nth-child(1) {
  font-size: 6rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.p-philosophy-hsj_philosophy__ttl1 span:nth-child(2) {
  font-size: 2.4rem;
  font-weight: 700;
}
.p-philosophy-hsj_philosophy__contents {
  display: grid;
  grid-template-columns: auto;
  gap: 80px;
}
.p-philosophy-hsj_philosophy__item {
  display: grid;
  grid-template-columns: 280px auto;
  gap: 52px;
}
@media screen and (max-width: 740px) {
  .p-philosophy-hsj_philosophy__item {
    grid-template-columns: auto;
    gap: 30px;
  }
}
.p-philosophy-hsj_philosophy__ttl2 {
  font-size: 3.9rem;
  font-weight: 600;
  background: #093b8f;
  color: #fff;
  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-family: "Montserrat", sans-serif;
  padding: 50px;
}
@media screen and (max-width: 740px) {
  .p-philosophy-hsj_philosophy__ttl2 {
    font-size: 3.2rem;
  }
}
.p-philosophy-hsj_philosophy__p1 {
  margin-bottom: 50px;
  color: #093b8f;
  font-size: 2.4rem;
  font-weight: 700;
}
@media screen and (max-width: 740px) {
  .p-philosophy-hsj_philosophy__p1 {
    font-size: 1.8rem;
  }
}
.p-philosophy-hsj_philosophy__p1--mb0 {
  margin-bottom: 0;
}
.p-philosophy-hsj_philosophy__p2 {
  margin-bottom: 35px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 6.8rem;
  font-weight: 700;
  color: #093b8f;
  line-height: 1;
}
@media screen and (max-width: 740px) {
  .p-philosophy-hsj_philosophy__p2 {
    font-size: 4rem;
  }
}
.p-philosophy-hsj_philosophy__p3 {
  margin-bottom: 42px;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-philosophy-hsj_philosophy__figure {
  width: 450px;
}
@media screen and (max-width: 740px) {
  .p-philosophy-hsj_philosophy__figure {
    width: 100%;
  }
}
.p-philosophy-hsj_philosophy__ol {
  font-weight: 700;
  color: #093b8f;
  font-size: 2.4rem;
  line-height: 1.96;
  list-style-type: decimal;
  padding-left: 1.5em;
}
@media screen and (max-width: 740px) {
  .p-philosophy-hsj_philosophy__ol {
    font-size: 1.8rem;
  }
}
.p-philosophy-message {
  padding-bottom: 116px;
}
.p-philosophy-message__ttl1 {
  margin-bottom: 64px;
}
.p-philosophy-message__grid {
  display: grid;
  grid-template-columns: 370fr 861fr;
  grid-template-rows: auto;
  gap: 50px;
}
@media screen and (max-width: 740px) {
  .p-philosophy-message__grid {
    grid-template-columns: auto;
  }
}
.p-philosophy-message__p1 {
  font-size: 1.8rem;
  line-height: 2.6;
  color: #444444;
  margin-bottom: 50px;
}
.p-philosophy-message__p2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #444444;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 17px;
}
.p-philosophy-message__p2 span {
  display: inline-block;
  font-weight: 700;
}
.p-philosophy-message__p2 span:nth-child(1) {
  font-size: 2.2rem;
}
.p-philosophy-message__p2 span:nth-child(2) {
  font-size: 3rem;
}

.p-contact-cover {
  position: relative;
}
.p-contact-cover__figure2 {
  position: absolute;
  top: 50px;
  right: 60px;
  width: 469px;
}
@media screen and (max-width: 1300px) {
  .p-contact-cover__figure2 {
    width: 36.0769230769vw;
  }
}
@media screen and (max-width: 740px) {
  .p-contact-cover__figure2 {
    top: 30px;
    right: 10px;
    width: 40vw;
  }
}
.p-contact-main {
  padding-top: 158px;
}
@media screen and (max-width: 740px) {
  .p-contact-main {
    padding-top: 80px;
  }
}
.p-contact-main__p1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 94px;
}
@media screen and (max-width: 740px) {
  .p-contact-main__p1 {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
}
.p-contact-main-tel {
  background: #dbf7ff;
  padding: 50px;
  text-align: center;
  font-weight: 700;
}
.p-contact-main-tel__p1 {
  color: #5eaaff;
  font-size: 3rem;
  margin-bottom: 30px;
  line-height: 1;
}
@media screen and (max-width: 740px) {
  .p-contact-main-tel__p1 {
    font-size: 2.2rem;
  }
}
.p-contact-main-tel__p2 {
  color: #444444;
  font-size: 4.8rem;
  margin-bottom: 0;
  line-height: 1;
}
@media screen and (max-width: 740px) {
  .p-contact-main-tel__p2 {
    font-size: 3.6rem;
  }
}
.p-contact-main-thanks {
  text-align: center;
}
.p-contact-main-thanks__p1 {
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 740px) {
  .p-contact-main-thanks__p1 {
    font-size: 3.2rem;
  }
}
.p-contact-main-thanks__p2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 740px) {
  .p-contact-main-thanks__p2 {
    text-align: left;
  }
}
.p-contact-main-thanks__nav {
  text-align: center;
  padding-top: 73px;
  padding-bottom: 125px;
}
.p-contact-inner {
  max-width: 1004px;
}
.p-contact-form {
  padding-top: 60px;
  padding-bottom: 125px;
}
.p-contact-form dl {
  display: grid;
  grid-template-columns: 285px auto;
  gap: 20px;
  margin-bottom: 24px;
}
@media screen and (max-width: 740px) {
  .p-contact-form dl {
    grid-template-columns: auto;
    gap: 10px;
  }
}
.p-contact-form dt {
  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: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  padding-top: 25px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 740px) {
  .p-contact-form dt {
    padding-top: 10px;
  }
}
.p-contact-form dd.zipcode {
  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;
  gap: 30px;
}
.p-contact-form .btn-zipcode {
  border: 1px solid #707070;
  color: #444444;
  font-size: 1.4rem;
  padding: 20px 43px 17px 18px;
  border-radius: 18px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 740px) {
  .p-contact-form .btn-zipcode {
    display: none;
  }
}
.p-contact-form .btn-zipcode::after {
  content: "";
  display: inline-block;
  width: 12.68px;
  height: 10.99px;
  margin-left: 10px;
  background: url(../imgs/_shared/arrow_pulldown_black.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
}
.p-contact-form input[type=text],
.p-contact-form input[type=email],
.p-contact-form input[type=tel],
.p-contact-form textarea,
.p-contact-form select {
  font-weight: 700;
  width: 100%;
  padding: 30px 18px;
}
@media screen and (max-width: 740px) {
  .p-contact-form input[type=text],
  .p-contact-form input[type=email],
  .p-contact-form input[type=tel],
  .p-contact-form textarea,
  .p-contact-form select {
    padding: 20px 20px;
  }
}
.p-contact-form input[type=text]:focus,
.p-contact-form input[type=email]:focus,
.p-contact-form input[type=tel]:focus,
.p-contact-form textarea:focus,
.p-contact-form select:focus {
  outline: 2px solid #00baff;
}
.p-contact-form input[type=text]::-webkit-input-placeholder, .p-contact-form input[type=email]::-webkit-input-placeholder, .p-contact-form input[type=tel]::-webkit-input-placeholder, .p-contact-form textarea::-webkit-input-placeholder, .p-contact-form select::-webkit-input-placeholder {
  color: #999999;
}
.p-contact-form input[type=text]::-moz-placeholder, .p-contact-form input[type=email]::-moz-placeholder, .p-contact-form input[type=tel]::-moz-placeholder, .p-contact-form textarea::-moz-placeholder, .p-contact-form select::-moz-placeholder {
  color: #999999;
}
.p-contact-form input[type=text]:-ms-input-placeholder, .p-contact-form input[type=email]:-ms-input-placeholder, .p-contact-form input[type=tel]:-ms-input-placeholder, .p-contact-form textarea:-ms-input-placeholder, .p-contact-form select:-ms-input-placeholder {
  color: #999999;
}
.p-contact-form input[type=text]::-ms-input-placeholder, .p-contact-form input[type=email]::-ms-input-placeholder, .p-contact-form input[type=tel]::-ms-input-placeholder, .p-contact-form textarea::-ms-input-placeholder, .p-contact-form select::-ms-input-placeholder {
  color: #999999;
}
.p-contact-form input[type=text]::placeholder,
.p-contact-form input[type=email]::placeholder,
.p-contact-form input[type=tel]::placeholder,
.p-contact-form textarea::placeholder,
.p-contact-form select::placeholder {
  color: #999999;
}
.p-contact-form input[type=submit] {
  width: auto;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 23px 110px 21px;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  background: #444444 url(../imgs/_shared/arrow_submit.svg) no-repeat center right/contain;
}
.p-contact-form input[type=submit]:disabled {
  opacity: 0.3;
  background-image: none;
}
.p-contact-form select,
.p-contact-form input[name=your-name],
.p-contact-form input[name=your-name-kana],
.p-contact-form input[name=your-tel] {
  max-width: 438px;
  width: 100%;
}
.p-contact-form input[name=your-zipcode] {
  max-width: 226px;
  width: 100%;
}
.p-contact-form input[type=checkbox] {
  width: auto;
  margin-right: 14px;
  margin-top: 4px;
}
.p-contact-form select {
  background: #fff url(../imgs/_shared/arrow_pulldown.svg) no-repeat right center/auto 100%;
}
.p-contact-form nav {
  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;
}
.p-contact-form nav .wpcf7-spinner {
  display: none;
}
.p-contact-form .acceptance-wrap {
  text-align: center;
  padding: 65px 0;
}
@media screen and (max-width: 740px) {
  .p-contact-form .acceptance-wrap {
    padding: 20px 0;
  }
}
.p-contact-form .acceptance-wrap label {
  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;
  font-weight: 700;
}
.p-contact-form .required {
  color: #fff;
  background: #00baff;
  font-weight: 700;
  border-radius: 100px;
  padding: 5px 8px;
  display: inline-block;
  font-size: 1.6rem;
}
@media screen and (max-width: 740px) {
  .p-contact-form .required {
    font-size: 1.3rem;
  }
}
.p-contact-form .any {
  font-weight: 700;
  border-radius: 100px;
  padding: 5px 8px;
  display: inline-block;
  border: 1px solid #707070;
  color: #666666;
  font-size: 1.6rem;
}
@media screen and (max-width: 740px) {
  .p-contact-form .any {
    font-size: 1.3rem;
  }
}
.p-contact-form .wpcf7-not-valid-tip {
  color: #dc3232;
  padding-top: 5px;
}

/* privacypolicy --------------------------*/
.p-privacypolicy {
  padding-top: 112px;
  padding-bottom: 100px;
}
@media screen and (max-width: 740px) {
  .p-privacypolicy {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.p-privacypolicy__ttl1 {
  margin-bottom: 187px;
}
@media screen and (max-width: 740px) {
  .p-privacypolicy__ttl1 {
    margin-bottom: 80px;
  }
}
.p-privacypolicy h2 {
  font-weight: 700;
  font-size: 3rem;
  color: #5eaaff;
  margin-bottom: 20px;
}
@media screen and (max-width: 740px) {
  .p-privacypolicy h2 {
    font-size: 2.4rem;
  }
}
.p-privacypolicy p,
.p-privacypolicy ol {
  line-height: 2;
  margin-bottom: 32px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 740px) {
  .p-privacypolicy p,
  .p-privacypolicy ol {
    font-size: 1.7rem;
  }
}
/*  ------------------------------------------------------------------------
Snow Monkey Forms
--------------------------------------------------------------------------*/
.snow-monkey-form {
  background: rgba(0, 0, 0, 0.03);
  padding: 50px;
  font-size: 1.8rem !important;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 740px) {
  .snow-monkey-form {
    padding: 30px 18px;
  }
}

.smf-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  font-size: 1.6rem;
}
@media screen and (max-width: 740px) {
  .smf-item {
    display: block;
    padding: 0;
    margin-bottom: 30px;
  }
}
.smf-item__col--label {
  width: 30%;
}
@media screen and (max-width: 740px) {
  .smf-item__col--label {
    width: 100%;
    padding-bottom: 10px;
    font-size: 3.7333333333vw !important;
  }
}
.smf-item__col--controls {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.smf-checkbox-control__label {
  position: relative;
  top: 2px;
}
.smf-checkboxes-control__control .smf-label {
  margin: 0 5px 5px 0;
}
.smf-action {
  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;
  padding-top: 30px;
}

button[type] {
  border: 1px solid #fff !important;
  padding: 15px 50px !important;
  background: #955f44 !important;
  font-size: 1.6rem;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16) !important;
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16) !important;
  color: #fff !important;
  border-radius: 100px !important;
  max-width: 300px !important;
  width: 100% !important;
  letter-spacing: 0.1em;
}

/* Utility */
/*  ------------------------------------------------------------------------
utility
--------------------------------------------------------------------------*/
.u-normal {
  font-weight: 400 !important;
}

.u-pdl65 {
  padding-left: 65px;
}

.u-pdr65 {
  padding-left: 65px;
}/*# sourceMappingURL=style.css.map */