@charset "UTF-8";


.fluffy {
  animation: fluffy 3s infinite;
}

@keyframes fluffy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

section.page_header {
    padding: 120px 0 80px;
    text-align: center;
    border-bottom: 1px solid #eee;
    background-image: url("../img/home/fv_bg_head.svg"), url("../img/home/fv_bg_bottom.svg");
    background-position: left top, right bottom;
    background-size: 50%, 75%;
    background-repeat: no-repeat, no-repeat;
}

section.page_header h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

.contents_inner {
    max-width: 1100px;
    padding: 100px 0;
    margin: 0 auto;
}

ul.casestudy_list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

ul.casestudy_list li a {
    display: block;
    color: #000;
}

.casestudy_image {
    width: 100%;
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    background: #eee;
    border-radius: 8px;
    transition: all 0.2s ease-in-out 0s;
    aspect-ratio: 15 / 10;
    display: flex;
}

.casestudy_image img {
    width: 100%;
    height: auto;
    transition: all 0.2s ease-in-out 0s;
    object-fit: cover;
    object-position: center;
}

ul.casestudy_list li {
    width: 31%;
    margin: 0 1% 4%;
}

ul.casestudy_list li:hover .casestudy_image img {
	transform: scale(1.05);
	opacity: 0.5;
}

ul.casestudy_list li:hover .casestudy_info {
	opacity: 0.5;
}

.casestudy_logo {
    width: 45%;
    background: #fff;
    position: absolute;
    padding: 12px;
    border-radius: 5px;
    right: 10px;
    bottom: 10px;
}

.casestudy_info {
    transition: all 0.2s ease-in-out 0s;
    padding: 0 5%;
}

.casestudy_info h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.casestudy_cap {
    font-size: 1.2rem;
    line-height: 19px;
    font-weight: 300;
    color: #666;
    margin-top: 10px;
}

.casestudy_note {
    display: flex;
    align-items: center;
    margin: 5px 0;
    font-size: 1.3rem;
}

.casestudy_note span {
    font-size: 1.2rem;
    padding: 1px 10px;
    border: 1px solid;
    margin-right: 5px;
    width: 75px;
    text-align: center;
}

a.more_btn {
    display: block;
    text-align: center;
    padding: 15px 60px;
    width: max-content;
    margin: 0 auto;
    border-radius: 100px;
    font-weight: 800;
    background: rgb(228, 0, 127);
	border: 1px solid rgb(228, 0, 127);
    color: #fff;
    transition: all 0.2s ease-in-out 0s;
}

a.more_btn:hover {
	color: rgb(228, 0, 127);
	background: #fff;
}

section.page_header h1 span {
    display: block;
    font-size: 2.4rem;
    margin-top: 20px;
}

.detail_head {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 16px;
    align-items: center;
}

.detail_info {
    width: 51%;
    padding-right: 20px;
}

.detail_logo {
    margin-bottom: 30px;
    width: 200px;
}

.detail_logo img {
    width: 100%;
    height: auto;
}

.detail_thumb {
    border-radius: 10px;
    overflow: hidden;
    width: 44%;
}
.detail_thumb img {
	height: auto;
}

.detail_note {
    font-size: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.detail_note span {
    font-size: 1.5rem;
    width: 100px;
    text-align: center;
    padding: 4px 0;
    background: #fff;
    margin-right: 12px;
    border-radius: 4px;
}

.detail_info_cap {
    font-size: 1.5rem;
    line-height: 26px;
    font-weight: 400;
    margin-top: 25px;
    border-left: 1px solid;
    padding-left: 15px;
}

.detail_main_area {
    max-width: 900px;
    margin: 60px auto;
}

.detail_main_area h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-top: 60px;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.detail_text {
    line-height: 28px;
    font-size: 1.5rem;
    margin: 40px 0;
    padding: 0 3%;
}
.detail_slider_area img {
	height: auto;
}
.detail_text a {
    font-weight: 700;
    color: #E4007F;
}

.detail_main_area h3 {
    font-size: 2.2rem;
    font-weight: 700;
    border-left: 2px solid #E4007F;
    padding-left: 10px;
    margin-top: 60px;
}

ul.detail_list {
    margin: 40px auto;
    background: #f9f9f9;
    padding: 30px 50px;
    border-radius: 10px;
    width: 96%;
}

ul.detail_list li {
    border-bottom: 1px dashed #ddd;
    padding: 18px 0;
    line-height: 22px;
}

ul.detail_list li:first-child {
    padding: 0 0 18px;
}

ul.detail_list li:last-child {
    border: none;
    padding-bottom: 0;
}

ul.detail_list li a {
    color: #E4007F;
    font-weight: 600;
}

.detail_text strong, .detail_text a, .detail_text u {
    font-size: 1.5rem;
}

.swiper-slide img {
    border-radius: 10px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff!important;
}

span.swiper-pagination-bullet {
    border: 1px solid #000;
}

.detail_image_cap {
    font-size: 1.3rem;
    line-height: 21px;
    margin: 14px 0;
    font-weight: 300;
    padding: 0 5%;
}

.detail_image img {
    border-radius: 10px;
    margin: 0 auto;
    max-width: 100%;
}

.detail_image {
    margin: 40px 0;
    padding: 0 3%;
}
.detail_image img {
	height: auto;
}
.detail_youtube {
    margin: 0 auto;
    width: max-content;
    border-radius: 10px;
    overflow: hidden;
}

ul.cta_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul.cta_btn li {
    width: 49%;
}

ul.cta_btn li a {
    display: flex;
    text-align: center;
    font-size: 2rem;
    border-radius: 100px;
    justify-content: center;
    padding: 25px 0;
    align-items: center;
	border: 1px solid #E4007F;
    font-weight: 700;
    transition: all 0.2s ease-in-out 0s;
}

ul.cta_btn li a:hover {
	color: #E4007F;
	border: 1px solid #E4007F;
	background: #fff;
}

ul.cta_btn li a:hover {
	
}

a.cta_panf:after {
    display: block;
    content: "3分でわかる";
    position: absolute;
    background: #fff;
    color: #E4007F;
    padding: 5px 0;
    border-radius: 100px;
    top: -21px;
    left: 50%;
    margin-left: -22%;
    width: 44%;
    font-size: 1.5rem;
    box-shadow: 0 4px 7px rgba(0,0,0,0.1);
}

a.cta_panf:before {
    background: #fff;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 50%;
    bottom: 65px;
    margin-left: -4px;
    transform: rotate(45deg);
    border-radius: 1px;
    z-index: 99;
}

.cta_inner {
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 80px auto;
}

a.cta_panf {
    background: #E4007F;
    color: #fff;
	position: relative;
}

a.cta_contact {
    background: #fff5fb;
    color: #E4007F;
}

a.cta_panf img {
    width: 30px;
    filter: invert(100%) sepia(0%) saturate(7479%) hue-rotate(154deg) brightness(111%) contrast(100%);
    margin-right: 8px;
}

a.cta_contact img {
    width: 30px;
    margin-right: 10px;
	filter: invert(19%) sepia(65%) saturate(5908%) hue-rotate(314deg) brightness(84%) contrast(115%);
}
/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	
section.page_header {
    padding: 80px 0 30px;
}

section.page_header h1 {
    font-size: 2.4rem;
}

.detail_head {
    display: block;
    border-radius: 0;
}

.detail_thumb {
    width: 100%;
    margin-bottom: 20px;
}

.detail_info {
    width: 90%;
    margin: 0 auto;
    padding: 0;
}

.detail_note {
    font-size: 1.3rem;
    margin: 5px 0;
}

.detail_note span {
    font-size: 1.3rem;
    width: 80px;
}

.detail_info_cap {
    font-size: 1.2rem;
    line-height: 20px;
    border: none;
    width: 100%;
    padding: 0;
    margin-top: 15px;
}

.detail_logo {
    margin: 0 auto 20px;
    width: 150px;
}

section.page_header h1 span {
    font-size: 1.6rem;
    margin-top: 8px;
}

.detail_thumb_large {
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
}

.contents_inner {
    padding: 0 0 50px;
}

.detail_main_area {
    padding: 0 5%;
    margin: 30px 0;
}

.detail_main_area h2 {
    font-size: 1.8rem;
    line-height: 30px;
    margin-top: 30px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.detail_text {
    font-size: 1.2rem;
    line-height: 21px;
    margin: 20px 0;
    padding: 0;
}

.detail_main_area h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    padding-left: 7px;
    line-height: 26px;
}

ul.detail_list {
    padding: 20px;
    margin: 20px auto;
    border-radius: 8px;
}

ul.detail_list li {
    font-size: 1.2rem;
    line-height: 18px;
    padding: 12px 0;
}

ul.detail_list li a, ul.detail_list li u, ul.detail_list li strong {
    font-size: 1.2rem;
}

ul.detail_list li:first-child {
    padding: 0 0 12px;
}

.detail_image {
    margin: 20px 0;
}

.detail_image_cap {
    font-size: 1.1rem;
    line-height: 17px;
    padding: 0 3%;
    margin: 10px 0;
}

.detail_youtube iframe {
    width: 100%;
    height: 200px;
}

.casestudy_inner h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.casestudy_inner {
    padding: 0 5%;
}

ul.casestudy_list {
    display: block;
    width: 90%;
    margin: 0 auto 30px;
}

ul.casestudy_list li {
    width: 100%;
}

.casestudy_info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    line-height: 24px;
}

.casestudy_cap {
    font-size: 1.1rem;
    line-height: 17px;
}

.casestudy_note {
    font-size: 1.2rem;
}

.casestudy_note span {
    font-size: 1.1rem;
}

.casestudy_info {
    padding: 0 4%;
}

ul.casestudy_list li a {
    margin-bottom: 24px;
}
a.more_btn {
    font-size: 1.3rem;
    padding: 12px 40px;
}

.cta_inner {
    margin: 30px auto;
    width: 90%;
    border-radius: 20px;
    display: block;
}

ul.cta_btn li a {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    padding: 15px;
}

ul.cta_btn li {
    width: 100%;
    display: block;
}

ul.cta_btn {
    display: block;
}

a.cta_panf {
    margin-bottom: 10px;
}

a.cta_panf:after {
    font-size: 1.3rem;
}

a.cta_panf:before {
    bottom: 49px;
}

a.cta_panf img {
    width: 24px;
}

a.cta_contact img {
    width: 24px;
}
}
