@charset "utf-8";

/* *************************************
// 変数定義
************************************* */
:root {
	--main-color: #eb616f;
	--sub-color: #f9afaf;
	--text-color: #000;
	--link-color: #2689d3;
	--black-color: #333333;
	
	--purple-color: #703e67;
}

/* *************************************
// Base
************************************* */
body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-color);
	background-color: #fff;
	overflow-x: hidden;
	scroll-behavior: smooth;
}
b,strong {
	font-weight: 600;
}

p {
	margin-bottom: 0.5em;
}

a {
	color: var(--link-color)
}
img, video {
	max-width: 100%;
	height: auto;
}
pre {
	white-space: pre-wrap;
}

/* *************************************
// 汎用ID・Class
************************************* */
#container {
	max-width: 100%;
}
.wrap {
	width: 96%;
	max-width: 1040px;
	margin: 0 auto;
}
.cf,
.clearfix {
	display: flow-root;
}
/* 旧clearfixの手法(必要があればコメントアウトを外す) */
.cf:after,
.clearfix:after {
	/*content: "";*/
	/*clear: both;*/
	/*display: block;*/
}

/* 行間 */
#content p {
	margin-bottom: 1rem;
}
/* PC・SPの表示 / 非表示 */
@media (width < 768px) {
	.pc_only {
		display: none;
	}
}
@media (width >= 768px) {
	.sp_only {
		display: none;
	}
}
/*電話番号リンク*/
a[href^="tel:"] {
	text-decoration: none;
	color: inherit;
}
@media (width >= 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}
/* テーブル */
@media (width < 768px) {
	table.two_column tbody th,
	table.two_column tbody td {
		display: block;
	}
}
/* 分割 */
.flex,
.two_in_one,
.three_in_one,
.four_in_one,
.five_in_one,
.six_in_one {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.flex.reverse,
.two_in_one.reverse,
.three_in_one.reverse,
.four_in_one.reverse,
.five_in_one.reverse,
.six_in_one.reverse {
	flex-direction: row-reverse;
}
.flex > div,
.two_in_one > div,
.three_in_one > div,
.four_in_one > div,
.five_in_one > div,
.six_in_one > div {
	width: 100%;
}
@media (width >= 768px) {
	/* 2分割 */
	.two_in_one > div {
		width: calc(100% / 2);
	}
	.flex > div:where(:nth-child(1):nth-last-child(2)),
	.flex > div:where(:nth-child(2):nth-last-child(1)) {
		width: calc(100% / 2);
	}
	/* 3分割 */
	.three_in_one > div {
		width: calc(100% / 3);
	}
	.flex > div:where(:nth-child(1):nth-last-child(3)),
	.flex > div:where(:nth-child(2):nth-last-child(2)),
	.flex > div:where(:nth-child(3):nth-last-child(1)) {
		width: calc(100% / 3);
	}
	/* 4分割 */
	.four_in_one > div {
		width: calc(100% / 4);
	}
	.flex > div:where(:nth-child(1):nth-last-child(4)),
	.flex > div:where(:nth-child(2):nth-last-child(3)),
	.flex > div:where(:nth-child(3):nth-last-child(2)),
	.flex > div:where(:nth-child(4):nth-last-child(1)) {
		width: calc(100% / 4);
	}
	/* 5分割 */
	.five_in_one > div {
		width: calc(100% / 5);
	}
	.flex > div:where(:nth-child(1):nth-last-child(5)),
	.flex > div:where(:nth-child(2):nth-last-child(4)),
	.flex > div:where(:nth-child(3):nth-last-child(3)),
	.flex > div:where(:nth-child(4):nth-last-child(2)),
	.flex > div:where(:nth-child(5):nth-last-child(1)) {
		width: calc(100% / 5);
	}
	/* 6分割 */
	.six_in_one > div {
		width: calc(100% / 6);
	}
	.flex > div:where(:nth-child(1):nth-last-child(6)),
	.flex > div:where(:nth-child(2):nth-last-child(5)),
	.flex > div:where(:nth-child(3):nth-last-child(4)),
	.flex > div:where(:nth-child(4):nth-last-child(3)),
	.flex > div:where(:nth-child(5):nth-last-child(2)),
	.flex > div:where(:nth-child(6):nth-last-child(1)) {
		width: calc(100% / 6);
	}
}
/* youtube レスポンシブ */
.youtube_wrap {
	/*position: relative;*/
	/*width: 100%;*/
	/*padding-top: 56.25%;*/
}
.youtube_wrap iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
	/*position: absolute;*/
	/*top: 0;*/
	/*left: 0;*/
	/*width: 100%;*/
	/*height: 100%;*/
}
/* アニメーション用 */
.animation {
	opacity: 0;
}
.animation.animated {
	opacity: 1;
}


.btn {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.btn > a {
	padding: 15px 30px;
	border-radius: 100px;
	display: inline-block;
	background: var(--main-color);
	color: #fff;
	text-decoration: none;
}

.btn > a:after {
	content: "\2192";
	display: inline;
	margin-left: 0.5em;
}

.btn.black > a {
	background: var(--black-color);
}



.bg_graphpaper {
	background-color: #FFF;
	background-image: linear-gradient( transparent 95%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, .05)), linear-gradient( 90deg, transparent 95%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, .05) );
	background-size: 15px 15px;
	background-repeat: repeat;
}



/* *************************************
// header
************************************* */




/* *************************************
// main_visual
************************************* */

#main_visual {}

#main_visual picture img {
	height: 100vh;
	min-height: 600px;
	width: 100%;
	object-fit: cover;
	object-position: bottom center;
	
	position: relative;
	z-index: 0;
	display: block;
}

#main_visual .main_visual_text {
    position: absolute;
    z-index: 1;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
}
#main_visual .main_visual_text img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}


/* *************************************
// products
************************************* */

#products {
	padding-top: 80px;
	padding-bottom: 80px;
}


.products_list {}

.products_list > div {
	justify-content: space-between;
}

.products_list > div:nth-child(even) {
	flex-direction: row-reverse;
}

.products_list > div > div.text {
	width: calc(40% - 20px);
}
.products_list > div > div.image {
	width: calc(60% - 20px);
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

.products_list > div > div.image > img {
	width: 300px;
	height: auto;
}

.products_list > div > div.text .title {
	margin-bottom: 15px;
}
.products_list > div > div.text .title .en {
	color: var(--main-color);
	font-weight: 700;
	font-size: 20px;
}
.products_list > div > div.text .title .jp {
	font-weight: 900;
    font-size: 55px;
    line-height: 1.6;
    letter-spacing: 5px;
}
.products_list > div > div.text .title .jp > span {
	background: var(--main-color);
	color: #fff;
	margin: 0 0.2em 0 0;
	padding: 0 0.2em;
	font-size: 65px;
    letter-spacing: 5px;
}

.products_list > div > div.text .description {
	text-decoration: underline;
	text-decoration-color: var(--main-color);
	text-underline-offset: 5px;
    line-height: 2;
	margin-bottom: 30px;
	font-size: 18px;
}




/* 個別調整 */
.products_list > div.new_item > div.text .title .en {
	margin-bottom: 10px;
}

.products_list > div.new_item > div.image {
	position: relative;
	z-index: 0;
}
.products_list > div.new_item > div.image:before {
	content: "";
	display: block;
	width: 150px;
	height: 150px;
	background-image:url(../images/sakura2.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
    top: -50px;
    right: -70px;
}
.products_list > div.new_item > div.image:after {
	content: "";
	display: block;
	width: 150px;
	height: 150px;
	background-image:url(../images/sakura1.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	bottom: 0;
	right: 0;
}

.products_list > div.new_item > div.image > img:nth-child(1){

}
.products_list > div.new_item > div.image > img:nth-child(2){

}
.products_list > div.new_item > div.image > img:nth-child(3){
	width: 300px;
	margin-right: -50px;
	margin-left: 50px;
}
.products_list > div.new_item > div.image > img:nth-child(4){
	margin-top: -50px;
}

.products_list > div.toys_item {
	margin-bottom: 40px;
}
.products_list > div.toys_item > div.image > img:nth-child(1){
	width: calc(50% - 10px);
	height: auto;
	aspect-ratio: 5 / 4;
	object-fit: cover;

}
.products_list > div.toys_item > div.image > img:nth-child(2){
	width: calc(50% - 10px);
	height: auto;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	margin-top: 30px;
}
.products_list > div.toys_item > div.image > img:nth-child(3){
	width: calc(50% - 10px);
	height: auto;
	margin-top: -15px;
}
.products_list > div.toys_item > div.image > img:nth-child(4){
	width: calc(50% - 10px);
	height: auto;
}

.products_list > div.stationery_item {
	margin-bottom: 40px;
}

.products_list > div.stationery_item > div.text .title .jp {
    font-size: 49px;
    letter-spacing: 0px;
}

.products_list > div.stationery_item > div.image > img:nth-child(1){
	width: calc(50% - 10px);
	height: auto;

}
.products_list > div.stationery_item > div.image > img:nth-child(2){
	width: calc(50% - 10px);
	height: auto;
	margin-top: -20px;
	z-index: 1;

}
.products_list > div.stationery_item > div.image > img:nth-child(3){
	width: calc(50% - 10px);
	height: auto;
}
.products_list > div.stationery_item > div.image > img:nth-child(4){
	width: calc(50% - 10px);
	height: auto;
	z-index: 0;
}

.products_list > div.art_item {
	margin-bottom: 40px;
}
.products_list > div.art_item > div.image > img:nth-child(1){
	width: calc(50% - 10px);
	height: auto;
	aspect-ratio: 5 / 4;
	object-fit: cover;
	margin-top: 20px;


}
.products_list > div.art_item > div.image > img:nth-child(2){
	width: calc(50% - 10px);
	height: auto;
	aspect-ratio: 5 / 4;
	object-fit: cover;


}
.products_list > div.art_item > div.image > img:nth-child(3){
	width: calc(50% - 10px);
	height: auto;
	aspect-ratio: 5 / 4;
	object-fit: cover;
    margin-top: 40px;
}
.products_list > div.art_item > div.image > img:nth-child(4){
	width: calc(50% - 10px);
	height: auto;
}

.products_list > div.luxury_item > div.text,
.products_list > div.luxury_item > div.image {
	width: calc(50% - 20px);
}

.products_list > div.luxury_item > div.image > img:nth-child(1){
	width: 100%;
	height: auto;
}

.products_list > div.luxury_item > div.image > img:nth-child(2),
.products_list > div.luxury_item > div.image > img:nth-child(3),
.products_list > div.luxury_item > div.image > img:nth-child(4){
	display:none;
}


/* *************************************
// campaign
************************************* */

#campaign {
	background: var(--main-color);
	padding-top: 50px;
	padding-bottom: 50px;
}

#campaign .title {
	display: table;
	margin-left: auto;
	margin-right: auto;
	color: #fff;
	text-align: center;
	font-weight: 700;
	margin-bottom: 40px;
}
#campaign .title .en {
	font-size: 60px;
}
#campaign .title .jp {
	font-size: 30px;
}

#campaign .three_in_one {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	align-items: center;
}

#campaign .three_in_one > div {
	padding: 0 15px;
}
#campaign .three_in_one > div img {
	width: 100%;

}


@media (max-width: 767px) {

	#campaign .three_in_one > div {
		margin-bottom: 10px;
	}

}

/* *************************************
// 万年筆
************************************* */

#fountain_pen {
	padding-top: 80px;
	padding-bottom: 80px;
	position: relative;
	z-index: 0;
}
#fountain_pen:before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background-image:url(../images/bg_purple.webp);
	background-size: cover;
	background-position: center;
	opacity: 0.4;

}


.fountain_pen_box {
	display: grid;
	grid-template-columns: calc(40% - 20px) 40px calc(60% - 20px);
	grid-template-rows: auto auto auto auto;
}

.fountain_pen_box > .title {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}
.fountain_pen_box .image {
    grid-column: 1 / 2;
    grid-row: 1 / 5;
}
.fountain_pen_box > .description {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}
.fountain_pen_box > .ink {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
}
.fountain_pen_box > .btn {
    grid-column: 3 / 4;
    grid-row: 4 / 5;
}

.fountain_pen_box .wari {
	border: 1px solid #000;
	background: #fff;
    display: inline-block;
    padding: 0 10px;
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 767px) {
	.fountain_pen_box .wari {
		position: static;
	}

}

.fountain_pen_box > .title {
	font-family: "Noto Serif JP", serif;
	margin-bottom: 20px;
	position: relative;
}
.fountain_pen_box > .title h2 {
	font-weight: 600;
	color: var(--text-color);
	font-size: 30px;
	margin-bottom: 5px;
}
.fountain_pen_box > .title .product {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.fountain_pen_box > .title .product .name {
	color: #fff;
	background: var(--purple-color);
	font-size: 40px;
	line-height: 1.5;
}
.fountain_pen_box > .title .product .comment {
	color: var(--purple-color);
    font-size: 18px;
	line-height: 1.5;
}
.fountain_pen_box > .title .product .price {
	color: var(--text-color);
	font-size: 35px;
}
.fountain_pen_box > .title .product .price .yen {
	font-size: 70%;
	margin-left: 0.5em;
}


.fountain_pen_box > .image > img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 15px;
}


.fountain_pen_box > .description {
	font-family: "Noto Serif JP", serif;
	position: relative;
	z-index: 0;
	font-size: 14px;
	padding: 20px;
	margin-bottom: 20px;
}
.fountain_pen_box > .description:before {
	content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #e800d2;
    opacity: 0.04;
	border-radius: 15px;
}

.fountain_pen_box > .description p:last-child {
	margin-bottom: 0;
}


.fountain_pen_box > .ink {
}
.fountain_pen_box > .ink .title {
	font-family: "Noto Serif JP", serif;
	display: flex;
	justify-content: center;
	border: 1px solid var(--purple-color);
	color: var(--purple-color);
	border-radius: 100px;
	margin-bottom: 20px;
	font-size: 18px;
}
.fountain_pen_box > .ink .title > * {
	margin: 0 5px;
}
.fountain_pen_box > .ink .title .price .yen {
	font-size: 70%;
	margin-left: 5px;
}


.fountain_pen_box > .ink .three_in_one {
	justify-content: space-between;
}
.fountain_pen_box > .ink .three_in_one > div.item {
	width: calc(33.3333% - 15px);
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	margin-bottom: 20px;
}
.fountain_pen_box > .ink .item h4 {
	text-align: center;
	color: #fff;
	line-height: 1.5;
	padding: 5px;
	font-size: 15px;
	font-weight: 600;
}

.fountain_pen_box > .ink .item.gray h4 {
	background: #64656f;
}
.fountain_pen_box > .ink .item.green h4 {
	background: #4b6931;
}
.fountain_pen_box > .ink .item.brown h4 {
	background: #6a472a;
}

.fountain_pen_box > .ink .item .image > img {
	display: block;
	width: auto;
	max-width: 90%;
	margin: 0 auto;
}

.fountain_pen_box > .btn {
	justify-content: flex-start;
}

/* *************************************
// shop
************************************* */

#shop_info {
	padding-top:50px;
	padding-bottom:50px;
}

#shop_info .title{
	text-align: center;
	font-weight: bold;
	margin-bottom: 50px;
}
#shop_info .title .jp{
	font-size: 20px;
}
#shop_info .title .en{
	color : var(--main-color);
	font-size: 40px;
	
}


.shop_list {

}
.shop_list > div.white_box {
	padding: 20px;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.3);
	margin-bottom: 40px;
	border-radius: 15px;
}

.shop_list > div.white_box .text {
	width: 60%;
}

.shop_list > div.white_box .text .shop_name {
	display:flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.shop_list > div.white_box .text .shop_name .name {
	border-bottom: 1px solid #000;
	font-size: 28px;
	font-weight:700;
	margin-right: 1em;
	padding-left: 1.5em;
	background-image: url(../images/yotsuba_logo.svg);
	background-repeat: no-repeat;
	background-size: 35px;
	background-position: center left;
}

.shop_list > div.white_box .text .shop_name .sns {
	display: flex;
	align-items: center;
	margin-top: 10px;
}
.shop_list > div.white_box .text .shop_name .sns > a {
	margin: 0 5px;
}
.shop_list > div.white_box .text .shop_name .sns .icon_x {
	background: #000;
	padding: 5px;
	border-radius: 5px;
}

.shop_list > div.white_box .text .shop_name .sns img {
	display: block;
	width: 35px;
	height: 35px;
	object-fit: contain;
}

.shop_list > div.white_box .text .info p {
	margin-bottom: 1em;
}


.shop_list > div.white_box .image {
	width: 40%;
}

.shop_list > div.white_box .image img {
	width: 100%;
}


/* *************************************
// onlineshop
************************************* */

#online_shop {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
	position: relative;
	z-index: 0;
	background-image: url(../images/bottom_bg.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
#online_shop:before {
	content: "";
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.3;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

#online_shop .title{
	text-align: center;
	font-weight: bold;
	margin-bottom: 50px;
}
#online_shop .title .jp{
	font-size: 20px;
	color: #fff;
}
#online_shop .title .en{
	color : #fff;
	font-size: 40px;
	
}

#online_shop  .fukidashi {
    position: relative;
    color: #fff;
    display: table;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    padding: 0 20px;
}

#online_shop  .fukidashi:before {
	content: "";
	display: block;
	width: 1px;
	height: 3em;
	background: #fff;
    position: absolute;
    bottom: 0px;
    left: 0px;
    transform: rotate(-25deg);
}
#online_shop  .fukidashi:after {
	content: "";
	display: block;
	width: 1px;
	height: 3em;
	background: #fff;
    position: absolute;
    bottom: 0px;
    right: 0px;
    transform: rotate(25deg);
}


#online_shop .btn {
	margin-top: 40px;
}

#online_shop .note {
	background: #fff;
	padding: 0 5px;
	display: table;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	font-size: 15px;
}

/* *************************************
// footer
************************************* */


footer .copyright {
    margin: 0;
    padding: 0.4rem;
    text-align: center;
    font-size: 0.8rem;
    background: #000;
    color: #fff;
}




/* *************************************
// top_text
************************************* */

#top_text {
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
	font-size: min(1.5vw, 24px);
    font-weight: bold;
}



@media (max-width: 767px) {

	#top_text {
		font-size: 18px;
	}
}


@media (max-width: 767px) {

    .products_list > div {
        margin-bottom: 50px;
        padding-bottom: 80px;
        position: relative;
    }

    .products_list > div .btn {
	    position: absolute;
	    bottom: 0;
	    left: 0;
	    right: 0;
    }
    
    .products_list > div.luxury_item > div.image > img:nth-child(1) {
    	margin-top: 0;
    }

    .products_list > div > div.text .description {
    	text-align: center;
    	font-size: 16px;
    }

	#fountain_pen .fountain_pen_box > .title .product {
		display: block;
	}
	#fountain_pen .fountain_pen_box > .title .product .name {
    	aspect-ratio: auto;
	}
	#fountain_pen .fountain_pen_box > .title .product .comment {
		margin-top: 10px;
		justify-content: center;
		text-align: center;
	}
}

