@charset "UTF-8";

/*======================================
　　全体設定
=======================================*/

*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
}

html{
    scroll-behavior: smooth;
}

body{
	color: #000;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

div#wrapper{
	width: 100%;
	margin: 0 auto;
}

div#main{
	width: 1520px;
	margin: 0 auto;
}

/*======================================
　　ヘッダー
=======================================*/
header{
	width: 100%;
	height: 265px;
	background-color: #fff;
	border-bottom: 20px solid #d3d3d3;
}

#header_logo{
	display: flex;	
}

#header_logo img{
	width: auto;
	height: 240px;
}

#header_logo h2{
	font-size: 30px;
	font-weight: bold;
	padding-top: 55px;
}

header nav ul{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

header nav ul li{
	margin-left: 50px;
    position: relative;
}

header nav ul li:last-child{
	margin-right: 50px;
}

header nav ul li a{
	width: auto;
	color: #000;
	font-size: 26px;
	display: block;
	margin-top: -25px;
}

header nav ul li a:hover{
	font-weight: bold;
	color: #77f48f;
	-webkit-text-stroke: 1px #303030;
}

header nav ul li a.icon_1:hover{
    cursor: url("../images/icon_01.png") 10 25,auto;
}

header nav ul li a.icon_2:hover{
    cursor: url("../images/icon_02.png") 10 25,auto;
}

header nav ul li a.icon_3:hover{
    cursor: url("../images/icon_03.png") 10 25,auto;
}

header nav ul li a.icon_4:hover{
    cursor: url("../images/icon_04.png") 10 30,auto;
}

header nav ul li .dropdown{
    display: none;
    position: absolute;
    bottom: calc(100%);
    left: -20px;
    padding: 10px 0;
    z-index: 100;
    white-space: nowrap;
}

header nav ul li .dropdown li{
    margin: 0;
}

header nav ul li .dropdown li a{
    padding: 20px 20px;
    font-size: 20px;
    color: #000;
    display: block;
}

header nav ul li .dropdown li a:hover{
    color: #77f48f;
	-webkit-text-stroke: 1px #303030;
}

header nav ul li:hover > a{
    font-weight: bold;
	color: #77f48f;
	-webkit-text-stroke: 1px #303030;
}

header nav ul li:hover .dropdown{
    display: block;
}

/*======================================
　　メインビジュアル
=======================================*/

.slider{
	width: 1520px;
	height: 700px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	background-color: #fff; 
	z-index: 10;
}

.sliders{
	display: flex;
	width: 400%;
	height: 700px;
	animation: slide 18s infinite;
}

.slide{
	width: 100%;
	height: 700px;
	flex-shrink: 0;
}

.slide img{
	width: 1520px;
	height: 100%;
	
}

@keyframes slide{
	0%,25% { transform: translateX(0%); }
	32%,57% { transform: translateX(-100%); }
	64%,90% { transform: translateX(-200%); }
	98%,100% { transform: translateX(-300%); }
}

/*======================================
　　オリジナルを楽しもう
=======================================*/
div#main_text{
	width: 1520px;
	height: 500px;
	padding-top: 100px;
    margin-bottom: 100px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 10;
}

div#main_text ul li dl#content{
	margin-left: 60px;
	position: relative; 
}

div#main_text ul li dl#content dt{
	width: 380px;
	background-color: #fff;
	margin-top: 60px;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	position: absolute;
	top: -80px;
	right: 170px;
}

div#main_text ul li dl#content dd{
	width: auto;
	border: 3px solid #000;
	padding: 40px 20px 15px 20px;
}

div#main_text ul li dl#content dd p{
	font-size: 24px;
	margin-bottom: 24px;
}

div#main_text img{
	width: 615px;
	height: 415px;
	margin: 0 60px 0 70px;
	border: 3px solid #666;
}

/*======================================
　　ご注文からオーダーシャツ作成
=======================================*/
.box_main{
	width: fit-content;
	height: 65px;
	border: 3px solid #000;
    padding-right: 30px;
	margin-bottom: 50px;
	display: flex;
	align-items: center;
}

.box_main h2{
	font-size: 30px;
	border-left: 15px solid #66a6ec;
	padding-left: 20px;
	margin-left: 30px;
}

p.text{
	font-size: 24px;
	margin-bottom: 24px;
}

.button{
	width: fit-content;
	height: 80px;
    padding: 0 30px;
	margin: 96px auto 0 auto;
	border: 3px solid #000;
	background-color: #82f598;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 7px 2px rgba(255,255,255,0.5),inset 0 -9px 4px rgba(0,0,0,0.2);
	filter: drop-shadow(0px 5px 2px rgba(186,186,186,0.7));
	cursor: pointer;
	transition: all 0.2 ease;
}

.button:hover{
	box-shadow: inset 0 5px 2px rgba(255,255,255,0.5),inset 0 -7px 3px rgba(0,0,0,0.4);
	opacity: 0.9;
}

.button:active{
	box-shadow: inset 0 2px 2px rgba(0,0,0,0.5),inset 0 -2px 2px rgba(0,0,0,0.4);
	opacity: 0.85;
}

.button a{
	color: #000;
	font-size: 30px;
	font-weight: bold;
}

/*======================================
　　pick up
=======================================*/
.heading{
	width: 710px;
	margin: 300px auto 0 auto;
	border-bottom: 3px solid #000;
	position: relative;
}

.heading h3,.heading_item h3{
	width: 280px;
	font-size: 48px;
	font-weight: bold;
	background-color: #fff;
	text-align: center;
	position: absolute;
	top: -40px;
	right: 215px;
}

.h3_p{
	font-size: 30px;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 100px;
}

.Tsyatu_sample{
	display: flex;
}

.Tsyatu_sample img{
	margin-right: 60px;
	border: 3px solid #666;
}

.Tsyatu_sample img:hover{
	opacity: 0.6;
}

.Tsyatu_sample p{
	height: 320px;
	font-size: 24px;
	display: flex;
	align-items: center;
}

.top_item{
	width: 490px;
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 60px;
	text-align: center;
}

div#pickup ul{
	display: flex;
	justify-content: space-between;
}

div#pickup ul li dl img{
	max-width: 100%;
	border: 3px solid #666;
}

div#pickup ul li dl img:hover{
	opacity: 0.6;
}

div#pickup ul li dl dt{
	width: 490px;
	font-size: 24px;
	margin-top: 20px;
	text-align: center;
	font-weight: bold;
}

div#pickup ul li dl dd{
	width: 490px;
	font-size: 24px;
	margin-top: 45px;
	margin-bottom: 100px;
}

/*======================================
　　GALLERY
=======================================*/

.gallery{
    margin-top: 100px;
	display: flex;
	justify-content: space-between;
}

.gallery li dl img{
	max-width: 100%;
	border: 3px solid #666;
}

.gallery li dl dt{
	margin-top: 20px;
	font-size: 24px;
}

.gallery li dl dd{
	font-size: 24px;
}

/*======================================
　　フッター
=======================================*/
footer{
	width: 100%;
	margin-top: 300px;
	background-color: #d3d3d3;
}

div#footer_inner{
	width: 1520px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

div#footer_logo{
	display: flex;
}

div#footer_logo img{
	max-width: 100%;
	margin-top: 10px;
}

div#footer_logo p span{
	margin-top: 50px;
	font-size: 30px;
	font-weight: bold;
}

div#footer_logo p{
	font-size: 18px;
	margin-top: 50px;
	margin-left: 10px;
}

.footer_navigasion{
	margin-top: 50px;
}

.footer_navigasion li{
	margin-bottom: 35px;
}

.footer_navigasion a{
	font-size: 24px;
	color: #000;
}

.footer_navigasion a:hover{
	font-weight: bold;
	color: #77f48f;
	-webkit-text-stroke: 1px #303030;
}

div#pagetop{
	position: fixed;
	right: 150px;
	bottom: 80px;
	z-index: 1;
}

div#pagetop:hover{
	opacity: 0.8;
}

p#copyright{
	padding: 100px 0 80px 0;
	font-size: 18px;
	color: #000;
	text-align: center;
}

/*=============================  コンテンツページ  ====================================*/

/*======================================
　　会社概要
=======================================*/

.content_heading{
	width: 710px;
	margin: 200px auto 130px auto;
	border-bottom: 3px solid #000;
	position: relative;
}

.content_heading h3{
	width: 270px;
	font-size: 48px;
	font-weight: bold;
	background-color: #fff;
	text-align: center;
	position: absolute;
	top: -40px;
	right: 215px;
}

.info_box{
    width: 1420px;
    margin: 0 auto;
    padding: 10px 0;
    background-color: #e0e0e0;
}

.info_box2{
    width: 1420px;
    margin: 0 auto;
    padding: 10px 0;
    background-color: #fff;
}

.info_row{
    display: flex;
    justify-content: space-between;
}

.info_row dt{
    padding-left: 100px;
    font-size: 30px;
    font-weight: bold;
}

.info_row dd{
    width: 710px;
    font-size: 30px;
}

div#map{
    width: 1420px;
    height: 600px;
    margin: 0 auto;
}

div#map iframe{
    width: 100%;
    height: 100%;
}

/*======================================
　　特定商取引法に基づく表示
=======================================*/

.content_heading_legal{
    width: 1130px;
	margin: 200px auto 130px auto;
	border-bottom: 3px solid #000;
	position: relative;
}

.content_heading_legal h3{
	width: 700px;
	font-size: 48px;
	font-weight: bold;
	background-color: #fff;
	text-align: center;
	position: absolute;
	top: -40px;
	right: 215px;
}

/*======================================
　　よくある質問
=======================================*/

.content_heading_faq{
    width: 810px;
	margin: 200px auto 130px auto;
	border-bottom: 3px solid #000;
	position: relative;
}

.content_heading_faq h3{
    width: 370px;
	font-size: 48px;
	font-weight: bold;
	background-color: #fff;
	text-align: center;
	position: absolute;
	top: -40px;
	right: 215px;
}

.box{
	width: fit-content;
	height: 65px;
	border: 3px solid #000;
    padding-right: 30px;
	margin: 100px 0 50px 0;
	display: flex;
	align-items: center;
}

.box span.num{
	font-size: 30px;
	color: #66a6ec;
	padding-right: 20px;
	margin-left: 30px;
}

.box h2{
	font-size: 30px;
}

.answer{
    margin-left: 80px;
    font-size: 24px;
}

div#q_a{
    margin-top: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

div#q_a p{
    font-size: 30px;
}

.button_faq{
	width: fit-content;
	height: 80px;
    padding: 0 30px;
	border: 3px solid #000;
    margin-left: 50px;
	background-color: #82f598;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 7px 2px rgba(255,255,255,0.5),inset 0 -9px 4px rgba(0,0,0,0.2);
	filter: drop-shadow(0px 5px 2px rgba(186,186,186,0.7));
	cursor: pointer;
	transition: all 0.2 ease;
}

.button_faq:hover{
	box-shadow: inset 0 5px 2px rgba(255,255,255,0.5),inset 0 -7px 3px rgba(0,0,0,0.4);
	opacity: 0.9;
}

.button_faq:active{
	box-shadow: inset 0 2px 2px rgba(0,0,0,0.5),inset 0 -2px 2px rgba(0,0,0,0.4);
	opacity: 0.85;
}

.button_faq a{
	color: #000;
	font-size: 30px;
	font-weight: bold;
}

/*======================================
　　オーダーシャツ作成の流れ
=======================================*/

dl.step{
    display: flex;
    align-items: flex-start;
}

dl.step dd{
    font-size: 24px;
    margin-left: 50px;
}

.step-button{
    display: flex;
    margin: 100px 0 0 130px;
}

.step ul li{
    font-size: 24px;
    list-style-type: disc;
    margin-left: 24px;
}

/*======================================
　　アイテム
=======================================*/

.heading_item{
	width: 710px;
	margin: 200px auto 0 auto;
	border-bottom: 3px solid #000;
	position: relative;
}

.item{
    display: flex;
}

.item_left{
    width: 760px;
    height: auto;
}

item_left img{
    width: 100%;
}

p.text_high{
    padding-left: 30px;
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: bold;
}

p.text_row{
    padding-left: 30px;
    font-size: 24px;
}

.item_right{
    width: 760px;
    height: auto;
    padding-left: 50px;
}

.item_right dl dt{
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 30px;
}

.item_right dl dd{
    font-size: 24px;
}

.item_right p{
    font-size: 24px;
    font-weight: bold;
    margin-top: 60px;
}

.item_right p span{
    font-size: 48px;
    color: #ff0000;
    padding-left: 35px;
}

/*--- テーブル ---*/

.table-wrap{
    margin-top: 55px;
    border: 5px solid #000;
    border-radius: 15px;
    overflow: hidden;
}

.size-table{
    width: 100%;
    border-collapse: collapse;
}

.size-table caption{
    padding: 5px 0;
    font-size: 24px;
    font-weight: bold;
    background-color: #d3d3d3;
}

.size-table tr{
    font-size: 24px;
    text-align: center;
}

.size-table th{
    padding: 5px 0;
    background-color: #eee275;
    border-width: 5px 1px 1px 0;
    border-style: solid;
    border-color: #000;   
}

.size-table td{
    padding: 5px 0;
    border-width: 0px 1px 1px 0;
    border-style: solid;
    border-color: #000;
}

/*--- 参考価格 ---*/

.reference-price{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
}

.image-price img{
    height: 170px;
    display: block;
    padding: 10px;
    margin: 0 auto;
}

.image-price dl dt{
    padding-top: 20px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.image-price dl dd{
    font-size: 24px;
    text-align: center;
}

.image-price dl dd.empty{
    height: 36px;
    visibility: hidden;
}

dl dd.price{
    padding-top: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #ff0000;
    text-align: center;
    margin-bottom: 54px;
}

.reference-price dl{
    padding-left: 20px;
}

.reference-price dl dt{
    font-size: 30px;
    text-align: center;
}

.reference-price dl dd.totalprice{
    color: #ff0000;
    font-size: 48px;
    font-weight: bold;
}

/*======================================
　　お問い合わせ
=======================================*/

.contact_text{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 100px;
}

.required_field{
    font-size: 24px;
    color: #ff0000;
    margin-bottom: 50px;
}


/*--- formテーブル ---*/

form table{
    width: 1516px;
    border: 2px solid #939393;
    border-collapse: collapse;
    margin-bottom: 100px;
}

.form_table tr{
    height: 85px;
    line-height: 85px;
}

.form_table span{
    font-size: 24px;
    color: #ff0000;
    padding: 0 24px;
}

.form_table th{
    width: 520px;
    background-color: #d0d0d0;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    border-right: 2px solid #939393;
    border-bottom: 2px solid #939393;
}

.form_table tr th.form-th{
    width: 448px;
    padding-left: 72px;
    background-color: #d0d0d0;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    border-right: 2px solid #939393;
    border-bottom: 2px solid #939393;
}


.form_table td.address{
    background-color: #d0d0d0;
    font-size: 24px;
    font-weight: bold;
    text-align: left;
    border-right: 2px solid #939393;
    border-bottom: 2px solid #939393;
}

.form_table td{
    font-size: 24px;
    border-bottom: 2px solid #939393;
    padding-right: 15px;
}

.form_table tr .post-td{
    font-size: 24px;
    border-bottom: 2px solid #939393;
    padding-left: 30px;
}

label.required{
    padding: 0 24px 0 35px;
}

input[type="radio"]{
    margin-right: 15px;
}

input[type="text"]{
    width: 900px;
    height: 60px;
    margin-left: 30px;
    font-size: 24px;
}

input[type="tel"]{
    width: 30%;
    height: 60px;
    margin-left: 30px;
    font-size: 24px;
}

#post-input{
    width: 30%;
    height: 60px;
    margin-left: 30px;
    font-size: 24px;
}

select{
    width: 30%;
    height: 60px;
    margin-left: 30px;
    font-size: 24px;
}

textarea{
    width: 900px;
    height: 265px;
    resize: vertical;
    overflow: auto;
    font-size: 24px;
    margin: 15px 0 0 30px;
}

.button_contact{
	width: fit-content;
	height: 80px;
    padding: 0 125px;
	margin: 96px auto 0 auto;
	border: 3px solid #000;
	background-color: #82f598;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 7px 2px rgba(255,255,255,0.5),inset 0 -9px 4px rgba(0,0,0,0.2);
	filter: drop-shadow(0px 5px 2px rgba(186,186,186,0.7));
	cursor: pointer;
	transition: all 0.2 ease;
}

.button_contact:hover{
	box-shadow: inset 0 5px 2px rgba(255,255,255,0.5),inset 0 -7px 3px rgba(0,0,0,0.4);
	opacity: 0.9;
}

.button_contact:active{
	box-shadow: inset 0 2px 2px rgba(0,0,0,0.5),inset 0 -2px 2px rgba(0,0,0,0.4);
	opacity: 0.85;
}

.button_contact ,.button_contact a{
	color: #000;
	font-size: 30px;
	font-weight: bold;
}

/*======================================
　　サンキューページ
=======================================*/
.thanks{
    width: 1520px;
    height: 100vh;;
	margin: 0 auto;
    background-image: url("../images/ribbon.png");
    background-repeat: no-repeat;
    background-size: cover;
	background-position: cover;
}

.thanks h1{
    padding: 100px 0;
    font-size: 48px;
    text-align: center;
}

.thanks p{
    padding-bottom: 130px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

p.auto{
    font-size: 24px;
    font-weight: normal;
}
