@charset "UTF-8";

html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,figure, figcaption, footer, header,
hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
*, *::before, *::after {
  box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}

html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	line-height: 1;
}
body {
	color: #000;
	background: #fff;
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.05em;
  line-height: 1.6;
	counter-reset: number 0;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
  color: #000;
	text-decoration: none;
	transition: .2s;
}


/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .pc {
		display: block !important;
	}
	.sp {
		display: none !important;
	}
  #wrapper {
    min-width: 1077px;
		padding-top: 130px;
  }
}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
  .pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	html {
    min-width: 300px;
    font-size: calc(100vw / 75);
	}
	body {
		max-width: 100%;
    font-size: 2.8rem;
    line-height: 1.75;
	}
  #wrapper {
		margin-top: 15rem;
    overflow: hidden;
  }
	h1,h2,h3,h4 {
		line-height: 1.35;
	}
}


/*
= Slick slider
----------------------------------------------- */
.slick-slider{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus{
    outline: none;
}
.slick-list.dragging{
    cursor: pointer;
    cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
.slick-track{
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after{
    display: table;
    content: '';
}
.slick-track:after{
    clear: both;
}
.slick-loading .slick-track{
    visibility: hidden;
}
.slick-slide{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[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;
}

.slick-prev, .slick-next {
  position: absolute;
  display: block;
  color: transparent;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  z-index: 1;
}
.slick-prev {
  left: 0;
  background: url(../img/arrow_left.png) no-repeat;
	background-size: 100%;
}
.slick-next {
  right: 0;
  background: url(../img/arrow_right.png) no-repeat;
	background-size: 100%;
}

.page_article .slick-prev,
.page_article .slick-next {
	top: 43%;
  transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}

.slick-dots {
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
  bottom: 4rem;
	width: 100%;
  height: auto;
	text-align: center;
  z-index: 5;
	counter-reset: number 0;
}
.slick-dots li {
	display: inline-block;
  border-radius: 50%;
	background: rgba(0,0,0,0.3);
  vertical-align: middle;
  cursor: pointer;
}
.slick-dots li.slick-active {
	background: #ffd200;
}
.slick-dots li button {
	display: none;
	text-indent: -9999px;
}

.main_visual .main_slider .slick-dots {
	display: flex;
  justify-content: center;
  flex-wrap: wrap;
	left: 0;
	transform: translateX(0);
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
}
.faq_slider .slick-dots li,
.story_slider .slick-dots li {
	position: relative;
	border: 0.3rem solid #000;
	background: #fff;
  list-style-type:none;
}
.faq_slider .slick-dots li.slick-active,
.story_slider .slick-dots li.slick-active {
	background: #ffd200;
}
.faq_slider .slick-dots li::before,
.story_slider .slick-dots li::before {
  position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	counter-increment: number 1;
	content: counter(number);
	letter-spacing: -0.05em;
}
.recommend_slider .slick-dots li {
	border-radius: 0;
}
.recommend_slider .slick-counter {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	text-align: center;
}


/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.slick-prev, .slick-next {
	  top: 165px;
		width: 17px;
	  height: 30px;
	}
	.slick-dots li {
	  width: 11px;
	  height: 11px;
	  margin: 0 0.7rem;
	}
	.main_visual .main_slider {
		opacity: 0;
  	transition: opacity .25s ease;
	}
	.main_visual .main_slider.slick-initialized {
		opacity: 1;
	}
	.main_visual .main_slider .slick-dots {
		width: 34%;
		bottom: -34px;
	}
	.faq_slider .slick-dots {
		top: 100%;
	}
	.faq_slider .slick-dots li,
	.story_slider .slick-dots li  {
		width: 40px;
		height: 40px;
		margin: 0 1.3rem 2.5rem;
	}
	.faq_slider .slick-dots li::before,
	.story_slider .slick-dots li::before {
		font-size: 2.2rem;
	}
	.story_slider .slick-dots {
		top: 100%;
	}
	.recommend_slider .slick-dots {
		width: 800px;
		bottom: -10rem;
	}
	.recommend_slider .slick-dots li {
		width: calc(100% / 7);
		height: 10px;
		margin: 0;
	}
	.recommend_slider .slick-counter {
		bottom: -13.5rem;
		font-size: 2.4rem;
	}
	.recommend_slider .slick-list {
		padding-right: calc((100vw - 1080px) / 2);
	}
}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.slick-prev, .slick-next {
		top: 23rem;
    width: 3.4rem;
    height: 8rem;
	}
	.page_article .slick-prev,
	.page_article .slick-next {
		top: 40%;
	}
	.slick-dots li {
		width: 2rem;
		height: 2rem;
		margin: 0 1rem;
	}
	.main_visual .main_slider .slick-dots {
		width: 100%;
		bottom: -5rem;
	}
	.faq_slider .slick-dots {
		top: 100%;
		width: 100%;
		text-align: center;
	}
	.faq_slider .slick-dots li,
	.story_slider .slick-dots li {
		width: 6rem;
		height: 6rem;
		margin: 0 2rem 3rem;
	}
	.faq_slider .slick-dots li::before,
	.story_slider .slick-dots li::before {
		font-size: 3.3rem;
	}
	.faq_slider .slick-prev {
		left: -4rem;
	}
	.faq_slider .slick-next {
		right: -4rem;
	}
	.story_slider .slick-prev,
	.story_slider .slick-next {
		width: 8rem;
		height: 8rem;
	}
	.story_slider .slick-prev {
		left: 1rem;
		background: url(../img/arrow_circle_left.png) no-repeat;
		background-size: 100%;
	}
	.story_slider .slick-next {
		right: 1rem;
		background: url(../img/arrow_circle_right.png) no-repeat;
		background-size: 100%;
	}
	.story_slider .slick-dots {
		top: 100%;
	}
	.recommend_slider .slick-dots {
		width: 55.6rem;
		bottom: -10rem;
	}
	.recommend_slider .slick-dots li {
		width: calc(100% / 7);
		height: 1.8rem;
		margin: 0;
	}
	.recommend_slider .slick-counter {
		bottom: -17.5rem;
		font-size: 4.8rem;
	}
	.recommend_slider .slick-list {
	  padding: 0 7rem 0 0!important;
	}

}


/*
  = 共通
-------------------------------------------------- */
.stickem-container,
.stickem-container-sp {
  position: relative;
}
.stickem,
.stickem-sp {
	top: 0;
	transition-duration: .6s;
	transition: all .3s;
	opacity: 1;
}
.stickit {
	opacity: 1;
	z-index: 10;
}


/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.stickit {
		position: fixed !important;
	}
	.sp_fixed {
		display: none !important;
	}
	.stickit-end {
	  opacity: 0;
	}
	.clm {
		display: flex;
		align-items: center;
	}
	.faq_area .stickit:not(.character) {
		width: 526px;
	  top: 56vh;
	}
	.fadeIn_up {
	  opacity: 0;
		transform: translateY(30px);
	  transition: 1s;
	}
	.fadeIn_up.is-show {
		transform: translateY(0);
	  animation: fadeIn 1s ease forwards;
	}
	@keyframes fadeIn {
	    100% {  opacity: 1;}
	}
	.answer.fadeIn_up.is-show {
		animation-delay: 0.3s;
	}

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.faq_area .question .stickem-sp .sp_fixed {
		width: 90%;
		position: fixed;
		top: 16rem;
		left: 0;
		right: 0;
		font-size: 2.8rem;
		line-height: 1.75;
		text-align: center;
		letter-spacing: -0.03em;
		padding: 2.5rem 3.5rem;
		margin: 0 auto;
		background: #fff;
		font-weight: bold;
    border: 0.6rem solid #000;
    border-radius: 4rem;
		opacity: 0;
		transition-duration: .8s;
		z-index: 10;
	}
	.faq_area .question .stickit .sp_fixed {
		opacity: 1;
	}

}


/*
  = header
-------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 111;
	transition: .3s cubic-bezier(.4, 0, .2, 1);
}
.header.header-fixed {
	transform: translateY(-100%);
}
.header .header_in {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.header .header_in .menu_wpr .menu li a {
  position: relative;
  display: block;
  color: #000;
  line-height: 1.2;
	letter-spacing: 0.001em;
}


/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .header {
    height: 130px;
		padding-top: 40px;
  }
	.header .header_in {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    padding: 0 40px;
    margin: 0 auto;
  }
  .header .header_in .logo {
    width: 195px;
  }
  .header .header_in .menu_wpr .menu {
    display: flex;
  }
  .header .header_in .menu_wpr .menu li + li {
    margin-left: 2rem;
  }
  .header .header_in .menu_wpr .menu li a {
    font-size: 1.8rem;
  }
	.header .header_in .menu_wpr .menu li a::after {
		content: "";
		display: none;
		position: absolute;
		left: 0;
		bottom: -8px;
		width: 100%;
		height: 4px;
		background: #000;
	}
	.header .header_in .menu_wpr .menu li a:hover::after {
		display: block;
	}
	.header .header_in .menu_wpr .menu li.current a::after {
		display: block;
	}

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.header {
		height: 15rem;
		background: #fff;
		padding: 4rem 0 0;
	}
	.header .header_in {
		position: relative;
		margin: 0 4rem;
	}
	.header .header_in .logo {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 20rem;
	}
	.header #nav-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
		color: #000;
    text-align: center;
  }
  .header #nav-btn .humburger {
		position: relative;
		width: 8rem;
		height: 8rem;
		cursor: pointer;
		margin: 0 auto 0.5rem;
	}
	.header #nav-btn .humburger span {
		position: absolute;
    left: 0;
    top: 50%;
    background: #000;
    width: 100%;
    height: 0.2rem;
    transition: transform .3s ease, opacity .3s ease;
	}
	.header #nav-btn .humburger span:first-child {
		transform: translateY(-1.5rem);
	}
	.menu-open {
		overflow: hidden;
	}
	.menu-open .header #nav-btn .humburger span:last-child {
    transform: rotate(-225deg);
	}
	.menu-open .header #nav-btn .humburger span:first-child {
    transform: rotate(225deg);
  }
	.header .header_in .menu_wpr {
    display: none;
    position: fixed;
    top: 15rem;
		bottom: 0;
    right: 0;
    left: 0;
		width: 100%;
		padding-top: 10rem;
		background: #fff;
  }
	.header .header_in .menu {
		padding: 0 9.6rem;
	}
	.header .header_in .menu_wpr .menu li + li {
		margin-top: 3.7rem;
	}
	.header .header_in .menu_wpr .menu li a {
		font-size: 4.8rem;
		color: #000;
		text-align: right;
		font-weight: bold;
	}
}


/*
  = main_visual
-------------------------------------------------- */
.main_visual,
.main_visual .main_visual_gif {
	position: relative;
}
.main_visual .fluffy {
	position: absolute;
	z-index: 100;
}
.main_visual .main_slider img {
	margin: 0 auto;
}
.main_visual .main_visual_gif {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.main_visual {
		width: 1077px;
		height: 80vh;
		margin: 0 auto;
	}
	.main_visual .fluffy {
		width: 153px;
	}
	.main_visual .fluffy01 {
		top: 6vh;
		right: 40px;
	}
	.main_visual .fluffy02 {
		top: 60vh;
		left: 10px;
	}
	.main_visual .main_visual_gif {
		margin: 0 auto;
	}

}


/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.main_visual {
		height: 76vh;
		padding-bottom: 5rem;
		margin: 0;
	}
	.main_visual .fluffy {
		width: 15rem;
	}
	.main_visual .fluffy01 {
		top: 5vh;
		right: -2rem;
	}
	.main_visual .fluffy02 {
		top: 60vh;
		left: -2rem;
	}
	.main_visual .main_visual_gif {
		padding: 0 4rem;
	}

}


/*
  = about
-------------------------------------------------- */
.about {
	position: relative;
	overflow: hidden;
}
.about .box {
	position: relative;
}
.about .box::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: #f6f1ef;
	height: 100%;
	z-index: -1;
}
.about .box .fluffy {
	position: absolute;
}
.about .box .lead,
.about .box h2,
.about .box .msg{
	font-weight: bold;
}
.about .box .lead {
	line-height: 1.6;
}
.about .box h2 {
	letter-spacing: 0.055em;
}
.about .box .about_img {
	position: relative;
}
.about .box .about_img .balloon_list .balloon {
	position: absolute;
	z-index: 2;
}
.about .box .about_img .balloon_list .balloon .in {
	text-align: center;
	font-weight: bold;
	background: #fff;
	animation: zoom-in-out 27.5s ease-in-out forwards infinite;
	opacity: 0;
}
.about .box .about_img .balloon_list .balloon01 .in {
	animation-delay: 0.5s;
}
.about .box .about_img .balloon_list .balloon02 .in {
	animation-delay: 3.5s;
}
.about .box .about_img .balloon_list .balloon03 .in {
	animation-delay: 6.5s;
}
.about .box .about_img .balloon_list .balloon04 .in {
	animation-delay: 9.5s;
}
.about .box .about_img .balloon_list .balloon05 .in {
	animation-delay: 12.5s;
}
.about .box .about_img .balloon_list .balloon06 .in {
	animation-delay: 15.5s;
}
.about .box .about_img .balloon_list .balloon07 .in {
	animation-delay: 18.5s;
}
.about .box .about_img .balloon_list .balloon08 .in {
	animation-delay: 21.5s;
}
.about .box .about_img .balloon_list .balloon09 .in {
	animation-delay: 24.5s;
}

@keyframes zoom-in-out {
  0% { opacity: 0; }
	2% { opacity: 1; }
	11% { opacity: 1; }
	13% { opacity: 0; }
	100% { opacity: 0; }
}
.about .box .fullwidth .user {
	position: absolute;
	width: auto;
}
.about .box .msg {
	line-height: 2;
}
.about .box .msg .text_area {
	position: relative;
  font-weight: bold;
  border: 0.6rem solid #000;
  border-radius: 4rem;
  background-color: #fff;
}
.about .box .msg .text_area::after {
	content: "";
  display: block;
  position: absolute;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.about {
		margin-top: 50px;
	}
	.about .box {
		width: 100%;
		min-width: 1077px;
		padding: 105px 0 150px;
		margin: 0 auto;
	}
	.about .box::before {
		width: 90%;
	}
	.about .box .fluffy01 {
		top: 424px;
		right: 100px;
		width: 100px;
	}
	.about .box .fluffy02 {
		top: 590px;
		right: 30px;
		width: 154px;
	}
	.about .box .fluffy03 {
		top: 614px;
		left: 10px;
		width: 100px;
	}
	.about .box .lead {
		width: 646px;
		margin: 0 auto;
	}
	.about .box .lead p {
		font-size: 3rem;
		margin-bottom: 60px;
	}
	.about .box h2 {
		max-width: 1077px;
		font-size: 4.8rem;
		text-align: center;
		margin: 0 auto;
	}
	.about .box .fullwidth {
		position: relative;
		min-width: 1077px;
		height: 635px;
	}
	.about .box .fullwidth .user {
		height: 246px;
	}
	.about .box .fullwidth .user01 { top: 0.5%; left: 10.2%;	}
	.about .box .fullwidth .user02 { top: 0.5%; left: 35%;	}
	.about .box .fullwidth .user03 { top: 0.5%; left: 60.5%;	}
	.about .box .fullwidth .user04 { top: 0.5%; left: 82.6%;	}
	.about .box .fullwidth .user05 { top: 25%; left: 0;	}
	.about .box .fullwidth .user06 { top: 23%; left: 22%;	}
	.about .box .fullwidth .user07 { top: 24%; left: 49%;	}
	.about .box .fullwidth .user08 { top: 24%; left: 72%;	}
	.about .box .fullwidth .user09 { top: 24%; right: 0;	}
	.about .box .fullwidth .user10 { top: 61.2%; left: 10%;	}
	.about .box .fullwidth .user11 { top: 58.7%; left: 34%;	}
	.about .box .fullwidth .user12 { top: 58.7%; left: 60%;	}
	.about .box .fullwidth .user13 { top: 58.7%; left: 82.6%;	}

	.about .box .about_img {
		margin-top: 140px;
	}
	.about .box .about_img .balloon_list .balloon01 {
		top: -9%;
    left: 16.5%;
	}
	.about .box .about_img .balloon_list .balloon02 {
		top: -9%;
		left: 41%;
	}
	.about .box .about_img .balloon_list .balloon03 {
		top: -9%;
		left: 67%;
	}
	.about .box .about_img .balloon_list .balloon04 {
		top: 13.5%;
    left: 28.5%;
	}
	.about .box .about_img .balloon_list .balloon05 {
		top: 13.5%;
		left: 55%;
	}
	.about .box .about_img .balloon_list .balloon06 {
		top: 13.5%;
		left: 78.5%;
	}
	.about .box .about_img .balloon_list .balloon07 {
		top: 48.5%;
    left: 16.5%;
	}
	.about .box .about_img .balloon_list .balloon08 {
		top: 48.5%;
		left: 40.5%;
	}
	.about .box .about_img .balloon_list .balloon09 {
		top: 48.5%;
		left: 67%;
	}
	.about .box .about_img .balloon_list .balloon .in {
		font-size: 1.3rem;
		padding: 20px 30px;
		padding: 1.3vw 1.5vw;
		border-radius: 45px 45px 45px 0;
	}
	.about .box .msg {
		width: 83%;
		max-width: 1077px;
		justify-content: center;
		margin: 90px auto 0;
	}
	.about .box .msg .text_area {
		width: 54.5%;
		max-width: 587px;
		font-size: 2.4rem;
		padding: 30px 20px 30px 50px;
	}
	.about .box .msg .text_area::after {
		left: 100%;
		top: 0;
		bottom: 0;
		margin: auto;
		width: 50px;
		height: 56px;
		background: url(../img/about_msg_item.png) no-repeat;
	  background-size: 100%;
	}
	.about .box .msg .img {
		width: 25%;
		max-width: 270px;
		margin: 0 auto;
	}

}

@media screen and (min-width: 1200px) {
	.about .box .about_img .balloon_list .balloon .in {
		font-size: 1.2vw;
	}
}

@media screen and (min-width: 1366px) {
	.about .box .about_img .balloon_list .balloon .in {
		font-size: 1.6rem;
		padding: 20px 30px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
	.about .box h2 {
		font-size: 4.5rem;
	}

}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.about {
		margin-top: 6rem;
	}
	.about .box {
		width: 100%;
		padding: 8.5rem 0;
	}
	.about .box .lead {
		text-align: center;
		padding: 0 3rem;
	}
	.about .box .lead p {
		font-size: 3.6rem;
		letter-spacing: 0;
		margin-bottom: 9.5rem;
	}
	.about .box h2 {
		font-size: 6rem;
		text-align: center;
		letter-spacing: 0;
		padding: 0 4rem;
		line-height: 1.4;
	}
	.about .box .fullwidth {
		height: 240rem;
	}
	.about .box .fullwidth .user {
		height: 45rem;
	}
	.about .box .fullwidth .user01 { top: 0.5%; left: 0;	}
	.about .box .fullwidth .user02 { top: 0.5%; left: 88%;	}
	.about .box .fullwidth .user03 { top: 22.5%; left: -8%;	}
	.about .box .fullwidth .user04 { top: 5.5%; left: 44%;	}
	.about .box .fullwidth .user05 { top: 26%; left: 32%;	}
	.about .box .fullwidth .user06 { top: 27%; left: 77%;	}
	.about .box .fullwidth .user07 { top: 43%; left: 8%;	}
	.about .box .fullwidth .user08 { top: 47%; left: 52%;	}
	.about .box .fullwidth .user09 { top: 56%; right: -6%;	}
	.about .box .fullwidth .user10 { top: 64%; left: -8%;	}
	.about .box .fullwidth .user11 { top: 68%; left: 33%;	}
	.about .box .fullwidth .user12 { top: 81.7%; left: 3%;	}
	.about .box .fullwidth .user13 { top: 79.7%; left: 79%;	}
	.about .box .about_img {
		margin-top: 9rem;
	}
	.about .box .about_img .balloon_list .balloon01,
	.about .box .about_img .balloon_list .balloon04,
	.about .box .about_img .balloon_list .balloon07 {
		left: 50%;
		transform: translateX(-50%);
	}
	.about .box .about_img .balloon_list .balloon02,
	.about .box .about_img .balloon_list .balloon05,
	.about .box .about_img .balloon_list .balloon08 {
		right: 4rem;
	}
	.about .box .about_img .balloon_list .balloon03,
	.about .box .about_img .balloon_list .balloon06,
	.about .box .about_img .balloon_list .balloon09 {
		left: 4rem;
	}
	.about .box .about_img .balloon_list .balloon01 {
		top: 0;
	}
	.about .box .about_img .balloon_list .balloon02 {
		top: 25.5rem;
	}
	.about .box .about_img .balloon_list .balloon03 {
		top: 51rem;
	}
	.about .box .about_img .balloon_list .balloon04 {
		top: 76.5rem;
	}
	.about .box .about_img .balloon_list .balloon05 {
		top: 102rem;
	}
	.about .box .about_img .balloon_list .balloon06 {
		top: 127.5rem;
	}
	.about .box .about_img .balloon_list .balloon07 {
		top: 153rem;
	}
	.about .box .about_img .balloon_list .balloon08 {
		top: 178.5rem;
	}
	.about .box .about_img .balloon_list .balloon09 {
		top: 204rem;
	}
	.about .box .about_img .balloon_list .balloon .in {
		font-size: 2.8rem;
		white-space: nowrap;
		line-height: 1.35;
		padding: 3.5rem 4.5rem;
	}
	.about .box .about_img .balloon_list .balloon:nth-child(odd) .in {
		border-radius: 7.5rem 7.5rem 7.5rem 0;
	}
	.about .box .about_img .balloon_list .balloon:nth-child(even) .in {
		border-radius: 7.5rem 7.5rem 0 7.5rem;
	}
	.about .box .msg {
		padding: 0 4rem;
		margin-top: 10rem;
	}
	.about .box .msg .text_area {
		font-size: 3.6rem;
		text-align: center;
		padding: 4.5rem 5rem;
		margin-bottom: 7rem;
	}
	.about .box .msg .text_area::after {
		left: 6.5rem;
		top: 99.8%;
		width: 11.8rem;
		height: 6.9rem;
		background: url(../img/about_msg_item_sp.png) no-repeat;
	  background-size: 100%;
	}
	.about .box .msg .item:nth-of-type(2) {
		width: 29rem;
		margin: 0 auto;
	}

}


/*
  = faq_area
-------------------------------------------------- */
.faq_area {
	position: relative;
	background: #bfbfbf;
}
.faq_area::before,
.faq_area::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: #bfbfbf;
	z-index: -2;
}
.faq_area .item {
	position: relative;
}
.faq_area .item .contents {
	position: relative;
	font-weight: bold;
	border: 0.6rem solid #000;
	border-radius: 4rem;
	background-color: #fff;
}
.faq_area .item .contents .faq_text {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
}
.faq_area .item .contents .faq_text p {
	display: inline-block;
	text-align: center;
	font-weight: bold;
	line-height: 1.4;
	border: 0.3rem solid #000;
	border-radius: 0.8rem;
	background: #ffd200;
}
.faq_area .question .q_contents p,
.faq_area .answer .a_contents h4 {
	text-align: center;
	letter-spacing: -0.03em;
}
.faq_area .question .q_contents::after,
.faq_area .answer .a_contents::after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
}
.faq_area .question .q_contents::after {
	background: url(../img/faq_item_left.png) no-repeat;
	background-size: 100%;
}
.faq_area .answer .a_contents::after {
	background: url(../img/faq_item_right.png) no-repeat;
	background-size: 100%;
}
.faq_area .item .contents .img {
	text-align: center;
}
.faq_area .answer .a_contents .faq_slider .slide_name {
	display: block;
	text-align: center;
}
.faq_area .answer .a_contents .faq_slider h5 {
	font-weight: bold;
	text-align: center;
}
.faq_area .accordion_wpr,
.faq_area .accordion_wpr .accordion_bar {
	position: relative;
}
.faq_area .accordion_wpr .accordion_bar .term {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	text-align: center;
	background: #ffd200;
	border: 1px solid #000;
}
.faq_area .accordion_wpr .accordion_btn {
	position: relative;
	width: 100%;
}
.faq_area .accordion_wpr .accordion_btn::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 5.5px 0 5.5px;
	border-color: #000 transparent transparent transparent;
	transition: all .2s ease-in-out;
}
.faq_area .accordion_wpr .accordion_btn::after {
	content: "VIEW DETAIL";
	font-weight: 400;
}
.faq_area .open .accordion_btn::before {
	transform: rotate(180deg);
}
.faq_area .open .accordion_btn::after {
	display: block;
	content: "CLOSE";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 20px;
	width: 100%;
}
.faq_area .accordion_cont .list_detail li {
	position: relative;
}
.faq_area .accordion_cont .list_detail li::before,
.faq_area .accordion_cont .list_detail li::after {
	display: block;
	content: "";
	position: absolute;
}
.faq_area .accordion_cont .list_detail li::before {
	top: 0;
	bottom: 0;
	left: -1.8rem;
	margin: auto;
	width: 0.7rem;
	height: 95%;
	background: #bfbfbf;
}
.faq_area .accordion_cont .list_detail li + li::after {
	left: -2rem;
	top: -2.2rem;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 5.5px 0 5.5px;
	border-color: #bfbfbf transparent transparent transparent;
}
.faq_area .accordion_cont .list_detail li a {
	display: block;
}
.faq_area .accordion_cont .list_detail li a .list_ttl {
	font-weight: 600;
	line-height: 1.2;
}
.faq_area .article_list li {
	opacity: 1;
	position: relative;
	transition: all 0.4s ease 0s;
}
.faq_area .article_list li.is_hidden {
	opacity: 0;
  height: 0;
  margin: 0;
	z-index: -1;
}
.faq_area .article_list li a {
	display: block;
}
.faq_area .article_list li a .case {
	display: block;
}
.faq_area .article_list li a .thum img {
	width: 100%;
}
.faq_area .more_wpr {
	text-align: center;
	border-top: 0.2rem solid #000;
	border-bottom: 0.2rem solid #000;
}
.faq_area .more_wpr .more span {
	display: inline-block;
	position: relative;
	font-weight: 400;
}
.faq_area .more_wpr .more span::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 5.5px 0 5.5px;
	border-color: #000 transparent transparent transparent;
}
.faq_area .qa .js-tab-content {
	display: none;
}
.faq_area .qa .q_contents .qa_list {
	counter-reset: number 0;
}
.faq_area .qa .q_contents .qa_list::-webkit-scrollbar-track{
	background: #bfbfbf;
}
.faq_area .qa .q_contents .qa_list::-webkit-scrollbar-thumb{
	background: #000;
}
.faq_area .qa .q_contents .qa_list li {
	position: relative;
	cursor: pointer;
}
.faq_area .qa .q_contents .qa_list li::before {
	display: block;
	counter-increment: number 1;
	content: "Q" counter(number) ".";
	position: absolute;
	left: 0;
	margin: auto;
	text-align: center;
	-webkit-transition: all 0.25s linear;
}

.faq_area .contents p a {
	text-decoration: underline;
}


/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.faq_area {
		padding: 0 20px;
		background: #bfbfbf;
		margin: auto;
	}
	.faq_area::before {
		top: -335px;
		height: 335px;
	}
	.faq_area::after {
		top: 100%;
		height: 460px;
	}
	.faq_area .clm_wpr {
		max-width: 1077px;
		display: flex;
		justify-content: space-between;
		padding-top: 20px;
		margin: 0 auto 43vh;
	}
	.faq_area .clm_wpr:first-of-type {
		padding-top: 55px;
		margin-top: 0;
	}
	.faq_area .clm_wpr.qa {
		margin: 0 auto;
	}
	.faq_area .clm_wpr .item {
		width: 48.8%;
	}
	.faq_area .answer {
		margin-top: 500px;
	}
	.faq_area .qa .answer {
		margin-top: 0;
	}
	.faq_area .item .contents {
		padding: 50px 40px;
	}
	.faq_area .answer .a_contents + .a_contents {
		margin-top: 97px;
	}
	.faq_area .qa .item .contents {
		margin-top: 0;
	}
	.faq_area .item .contents .faq_text {
		top: -22px;
	}
	.faq_area .item .contents .faq_text p {
		width: 209px;
		font-size: 2.4rem;
		margin: auto;
	}
	.faq_area .item.question .wpr {
		position: sticky;
		top: 50vh;
	}
	.faq_area .question .q_contents::after {
		bottom: -53px;
		width: 83px;
		height: 54px;
	}
	.faq_area .answer .a_contents::after {
		bottom: -53px;
		width: 83px;
		height: 54px;
	}
	.faq_area .question .q_contents p,
	.faq_area .answer .a_contents h4 {
		font-size: 3rem;
		letter-spacing: -0.05em;
	}
	.faq_area .answer .a_contents h4 {
		font-size: 2.8rem;
	}
	.faq_area .answer .a_contents p {
		font-size: 1.4rem;
	}
	.faq_area .qa .answer .a_contents p {
		font-size: 1.8rem;
	}
	.faq_area .answer .a_contents .text {
		margin-top: 35px;
	}
	.faq_area .item .contents .img {
		margin: 25px auto 0;
	}
	.faq_area .item .contents .img .img01_1 {
		width: 351px;
	}
	.faq_area .item .contents .img .img01_2 {
		width: 240px;
	}
	.faq_area .item .contents .img .img01_3 {
		width: 191px;
	}
	.faq_area .item .contents .img .img01_4 {
		width: 312px;
	}
	.faq_area .item .contents .img .img02_1 {
		width: 371px;
	}
	.faq_area .item .contents .img .img02_2 {
		width: 240px;
	}
	.faq_area .item .contents .img .img02_3 {
		width: 235px;
	}
	.faq_area .answer .a_contents .faq_slider {
		padding: 0 30px 20px;
		margin: 40px 0;
	}
	.faq_area .answer .a_contents .faq_slider .slide_name {
		font-size: 1.8rem;
		margin-bottom: 50px;
	}
	.faq_area .answer .a_contents .faq_slider .img {
		margin-top: 0;
		margin-bottom: 30px;
	}
	.faq_area .answer .a_contents .text_wpr {
		width: 85%;
		margin: auto;
	}
	.faq_area .answer .a_contents .faq_slider h5 {
		font-size: 2.4rem;
		margin-bottom: 10px;
	}
	.faq_area .accordion_wpr {
		border-bottom: 2px solid #000;
		padding: 30px 20px 25px;
	}
	.faq_area .accordion01 {
		border-top: 2px solid #000;
		margin-top: 40px;
	}
	.faq_area .accordion_wpr .accordion_bar h5 {
		font-size: 2.4rem;
	}
	.faq_area .accordion_wpr .accordion_bar .term {
		font-size: 1.4rem;
		padding: 4px 20px;
	}
	.faq_area .accordion_wpr .accordion_btn {
		height: 22px;
		padding-left: 22px;
		margin-top: 10px;
	}
	.faq_area .accordion_wpr .accordion_btn::before {
		font-size: 1.4rem;
	}
	.faq_area .accordion_cont {
		margin-top: 40px;
	}
	.faq_area .accordion_cont .list_detail li + li {
		margin-top: 40px;
	}
	.faq_area .accordion_cont .list_detail li .list_ttl {
		font-size: 2rem;
		margin-bottom: 15px;
	}
	.faq_area .accordion_cont h6 {
		font-size: 1.8rem;
	}
	.faq_area .pr .accordion_cont h6 {
		margin: 30px 0 6px;
	}
	.faq_area .showcase h4 {
		margin-bottom: 20px;
	}
	.faq_area .article_list {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		margin-top: 25px;
	}
	.faq_area .article_list li {
		width: 48%;
		margin-bottom: 25px;
	}
	.faq_area .article_list li a:hover {
		opacity: .8;
	}
	.faq_area .article_list li a .case {
		font-size: 1rem;
		margin-bottom: 5px;
	}
	.faq_area .article_list li a .thum {
		margin-top: 0;
		margin-bottom: 5px;
	}
	.faq_area .article_list li a .ttl {
		letter-spacing: -0.02em;
		margin-bottom: 10px;
	}
	.faq_area .more_wpr {
		cursor: pointer;
		padding: 25px 0;
	}
	.faq_area .more_wpr h5 {
		font-size: 2.4rem;
	}
	.faq_area .more_wpr .more span {
		font-size: 1.4rem;
		padding-left: 20px;
	}
	.faq_area .qa {
		min-height: 65vh;
	}
	.faq_area .qa .q_contents {
		padding: 50px 0;
	}
	.faq_area .qa .q_contents .qa_list {
		max-height: 50vh;
		overflow-y: auto;
		padding: 0 30px 0 40px;
		margin-right: 8px;
	}
	.faq_area .qa .q_contents .qa_list::-webkit-scrollbar{
		width: 10px;
	}
	.faq_area .qa .q_contents .qa_list li {
		border-bottom: 1px solid #000;
		padding: 22px 0 22px 60px;
	}
	.faq_area .qa .q_contents .qa_list li p {
		font-size: 2.4rem;
		text-align: left;
	}
	.faq_area .qa .item .contents + .contents {
		margin-top: 0;
	}
	.faq_area .qa .q_contents .qa_list li::before {
		top: 0;
		bottom: 0;
		width: 50px;
		height: 50px;
		font-size: 2rem;
		line-height: 50px;
		padding-left: 5px;
		border-radius: 50%;
	}
	.faq_area .qa .q_contents .qa_list li.current::before {
		background: #ffd200;
	}

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.faq_area {
		padding: 10rem 4rem 30rem;
	}
	.faq_area::before {
		display: none;
	}
	.faq_area::after {
		display: none;
	}
	.faq_area .clm_wpr {
		display: flex;
		flex-direction: column;
		padding-top: 14.5rem;
	}
	.faq_area .clm_wpr:not(.value) {
		margin-top: 22rem;
	}
	.faq_area .item .q_contents {
		padding: 6rem 3.5rem 5.5rem;
		margin-bottom: 16.8rem;
	}
	.faq_area .item .a_contents {
		padding: 6rem 5.5rem 5.5rem;
	}
	.faq_area .answer .a_contents + .a_contents {
		margin-top: 16rem;
	}
	.faq_area .qa .item .contents {
		margin-top: 0;
	}
	.faq_area .qa .item .q_contents {
		margin-bottom: 0;
	}
	.faq_area .item .contents .faq_text {
		top: -2.8rem;
	}
	.faq_area .item .contents .faq_text > p {
		width: 26.4rem;
		font-size: 3rem !important;
		margin: auto;
		letter-spacing: 0.05em;
	}
	.faq_area .question .q_contents::after {
		bottom: -4.65rem;
		width: 7.7rem;
		height: 4.7rem;
	}
	.faq_area .answer .a_contents::after {
		bottom: -4.6rem;
		width: 7.7rem;
		height: 4.7rem;
	}
	.faq_area .question .q_contents p {
		font-size: 4rem;
		line-height: 1.35;
	}
	.faq_area .answer .a_contents h4 {
		font-size: 4rem;
		line-height: 1.5;
	}
	.faq_area .answer .a_contents h4 + p {
		margin-top: 2rem;
	}
	.faq_area .answer .a_contents p {
		font-size: 2.8rem;
	}
	.faq_area .answer .a_contents .text {
		margin-top: 3rem;
	}
	.faq_area .item .contents .img {
		margin-top: 2.5rem;
	}
	.faq_area .item .contents .img .img01_1 {
		width: 46rem;
	}
	.faq_area .item .contents .img .img01_2 {
		width: 33rem;
	}
	.faq_area .item .contents .img .img01_3 {
		width: 27rem;
	}
	.faq_area .item .contents .img .img01_4 {
		width: 45rem;
	}
	.faq_area .item .contents .img .img02_1 {
		width: 48rem;
	}
	.faq_area .item .contents .img .img02_2 {
		width: 40rem;
	}
	.faq_area .item .contents .img .img02_3 {
		width: 36rem;
	}
	.faq_area .answer .a_contents .faq_slider {
		padding-bottom: 3rem;
		margin: 7rem 0 8rem;
	}
	.faq_area .answer .a_contents .faq_slider .slide_name {
		font-size: 2.8rem;
		margin-bottom: 1.5rem;
	}
	.faq_area .answer .a_contents .faq_slider .img {
		width: 80%;
		margin: 0 auto 5rem;
	}
	.faq_area .answer .a_contents .faq_slider h5 {
		font-size: 4.2rem;
		margin-bottom: 3rem;
	}
	.faq_area .accordion_wpr {
		border-bottom: 0.4rem solid #000;
		padding: 3rem 3.3rem;
	}
	.faq_area .accordion01 {
		border-top: 0.4rem solid #000;
		margin-top: 7rem;
	}
	.faq_area .accordion_wpr .accordion_bar h5 {
		font-size: 3.6rem;
	}
	.faq_area .accordion_wpr .accordion_bar .term {
		font-size: 2.4rem;
		padding: 0.7rem 2.5rem;
	}
	.faq_area .accordion_wpr .accordion_btn {
		height: 4rem;
		padding-left: 3.7rem;
		margin-top: 1rem;
	}
	.faq_area .accordion_wpr .accordion_btn::before {
		font-size: 2.8rem;
		border-width: 1rem 0.9rem 0 0.9rem;
	}
	.faq_area .accordion_cont {
		margin-top: 5rem;
	}
	.faq_area .accordion_cont .list_detail li::before {
		left: -3rem;
		width: 1.2rem;
	}
	.faq_area .accordion_cont .list_detail li + li::after {
		left: -3.3rem;
    top: -3.4rem;
		border-width: 1rem 0.9rem 0 0.9rem;
	}
	.faq_area .accordion_cont .list_detail li + li {
		margin-top: 6rem;
	}
	.faq_area .accordion_cont .list_detail li .list_ttl {
		font-size: 3.2rem;
		margin-bottom: 2rem;
	}
	.faq_area .accordion_cont h6 {
		font-size: 3.8rem;
	}
	.faq_area .pr .accordion_cont h6 {
		margin: 4rem 0 1rem;
	}
	.faq_area .article_list {
		margin-top: 6.5rem;
	}
	.faq_area .article_list li + li {
		margin-top: 5.5rem;
	}
	.faq_area .article_list li a .case {
		font-size: 2rem;
		margin-bottom: 1rem;
	}
	.faq_area .article_list li a .thum {
		margin-top: 0;
		margin-bottom: 3rem;
	}
	.faq_area .article_list li a .ttl,
	.faq_area .article_list li a p {
		font-size: 3.2rem;
	}
	.faq_area .more_wpr {
		padding: 3.5rem 0;
			margin-top: 5.5rem;
	}
	.faq_area .more_wpr h5 {
		font-size: 3.6rem;
	}
	.faq_area .more_wpr .more span {
		font-size: 2.8rem;
		padding-left: 4rem;
	}
	/* SP QA 質問ごとに吹き出し */
	.faq_area .qa .switch_wpr + .switch_wpr {
		margin-top: 17rem;
	}
	.faq_area .qa .contents {
		position: relative;
		padding-bottom: 10rem;
	}
	.faq_area .qa .q_contents::before,
	.faq_area .qa .a_contents::before {
		display: block;
		position: absolute;
		bottom: 4.5rem;
		left: 0;
		right: 0;
		margin: auto;
		font-size: 2.4rem;
		text-align: center;
	}
	.faq_area .qa .q_contents::before {
			content: "+ tap to open";
	}
	.faq_area .qa .a_contents::before {
			content: "- tap to close";
	}
	.faq_area .qa .q_contents::after {
		content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
		bottom: -4.65rem;
    width: 7.7rem;
    height: 4.7rem;
		background: url(../img/faq_item_left.png) no-repeat;
    background-size: 100%;
	}
	.faq_area .qa .a_contents::after {
		content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
		bottom: -4.6rem;
    width: 7.7rem;
    height: 4.7rem;
		background: url(../img/faq_item_right.png) no-repeat;
    background-size: 100%;
	}
	.faq_area .qa .q_contents p {
		font-size: 3.6rem;
		text-align: center;
		letter-spacing: -0.03em;
	}
	.faq_area .qa .q_contents .number {
		display: block;
		text-align: center;
		font-size: 3.6rem;
		margin-bottom: 1rem;
	}
	.faq_area .qa .item .contents + .contents {
		margin-top: 0;
	}

}


/*
  = character
-------------------------------------------------- */
.character {
	pointer-events: none;
	z-index: 2;
}
.character.right {
	position: absolute;
}
.character .staff {
	text-align: right;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.character.stickem {
		position: fixed;
		top: 0;
	  transition-duration: .6s;
		opacity: 0;
		z-index: -1;
	}
	.character.stickit {
		opacity: 1;
		z-index: 20;
	}
	.character.stickit-end {
		opacity: 0;
		z-index: -1;
	}
	.character.left {
		min-width: 1275px;
		height: 180px;
		top: 75vh;
		right: 0;
	}
	.character.right {
		top: -120px;
		right: -100px;
	}
	.character .icon {
		width: 180px;
	}
	.character.left .icon {
		margin-left: 50px;
	}

}

@media print, screen and (min-width: 768px) and (max-width: 769px) {
	.character.left {
		width: 100%;
		min-width: auto;
	}
}

@media print, screen and (min-width: 1220px) {
	.character.left {
		right: auto;
		left: calc(50% - 700px);
	}
}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.character {
	  width: 18rem;
		height: 18rem;
	}
	.character.left {
		top: 30rem;
		left: -2rem;
	}
	.character.left {
		position: absolute;
		top: 3rem;
		left: -6rem;
	}
	.character.right {
		top: -10rem;
		right: -6rem;
	}
	.qa .character.left {
		top: -10rem;
	}
	.qa .character.right {
		top: -12rem;
	}
	.character.left.stickit {
		opacity: 0;
	}
	.character.right.static {
		position: relative;
		margin-right: -6rem;
	}
	.character .icon {
		width: 18rem;
	}
}

/*
  = tools_btn
-------------------------------------------------- */
.tools_btn {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	text-align: center;
	z-index: 100;
}
.tools_btn a {
	display: inline-block;
	text-align: center;
	font-weight: bold;
	line-height: 1.2;
	background: #ffd200;
}
.tools_btn a span {
	display: block;
}
/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.tools_btn a {
		width: 300px;
		font-size: 1.8rem;
		border-radius: 48px 48px 0 0;
		padding: 10px 0;
	}
	.tools_btn a span {
		font-size: 1.4rem;
	}
	.tools_btn a:hover {
		opacity: .8;
	}
}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.tools_btn a {
		width: 44rem;
		font-size: 2.8rem;
		border-radius: 4.8rem 4.8rem 0 0;
		padding: 1rem 0;
	}
	.tools_btn a span {
		font-size: 2.4rem;
	}
	.tools_btn.btn_fixed a {
		padding: 2rem 0 3.5rem;
		line-height: 1.4;
	}
}

/*
  = tools / contact
-------------------------------------------------- */
.tools, .contact {
	position: relative;
	font-weight: bold;
}
.tools .box {
	background: #fff;
}
.tools .box .in .heading03 span {
	display: block;
}
.download .item {
	font-weight: bold;
}
.download_btn {
	text-align: right;
}
.download_btn span,
.download_btn a,
.contact_btn a {
	position: relative;
	display: inline-block;
	letter-spacing: 0.01em;
}
.download_btn span,
.download_btn a {
	background: url(../img/icon_download.png) right center no-repeat;
}
.contact_btn a {
	background: url(../img/icon_contact.png) right center no-repeat;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.tools .heading03,
	.contact .heading03 {
		font-size: 3rem;
	}
	.tools .heading03 span,
	.contact .heading03 span {
		font-size: 1.4rem;
	}
	.tools {
		padding: 0 50px;
		margin-top: 180px;
	}
	.tools .box {
		width: 100%;
		max-width: 1260px;
		padding: 65px 0 70px;
		border: 6px solid #000;
		margin: 0 auto;
	}
	.tools .box .in {
		width: 84%;
		margin: auto;
	}
	.tools .box .in .heading03 {
		text-align: center;
		margin-bottom: 45px;
	}
	.tools .box .in .guide_wpr {
		padding-top: 75px;
		border-top: 4px solid #000;
	}
	.tools .box .in .guide_wpr h4,
	.tools .box .in .guide_wpr .lead {
		text-align: center;
	}
	.tools .box .in .guide_wpr h4 {
		font-size: 3rem;
		margin-bottom: 25px;
	}
	.tools .box .in .guide_wpr .lead {
		font-size: 1.8rem;
		margin-bottom: 50px;
	}
	.tools .box .in .guide_wpr .download {
		justify-content: space-between;
	}
	.tools .box .in .guide_wpr .download .item {
		width: 45%;
	}
	.download .item .img {
		margin-bottom: 17px;
	}
	.download .item p {
		font-size: 1.4rem;
		margin-bottom: 27px;
	}
	.download_btn span,
	.download_btn a {
		font-size: 2.4rem;
		padding-right: 35px;
		background-size: 21px auto;
	}
	.contact {
		min-width: 1077px;
		margin: 98px auto 60px;
	}
	.contact .clm {
		width: 910px;
		justify-content: space-between;
		margin: 0 auto;
	}
	.contact .clm .item:nth-of-type(1) {
		width: 730px;
	}
	.contact .clm .item:nth-of-type(2) .img {
		width: 126px;
	}
	.contact .clm .item .heading03 {
		margin-bottom: 70px;
	}
	.contact .clm .item h4 {
		font-size: 3rem;
		margin-bottom: 25px;
	}
	.contact .clm .item .lead {
		font-size: 1.8rem;
		margin-bottom: 35px;
	}
	.contact_btn a {
		font-size: 2.4rem;
		padding-right: 35px;
		background-size: 23px auto;
	}
	.download_btn a:hover,
	.contact_btn a:hover {
		text-decoration: underline;
	}

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.tools,
	.contact {
		padding: 0 4rem;
	}
	.tools .heading03,
	.contact .heading03 {
		font-size: 6rem;
	}
	.tools .heading03 span,
	.contact .heading03 span {
		font-size: 2.8rem;
	}
	.tools .heading03 span {
		margin-top: 3.7rem;
	}
	.tools {
		margin-top: -11.5rem;
	}
	.tools .box {
		padding: 8rem 4.5rem 10rem;
		border: 1.2rem solid #000;
	}
	.tools .box .in .heading03 {
		margin-bottom: 9rem;
	}
	.tools .box .in .guide_wpr {
		padding-top: 8.5rem;
		border-top: 0.4rem solid #000;
	}
	.tools .box .in .guide_wpr h4 {
		font-size: 4.8rem;
		margin-bottom: 3.5rem;
	}
	.tools .box .in .guide_wpr .lead {
		font-size: 3rem;
		margin-bottom: 9.3rem;
	}
	.tools .box .in .guide_wpr .download .item + .item {
		margin-top: 10rem;
	}
	.download .item .img {
		margin-bottom: 2rem;
	}
	.download .item p {
		font-size: 2.8rem;
		margin-bottom: 3.5rem;
	}
	.download_btn span,
	.download_btn a {
		font-size: 3.6rem;
		padding-right: 4.5rem;
		background-size: 3rem auto;
	}
	.contact {
		margin: 14rem 0 19.5rem;
	}
	.contact .clm .item + .item {
		margin-top: 7.7rem;
	}
	.contact .clm .item:nth-of-type(2) .img {
		width: 16rem;
		margin: 0 auto;
	}
	.contact .clm .item .heading03 {
		margin-bottom: 4.5rem;
	}
	.contact .clm .item .heading03 span {
		display: block;
		margin-top: 2rem;
	}
	.contact .clm .item h4 {
		font-size: 4.8rem;
		line-height: 1.4;
		margin-bottom: 9rem;
	}
	.contact .clm .item .lead {
		font-size: 3rem;
		margin-bottom: 3.5rem;
	}
	.contact_btn a {
		font-size: 3.6rem;
		padding-right: 4.2rem;
		background-size: 2.6rem auto;
	}

}

/*
  = footer
-------------------------------------------------- */
.footer {
	background: #a3a7a8;
}
.footer .footer_in .item .footer_menu .menu li a,
.footer .footer_in .item .about_company a {
	display: block;
	font-weight: bold;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.footer {
		min-width: 1077px;
		padding: 140px 0 150px;
	}
	.footer .footer_in {
		display: flex;
		justify-content: space-between;
		width: 1000px;
		margin: 0 auto;
	}
	.footer .footer_in .item .logo {
		width: 256px;
	}
	.footer .footer_in .item .footer_menu {
		display: flex;
		justify-content: space-between;
		margin-bottom: 37px;
	}
	.footer .footer_in .item .footer_menu .menu + .menu {
		margin-left: 15px;
	}
	.footer .footer_in .item .footer_menu .menu li + li {
		margin-top: 5px;
	}
	.footer .footer_in .item .footer_menu .menu li a {
		font-size: 1.8rem;
	}
	.footer .footer_in .item .about_company a {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}
	.footer .footer_in .item a:hover {
		opacity: .8;
	}
	.footer .footer_in .item .copyright {
		font-size: 1rem;
	}

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.footer {
		padding: 14.2rem 0 4.5rem;
	}
	.footer .footer_in {
		padding: 0 4rem;
	}
	.footer .footer_in .item .logo {
		width: 25.5rem;
		margin-bottom: 8rem;
	}
	.footer .footer_in .item .footer_menu {
		margin-bottom: 12rem;
	}
	.footer .footer_in .item .footer_menu .menu li {
		margin-bottom: 1.5rem;
	}
	.footer .footer_in .item .footer_menu .menu li a {
		font-size: 3.6rem;
	}
	.footer .footer_in .item .about_company a {
		font-size: 2.8rem;
		margin-bottom: 1rem;
	}
	.footer .footer_in .item .copyright {
		font-size: 2rem;
	}

}


/*
  = モーダル
-------------------------------------------------- */
.modal-window {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 1111;
  padding: 2rem;
	overflow-x: hidden;
  overflow-y: auto;
}
.modal-window .modal_item {
	position: relative;
	margin: 0 auto;
	background-color: #fff;
	z-index: 2222;
}
.modal-window .modal_item .close {
	position: absolute;
	top: 0;
	color: #fff;
	line-height: 1;
	cursor: pointer;
}


/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.modal-window {
		padding-top: 50px;
	}
	.modal-window .modal_item {
		max-width: 1077px;
		padding: 40px;
	}
	.modal-window .download.modal_item {
		width: 700px;
	}
	.modal-window .modal_item .close {
		font-size: 6rem;
		left: 100%;
	}

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.modal-window {
		padding-top: 9rem;
	}
	.modal-window .modal_item {
		width: 90%;
		padding: 4rem;
	}
	.modal-window .modal_item .close {
		font-size: 6rem;
		top: -6rem;
		right: -1rem;
	}

}

/*
  = page_article
-------------------------------------------------- */
.box_text01 {
	text-align: center;
}
.box_text01 span {
	display: inline-block;
	text-align: center;
	background: #ffd200;
	border-radius: 0.6rem;
}
.text_bold {
	font-weight: bold;
}
.story {
	position: relative;
}
.story_about {
	font-weight: bold;
}
.story_about p {
	text-align: left;
}
.story_about .story_about_inner {
	position: relative;
	border: 0.6rem solid #000;
	border-radius: 2rem;
	background: #fff;
}
.story_about .story_about_inner::before {
	content: "";
  display: block;
  position: absolute;
}
.story_about.right .story_about_inner::before {
	content: "";
  display: block;
  position: absolute;
}
.story .text {
	line-height: 2;
}
.story_slider .caption {
	display: block;
	font-weight: bold;
	text-align: center;
}
.recommend_articles {
	position: relative;
}
.recommend_articles .heading03 {
	position: absolute;
	z-index: 10;
}
.recommend_articles .heading03 h3 {
	position: relative;
	font-weight: bold;
	text-align: center;
	border: 0.4rem solid #000;
	border-radius: 1.8rem;
	background: #fff;
}
.recommend_articles .heading03 h3::after {
	content: "";
  display: block;
  position: absolute;
}
.recommend_slider {
	font-weight: bold;
}
.recommend_slider .ttl span {
	display: inline-block;
	line-height: 1.4;
	background: #fff;
}
.recommend_slider .read_more span {
	display: inline-block;
	background: url(../img/icon_arrow01.png) right center no-repeat;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.introduction {
		padding-top: 70px;
	}
	.introduction .main_text {
		font-size: 1.6rem;
		margin-bottom: 70px;
	}
	.box_text01 {
		margin-bottom: 20px;
	}
	.box_text01.mb40 {
		margin-bottom: 40px;
	}
	.box_text01 span {
		font-size: 1.4rem;
		padding: 3px 20px;
		border: 0.2rem solid #000;
	}
	.introduction_img {
		margin-bottom: 80px;
	}
	.mb70 {
		margin-bottom: 70px;
	}
	.story {
		padding-bottom: 80px;
	}
	.story:last-of-type {
		padding-bottom: 0;
	}
	.story_about {
		margin-left: -40px;
		margin-bottom: 60px;
	}
	.story_about.right {
		text-align: right;
		margin-right: -40px;
		margin-left: auto;
	}
	.story_about p {
		font-size: 2.4rem;
	}
	.story_about .story_about_inner {
		display: inline-block;
		min-width: 515px;
		padding: 25px 30px;
	}
	.story_about .story_about_inner::before {
		left: 45px;
		bottom: -53px;
    width: 83px;
    height: 54px;
		background: url(../img/article/story_about_item_left.png) no-repeat;
	  background-size: 100%;
	}
	.story_about.right .story_about_inner::before {
		right: 45px;
		left: auto;
		background: url(../img/article/story_about_item_right.png) no-repeat;
	  background-size: 100%;
	}
	.story .text {
		font-size: 1.4rem;
		margin-bottom: 50px;
	}
	.story_slider {
		padding: 0 50px 20px;
		margin-bottom: 65px;
	}
	.story_slider .caption {
		font-size: 1.4rem;
		margin-top: 15px;
	}
	.recommend_articles {
		width: 100%;
		min-width: 1080px;
		padding: 90px 0 127px;
		margin: 0 auto 190px;
	}
	.recommend_articles .recommend_slider {
		padding-left: calc((100vw - 1080px) / 2);
	}
	.recommend_articles .heading03 {
		top: 15px;
		left: calc((100vw - 1140px) / 2);
	}
	.recommend_articles .heading03 h3 {
		font-size: 2.4rem;
		text-align: center;
		padding: 20px 30px;
	}
	.recommend_articles .heading03 h3::after {
		left: 37px;
		bottom: -38px;
    width: 61px;
    height: 39px;
		background: url(../img/article/story_about_item_left.png) no-repeat;
		background-size: 100%;
	}
	.recommend_slider .slick-slide {
		position: relative;
		padding: 0 10px;
		transition: all .2s;
	}
	.recommend_slider .slick-slide:hover {
		opacity: .8;
	}
	.recommend_slider .text_area {
		margin: 0 10px;
	}
	.recommend_slider .ttl {
		margin-top: -60px;
		margin-bottom: 10px;
	}
	.recommend_slider .ttl span {
		font-size: 2rem;
		padding: 0 5px;
		margin-bottom: 7px;
	}
	.recommend_slider .read_more {
		margin-top: 15px;
	}
	.recommend_slider .read_more span {
		font-size: 2.4rem;
		padding-right: 40px;
		background-size: 23px auto;
	}

}

@media screen and (min-width: 768px) and (max-width: 1140px) {
	.recommend_articles .heading03 {
		left: 0;
	}
}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.introduction .main_text {
		font-size: 3rem;
		padding: 0 7rem;
		margin-bottom: 7rem;
	}
	.box_text01 {
		margin-bottom: 7rem;
	}
	.box_text01 span {
		font-size: 2.8rem;
		padding: 0.2rem 3rem;
		border: 0.4rem solid #000;
	}
	.mb70 {
		margin-bottom: 7rem;
	}
	.story {
		padding-top: 11rem;
	}
	.story_about {
		padding: 0 4rem;
		margin-bottom: 10rem;
	}
	.story_about p {
		font-size: 3.6rem;
		line-height: 1.35;
	}
	.story_about .story_about_inner {
		padding: 4.5rem 3rem;
	}
	.story_about .story_about_inner::before {
		left: 6.5rem;
		bottom: -6.8rem;
		width: 12rem;
    height: 7rem;
		background: url(../img/article/story_about_item_left_sp.png) no-repeat;
	  background-size: 100%;
	}
	.story_about.right .story_about_inner::before {
		right: 6.5rem;
		left: auto;
		background: url(../img/article/story_about_item_right_sp.png) no-repeat;
	  background-size: 100%;
	}
	.story .text {
		font-size: 2.8rem;
		padding: 0 6rem;
		margin-bottom: 7rem;
	}
	.story_slider {
		padding-bottom: 3rem;
		margin-bottom: 6.5rem;
	}
	.story_slider.orix {
		margin-bottom: 24.5rem;
	}
	.story_slider .caption {
		font-size: 2.8rem;
		margin-top: 3rem;
	}
	.recommend_articles {
		padding: 21rem 0 16rem;
		margin-bottom: 19rem;
	}
	.recommend_articles .heading03 {
		top: 0;
		left: 4.3rem;
	}
	.recommend_articles .heading03 h3 {
		font-size: 3.6rem;
		padding: 3.5rem 4.5rem;
		border: 0.6rem solid #000;
		border-radius: 2.5rem;
	}
	.recommend_articles .heading03 h3::after {
		left: 6rem;
		bottom: -6.8rem;
		width: 11rem;
    height: 7rem;
		background: url(../img/article/story_about_item_left_sp.png) no-repeat;
		background-size: 100%;
	}
	.recommend_slider {
		padding-left: 7rem;
	}
	.recommend_slider .slick-slide {
		padding: 0 2rem;
	}
	.recommend_slider .text_area {
		margin: 0 2rem;
	}
	.recommend_slider .ttl {
		margin-top: -7.5rem;
		margin-bottom: 2rem;
	}
	.recommend_slider .ttl span {
		font-size: 3.2rem;
		padding: 0 1rem;
		margin-bottom: 1rem;
	}
	.recommend_slider .read_more {
		margin-top: 3.5rem;
	}
	.recommend_slider .read_more span {
		font-size: 3.2rem;
		padding-right: 4rem;
		background-size: 2.7rem auto;
	}

}



/*
  = page_company
-------------------------------------------------- */
.company_profile th {
	font-weight: bold;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.company_profile th {
		width: 130px;
		padding: 20px 10px;
	}
	.company_profile td {
		padding: 20px 0;
	}

}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.company_profile th,
	.company_profile td {
		display: block;
	}
	.company_profile th {
		width: 100%;
		padding: 1.5rem 5rem;
	}
	.company_profile td {
		width: 100%;
		padding: 0 5rem;
		margin-bottom: 5rem;
	}

}

/*
  = page_error404
-------------------------------------------------- */
.error404 {
	display: flex;
	align-items: center;
}
.error404 .text_area .msg {
	position: relative;
	border: 0.6rem solid #000;
	border-radius: 1.8rem;
	background: #fff;
	line-height: 2;
}
.error404 .text_area .msg::before {
	content: "";
	position: absolute;
	display: block;
}
.error404 .text_area .msg .big {
	font-weight: bold;
	line-height: 1.2;
}
.page_back {
	text-align: center;
}
.page_back a {
	display: inline-block;
	font-weight: bold;
	background: url(../img/icon_arrow02.png) left center no-repeat;
}

/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.page_error404 .p_inner {
		padding: 0 80px;
	}
	.error404 {
		padding-top: 50px;
	}
	.error404 .img {
		width: 360px;
		margin-right: 30px;
	}
	.error404 .text_area {
		padding-left: 40px;
	}
	.error404 .text_area .msg {
		padding: 30px 20px;
		margin-bottom: 30px;
	}
	.error404 .text_area .msg::before {
		top: 30px;
    left: -50px;
    width: 52px;
    height: 87px;
		background: url(../img/error404_item.png) no-repeat;
		background-size: 100%;
	}
	.error404 .text_area .msg .big {
		font-size: 7.2rem;
		margin-bottom: 20px;
	}
	.error404 .text_area .msg .text {
		font-size: 1.8rem;
	}
	.page_back a {
		font-size: 1.8rem;
		padding-left: 38px;
		background-size: 17px auto;
	}
	.page_back a:hover {
		text-decoration: underline;
	}

}

/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.error404 {
		flex-direction: column;
		padding-top: 5rem;
	}
	.error404 .img {
		order: 2;
		width: 40rem;
		margin: 0 auto;
	}
	.error404 .img img {
		margin-bottom: 6.5rem;
	}
	.error404 .text_area {
		order: 1;
	}
	.error404 .text_area .msg {
		padding: 6rem 5rem;
		margin-bottom: 6rem;
		border: 0.8rem solid #000;
		border-radius: 3rem;
	}
	.error404 .text_area .msg::before {
		bottom: -6.8rem;
    right: 5.6rem;
    width: 11rem;
    height: 7rem;
		background: url(../img/error404_item_sp.png) no-repeat;
		background-size: 100%;
	}
	.error404 .text_area .msg .big {
		font-size: 10.2rem;
		text-align: center;
		margin-bottom: 2rem;
	}
	.error404 .text_area .msg .text {
		font-size: 3.2rem;
	}
	.page_back a {
		font-size: 3.6rem;
		padding-left: 6rem;
		background-size: 3rem auto;
	}

}


/* --------------------------------------------------

  = その他 下層ページ

-------------------------------------------------- */
.p_container,
.p_main_visual,
.p_inner,
.p_header_title {
	position: relative;
}
.p_msg {
	font-weight: bold;
}
.p_msg .p_msg_inner {
	position: relative;
	border: 0.6rem solid #000;
	border-radius: 2rem;
	background: #fff;
}
.p_msg .p_msg_inner::before {
	content: "";
  display: block;
  position: absolute;
}
.p_msg .case {
	display: block;
	font-weight: normal;
}
.p_header_title h1 {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: bold;
	border: 0.4rem solid #000;
	border-radius: 2rem;
	background: #fff;
}
.p_header_title h1::before,
.p_header_title h1::after {
	content: "";
  display: block;
  position: absolute;
}
.p_header_title h1::before {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 60%;
	height: 1px;
	background: #000;
}
.p_header_title h1 span {
	display: inline-block;
	background: #fff;
	z-index: 2;
}
.p_header_title h1 span.en {
	position: relative;
}
.mb0 {
	margin-bottom: 0 !important;
}
.list_indent {
	list-style: none;
}
.page .tools {
	margin-top: 0;
}
.p_container .img {
	text-align: center;
}
.page_download #tools {
	display: none !important;
}
.page_submitted .text {
	line-height: 2;
}
.page_back_btn {
	text-align: center;
}
.page_back_btn a {
	display: inline-block;
	text-align: center;
	font-weight: bold;
	background: #ffd200;
}
.page_policy p {
	line-height: 1.8;
}
.page_policy h2 {
	font-weight: bold;
}
.page_policy p a {
	text-decoration: underline;
}


/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
	.p_container {
		padding-bottom: 150px;
	}
	.p_inner {
		width: 1080px;
		padding: 0 140px;
		margin: 0 auto;
	}
	.p_main_visual {
		position: relative;
		margin-bottom: 200px;
	}
	.p_msg {
		position: absolute;
		bottom: -140px;
		right: 0;
	}
	.p_msg .p_msg_inner {
		min-width: 870px;
		padding: 20px 30px;
	}
	.p_msg .p_msg_inner::before {
		top: -49px;
		right: 60px;
		width: 86px;
		height: 54px;
		background: url(../img/article/p_msg_item.png) no-repeat;
	  background-size: 100%;
	}
	.p_msg .case {
		font-size: 1.4rem;
		margin-bottom: 7px;
	}
	.p_msg .lead {
		font-size: 2.4rem;
		margin-bottom: 7px;
	}
	.p_msg .name {
		font-size: 1.6rem;
	}
	.w60 {
		width: 600px;
		margin: 0 auto;
	}
	.w70 {
		width: 700px;
		margin: 0 auto;
	}
	.w80 {
		width: 800px;
		margin: 0 auto;
	}
	.p_header_title {
		max-width: 1080px;
		padding: 30px 0 70px;
		margin: 0 auto;
	}
	.p_header_title h1 {
		width: 365px;
		font-size: 2.4rem;
		padding: 20px 20px;
		margin-left: 6%;
	}
	.p_header_title h1::after {
		bottom: -39px;
    left: 40px;
    width: 59px;
		height: 40px;
		background: url(../img/header_title_item.png) no-repeat;
	  background-size: 100%;
	}
	.p_header_title h1 span {
		padding: 0 10px;
	}
	.list_indent li {
		text-indent: -15px;
		margin-left: 15px;
		margin-bottom: 10px;
	}
	.page_contact #wrapper {
		margin-bottom: 100px;
	}
	.page_download .p_header_title h1 {
		width: 450px;
	}
	.page_submitted .text {
		margin-bottom: 70px;
	}
	.page_back_btn a {
		font-size: 1.6rem;
		padding: 10px 45px;
		border: 2px solid #000;
		border-radius: 6px;
	}
	.page_back_btn a:hover {
		opacity: 0.8;
	}
	.page_policy .p_header_title h1 {
		width: 530px;
	}
	.page_policy p {
		margin-bottom: 15px;
	}
	.page_policy h2 {
		font-size: 1.8rem;
		margin-bottom: 10px;
	}
	.page_policy .item {
		margin-bottom: 30px;
	}

}
/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {
	.p_container {
		padding-bottom: 12rem;
	}
	.main {
		padding: 0 4rem;
	}
	.p_main_visual {
		margin-bottom: 12.5rem;
	}
	.p_msg {
		padding: 0 4rem;
		margin-top: -6.5rem;
	}
	.p_msg .p_msg_inner {
		padding: 5rem;
		border-radius: 3rem;
	}
	.p_msg .p_msg_inner::before {
		top: -6.8rem;
    right: 6rem;
    width: 12rem;
    height: 7rem;
		background: url(../img/article/p_msg_item_sp.png) no-repeat;
	  background-size: 100%;
	}
	.p_msg .case {
		font-size: 2.8rem;
		margin-bottom: 0.5rem;
	}
	.p_msg .lead {
		font-size: 4.2rem;
		line-height: 1.35;
		margin-bottom: 1rem;
	}
	.p_msg .name {
		font-size: 2.8rem;
	}
	.p_header_title {
		padding: 5rem 4rem;
		margin-bottom: 4rem;
	}
	.p_header_title h1 {
		font-size: 4.8rem;
		padding: 3rem 2.5rem;
		border: 0.6rem solid #000;
    border-radius: 2.7rem;
	}
	.p_header_title h1::after {
		left: 6.5rem;
    bottom: -5.9rem;
    width: 10rem;
    height: 6rem;
		background: url(../img/header_title_item_sp.png) no-repeat;
	  background-size: 100%;
	}
	.p_header_title h1 span {
		padding: 0 1rem;
	}
	.list_indent li {
		text-indent: -2.8rem;
		margin-left: 3rem;
		margin-bottom: 2rem;
	}
	.page_contact #wrapper {
		margin-bottom: 10rem;
	}
	.page_download .p_header_title h1 {
		font-size: 3.8rem;
	}
	.page_submitted .text {
		margin-bottom: 7rem;
	}
	.page_back_btn a {
		font-size: 3.2rem;
		padding: 1.2rem 7rem;
		border: 0.2rem solid #000;
		border-radius: 1rem;
	}
	.page_policy .p_header_title h1 {
		font-size: 2.8rem;
	}
	.page_policy p {
		margin-bottom: 2rem;
	}
	.page_policy h2 {
		font-size: 3.2rem;
		margin-bottom: 2rem;
	}
	.page_policy .item {
		margin-bottom: 5rem;
	}

}


/* --------------------------------------------------

2023-01-06 resources,contact

-------------------------------------------------- */

.form_head {
	margin-bottom: 5px;
	font-weight: bold;
}


/* = PC (768px以上)
----------------------------------------------- */
@media print, screen and (min-width: 768px) {

	.form_container {
		min-width: 1077px;
		padding-bottom: 150px;
	}

	.form_inner {
		width: 1080px;
		padding: 0 140px;
		margin: 0 auto;
	}

}


/* = SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {

	.form_container {
		padding-bottom: 12rem;
	}

}


/* = utility
----------------------------------------------- */

.u_bgc_beige {
	background-color: #F1F1F1;
}

.u_mb0 {
	margin-bottom: 0 !important;
}


/* = utility SP (767px以下)
----------------------------------------------- */
@media screen and (max-width: 767px) {

	.u_mt0-sp {
		margin-top: 0 !important;
		padding-top: 30px !important;
	}

}