@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 {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
}
a:hover {
  opacity: 0.7;
}

/***********************************************
header
************************************************/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  color: #000;
  background-color: #2DAF76;
}

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

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

a.l-header__logo {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  display: block;
  position: relative;
  z-index: 0;
  margin-left: 20px;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  color: #ffffff;
}
a.l-header__logo::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 90px;
  height: 46px;
  background: url("../img/logo-star.png") no-repeat center/contain;
  z-index: -1;
  pointer-events: none;
}
a.l-header__logo:hover {
  opacity: 0.7;
}
@media (min-width: 992px) {
  a.l-header__logo {
    margin-left: 30px;
    font-size: 30px;
  }
  a.l-header__logo::after {
    width: 150px;
    height: 76px;
    right: -66px;
  }
}

/*==================================================
　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;
  /*アニメーションの指定*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  /*X方向0、Y方向1*/
  -webkit-transform-origin: left top;
          transform-origin: left top;
  /*左上基点*/
}

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

/***********************************************
header       右            *****/
.l-header__nav-items ul {
  display: none;
}
@media (min-width: 992px) {
  .l-header__nav-items ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 992px) {
  .l-header__nav-items {
    display: -webkit-box;
    display: -ms-flexbox;
    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: 500;
  letter-spacing: 0.08em;
}
@media (min-width: 992px) {
  .l-header__nav-items ul > li {
    padding: 10px 18px;
    font-size: 18px;
  }
}
.l-header__nav-items ul > li a {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  color: #ffffff;
}
.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%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*線の形状*/
  width: 30%;
  height: 3px;
  background: #2DAF76;
  /*アニメーションの指定*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  /*X方向0、Y方向1*/
  -webkit-transform-origin: left top;
          transform-origin: left top;
  /*左上基点*/
}

/*現在地とhoverの設定*/
.l-header__hamburger-menu li.current a::after,
.l-header__hamburger-menu li a:hover::after {
  -webkit-transform: scale(1, 1);
          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;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  background: transparent;
  display: block;
  background-color: #2DAF76;
}
@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;
  -webkit-transition: all 0.5s linear 0s;
  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;
  -webkit-transform: rotate(-45deg);
          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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #ffffff;
}

.drawer-content-cover {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -webkit-transition: all 0.5s linear 0s;
  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;
  -webkit-transition: all 0.2s linear 0s;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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;
  -webkit-transition: all 0.2s linear 0s;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px auto 0;
}
@media (min-width: 992px) {
  .l-footer__nav-items ul {
    margin: 0 auto 0px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            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 {
  background-color: #2DAF76;
  font-size: 10px;
  color: #ffffff;
  display: block;
  font-weight: 400;
  padding: 10px 0 90px;
  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 0px 10px 0;
  }
}

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

/***********************************************
    cv ボタン　最下部固定
    ************************************************/
.l-footer-cv {
  display: -webkit-box;
  display: -ms-flexbox;
  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: #2DAF76;
  padding: 27px 0px;
  font-size: 14px;
}
a.l-footer-cv__btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          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: #2DAF76;
    color: #333;
    font-size: 16px;
    padding: 25px;
  }
  a.l-footer-cv__btn::after {
    border-color: #2DAF76;
    right: 20px;
  }
  a.l-footer-cv__btn.--pc {
    padding: 25px;
    background-color: #2DAF76;
    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__logo-nav-flex {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__logo-nav-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 40px 0;
  }
}

.l-footer__nav {
  margin-top: 30px;
  padding: 15px 0;
}
.l-footer__nav ul {
  display: none;
}
@media (min-width: 992px) {
  .l-footer__nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-footer__nav ul > li {
  font-weight: 700;
}
@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 {
  -webkit-transition: all 0.2s linear 0s;
  transition: all 0.2s linear 0s;
  /*********フッターナビゲーション文字の色********/
  color: #fff;
}
.l-footer__nav ul > li a:hover {
  opacity: 0.7;
}

.l-footer__logo {
  -webkit-transition: all 0.2s linear 0s;
  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;
  }
}

.l-footer__contact {
  background-color: #2DAF76;
  line-height: 1.8;
  color: #fff;
  padding: 10px 0 90px;
}
@media (min-width: 768px) {
  .l-footer__contact {
    font-size: 15px;
    padding: 10px 0px 10px 0;
  }
}
.l-footer__contact h2 {
  font-size: 2rem;
  padding: 20px 0 5px;
}

.l-footer__contact-map {
  border: #fff 1px solid;
  width: 200px;
  margin: 8px auto;
}

.l-footer__contact-mail {
  background-color: #707271;
  margin: 10px auto 25px;
  border: #ddd 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  padding: 8px 14px;
  width: auto;
  max-width: 320px;
  font-size: 1.6rem !important;
  vertical-align: middle;
}

.l-footer__contact-mail-icon {
  width: 30px;
  height: 30px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

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

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

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

.c-inner__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-inner__flex.--sp_block {
  display: block;
}
@media (min-width: 992px) {
  .c-inner__flex.--sp_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.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%;
  -webkit-transform: translate(-50%, -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 {
  -webkit-animation: fadeIn 1s cubic-bezier(0.9, 0, 0.2, 1) 0.5s 1 normal backwards;
          animation: fadeIn 1s cubic-bezier(0.9, 0, 0.2, 1) 0.5s 1 normal backwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

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

/***********************************************
文字の両サイドに画像配置
************************************************/
.c-icon__both-side {
  position: relative;
}
.c-icon__both-side::before, .c-icon__both-side::after {
  content: "";
  display: inline-block;
  width: 10%;
  aspect-ratio: 100/133;
  background-image: url();
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.c-icon__both-side::after {
  background-image: url();
}

/***********************************************
アンダーライン
************************************************/
.c-icon__marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, yellow));
  background: linear-gradient(transparent 60%, yellow 30%);
  display: inline-block;
}

.c-icon__under-line {
  border-bottom: 10px solid #000;
  display: inline-block;
  padding-bottom: 10px;
}

/***********************************************
　ハンバーガーメニュー　細いスクロールバー
************************************************/
.c-icon__scroll-bar {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.c-icon__scroll-bar::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  border-radius: 10px;
}
.c-icon__scroll-bar::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #D5D5D5;
}
.c-icon__scroll-bar::-webkit-scrollbar-thumb {
  background-color: #969696;
}

/***********************************************
　MV　SCROLL DOWN のモーション
************************************************/
.c-icon__scrolldown1 {
  position: absolute;
  left: 30px;
  bottom: -50px;
  height: 50px;
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.c-icon__scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 58px;
  bottom: 69px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.c-icon__scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -32px;
  bottom: 59px;
  /*テキストの形状*/
  color: #D5C1A1;
  width: 70px;
  font-size: 14px;
  font-weight: 400;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* 線の描写 */
.c-icon__scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 2px;
  height: 30px;
  background: #D5C1A1;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 55px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 55px;
    opacity: 0;
  }
}
/* ------------------------------------
ドキドキするボタン
  ------------------------------------*/
a.c-button__doki {
  -webkit-animation-name: dokidoki;
          animation-name: dokidoki;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  display: block;
  text-decoration: none !important;
  text-align: center;
}

@-webkit-keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes dokidoki {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/***********************************************
ボタンがキラッと光る
************************************************/
/* ------------------------------------
ボタンの基本スタイル
------------------------------------*/
/* ボタン自体のスタイル */
.shine-button,
.shine-button2 {
  /* ボタンを光らせるために必要 */
  position: relative;
  /* ボタンの位置を基準にするため relative指定 */
  overflow: hidden;
  /* ボタンの外の領域は非表示 */
}

/* ------------------------------------
  ボタンの外側にボックス作成
  （疑似要素「before」を使う）
  ------------------------------------*/
.shine-button::before,
.shine-button2::before {
  content: "";
  /* 文字は表示しないので中身無しを指定 */
  position: absolute;
  /* ボタンの位置を基準に絶対値指定する */
  display: block;
  /* 形式はblock */
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  /* 背景色は透明から白になるグラデーション */
  width: 50px;
  /* 横幅 */
  height: 50px;
  /* 縦幅 */
  top: -60px;
  /* ボタン左上を基準に上へ60pxの位置 */
  left: -60px;
  /* ボタン左上を基準に左へ60pxの位置 */
  /* アニメーションの動作指定 */
  -webkit-animation-name: shine-run;
          animation-name: shine-run;
  /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
  /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  /* アニメーションの無限繰り返しの指定 */
}

.shine-button2::before {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 223, 64, 0)), to(#fffdf3));
  background: linear-gradient(to right, rgba(255, 223, 64, 0), #fffdf3);
  z-index: 999;
}

/* ------------------------------------
  アニメーションのタイミングとボックスの
  拡大率、角度、透過率の指定
  ------------------------------------*/
@-webkit-keyframes shine-run {
  0% {
    -webkit-transform: scale(0) rotate(50deg);
            transform: scale(0) rotate(50deg);
    /* アニメ開始時は大きさ0、50度の傾き */
    opacity: 0;
    /* アニメ開始時は全透過 */
  }
  40% {
    -webkit-transform: scale(1) rotate(50deg);
            transform: scale(1) rotate(50deg);
    /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
    opacity: 1;
    /* 透過しない（しっかり表示される）ように1を設定 */
  }
  100% {
    -webkit-transform: scale(250) rotate(50deg);
            transform: scale(250) rotate(50deg);
    /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
    opacity: 0;
    /* 全透過になるようにして、徐々に消えるような変化を付ける */
  }
}
@keyframes shine-run {
  0% {
    -webkit-transform: scale(0) rotate(50deg);
            transform: scale(0) rotate(50deg);
    /* アニメ開始時は大きさ0、50度の傾き */
    opacity: 0;
    /* アニメ開始時は全透過 */
  }
  40% {
    -webkit-transform: scale(1) rotate(50deg);
            transform: scale(1) rotate(50deg);
    /* 40%まで進む間に大きさを等倍に。傾きは50度のまま*/
    opacity: 1;
    /* 透過しない（しっかり表示される）ように1を設定 */
  }
  100% {
    -webkit-transform: scale(250) rotate(50deg);
            transform: scale(250) rotate(50deg);
    /* 最後は元の大きさの250倍になるようにする。傾きは50度のまま*/
    opacity: 0;
    /* 全透過になるようにして、徐々に消えるような変化を付ける */
  }
}
/***********************************************
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;
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s ease-in-out;
  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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  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;
  -webkit-transition: all 0.3s ease-in-out;
  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;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s;
  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__service-section
************************************************/
.p-top__contents-cards {
  display: block;
  margin: 0 auto;
  width: 330px;
}
@media (min-width: 992px) {
  .p-top__contents-cards {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top__card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 64px;
  width: 64px;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          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;
  -webkit-clip-path: polygon(0 78%, 100% 67%, 100% 100%, 0% 100%);
          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 (min-width: 992px) {
  .p-top__card.--recruit {
    margin: 0 0 160px;
  }
}

.p-top__card-title {
  position: absolute;
  bottom: 24px;
  left: 50%;
  -webkit-transform: translateX(-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%;
}
@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;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 5px 0;
}
@media (min-width: 992px) {
  .p-top__news-upper-info {
    padding: 0;
  }
}

.p-top__blog-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            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%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     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__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: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        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;
}
@media (min-width: 992px) {
  .p-top__contact-box {
    width: 38vw;
    max-width: 485px;
    margin: 0;
  }
}

.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;
  -webkit-transform: translateY(-50%);
          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;
}

/***************
*トップページ「　　」セクション
****************/
.p-top__mv {
  padding: 200px 20px 200px;
  background-image: url(../img/mv-pc.jpg);
  background-size: cover;
  background-position: center;
  margin-top: 64px;
}
@media (min-width: 992px) {
  .p-top__mv {
    padding: 450px 0 450px;
    max-width: none;
    margin-top: 80px;
    height: 1125px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-top__mv.--1 {
  background-image: url(../img/mv-pc.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;
  }
}

.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: 87.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;
  }
}

/***********************************************
NEWS
************************************************/
.p-top__s3-news-section {
  background-color: #2DAF76;
}
.p-top__news-flex-pc {
  display: block;
}
@media (min-width: 992px) {
  .p-top__news-flex-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-top__news-title-orange {
  background-color: #707271;
  padding: 20px 4%;
}
@media (min-width: 992px) {
  .p-top__news-title-orange {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100px;
    padding: 0 40px;
  }
}
.p-top__news-title-orange .c-heading__jp {
  color: #ffffff;
  font-weight: 400;
}

.p-top__news-black-bg {
  background-color: #2DAF76;
  width: 100%;
  margin-top: 5px;
  margin-left: 0px;
  padding: 20px 4%;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .p-top__news-black-bg {
    margin-top: 0;
    margin-left: 10px;
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.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,
.p-top__news-item .p-top__news-info {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
@media (min-width: 992px) {
  .p-top__news-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

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

.p-top__news-info {
  border: 1px solid #fff;
  padding: 0 9px;
}
@media (min-width: 992px) {
  .p-top__news-info {
    padding: 5px 20px;
    margin-right: 40px;
  }
}

/***********************************************
代表メッセージ
************************************************/
.p-top__about-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .p-top__about-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-top__about-section.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .p-top__about-section.company__mv-bg {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-right: 20px;
  }
}

.p-top__about-photo,
.p-top__about-right-container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.p-top__about-photo {
  background-color: #CFD0D0;
}
.p-top__about-photo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.p-top__about-right-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  background-color: #ECF6F0;
  height: 100%;
}
.p-top__about-right-container p {
  width: 100%;
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
  text-align: left;
}
@media (min-width: 992px) {
  .p-top__about-right-container p {
    font-size: 17px;
    line-height: 2;
    margin-bottom: 40px;
  }
}
@media (min-width: 992px) {
  .p-top__about-right-container {
    padding: 40px 60px;
  }
}
.p-top__about-right-container#service, .p-top__about-right-container#works {
  background-color: #fff;
  padding: 40px 0;
}

#about {
  background-color: #CFD0D0;
}

.p-top__about-right-container-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  background-color: #33A772;
  color: #ffffff;
  padding: 15px 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 992px) {
  .p-top__about-right-container-title {
    font-size: 32px;
    margin-bottom: 30px;
    padding: 20px 35px;
    font-weight: 500;
  }
}

/***********************************************
about button
************************************************/
.p-top__about-btn {
  display: inline-block;
  background-color: #278E8C;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 15px 30px 15px 40px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1em;
  text-indent: 1em;
  /* letter-spacingと同じ値を指定 */
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-top__about-btn:hover {
  opacity: 0.8;
}
@media (min-width: 992px) {
  .p-top__about-btn {
    padding: 15px 20px 15px 40px;
    font-size: 20px;
  }
}

/***************
*トップページ「　　」セクション
****************/
.p-top__service {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  width: 91%;
  max-width: 740px;
  margin: 0 auto;
}
.p-top__service img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top__service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 53%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  padding: 30px 35px;
  -webkit-box-shadow: 8px 0 30px rgba(0, 0, 0, 0.08);
          box-shadow: 8px 0 30px rgba(0, 0, 0, 0.08);
}
@media (min-width: 576px) {
  .p-top__service-overlay {
    width: 65%;
  }
}
@media (min-width: 768px) {
  .p-top__service-overlay {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .p-top__service-overlay {
    width: 45%;
  }
}

.p-top__service-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}
.p-top__service-text p {
  margin: 0;
}
@media (min-width: 992px) {
  .p-top__service-text {
    gap: 10px;
    font-size: 20px;
  }
}

.p-top__service-text-note {
  font-size: 16px;
  line-height: 1.8;
  background-color: #fff;
  border: 1px solid #000;
  text-align: center;
  color: #000;
}
@media (min-width: 992px) {
  .p-top__service-text-note {
    font-size: 17px;
  }
}

.p-top__service-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  background-color: #666;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  line-height: 1.3;
}
.p-top__service-btn:after {
  content: "▶";
  font-size: 14px;
}
.p-top__service-btn:hover {
  opacity: 0.8;
}
@media (min-width: 992px) {
  .p-top__service-btn {
    font-size: 16px;
    padding: 16px 28px;
  }
}
.p-top__service-btn.--service {
  border: 2px solid #33A772;
  background-color: #FDFCF9;
  color: #000;
  margin: 20px auto 60px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 40px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.p-top__service-btn.--service:after {
  content: "　　　▶";
  font-size: 14px;
}

#service .p-top__about-right-container-title,
#works .p-top__about-right-container-title {
  letter-spacing: 1em;
  text-indent: 1em;
  /* letter-spacingと同じ値を指定 */
}

/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「 　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
.p-service__mv {
  padding: 150px 20px 150px;
  background-image: url(../img/service-mv.jpg);
  background-size: cover;
  background-position: center;
  margin-top: 64px;
}
@media (min-width: 992px) {
  .p-service__mv {
    padding: 200px 0 150px;
    max-width: none;
    margin-top: 80px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-service__title {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  padding: 40px 20px 20px;
  display: block;
  margin: 0 auto 20px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  /* letter-spacingと同じ値を指定 */
  position: relative;
}
@media (min-width: 992px) {
  .p-service__title {
    font-size: 32px;
    margin: 20px auto 40px;
    padding: 40px 35px 30px;
    font-weight: 500;
    letter-spacing: 0.6em;
    text-indent: 0.6em;
    /* letter-spacingと同じ値を指定 */
  }
}
.p-service__title::before {
  content: "";
  width: 50%;
  height: 5px;
  background-color: #33A772;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  bottom: 0;
  left: 50%;
}

.p-service__bg-white {
  background-color: #fff;
}

.p-service__border {
  height: 1px;
  background-color: #000000;
  margin: 30px 0;
}
@media (min-width: 992px) {
  .p-service__border {
    margin: 40px 0;
  }
}

.works_mv {
  background-image: url(../img/works-mv.jpg);
}

.p-works__policy-description {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  margin: 1.5rem auto 0;
}
@media (min-width: 992px) {
  .p-works__policy-description {
    font-size: 20px;
  }
}

.p-company__policy-card--works .p-company__policy-overview {
  margin-top: 16px;
}

.works-wrapper .p-company__policy-wrapper {
  display: grid;
  gap: 24px;
  width: 100%;
  padding: 20px;
}
@media (min-width: 768px) {
  .works-wrapper .p-company__policy-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .works-wrapper .p-company__policy-wrapper {
    gap: 40px;
    padding: 40px 60px;
  }
}
.works-wrapper .p-company__policy-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 20px;
  background-color: #9f9f9f;
  color: #ffffff;
  padding: 48px 32px;
  min-height: 360px;
}
@media (min-width: 768px) {
  .works-wrapper .p-company__policy-card {
    padding: 56px 36px;
    min-height: 380px;
  }
}
.works-wrapper .p-company__policy-number {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.works-wrapper .p-company__policy-underline {
  display: block;
  width: 80px;
  height: 3px;
  background-color: currentColor;
  margin-top: -8px;
}
.works-wrapper .p-company__policy-title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
.works-wrapper .p-company__policy-description {
  font-size: clamp(14px, 3.2vw, 18px);
  line-height: 1.9;
  margin: 0;
  letter-spacing: 0.04em;
}
.works-wrapper .company__mv {
  background-image: url(../img/company-mv.jpg);
}
.works-wrapper .company__mv-bg {
  background-color: #CFD0D0 !important;
}
.works-wrapper #company-greeting .p-top__about-right-container {
  background-color: transparent !important;
}
.works-wrapper #company-greeting .p-top__about-section {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}
.works-wrapper #company-greeting .p-top__about-photo {
  width: 52vw !important;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  max-width: 400px;
}
.works-wrapper .p-company__overview {
  padding: 20px;
}
@media (min-width: 768px) {
  .works-wrapper .p-company__overview {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .works-wrapper .p-company__overview {
    padding: 40px 60px 60px;
  }
}
.works-wrapper .p-company__overview-table-wrapper {
  overflow-x: auto;
}
.works-wrapper .p-company__overview-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}
.works-wrapper .p-company__overview-table th,
.works-wrapper .p-company__overview-table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  text-align: left;
  vertical-align: top;
  font-size: clamp(14px, 2.8vw, 17px);
  line-height: 1.8;
}
.works-wrapper .p-company__overview-table th {
  width: 40%;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .works-wrapper .p-company__overview-table th {
    width: 24%;
    padding-right: 32px;
    font-size: 18px;
  }
}
.works-wrapper .p-company__overview-table td {
  letter-spacing: 0.04em;
}
@media (min-width: 992px) {
  .works-wrapper .p-company__overview-table td {
    font-size: 17px;
  }
}
.works-wrapper .p-company__overview-table td br {
  display: block;
  margin-top: 4px;
}
.works-wrapper .p-company__overview-table tr:first-child th,
.works-wrapper .p-company__overview-table tr:first-child td {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}
.works-wrapper .p-company__policy-card--works {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: left;
  background-color: #FDFCF9;
  color: #000000;
  padding: 0 0 32px;
  -webkit-box-shadow: 6px 6px 11px rgba(0, 0, 0, 0.32);
          box-shadow: 6px 6px 11px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  min-height: unset;
}
@media (min-width: 768px) {
  .works-wrapper .p-company__policy-card--works {
    padding: 0 0 40px;
  }
}
.works-wrapper .p-company__policy-card--works > :not(.p-company__policy-number, .p-company__policy-underline) {
  padding: 0 28px;
}
.works-wrapper .p-company__policy-card--works .p-company__policy-number {
  width: 100%;
}
.works-wrapper .p-company__policy-card--works .p-company__policy-number img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-wrapper .p-company__policy-card--works .p-company__policy-underline {
  margin: 16px auto 0;
}
.works-wrapper .p-company__policy-card--works .p-company__policy-title {
  text-align: center;
}
@media (min-width: 992px) {
  .works-wrapper .p-company__policy-card--works .p-company__policy-title {
    font-size: 24px;
  }
}
.works-wrapper .p-company__policy-card--works th {
  width: 30%;
  min-width: 100px;
}
@media (min-width: 992px) {
  .works-wrapper .p-company__policy-card--works th {
    width: 40%;
  }
}
.works-wrapper .p-company__policy-card--works .p-company__overview-table {
  min-width: 239px;
}
.works-wrapper .p-company__policy-card--works .p-company__overview-table tr:first-child th,
.works-wrapper .p-company__policy-card--works .p-company__overview-table tr:first-child td {
  border-top: none;
}

.p-company__policy-wrapper {
  display: grid;
  gap: 24px;
  width: 100%;
  padding: 20px;
}

@media (min-width: 768px) {
  .p-company__policy-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .p-company__policy-wrapper {
    gap: 40px;
    padding: 40px 60px;
  }
}
.p-company__policy-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 20px;
  background-color: #9f9f9f;
  color: #ffffff;
  padding: 48px 32px;
  min-height: 360px;
}

@media (min-width: 768px) {
  .p-company__policy-card {
    padding: 56px 36px;
    min-height: 380px;
  }
}
.p-company__policy-number {
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.p-company__policy-underline {
  display: block;
  width: 80px;
  height: 3px;
  background-color: currentColor;
  margin-top: -8px;
}

.p-company__policy-title {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.p-company__policy-description {
  font-size: clamp(14px, 3.2vw, 18px);
  line-height: 1.9;
  margin: 0;
  letter-spacing: 0.04em;
}

.company__mv {
  background-image: url(../img/company-mv.jpg);
}

.company__mv-bg {
  background-color: #CFD0D0 !important;
}

#company-greeting .p-top__about-right-container {
  background-color: transparent !important;
}

#company-greeting .p-top__about-section {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

#company-greeting .p-top__about-photo {
  width: 52vw !important;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  max-width: 400px;
}

.p-company__overview {
  padding: 10px 0;
}
@media (min-width: 992px) {
  .p-company__overview {
    padding: 20px;
  }
}

@media (min-width: 768px) {
  .p-company__overview {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .p-company__overview {
    padding: 40px 60px 60px;
  }
}
.p-company__overview-table-wrapper {
  overflow-x: auto;
}

.p-company__overview-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}

.p-company__overview-table th,
.p-company__overview-table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  text-align: left;
  vertical-align: top;
  font-size: clamp(13px, 2.8vw, 17px);
  line-height: 1.8;
}

.p-company__overview-table th {
  width: 40%;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding-right: 20px;
}

@media (min-width: 992px) {
  .p-company__overview-table th {
    width: 24%;
    padding-right: 32px;
    font-size: 18px;
  }
}
.p-company__overview-table td {
  letter-spacing: 0.04em;
}

@media (min-width: 992px) {
  .p-company__overview-table td {
    font-size: 17px;
  }
}
.p-company__overview-table td br {
  display: block;
  margin-top: 4px;
}

.p-company__overview-table tr:first-child th,
.p-company__overview-table tr:first-child td {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}