@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap");
/* ==============================
         リセットCSS
============================== */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  list-style-type: none;
}

a {
  color: inherit;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  line-height: 1;
}

* {
  font-family: inherit;
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

img,
svg {
  height: auto;
  vertical-align: bottom;
  /* transfromによる画像のぼやけを防止 */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  /* 画像の保存を禁止 */
  pointer-events: none !important;
  -webkit-touch-callout: none !important;
}

*:not(.is-resized) > img,
svg {
  width: 100%;
}

blockquote,
q {
  quotes: none;
}

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

table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

input[type=submit],
input[type=button],
input[type=reset],
input[type=search] {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type=search]:focus {
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type=text],
input[type=email] {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type=text]:focus,
input[type=email]:focus,
button {
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* arguments inittial */
/* font style */
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* --------------------
    全体
-------------------- */
html {
  font-size: 10px;
}

body {
  position: relative;
  width: 100%;
  color: #000;
}
body #wrapper {
  overflow: hidden;
}

h1 {
  font-weight: bold;
}

h2 {
  font-weight: bold;
}

h3 {
  font-weight: bold;
}

h4 {
  font-weight: bold;
}

h5 {
  font-weight: bold;
}

h6 {
  font-weight: bold;
}

a {
  transition: 0.3s ease-out;
}
a:hover {
  opacity: 0.5;
}

@media (min-width: 721px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/*===== 要素幅系 =====*/
.-container {
  width: 108rem;
  margin: 0 auto;
  padding: 0 6.4rem;
}

._w-1250 {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 25px;
}

._full-width {
  margin-left: calc(50% - 50vw);
  margin-left: calc(50% - var(--vw, 1vw) * 50);
  margin-right: calc(50% - 50vw);
  margin-right: calc(50% - var(--vw, 1vw) * 50);
}

/*===== 表示系 =====*/
.visible-none {
  display: none !important;
}

@media (min-width: 721px) {
  ._tb {
    display: none !important;
  }
  ._tb-sp {
    display: none !important;
  }
  ._sp {
    display: none !important;
  }
}
@media (max-width: 720px) {
  ._pc {
    display: none !important;
  }
  ._pc-tb {
    display: none !important;
  }
  ._tb-only {
    display: none !important;
  }
}
/* --------------------
    ヘッダー
-------------------- */
.c-header {
  transition: 0.5s;
  position: fixed;
  z-index: 9999;
  top: 0;
  color: #fff;
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
}
body.scrollOver .c-header, body:not(.page-top) .c-header {
  color: #006087;
  background: rgba(255, 255, 255, 0.8);
}
.c-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 115rem;
  margin: 0 auto;
  padding: 2rem 0;
}
.c-header__logo {
  width: 13.9rem;
  margin-left: -0.6rem;
}
.c-header__menu {
  display: flex;
  gap: 5.6rem;
  margin-left: auto;
}
.c-header__menu li a {
  font-size: 1.8rem;
  line-height: 1.8;
  color: inherit;
}
.c-header__menu li a.-hovermenu {
  display: flex;
  align-items: center;
  gap: 0.4444444444em;
}
.c-header__menu li a.-hovermenu::after {
  display: block;
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: url("../img/common/icon_nav-arrow.svg") no-repeat;
  background-size: contain;
}
.c-header__contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.8;
  white-space: nowrap;
  color: #fff;
  margin-left: 8.2rem;
  padding: 0.5rem 3.4rem 0.6rem 3.3rem;
  background: #006087;
  border-radius: 50em;
}
.c-header__contact img {
  width: 1em;
  height: auto;
}

/* --------------------
    フッター
-------------------- */
.c-footer {
  background: #006087;
}
.c-footer__inner {
  max-width: 115rem;
  margin: 0 auto;
  padding: 2.2rem 0 2.3rem;
}
.c-footer__column {
  display: flex;
  gap: 11rem;
}
.c-footer__about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-footer__about__logo {
  display: block;
  width: 10.8rem;
}
.c-footer__about__address {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
  margin-top: 1.8rem;
}
.c-footer__about__contact {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.8;
  white-space: nowrap;
  color: #006087;
  margin-top: 3.4rem;
  padding: 0.5rem 3.4rem 0.6rem 3.3rem;
  background: #fff;
  border-radius: 50em;
}
.c-footer__about__contact img {
  width: 1em;
  height: auto;
}
.c-footer__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1.9rem 6.4rem;
}
.c-footer__menu__container {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
  margin-top: 7.6rem;
}
.c-footer__menu li a {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
}
.c-footer__copyright {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  color: #fff;
  margin-top: 0.5rem;
}

/*Regular*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/*Bold*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/Noto_Sans_JP/NotoSansJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/*Regular*/
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/Noto_Serif_JP/NotoSerifJP-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/*Bold*/
@font-face {
  font-family: "Noto Serif JP";
  src: url("../fonts/Noto_Serif_JP/NotoSerifJP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/*Regular*/
@font-face {
  font-family: "Noto Serif SC";
  src: url("../fonts/Noto_Serif_SC/NotoSerifSC-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/*Bold*/
@font-face {
  font-family: "Noto Serif SC";
  src: url("../fonts/Noto_Serif_SC/NotoSerifSC-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
html {
  font-size: 10px;
}
@media screen and (min-width: 721px) and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (max-width: 720px) {
  html {
    font-size: 2.6666666667vw;
  }
}

/* --------------------
    共通
-------------------- */
@media (min-width: 721px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 720px) {
  .pc {
    display: none !important;
  }
}
.container {
  max-width: 115rem;
  margin: 0 auto;
}

.toggle__checkbox {
  display: none;
}
.toggle__checkbox:checked ~ .toggle__contens {
  display: block;
}
.toggle__label {
  display: block;
  cursor: pointer;
}
.toggle__contens {
  display: none;
}

/* --------------------
    ページコンテンツ
-------------------- */
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS Pgothic", "Osaka", sans-serif, Helvetica, Helvetica Neue, Arial, Verdana;
  background: #fff;
}
body.fixed {
  position: fixed;
  left: 0;
}
body .p-container {
  position: relative;
  max-width: 144rem;
  margin: 0 auto;
}
body .p-container .p-contents {
  position: relative;
}
body .p-container .p-contents .totop {
  position: absolute;
  bottom: 8rem;
  right: 10.7rem;
  width: 2.2rem;
  display: block;
}

/* --------------------
    TOP
-------------------- */
body.page-top {
  transition: 2s;
  opacity: 0;
}
body.page-top.show {
  opacity: 1;
}
body.page-top .p-contents {
  background: #f4f4f4;
}
body.page-top .p-contents .l-top__fv__video {
  position: relative;
}
body.page-top .p-contents .l-top__fv__video h1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.page-top .p-contents .l-top__fv__video h1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.page-top .p-contents .l-top__fv__video video {
  width: 100%;
}
body.page-top .p-contents .l-top__toc {
  padding: 0 0 12rem;
}
body.page-top .p-contents .l-top__toc ul {
  display: flex;
  gap: 4.2rem;
}
body.page-top .p-contents .l-top__toc ul li a {
  display: block;
  margin: -4.2253521127%;
}
body.page-top .p-contents .l-top__support .toggle__checkbox:not(:checked) ~ .toggle__label {
  margin-bottom: 3.2rem;
}
body.page-top .p-contents .l-top__support .toggle__checkbox:not(:checked) ~ .toggle__label::before {
  transform: rotate(-90deg);
}
body.page-top .p-contents .l-top__support .toggle__label {
  position: relative;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1.5;
  background: #fff;
  padding: 3rem 9.5rem 3rem 8.1rem;
  border-radius: 2rem;
}
body.page-top .p-contents .l-top__support .toggle__label::before, body.page-top .p-contents .l-top__support .toggle__label::after {
  transition: 0.3s;
  position: absolute;
  top: calc(50% - 0.15rem);
  right: 9.5rem;
  display: block;
  content: "";
  width: 2.7rem;
  height: 0.3rem;
  background: currentColor;
}
body.page-top .p-contents .l-top__mv {
  background: #fff;
  padding: 8rem 0;
}
body.page-top .p-contents .l-top__mv__video {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
body.page-top .p-contents .l-top__mv__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------
    会社概要
-------------------- */
input[type=text],
input[type=tel],
input[type=email],
textarea {
  resize: vertical;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  padding: 1.3rem 1.5rem;
  background: #f8f8f8;
  border-radius: 0.5rem;
  border: 1px solid #d9d9d9;
}

textarea {
  min-height: calc(13.5em + 2.6rem);
}

.c-submit-btn {
  cursor: pointer;
  display: table;
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: center;
  color: #fff;
  min-width: 20rem;
  margin: 0 auto;
  padding: 2rem 7.2rem;
  background: #006087;
  border-radius: 50em;
}
.c-submit-btn input {
  display: none;
}

body.page-about .l-about__video {
  padding: 8rem 0;
}
body.page-about .l-about__video figure {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
body.page-about .l-about__video figure iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.page-about .l-about__contact__lead {
  font-size: 1.6rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 3.2rem;
}
body.page-about .l-about__contact form {
  max-width: 95rem;
  margin: 0 auto;
  padding: 9rem 0 8rem;
}
body.page-about .l-about__contact form .l-about__contact__input {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
body.page-about .l-about__contact form dl {
  display: flex;
  width: 100%;
}
body.page-about .l-about__contact form dl dt {
  font-size: 1.3rem;
  line-height: 4;
  flex-basis: 21rem;
}
body.page-about .l-about__contact form dl dd {
  flex-basis: 100%;
}
body.page-about .l-about__contact form .policy-check {
  width: 100%;
  max-width: 38rem;
  margin: 3.2rem auto 0;
  padding: 2rem 0;
  border-radius: 0.5rem;
  background: #ddedf3;
}
body.page-about .l-about__contact form .policy-check label {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
body.page-about .l-about__contact form .policy-check label p {
  font-size: 1.3rem;
  line-height: 1.8;
}
body.page-about .l-about__contact form .policy-check label p a {
  color: #006087;
}
body.page-about .l-about__contact form .l-about__contact__btn {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 5.6rem;
}
body.page-about .l-about__contact form .l-about__contact__btn .back {
  color: #1e1e1e;
  background: #d9d9d9;
}
body.page-about .l-about__contact form .l-about__contact__btn .c-submit-btn {
  margin: 0;
}
body.page-about .l-about__contact form.step-2 .l-about__contact__input {
  gap: 0;
}
body.page-about .l-about__contact form.step-2 dl {
  gap: 2.4rem;
}
body.page-about .l-about__contact form.step-2 dl dt,
body.page-about .l-about__contact form.step-2 dl dd {
  font-size: 1.3rem;
  line-height: 1.8;
  padding: 2rem 0;
  border-top: solid 1px #808080;
}
body.page-about .l-about__contact form.step-2 dl dt {
  color: #006087;
}
body.page-about .l-about__contact form.step-2 dl input,
body.page-about .l-about__contact form.step-2 dl textarea {
  display: none;
}
body.page-about .l-about__contact form.step-2 dl:last-child dt,
body.page-about .l-about__contact form.step-2 dl:last-child dd {
  border-bottom: solid 1px #808080;
}
body.page-about .l-about__contact .c-submit-btn.totop-btn {
  margin: 8rem auto 10.4rem;
}

/* --------------------
    プラポリ
-------------------- */
body.page-privacy .p-contents {
  padding: 6rem 0 12rem;
}
body.page-privacy h1 {
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 2em;
}
body.page-privacy .l-privacy__contents p {
  font-size: 1.4rem;
  line-height: 1.6;
}
body.page-privacy .l-privacy__contents p a {
  text-decoration: underline;
  color: #006087;
}
/*# sourceMappingURL=common.css.map */
