@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.pc {
  display: none;
}
@media (min-width: 992px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media (min-width: 992px) {
  .sp {
    display: none;
  }
}

/*1.0rem=10px*/
html {
  font-size: 62.5%;
}

body {
  background-color: #ffffff;
  color: #000;
  font-weight: 500;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  overflow-x: hidden;
}

img {
  width: 100%;
}

button {
  background-color: transparent;
  cursor: pointer;
}

em {
  font-style: normal;
}

input,
label,
a {
  cursor: pointer;
}

a {
  transition: all 0.2s linear 0s;
  color: #000;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

/***********************************************
header
************************************************/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
}

.l-header__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
@media (min-width: 992px) {
  .l-header__items {
    height: auto;
    height: 80px;
    padding-left: 10px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/***********************************************
header              左               ロゴ*****/
.l-header__left {
  margin-left: 10px;
  margin-right: auto;
}

a.l-header__logo {
  transition: all 0.2s linear 0s;
  display: block;
  width: 150px;
  margin-left: 20px;
}
a.l-header__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  a.l-header__logo {
    width: 200px;
    margin-left: 30px;
  }
}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__nav-items li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: #ffffff;
}

.l-header__nav-items li.current a,
.l-header__nav-items li a:hover {
  opacity: 0.7;
}

.l-header__nav-items li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: -10px;
  left: 0;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background: #ffffff;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__nav-items li.current a::after,
.l-header__nav-items li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/***********************************************
header       右            *****/
.l-header__nav-items ul {
  display: none;
}
@media (min-width: 992px) {
  .l-header__nav-items ul {
    display: flex;
  }
}
@media (min-width: 992px) {
  .l-header__nav-items {
    display: flex;
  }
}

.l-header__insta-icon {
  display: block;
  width: 34px;
  padding: 0;
  margin: 23px 14px 0 0;
}
.l-header__insta-icon.--sp {
  margin-top: 0px;
  position: absolute;
  top: 17px;
  right: 70px;
}
@media (min-width: 992px) {
  .l-header__insta-icon.--sp {
    display: none;
  }
}

.l-header__nav-items ul > li {
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (min-width: 992px) {
  .l-header__nav-items ul > li {
    padding: 30px 18px;
    font-size: 18px;
  }
}
.l-header__nav-items ul > li a {
  font-family: "oswald";
  transition: all 0.2s linear 0s;
  color: #333;
}
.l-header__nav-items ul > li a:hover {
  opacity: 0.7;
}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.l-header__hamburger-menu li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  color: #000000;
}

.l-header__hamburger-menu li.current a,
.l-header__hamburger-menu li a:hover {
  opacity: 1 !important;
}

.l-header__hamburger-menu li a::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 4px;
  left: 35%;
  transform: translateX(-50%);
  /*線の形状*/
  width: 30%;
  height: 3px;
  background: #f06600;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transform: scale(0, 1);
  /*X方向0、Y方向1*/
  transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__hamburger-menu li.current a::after,
.l-header__hamburger-menu li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

/***********************************************
ハンバーガーメニュー
************************************************/
.drawer-icon {
  width: 70px;
  height: 70px;
  position: fixed;
  top: -6px;
  right: 0;
  z-index: 1000;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  background: transparent;
  display: block;
  background-color: #f06600;
}
@media (min-width: 992px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-bars {
  display: inline-block;
  width: 54px;
  height: 32.75px;
  position: relative;
  vertical-align: bottom;
  width: 33px;
  height: 12.75px;
}

.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #ffffff;
  width: 100%;
  height: 2.25px;
  border-radius: 20px;
  transition: all 0.5s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 10.25px;
}
.drawer-bar:nth-of-type(3) {
  top: 20.5px;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(-45deg);
  background: #ffffff;
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(45deg);
  background: #ffffff;
}

.drawer-content-cover {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transform: translateX(0);
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: all 0.5s linear 0s;
  background: #FCF0F0;
  z-index: 999;
  padding-top: 50px;
}
.drawer-content-cover.is-checked {
  visibility: visible;
  opacity: 1;
}
.drawer-content-cover p {
  color: #3C3C3C;
}

.l-header__hamburger-menu ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 992px) {
  .l-header__hamburger-menu ul {
    width: 300px;
    max-width: 100%;
  }
}
.l-header__hamburger-menu ul li a {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 26px 17px;
  color: #333;
  transition: all 0.2s linear 0s;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
}
.l-header__hamburger-menu ul li a:hover {
  opacity: 0.7;
}

.menu-dorawer-container li:last-child {
  border: solid 2px #fff;
  background-color: #fff;
  margin: 10px 0;
}
.menu-dorawer-container li:last-child a {
  font-weight: bold;
  color: #002a52;
}
.menu-dorawer-container li:nth-last-child(2) {
  border: solid 1px #fff;
  margin: 10px 0 30px 0;
}

.l-header__hamburger-menu ul li {
  font-size: 18px;
}

.l-header__foot-flex ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
}
.l-header__foot-flex ul li a {
  display: block;
  padding: 30px 8px;
  color: #cbcbcb;
  font-size: 11px;
}

/**************?
footer
/*************/
.l-footer a {
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.2s linear 0s;
  color: #fff;
  padding: 10px 0;
  display: block;
  font-weight: 400;
}
.l-footer a:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer {
    display: block;
    width: 100%;
    color: #ffffff;
    z-index: 900;
    font-size: 16px;
    background-color: #f06600;
  }
}

.l-footer__nav-items {
  width: 75%;
}
.l-footer__nav-items ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px auto 0;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul {
    margin: 0 auto 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.l-footer__nav-items ul > li {
  display: block;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul > li {
    padding: 10px 40px;
  }
}

.l-footer__copyright {
  font-size: 10px;
  color: #ffffff;
  display: block;
  font-weight: 400;
  padding: 10px 0 90px;
  background-color: #000;
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.6px;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    font-size: 15px;
    padding: 10px 70px 10px 0;
  }
}

.l-footer__vertical-line {
  width: 1px;
  height: 110px;
  background-color: #b2b2b2;
}

/***********************************************
    cv ボタン　最下部固定
    ************************************************/
.l-footer-cv {
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 800;
  font-size: 15px;
  font-weight: 700;
  background-color: #ffffff;
  height: 75px;
  width: 100%;
}
@media (min-width: 992px) {
  .l-footer-cv {
    display: none;
  }
}

a.l-footer-cv__btn {
  width: 50%;
  padding: 27px;
  text-align: center;
  border-right: solid 1px #fff;
  line-height: 1.5;
  color: #fff !important;
  display: block;
  width: 50%;
  height: 100%;
  background-color: #f06600;
  padding: 27px 0px;
  font-size: 14px;
}
a.l-footer-cv__btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  position: absolute;
  top: 42%;
  right: 10px;
}
@media (min-width: 992px) {
  a.l-footer-cv__btn {
    width: 320px;
    height: 75px;
    right: 0;
    background-color: #f06600;
    color: #333;
    font-size: 16px;
    padding: 25px;
  }
  a.l-footer-cv__btn::after {
    border-color: #f06600;
    right: 20px;
  }
  a.l-footer-cv__btn.--pc {
    padding: 25px;
    background-color: #f06600;
    color: #fff;
  }
  a.l-footer-cv__btn.--pc::after {
    border-color: #fff;
  }
}

@media (min-width: 992px) {
  .l-footer__text-small {
    font-size: 11px;
  }
}

.l-footer-cv__sp {
  display: inline;
}
@media (min-width: 992px) {
  .l-footer-cv__sp {
    display: none;
  }
}

.l-footer__wrapper {
  margin-top: 40px;
  color: #fff;
}

.l-footer__flex {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 0;
  }
}

.l-footer__nav {
  color: #fff;
}

.l-footer__nav {
  margin-top: 30px;
  padding: 15px 0;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}
.l-footer__nav ul {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__nav ul {
    display: flex;
    justify-content: center;
  }
}
.l-footer__nav.--foot {
  border: none;
}

.l-footer__nav ul > li {
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (min-width: 992px) {
  .l-footer__nav ul > li {
    padding: 30px 15px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .l-footer__nav ul > li {
    padding: 30px 30px;
    font-size: 22px;
  }
}
.l-footer__nav ul > li a {
  font-family: "oswald";
  transition: all 0.2s linear 0s;
  color: #fff;
}
.l-footer__nav ul > li a:hover {
  opacity: 0.7;
}

.l-footer__logo {
  transition: all 0.2s linear 0s;
  display: block;
}
.l-footer__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  .l-footer__logo {
    width: 99px;
  }
}

.l-footer__info {
  margin: 16px 0 9px 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: normal;
  text-align: left;
  color: #333;
}

.l-footer__contact-bg {
  padding: 30px 0 20px;
  margin: 30px 0 0 0;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .l-footer__contact-bg {
    padding: 80px 0;
    margin: 0;
  }
}

.c-inner__center {
  min-width: 330px;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .c-inner__center {
    width: 80%;
  }
}

.c-inner__left {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 992px) {
  .c-inner__left {
    width: 80%;
  }
}

.c-inner__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.c-heading {
  text-align: center;
  margin: 65px 0 20px;
}

.c-heading__jp {
  font-size: 35px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -2px;
  text-align: center;
  color: #000;
  position: relative;
}
.c-heading__jp::before {
  content: "";
  background-image: url(../img/logo-heading.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (min-width: 992px) {
  .c-heading__jp::before {
    width: 74px;
    height: 74px;
  }
}
.c-heading__jp.--contact {
  letter-spacing: 0em;
  color: #fff;
}
.c-heading__jp.--contact::before {
  background-image: none;
}
.c-heading__jp.--contact + .c-heading__en {
  letter-spacing: 0em;
  color: #fff;
  padding: 5px 0;
}

.c-heading__en {
  display: inline-block;
  margin-top: -10px;
  font-size: 18px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1px;
  text-align: center;
  color: #000;
}

.c-icon {
  position: relative;
}
.c-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.c-icon::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

/***********************************************
左から右へグイっと登場
************************************************/
.c-icon__from-left {
  animation: fadeIn 1s cubic-bezier(0.9, 0, 0.2, 1) 0.5s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-icon__keyword {
  position: absolute;
  color: transparent;
}

/***********************************************
モノクロ　グーグルマップ
************************************************/
.c-icon__google-map {
  width: 100%;
  height: 400px;
  margin: 0 0 60px;
}
.c-icon__google-map iframe {
  width: 100%;
  height: 100%;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media (min-width: 992px) {
  .c-icon__google-map {
    margin: 0 0 60px;
  }
}

/***********************************************
read more　線の色が変わる
************************************************/
/*== 線の上を別の線が伸びる */
.c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 10px 10px 10px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

/*線の設定*/
.c-button__more::before,
.c-button__more::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #333;
  width: 50%;
  height: 2px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

.c-button__more.--white::before,
.c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}

/*hover時に伸びる線の形状*/
.c-button__more::after {
  width: 0;
  background: #ffffff;
}

.c-button__more.--white::after {
  background: #333;
}

/*hover時に100%に伸びる*/
.c-button__more:hover::after {
  width: 50%;
}

/*矢印の設定*/
.c-button__more span {
  position: relative;
}

.c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.c-button__more.--white span::after {
  border-color: #fff;
}

/*hover時に矢印が移動*/
.c-button__more:hover span::after {
  right: -41px;
}

.--side {
  /*== 線の上を別の線が伸びる */
  /*線の設定*/
  /*hover時に伸びる線の形状*/
  /*hover時に100%に伸びる*/
  /*矢印の設定*/
  /*hover時に矢印が移動*/
}
.--side .c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 80px 10px 20px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
@media (min-width: 992px) {
  .--side .c-button__more {
    padding-right: 137px;
  }
}
.--side .c-button__more::before,
.--side .c-button__more::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 105px;
  background: #5d595a;
  width: 24%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .--side .c-button__more::before,
  .--side .c-button__more::after {
    bottom: 23px;
    left: 129px;
  }
}
.--side .c-button__more.--white::before,
.--side .c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}
.--side .c-button__more::after {
  width: 0;
  background: #ffffff;
}
.--side .c-button__more.--white::after {
  background: #000000;
}
.--side .c-button__more:hover::after {
  width: 24%;
}
.--side .c-button__more span {
  position: relative;
}
.--side .c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.--side .c-button__more.--white span::after {
  border-color: #fff;
}
.--side .c-button__more:hover span::after {
  right: -41px;
}

.p-top__mv {
  padding: 300px 20px 100px;
  background-image: url(../img/mv2.jpg);
  background-size: cover;
}
@media (min-width: 992px) {
  .p-top__mv {
    padding: 300px 0 150px;
    max-width: none;
    margin: 0 auto 0 0;
  }
}
.p-top__mv.--1 {
  background-image: url(../img/mv1.jpg);
}

.p-top__title {
  margin: 0 auto;
  text-shadow: 0 0 11px #000;
  font-family: "Shippori Mincho B1", serif;
  font-size: 35px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: -6px;
  text-align: center;
  color: #fff;
  position: relative;
}
@media (min-width: 800px) {
  .p-top__title {
    letter-spacing: -8px;
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .p-top__title {
    font-size: 62.5px;
    letter-spacing: -8px;
  }
}
.p-top__title::before {
  content: "";
  background-image: url(../img/title-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 992px) {
  .p-top__title::before {
    width: 346px;
    height: 346px;
  }
}

.text-style-1,
.text-style-2 {
  font-size: 46px;
}
@media (min-width: 800px) {
  .text-style-1,
  .text-style-2 {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .text-style-1,
  .text-style-2 {
    font-size: 67.5px;
  }
}

.Create-the-One-of-Glitter-life {
  font-family: "Meow Script", system-ui;
  font-size: 26px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.05px;
  text-align: center;
  color: #fff;
}
@media (min-width: 992px) {
  .Create-the-One-of-Glitter-life {
    font-size: 35px;
  }
}

/***********************************************
代表メッセージ
************************************************/
.p-top__about {
  position: relative;
  display: block;
  height: 100%;
}

.p-top__about-bg {
  padding: 10px 0 30px;
}
@media (min-width: 992px) {
  .p-top__about-bg {
    padding: 40px 0 100px;
  }
}

.p-top__about-texts {
  display: block;
  width: 100%;
  padding: 80px 0 20px;
}
@media (min-width: 992px) {
  .p-top__about-texts {
    margin-left: 50px;
    width: 50%;
    padding: 0px 0;
  }
}
.p-top__about-texts h3 {
  flex-grow: 0;
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: -1px;
  text-align: left;
  color: #333;
  margin-top: -20px;
}
@media (min-width: 992px) {
  .p-top__about-texts h3 {
    font-size: 30px;
    margin-top: 0;
    padding: 30px 0 0;
  }
}
.p-top__about-texts p {
  flex-grow: 0;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: -1px;
  text-align: left;
  color: #333;
  font-size: 15px;
  margin: 10px 0 20px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .p-top__about-texts p {
    font-size: 18px;
    height: 261px;
    margin-top: 20px;
    margin-bottom: 50px;
  }
}

.p-top__about-flex {
  display: block;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .p-top__about-flex {
    margin-top: 40px;
    display: flex;
  }
}

.p-top__about-img {
  width: 90%;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 992px) {
  .p-top__about-img {
    flex: 1;
    margin-left: calc(50% - 50vw);
  }
}
.p-top__about-img::before {
  z-index: -1;
  position: absolute;
  bottom: -15%;
  left: -6%;
  content: "";
  width: 100%;
  max-width: 922px;
  height: 232px;
  background-color: #dfdfdf;
}
@media (min-width: 992px) {
  .p-top__about-img::before {
    width: 922px;
    position: absolute;
    bottom: -18%;
    left: 25%;
  }
}

/***********************************************
NEWS
************************************************/
.p-top__news-section {
  padding: 0px 0 50px;
}
@media (min-width: 992px) {
  .p-top__news-section {
    padding: 30px 0 50px;
  }
}

.p-top__news-flex-pc {
  display: block;
}
@media (min-width: 992px) {
  .p-top__news-flex-pc {
    display: flex;
  }
}

.p-top__news-title-orange {
  width: 100%;
  flex-shrink: 0;
  background-color: #f06600;
  position: relative;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}
@media (min-width: 992px) {
  .p-top__news-title-orange {
    width: 242px;
    height: auto;
    min-height: 209px;
    padding: 0;
  }
}
.p-top__news-title-orange .c-heading {
  margin: 0;
}
.p-top__news-title-orange .c-heading__jp {
  font-size: 35px;
}
.p-top__news-title-orange .c-heading__jp::before {
  background-image: url(../img/news-bg.png);
  top: 70%;
}

.p-top__news-black-bg {
  background-color: #000;
  width: 100%;
  margin-top: 5px;
  margin-left: 0px;
  padding: 40px 4%;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .p-top__news-black-bg {
    margin-top: 0;
    margin-left: 10px;
  }
}

.p-top__news-item {
  display: block;
  padding: 10px 0 10px;
}
.p-top__news-item .p-top__news-date,
.p-top__news-item .p-top__news-text {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 992px) {
  .p-top__news-item {
    display: flex;
    align-items: center;
  }
}

.p-top__news-date {
  margin-right: 20px;
}

/***********************************************
p-top__service-section
************************************************/
.p-top__contents-cards {
  display: block;
  margin: 0 auto;
  width: 330px;
}
@media (min-width: 992px) {
  .p-top__contents-cards {
    width: auto;
    display: flex;
    justify-content: space-between;
  }
}

.p-top__card {
  width: 330px;
  height: 405px;
  background-image: url(../img/card1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  position: relative;
  flex-shrink: 0;
  display: block;
}
.p-top__card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 64px;
  width: 64px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: #f06600;
}
.p-top__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 330px;
  height: 405px;
  clip-path: polygon(0 78%, 100% 67%, 100% 100%, 0% 100%);
  background-color: rgba(0, 0, 0, 0.4);
}
.p-top__card.--service {
  margin-top: 50px;
}
@media (min-width: 992px) {
  .p-top__card.--service {
    margin-top: 160px;
  }
}
.p-top__card.--company {
  margin: 80px 0;
  background-image: url(../img/card2.jpg);
}
.p-top__card.--recruit {
  margin: 0 0 90px;
  background-image: url(../img/card3.jpg);
}
@media (max-width: 767px) {
.p-top__card.--company {
    margin: 30px 0;
	}
}
@media (min-width: 992px) {
  .p-top__card.--recruit {
    margin: 0 0 160px;
  }
}

.p-top__card-title {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 50;
  text-align: center;
}
.p-top__card-title h2 {
  font-size: 32px;
}
.p-top__card-title span {
  display: inline-block;
  font-size: 18px;
  padding: 5px 0 0;
}

.p-top__blog-card {
  width: 100%;
  color: #000;
}
@media (min-width: 992px) {
  .p-top__blog-card {
    width: 32%;
    font-size: 14px;
    line-height: 1.4;
  }
}

.p-top__blog-cat {
  display: inline-block;
  text-align: center;
  min-width: 108px;
  margin-left: 10px;
  padding: 6px 10px;
  background-color: #f06600;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media (min-width: 992px) {
  .p-top__blog-cat {
    padding: 3px 10px;
  }
}

.p-top__blog-date {
  font-size: 14px;
  display: inline-block;
  font-weight: 700;
}

.p-top__news-upper-info {
  margin: 7px 0;
  flex-grow: 1;
  padding: 5px 0;
}
@media (min-width: 992px) {
  .p-top__news-upper-info {
    padding: 0;
  }
}

.p-top__blog-title {
  flex-grow: 1;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 30px;
}

.p-top__blog-cards {
  display: block;
}
@media (min-width: 992px) {
  .p-top__blog-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
  }
}

.p-top__blog-featured-img {
  aspect-ratio: 100/54;
}
.p-top__blog-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.p-top__btn-blog-more {
  display: inline-block;
  padding: 15px 40px;
  background-color: #000;
  margin: 20px 0 15px;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 25px;
  letter-spacing: 0.48px;
  text-align: left;
  color: #fff;
}
@media (min-width: 992px) {
  .p-top__btn-blog-more {
    margin: 50px 0 50px;
  }
  .p-top__about-bg .p-top__btn-blog-more {
    margin: 120px 0 50px;
  }
}

.p-top__access-address {
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.48px;
  text-align: center;
  color: #282828;
  margin: 10px 0 20px;
}
@media (min-width: 992px) {
  .p-top__access-address {
    margin: 30px 0 20px;
    font-size: 16px;
  }
}

.p-top__contact-bg {
  background-image: url(../img/contact-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  padding: 1px 0px 35px;
}
@media (min-width: 992px) {
  .p-top__contact-bg {
    padding: 1px 0px 65px;
  }
}

.p-top__contact-boxes {
  display: block;
  margin: 0px auto;
}
@media (min-width: 992px) {
  .p-top__contact-boxes {
    margin: 0;
    display: flex;
    justify-content: space-around;
  }
}

.p-top__contact-box {
  width: 330px;
  height: 160px;
  padding: 0 0 16px;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 30px auto;
  display: block;
  color: #000;
}
@media (min-width: 992px) {
  .p-top__contact-box {
    width: 38vw;
    max-width: 485px;
    margin: 0;
    color: #000;
  }
}

.p-top__contact-orange {
  height: 53px;
  padding: 10px 0px;
  background-color: #f06600;
  font-size: 22px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .p-top__contact-orange {
    width: 100%;
    max-width: 485px;
    margin: 0;
    font-size: 25px;
  }
}

.p-top__contact-content {
  font-weight: 800;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1.05px;
  text-align: center;
  color: #282828;
  position: relative;
  display: inline-block;
  padding: 0 0 0 40px;
}
.p-top__contact-content::before {
  content: "";
  background-image: url(../img/icon-tel.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  position: absolute;
  transform: translateY(-50%);
}
.p-top__contact-content.--tel {
  font-size: 36px;
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  .p-top__contact-content.--tel {
    font-size: 38px;
  }
}
.p-top__contact-content.--tel::before {
  content: "";
  background-image: url(../img/icon-tel.png);
  top: 57%;
  left: 0;
  width: 30px;
  height: 28px;
}
@media (min-width: 992px) {
  .p-top__contact-content.--tel::before {
    width: 47px;
    height: 42px;
    top: 50%;
    left: -16px;
  }
}
.p-top__contact-content.--web {
  font-size: 22px;
  margin: 10px 0 0;
}
@media (min-width: 992px) {
  .p-top__contact-content.--web {
    font-size: 27px;
    margin: 20px 0 0;
  }
}
.p-top__contact-content.--web::before {
  content: "";
  background-image: url(../img/icon-pc.png);
  width: 50px;
  height: 36px;
  top: 50%;
  left: -16px;
  font-size: 29px;
}
@media (min-width: 992px) {
  .p-top__contact-content.--web::before {
    width: 50px;
    height: 36px;
  }
}

.p-top__contact-caption {
  font-size: 16px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: 0.48px;
  text-align: center;
  color: #282828;
  display: inline-block;
}






/* 768px以上の時にforsp(スマホ用)を非表示 */
@media screen and (min-width:768px){.forsp {display: none!important;}}

/* 767px以下の時にforpc(ＰＣ用)を非表示 */
@media screen and (max-width:767px){.forpc {display: none!important;}}

