@charset "UTF-8";
.js-text-effect span {
  display: inline-block;
  opacity: 0;
  visibility: visible;
  transform: rotateY(90deg);
}

.opening {
  width: 100%;
  height: 100vh;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opening__mask--upper {
  max-width: 100%;
  width: 100%;
  height: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #09445c;
  z-index: 1;
  transform-origin: top center;
}

.opening__mask--under {
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #09445c;
  z-index: 1;
  transform-origin: bottom center;
}

.opening__line {
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  transform: scaleX(0);
  background-color: #fff;
  z-index: 2;
}

.opening__logo {
  display: block;
  width: 100%;
  height: auto;
  z-index: 2;
  opacity: 0;
}

@media screen and (min-width:768px) {
  .opening__logo {
    width: 500px;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  color: #333;
}
body.is-fixed {
  overflow: hidden;
}

@media screen and (max-width:767px) {
  .sp__none {
    display: none;
  }
}

@media screen and (min-width:768px) {
  .pc__none {
    display: none;
  }
}

.button {
  display: flex;
  align-items: center;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: auto;
}
.button--bg {
  background-color: #fff;
}
.button--bg .button__text {
  color: #09445c;
}
.button--border {
  border: 1px solid #fff;
}
.button--border .button__text {
  color: #fff;
}
.button__icon {
  width: 24px;
  display: flex;
  align-items: center;
}
.button__icon-path {
  fill: #fff;
}
.button__icon-path--contact {
  fill: #09445c;
}
.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

.header {
  background-color: rgba(9, 68, 92, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header__container {
  position: relative;
  width: 100%;
  height: 7vh;
}
.header__logo {
  display: inline-block;
  padding: 14px 24px;
  font-size: 20px;
  color: #fff;
}
.header__logo img {
  width: 50px;
}
.header__contents {
  display: none;
  height: calc(100vh - 88px);
  border-top: 1px solid #fff;
  padding-top: 60px;
}
.header__nav-item + .header__nav-item {
  margin-top: 24px;
}

/*------------------------------------------------------
  ハンバーガーメニュー
------------------------------------------------------*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: -120%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: rgba(9, 68, 92, 0.9);
  /*動き*/
  transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*------------------------------------------------------

------------------------------------------------------*/
.fv {
  position: relative;
}
.fv::before {
  content: "";
  background: inherit;
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.fv__contents {
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 100%;
  height: 209px;
  background: url(../img/sp/bg_fv.png) center center no-repeat;
  background-size: 100% auto;
  padding: 32px;
}
.fv__heading-main {
  display: block;
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #09445c;
}
.fv__heading-sub {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: #09445c;
}

.section {
  padding: 48px 0;
}
.section__inner {
  padding: 0 32px;
  max-width: 500px;
  margin: auto;
}
.section__head {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.section__head--center {
  text-align: center;
}
.section__head-main {
  font-size: 40px;
  letter-spacing: 0.1em;
  color: #09445c;
}
.section__head-main-name {
  font-size: 32px;
  letter-spacing: 0.1em;
  display: block;
  border-bottom: 1px solid #09445c;
}
.section__head-sub {
  font-size: 11px;
  color: #09445c;
}
.section__lead-text {
  font-size: 16px;
  line-height: 1.6;
}
.section__contents {
  margin-top: 40px;
}

.service {
  background: url(../img/pc.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
.service::before {
  content: "";
  background: inherit;
  filter: blur(5px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.service__item + .service__item {
  margin-top: 40px;
}
.service__item-img {
  text-align: center;
  margin-bottom: 14px;
}
.service__item-name {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.service__item-text {
  font-size: 14px;
  line-height: 1.6;
}
.service .section__inner {
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 32px;
}

.works {
  background-color: #e8f9ff;
}
.works__list {
  margin-bottom: 40px;
}
.works__item + .works__item {
  margin-top: 40px;
}
.works__item-img {
  margin-bottom: 12px;
}
.works__item-img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.works__item-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  margin-top: 10px;
}
.works__item-link {
  text-decoration: underline;
  font-size: 14px;
  color: #09445c;
  font-weight: bold;
}
.works__item-text {
  margin-top: 10px;
}

.about__container {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
}
.about__img {
  margin-bottom: 32px;
}
.about__img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.about__text {
  font-size: 16px;
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 10px;
}
.about__text-contents {
  align-items: center;
}

.flow__list {
  margin-top: 64px;
}
.flow__item {
  position: relative;
  border: 1px solid #34697f;
  padding: 46px 16px 24px;
}
.flow__item + .flow__item {
  margin-top: 46px;
}
.flow__item-num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background-color: #09445c;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow__item-img {
  margin-bottom: 24px;
  text-align: center;
}
.flow__item-name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.flow__item-text {
  font-size: 14px;
  line-height: 1.6;
}

.message {
  margin-top: 60px;
}
.message__img {
  margin-bottom: 32px;
}
.message__img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.message__lead {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.message__lead-title {
  font-size: 24px;
  letter-spacing: 0.1em;
}
.message__list {
  margin-bottom: 20px;
}
.message__list-item::before {
  content: ""; /* 空の要素作成 */
  width: 10px; /* 幅指定 */
  height: 10px; /* 高さ指定 */
  display: inline-block; /* インラインブロックにする */
  background-color: #09445c; /* 背景色指定 */
  border-radius: 50%; /* 要素を丸くする */
  position: relative; /* 位置調整 */
  top: -1px; /* 位置調整 */
  margin-right: 5px; /* 余白指定 */
}
.message__text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.page-bottom {
  color: #fff;
}
.page-bottom__item {
  padding: 40px;
}
.page-bottom__item--contact {
  background-color: #09445c;
}
.page-bottom__item .footer__text > span {
  color: #fff;
}

.footer {
  text-align: center;
  padding: 10px;
}
.footer__copy {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
}

/*------------------------------------------------------
  // pc
------------------------------------------------------*/
@media screen and (min-width:768px) {
  .wrapper {
    display: flex;
  }
  .main {
    flex-basis: 80%;
  }
  .main__thanks {
    flex-basis: 100%;
  }
  .header {
    position: relative;
    flex-basis: 20%;
    padding: 50px 20px;
    background-color: #09445c;
  }
  .header__container {
    width: 160px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }
  .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .header__logo img {
    width: 100%;
  }
  .header__menu-button {
    display: none;
  }
  .header__contents {
    display: block;
    border: none;
  }
  .button {
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .button:hover {
    background-color: #fff;
  }
  .button:hover .button__icon-path {
    fill: #09445c;
  }
  .button:hover .button__text {
    color: #09445c;
  }
  .button--bg {
    color: #09445c;
  }
  .button--bg:hover {
    opacity: 0.7;
  }
  .section__inner {
    max-width: 944px;
  }
  .section__head {
    margin-bottom: 24px;
  }
  .section__head-main {
    font-size: 60px;
  }
  .fv__contents {
    background: url(../img/bg_fv.png) center center no-repeat;
    background-size: 100% auto;
    bottom: 100px;
    left: 0;
    max-width: 627px;
    height: 174px;
    padding-top: 24px;
    padding-left: 96px;
  }
  .service__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .service__item + .service__item {
    margin-top: 0;
  }
  .works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8%;
  }
  .works__item + .works__item {
    margin-top: 0;
  }
  .about__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .flow__item + .flow__item {
    margin-top: 0;
  }
  .message__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    align-items: center;
  }
  .page-bottom__item {
    padding: 54px 10px;
  }
  .page-bottom .footer__text > span {
    color: #fff;
  }
}
/*------------------------------------------------------
  // tb
------------------------------------------------------*/
@media screen and (min-width:768px) and (max-width:1024px) {
  .section__head-main {
    font-size: 54px;
  }
  .fv__contents {
    bottom: 50%;
    transform: translateY(50%);
  }
  .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
}
.video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/*------------------------------------------------------
  form
------------------------------------------------------*/
.contact-form {
  background: #e8f9ff;
  color: #09445c;
}

/* formタグ：フォーム全体 */
.contact_form {
  margin: 0 auto;
  padding-bottom: 60px;
}

.form__contents {
  max-width: 700px;
  margin: 0 auto;
}

/* ------------------------------------ */
/* フォーム共通書式 */
/* ------------------------------------ */
/* labelタグ：項目のラベルと入力欄を囲うタグ */
.form_block {
  display: grid;
  grid-template-columns: 16em 1fr;
  border-top: 1px dotted #606060;
  padding: 1em;
  align-items: center;
  height: 8em;
}

/* 必須アイコン */
.form-required {
  margin-left: 2em;
  color: #fff;
  background-color: #34697f;
  padding: 2px 8px;
  font-size: 0.7rem;
  border-radius: 3px;
}

/* 入力欄 */
.form_field {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5em 1em;
}

/* ------------------------------------ */
/* ラジオボタン専用 */
/* ------------------------------------ */
.label_radio {
  margin-right: 4em;
}

.radio_span {
  margin-left: 0.5em;
}

.form_radio-wrapper {
  display: flex;
  flex-direction: column;
}

/* ------------------------------------ */
/* checkbox専用 */
/* ------------------------------------ */
.label_checkbox + .checkbox {
  margin-left: 2em;
}

.checkbox_span {
  margin-left: 0.5em;
}

/* ------------------------------------ */
/* セレクト：プルダウン専用 */
/* ------------------------------------ */
.select_block {
  padding-left: 1em;
}

/* ------------------------------------ */
/* 段落入力 */
/* ------------------------------------ */
.form_block.--textfield {
  align-items: start;
  border-bottom: 1px dotted #606060;
  height: auto;
}

.form_field.--textfield {
  height: 20em;
  resize: none;
}

/* ------------------------------------ */
/* 送信ボタン */
/* ------------------------------------ */
.form-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12em;
  height: 3em;
  font-size: 1rem;
  background-color: #34697f;
  border-radius: 5px;
  color: #fff;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2em;
  cursor: pointer;
}

/* ------------------------------------ */
/* 個人情報保護 */
/* ------------------------------------ */
.privacy {
  text-align: center;
  font-size: 0.8rem;
  margin-top: 1em;
}

/* 送信後のサンクスページ専用 */
/* ------------------------------------ */
.thanks {
  margin: 100px;
}
.thanks P {
  color: #09445c;
  font-weight: bold;
  text-align: center;
}

.section-thanks {
  padding: 100px 40px;
}

.thanks_h1 {
  font-size: 2.8rem;
  text-align: center;
  color: #09445c;
  margin-bottom: 40px;
}

.thanks_a {
  background-color: #09445c;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.8rem;
  width: 12em;
  height: 3em;
}

@media screen and (max-width:767px) {
  .form_block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 10em;
  }
  .form_label {
    margin-bottom: 20px;
  }
  .form_block.--textfield {
    align-items: center;
    height: 15em;
  }
  .form_field.--textfield {
    width: 250px;
  }
}/*# sourceMappingURL=style.css.map */