@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: rgba(255, 255, 255, 0.8);
}

.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: 1200px;
    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;
  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;
  /*アニメーションの指定*/
  -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: 700;
  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: #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%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  /*線の形状*/
  width: 30%;
  height: 3px;
  background: #f06600;
  /*アニメーションの指定*/
  -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: #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;
  -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;
}
.l-header__hamburger-menu ul li a:hover {
  opacity: 0.7;
}
.l-header__hamburger-menu ul li a {
  font-size: 20px;
}

.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 {
  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 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: #f06600;
  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: #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__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;
  }
}

.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: -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 {
  /*== 線の上を別の線が伸びる */
}
.--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 {
  /*線の設定*/
}
.--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 {
  /*hover時に伸びる線の形状*/
}
.--side .c-button__more::after {
  width: 0;
  background: #ffffff;
}
.--side .c-button__more.--white::after {
  background: #000000;
}
.--side {
  /*hover時に100%に伸びる*/
}
.--side .c-button__more:hover::after {
  width: 24%;
}
.--side {
  /*矢印の設定*/
}
.--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 {
  /*hover時に矢印が移動*/
}
.--side .c-button__more:hover span::after {
  right: -41px;
}

.p-top__section-tag {
  margin: 0 auto 4px;
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#009bbf), to(#63a276));
  background: linear-gradient(to right, #009bbf 0%, #63a276 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-top__section-tag--left {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.p-top__section-tag--light {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

/***************
 * s1 MV（P-100AI）— 角丸バナー＋左下テキスト（common-fv 準拠）
 ****************/
.p-top__s1-mv-section {
  padding: 16px 0 32px;
  background-color: #fff;
}
@media (min-width: 992px) {
  .p-top__s1-mv-section {
    padding: 24px 0 48px;
  }
}

.p-top__mv-wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .p-top__mv-wrap {
    padding: 0 20px;
  }
}

.p-top__mv-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 2034/722;
}
@media (min-width: 992px) {
  .p-top__mv-frame {
    border-radius: 20px;
  }
}

.p-top__mv-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-top__mv-bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.p-top__mv-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 20px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 769px) and (max-width: 991px) {
  .p-top__mv-inner {
    padding: 0 40px 60px;
  }
}
@media (min-width: 992px) {
  .p-top__mv-inner {
    padding: 0 80px 72px;
  }
}

.p-top__mv-eyebrow {
  margin: 0 0 4px;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
@media (min-width: 992px) {
  .p-top__mv-eyebrow {
    font-size: 1.8rem;
  }
}

.p-top__mv-label {
  display: inline-block;
  margin: 0;
  padding: 4px 20px 4px 0;
  background-color: #000;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
@media (min-width: 769px) and (max-width: 991px) {
  .p-top__mv-label {
    font-size: 4.8rem;
    padding-right: 32px;
  }
}
@media (min-width: 992px) {
  .p-top__mv-label {
    font-size: 5.6rem;
    padding: 4px 40px 4px 0;
  }
}

/***************
 * s2 課題（3カード）
 ****************/
.p-top__s2-problem-section {
  padding: 60px 0 70px;
}
@media (min-width: 992px) {
  .p-top__s2-problem-section {
    padding: 100px 0 110px;
  }
}
.p-top__s2-problem-section {
  background-color: #fff;
}

.p-top__problem-head {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 992px) {
  .p-top__problem-head {
    margin-bottom: 56px;
  }
}

.p-top__problem-title {
  margin: 0 0 12px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__problem-title {
    font-size: 4rem;
  }
}

.p-top__problem-lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__problem-lead {
    font-size: 1.6rem;
  }
}

.p-top__problem-cards {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-top__problem-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

.p-top__problem-card {
  padding: 32px 28px;
  background-color: #fff;
  border: 1px solid #e8ecef;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  -webkit-transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s;
  transition: box-shadow 0.2s, transform 0.2s, -webkit-box-shadow 0.2s, -webkit-transform 0.2s;
}
.p-top__problem-card:hover {
  -webkit-box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
          box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.p-top__problem-card-icon {
  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;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #009bbf 69%, #63a276 100%);
  color: #fff;
  font-size: 2rem;
}
.p-top__problem-card-icon i {
  color: #fff;
}

.p-top__problem-card-title {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #393636;
}

.p-top__problem-card-text {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.625;
  color: #393636;
}

/***************
 * s3 P-100AI マテリアル
 ****************/
.p-top__s3-material-section {
  padding: 60px 0 70px;
}
@media (min-width: 992px) {
  .p-top__s3-material-section {
    padding: 100px 0 110px;
  }
}
.p-top__s3-material-section {
  background-color: #f5fafb;
}

.p-top__material-grid {
  display: grid;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .p-top__material-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.p-top__material-body .p-top__section-tag {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.p-top__material-title {
  margin: 0 0 12px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__material-title {
    font-size: 4rem;
  }
}
.p-top__material-title {
  margin-bottom: 24px;
}

.p-top__material-text {
  margin: 0 0 24px;
  font-size: 1.4rem;
  line-height: 1.625;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__material-text {
    font-size: 1.6rem;
  }
}

.p-top__material-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}
.p-top__material-list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 16px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #393636;
}
.p-top__material-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #3e9ca1;
  font-weight: 700;
}
.p-top__material-list li strong {
  font-weight: 700;
  color: #393636;
}

.p-top__material-grades {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 520px;
}

.p-top__material-grade {
  padding: 14px 8px 12px;
  text-align: center;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #e8ecef;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.p-top__material-grade.--white {
  border-top: 4px solid #9ca3af;
}
.p-top__material-grade.--white .p-top__material-grade-label {
  color: #6b7280;
}
.p-top__material-grade.--blue {
  border-top: 4px solid #009bbf;
}
.p-top__material-grade.--blue .p-top__material-grade-label {
  color: #009bbf;
}
.p-top__material-grade.--green {
  border-top: 4px solid #63a276;
}
.p-top__material-grade.--green .p-top__material-grade-label {
  color: #63a276;
}

.p-top__material-grade-label {
  display: block;
  margin-bottom: 4px;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.p-top__material-grade-value {
  font-size: 1.2rem;
  color: #393636;
}

.p-top__material-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/***************
 * s4 P-100DX
 ****************/
.p-top__s4-dx-section {
  padding: 60px 0 70px;
}
@media (min-width: 992px) {
  .p-top__s4-dx-section {
    padding: 100px 0 110px;
  }
}
.p-top__s4-dx-section {
  background-color: #fff;
}

.p-top__dx-head {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 992px) {
  .p-top__dx-head {
    margin-bottom: 56px;
  }
}

.p-top__dx-title {
  margin: 0 0 12px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__dx-title {
    font-size: 4rem;
  }
}

.p-top__dx-lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__dx-lead {
    font-size: 1.6rem;
  }
}

.p-top__dx-grid {
  display: grid;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media (min-width: 992px) {
  .p-top__dx-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

.p-top__dx-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.p-top__dx-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}

.p-top__dx-feature {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid #ddd;
}
.p-top__dx-feature:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.p-top__dx-feature-icon {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009bbf 69%, #63a276 100%);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-top__dx-feature-title {
  margin: 0 0 8px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__dx-feature-title {
    font-size: 2rem;
  }
}

.p-top__dx-feature-text {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #393636;
}

/***************
 * s5 導入ステップ
 ****************/
.p-top__s5-steps-section {
  padding: 60px 0 70px;
}
@media (min-width: 992px) {
  .p-top__s5-steps-section {
    padding: 100px 0 110px;
  }
}
.p-top__s5-steps-section {
  background: linear-gradient(135deg, #009bbf 69%, #63a276 100%);
  position: relative;
  overflow: hidden;
}
.p-top__s5-steps-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.14) 0%, transparent 45%);
  pointer-events: none;
}
.p-top__s5-steps-section .p-top__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.p-top__s5-steps-section .p-top__section-tag {
  margin-left: auto;
  margin-right: auto;
}

.p-top__steps-title {
  margin: 0 0 12px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__steps-title {
    font-size: 4rem;
  }
}
.p-top__steps-title {
  margin-bottom: 48px;
  text-align: center;
  color: #fff;
}
@media (min-width: 992px) {
  .p-top__steps-title {
    margin-bottom: 56px;
  }
}

.p-top__steps-visual {
  max-width: 883px;
  margin: 0 auto;
}
.p-top__steps-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/***************
 * s6 お問い合わせフォーム
 ****************/
.p-top__s6-contact-section {
  padding: 60px 0 70px;
}
@media (min-width: 992px) {
  .p-top__s6-contact-section {
    padding: 100px 0 110px;
  }
}
.p-top__s6-contact-section {
  background-color: #f2f2f2;
}

.p-top__contact-panel {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  padding: 48px 28px 56px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #e8ecef;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
          box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
}
@media (min-width: 992px) {
  .p-top__contact-panel {
    padding: 64px 64px 72px;
  }
}
.p-top__contact-panel::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009bbf 69%, #63a276 100%);
  opacity: 0.08;
  pointer-events: none;
}

.p-top__contact-head {
  text-align: center;
  margin-bottom: 40px;
}

.p-top__contact-title {
  margin: 0 0 12px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__contact-title {
    font-size: 4rem;
  }
}

.p-top__contact-lead {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__contact-lead {
    font-size: 1.6rem;
  }
}

.p-top__contact-form {
  display: grid;
  gap: 24px;
}

.p-top__form-row {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-top__form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.p-top__form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.p-top__form-label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5a5656;
}

.p-top__form-input,
.p-top__form-select,
.p-top__form-textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.6rem;
  font-family: inherit;
  color: #393636;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
}
.p-top__form-input::-webkit-input-placeholder, .p-top__form-select::-webkit-input-placeholder, .p-top__form-textarea::-webkit-input-placeholder {
  color: #9ca3af;
}
.p-top__form-input::-moz-placeholder, .p-top__form-select::-moz-placeholder, .p-top__form-textarea::-moz-placeholder {
  color: #9ca3af;
}
.p-top__form-input:-ms-input-placeholder, .p-top__form-select:-ms-input-placeholder, .p-top__form-textarea:-ms-input-placeholder {
  color: #9ca3af;
}
.p-top__form-input::-ms-input-placeholder, .p-top__form-select::-ms-input-placeholder, .p-top__form-textarea::-ms-input-placeholder {
  color: #9ca3af;
}
.p-top__form-input::placeholder,
.p-top__form-select::placeholder,
.p-top__form-textarea::placeholder {
  color: #9ca3af;
}
.p-top__form-input:focus,
.p-top__form-select:focus,
.p-top__form-textarea:focus {
  outline: none;
  border-color: #009bbf;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 155, 191, 0.15);
          box-shadow: 0 0 0 3px rgba(0, 155, 191, 0.15);
}

.p-top__form-textarea {
  min-height: 130px;
  resize: vertical;
}

.p-top__form-submit {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 16px auto 0;
  padding: 18px 32px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #009bbf 69%, #63a276 100%);
  border: none;
  border-radius: 9999px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
          box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
  cursor: pointer;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.p-top__form-submit:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.p-top__contact-form-note {
  margin: 0;
  padding: 24px;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
  color: #393636;
  background-color: #f5fafb;
  border: 1px dashed #ddd;
  border-radius: 12px;
}

/***************
 * Contact Form 7（P-100AI フォーム）
 ****************/
.p-top__contact-panel .wpcf7 {
  width: 100%;
}
.p-top__contact-panel .wpcf7-form {
  display: grid;
  gap: 24px;
  margin: 0;
}
.p-top__contact-panel .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-top__contact-panel .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 1.2rem;
  color: #c0392b;
}
.p-top__contact-panel .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 16px 20px;
  font-size: 1.4rem;
  border-radius: 12px;
}
.p-top__contact-panel .wpcf7-spinner {
  margin-left: 12px;
}
.p-top__contact-panel input[type=text],
.p-top__contact-panel input[type=email],
.p-top__contact-panel input[type=tel],
.p-top__contact-panel select,
.p-top__contact-panel textarea {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.6rem;
  font-family: inherit;
  color: #393636;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
}
.p-top__contact-panel input[type=text]:focus,
.p-top__contact-panel input[type=email]:focus,
.p-top__contact-panel input[type=tel]:focus,
.p-top__contact-panel select:focus,
.p-top__contact-panel textarea:focus {
  outline: none;
  border-color: #009bbf;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 155, 191, 0.15);
          box-shadow: 0 0 0 3px rgba(0, 155, 191, 0.15);
}
.p-top__contact-panel input[type=submit].wpcf7-submit {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 16px auto 0;
  padding: 18px 32px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #009bbf 69%, #63a276 100%);
  border: none;
  border-radius: 9999px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
          box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
  cursor: pointer;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.p-top__contact-panel input[type=submit].wpcf7-submit:hover {
  opacity: 0.9;
}

/***************
 * Thanks（お問い合わせ完了）
 ****************/
.p-top__thanks-section {
  padding: 60px 0 70px;
}
@media (min-width: 992px) {
  .p-top__thanks-section {
    padding: 100px 0 110px;
  }
}
.p-top__thanks-section {
  background-color: #f2f2f2;
}

.p-top__thanks-panel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px 56px;
  overflow: hidden;
  text-align: center;
}
.p-top__thanks-panel .p-top__section-tag {
  margin-bottom: 24px;
}
.p-top__thanks-panel {
  background-color: #fff;
  border: 1px solid #e8ecef;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
          box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
}
@media (min-width: 992px) {
  .p-top__thanks-panel {
    padding: 64px 64px 72px;
  }
}
.p-top__thanks-panel::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, #009bbf 69%, #63a276 100%);
  opacity: 0.08;
  pointer-events: none;
}

.p-top__thanks-icon {
  margin-bottom: 24px;
  font-size: 5.6rem;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#009bbf), to(#63a276));
  background: linear-gradient(to right, #009bbf 0%, #63a276 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 992px) {
  .p-top__thanks-icon {
    font-size: 6.4rem;
  }
}

.p-top__thanks-title {
  margin: 0 0 12px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__thanks-title {
    font-size: 4rem;
  }
}
.p-top__thanks-title {
  margin-bottom: 16px;
}

.p-top__thanks-lead {
  margin: 0 0 32px;
  font-size: 1.4rem;
  line-height: 1.75;
  color: #393636;
}
@media (min-width: 992px) {
  .p-top__thanks-lead {
    margin-bottom: 40px;
    font-size: 1.6rem;
  }
}

.p-top__thanks-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .p-top__thanks-actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}

.p-top__thanks-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;
  min-width: 240px;
  padding: 16px 32px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 9999px;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, transform 0.2s;
  transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
}
.p-top__thanks-btn:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.p-top__thanks-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #009bbf 69%, #63a276 100%);
  -webkit-box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
          box-shadow: 0 4px 15px rgba(0, 155, 191, 0.2);
}

.p-top__thanks-btn--secondary {
  color: #393636;
  background-color: #fff;
  border: 1px solid #ddd;
}

.p-top__s7-cta-section.contanct {
  padding-top: 60px;
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  .p-top__s7-cta-section.contanct {
    padding-top: 100px;
  }
}
@media (max-width: 1024px) {
  .p-top__s7-cta-section.contanct {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .p-top__s7-cta-section.contanct {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
.p-top__inner {
  width: 85%;
  max-width: 1232px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .p-top__inner {
    width: calc(100% - 208px);
    max-width: 1232px;
  }
}

.top-p100ai {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.top-p100ai::before {
  content: "";
  position: absolute;
  top: -55%;
  right: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1440/1631;
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 100% auto;
  z-index: 0;
  pointer-events: none;
}

.top-p100ai-inner {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}

.top-p100ai-media {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 500px;
          flex: 0 1 500px;
  max-width: 500px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.top-p100ai-visual-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.top-p100ai-caption {
  margin: 0;
  font-size: 20px;
  line-height: 1.6;
}

.top-p100ai-link {
  padding: 12px 60px 12px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.top-p100ai-link::after {
  right: 20px;
}

.top-p100ai-headline {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0;
}
.top-p100ai-headline .common-headline-title {
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .top-p100ai {
    padding: 60px 0 80px;
  }
  .top-p100ai::before {
    top: -45%;
  }
  .top-p100ai-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .top-p100ai-media {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    max-width: none;
    gap: 24px;
  }
  .top-p100ai-headline {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .top-p100ai-caption {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .top-p100ai {
    padding: 48px 0 60px;
  }
  .top-p100ai::before {
    top: -35%;
    width: 120%;
    right: -10%;
  }
  .top-p100ai-inner {
    gap: 32px;
  }
  .top-p100ai-media {
    gap: 20px;
  }
  .top-p100ai-caption {
    font-size: 16px;
  }
  .top-p100ai-link {
    padding: 10px 40px 10px 16px;
    font-size: 14px;
  }
}