@charset "UTF-8";
/*2024 cssに変更*/

/* Foundation
 * 変数、関数、mixinを定義
 * サイト全体のデフォルトスタイルを管理
======================================*/
/****** 変数定義 ******/
/*--------------------------------
    CSSカスタムプロパティ（JSで同的に変更する場合はこちらを利用）
--------------------------------*/
:root {
  --root-em: 100%;
}

/*--------------------------------
    テーマカラー
--------------------------------*/
/*--------------------------------
    コンテンツ幅/ガター
--------------------------------*/
/*--------------------------------
    ブレイクポイント
--------------------------------*/
/*--------------------------------
    タイポグラフィ
--------------------------------*/
/****** mixin定義 ******/
/****** 関数定義 ******/
/****** リセットCSS ******/
/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  box-sizing: border-box;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -webkit-tap-highlight-color: transparent;
  line-height: 1.15;
  /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
  /* 2 */
  border-top-width: 1px;
  box-sizing: content-box;
  clear: both;
  color: inherit;
  /* 1 */
  height: 0;
  margin: 0;
  /* 1 */
  overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: inherit;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  min-width: 0;
  padding: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px;
  /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  /* 1 */
  border-collapse: collapse;
  border-color: inherit;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

/****** ベースとなるスタイル ******/
html {
  font-size: var(--root-em);
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.5;
  }
}

a {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

p {
  line-height: 1.8;
}

h1, h2, h3, h4 {
  font-weight: bold;
}

img {
  max-width: 100%;
}

/* Layout
 * 接頭辞：l-
 * 各ページを構成する大枠のエリアに対するレイアウトを定義
======================================*/
/****** 全体 ******/
.l-body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  min-height: 100vh;
  color:#0D0C0A;
  background:#fff;
}

.l-body.--privacy-policy .p-block-container__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 767px) {
  .l-body.--privacy-policy .p-block-container__inner {
    row-gap: 40px;
  }
}

/****** ヘッダー ******/
.l-header {
  -webkit-transition: 0.3s;
  padding-bottom: 20px;
  padding-top: 20px;
  position: fixed;
  transition: 0.3s;
  width: 100%;
  z-index: 1000;
  color:#fff;
}
.l-header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1500px;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
}
@media screen and (max-width: 1100px) {

.l-header__inner {
  justify-content: normal;
}

  .l-header .p-nav-header {
    display: none;
  }
}

.l-header.scroll {
	color:#0D0C0A;
	background: #fff;
}
.l-header.scroll .c-text-headerNav-item {
}
/*.l-header.scroll .c-text-headerNav-item:hover {
  color: #00B3E8;
}*/
.l-header.scroll .c-text-headerNav-item:after {
}
.l-header.scroll .c-btn-cta.header {
/*  -webkit-box-shadow: 0px 3px 6px #00000029;
  box-shadow: 0px 3px 6px #00000029;*/
}
.l-header.scroll .c-btn-cta.header:hover {
  -webkit-box-shadow: none;
  -webkit-transform: translateY(2px);
  box-shadow: none;
  transform: translateY(2px);
}
.l-header.scroll .c-btn-cta.header.contact {
  border: 0.2em solid #154576;
  color: #154576;
}
.l-header.scroll .c-logo-header {
  display: none;
}
.l-header.scroll .c-logo-header.scroll {
  display: block;
}

/****** フッター ******/
.l-footer {
	color:#e5e5e5;
	background-color:#0d0c0a;
}
.l-footer__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-bottom: 60px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 60px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

/****** コンテンツエリア ******/
/*--------------------------------
    1カラムレイアウト
--------------------------------*/
/*--------------------------------
    2カラムレイアウト
--------------------------------*/
/****** メイン ******/
/* メインビジュアル =====================*/
.l-main-fv {
  background:url("../img/photo/bg_main.png") center no-repeat;
  background-size:cover;
  position:relative;
  overflow:hidden;
}
.l-main-fv::after{
	content:"";
	display:block;
	position:absolute;
	background-color:rgba(0,0,0,0.7);
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:1;
}

.l-main-fv:before{
		position: absolute;
		content:"";
		width:400px;
		height:300px;
		right:0;
		bottom:0;
		z-index:3;
		background:url(../img/photo/fv.png) center bottom no-repeat;
		background-size:contain;
}


.l-main-fv__inner {
	color:#fff;
	position:relative;
	z-index:2;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  padding-top: 120px;
  padding-bottom:6rem;
}



@media screen and (max-width: 1100px) {
  .l-main-fv__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
	.l-main-fv:before{
			width:35%;
			right:0;
	}


}

.l-main-fv .c-img-fv-pc {
    height: auto;
    max-width: 670px;
    width: 100%;
}
@media screen and (max-width: 767px) {
  .l-main-fv .c-img-fv-pc {
    margin-left: 0;
  }

	.l-main-fv:before{
			width:50%;
			right:0;
	}
}

.l-main-fv__inner p {
  width: 100%;
}
.l-main-fv__inner .c-img-fv-heading {
  margin-bottom: 20px;
}
.l-main-fv__inner .c-text-fv-sub {
  margin-bottom: 10px;
}
.l-main-fv__inner .c-img-fv-pc {
      margin-top: 2rem;
}

/* お知らせ =====================*/
.l-main-news {
  padding:4rem 16px;
}
.l-main-news__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  width: 100%;
  display:flex;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .l-main-news {
    padding-top: 30px;
    padding-bottom: 30px;
  }
	 .l-main-news__inner {
	  flex-direction: column;
	}
}

/* 主に対応する加工 =====================*/
.l-main-processing {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-main-processing {
    padding-top: 40px;
  }
}
.l-main-processing__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.p-card-processingList {
  padding-top: 60px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .p-card-processingList {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
.p-card-processingList li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-card-processingList li {
    gap: 10px;
  }
}

/* SellBOTについて =====================*/
.l-main-about {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .l-main-about {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.l-main-about__inner {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
  max-width: 1256px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-main-about__inner {
    margin-bottom: 50px;
  }
}

.l-main-about__inner .c-img-about {
  margin-bottom: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-main-about__inner .c-img-about {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.l-main-about .p-block-about {
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .l-main-about .p-block-about {
    padding-bottom: 10px;
  }
}
.l-main-about-movie__inner {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  max-width: 800px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-main-about-movie__inner {
    margin-bottom: 30px;
  }
}

.l-main-about-movie__inner h3 {
  display: inline-block;
  font-size: 2em;
  padding: 30px 0 10px 90px;
  background: url(../img/icon/character_R.svg) 0 0 no-repeat;
  background-size: 80px;
  background-position: 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-main-about-movie__inner h3 {
    font-size: 1.5em;
    padding: 60px 0 10px 0;
    background-size: 50px;
    background-position: center 0px;
  }
}
.l-main-about-movie__inner h3 span {
  color: #00B3E8;
}
.l-main-about-movie__inner p {
  margin-bottom: 20px;
}
.l-main-about-movie__inner p span {
  color: #00B3E8;
  font-weight: bold;
}

.l-main-about-movie__inner video {
  width: 100%;
}

@media screen and (min-width: 767px) {
  .l-main-about-movie__inner .pc-no { display: none; }
}
@media screen and (max-width: 767px) {
	.l-main-about-movie__inner .sp-no { display: none; }
}



/* こんな課題ありませんか？ =====================*/
.l-main-issues {
  padding-top: 80px;
  margin-bottom:4rem;
}
@media screen and (max-width: 767px) {
  .l-main-issues {
    padding-top: 40px;
    margin-bottom:2rem;
  }
}
.l-main-issues__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}


/* 主に対応する素材、主な業種 =====================*/
.l-main-principal {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-main-principal {
    padding-top: 40px;
  }
}
.l-main-principal__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
.p-card-principalList {
  padding-top: 60px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-card-principalList {
    gap: 25px;
  }
}
.p-card-principalList li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-card-principalList li {
    gap: 10px;
  }
}

/* 1分でわかるSellBOT =====================*/
.l-main-oneMinute {
  padding-bottom: 60px;
  padding-top: 80px;
}

.bg_gray{
	color:#fff;
	background-color:#59564F;
}
.bg_lightgray{
	background-color:#eeeeed;
}

@media screen and (max-width: 767px) {
  .l-main-oneMinute {
    padding-bottom: 50px;
    padding-top: 40px;
  }
}
.l-main-oneMinute__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

/* プロモーションムービー =====================*/
.l-main-promotionMovie {
  background-color: #154576;
}
.l-main-promotionMovie__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-left: 16px;
  padding-right: 16px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-main-promotionMovie__inner {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.l-main-promotionMovie__inner .c-heading-promotion {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .l-main-promotionMovie__inner .c-heading-promotion {
    margin-bottom: 20px;
  }
}

/* 特長 =====================*/
.l-main-feature__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-main-feature__inner {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.l-main-feature .p-block-feature-step {
  padding-bottom: 80px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .l-main-feature .p-block-feature-step {
    padding-bottom: 40px;
    padding-top: 15px;
  }
}
.l-main-feature .p-card-feature {
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-main-feature .p-card-feature {
    margin-bottom: 40px;
  }
}

/* 導入事例 =====================*/
.l-main-caseStudy__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-main-caseStudy__inner {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

/* ご利用の流れ =====================*/
.l-main-flow {
}
.l-main-flow__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-main-flow__inner {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

/* 3つの料金体系 =====================*/
.l-main-price__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 80px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-main-price__inner {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.l-main-price__inner .c-heading-priceLead {
  margin-bottom: 40px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .l-main-price__inner .c-heading-priceLead {
    margin-bottom: 20px;
    margin-top: 30px;
  }
}

/* よくある質問 =====================*/
.l-main-faq {
}
.l-main-faq__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-main-faq__inner {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}

/****** 下層ページ ******/
.l-lowerpage {
}

.l-lowerpage-header {
  height: 300px;
  padding-top: 80px;
  width: 100%;
	color: #e5e5e5;
	background-color: #59564F;
}
@media screen and (max-width: 767px) {
  .l-lowerpage-header {
    height: 190px;
  }
}
.l-lowerpage-header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.l-lowerpage-content__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-bottom: 80px;
  padding-left: 16px;
  padding-right: 16px;
  /*padding-top: 80px;*/
  row-gap: 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-lowerpage-content__inner {
    padding-bottom: 40px;
    padding-top: 40px;
    row-gap: 40px;
  }
}
.l-lowerpage-content .c-heading-common_h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .l-lowerpage-content .c-heading-common_h2 {
    margin-bottom: 20px;
  }
}

/****** CTA ******/
.l-cta {
  background-color: #33BBEE;
  background-image: url(../img/texture/cta_bg.png);
  background-position: center, center;
  background-repeat: repeat;
  background-size: cover;
}
.l-cta__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-bottom: 60px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 60px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .l-cta__inner {
    padding-bottom: 120px;
    padding-top: 30px;
  }
}
.l-cta__inner .c-heading-cta {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .l-cta__inner .c-heading-cta {
    margin-bottom: 10px;
  }
}

.l-cta.first {
  background-image: url(../img/icon/character_R.svg), url(../img/texture/cta_bg.png);
  background-position: 10% center, center, center;
  background-repeat: no-repeat, repeat;
  background-size: 160px, cover;
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .l-cta.first {
    background-image: none, url(../img/texture/cta_bg.png);
  }
}
@media screen and (max-width: 767px) {
  .l-cta.first {
    background-image: url(../img/icon/character.svg), url(../img/texture/cta_bg.png);
    background-position: center bottom, center, center;
    background-size: 100px, cover;
  }
}

.l-cta.secound {
  background-image: url(../img/icon/character_L.svg), url(../img/texture/cta_bg.png);
  background-position: 95% center, center, center;
  background-repeat: no-repeat, repeat;
  background-size: 160px, cover;
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .l-cta.secound {
    background-image: none, url(../img/texture/cta_bg.png);
  }
}
@media screen and (max-width: 767px) {
  .l-cta.secound {
    background-image: url(../img/icon/character.svg), url(../img/texture/cta_bg.png);
    background-position: center bottom, center, center;
    background-size: 100px, cover;
  }
}

.l-cta.last {
  background-image: url(../img/icon/character.svg), url(../img/texture/cta_bg.png);
  background-position: 90% bottom, center, center;
  background-repeat: no-repeat, repeat;
  background-size: 235px, cover;
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .l-cta.last {
    background-image: none, url(../img/texture/cta_bg.png);
  }
}
@media screen and (max-width: 767px) {
  .l-cta.last {
    background-image: url(../img/icon/character.svg), url(../img/texture/cta_bg.png);
    background-position: center bottom, center, center;
    background-size: 100px, cover;
  }
}

/*--------------------------------
    1カラムレイアウト
--------------------------------*/
/*--------------------------------
    2カラムレイアウト
--------------------------------*/
/* Object > Component
 * 接頭辞：c-
 * 再利用できるパターンとして最小単位のモジュールを定義
======================================*/
/****** 見出し/タイトル ******/
/* 共通の見出し =====================*/
.c-heading-common_h2 {
  font-size: 2.25em;
  font-weight: bold;
  line-height: 1.15;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-heading-common_h2 {
    font-size: 1.75em;
  }
}
.c-heading-common_h2 span {
  color: #00B3E8;
  display: block;
  font-size: 0.3888em;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-heading-common_h2 span {
    font-size: 0.6em;
  }
}
.c-heading-common_h2 span:before {
  -webkit-transform: translateX(-50%);
  background-color: #00B3E8;
  bottom: -10px;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 60px;
}

/* SellBOTについて =====================*/
.c-heading-about {
  display: inline;
  font-size: 1.125em;
  font-weight: bold;
  padding-left: 2em;
  padding-right: 2em;
  position: relative;
}
.c-heading-about::before, .c-heading-about::after {
  background-image: url(../img/icon/quotation_black.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 15px;
  left: 0.3em;
  position: absolute;
  top: 10px;
  width: 25px;
}
@media screen and (max-width: 767px) {
  .c-heading-about::before, .c-heading-about::after {
    top: 0;
    width: 20px;
  }
}
.c-heading-about::after {
  -webkit-transform: rotate(180deg);
  left: auto;
  right: 0.3em;
  transform: rotate(180deg);
}
.c-heading-about strong {
  font-size: 2em;
}
@media screen and (max-width: 767px) {
  .c-heading-about strong {
    font-size: 1.5em;
    line-height: 1.15;
  }
}
.c-heading-about strong span {
  color: #00B3E8;
}
.c-heading-about .c-logo-about {
  margin-right: 0.5em;
}

/* 特長 =====================*/
.c-heading-feature-3step {
  font-size: 1.875em;
  font-weight: bold;
}
.c-heading-feature-3step .sp-no {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-heading-feature-3step .sp-no {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-feature-3step {
    font-size: 1.25em;
  }
}
.c-heading-feature-3step strong {
  color: #00B3E8;
}

.c-heading-feature-List {
  font-size: 1.25em;
  font-weight: bold;
}

.c-heading-feature-point {
  color: #154576;
  font-size: 1.125em;
  font-weight: bold;
}

.c-heading-feature-hakudou {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-wrap: wrap;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.25em;
  font-weight: bold;
  padding-bottom: 1em;
}
.c-heading-feature-hakudou span {
  padding-top: 1.2em;
}
@media screen and (max-width: 767px) {
  .c-heading-feature-hakudou span {
    padding-top: 0;
  }
}

/* ご利用の流れ =====================*/
.c-heading-flowList {
color:#fff;
  background-image: url(../img/icon/hexagon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 70px;
  position: relative;
  text-align: center;
  width: 60px;
  z-index: 10;
}

.c-heading-flowNomber {
  -webkit-transform: translate(-50%, -50%);
  left: 50%;
  line-height: 1.15;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-heading-flowNomber span {
  font-size: 1.25em;
}

.c-heading-flowItem {
  color: #00B3E8;
  font-size: 1.375em;
  font-weight: bold;
}

/* 3つの料金体系 =====================*/
.c-heading-priceLead {
  font-size: 1.25em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-heading-priceLead {
    line-height: 1.5;
  }
}
.c-heading-priceLead .pc-no {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-heading-priceLead .pc-no {
    display: block;
  }
}
.c-heading-priceLead strong {
  color: #00B3E8;
  font-size: 1.2em;
}

/* 1分でわかるSellBOT =====================*/
.c-heading-oneMinute-cost {
  font-size: 1.25em;
  font-weight: bold;
}

.c-heading-oneMinute {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  align-items: center;
  column-gap: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .c-heading-oneMinute {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.c-heading-oneMinute p {
  font-size: 2.5em;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-heading-oneMinute p {
    font-size: 1.8em;
  }
}
.c-heading-oneMinute p::before, .c-heading-oneMinute p::after {
  -webkit-transform: translate(-120%, 100%);
  background-image: url(../img/icon/quotation_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 15px;
  left: 0;
  position: absolute;
  top: 0;
  transform: translate(-120%, 100%);
  width: 25px;
}
.c-heading-oneMinute p::after {
  -webkit-transform: translate(120%, 100%) rotate(180deg);
  left: auto;
  right: 0;
  transform: translate(120%, 100%) rotate(180deg);
}

/* プロモーションムービー =====================*/
.c-heading-promotion {
  font-size: 1.75em;
  font-weight: bold;
}
.c-heading-promotion br {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-heading-promotion br {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-promotion {
    line-height: 1.15;
  }
}

.c-heading-movieTitle {
  font-size: 1.25em;
  font-weight: bold;
}

/* CTA =====================*/
.c-heading-cta {
  color: #fff;
  display: inline-block;
  font-size: 1.875em;
  font-weight: bold;
  padding-left: 2em;
  padding-right: 2em;
  position: relative;
}
.c-heading-cta br {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-heading-cta br {
    display: block;
  }
}
@media screen and (max-width: 1020px) {
  .c-heading-cta {
    line-height: 1.15;
  }
}
@media screen and (max-width: 767px) {
  .c-heading-cta {
    font-size: 1.375em;
  }
}
.c-heading-cta:before, .c-heading-cta:after {
  -webkit-transform: translate(0, -50%);
  background-image: url(../img/icon/hukidashi.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 1.16em;
  left: 0.5em;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.83em;
}
@media screen and (max-width: 767px) {
  .c-heading-cta:before, .c-heading-cta:after {
    height: 1.75em;
    width: 1.5em;
  }
}
.c-heading-cta:after {
  -webkit-transform: translate(0, -50%) rotateX(180deg);
  left: auto;
  position: absolute;
  right: 0.5em;
  transform: translate(0, -50%) rotateX(180deg);
}

/* こんな課題はありませんか？ =====================*/
.c-heading-issues {
  font-size: 1.25em;
  font-weight: bold;
}
.c-heading-issues strong {
  color: #00B3E8;
  font-size: 1.2em;
}

/* 導入事例 =====================*/
.c-heading-plaport {
  font-size: 1em;
  font-weight: bold;
}

.c-heading-plaportList {
  border-right: 1px solid #888;
  font-size: 0.875em;
  font-weight: bold;
  margin-right: 1.5em;
  padding-right: 1.5em;
  white-space: nowrap;
}

.c-heading-plaportLead {
  color: #00B3E8;
  font-size: 1.75em;
  font-weight: bold;
}

.c-heading-caseStudyList {
  font-size: 1.25em;
  font-weight: bold;
}

.c-heading-caseStudyName {
  border-bottom: 1px solid #DDD;
  font-size: 0.875em;
  font-weight: bold;
}


.effect-title{
}

.effect-list{
	display:flex;
	gap:2rem;
}

.effect-list li{
	text-align:center;
}
.effect-list li img{
	width:100%;
}

@media screen and (max-width: 767px) {
	.effect-list{
		flex-direction: column;
	}
}



/* FAQ =====================*/
.c-heading-icon {
  color: #00B3E8;
  font-size: 2em;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .c-heading-icon {
    font-size: 1.5em;
    margin-right: 10px;
  }
}

.c-heading-icon.Q {
  color: #00B3E8;
}

.c-heading-icon.A {
  color: #888;
}

.c-heading-question {
  font-size: 1.25em;
  font-weight: bold;
  padding-right: 2em;
}
@media screen and (max-width: 767px) {
  .c-heading-question {
    font-size: 1em;
  }
}

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

	下層ページ

================================*/
/* ページタイトル =====================*/
.c-heading-lowerpageHeader_h2 {
  font-size: 2em;
}
@media screen and (max-width: 767px) {
  .c-heading-lowerpageHeader_h2 {
    font-size: 1.5em;
  }
}
.c-heading-lowerpageHeader_h2 span {
  display: inline;
  font-size: 14px;
  letter-spacing: 1.4px;
  position: relative;
  text-transform: uppercase;
}
.c-heading-lowerpageHeader_h2 span::after {
  -webkit-transform: translate(100%, -50%);
  background-color: #fff;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translate(100%, -50%);
  width: 60px;
}

/* 左ライン付き見出し =====================*/
.c-heading-common_h3 {
  font-size: 1.75em;
  font-weight: bold;
  padding-left: 1.15em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-heading-common_h3 {
    font-size: 1.5em;
  }
}
.c-heading-common_h3::before {
  -webkit-transform: translate(0, -50%);
  background-color: #00B3E8;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 0.85em;
}

.c-heading-common_h4 {
  font-size: 1.25em;
  font-weight: bold;
}

/****** ラベル ******/
.c-label-feature {
  background-color: #00B3E8;
  color: #fff;
  display: inline-block;
  font-size: 0.875em;
  font-weight: bold;
  padding: 0.3em 1em;
}

/****** ボタン ******/
.c-btn-cta {
  background-color:#00B3E8;
  border-radius: 30px;
  color: #fff;
  display: inline-block;
  font-size: 1.375em;
  font-weight: bold;
  padding: 0.5em 4em;
  white-space: nowrap;
}
.c-btn-cta:hover {
  -webkit-box-shadow: none;
  -webkit-transform: translateY(2px);
  box-shadow: none;
  transform: translateY(2px);
}
@media screen and (max-width: 767px) {
  .c-btn-cta {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.125em;
    justify-content: center;
    margin: 0 auto;
    min-width: 310px;
    padding: 0.8em 1em;
    white-space: nowrap;
    width: 100%;
  }
}

.c-btn-cta.header {
  -ms-flex-line-pack: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-shadow: none;
  align-content: center;
  box-shadow: none;
  display: grid;
  font-size: 0.875em;
  height: 40px;
  justify-content: center;
  padding: 0;
  white-space: nowrap;
  width: 180px;
}

.c-btn-cta.header.contact {
  background-color: rgba(0, 0, 0, 0);
}

.c-btn-cta__wrap {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .c-btn-cta__wrap {
    margin-bottom: 10px;
  }
}
.c-btn-cta__wrap i {
  margin-right: 1em;
}

.c-btn-cta.icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.125em;
  height: 65px;
  justify-content: center;
  padding: 0;
  white-space: nowrap;
  width: 310px;
}

.c-btn-cta.icon.contact {
  background-color: #fff;
  border: 0.2em solid #154576;
  color: #154576;
}

.c-btn-cta.fv {
  font-size: 1em;
}

.c-btn-scroll {
  bottom: 7px;
  color: #fff;
  position: fixed;
  right: 7px;
  text-align: center;
  z-index: 99;
}
.c-btn-scroll a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #00B3E8;
  border-radius: 50%;
  display: grid;
  height: 40px;
  width: 40px;
}

/* ハンバーガーボタン =====================*/
.c-btn_menuTrigger_wrapper {
  background-color: #00B3E8;
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  /*opacity: 0.8;*/
  padding: 12px 10px;
  position: fixed;
  right: 15px;
  top: 20px;
  width: 40px;
  z-index: 1010;
}
@media screen and (min-width: 1099px) {
  .c-btn_menuTrigger_wrapper {
    display: none;
  }
}

.c-btn_menuTrigger {
  cursor: pointer;
  height: 100%;
  position: relative;
  vertical-align: middle;
}
.c-btn_menuTrigger > span {
  -webkit-box-sizing: border-box;
  -webkit-transition: 0.5s;
  background-color: #fff;
  box-sizing: border-box;
  display: inline-block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: 0.5s;
  width: 100%;
}
.c-btn_menuTrigger > span:nth-of-type(1) {
  top: 0;
}
.c-btn_menuTrigger > span:nth-of-type(2) {
  -webkit-transform: translateY(-50%);
  top: 50%;
  transform: translateY(-50%);
}
.c-btn_menuTrigger > span:nth-of-type(3) {
  bottom: 0;
}
.c-btn_menuTrigger.is_active > span:nth-of-type(1) {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.c-btn_menuTrigger.is_active > span:nth-of-type(2) {
  opacity: 0;
}
.c-btn_menuTrigger.is_active > span:nth-of-type(3) {
  -webkit-transform: translateY(-50%) rotate(45deg);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/****** テキスト ******/
.c-text-headerNav-item {
  font-size: 0.875em;
  font-weight: bold;
  position: relative;
  white-space: nowrap;
}
.c-text-headerNav-item:hover:after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.c-text-headerNav-item:after {
	opacity:0.7;
  -webkit-transition: all 0.3s;
  -webkit-transform: scale(0, 1);
  -webkit-transform-origin: center top;
  background: #fff;
  bottom: -10px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: all 0.3s;
  width: 100%;
}
.scroll .c-text-headerNav-item:after {
  background: #0D0C0A;
}

.c-text-headerNav-item.tel:after,
.c-text-headerNav-item.btn:after {
  display: none;
}

.c-text-headerNav-item.tel {
  font-size: 1.4em;
  line-height: 0.8em;
  position: relative;
  border-left: 1px solid #fff;
  padding-left: 52px;
}
.c-text-headerNav-item.tel i {
  padding-right: 5px;
  position: absolute;
  top: 7px;
  left: 20px;
}
.c-text-headerNav-item.tel span {
  font-size: 12px;
  padding-left: 2px;
}
.scroll .c-text-headerNav-item.tel {
  border-left: 1px solid #ccc;
}
.scroll .c-text-headerNav-item.tel:hover {
  color: #333;
}

.c-text-fv-sub {
  font-size: 1.375em;
  font-weight: bold;
}

.c-text-fv-copy {
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .c-text-fv-copy {
    text-align: center;
  }
}

.c-text-about-pickup {
  font-size: 1em;
  font-weight: bold;
  line-height: 1.5;
}

.c-text-about-pickup br {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-text-about-pickup br {
    display: block;
  }
}
.c-text-about-pickup .sp-no {
  display: block;
}
@media screen and (max-width: 767px) {
  .c-text-about-pickup {
    font-size: 0.75em;
    line-height: 1.25em;
  }
}

.c-text-about-pickup.--hosoku {
  font-size: 0.875em;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .c-text-about-pickup.--hosoku {
    font-size: 0.75em;
  }
}

.c-text__footer-nav {
  -webkit-transition: all 0.25s;
  font-size: 0.875em;
  font-weight: bold;
  transition: all 0.25s;
}
.c-text__footer-nav:hover {
  color: #00B3E8;
}

.c-text__footer-copyright {
  font-size: 0.875em;
  font-weight: normal;
  opacity: 0.7;
}

.c-text {
  font-size: 1em;
}
@media screen and (max-width: 767px) {
  .c-text {
    line-height: 1.5;
  }
}

.c-txt-plaportList {
  font-size: 0.875em;
  padding-right: 1em;
  white-space: nowrap;
}

.c-text-answer {
  font-size: 1em;
  font-weight: normal;
}

.c-text-featureList-item {
  font-size: 1em;
  padding-left: 1em;
  text-indent: -1.2em;
}
.c-text-featureList-item::before {
  background-color: #00B3E8;
  content: "";
  display: inline-block;
  height: 10px;
  margin-right: 0.5em;
  width: 10px;
}

.c-text-cta {
  color: #fff;
  font-weight: bold;
}
.c-text-cta:hover {
  opacity: 0.8;
}

.c-text-cta-sub {
  color: #fff;
  font-size: 1.125em;
  font-weight: bold;
}

.c-text-cta {
  color: #fff;
  font-weight: bold;
  margin-left: 2em;
  position: relative;
}
.c-text-cta:before {
  -webkit-transform: translate(-100%, -50%);
  background-image: url(../img/icon/arrow_white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 25px;
  left: -0.75em;
  position: absolute;
  top: 50%;
  transform: translate(-100%, -50%);
  width: 25px;
}

.c-text-cta-tel {
  color: #fff;
  font-weight: bold;
}

.c-text-cta-Number {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
  position: relative;
}
.c-text-cta-Number i {
  margin-right: 0.5em;
}
@media (min-width: 751px) {
  .c-text-cta-Number {
    pointer-events: none;
  }
}

.c-text-breadcrumb-listItem {
  font-size: 0.875em;
}
.c-text-breadcrumb-listItem::after {
  content: "―";
  padding: 0 0.5em;
}
.c-text-breadcrumb-listItem:last-child::after {
  content: "";
}
.c-text-breadcrumb-listItem:last-child {
  opacity: 0.7;
}

/****** ロゴ ******/
.c-logo-header {
  height: 40px;
  width: auto;
}
.c-logo-header.is_open {
  display: none;
}

.c-logo-header.scroll {
  display: none;
}
.c-logo-header.scroll.is_open {
  display: block;
}

.c-logo-about {
  height: auto;
  width: 160px;
}

.c-logo-oneMinute {
  height: 40px;
  width: auto;
}

.c-logo-hakudo {
  height: 70px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-logo-hakudo {
    height: auto;
    width: 100%;
  }
}

.c-logo-plaport img{
  height: 30px;
  width: auto;
}

.c-logo__footer {
  height: 120px;
  width: auto;
  opacity:0.9;
}

.c-logo-revox {
  max-width: 240px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-logo-revox {
    width: 50%;
  }
}

.header_teikei {
	margin-right:0;
	padding:1rem 2rem 0 2rem;
}
.header_teikei img{
	max-width:230px;
}

.l-header .logo_teikei.scroll {
  display: none;
}
.l-header.scroll .logo_teikei {
  display: none;
}
.l-header.scroll .logo_teikei.scroll {
  display: block;
}

@media screen and (max-width: 767px) {
	.header_teikei {
		padding:0 0 0 1rem;
	}
	.header_teikei img{
		max-width:120px;
	}
}

/****** イメージ ******/
.c-img-about-icon {
  height: 100px;
  width: auto;
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .c-img-about-icon {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .c-img-about-icon {
    height: 30px;
  }
}

.c-img-about {
  height: auto;
  max-width: 1010px;
  width: 100%;
}

.c-img-fv-heading {
  height: auto;
  max-width: 580px;
  width: 100%;
}

.c-img-fv-pc {
  height: auto;
  max-width: 480px;
  width: 100%;
}

.c-img-oneMinute-cost {
  height: auto;
  max-width: 520px;
  width: 100%;
}

.c-img-issues {
  height: 240px;
  width: auto;
}

.c-img-feature-point {
  height: 260px;
  width: 260px;
}

.c-img-plaport {
  -o-object-fit: cover;
  height: 235px;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-img-plaport {
    height: 300px;
    width: 100%;
  }
}

/* svgタイトル =====================*/
.c-img-about-copy {
  height: 32px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .c-img-about-copy {
    height: 17px;
  }
}

.c-img-about-copy.--line2 {
  height: 82px;
}
@media screen and (max-width: 767px) {
  .c-img-about-copy.--line2 {
    height: 51px;
  }
}

.c-img-about-copy.--line3 {
  height: 150px;
}
@media screen and (max-width: 767px) {
  .c-img-about-copy.--line3 {
    height: 85px;
  }
}

.c-img-about-copy.--line1_ruby {
  height: 54px;
}
@media screen and (max-width: 767px) {
  .c-img-about-copy.--line1_ruby {
    height: 30.6px;
  }
}

/****** 動画 ******/
.c-movie-iframe {
  margin: 0 auto;
  max-width: 820px;
  width: 100%;
}
.c-movie-iframe__inner {
  height: 0;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.c-movie-iframe__inner iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.c-movie-feature-movie {
  max-width: 560px;
  padding-top: 30px;
  width: 100%;
}
.c-movie-feature-movie__inner {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
}
.c-movie-feature-movie video {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/* Object > Project
 * 接頭辞：p-
 * 再利用できるパターンとしてComponentの集合体を定義
 * もしくはComponentとするには大きすぎるObject（4階層構造以上を目安）を定義
======================================*/
/****** ナビゲーション ******/
.p-nav-header__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  align-items: center;
  column-gap: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}

.p-nav-header-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  align-items: center;
  column-gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}

.p-nav__footer {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  justify-content: center;
  padding-bottom: 40px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-nav__footer {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

/*--------------------------------
    パンくずリスト
--------------------------------*/
.p-nav-breadcrumb {
  margin-top: 20px;
}
.p-nav-breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 1256px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

/*--------------------------------
    モバイルメニュー
--------------------------------*/
/*------ サイト画面全体を制御 -------*/
.js_siteBody_inner {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.js_siteBody_inner.is_open {
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}

/*------ ドロワーエリアを制御 -------*/
.p-nav_mobileMenu {
  -webkit-transform: translateX(calc(100vw + 300px));
  -webkit-transition: 0.5s;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -ms-flex-pack: distribute;
  background-color: #111;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  overflow-y: auto;
  padding: 16px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(calc(100vw + 300px));
  transition: 0.5s;
  width: 100vw;
  z-index: 100;
  padding-top: 80px;
}
.p-nav_mobileMenu.is_open {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/*------ ナビゲーションメニュー -------*/
.p-nav_mobileMenu_nav {
	padding-bottom:2rem;
}
.p-nav_mobileMenu_nav li {
  position: relative;
}
.p-nav_mobileMenu_nav li.menu-item-has-children a {
  padding-right: 4em;
}
.p-nav_mobileMenu_nav li ul > li > a {
  padding-left: 1em;
}
.p-nav_mobileMenu_nav li > a {
    font-size: 1.2em;
  -webkit-transition: 0.25s;
  display: inline-block;
  padding: 0.75em 0;
  position: relative;
  text-decoration: none;
  transition: 0.25s;
  width: 100%;
}
.p-nav_mobileMenu_nav li > a:hover {
  opacity: 0.8;
}
.p-nav_mobileMenu_nav .p-nav_mobileMenu_accBtn {
  line-height: 1;
  position: absolute;
  right: 1em;
  top: 0.75em;
  z-index: 10;
}
.p-nav_mobileMenu_nav .p-nav_mobileMenu_accBtn::before {
  color: #00B3E8;
  content: "";
  font-family: "Font Awesome 5 Free";
  font-size: 1.5em;
  font-weight: 900;
}
.p-nav_mobileMenu_nav .p-nav_mobileMenu_accBtn.js_open::before {
  content: "";
}

/*--------------------------------
  モバイルメニュー > CTA
--------------------------------*/
.p-nav_mobileMenu_cta {
  margin-top: 20px;
}
.p-nav_mobileMenu_cta > * {
  width: 100%;
}
.p-nav_mobileMenu_cta > *:not(:first-child) {
  margin-top: 20px;
}

/****** カード ******/
.p-card-about-circle {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-shadow: 0px 3px 30px #0a34481a;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 3px 30px #0a34481a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column-reverse;
  height: 240px;
  justify-content: center;
  position: relative;
  row-gap: 15px;
  width: 240px;
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .p-card-about-circle {
    height: 220px;
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .p-card-about-circle {
    height: 110px;
    row-gap: 5px;
    width: 110px;
  }
}

.p-card-issuesList {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-column-gap: 3%;
  -moz-column-gap: 3%;
  align-items: flex-start;
  column-gap: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-bottom: 300px;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-card-issuesList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
    row-gap: 240px;
  }
}
.p-card-issuesList-item {
  -ms-flex-preferred-size: 27.11%;
  -webkit-box-shadow: 0px 3px 30px #0a34481a;
  background-color: #fff;
  box-shadow: 0px 3px 30px #0a34481a;
  flex-basis: 27.11%;
  max-width: 350px;
  padding: 1.5em 1em;
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-card-issuesList-item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.p-card-issuesList-item::after {
  -webkit-transform: translateY(100%);
  border-color: #fff transparent transparent transparent;
  border-style: solid;
  border-width: 16px 12px 0 12px;
  bottom: 0;
  content: "";
  display: block;
  height: 0px;
  margin: auto;
  position: absolute;
  right: 0;
  right: 30%;
  transform: translateY(100%);
  width: 0px;
}

.c-img-issues {
  -webkit-transform: translate(-50%, 90%);
  bottom: 0;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 90%);
}

.p-card-featureList {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-card-featureList {
    gap: 25px;
  }
}
.p-card-featureList li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-card-featureList li {
    gap: 10px;
  }
}
.p-card-featureList__textwrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-card-featureList__textwrap {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .p-card-featureList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-card-featureList {
    grid-template-columns: 100%;
  }
}

.p-card-promotionList {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-card-promotionList {
    gap: 40px;
  }
}
.p-card-promotionList li {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-card-promotionList li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .p-card-promotionList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .p-card-promotionList {
    grid-template-columns: 100%;
  }
}

.p-card-flowList {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  row-gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-card-flowList {
    margin-top: 30px;
    row-gap: 15px;
  }
}
.p-card-flowList li {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  align-items: center;
  column-gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-card-flowList li {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
.p-card-flowList__textwrap {
  -ms-flex-preferred-size: 75%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  background-color: #eeeeed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-basis: 75%;
  flex-direction: column;
  gap: 1em;
  padding: 30px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-card-flowList__textwrap {
    gap: 0.5em;
    padding: 15px;
  }
}
.p-card-flowList__textwrap::before {
  border-right: 3px solid #dae5f7;
  content: "";
  display: block;
  height: 80%;
  left: -71.5px;
  position: absolute;
  top: 50%;
  width: 0;
}
@media screen and (max-width: 767px) {
  .p-card-flowList__textwrap::before {
    left: -51.5px;
  }
}
.p-card-flowList__textwrap.step2::before {
  height: 100%;
  top: 0;
}
.p-card-flowList__textwrap.step3::before {
  -webkit-transform: translateY(-100%);
  bottom: 50%;
  height: 120%;
  transform: translateY(-100%);
}

.p-card-oneMinute-cost {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  justify-content: space-between;
  padding: 40px 60px;
}
@media screen and (max-width: 1020px) {
  .p-card-oneMinute-cost {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    row-gap: 1em;
  }
}
.p-card-oneMinute-cost .c-heading-oneMinute-cost {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-card-oneMinute-cost .c-heading-oneMinute-cost {
    margin-bottom: 10px;
  }
}
.p-card-oneMinute-cost dl {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}
.p-card-oneMinute-cost .c-img-oneMinute-cost {
  height: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-card-oneMinute-cost .c-img-oneMinute-cost {
    width: 100%;
  }
}

.p-card-feature {
  -webkit-box-shadow: 0px 3px 30px #0a34481a;
  background-color: #fff;
  background-image: url(../img/photo/point.png);
  background-position: 96% 20px;
  background-repeat: no-repeat;
  background-size: 280px auto;
  box-shadow: 0px 3px 30px #0a34481a;
  padding: 40px 280px 40px 60px;
}
@media screen and (max-width: 767px) {
  .p-card-feature {
    background-position: 95% 160%;
    background-size: 200px auto;
    padding: 16px 16px 160px 16px;
  }
}
.p-card-feature .c-heading-feature-point {
  margin-bottom: 10px;
}

.p-card-caseStudy__textwrap {
  background-color: #eeeeed;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .p-card-caseStudy__textwrap {
    padding: 15px;
  }
}
.p-card-caseStudy__textwrap .c-heading-caseStudyName {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  .p-card-caseStudy__textwrap .c-heading-caseStudyName {
    margin-bottom: 1em;
    padding-bottom: 1em;
  }
}

/****** ブロック ******/
.p-block-about {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 36px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-block-about {
    gap: 0 5px;
  }
}
.p-block-about .c-text-about-pickup.--hosoku {
  margin-top: 1em;
}

.p-block-about-heading {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 20px;
}
.p-block-about-heading br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-block-about-heading br {
    display: block;
  }
}
.p-block-about-heading span {
  font-size: 1.125em;
}

.p-block-oneMinute {
  text-align: center;
}
.p-block-oneMinute .c-movie-iframe {
  margin-bottom: 60px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-block-oneMinute .c-movie-iframe {
    margin-bottom: 30px;
    margin-top: 15px;
  }
}

.p-block-plaport__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-column-gap: 5%;
  -moz-column-gap: 5%;
  align-items: flex-start;
  column-gap: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-block-plaport__wrap {
    margin-top: 30px;
    row-gap: 30px;
  }
}
.p-block-plaport__wrap .p-block-plaport-info {
  -ms-flex-preferred-size: 32.5%;
  flex-basis: 32.5%;
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .p-block-plaport__wrap .p-block-plaport-info {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
  }
}
@media screen and (max-width: 767px) {
  .p-block-plaport__wrap .p-block-plaport-info {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.p-block-plaport__wrap .p-block-plaport-info .c-logo-plaport {
    background: #fff;
    display: inline-block;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
}
.p-block-plaport__wrap .p-block-plaport-info .c-heading-plaportLead {
  margin-bottom: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-block-plaport__wrap .p-block-plaport-info .c-heading-plaportLead {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.p-block-plaport__wrap .p-block-plaport-info .c-img-plaport {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-block-plaport__wrap .p-block-plaport-info .c-img-plaport {
    margin-bottom: 10px;
  }
}
.p-block-plaport__wrap .p-block-caseStudyList {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-block-plaportList-item {
  border-bottom: 1px solid #DDD;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}
.p-block-plaportList-item dl {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
}

.p-block-caseStudyList {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-block-caseStudyList {
    row-gap: 20px;
  }
}
.p-block-caseStudyList .c-heading-caseStudyList {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-block-caseStudyList .c-heading-caseStudyList {
    margin-bottom: 10px;
  }
}

.p-block-feature-step {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 1020px) {
  .p-block-feature-step {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 40px;
  }
}

.p-block-feature-stepList {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-column-gap: 3%;
  -moz-column-gap: 3%;
  align-items: flex-start;
  column-gap: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  row-gap: 1em;
}
@media screen and (max-width: 1020px) {
  .p-block-feature-stepList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 560px;
    width: 100%;
  }
}
.p-block-feature-stepList .c-img-feature {
  margin-top: 30px;
}

.p-block-feature-stepList.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
@media screen and (max-width: 1020px) {
  .p-block-feature-stepList.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-block-feature-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 80px 0 0 50px;
  position: relative;
}
@media screen and (max-width: 1020px) {
  .p-block-feature-text {
    padding: 60px 0 0 35px;
    width: 100%;
  }
}
.p-block-feature-text::before {
  background-image: url(../img/icon/feature-1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 78px;
  left: 0;
  position: absolute;
  top: 0;
  width: 52px;
}
.p-block-feature-text .p-block-feature-heading {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-block-feature-text .p-block-feature-heading {
    margin-bottom: 10px;
  }
}
.p-block-feature-text .c-label-feature {
  margin-bottom: 10px;
}
.p-block-feature-text .p-block-featureList {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}

.p-block-feature-text.step2::before {
  background-image: url(../img/icon/feature-2.svg);
}

.p-block-feature-text.step3::before {
  background-image: url(../img/icon/feature-3.svg);
}

.p-block-iframeWrap.--promotion {
  height: 100%;
  padding-top: 0;
  width: 100%;
}

/*アコーディオンで現れるエリア*/
.p-block-FAQ.A__wrap {
  display: none;
}

.p-block-FAQ_wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  row-gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-block-FAQ_wrap {
    margin-top: 30px;
    row-gap: 10px;
  }
}
.p-block-FAQ_wrap li {
  background-color: #eeeeed;
  padding: 10px 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-block-FAQ_wrap li {
    padding: 0 20px;
  }
}

.p-block-FAQ {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 10px;
}

.p-block-FAQ.Q .c-heading-question {
  display: block;
  position: relative;
  width: 100%;
}
.p-block-FAQ.Q .c-heading-question:before, .p-block-FAQ.Q .c-heading-question:after {
  background-color: #00B3E8;
  content: "";
  height: 3px;
  position: absolute;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .p-block-FAQ.Q .c-heading-question:before, .p-block-FAQ.Q .c-heading-question:after {
    width: 18px;
  }
}
.p-block-FAQ.Q .c-heading-question:before {
  -webkit-transform: translate(-50% 0);
  -webkit-transform: rotate(0deg);
  right: 0;
  top: 50%;
  transform: translate(-50% 0);
  transform: rotate(0deg);
}
.p-block-FAQ.Q .c-heading-question::after {
  -webkit-transform: translate(-50% 0);
  -webkit-transform: rotate(90deg);
  right: 0;
  top: 50%;
  transform: translate(-50% 0);
  transform: rotate(90deg);
}

.p-block-FAQ.Q.close .c-heading-question:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.p-block-FAQ.Q.close .c-heading-question::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-block-FAQ.A {
  border-top: 1px solid #555;
}

.p-block-cta-textwrap.none::before {
  display: none;
}

.p-block-cta-btnList {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  justify-content: center;
}
@media screen and (max-width: 1020px) {
  .p-block-cta-btnList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-block-cta-btnList .c-text-cta-sub {
  margin-bottom: 0.5em;
}

.p-block-cta-tel {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 15px;
  justify-content: center;
}
@media screen and (max-width: 1020px) {
  .p-block-cta-tel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.p-block-fv-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em 2em;
   padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-block-fv-btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}


/* お知らせ ===================== */
.p-block-news-list {
    padding: 1rem 2rem;
    max-height: 9.5em;
    overflow-y: scroll;
    /*scrollbar-color: #111 #333;*/
    border-left: solid 1px #888;
}
.p-block-news-list li + li {
    margin-top: 1em;
}
.p-block-news-list .c-date {
    margin-right: 1em;
}
.p-block-news-list a {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {
	.p-block-news-list {
	    padding: 1rem;
	    max-height: 9em;
	}
}


/* SNSアイコン ===================== */
.p-snsMenu {
  margin-bottom: 2rem;
}

.p-snsMenu__list {
  display: flex;
  justify-content: center;
}

.p-snsMenu__item + .p-snsMenu__item {
  margin-left: 1rem;
}

.p-snsMenu__link {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.75rem;
  background-color: #fff;
}
.p-snsMenu__link:hover {
  opacity: .8;
}

.p-snsMenu__link.-youtube {
  border: 1px solid #FF0000;
  color: #FF0000;
}

.p-snsMenu__link.-twitter {
  border: 1px solid #555;
  color: #333;
}

.p-snsMenu__link.-facebook {
  border: 1px solid #1877f2;
  color: #1877f2;
}

.p-snsMenu__link.-instagram {
  border: 1px solid #F00075;
  color: #F00075;
}



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

	下層ページ

================================*/
.p-block-container {
  /*background-color: #333;*/
}
@media screen and (max-width: 767px) {
  .p-block-container {
    margin-top: 20px;
  }
}
.p-block-container__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding-bottom: 80px;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 80px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-block-container__inner {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.p-block-container .c-heading-common_h3 {
  margin-bottom: 20px;
}
.p-block-container .c-heading-common_h4 {
  margin-bottom: 10px;
}

.p-block-company__philosophy .p-block-container__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 767px) {
  .p-block-company__philosophy .p-block-container__inner {
    row-gap: 30px;
  }
}

.p-block-company__name .p-block-container__inner {
  text-align: center;
}
.p-block-company__name .c-logo-revox {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-block-company__name .c-logo-revox {
    margin-bottom: 20px;
  }
}

.p-block-philosophy-list .c-img-about-copy.--line1_ruby {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-block-philosophy-list .c-img-about-copy.--line1_ruby {
    margin-bottom: 15px;
  }
}

.p-block-privacy-list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-block-privacy-list {
    row-gap: 20px;
  }
}
.p-block-privacy-list ul {
  list-style-type: disc;
}
.p-block-privacy-list ol {
  list-style-type: decimal;
}
.p-block-privacy-list ul,
.p-block-privacy-list ol {
  padding-left: 1.5em;
  text-indent: 0.25em;
}

/****** ブロック ******/
.p-table-price {
  white-space: nowrap;
  width: 100%;
}
.p-table-price strong {
  color: #00B3E8;
}
.p-table-price td,
.p-table-price th {
  padding: 0.75em 1em;
}
.p-table-price .p-table-plan {
  background-color: #00B3E8;
}
.p-table-price .p-table-function {
  background-color: #F5F8FD;
}

.p-table-price,
td,
th {
  border: 1px solid #DDD;
  border-collapse: collapse;
  text-align: center;
  vertical-align: middle;
}

@media screen and (max-width: 1020px) {
  .p-table-price__wrap {
    overflow-x: scroll;
  }
}

.p-table-company {
  width: 100%;
}
.p-table-company td,
.p-table-company th {
  border: 0;
  border-collapse: collapse;
  padding: 0.75em 1em;
  text-align: left;
  vertical-align: middle;
}
.p-table-company td br,
.p-table-company th br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-table-company td br,
.p-table-company th br {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-table-company td,
.p-table-company th {
    display: block;
    width: 100%;
  }
}
.p-table-company th {
}
@media screen and (max-width: 767px) {
  .p-table-company th {
    border-bottom: 0;
    border-top: 0;
  }
}
.p-table-company tr {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

/* Utility
 * 接頭辞：u-
 * スポットで状態変化させたいmarginなどの補助クラスを定義
======================================*/
/****** マージン ******/
.u-mt0 {
  margin-top: 0px !important;
}

.u-mb0 {
  margin-bottom: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mt0e {
  margin-top: 0em !important;
}

.u-mb0e {
  margin-bottom: 0em !important;
}

.u-mt0_25e {
  margin-top: 0.25em !important;
}

.u-mb0_25e {
  margin-bottom: 0.25em !important;
}

.u-mt0_5e {
  margin-top: 0.5em !important;
}

.u-mb0_5e {
  margin-bottom: 0.5em !important;
}

.u-mt0_75e {
  margin-top: 0.75em !important;
}

.u-mb0_75e {
  margin-bottom: 0.75em !important;
}

.u-mt1e {
  margin-top: 1em !important;
}

.u-mb1e {
  margin-bottom: 1em !important;
}

.u-mt1_25e {
  margin-top: 1.25em !important;
}

.u-mb1_25e {
  margin-bottom: 1.25em !important;
}

.u-mt1_5e {
  margin-top: 1.5em !important;
}

.u-mb1_5e {
  margin-bottom: 1.5em !important;
}

.u-mt1_75e {
  margin-top: 1.75em !important;
}

.u-mb1_75e {
  margin-bottom: 1.75em !important;
}

.u-mt2e {
  margin-top: 2em !important;
}

.u-mb2e {
  margin-bottom: 2em !important;
}

.u-mt2_25e {
  margin-top: 2.25em !important;
}

.u-mb2_25e {
  margin-bottom: 2.25em !important;
}

.u-mt2_5e {
  margin-top: 2.5em !important;
}

.u-mb2_5e {
  margin-bottom: 2.5em !important;
}

@media screen and (min-width: 1021px) {
  .l-mt0 {
    margin-top: 0px !important;
  }

  .l-mb0 {
    margin-bottom: 0px !important;
  }

  .l-mt5 {
    margin-top: 5px !important;
  }

  .l-mb5 {
    margin-bottom: 5px !important;
  }

  .l-mt10 {
    margin-top: 10px !important;
  }

  .l-mb10 {
    margin-bottom: 10px !important;
  }

  .l-mt15 {
    margin-top: 15px !important;
  }

  .l-mb15 {
    margin-bottom: 15px !important;
  }

  .l-mt20 {
    margin-top: 20px !important;
  }

  .l-mb20 {
    margin-bottom: 20px !important;
  }

  .l-mt25 {
    margin-top: 25px !important;
  }

  .l-mb25 {
    margin-bottom: 25px !important;
  }

  .l-mt30 {
    margin-top: 30px !important;
  }

  .l-mb30 {
    margin-bottom: 30px !important;
  }

  .l-mt35 {
    margin-top: 35px !important;
  }

  .l-mb35 {
    margin-bottom: 35px !important;
  }

  .l-mt40 {
    margin-top: 40px !important;
  }

  .l-mb40 {
    margin-bottom: 40px !important;
  }

  .l-mt45 {
    margin-top: 45px !important;
  }

  .l-mb45 {
    margin-bottom: 45px !important;
  }

  .l-mt50 {
    margin-top: 50px !important;
  }

  .l-mb50 {
    margin-bottom: 50px !important;
  }

  .l-mt0e {
    margin-top: 0em !important;
  }

  .l-mb0e {
    margin-bottom: 0em !important;
  }

  .l-mt0_25e {
    margin-top: 0.25em !important;
  }

  .l-mb0_25e {
    margin-bottom: 0.25em !important;
  }

  .l-mt0_5e {
    margin-top: 0.5em !important;
  }

  .l-mb0_5e {
    margin-bottom: 0.5em !important;
  }

  .l-mt0_75e {
    margin-top: 0.75em !important;
  }

  .l-mb0_75e {
    margin-bottom: 0.75em !important;
  }

  .l-mt1e {
    margin-top: 1em !important;
  }

  .l-mb1e {
    margin-bottom: 1em !important;
  }

  .l-mt1_25e {
    margin-top: 1.25em !important;
  }

  .l-mb1_25e {
    margin-bottom: 1.25em !important;
  }

  .l-mt1_5e {
    margin-top: 1.5em !important;
  }

  .l-mb1_5e {
    margin-bottom: 1.5em !important;
  }

  .l-mt1_75e {
    margin-top: 1.75em !important;
  }

  .l-mb1_75e {
    margin-bottom: 1.75em !important;
  }

  .l-mt2e {
    margin-top: 2em !important;
  }

  .l-mb2e {
    margin-bottom: 2em !important;
  }

  .l-mt2_25e {
    margin-top: 2.25em !important;
  }

  .l-mb2_25e {
    margin-bottom: 2.25em !important;
  }

  .l-mt2_5e {
    margin-top: 2.5em !important;
  }

  .l-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .l-mt0 {
    margin-top: 0px !important;
  }

  .l-mb0 {
    margin-bottom: 0px !important;
  }

  .l-mt5 {
    margin-top: 5px !important;
  }

  .l-mb5 {
    margin-bottom: 5px !important;
  }

  .l-mt10 {
    margin-top: 10px !important;
  }

  .l-mb10 {
    margin-bottom: 10px !important;
  }

  .l-mt15 {
    margin-top: 15px !important;
  }

  .l-mb15 {
    margin-bottom: 15px !important;
  }

  .l-mt20 {
    margin-top: 20px !important;
  }

  .l-mb20 {
    margin-bottom: 20px !important;
  }

  .l-mt25 {
    margin-top: 25px !important;
  }

  .l-mb25 {
    margin-bottom: 25px !important;
  }

  .l-mt30 {
    margin-top: 30px !important;
  }

  .l-mb30 {
    margin-bottom: 30px !important;
  }

  .l-mt35 {
    margin-top: 35px !important;
  }

  .l-mb35 {
    margin-bottom: 35px !important;
  }

  .l-mt40 {
    margin-top: 40px !important;
  }

  .l-mb40 {
    margin-bottom: 40px !important;
  }

  .l-mt45 {
    margin-top: 45px !important;
  }

  .l-mb45 {
    margin-bottom: 45px !important;
  }

  .l-mt50 {
    margin-top: 50px !important;
  }

  .l-mb50 {
    margin-bottom: 50px !important;
  }

  .m-mt0e {
    margin-top: 0em !important;
  }

  .m-mb0e {
    margin-bottom: 0em !important;
  }

  .m-mt0_25e {
    margin-top: 0.25em !important;
  }

  .m-mb0_25e {
    margin-bottom: 0.25em !important;
  }

  .m-mt0_5e {
    margin-top: 0.5em !important;
  }

  .m-mb0_5e {
    margin-bottom: 0.5em !important;
  }

  .m-mt0_75e {
    margin-top: 0.75em !important;
  }

  .m-mb0_75e {
    margin-bottom: 0.75em !important;
  }

  .m-mt1e {
    margin-top: 1em !important;
  }

  .m-mb1e {
    margin-bottom: 1em !important;
  }

  .m-mt1_25e {
    margin-top: 1.25em !important;
  }

  .m-mb1_25e {
    margin-bottom: 1.25em !important;
  }

  .m-mt1_5e {
    margin-top: 1.5em !important;
  }

  .m-mb1_5e {
    margin-bottom: 1.5em !important;
  }

  .m-mt1_75e {
    margin-top: 1.75em !important;
  }

  .m-mb1_75e {
    margin-bottom: 1.75em !important;
  }

  .m-mt2e {
    margin-top: 2em !important;
  }

  .m-mb2e {
    margin-bottom: 2em !important;
  }

  .m-mt2_25e {
    margin-top: 2.25em !important;
  }

  .m-mb2_25e {
    margin-bottom: 2.25em !important;
  }

  .m-mt2_5e {
    margin-top: 2.5em !important;
  }

  .m-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 767px) {
  .s-mt0 {
    margin-top: 0px !important;
  }

  .s-mb0 {
    margin-bottom: 0px !important;
  }

  .s-mt5 {
    margin-top: 5px !important;
  }

  .s-mb5 {
    margin-bottom: 5px !important;
  }

  .s-mt10 {
    margin-top: 10px !important;
  }

  .s-mb10 {
    margin-bottom: 10px !important;
  }

  .s-mt15 {
    margin-top: 15px !important;
  }

  .s-mb15 {
    margin-bottom: 15px !important;
  }

  .s-mt20 {
    margin-top: 20px !important;
  }

  .s-mb20 {
    margin-bottom: 20px !important;
  }

  .s-mt25 {
    margin-top: 25px !important;
  }

  .s-mb25 {
    margin-bottom: 25px !important;
  }

  .s-mt30 {
    margin-top: 30px !important;
  }

  .s-mb30 {
    margin-bottom: 30px !important;
  }

  .s-mt35 {
    margin-top: 35px !important;
  }

  .s-mb35 {
    margin-bottom: 35px !important;
  }

  .s-mt40 {
    margin-top: 40px !important;
  }

  .s-mb40 {
    margin-bottom: 40px !important;
  }

  .s-mt45 {
    margin-top: 45px !important;
  }

  .s-mb45 {
    margin-bottom: 45px !important;
  }

  .s-mt50 {
    margin-top: 50px !important;
  }

  .s-mb50 {
    margin-bottom: 50px !important;
  }

  .s-mt0e {
    margin-top: 0em !important;
  }

  .s-mb0e {
    margin-bottom: 0em !important;
  }

  .s-mt0_25e {
    margin-top: 0.25em !important;
  }

  .s-mb0_25e {
    margin-bottom: 0.25em !important;
  }

  .s-mt0_5e {
    margin-top: 0.5em !important;
  }

  .s-mb0_5e {
    margin-bottom: 0.5em !important;
  }

  .s-mt0_75e {
    margin-top: 0.75em !important;
  }

  .s-mb0_75e {
    margin-bottom: 0.75em !important;
  }

  .s-mt1e {
    margin-top: 1em !important;
  }

  .s-mb1e {
    margin-bottom: 1em !important;
  }

  .s-mt1_25e {
    margin-top: 1.25em !important;
  }

  .s-mb1_25e {
    margin-bottom: 1.25em !important;
  }

  .s-mt1_5e {
    margin-top: 1.5em !important;
  }

  .s-mb1_5e {
    margin-bottom: 1.5em !important;
  }

  .s-mt1_75e {
    margin-top: 1.75em !important;
  }

  .s-mb1_75e {
    margin-bottom: 1.75em !important;
  }

  .s-mt2e {
    margin-top: 2em !important;
  }

  .s-mb2e {
    margin-bottom: 2em !important;
  }

  .s-mt2_25e {
    margin-top: 2.25em !important;
  }

  .s-mb2_25e {
    margin-bottom: 2.25em !important;
  }

  .s-mt2_5e {
    margin-top: 2.5em !important;
  }

  .s-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** パディング ******/
.u-pt0 {
  padding-top: 0px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pt0e {
  margin-top: 0em !important;
}

.u-pb0e {
  margin-bottom: 0em !important;
}

.u-pt0_25e {
  margin-top: 0.25em !important;
}

.u-pb0_25e {
  margin-bottom: 0.25em !important;
}

.u-pt0_5e {
  margin-top: 0.5em !important;
}

.u-pb0_5e {
  margin-bottom: 0.5em !important;
}

.u-pt0_75e {
  margin-top: 0.75em !important;
}

.u-pb0_75e {
  margin-bottom: 0.75em !important;
}

.u-pt1e {
  margin-top: 1em !important;
}

.u-pb1e {
  margin-bottom: 1em !important;
}

.u-pt1_25e {
  margin-top: 1.25em !important;
}

.u-pb1_25e {
  margin-bottom: 1.25em !important;
}

.u-pt1_5e {
  margin-top: 1.5em !important;
}

.u-pb1_5e {
  margin-bottom: 1.5em !important;
}

.u-pt1_75e {
  margin-top: 1.75em !important;
}

.u-pb1_75e {
  margin-bottom: 1.75em !important;
}

.u-pt2e {
  margin-top: 2em !important;
}

.u-pb2e {
  margin-bottom: 2em !important;
}

.u-pt2_25e {
  margin-top: 2.25em !important;
}

.u-pb2_25e {
  margin-bottom: 2.25em !important;
}

.u-pt2_5e {
  margin-top: 2.5em !important;
}

.u-pb2_5e {
  margin-bottom: 2.5em !important;
}

@media screen and (min-width: 1021px) {
  .l-pt0 {
    padding-top: 0px !important;
  }

  .l-pb0 {
    padding-bottom: 0px !important;
  }

  .l-pt5 {
    padding-top: 5px !important;
  }

  .l-pb5 {
    padding-bottom: 5px !important;
  }

  .l-pt10 {
    padding-top: 10px !important;
  }

  .l-pb10 {
    padding-bottom: 10px !important;
  }

  .l-pt15 {
    padding-top: 15px !important;
  }

  .l-pb15 {
    padding-bottom: 15px !important;
  }

  .l-pt20 {
    padding-top: 20px !important;
  }

  .l-pb20 {
    padding-bottom: 20px !important;
  }

  .l-pt25 {
    padding-top: 25px !important;
  }

  .l-pb25 {
    padding-bottom: 25px !important;
  }

  .l-pt30 {
    padding-top: 30px !important;
  }

  .l-pb30 {
    padding-bottom: 30px !important;
  }

  .l-pt35 {
    padding-top: 35px !important;
  }

  .l-pb35 {
    padding-bottom: 35px !important;
  }

  .l-pt40 {
    padding-top: 40px !important;
  }

  .l-pb40 {
    padding-bottom: 40px !important;
  }

  .l-pt45 {
    padding-top: 45px !important;
  }

  .l-pb45 {
    padding-bottom: 45px !important;
  }

  .l-pt50 {
    padding-top: 50px !important;
  }

  .l-pb50 {
    padding-bottom: 50px !important;
  }

  .l-pt0e {
    margin-top: 0em !important;
  }

  .l-pb0e {
    margin-bottom: 0em !important;
  }

  .l-pt0_25e {
    margin-top: 0.25em !important;
  }

  .l-pb0_25e {
    margin-bottom: 0.25em !important;
  }

  .l-pt0_5e {
    margin-top: 0.5em !important;
  }

  .l-pb0_5e {
    margin-bottom: 0.5em !important;
  }

  .l-pt0_75e {
    margin-top: 0.75em !important;
  }

  .l-pb0_75e {
    margin-bottom: 0.75em !important;
  }

  .l-pt1e {
    margin-top: 1em !important;
  }

  .l-pb1e {
    margin-bottom: 1em !important;
  }

  .l-pt1_25e {
    margin-top: 1.25em !important;
  }

  .l-pb1_25e {
    margin-bottom: 1.25em !important;
  }

  .l-pt1_5e {
    margin-top: 1.5em !important;
  }

  .l-pb1_5e {
    margin-bottom: 1.5em !important;
  }

  .l-pt1_75e {
    margin-top: 1.75em !important;
  }

  .l-pb1_75e {
    margin-bottom: 1.75em !important;
  }

  .l-pt2e {
    margin-top: 2em !important;
  }

  .l-pb2e {
    margin-bottom: 2em !important;
  }

  .l-pt2_25e {
    margin-top: 2.25em !important;
  }

  .l-pb2_25e {
    margin-bottom: 2.25em !important;
  }

  .l-pt2_5e {
    margin-top: 2.5em !important;
  }

  .l-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .m-pt0 {
    padding-top: 0px !important;
  }

  .m-pb0 {
    padding-bottom: 0px !important;
  }

  .m-pt5 {
    padding-top: 5px !important;
  }

  .m-pb5 {
    padding-bottom: 5px !important;
  }

  .m-pt10 {
    padding-top: 10px !important;
  }

  .m-pb10 {
    padding-bottom: 10px !important;
  }

  .m-pt15 {
    padding-top: 15px !important;
  }

  .m-pb15 {
    padding-bottom: 15px !important;
  }

  .m-pt20 {
    padding-top: 20px !important;
  }

  .m-pb20 {
    padding-bottom: 20px !important;
  }

  .m-pt25 {
    padding-top: 25px !important;
  }

  .m-pb25 {
    padding-bottom: 25px !important;
  }

  .m-pt30 {
    padding-top: 30px !important;
  }

  .m-pb30 {
    padding-bottom: 30px !important;
  }

  .m-pt35 {
    padding-top: 35px !important;
  }

  .m-pb35 {
    padding-bottom: 35px !important;
  }

  .m-pt40 {
    padding-top: 40px !important;
  }

  .m-pb40 {
    padding-bottom: 40px !important;
  }

  .m-pt45 {
    padding-top: 45px !important;
  }

  .m-pb45 {
    padding-bottom: 45px !important;
  }

  .m-pt50 {
    padding-top: 50px !important;
  }

  .m-pb50 {
    padding-bottom: 50px !important;
  }

  .m-pt0e {
    margin-top: 0em !important;
  }

  .m-pb0e {
    margin-bottom: 0em !important;
  }

  .m-pt0_25e {
    margin-top: 0.25em !important;
  }

  .m-pb0_25e {
    margin-bottom: 0.25em !important;
  }

  .m-pt0_5e {
    margin-top: 0.5em !important;
  }

  .m-pb0_5e {
    margin-bottom: 0.5em !important;
  }

  .m-pt0_75e {
    margin-top: 0.75em !important;
  }

  .m-pb0_75e {
    margin-bottom: 0.75em !important;
  }

  .m-pt1e {
    margin-top: 1em !important;
  }

  .m-pb1e {
    margin-bottom: 1em !important;
  }

  .m-pt1_25e {
    margin-top: 1.25em !important;
  }

  .m-pb1_25e {
    margin-bottom: 1.25em !important;
  }

  .m-pt1_5e {
    margin-top: 1.5em !important;
  }

  .m-pb1_5e {
    margin-bottom: 1.5em !important;
  }

  .m-pt1_75e {
    margin-top: 1.75em !important;
  }

  .m-pb1_75e {
    margin-bottom: 1.75em !important;
  }

  .m-pt2e {
    margin-top: 2em !important;
  }

  .m-pb2e {
    margin-bottom: 2em !important;
  }

  .m-pt2_25e {
    margin-top: 2.25em !important;
  }

  .m-pb2_25e {
    margin-bottom: 2.25em !important;
  }

  .m-pt2_5e {
    margin-top: 2.5em !important;
  }

  .m-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 767px) {
  .s-pt0 {
    padding-top: 0px !important;
  }

  .s-pb0 {
    padding-bottom: 0px !important;
  }

  .s-pt5 {
    padding-top: 5px !important;
  }

  .s-pb5 {
    padding-bottom: 5px !important;
  }

  .s-pt10 {
    padding-top: 10px !important;
  }

  .s-pb10 {
    padding-bottom: 10px !important;
  }

  .s-pt15 {
    padding-top: 15px !important;
  }

  .s-pb15 {
    padding-bottom: 15px !important;
  }

  .s-pt20 {
    padding-top: 20px !important;
  }

  .s-pb20 {
    padding-bottom: 20px !important;
  }

  .s-pt25 {
    padding-top: 25px !important;
  }

  .s-pb25 {
    padding-bottom: 25px !important;
  }

  .s-pt30 {
    padding-top: 30px !important;
  }

  .s-pb30 {
    padding-bottom: 30px !important;
  }

  .s-pt35 {
    padding-top: 35px !important;
  }

  .s-pb35 {
    padding-bottom: 35px !important;
  }

  .s-pt40 {
    padding-top: 40px !important;
  }

  .s-pb40 {
    padding-bottom: 40px !important;
  }

  .s-pt45 {
    padding-top: 45px !important;
  }

  .s-pb45 {
    padding-bottom: 45px !important;
  }

  .s-pt50 {
    padding-top: 50px !important;
  }

  .s-pb50 {
    padding-bottom: 50px !important;
  }

  .s-pt0e {
    margin-top: 0em !important;
  }

  .s-pb0e {
    margin-bottom: 0em !important;
  }

  .s-pt0_25e {
    margin-top: 0.25em !important;
  }

  .s-pb0_25e {
    margin-bottom: 0.25em !important;
  }

  .s-pt0_5e {
    margin-top: 0.5em !important;
  }

  .s-pb0_5e {
    margin-bottom: 0.5em !important;
  }

  .s-pt0_75e {
    margin-top: 0.75em !important;
  }

  .s-pb0_75e {
    margin-bottom: 0.75em !important;
  }

  .s-pt1e {
    margin-top: 1em !important;
  }

  .s-pb1e {
    margin-bottom: 1em !important;
  }

  .s-pt1_25e {
    margin-top: 1.25em !important;
  }

  .s-pb1_25e {
    margin-bottom: 1.25em !important;
  }

  .s-pt1_5e {
    margin-top: 1.5em !important;
  }

  .s-pb1_5e {
    margin-bottom: 1.5em !important;
  }

  .s-pt1_75e {
    margin-top: 1.75em !important;
  }

  .s-pb1_75e {
    margin-bottom: 1.75em !important;
  }

  .s-pt2e {
    margin-top: 2em !important;
  }

  .s-pb2e {
    margin-bottom: 2em !important;
  }

  .s-pt2_25e {
    margin-top: 2.25em !important;
  }

  .s-pb2_25e {
    margin-bottom: 2.25em !important;
  }

  .s-pt2_5e {
    margin-top: 2.5em !important;
  }

  .s-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** その他 ******/
@media screen and (min-width: 1021px) {
  .md {
    display: none !important;
  }

  .sm {
    display: none !important;
  }

  .smmd {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1020px) {
  .lg {
    display: none !important;
  }

  .sm {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .lg {
    display: none !important;
  }

  .md {
    display: none !important;
  }

  .mdlg {
    display: none !important;
  }
}
