@charset "utf-8";

/*== グラデーションが流れる */

.gradient1{
    /*ボタンの形状*/
    display: inline-block;
    color:#fff;
    padding: 15px 30px;
    border-radius:30px;
    text-decoration: none;
	font-weight: bold;
    outline: none;
    /*背景の色と形状*/
    background: linear-gradient(270deg, rgba(211, 212, 134, 1), rgba(255, 110, 13, 1) 25%, rgba(243, 27, 27, 1) 51%, rgba(199, 25, 7, 1));
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
}

/*hoverした際の、背景の場所とテキスト色の変更*/
.gradient1:hover {
    color: #fff;
    background-position: 99% 50%;
}

.goods {
    display: flex;
	flex-wrap: wrap;
    list-style: none;
}

.goods li {
    padding: 0 10px 0 0;
    margin: 0 10px 10px 0;
}

@media screen and (max-width:840px) {
.goods ul {
    width: 100%;
}
.goods ul li {
    padding: 0;
    margin: 0 10px 10px 0;
}

  
}


/*===========================================================*/
/*  2列の横並び*/
/*===========================================================*/

*, *:before, *:after {
    box-sizing: border-box;
}
.col_2{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.col_2 > *{
    width: calc( 50% - 6px ) ;
    margin-right: 12px;
    margin-bottom: 12px;
}
.col_2 > *:nth-child(2n){
    margin-right: auto;
}
.col_2 > * > *{
    position: relative;
    overflow: hidden;
}
.col_2 span{
	display: inline-block;
}

@media screen and (max-width: 960px) {
    .col_2 > *{
        width: 100%;
        margin-right: auto;
    }

}

/*===========================================================*/
/*  3列の横並び*/
/*===========================================================*/

.col_3{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.col_3 > *{
    width: calc( 33.33333% - 30px ) ;
    margin-right: 40px;
    margin-bottom: 20px;
}
.col_3 > *:nth-child(3n){
    margin-right: auto;
}
.col_3 > * > *{
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 960px) {
    .col_3 > *{
        width: calc( 50% - 20px ) ;
    }
    .col_3 > *:nth-child(3n){
        margin-right: 20px;
    }
    .col_3 > *:nth-child(2n){
        margin-right: auto;
    }
}
@media screen and (max-width: 580px) {
    .col_3 > *{
        width: 100%;
        margin-right: auto;
    }
    .col_3 > *:nth-child(3n){
        margin-right: auto;
    }
}

.col_3 h4 {
  position: relative;
  color: #333;
  text-shadow: 0 0 2px white;
}
.col_3 h4:before {
  content: "";
  position: absolute;
  background: #F3AFB1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: 50%;
  /* border: dashed 1px white; */
  left: -15px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

/*===========================================================*/
/*  4列の横並び*/
/*===========================================================*/


.col_4{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.col_4 > *{
    width: calc( 25% - 9px );
    margin-right: 12px;
    margin-bottom: 12px;
}
.col_4 > *:nth-child(4n){
    margin-right: auto;
}
@media screen and (max-width: 960px) {
    .col_4 > *{
        width: calc( 33.33333% - 8px ) ;
    }
    .col_4 > *:nth-child(4n){
        margin-right: 12px;
    }
    .col_4 > *:nth-child(3n){
        margin-right: auto;
    }
}
@media screen and (max-width: 580px) {
    .col_4 > *{
        width: calc( 50% - 6px ) ;
    }
    .col_4 > *:nth-child(3n){
        margin-right: 12px;
    }
    .col_4 > *:nth-child(2n){
        margin-right: auto;
    }
}

/*===========================================================*/
/*  5列の横並び*/
/*===========================================================*/

.col_5{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.col_5 > *{
    width: calc( 20% - 20px );
    margin-right: 25px;
    margin-bottom: 25px;
}
.col_5 > *:nth-child(5n){
    margin-right: auto;
}
@media screen and (max-width: 960px) {
    .col_5 > *{
        width: calc( 25% - 9px );
        margin-right: 12px;
        margin-bottom: 12px;
    }
    .col_5 > *:nth-child(5n){
        margin-right: 12px;
    }
    .col_5 > *:nth-child(4n){
        margin-right: auto;
    }
}
@media screen and (max-width: 580px) {
    .col_5 > *{
        width: calc( 33.33333% - 8px ) ;
    }
    .col_5 > *:nth-child(5n){
        margin-right: 12px;
    }
    .col_5 > *:nth-child(4n){
        margin-right: 12px;
    }
    .col_5 > *:nth-child(3n){
        margin-right: auto;
    }
}

/*===========================================================*/
/*  トップメッセージ画像並び*/
/*===========================================================*/

.topmessage{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.topmessage_img{
    width:20%;
    margin-right: 25px;
    margin-bottom: 25px;
}
.topmessage_p{
    width:50%;
    margin-bottom: 25px;
    font-family: Times, "Times New Roman", Georgia, serif;
    font-size: 2em;
}
.topmessage_p span {
   display: inline-block;
}

@media screen and (max-width: 960px) {
}
@media screen and (max-width: 580px) {
.topmessage_img{
    width:45%;
}
.topmessage_p{
    width:100%;
    text-align: center;
}
}

.img-box{
	min-height: 120px;
}

.img-box img{
	width: 170px;
	height: auto;
}

.rinen_title{
	text-align: center;
}
.rinen_title img{
	max-width: 300px;
}