@charset "UTF-8";
/*
Theme Name: KIVI Design
Theme URL: 
Description: 
Author: Kazuto Nishizawa
Version: 2024.5.15_6
Tags: 
License: 
License URI: 
*/
/*=================================================

-- このSCSSの取扱説明書 --

【レスポンシブ対応】
・SCSSの@mixinを使っってclass内にレスポンシブ対応のスタイルを記述します。
　使用例：@include SP {width:800px;};


=================================================

-- 目次 --


【サイト全体共通CSSフォーマット】
・Sass変数
・Custom Rest
・文字詰めの設定
・テキスト選択時の文字色・背景色


【JS関連】


【コンポーネントのスタイル】
・ボタン
・セクション見出し（下線のある見出し）
・縦書きキャッチコピー
・枠で囲まれた見出し
・セクション共通設定

【共通：Header】

【共通：Footer】

【TOP画面の各セクション】
・キービジュアル
・Adout
・Features
・Value
・Price
・Flow
・FAQ
・CTA
・Spec

【共通：お問い合わせ】

*=======================================================*/
/*=======================================================

Webフォントを定義

100	Thin (Hairline)
200	Extra Light (Ultra Light)
300	Light
400	Normal (regular)
500	Medium
600	Semi Bold (Demi Bold)
700	Bold
800	Extra Bold (Ultra Bold)
900	Black (Heavy)

*=======================================================*/
/* Thin */
@font-face {
  font-family: "Mont";
  src: url("font/Mont-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}
/* Extra Light  */
@font-face {
  font-family: "Mont";
  src: url("font/Mont-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
/* Light  */
@font-face {
  font-family: "Mont";
  src: url("font/Mont-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
/* Book  */
@font-face {
  font-family: "Mont";
  src: url("font/Mont-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
/* Regular  */
@font-face {
  font-family: "Mont";
  src: url("font/Mont-Regular.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
/* SemiBold  */
@font-face {
  font-family: "Mont";
  src: url("font/Mont-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
/* Bold  */
@font-face {
  font-family: "Mont";
  src: url("font/Mont-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/* Heavy  */
@font-face {
  font-family: "Mont";
  src: url("font/Mont-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
/* Black  */
@font-face {
  font-family: "Mont";
  src: url("font/Mont-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
}
/*=======================================================

								サイト全体共通CSSフォーマット

*=======================================================*/
/*--------------- SCSS変数 ---------------*/
/* gray */
/* main */
/* フォントウェイト */
/* フォントサイズ */
/* line-height */
/*--------------- SCSSでメディアクエリを設定 ---------------*/
/*使い方サンプル*/
/*.box {
  width:100%;
  @include SP {
    width:800px;
  };
}*/
/*--------------- SCSS @mixin ---------------*/
/*hover時の文字色のmixin設定*/
/*使用例*/
/*a.icon-facebook{
  color:$clr_sns-facebook;
  @include linkColor($clr_sns-facebook);
}*/
/*hover時の背景色のmixin設定*/
/*使用例*/
/*a.icon-facebook{
  color:$clr_sns-facebook;
  @include bgColor($clr_sns-facebook);
}*/
/*--------------- 1行で文字があふれたときに...にする---------------*/
/*使用例*/
/*
@include overflow_text();
*/
/*--------------- Custom Rest ---------------*/
a {
  text-decoration: none;
  color: #000;
}

a.underline {
  text-decoration: underline;
}

html {
  font-size: 62.5%; /* 16px x 0.625 = 10px(=1rem) */
  scroll-behavior: smooth; /*ページ内リンクをスムーズスクロールで行う*/
}

body {
  font-size: 1.4rem;
  font-family: "Poppins", "M PLUS 1p", -apple-system, blinkMacSystemFont, YuGothic-M, YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt"; /* 自動文字詰めをオン */
  background: #FFFFFF;
  color: #000;
  line-height: 1.7;
}

/*--------------- 文字詰めの設定 ---------------*/
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome, body {
    font-feature-settings: "palt";
  }
}
/*--------------- Windowsで小さい文字にジャギが入る場合の疑似アンチエイリアス対応---------------*/
/*--------------- テキスト選択時の文字色・背景色 ---------------*/
::-moz-selection {
  background: #5A6072;
  color: #FFFFFF;
  text-decoration-color: #5A6072;
}
::selection {
  background: #5A6072;
  color: #FFFFFF;
  text-decoration-color: #5A6072;
}

/*=======================================================

												JS関連

*=======================================================*/
/*--------------- smooth-scrollbar.jsに必要なCSS ---------------*/
.scroller {
  height: 100vh;
}

/*--------------- フワッと表示させる ---------------*/
.scrollEffect {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease-in-out;
}

.scrollEffect_on {
  opacity: 1;
  transform: scale(1);
}

/*--------------- フワッと表示させる ---------------*/
.scrollEffect_show_hide {
  display: none;
}

/*=======================================================

								共通スタイル

*=======================================================*/
/*--------------- セクション共通設定 ---------------*/
section.primary {
  padding-top: 100px;
  padding-bottom: 100px;
}

/*--------------- マージン ---------------*/
.margin_top_50 {
  margin-top: 50px;
}

.margin_top_100 {
  margin-top: 100px;
}

.margin_top_200 {
  margin-top: 200px;
}

/*--------------- セクション背景色 ---------------*/
.bg_white {
  background: #FFFFFF;
}

.bg_offwhite {
  background: #F6F7F9;
}

/*=======================================================

											タイトル・テキスト

*=======================================================*/
.gp_title .title_section {
  font-size: 7.2rem;
  font-weight: 300;
  text-align: center;
  line-height: 1;
  letter-spacing: 0px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .gp_title .title_section {
    font-size: 4.8rem;
  }
}
.gp_title .title_section::after {
  content: "";
  background: #000;
  width: 40px;
  height: 4px;
  display: block;
  margin: 0 auto;
  margin-top: 20px;
}
.gp_title .subtitle {
  font-size: 1.4rem;
  display: block;
  color: #000;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-top: 30px;
}

.description {
  color: #000;
  font-size: 1.4rem;
  width: 400px;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .description {
    width: calc(100vw - 80px);
  }
}

a {
  color: #000;
  font-weight: 500;
}

/*=======================================================

								コンポーネントのスタイル

*=======================================================*/
.gp_link {
  margin-top: 40px;
}

/*--------------- リンク ---------------*/
.link {
  /*文字を上下左右にセンタリング*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}

/* サイズ */
.link.size_XS {
  font-size: 1.2rem;
}

.link.size_S {
  font-size: 1.4rem;
}

.link.size_M {
  font-size: 1.6rem;
}

.link.size_L {
  font-size: 1.8rem;
}

/* 矢印つきのリンク：右向き矢印 */
.link.size_S.arrow::after {
  content: "";
  display: inline-block;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  border-color: #000;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  transform: rotate(45deg) scale(0.5);
  margin-top: -5px;
  margin-left: 4px;
}

.link.size_M.arrow::after {
  content: "";
  display: inline-block;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  border-color: #000;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  transform: rotate(45deg) scale(0.5);
  margin-top: -4px;
  margin-left: 6px;
}

.link.size_L.arrow::after {
  content: "";
  display: inline-block;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  border-color: #000;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  margin-top: -4px;
  margin-left: 6px;
}

/* 矢印つきのリンク：左向き矢印 */
.link.size_S.arrow_back::before {
  content: "";
  display: inline-block;
  border-top: solid 3px #000;
  border-left: solid 3px #000;
  border-color: #000;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  transform: rotate(-45deg) scale(0.5);
  margin-top: -2px;
  margin-left: 4px;
}

/*--------------- ボタン ---------------*/
.gp_button {
  margin-top: 40px;
}

.button {
  font-weight: 500;
  letter-spacing: 0em;
  box-sizing: border-box;
  /*文字を上下左右にセンタリング*/
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

/* 塗りのボタン */
.button.fill {
  background: #5A6072;
  color: #FFFFFF;
}

/* 枠線のボタン */
.button.line {
  border: #000 2px solid;
  color: #000;
  text-underline-offset: 2px;
}

/* サイズ */
.button.size_S {
  display: inline-block;
  height: 32px;
  border-radius: 16px;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 30px;
  text-align: center;
}

.button.size_M {
  height: 40px;
  border-radius: 20px;
  font-size: 1.4rem;
  line-height: 30px;
  text-align: center;
}

.button.size_L {
  height: 48px;
  border-radius: 24px;
  font-size: 1.4rem;
  line-height: 30px;
  text-align: center;
}

/* 矢印つきのボタン：右向き矢印 */
.button.size_S.arrow::after {
  content: "";
  display: inline-block;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  border-color: #000;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  transform: rotate(45deg) scale(0.5);
  margin-top: -3px;
  margin-left: 1px;
}

.arrow_R {
  display: inline-block;
  border-top: solid 3px #000;
  border-right: solid 3px #000;
  border-color: #000;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  transform: rotate(45deg) scale(0.5);
  margin-top: -3px;
  margin-left: 1px;
}

/* 幅のパターン */
.width_400 {
  width: 400px;
}

.width_300 {
  width: 300px;
}

.width_200 {
  width: 200px;
}

.width_180 {
  width: 180px;
}

.width_120 {
  width: 120px;
}

/*Safariのみに適用：Chromeとのレンダリング差の補正用*/
/*=======================================================

											フォームのスタイル

*=======================================================*/
input, button, textarea, select {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=text], textarea {
  border: solid 1px #73798C;
  background: #F2F4F7;
}

input[type=text]:focus,
textarea:focus {
  box-shadow: 0 0 0 4px rgba(38, 128, 217, 0.2);
  border: 1px solid #000000;
}

input[type=text] {
  padding: 10px;
  border-radius: 4px;
}

.FlexTextarea {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.8;
}

.FlexTextarea__dummy {
  overflow: hidden;
  visibility: hidden;
  box-sizing: border-box;
  padding: 10px;
  min-height: 60px;
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  border: 1px solid;
}

.FlexTextarea__textarea {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  padding: 10px;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  resize: none;
}

/*-----  チェックボックス  -----*/
.gp_checkbox {
  display: flex;
  flex-direction: column;
}
.gp_checkbox label {
  height: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 12px;
  margin-top: 10px;
}

/* デフォルトのチェックボックスを非表示に */
input[type=checkbox] {
  display: inline;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=checkbox] + span::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #A3ABC2;
  border-radius: 5px;
  margin-right: 8px;
}

input[type=checkbox]:checked + span::before {
  background-image: url(img/checkbox_on.svg);
  background-repeat: no-repeat;
  background-position: -1px -1px;
}

input[type=checkbox]:focus + span::before {
  border-color: #000000;
}

/*-----  ラジオボタン  -----*/
.gp_radio {
  display: flex;
  flex-direction: column;
}
.gp_radio label {
  height: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  line-height: 12px;
  margin-top: 10px;
}

input[type=radio] {
  display: inline;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  opacity: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

input[type=radio] + span::before {
  display: inline-block;
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #A3ABC2;
  border-radius: 20px;
  margin-right: 8px;
}

input[type=radio]:checked + span::before {
  background-image: url(img/radioButton_on.svg);
  background-repeat: no-repeat;
  background-position: -1px -1px;
}

input[type=radio]:focus + span::before {
  border-color: #000000;
}

/*=======================================================

											Header

*=======================================================*/
header {
  width: 100vw;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 5000;
  box-sizing: border-box;
}
header .nav_global {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .nav_global .left, header .nav_global .right {
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  header .nav_global .left, header .nav_global .right {
    visibility: hidden;
  }
}
header .nav_global .left {
  margin-left: 20px;
}
header .nav_global .left a {
  margin: 0 10px;
}
header .nav_global .center .logo_kivi {
  fill: #000;
}
header .nav_global .center .logo_kivi.fill_white {
  fill: #FFFFFF;
}
header .nav_global .right {
  margin-right: 20px;
}
header .nav_global .right a {
  margin: 0 10px;
}
header .nav_global .icon_menu {
  width: 50px;
  height: 50px;
}

/*=======================================================

											nav_floating

*=======================================================*/
.dimmer_nav {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(80, 100, 130, 0.3);
  transition: all 0.2s linear;
  display: none;
  z-index: 6000;
}

.dimmer_nav.show {
  display: block;
  animation: fadein 0.2s linear 0s;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .dimmer_nav.show {
    display: block;
  }
}

.nav_floating.hide {
  display: none;
}

/*メニューアイコン・目次の共通ベース*/
.nav_floating {
  display: none;
  opacity: 1;
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 25px;
  background: #000000;
  width: 50px;
  height: 50px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s linear;
  z-index: 7000;
  box-shadow: 0px 0px 1px 1px rgba(115, 121, 140, 0.5);
  /*メニューボタンを押したときに表示される目次*/
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .nav_floating {
    display: block;
    right: 10px;
    bottom: 10px;
  }
}
.nav_floating:hover {
  background: #A3ABC2;
}
.nav_floating .icon_menu {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
}
.nav_floating .icon_close_nav {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  display: none;
  width: 50px;
  height: 50px;
}
.nav_floating .floating_expanded {
  transition: all 0s cubic-bezier(0.16, 1, 0.3, 1); /*easing: easeOutExpo*/
  transform-origin: bottom right; /*変形の原点を設定*/
  transform: scale(0.1);
  opacity: 0;
  width: 100%;
  height: 100%;
}

/*フローティングメニュー表示時*/
.nav_floating.show {
  width: 400px;
  height: 400px;
  background: #FFFFFF;
  box-shadow: 0px 0px 19px -6px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .nav_floating.show {
    width: calc(100% - 20px);
    height: 400px;
  }
}
.nav_floating.show .top {
  width: 100%;
  text-align: center;
  margin-top: 70px;
}
.nav_floating.show .top .logo_kivi {
  width: 100px;
  height: 26px;
}
.nav_floating.show .center {
  width: 100%;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.nav_floating.show .center a {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
  font-size: 1.7rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.nav_floating.show .center ::after {
  content: ""; /*何も入れない*/
  background: #000000;
  width: 0%;
  height: 3px;
  display: block;
  margin-top: 0px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1); /*easing: easeOutExpo*/
}
.nav_floating.show .center a:hover::after {
  content: ""; /*何も入れない*/
  background: #000000;
  width: 100%;
  height: 3px;
  display: block;
  margin-top: 0px;
}
.nav_floating.show .bottom {
  width: 100%;
  margin-top: 45px;
}
.nav_floating.show .bottom .switch_language_gp {
  z-index: 1002;
  margin: 0 auto;
}
.nav_floating.show .icon_menu {
  display: none;
}
.nav_floating.show .icon_close_nav {
  display: block;
  z-index: 1001;
}
.nav_floating.show .icon_close_nav .base {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: #A3ABC2;
  opacity: 0;
}
.nav_floating.show .icon_close_nav img {
  position: absolute;
  top: 0;
  right: 0;
}
.nav_floating.show .icon_close_nav:hover .base {
  opacity: 1;
}
.nav_floating.show .floating_expanded {
  transform: scale(1);
  opacity: 1;
}

/*=======================================================

											Footer

*=======================================================*/
footer {
  width: 100vw;
  height: 75px;
  background: #F2F4F7;
  background: transparent;
}
footer .footer_links {
  padding-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_links li {
  margin: 0 10px;
}
footer .footer_links li a {
  font-size: 1.4rem;
}
footer .copyright {
  text-align: center;
  margin-top: 10px;
  font-size: 1.2rem;
}

/*=======================================================

									TOPページ：全体

*=======================================================*/
main.top {
  transition: all 0.5s linear;
  width: 100vw;
}

/*=======================================================

									TOPページ：Works

*=======================================================*/
.works {
  margin-top: 60px;
  height: auto;
  width: 100%;
}
.works .gp_works {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .works .gp_works {
    width: calc(100vw - 24px);
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.works .item_works {
  margin: 0;
}
.works .item_works:nth-child(12n+1) {
  grid-column: auto/span 1;
  grid-row: auto/span 2;
}
.works .item_works:nth-child(12n+6) {
  grid-column: auto/span 2;
  grid-row: auto/span 1;
}
.works .item_works:nth-child(12n+10) {
  grid-column: auto/span 1;
  grid-row: auto/span 2;
}
.works .item_works:nth-child(12n+11) {
  grid-column: auto/span 2;
  grid-row: auto/span 1;
}
.works .item_works {
  overflow: hidden;
  background: #F2F4F7;
  position: relative;
  display: flex;
  justify-content: center;
}
.works .item_works img {
  z-index: 1000;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  width: calc(100% - 50px);
  margin: 20px 0;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .works .item_works img {
    width: calc(100% - 0px);
  }
}
.works .item_works .gp_text {
  z-index: 1001;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 15px 15px 10px 15px;
  box-sizing: border-box;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .works .item_works .gp_text {
    padding: 7px 7px 5px 7px;
    max-width: calc(50vw - 40px);
  }
}
.works .item_works .gp_text .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.works .item_works .gp_text .text1 {
  z-index: 1002;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  color: #000;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .works .item_works .gp_text .text1 {
    font-size: 1.2rem;
  }
}
.works .item_works .gp_text .text2 {
  z-index: 1003;
  font-size: 1.2rem;
  line-height: 1.25;
  color: #8A91A8;
  margin-top: 2px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .works .item_works .gp_text .text2 {
    font-size: 1rem;
  }
}

.focus {
  position: absolute;
  top: -25px;
  right: -25px;
  opacity: 0;
  z-index: 999;
  width: 50px;
  height: 50px;
  border-radius: 25px;
}
.focus span {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 25px;
}

/*=======================================================

                  TOPページ：service
                  パララックス

*=======================================================*/
.service {
  width: 100vw;
  position: relative;
  transition: all 0.5s linear;
}
.service .category {
  width: 100vw;
  height: calc(3000px + 0vh);
  position: relative;
}
.service .category .sticky {
  position: sticky;
  top: 0;
}
.service .category .gp_fix {
  width: calc(100% - 0px);
  height: 100vh;
  display: flex;
  align-items: center;
}
.service .category .gp_fix .gp_text {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 80px;
  margin: 0 auto;
  transition: all 0.6s cubic-bezier(0.67, 0.14, 0.33, 0.92);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .service .category .gp_fix .gp_text {
    top: 15%;
    left: 50%;
    transform: translate(-50%, -15%);
    text-align: center;
  }
}
.service .category .gp_fix .gp_text .title_section {
  font-size: 4.8rem;
  font-weight: 700;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .service .category .gp_fix .gp_text .title_section {
    font-size: 3rem;
  }
}
.service .category .gp_fix .gp_text .text2 {
  font-size: 1.4rem;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .service .category .gp_fix .gp_text .text2 {
    font-size: 1.2rem;
  }
}
.service .category .gp_fix .img_frame {
  padding: 20px;
  background: #D1D5E0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 18px;
  margin: 0 auto;
  transform: translateX(120px);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: all 0.6s cubic-bezier(0.67, 0.14, 0.33, 0.92);
  transition-delay: 0.4s;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .service .category .gp_fix .img_frame {
    padding: 10px;
    border-radius: 9px;
    transform: translateX(0px);
  }
}
.service .category .gp_fix .img_frame .img_clip {
  width: 374px;
  height: 280px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 5px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .service .category .gp_fix .img_frame .img_clip {
    width: 200px;
    height: 150px;
  }
}
.service .category .gp_fix .img_frame .img_clip img {
  display: block;
  width: 100%;
}
.service .category .gp_fix .img_paper {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 18px;
  margin: 0 auto;
  transform: translateX(200px);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  transition: all 0.6s cubic-bezier(0.67, 0.14, 0.33, 0.92);
  transition-delay: 0.4s;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .service .category .gp_fix .img_paper {
    transform: translateX(0px);
  }
}
.service .category .gp_fix .img_paper img {
  display: block;
  width: 420px;
  height: auto;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .service .category .gp_fix .img_paper img {
    width: 250px;
  }
}
.service .category .gp_images {
  transform: translateY(-100vh);
  width: calc(100vw - 0px);
  height: 3000px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.service .category .gp_images .img_parallax {
  position: absolute;
  width: 250px;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  transition: opacity 0.5s linear;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .service .category .gp_images .img_parallax {
    width: 130px;
  }
}
.service .category .gp_images .img_parallax img {
  width: 100%;
  height: auto;
}
.service .category.active .gp_fix .gp_text {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}
.service .category.active .img_frame {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}
.service .category.active .img_paper {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}
.service .category.active .gp_images .img_parallax {
  opacity: 1;
}
.service .category_1 .gp_images .img_parallax {
  box-shadow: 10px 40px 40px rgba(115, 121, 140, 0.3);
}
.service .category_1 .gp_images .img_parallax_1 {
  left: 25%;
}
.service .category_1 .gp_images .img_parallax_2 {
  right: 2%;
}
.service .category_1 .gp_images .img_parallax_3 {
  left: 30%;
}
.service .category_1 .gp_images .img_parallax_4 {
  right: 10%;
}
.service .category_1 .gp_images .img_parallax_5 {
  left: 10%;
}
.service .category_1 .gp_images .img_parallax_6 {
  right: 14%;
}
.service .category_2 .gp_fix .gp_text .title_section {
  color: #FFFFFF;
}
.service .category_2 .gp_fix .gp_text p {
  color: #FFFFFF;
}
.service .category_2 .gp_fix .img_frame {
  background: #5A6072;
}
.service .category_2 .gp_images .img_parallax {
  box-shadow: 10px 40px 40px rgba(0, 0, 0, 0.5);
}
.service .category_2 .gp_images .img_parallax_1 {
  left: 25%;
}
.service .category_2 .gp_images .img_parallax_2 {
  right: 2%;
}
.service .category_2 .gp_images .img_parallax_3 {
  left: 30%;
}
.service .category_2 .gp_images .img_parallax_4 {
  right: 10%;
}
.service .category_2 .gp_images .img_parallax_5 {
  left: 10%;
}
.service .category_2 .gp_images .img_parallax_6 {
  right: 14%;
}
.service .category_3 {
  transition: all 0.5s linear;
}
.service .category_3 .gp_fix .gp_text .title_section {
  color: #FFFFFF;
}
.service .category_3 .gp_fix .gp_text p {
  color: #FFFFFF;
}
.service .category_3 .gp_fix .img_frame {
  background: #5A6072;
}
.service .category_3 .gp_images .img_parallax {
  box-shadow: 10px 40px 40px rgba(0, 0, 0, 0.25);
}
.service .category_3 .gp_images .img_parallax_1 {
  left: 25%;
}
.service .category_3 .gp_images .img_parallax_2 {
  right: 2%;
}
.service .category_3 .gp_images .img_parallax_3 {
  left: 30%;
}
.service .category_3 .gp_images .img_parallax_4 {
  right: 10%;
}
.service .category_3 .gp_images .img_parallax_5 {
  left: 35%;
}
.service .category_3 .gp_images .img_parallax_6 {
  right: 14%;
}
.service .category_3 .gp_images .img_parallax_7 {
  right: 5%;
}
.service .category_3 .gp_images .img_parallax_8 {
  right: 4%;
}
.service .category_3 .gp_images .img_parallax_9 {
  left: 10%;
}
.service .category_3 .gp_images .img_parallax_10 {
  right: 3%;
}

/*=======================================================

						   TOPページ：process

*=======================================================*/
.process {
  color: #5A6072;
}
.process .title_section::after {
  background: #5A6072;
}
.process .tagline {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
  max-width: 550px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .process .tagline {
    font-size: 1.6rem;
    width: calc(100vw - 40px);
  }
}
.process .tagline_2 {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
  max-width: 550px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .process .tagline_2 {
    font-size: 1.4rem;
    width: calc(100vw - 40px);
  }
}
.process .gp_process {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-top: 80px;
  width: -moz-max-content;
  width: max-content;
  gap: 50px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .process .gp_process {
    gap: 30px;
  }
}
.process .gp_process .item_process {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .process .gp_process .item_process img {
    width: 60px;
  }
}
.process .gp_process .item_process .gp_process_text {
  display: flex;
  flex-direction: column;
}
.process .gp_process .item_process .gp_process_text .text_1 {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .process .gp_process .item_process .gp_process_text .text_1 {
    font-size: 1.6rem;
  }
}
.process .gp_process .item_process .gp_process_text .text_2 {
  max-width: 300px;
  line-height: 1.4;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .process .gp_process .item_process .gp_process_text .text_2 {
    max-width: 230px;
    font-size: 1.2rem;
  }
}

/*=======================================================

						   TOPページ：process_OLD

*=======================================================*/
::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}

::-webkit-scrollbar-button {
  width: 1px;
  height: 1px;
}

.process {
  width: 100vw;
  position: relative;
  padding: 0;
}
.process .gp_process_1 {
  width: 100vw;
  height: 3000px;
  position: relative;
}
.process .gp_process_1 #observer_process_1 {
  width: calc(100vw - 1px);
  height: calc(100vh - 1px);
  position: absolute;
  top: 0;
  left: 0;
}
.process .gp_process_1 .sticky {
  position: sticky;
  top: 0;
}
.process .gp_process_1 .gp_fix {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.process .gp_process_1 .gp_fix #gradient_text_1, .process .gp_process_1 .gp_fix #gradient_text_2 {
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgb(255, 255, 255) 100%, rgba(255, 255, 255, 0.1) 200%);
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.process .gp_process_1 .gp_fix .gp_title {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.process .gp_process_1 .gp_fix .gp_title h2 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 25rem;
  white-space: nowrap;
  line-height: 1;
  transform: translateX(90vw);
}
.process .gp_process_1 .gp_fix .gp_title h3 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15rem;
  white-space: nowrap;
  line-height: 1.3;
  transform: translateX(-100%);
}
.process .gp_process_2 {
  width: 100vw;
  height: 2000px;
  position: relative;
}
.process .gp_process_2 .sticky {
  position: sticky;
  top: 0;
  left: 0;
}
.process .gp_process_2 .gp_horizontal {
  scroll-snap-align: start;
  width: 100vw;
  height: calc(100vh - 0px);
  background: rgba(0, 255, 0, 0.1);
  display: flex;
  overflow: hidden;
}
.process .gp_process_2 .gp_horizontal #observer_process_2 {
  width: calc(100vw - 1px);
  height: calc(100vh - 1px);
  position: absolute;
  top: 0;
  left: 0;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img .process_bg {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transition: opacity 0.5s linear;
  background: #FFFFFF;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img .process_bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img .process_bg .dimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img .process_bg .dimmer_blue {
  background: rgba(0, 80, 100, 0.5);
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img .process_bg .dimmer_deepBlue {
  background: rgba(0, 20, 51, 0.5);
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img .process_bg .dimmer_purple {
  background: rgba(94, 79, 100, 0.5);
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img .process_bg.show {
  opacity: 1;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img .process_bg:first-of-type {
  opacity: 1;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img .process_bg_3 {
  background: #FFFFFF;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_bg .gp_img .process_bg_3 img {
  top: 60%;
  left: -20%;
  width: 90vw;
  height: 90vw;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner {
  /* 裏技的に回転を使って縦スクロールで横スクロールするようにする */
  width: calc(100vw + 0px);
  height: 100vw;
  max-height: 100vw;
  overflow-y: auto;
  overflow-x: hidden;
  background: rgba(0, 255, 0, 0.1);
  transform: rotate(-90deg) translateY(-100vw);
  transform-origin: right top;
  scroll-snap-type: y proximity;
  padding: 100vh 0 0 0; /* 位置の補正用 */
  position: relative;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process {
  width: 100vw;
  height: 100vh;
  background: rgba(255, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  position: relative;
  /* 裏技的に回転を使って縦スクロールで横スクロールするようにする */
  transform: rotate(90deg);
  transform-origin: right top;
  margin-top: calc(100vw - 100vh); /* 位置の補正用 */
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process .bg {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process .gp_text {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process .gp_text .num {
  position: absolute;
  width: 400px;
  height: 600px;
  white-space: nowrap;
  color: #000;
  font-size: 60rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process .gp_text h3 {
  font-size: 7.2rem;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process .dotline {
  width: 800vw;
  height: 100vw;
  overflow-y: auto;
  position: absolute;
  top: -10vw;
  left: 0;
  pointer-events: none;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_1 .gp_text {
  top: 40%;
  left: 40%;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_1 .gp_text .num {
  top: -30vh;
  left: 30vw;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_2 .gp_text {
  bottom: 20%;
  left: 30%;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_2 .gp_text .num {
  top: -50vh;
  left: 40vw;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_3 .gp_text {
  top: 25%;
  left: 33%;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_3 .gp_text .num {
  top: 10vh;
  left: 30vw;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_4 .gp_text {
  top: 50%;
  left: 35%;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_4 .gp_text .num {
  top: -50vh;
  left: -35vw;
  color: #FFFFFF;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_4 .gp_text h3, .process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_4 .gp_text .text_1 {
  color: #FFFFFF;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_5 .gp_text {
  top: 30%;
  left: 33%;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_5 .gp_text .num {
  top: 10vh;
  left: 35vw;
  color: #000;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_5 .gp_text h3, .process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_5 .gp_text .text_1 {
  color: #000;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_6 .gp_text {
  top: 50%;
  left: 30%;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_6 .gp_text .num {
  top: -50vh;
  left: -30vw;
  color: #FFFFFF;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_6 .gp_text h3, .process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_6 .gp_text .text_1 {
  color: #FFFFFF;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_7 .gp_text {
  top: 22%;
  left: 37%;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_7 .gp_text .num {
  top: -20vh;
  left: 30vw;
  color: #FFFFFF;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_7 .gp_text h3, .process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_7 .gp_text .text_1 {
  color: #FFFFFF;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_8 .gp_text {
  top: 50%;
  left: 40%;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_8 .gp_text .num {
  top: -50vh;
  left: -30vw;
  color: #FFFFFF;
}
.process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_8 .gp_text h3, .process .gp_process_2 .gp_horizontal .gp_horizontal_inner .item_process_8 .gp_text .text_1 {
  color: #FFFFFF;
}

@keyframes blurTransition {
  0% {
    filter: blur(0px);
  }
  30% {
    filter: blur(30px);
  }
  70% {
    filter: blur(30px);
  }
  100% {
    filter: blur(0px);
  }
}
@keyframes textEffect {
  0% {
    -webkit-text-stroke: 1px rgba(0, 0, 255, 0.4);
  }
  50% {
    -webkit-text-stroke: 3px rgba(0, 255, 255, 0.4);
  }
  100% {
    -webkit-text-stroke: 1px rgba(255, 0, 255, 0.4);
  }
}
.lottie_web {
  width: 200px;
  height: 200px;
}

/*=======================================================

											About

*=======================================================*/
main.top {
  transition: all 0.5s linear;
}

.about {
  width: 100vw;
  position: relative;
  background: #FFFFFF;
}
.about .gp_about_2 .header {
  width: 100vw;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .gp_about_2 .col_2 {
  width: 100vw;
  height: 800px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .about .gp_about_2 .col_2 {
    flex-direction: column;
    height: auto;
    margin-top: 150px;
    margin-bottom: 100px;
  }
}
.about .gp_about_2 .col_2 .logo {
  width: 50vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .gp_about_2 .col_2 .logo .logo_kivi {
  fill: #000;
  width: 160px;
  height: 41.6px;
}
.about .gp_about_2 .col_2 .profile {
  width: 50vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .about .gp_about_2 .col_2 .profile {
    width: calc(100vw - 80px);
    margin-top: 150px;
  }
}
.about .gp_about_2 .col_2 .profile .text_1 {
  font-size: 2.4rem;
  font-weight: 700;
  width: 100%;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .about .gp_about_2 .col_2 .profile .text_1 {
    text-align: center;
  }
}
.about .gp_about_2 .col_2 .profile .text_2 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1rem;
  width: 100%;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .about .gp_about_2 .col_2 .profile .text_2 {
    text-align: center;
  }
}
.about .gp_about_2 .col_2 .profile .text_3 {
  font-size: 1.4rem;
  width: 100%;
  margin-top: 40px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .about .gp_about_2 .col_2 .profile .text_3 {
    font-size: 1.4rem;
    margin-top: 50px;
  }
}
.about .gp_about_2.show {
  visibility: visible;
}
.about .gp_about_3 {
  width: 100vw;
  height: 100vh;
  margin-top: 100vh;
}

/*=======================================================

											固定ページ：Cotact

*=======================================================*/
.cotact {
  margin-top: 50px;
}
.cotact .section_contact {
  width: 100vw;
}
.cotact .section_contact #gp_iframe_form {
  width: 640px;
  margin: 0 auto;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .cotact .section_contact #gp_iframe_form {
    width: calc(100% - 20px);
  }
  .cotact .section_contact #gp_iframe_form iframe {
    width: 100%;
  }
}

/*--------------- フォーム部分 ---------------*/
.section_contact {
  margin: 0 auto;
}
.section_contact .gp_iframe_form {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 60px;
}

/*--------------- 稼働状況 ---------------*/
.section_status {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section_status .gp_schedule {
  background: #FFFFFF;
  width: 700px;
  margin-top: 50px;
  border-radius: 10px;
  padding-bottom: 40px;
  padding-top: 10px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .section_status .gp_schedule {
    width: calc(100vw - 80px);
  }
}
.section_status .gp_schedule .text_year {
  width: 100%;
  height: 80px;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section_status .gp_schedule .text_year.hide {
  display: none;
}
.section_status .gp_schedule .gp_month_grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 20px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .section_status .gp_schedule .gp_month_grid {
    grid-template-columns: 1fr;
  }
}
.section_status .gp_schedule .gp_month_grid .gp_month {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section_status .gp_schedule .gp_month_grid .gp_month .month {
  width: 100%;
  height: 40px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 40px;
}
.section_status .gp_schedule .gp_month_grid .gp_month .gp_status {
  width: 100%;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section_status .gp_schedule .gp_month_grid .gp_month .gp_status .status {
  display: none;
}
.section_status .gp_schedule .gp_month_grid .gp_month .gp_status .close {
  font-size: 1.4rem;
  font-weight: 700;
  color: #73798C;
}
.section_status .gp_schedule .gp_month_grid .gp_month.hide {
  display: none;
  visibility: hidden;
  height: 0px;
}
.section_status .gp_schedule .gp_month_grid.hide {
  display: none;
}

/*=======================================================

								記事ページ ：Works（作品）
									signle_works.php

*=======================================================*/
.signle_works {
  padding-top: 150px;
  width: 100vw;
}
.signle_works .area_1 {
  display: block;
  width: calc(100vw - 120px);
  margin: 0 auto;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .signle_works .area_1 {
    width: calc(100vw - 60px);
  }
}
.signle_works .area_1 .link {
  color: #5A6072;
}
.signle_works .area_1 .link::before {
  border-color: #5A6072;
}
.signle_works .area_1 .title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 50px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .signle_works .area_1 .title {
    font-size: 3rem;
  }
}
.signle_works .area_1 .bar {
  content: "";
  width: 30px;
  height: 4px;
  display: block;
  margin-top: 15px;
}
.signle_works .area_1 .gp_col_parent {
  display: flex;
  flex-direction: row;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .signle_works .area_1 .gp_col_parent {
    flex-direction: column;
  }
}
.signle_works .area_1 .gp_col_parent .gp_col_1 {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
}
.signle_works .area_1 .gp_col_parent .gp_col_1 .col_1 {
  flex-grow: 0;
  min-width: 100px;
}
.signle_works .area_1 .gp_col_parent .gp_col_1 .col_1 .text {
  margin-bottom: 10px;
}
.signle_works .area_1 .gp_col_parent .gp_col_1 .col_1 .text span {
  display: inline-block;
  width: 80px;
  margin-right: 20px;
}
.signle_works .area_1 .gp_col_parent .gp_col_1 .col_2 {
  flex-grow: 1;
  min-width: 180px;
  margin-right: 50px;
}
.signle_works .area_1 .gp_col_parent .gp_col_1 .col_2 .text {
  margin-bottom: 10px;
}
.signle_works .area_1 .gp_col_parent .gp_col_1 .col_2 .text4 {
  width: 100%;
}
.signle_works .area_1 .gp_col_parent .gp_col_2 {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .signle_works .area_1 .gp_col_parent .gp_col_2 {
    flex-direction: column;
  }
}
.signle_works .area_1 .gp_col_parent .gp_col_2 .col_1 {
  flex-grow: 2;
}
.signle_works .area_1 .gp_col_parent .gp_col_2 .col_2 {
  flex-grow: 0;
  min-width: 180px;
  margin-left: 80px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .signle_works .area_1 .gp_col_parent .gp_col_2 .col_2 {
    margin: 0 auto;
    margin-top: 30px;
  }
}
.signle_works .area_2 {
  background: #F2F4F7;
  margin-top: 60px;
  padding-bottom: 100px;
}
.signle_works .area_2 .gp_img_pc {
  padding-top: 60px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .signle_works .area_2 .gp_img_pc {
    width: calc(100vw - 60px);
  }
}
.signle_works .area_2 .gp_img_pc img {
  width: 100%;
  margin-top: 60px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .signle_works .area_2 .gp_img_pc img {
    margin-top: 20px;
  }
}
.signle_works .area_2 .gp_img_pc img:nth-of-type(1) {
  margin-top: 0px;
}
.signle_works .area_2 .gp_img_sp {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  .signle_works .area_2 .gp_img_sp {
    width: calc(100vw - 60px);
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.signle_works .area_2 .gp_img_sp img {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.signle_works .area_2 .gp_img_sp img:nth-child(3n+1) {
  margin-right: 20px;
}
.signle_works .area_2 .gp_img_sp img:nth-child(3n+2) {
  margin-right: 20px;
}

/*=======================================================

									SIEポートフォリオ向け

*=======================================================*/
header.portfolio_video {
  height: 60px;
  width: 100vw;
  border: solid 1px #E0E4EB;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  header.portfolio_video {
    height: 50px;
  }
}
header.portfolio_video h1 {
  font-size: 2rem;
  margin-left: 30px;
  font-weight: 600;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  header.portfolio_video h1 {
    font-size: 1.8rem;
  }
}
header.portfolio_video h1 span {
  font-weight: 300;
}

main.signle_video {
  margin-top: 100px;
  width: 100vw;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  main.signle_video {
    margin-top: 70px;
  }
}
main.signle_video .signle_video_inner {
  width: calc(100vw - 100px);
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  main.signle_video .signle_video_inner {
    width: calc(100vw - 0px);
  }
}
main.signle_video .signle_video_inner video {
  width: 100%;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  main.signle_video .signle_video_inner .gp_title {
    margin-left: 10px;
  }
}
main.signle_video .signle_video_inner .gp_title .year {
  color: #EB5E5E;
  font-size: 1.6rem;
  font-weight: 600;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  main.signle_video .signle_video_inner .gp_title .year {
    font-size: 1.4rem;
  }
}
main.signle_video .signle_video_inner .gp_title .title_video {
  font-size: 4rem;
  font-weight: 700;
  margin-top: -12px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  main.signle_video .signle_video_inner .gp_title .title_video {
    font-size: 3rem;
  }
}
main.signle_video .signle_video_inner .gp_cahpter_description {
  display: flex;
  flex-direction: row;
  gap: 50px;
  margin-top: 20px;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  main.signle_video .signle_video_inner .gp_cahpter_description {
    flex-direction: column;
    width: calc(100vw - 40px);
    margin: 0 auto;
    margin-top: 20px;
    gap: 30px;
  }
}
main.signle_video .signle_video_inner .gp_cahpter_description .text_cahpter {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 4px;
  flex: 0 0 auto;
}
main.signle_video .signle_video_inner .gp_cahpter_description .text_cahpter:empty {
  display: none;
}
main.signle_video .signle_video_inner .gp_cahpter_description .text_cahpter .text_play_Chapter {
  color: #73798C;
  font-size: 1.6rem;
}
@media only screen and (min-width: 0px) and (max-width: 599px) {
  main.signle_video .signle_video_inner .gp_cahpter_description .text_cahpter {
    gap: 8px;
  }
}
main.signle_video .signle_video_inner .gp_cahpter_description .text_cahpter button {
  font-size: 1.6rem;
  color: #EB5E5E;
  text-decoration: underline;
  position: relative;
  padding-left: 20px;
}
main.signle_video .signle_video_inner .gp_cahpter_description .text_cahpter button::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 11px;
  border-color: transparent transparent transparent #EB5E5E;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
main.signle_video .signle_video_inner .gp_cahpter_description .text_descrption {
  flex: 1 1 auto;
  font-size: 1.6rem;
}/*# sourceMappingURL=style.css.map */