@media screen and (max-width: 768px) {
    body {
        width: 100%;
        font-size: 1.4rem;
        overflow-x: hidden;
    }
}

/*コンテンツ幅*/
.wrapper {
    width: 100%;
    min-width: 1200px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
.wrapper {
    min-width: 0;
  }
}

/*背景*/
.wrapper {
    background: url(../img/device_bg.png) center top no-repeat;
    background-size: cover;
    width: 100%;
}

.content {
    width: 1024px;
    margin: 0 auto;
    padding: 230px 0;
}

.device_img_text{
    display: flex;
    width: 100%;
}

.device_color_img{
    width: 465px;
    object-fit: cover;
}

.device_color_img img{
    width: 100%;
    object-fit: cover;
}

.device_color{
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.navyblue{
    color: #1D4984;
}

.pearlpink{
    color: #DBB7C3;
}

.pearlwhite{
    color: #fff;
    text-shadow: 2px 2px 1px rgba(157, 155, 155, 0.77);
}

.gold{
    color: #BD9E85;
}

.mattblack{
    color: #2D2D2D;
}

.device_left,
.device_right{
    margin: 0 auto;
}

.device_title{
    font-size: 4.8rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
}

.device_description{
    color: #1D4984;
    font-size: 3.2rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}


.device_text{
    color: #2d2d2d;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.device_price{
    font-size: 2rem;
    color: #2d2d2d;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.device_btn {
	display: block;
	width: 100%;
    max-width: 18.4rem;
	height: 4rem;
    border: solid #1D4984 1.5px;
    text-align: center;
	color: #1D4984;
    font-size: 2.2rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 500;
	transition: .3s;
}

.device_img{
    width: 100%;
    object-fit: cover;
}

.device_img img{
    width: 100%;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .content {
    width: 90%;
    margin: 0 auto;
    padding: 100px 0;
}

.device_img_text{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.device_color_img{
    width: 100%;
    object-fit: cover;
}

.device_color_img img{
    width: 100%;
    object-fit: cover;
}

.device_color{
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.device_left,
.device_right{
    margin: 0 auto;
    margin-bottom: 30px;
}

.device_title{
    font-size: 4.5rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 48px;
    color: #2d2d2d;
}

.device_description{
    color: #1D4984;
    font-size: 3rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.device_text{
    color: #2d2d2d;
    font-family: "LINE Seed JP", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.device_price{
    font-size: 1.8rem;
    color: #2d2d2d;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.device_btn {
    width: 60%;
	margin: 0 auto;
}

.device_img{
    width: 100%;
    object-fit: cover;
}

.device_img img{
    width: 100%;
    object-fit: cover;
}
}

@media screen and (min-width: 768px) {
	.device_btn:hover {
		background-color: var(--color-navy);
		color: var(--color-white);
	}
}
/*アニメーション*/
.FadeIn{
    opacity: 0;
    transform: translateY(50px);
    transition: 1s;
}
.FadeIn.active{
    opacity: 1;
    transform: translateY(0);
}