@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  margin: 0;
  padding: 0;
  line-height: calc(0.25rem + 1em + 0.25rem);
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

html {
  font-size: 62.5%; /* 10px / 16px * 100 */
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.666vw; /* 10px / 375px * 100 */
  }
}

body {
  font-family: "Noto Sans", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Hiragino Kaku Gothic ProN", Arial, Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  body {
    line-height: 1.5;
    min-width: 1%;
    overflow-x: hidden;
    position: relative;
  }
}
img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  height: auto;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 769px) {
  .over:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: #0851d7;
  -webkit-transition: color 0.2s, opacity 0.2s;
  transition: color 0.2s, opacity 0.2s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

/* button
--------------------------------------------------*/
button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 1.6rem;
  color: inherit;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("/assets/slick/slick.eot");
  src: url("/assets/slick/slick.eot?#iefix") format("embedded-opentype"), url("/assets/slick/slick.woff") format("woff"), url("/assets/slick/slick.ttf") format("truetype"), url("/assets/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  top: 50%;
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.u-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .u-sp {
    display: none;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-margin.-short {
  margin-bottom: 16px;
}
.u-margin.-middle {
  margin-bottom: 32px;
}
.u-margin.-large {
  margin-bottom: 64px;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

.p-fv {
	position: relative;
	background-color: #fff;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
/*	max-width: 1600px;
	min-width: 1100px;*/
}
.p-fv img {
  position: relative;
  width: 100%;
  z-index: 2;
}
.p-fv__bg {
	width: 100%;
	background-image: url("../image/bg_fv.png");
	background-size: cover;
	z-index: 1;
	overflow: hidden;
}
div.ttl-pc {
	position: relative;
	width: 100%;
	object-fit: contain;
	z-index: 2;
}
.fv-link_wrap {
	position: absolute;
	left: calc(62vw / 16);
	bottom: calc(120vh / 8);
/*	left: 60px;
	bottom: 80px;*/
	padding: 8px 8px 16px;
	display: flex;
	background: rgba(255, 255, 255, 0.7);
	z-index: 3;
}

.fv-button-link {
	display: block;
	text-align: center;
	margin: 0 0.5rem;
}
.-asp .fv-button-sub {
	margin: 0 auto 0.3rem;
	font-size: 1.8rem!important;
	color: #02AED4;
}
.-tanomu .fv-button-sub {
	margin: 0 auto 0.3rem;
	font-size: 1.8rem!important;
	color: #FF9027;
}

.fv-button-link a {
	position: relative;
	display: flex;
	justify-content: center;
	gap: 0 1rem;
	margin: 4px auto 0;
	padding: 0 1rem;
	width: calc(500vw / 16);
	height: calc(65vh / 8);
	max-width: 500px;
	max-height:65px;
	color: #ffffff;
}
.-asp.fv-button-link a {
  background-color: #02AED4;
	border-radius: 6px;
  box-shadow: 0px 6px 0px 0px rgba(5, 118, 152, 1);
}
.-tanomu.fv-button-link a {
  background-color: #FF9027;
	border-radius: 6px;
  box-shadow: 0px 6px 0px 0px rgba(193, 77, 33, 1);
}
.fv-button-link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0;
  height: 0;
  border-left: 1.1rem solid #ffffff;
  border-bottom: 0.6rem solid transparent;
  border-top: 0.6rem solid transparent;
  border-left-color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.-asp.fv-button-link a:hover {
	transform: translateY(3px);
	animation: ease-in 0.5s;
  box-shadow: 0px 3px 0px 0px rgba(5, 118, 152, 1);
}
.-tanomu.fv-button-link a:hover {
	transform: translateY(3px);
	animation: ease-in 0.5s;
  box-shadow: 0px 3px 0px 0px rgba(193, 77, 33, 1);
}
.fv-button-link a div {
	align-self: center;
	margin-right: 0.2rem;
	width: auto;
	height: 30px;
}
.fv-button-link a div img {
	width: auto;
	max-height: 30px;
	transform: translateY(1px)
}
.fv-button-link a span {
	display: block;
	align-self: center;
	margin-right: 1.4rem;
	padding-top: 2px;
	font-size: 1.5rem;
	font-weight: bold;
}

.p-lead-text {
  margin: 1rem auto 0;
  max-width: 600px;
  width: 85%;
}

@media only screen and (min-width: 769px) and (max-width: 1100px) {
	.fv-link_wrap {
		left: calc(62vw / 16);
		bottom: calc(68vh / 8);
	}
	.fv-button-link {
		display: block;
		text-align: center;
		margin: 0 auto;
	}
	.-asp .fv-button-sub,
	.-tanomu .fv-button-sub {
		margin: 0 auto 0.4rem;
		font-size: 1.6rem!important;
	}
	.fv-button-link a {
		margin-right: 0.6rem;
		padding: 0 0.6rem;
		width: calc(500vw / 16);
		height: calc(65vh / 8);
		max-width: 500px;
	}
	.fv-button-link a span {
		display: block;
		align-self: center;
		font-size: 1.3rem;
		font-weight: bold;
	}
}
@media screen and (max-width: 768px) {
	.p-fv {
		position: relative;
		width: 100%;
		height: calc(835vw / 7.68);
		max-height: 835px;
	}
	.p-fv__bg {
		position: relative;
		width: 100%;
		height: 100%;
		background-image: url("../image/bg_fv-sp.png");
		background-size:contain;
		z-index: 1;
	}
	div.ttl-pc {
		display: none;
	}
	.fv-link_wrap {
		position: absolute;
		left: 0;
		bottom: 0;
		display: flex;
		flex-flow: column;
		gap: 1rem 0;
		margin: 0 auto;
		padding: 6px 8px;
		width: 100%;
		background: rgba(255, 255, 255, 0.85);
		z-index: 3;
	}
	.-asp .fv-button-sub {
		margin: 0.4rem auto 0;
		font-size: 1.5rem!important;
		color: #02AED4;
		text-shadow: 1px 1px 2px #fff;
	}
	.-tanomu .fv-button-sub {
		margin: 1rem auto 0;
		font-size: 1.5rem!important;
	}
	.fv-button-link {
		font-size: 1rem;
	}
	.fv-button-link a {
		position: relative;
		display: flex;
		justify-content: center;
		gap: 0 0.5rem;
		margin: 0 auto;
		padding: 0;
		width: 96%;
		height: calc(60vh / 8.35);
		max-height:60px;
	}
	.fv-button-link a::after {
		top: 50%;
		right: 0.8rem;
		border-left: 0.8rem solid #ffffff;
		border-bottom: 0.6rem solid transparent;
		border-top: 0.6rem solid transparent;
	}
	.fv-button-link a div {
		margin-right: 0.1rem;
	}
/*	.fv-button-link a span {
		font-size: 1.2rem;
	}
*/
  .p-lead-text {
    margin: 1.2rem auto 0;
    max-width: none;
    width: 70%;
  }
}


.p-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
/*  width: 100%;*/
  width: 96%;
  max-width: 1440px;
  margin: 6.7rem auto 0;
}
.p-tab__item {
  position: relative;
  width: 49.5%;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.p-tab .p-tab__item.-tab1.is-active::before, .p-tab__item.-tab2.is-active::before {
  content: "";
  position: absolute;
  top: calc(100% - 0.5rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 7rem;
  height: 6.7rem;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  z-index: 1;
}
.p-tab__item.-tab1 p {
	padding-bottom: 1rem;
	color: #02AED4;
	font-size: 2rem;
	font-weight: 600;
}
.p-tab__item.-tab2 p {
	padding-bottom: 1rem;
	color: #FF9027;
	font-size: 2rem;
	font-weight: 600;
}

.p-tab .p-tab__item.-tab1.is-active::before {
  background-color: #02AED4;
}
.p-tab .p-tab__item.-tab2.is-active::before {
  background-color: #FF9027;
}

.p-tab__contents {
	margin: 0 auto;
	width: 96%;
	max-width: 1440px;
/*  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
*/
}
.p-tab__contents.-tab1 {
  border: #02AED4 15px solid;
  background-color: #EFF8FA;
}
.p-tab__contents.-tab2 {
  border: #FF9027 15px solid;
  background-color: #FFF8F3;
}
@media screen and (max-width: 768px) {
  .p-tab {
    margin: 2rem auto 0;
  }
  .p-tab .p-tab__item.-tab1.is-active::before, .p-tab__item.-tab2.is-active::before {
    top: calc(100% - 0.3rem);
    width: 3.5rem;
    height: 3.5rem;
  }
  .p-tab__contents.-tab1 {
    border: #02AED4 0.5rem solid;
  }
  .p-tab__contents.-tab2 {
    border: #FF9027 0.5rem solid;
  }
	.p-tab__item.-tab1 p,
	.p-tab__item.-tab2 p {
		padding-bottom: 0.4rem;
		font-size: 1.1rem;
	}
}

.p-tab_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
	width: 96%;
	max-width: 1440px;
  margin: 0 auto 6.7rem;
}
.p-tab_bottom .p-tab__item {
  position: relative;
  width: 49.5%;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}
.p-tab_bottom .p-tab__item.-tab1 p {
	padding-bottom: 1rem;
  color: #02AED4;
	font-weight: 600;
}
.p-tab_bottom .p-tab__item.-tab2 p {
	padding-bottom: 1rem;
  color: #FF9027;
	font-weight: 600;
}


@media screen and (max-width: 768px) {
  .p-tab_bottom {
    margin: 0 auto 4.1rem;
  }
}

.p-tab-contents {
  padding: 6.3rem 0 10.5rem;
}
.p-tab-contents__lead1 {
	margin: 0 auto;
	padding-top: 1rem;
	width: 90%;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #000000;
  line-height: 1.8;
}
.p-tab-contents__lead2 {
	margin: 2rem auto 0;
	width: 90%;
  text-align: center;
  font-weight: 700;
  color: #0379C4;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-tab-contents {
    padding: 2rem 0 3rem;
  }
  .p-tab-contents__wrap {
    padding-bottom: 0;
  }
  .p-tab-contents__lead1 {
    font-size: 1.2rem;
  }
  .p-tab-contents__lead2 {
    margin-top: 1rem;
    font-size: 2.1rem;
    line-height: 1.2;
  }
}

.section-title {
  margin: 5rem auto 0;
  padding: 1.2rem 0;
/*  border-top: #717375 1px solid;
  border-bottom: #717375 1px solid;*/
  max-width: 90%;
}
.-tab1 .section-title__title {
  color: #0379C4;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.8;
}
.section-title__title span {
  letter-spacing: -0.2rem;
}
.-tab2 .section-title__title {
  color: #E8440B;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.4;
}

.section-title.-ptn2 {
  padding: 0.8rem 0;
}
@media screen and (max-width: 768px) {
  .section-title {
    margin: 4rem auto 0;
    width: 90%;
    padding: 0.8rem 0;
  }
	.-tab1 .section-title__title {
		font-size: 2rem;
		line-height: 1.3;
	}
	.-tab2 .section-title__title {
		font-size: 2rem;
		line-height: 1.2;
	}
}

div.movie {
	position: relative;
	margin: 2rem auto 0;
	padding: 2rem 0 3rem;
	width: 100%;
	background: #fff;
}
.youtube {
	margin: 0 auto 2rem;
  width: 70%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
	margin: 0 auto;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 560px) {
	div.movie {
		padding: 1rem 0.2rem;
	}
	.youtube {
		margin-top: 1rem;
		width: 85%;
		max-width: 480px;
	}
}

.tri_down-white {
	margin: 0 auto;
	width: 12rem;
	height: calc(12rem / 2);
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.tri_down-asp {
	margin: 0 auto;
	width: 12rem;
	height: calc(12rem / 2);
	background: #eff8fa;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.tri_down-tanomu {
	margin: 0 auto;
	width: 12rem;
	height: calc(12rem / 2);
	background: #fdeeef;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.p-button-link {
	text-align: center;
	margin: 1.2rem auto 6rem;
}
.p-button-sub {
	margin: 0 auto 1rem;
}

.p-button-link a {
  position: relative;
  display: flex;
	justify-content: center;
	margin: 0 auto;
	padding: 0 1.5rem;
	width: 550px;
	height: 74px;
	color: #ffffff;
	background-color: #02AED4;
	border-radius: 6px;
	box-shadow: 0px 6px 0px 0px rgba(5, 118, 152, 1);
}
.p-button-link a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 2rem;
	width: 0;
	height: 0;
	border-left: 1.4rem solid #ffffff;
	border-bottom: 1rem solid transparent;
	border-top: 1rem solid transparent;
	border-left-color: #ffffff;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.-tab1 .p-button-link a:hover {
	transform: translateY(3px);
	animation: ease-in 0.5s;
	box-shadow: 0px 3px 0px 0px rgba(5, 118, 152, 1);
}
.-tab2 .p-button-link a {
	box-shadow: 0px 6px 0px 0px rgba(240, 120, 0, 1);
}
.-tab2 .p-button-link a:hover {
	transform: translateY(3px);
	animation: ease-in 0.5s;
	box-shadow: 0px 3px 0px 0px rgba(193, 77, 33, 1);
}
.p-button-link a div {
	align-self: center;
	margin-right: 1rem;
	width: auto;
	height: 36px;
}
.p-button-link a div img {
	width: auto;
	height: 36px;
}
.p-button-link a span {
	display: block;
	align-self: center;
	margin-right: 2rem;
	padding-top: 2px;
	font-size: 2rem;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
	.tri_down-white,
	.tri_down-asp,
	.tri_down-tanomu {
		width: 8rem;
		height: calc(8rem / 2);
	}
	.p-button-sub {
		margin: 0 auto 0.6rem;
		font-size: 1.2rem;
	}
	.p-button-link {
		margin: 4rem auto 0;
	}
	.p-button-link a {
		width: 86%;
		height: auto;
		max-height: 74px;
		padding: 0.5rem 0.3rem
	}
	.p-button-link a::after {
		top: 50%;
		right: 1rem;
		width: 0;
		height: 0;
		border-left: 0.8rem solid #ffffff;
		border-bottom: 0.4rem solid transparent;
		border-top: 0.4rem solid transparent;
}
	.p-button-link a span {
		margin-right: 2rem;
		font-size: 1.2rem;
	}
}

.p-task {
/*  max-width: 84rem;*/
  min-height: 28rem;
  width: 85%;
  margin: 4.8rem auto 0;
}
.p-task__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	border: 1px solid #CDCDCD;
/*  background-color: #ffffff;
  -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.15);*/
}
.-tab1 .p-task__item {
  background-color: #f5f8fa;
}
.-tab2 .p-task__item {
  background-color: #fff;
}
.p-task__item:not(:first-child) {
  margin-top: 1.4rem;
}
.p-task__number {
  z-index: 10;
  position: absolute;
  top: -1.5rem;
  left: -0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 5.6rem;
  padding: 0.8rem 0rem 0.8rem 0.9rem;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.3rem;
}
.p-task__number span {
  margin-left: 0.3rem;
  font-size: 2rem;
  line-height: 1;
}
.p-task__number::before {
  position: absolute;
  content: "";
  top: 0;
  left: 100%;
  width: 70%;
  height: 100%;
  background-color: #000000;
  -webkit-clip-path: polygon(0 0, 0% 100%, 16% 50%);
          clip-path: polygon(0 0, 0% 100%, 16% 50%);
}
.p-task__left {
  position: relative;
  width: 24rem;
  background-color: #ffffff;
}
.p-task__left::before {
  position: absolute;
  content: "";
  top: 0;
  left: 100%;
  width: 70%;
  height: 100%;
  background-color: #ffffff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 20% 50%);
          clip-path: polygon(0 0, 0% 100%, 20% 50%);
}
.p-task__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-task .p-task-left {
  padding: 2rem 1.5rem 2rem 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-task .p-task-left__text {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 1.7rem;
}
.p-task .p-task-left__image {
  max-width: 15rem;
	margin: auto;
}
.-tab2 .p-task .p-task-left__image:nth-child(3),
.-tab2 .p-task .p-task-left__image:nth-child(5) {
	width: 24rem;
  max-width: 24rem;
}
.p-task .p-task-right {
  padding: 2rem 3rem 3rem 5.5rem;
}
.p-task .p-task-right__title {
/*  text-align: center;*/
  font-size: 1.8rem;
  font-weight: 700;
  color: #02AED4;
  opacity: 0.8;
}
.p-task .p-task-right__title.-small {
  font-size: 2.6rem;
}
.p-task .p-task-right__detail {
/*  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;*/
	margin-top: 1.5rem;
	gap: 4%;
}
.p-task .p-task-right__lead {
	margin-bottom: 1rem;
	font-size: 2.8rem;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.1rem;
}
.p-task .p-task-right__lead span {
	font-size: 1.8rem;
}
.p-task .p-task-right__text {
	font-size: 1.8rem;
	line-height: 1.4;
	letter-spacing: 0.1rem;
}
.p-task .p-task-right__text span {
	display: block;
	margin-top: 1rem;
	font-size: 1.1rem;
}
.p-task .p-task-right__image {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.p-task .p-task-right__image img {
	width: 100%;
}
@media screen and (max-width: 768px) {
  .p-task {
    margin-top: 4.1rem;
    max-width: none;
    min-height: auto;
    width: 87.6%;
  }
  .p-task__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-task__item:not(:first-child) {
    margin-top: 2rem;
  }
  .p-task__number {
    top: -1.9rem;
  }
  .p-task__left {
    position: relative;
    width: 100%;
  }
  .p-task__left::before {
    position: absolute;
    content: "";
    top: calc(100% - 1px);
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    -webkit-clip-path: polygon(100% 0, 0 0, 50% 36%);
            clip-path: polygon(100% 0, 0 0, 50% 36%);
  }
  .p-task .p-task-left {
    padding: 0 1.5rem 0 2rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: center;
    background-color: #ffffff;
    gap: 1.2rem;
  }
  .p-task .p-task-left__text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 2.5rem;
    font-size: 1.6rem;
    letter-spacing: 0.18rem;
    text-align: left;
  }
  .p-task .p-task-left__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-transform: translate(-0.5rem, 2rem) scale(1.2);
            transform: translate(-0.5rem, 2rem) scale(1.2);
    max-width: 9rem;
    height: auto;
  }
	.-tab1 .p-task-left__image {
		align-self: center;
		max-width: 8rem;
		transform: translateY(0.5rem) scale(1.1);
  }
  .p-task .p-task-right {
    padding: 4rem 2.4rem 2.4rem 2.4rem;
  }
  .p-task .p-task-right__title {
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.47;
  }
  .p-task .p-task-right__title.-small {
    font-size: 2.6rem;
  }
  .p-task .p-task-right__detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.8rem;
    gap: auto;
  }
	.p-task .p-task-right__lead {
		margin-bottom: 0.6rem;
		font-size: 1.8rem;
		line-height: 1.4;
	}
	.p-task .p-task-right__lead span {
		font-size: 1.4rem;
	}
	.p-task .p-task-right__text {
		font-size: 1.3rem;
		line-height: 1.4;
	}
}

.p-slider-title {
  margin: 5.5rem auto 0.2rem;
  max-width: 60rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-slider-title {
    margin-top: 5rem;
    max-width: none;
    width: 87.6%;
    font-size: 1.5rem;
  }
}

.p-slider {
  margin: 0 auto;
  max-width: 60rem;
  width: 80%;
}
.p-slider .p-slider-arrow {
  position: absolute;
  top: 50%;
  width: 2.1rem;
  height: 4.8rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-slider .p-slider-arrow img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-slider .p-slider-arrow.-prev {
  left: -5.7rem;
}
.p-slider .p-slider-arrow.-next {
  right: -5.7rem;
}
@media screen and (max-width: 768px) {
  .p-slider {
    width: 87.6%;
  }
  .p-slider .p-slider-arrow {
    width: 0.7rem;
    height: 1.4rem;
  }
  .p-slider .p-slider-arrow.-prev {
    left: -1.5rem;
  }
  .p-slider .p-slider-arrow.-next {
    right: -1.5rem;
  }
}

.p-function-list {
	position: relative;
  display: flex;
	justify-content: space-around;
  list-style: none;
  margin: 1rem auto 2rem;
  width: 94%;
}
.p-function-list__item {
	display: flex;
	justify-content: space-around;
	margin-top: 2rem;
	padding: 0.5rem 0.2rem;
	width: 30%;
	background: #fff;
}
.p-function-list__item-img {
	align-self: center;
	width: 90px;
}
.p-function-list__item-img img {
	max-width: 90px;
}
.p-function-list__item-txt {
	flex: 1;
	display: flex;
	flex-flow: column;
	padding: 0.5rem;
}
.p-function-list__item .p-function-list__item-txt-a {
  font-size: 1.2rem;
  line-height: 1.2;
}
.p-function-list__item .p-function-list__item-txt-b {
  margin-top: 0.4rem;
  font-size: 1.8rem;
	font-weight: 600;
}
.p-function-list__item .p-function-list__item-txt-c {
	flex: 1;
  margin-top: 0.4rem;
  font-size: 1.4rem;
  line-height: 1.6;
}
.p-function-list__item .p-function-list__item-txt-c span {
	display: block;
  font-size: 1.1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
	.p-function-list {
		display: flex;
		flex-flow: column;
		justify-content: space-around;
		margin: 1rem auto 2rem;
		width: 94%;
	}
	.p-function-list__item {
		display: flex;
		width: 100%;
		margin-top: 1rem;
	}
	.p-function-list__item-img {
		width: 80px;
	}
	.p-function-list__item-img img {
		max-width: 80px;
	}
	.p-function-list__item-txt {
		flex: 1;
		display: flex;
		flex-flow: column;
		padding: 0.4rem;
	}
/*	.p-function-list__item .p-function-list__item-txt-a {
	  font-size: 1rem;
	}*/
	.p-function-list__item .p-function-list__item-txt-b {
	  margin-top: 0.4rem;
/*	  font-size: 1.2rem;*/
	}
	.p-function-list__item .p-function-list__item-txt-c {
		flex: 1;
	  margin-top: 0.3rem;
	  font-size: 1.2rem;
	  line-height: 1.4;
	}
	.p-function-list__item .p-function-list__item-txt-c span {
		display: block;
/*		font-size: 0.9rem;*/
		line-height: 1.4;
	}
}

.p-customer {
  width: 90%;
  margin: 6rem auto 3rem;
}
.p-customer .p-customer-list {
	display: flex;
	justify-content: space-between;
  padding: 2rem 0;
  list-style: none;
}
.p-customer .p-customer-list__item {
  width: 30%;
  padding: 0;
  background-color: #ffffff;
}
/*.p-customer .p-customer-list__item:first-child {
  border-bottom: 1px solid #9f9f9f;
}*/
.p-customer .p-customer-list__image {
  width: 100%;
  height: auto;
}
.p-customer .p-customer-list__detail {
	display: flex;
	flex-direction:column;
	padding: 1rem;
}
.p-customer-list__company {
	margin-bottom: 1.5rem;
	height: 3.2rem;
  font-size: 1.6rem;
	font-weight: 600;
}
.p-customer .p-customer-list__lead1 {
	flex-grow: 1;
  font-size: 1.4rem;
}
.p-customer .p-customer-list__lead2 {
	margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #02AED4;
}
.-tab2 .p-customer .p-customer-list__lead2 {
  color: #FF9027;
}
.-tab2 .p-customer .p-customer__lead-bottom {
	margin: 2rem auto;
	font-size: 1.6rem;
	line-height: 2.8rem;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.p-customer {
		width: 90%;
		margin: 3rem auto;
	}
	.p-customer .p-customer-list {
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		padding: 2rem 0;
		list-style: none;
	}
	.p-customer .p-customer-list__item {
		width: 100%;
		margin: 1rem 0;
	}
	.p-customer .p-customer-list__detail {
		display: flex;
		flex-direction:column;
		padding: 0.5rem;
	}
	.p-customer-list__company {
		margin-bottom: 1.3rem;
		height: 3rem;
		font-size: 1.5rem;
	}
	.p-customer .p-customer-list__lead1 {
		flex-grow: 1;
		font-size: 1.2rem;
	}
	.p-customer .p-customer-list__lead2 {
		margin-top: 1rem;
		font-size: 1.2rem;
	}
	.-tab2 .p-customer .p-customer__lead-bottom {
		margin: 2rem auto;
		font-size: 1.6rem;
		line-height: 2.8rem;
		text-align: center;
	}
}

.p-contact {
	width: 100%;
}
.p-contact-wrap {
	width: 90%;
	margin: 0 auto;
	background: #fff;
	overflow-y: auto;
}
.p-contact-wrap iframe {
	padding-top: 6rem;
	width: 100%;
	height: 80rem;
}
@media screen and (max-width: 768px) {
  .p-contact-wrap {
    margin-top: 6.5rem;
		width: 94%;
  }
  .p-contact-wrap iframe {
		padding-top: 3rem;
		height: 86rem;
  }
}
#contact.p-contact-wrap h3 {
	padding-top: 2rem;
	text-align: center;
	color: #155D91;
	font-size: 2.4rem;
}
#contact.p-contact-wrap div.logo {
	margin: 1rem auto;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 2.4rem;
}
#contact.p-contact-wrap div img {
	display: inline-block;
	margin-right: 0.5rem;
	width: auto;
	height: 2.4rem;
	max-height: 2.4rem;
	line-height: 2.4rem;
	transform: translateY(0.6rem);
}
#contact.p-contact-wrap p {
	padding: 1rem 0;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 600;
}
#contact.p-contact-wrap span.txt1 {
	display: block;
	margin: 0 auto;
	padding: 1rem 0;
	width: 80%;
	text-align: center;
	font-size: 1.2rem;
}
#contact.p-contact-wrap span.txt2 {
	display: block;
	padding: 1rem 0;
	text-align: center;
	font-size: 1.4rem;
}

#contact2.p-contact-wrap h3 {
	padding-top: 2rem;
	text-align: center;
	color: #E8440B;
	font-size: 2.4rem;
}
#contact2.p-contact-wrap div.logo {
	margin: 1rem auto;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 2.4rem;
}
#contact2.p-contact-wrap div.logo img {
	display: inline-block;
	margin-right: 0.5rem;
	width: auto;
	height: 2.4rem;
	max-height: 2.4rem;
	line-height: 2.4rem;
	transform: translateY(0.6rem);
}
#contact2.p-contact-wrap p {
	padding: 1rem 0;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 600;
}
#contact2.p-contact-wrap span {
	display: block;
	padding: 1rem 0;
	text-align: center;
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	#contact.p-contact-wrap h3,
	#contact2.p-contact-wrap h3 {
		padding: 2rem 0.3rem 0;
		font-size: 2rem;
	}
	#contact.p-contact-wrap div.logo,
	#contact2.p-contact-wrap div.logo {
		margin: 1rem auto;
		font-size: 1.8rem;
		line-height: 2.4rem;
	}
	#contact.p-contact-wrap div.logo img,
	#contact2.p-contact-wrap div.logo img {
		height: 2.4rem;
		max-height: 2.4rem;
		line-height: 2.4rem;
		transform: translateY(0.6rem);
	}
	#contact.p-contact-wrap p,
	#contact2.p-contact-wrap p {
		padding: 1rem 0;
		font-size: 2rem;
	}
	#contact.p-contact-wrap span.txt1 {
		padding: 1rem 0;
		width: 90%;
		font-size: 1.3rem;
	}
	#contact.p-contact-wrap span.txt2,
	#contact2.p-contact-wrap span {
		padding: 1rem 0;
		font-size: 1.4rem;
	}
}

.p-tab2 {
  position: fixed;
  visibility: hidden;
  top: 5rem;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  opacity: 0;
  -webkit-transition: visibility 0s 0.2s, opacity 0.2s;
  transition: visibility 0s 0.2s, opacity 0.2s;
}
.p-tab2.is-show {
  visibility: visible;
  -webkit-transition: visibility 0s, opacity 0.2s;
  transition: visibility 0s, opacity 0.2s;
  opacity: 1;
}
.p-tab2__item {
  width: 16.9rem;
}
.p-tab2__item img {
  -webkit-transform: translateX(0.8rem);
          transform: translateX(0.8rem);
}
@media (hover: hover) {
  .p-tab2__item:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .p-tab2 {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    top: auto;
    bottom: 0;
  }
  .p-tab2__item {
    width: 50%;
  }
  .p-tab2__item img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.p-tab__contents.-tab1 {
  border-color: #02AED4;
  background-color: #EFF8FA;
}
.p-tab__contents.-tab1 .p-button-link div {
	font-size: 2rem;
	font-weight: 600;
	color: #0379C4;
}
.p-tab__contents.-tab1 .p-button-link a {
  background-color: #02AED4;
}
.p-tab__contents.-tab1 .p-tab-contents__lead2 {
  color: #0379C4;
}
.p-tab__contents.-tab1 .p-task__left {
  background-color: #ffffff;
}
.p-tab__contents.-tab1 .p-task__left::before {
  background-color: #ffffff;
}
.p-tab__contents.-tab1 .p-task .p-task-right__title {
  color: #02AED4;
}
.p-tab__contents.-tab1 .p-customer__title {
  background-color: #02AED4;
}
.p-tab__contents.-tab1 .p-customer .p-customer-list__lead2 {
  color: #02AED4;
}
.p-tab__contents.-tab1 .p-card__title-wrap {
  border-top: #3572aa 1px solid;
  border-bottom: #3572aa 1px solid;
}
.p-tab__contents.-tab1 .p-card__title {
  color: #3572aa;
}
.p-tab__contents.-tab2 {
  border-color: #FF9027;
  background-color: #fdeeef;
}
.p-tab__contents.-tab2 .p-button-link div {
	font-size: 2rem;
	font-weight: 600;
	line-height: 2.8rem;
	color: #E8440B;
}
@media screen and (max-width: 768px) {
	.p-tab__contents.-tab1 .p-button-link div,
	.p-tab__contents.-tab2 .p-button-link div {
		font-size: 1.6rem;
	}
}
.p-tab__contents.-tab2 .p-button-link a {
  background-color: #FF9027;
}
.p-tab__contents.-tab2 .p-tab-contents__lead2 {
  color: #E8440B;
}
.p-tab__contents.-tab2 .p-task__left {
  background-color: #fff3eb;
}
.p-tab__contents.-tab2 .p-task__left::before {
  background-color: #fff3eb;
}
.p-tab__contents.-tab2 .p-task .p-task-right__title {
  color: #FF9027;
}
.p-tab__contents.-tab2 .p-customer__title {
  background-color: #FF9027;
}
.p-tab__contents.-tab2 .p-customer .p-customer-list__lead2 {
  color: #FF9027;
}
.p-tab__contents.-tab2 .p-card__title-wrap {
  border-top: #FF9027 1px solid;
  border-bottom: #FF9027 1px solid;
}
.p-tab__contents.-tab2 .p-card__title {
  letter-spacing: normal;
  color: #FF9027;
}

div.order_3step-asp {
	margin: 2rem auto;
	padding: 1rem 0;
	width: 100%;
	background: #F2F2F2;
}

div.order_3step-asp .sample {
	display: flex;
	margin: 0 auto;
	width: 90%;
}
div.order_3step-asp .sample .capture {
	position: relative;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 1rem;
	max-width: 420px;
	text-align: center;
	object-fit: contain;
}
div.order_3step-asp .sample .capture .step {
  font-size: 1.8rem;
  font-weight: 700;
  color: #02AED4;
}
div.order_3step-asp .sample .capture .caption {
	font-size: 1.2rem;
	line-height: 1.6rem;
}
div.order_3step-asp .sample .capture div.img {
	padding: 12px 0 24px;
	width: 100%;
}
div.order_3step-asp .sample .capture div.img img {
	max-width: 420px;
	height: auto;
}
div.order_3step-asp .sample .triangle {
	display: block;
	align-self: center;
	margin: -30px 10px 0;
	width: 3rem;
	height: 2.2rem;
	background: #A5BBD1;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
}
div.order_3step-tanomu {
	margin: 2rem auto;
	padding: 1rem 0;
	width: 100%;
	background: #F2F2F2;
}

div.order_3step-tanomu .sample {
	display: flex;
	margin: 0 auto;
	width: 90%;
}
div.order_3step-tanomu .sample .capture {
	position: relative;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 1rem 0;
	width: 30%;
	text-align: center;
	object-fit: contain;
}
div.order_3step-tanomu .sample .capture .step {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ED582D;
}
div.order_3step-tanomu .sample .capture .caption {
	font-size: 1.2rem;
	line-height: 1.6rem;
}
div.order_3step-tanomu .sample .capture div.img {
	width: 100%;
	padding: 12px 0 24px;
}
div.order_3step-tanomu .sample .capture div.img img {
	margin: 0 auto;
	max-width: 220px;
	height: auto;
}
div.order_3step-tanomu .sample .triangle {
	display: block;
	align-self: center;
	margin: 0 10px;
	width: 4rem;
	height: 3.2rem;
	background: #F5A996;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
}

div.order_3step-tanomu .sample-2 {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 6rem auto;
	padding: 0 2rem;
	width: 90%;
}
div.order_3step-tanomu .sample-2 p {
	width: 60%;
	font-size: 1.8rem;
}
div.order_3step-tanomu .sample-2 div {
	width: 40%;
}
div.order_3step-tanomu .sample-2 div img {
	width: 100%;
	max-width: 500px;
}
@media screen and (max-width: 768px) {
	div.order_3step-asp .sample,
	div.order_3step-tanomu .sample {
		display: flex;
		flex: 1;
		flex-wrap: wrap;
		flex-flow: column;
	}
	div.order_3step-asp .sample .capture,
	div.order_3step-tanomu .sample .capture {
		position: relative;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		text-align: center;
/*		border-radius: 10px;
		box-shadow: 3px 2px 8px #A8BFD0;*/
	}
	div.order_3step-asp .sample .capture {
		width: 80%;
	}
	div.order_3step-tanomu .sample .capture {
		width: 60%;
	}
	div.order_3step-asp .sample .capture .caption,
	div.order_3step-tanomu .sample .capture .caption {
		line-height: 2rem;
	}

	div.order_3step-asp .sample .capture div.img {
		margin: auto;
		padding: 16px 0;
		width: 94%;
	}
	div.order_3step-asp .sample .capture div.img img {
		width: 100%;
		max-width: 400px;
		object-fit: contain;
	}
	div.order_3step-tanomu .sample .capture div.img {
		margin: auto;
		padding: 16px 0;
		width: 100%;
	}
	div.order_3step-tanomu .sample .capture div.img img {
		margin: auto;
		width: 94%;
		height: auto;
		max-width: 400px;
		object-fit: contain;
	}
	div.order_3step-asp .sample .triangle {
		display: block;
		align-self: center;
		margin: 20px 0 10px 0;
		width: 60px;
		height: 30px;
		background: #A5BBD1;
		clip-path: polygon(0 0, 100% 0%, 50% 100%);
	}
	div.order_3step-tanomu .sample .triangle {
		display: block;
		align-self: center;
		margin: 20px 0 10px 0;
		width: 60px;
		height: 30px;
		background: #ff9027;
		clip-path: polygon(0 0, 100% 0%, 50% 100%);
	}
	div.order_3step-tanomu .sample-2 {
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		margin: 6rem auto;
		padding: 0 2rem;
		width: 90%;
}
	div.order_3step-tanomu .sample-2 p {
		width: auto;
		font-size: 1.4rem;
		text-align: center;
	}
	div.order_3step-tanomu .sample-2 div {
		margin: 1rem auto;
		width: auto;
	}
	div.order_3step-tanomu .sample-2 div img {
		width: 100%;
		max-width: 400px;
	}
}


.footer {
	padding: 40px 0;
	width: 100%;
	height: 200px;
	background: #222222;
	font-size: 1rem;
	color: #fff;
	text-align: center;
}
.footer img {
	display: block;
	margin: 0 auto;
	width: 260px;
	height: auto;
}

