@charset "utf-8";






h3 {
    text-align: center;
    font-size: 3em;
	font-family: "Times New Roman", Times, Georgia, serif;
    margin: 1em auto;
}





.section {
    display: inline-block;
    width: 100%;
    padding: 64px 0;
}


#style1 {
	background-color: #e6ffe9;
}
#style2 {
	background-color: #fff6f6;
}
#style3 {
	background-color: #fff06d;
}
#style4 {
	background-color: #c4c4ff;
}
#style5 {
	background-color: #d3e0d7;
}



.intro {
    padding-bottom: 100px;
}


.intro_text {
    width: 80%;
    max-width: 720px;
    margin: auto;
    font-size: 1.3rem;
	font-family: "Times New Roman", Times, Georgia, serif;
    line-height: 2.4;
    letter-spacing: 1px;
    text-align: justify;
}




.title-area {
    width: 640px;
    margin: auto;
    text-align: center;
    font-size: 3rem;
}


.section-number {
    font-size: 1.8rem;
}


.heading {
    line-height: 1.2;
}


.box1 {
	width: 720px;
	margin: auto;
}


.box2 {
	width: 720px;
}
.main-image {
	display: flex;
	margin: 100px auto;
}
.main-image-comment {
    line-height: 1.2;
    letter-spacing: 1px;
    font-family: serif;
    font-size: 1rem;
    writing-mode: vertical-rl;
    margin: 24px 0 0 12px;
}

.main-image-inner {
    display: flex;
}

.w80 {
	width: 80%;
	margin: 0 10%;
}
.w90 {
	width: 90%;
	margin: 0 5%;
}

.day2 {
    text-align: center;
    margin: 0 auto -30px;
    font-family: "Times New Roman", Times, Georgia, serif;
    font-size: 3em;
    letter-spacing: 0.1em;
}

.description {
    width: 80%;
    max-width: 600px;
    margin: auto;
    padding: 12px;
    font-family: "Times New Roman", Times, Georgia, serif;
    font-size: 1.1rem;
    line-height: 2;
    border-top: solid 1px;
    border-bottom: solid 1px;
}


/*----------------アイテムリスト----------------*/



.c-creditBox {
	width: 540px;
	margin: 64px auto;
}
.creditList_node {
	margin-bottom: 1rem;
}
.creditList_day2 {
	max-width: calc( 100% - 80px);
	font-family: "Times New Roman", Times, Georgia, serif;
	font-style: italic;
	letter-spacing: .08em;
	line-height: 1.3;
	font-size: 14px;
}
.creditList_spec {
	max-width: calc( 100% - 80px);
	font-family: "Times New Roman", Times, Georgia, serif;
	font-style: italic;
	letter-spacing: .08em;
	line-height: 1.3;
	font-size: 12px;
	color: #555;
}
.creditList_spec_tax {
	font-size: 10px;
}
.creditList_spec_brand {
	margin-left: 5px;
	padding-left: 8px;
	border-left: 1px solid #555;
}
.creditList_node a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.creditList_bd {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin: 0 8px;
	height: 1px;
	background-color: #878787;
}
.creditList_button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 17px;
	font-size: 10px;
	color: #fff;
	font-family: "Times New Roman", Times, Georgia, serif;
	font-style: italic;
	letter-spacing: .12em;
	line-height: 1;
	background-color: #1A1A1A;
}
.creditList_day2 {
	max-width: calc( 100% - 80px);
	font-family: "Times New Roman", Times, Georgia, serif;
	font-style: italic;
	letter-spacing: .08em;
	line-height: 1.3;
	font-size: 14px;
}




  @media (max-width:740px) {


.main-image {
    display: block;
    margin: 40px auto;
}

.main-image-inner {
    display: block;
}


h3 {
    text-align: center;
    font-size: 2em;
    font-family: "Times New Roman", Times, Georgia, serif;
    margin: 1em auto;
    font-weight: 600;
}


.intro_text {
    font-size: 1rem;
    line-height: 2;
}


.title-area {
    width: 90%;
    margin: auto;
    text-align: center;
    font-size: 1rem;
}


.day2 {
    font-size: 1.4rem;
}

.box1 {
    width: 100%;
    margin: auto;
}

.box2 {
    width: 100%;
}

.main-image-comment {
    line-height: 1.8;
    letter-spacing: 0.5px;
    font-family: serif;
    font-size: 0.9rem;
    writing-mode: inherit;
    margin: 12px 0 0 12px;
}

.description {
    width: 80%;
    max-width: 600px;
    margin: auto;
    font-family: "Times New Roman", Times, Georgia, serif;
    font-size: 1rem;
    line-height: 2;
    border-top: solid 1px;
    border-bottom: solid 1px;
    padding: 10px;
}


.c-creditBox {
    width: 80%;
    margin: 64px auto;
}

  /*  スマホ用  */  
  }








/* 画像アニメーション*/
/*==================================================
フェードイン
===================================*/


/* その場で */
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeInAnime {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* 下から */

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
from {
opacity: 0;
transform: translateY(100px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* 上から */

.fadeDown {
	animation-name: fadeDownAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeDownAnime {
from {
opacity: 0;
transform: translateY(-100px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* 左から */

.fadeLeft {
	animation-name: fadeLeftAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeLeftAnime {
from {
opacity: 0;
transform: translateX(-100px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
/* 右から */

.fadeRight {
	animation-name: fadeRightAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeRightAnime {
from {
opacity: 0;
transform: translateX(100px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger, .fadeUpTrigger, .fadeDownTrigger, .fadeLeftTrigger, .fadeRightTrigger {
	opacity: 0;
}


/* 拡大 */
.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
@keyframes zoomInAnime {
from {
transform: scale(0.75);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
/* 縮小 */
.zoomOut {
	animation-name: zoomOutAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
@keyframes zoomOutAnime {
from {
transform: scale(1.2);
opacity: 0;
}
to {
transform:scale(1);
opacity: 1;
}
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.zoomInTrigger, .zoomOutTrigger {
	opacity: 0;
}






/* fadeIn */
.fadeIn_op{
animation-name: fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime_op{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


footer {
	margin-top: 0!important;
}