@charset "utf-8";
/*
再利用可能な全てのオブジェクトを記述します。
All objects that are reusable will be written.

接頭辞はComponentの頭文字を取って【c_】とします。
Prefix will take the "Component" first letter and use it as "c_".

ここで指定するのは以下の様なものと予想されます。
You might use the following.
.c_btn/.c_breadclumb/.c_hero/.c_serch/.c_dropdown/
.c_card/.c_feature/.c_overlay/.c_form/.c_thumbnail/.c_box

モディファイヤを使用する場合は接頭辞【is_】をつけ、各コンポーネントの下に記述します。
When using modifier put the prefix "is_" and write it under each component.

フォントサイズはremで指定します。
"rem" will be used for font-size.

//sample
.c_btn {
	display: inline-block;
	padding: 15px 20px;
	border-radius: 5px;
	text-decoration: none;
}
.c_btn:hover { opacity: 0.8; }
.c_btn.is_btn_disable { cursor: inherit; }
.c_btn.is_btn_blue{
	color: rgb(255, 255, 255);
	background: rgb(1, 153, 224) none repeat scroll 0% 0%;
}

*/
/*----------------------------------------------
	.class name
---------------------------------------------*/


/*----------------------------------------------
  .c_contact_footer
---------------------------------------------*/

 .c_contact_footer .c_footer_ttl {
  margin-bottom:10px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
 .c_contact_footer .c_footer_ttl:after {
  border-top: 1px solid #808080;
  content: "";
  flex-grow: 0.95;
}
 .c_contact_footer .c_footer_ttl:before {
  margin-right: 10px; /* 文字の右隣 */
}
.c_contact_footer .c_footer_ttl a {
  text-decoration: none;
  color: #fff;
}
.c_contact_footer .c_footer_ttl a:hover {
  opacity: 0.6;
}

.c_contact_footer .c_contact_details {
	font-size: 1.4rem;
	line-height: 1.5;
}
.c_contact_footer.is_row {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  flex-flow: column;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
}
.c_footer_menu ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
  list-style: none;
  color: #B3B3B3;
}
.c_footer_menu ul li:before {
    content: "-";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 7px;
  }
.c_footer_menu ul li a {
  color: #cdcdcd;
  text-decoration: none; 
}
.c_footer_menu ul li a:hover {
  opacity: 0.6;
}

.c_footer_submenu {
  display: flex;
}
.c_footer_submenu p {
  margin-right: 3rem;
  font-size: 1.4rem;
}
.c_footer_submenu a {
  color: #fff;
  text-decoration: none;
}
.c_footer_submenu a:hover {
  opacity: 0.6;
}

/*----------------------------------------------
  	.c_ttl_type00
  ---------------------------------------------*/
.c_ttl_type00 {
  font-size: 17rem;
  font-weight: bold;
  text-align: center;
}
.c_ttl_type00_sub {
	font-size: 4rem;
	font-weight: bold;
  text-align: center;
}

.c_ttl_type00 span {
	font-size: 7rem;
}



/*----------------------------------------------
  	.c_ttl_type01
  ---------------------------------------------*/
.c_ttl_type01 {
  font-size: 7rem;
  font-weight: bold;
}
.c_ttl_type01_sub {
	font-size: 1.6rem;
	font-weight: bold;
}


/*----------------------------------------------
    .c_ttl_type02
---------------------------------------------*/
.c_ttl_type02 {
  font-size: 5rem;
  font-weight: bold;
  color: #333;
	padding: 8px 15px;
  text-align: center;
}


/*----------------------------------------------
    .c_ttl_type03
---------------------------------------------*/
.c_ttl_type03 {
  font-size: 2.6rem;
  font-weight: bold;
  color: #333;
  padding: 5px 15px;
  position: relative;
  border-bottom: 1px solid #333;
}
.c_ttl_type03::before {
  content: "";
  height: 100%;
  width: 5px;
  position: absolute;
  background: #333;
  background-size: contain;
  top: 0;
  bottom: 0;
	left: 0;
  margin: auto 0;
}

/*----------------------------------------------
    .c_ttl_type04
---------------------------------------------*/
.c_ttl_type04 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  position: relative;
}

/*----------------------------------------------
    .c_ttl_type05
---------------------------------------------*/
.c_ttl_type05 {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
  position: relative;
}


/*----------------------------------------------
  	.c_kome_type01
---------------------------------------------*/
.c_kome_type01 {
  text-indent: -1em;
  padding-left: 1em;
}

/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.c_table_type01 {
  width: 100%;
  table-layout: fixed;
word-break: break-all;
word-wrap: break-all;
}

.c_table_type01 thead th {
  background: #909090;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.c_table_type01 th {
  font-weight: normal;
  white-space: nowrap;
  color: #333;
  background: #F1F1F1;
}

.c_table_type01 th,
.c_table_type01 td {
  text-align: center;
  padding: 10px;
  border: 1px solid #848484;
  vertical-align: middle;
}

/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 {
  width: 100%;
  border-bottom: 2px solid #848484;
  border-top: 2px solid #848484;
  table-layout: fixed;
word-break: break-all;
word-wrap: break-all;
}

.c_table_type02 th {
  font-weight: bold;
  white-space: nowrap;
  color: #333;
  text-align: left;
  width: 30%;
}
.c_table_type02 td {
  text-align: left;
  width: 60%;
}

.c_table_type02 th,
.c_table_type02 td {
  padding: 10px;
  border-bottom: 1px solid #848484;
  vertical-align: middle;
}

/* FOR COLORED LIST TYPE */

/*----------------------------------------------
	.c_btn_type01
---------------------------------------------*/
.c_btn_type01 {
  text-align: center;
  display: inline-block;
  padding: 16px;
  min-width: 240px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #108968;
  border-radius: 100px;
  height: 55px;
  font-size: 1.6rem;
   transition: 0.5s;
}
a.c_btn_type01:hover {
  opacity: 0.7;
}

.c_btn_type01::after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.6em;   /* arrow size */
  height: 0.6em;  /* arrow size */
  border-top: 1px solid #fff;  /* thickness, color */
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.is_w250 { width: 250px; }
.is_w280 { width: 280px; }
.is_w320 { width: 320px; }
.is_w400 { width: 400px; }


/*----------------------------------------------
	.c_btn_type02
---------------------------------------------*/
.c_btn_type02 {
  text-align: center;
  display: inline-block;
  padding: 16px;
  min-width: 240px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #555555;
  border-radius: 5px;
  font-weight: bold;
  height: 55px;
  font-size: 1.8rem;
   transition: 0.5s;
}
a.c_btn_type02:hover {
  background: #aaa;
}

.c_btn_type02::after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.6em;   /* arrow size */
  height: 0.6em;  /* arrow size */
  border-top: 1px solid #fff;  /* thickness, color */
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*----------------------------------------------
	.c_btn_type03
---------------------------------------------*/
.c_btn_type03 {
  display: inline-block;
  padding: 25px 20px 20px 50px;
  min-width: 350px;
  margin-right: -25px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #108968;
  border-radius: 80px 0 0 0;
  font-weight: bold;
  height: 70px;
   transition: 0.5s;
}
a.c_btn_type03:hover {
  background: #085f47;
}
.c_btn_type03:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: -3px 10px 0 0;
  background: url("../images/icon_check.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/*----------------------------------------------
	.c_btn_type04
---------------------------------------------*/
.c_btn_type04 {
  display: inline-block;
  padding: 25px 20px 20px 45px;
  min-width: 290px;
  margin-left: -50px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #96c31d;
  border-radius: 80px 0 0 0;
  font-weight: bold;
  height: 70px;
   transition: 0.5s;
}
a.c_btn_type04:hover {
  background: #7ba900;
}

.c_btn_type04:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: -3px 10px 0 0;
  background: url("../images/icon_mail.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/*----------------------------------------------
	.c_btn_type05
---------------------------------------------*/
.c_btn_type05 {
  text-align: center;
  display: inline-block;
  padding: 24px;
  min-width: 240px;
  width: 50%;
  text-decoration: none!important;
  color: #fff;
  position: relative;
  background: #96c31d;
  box-shadow: 0 4px #256208;
  border-radius: 15px;
  font-weight: bold;
  font-size: 2.8rem;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
a.c_btn_type05:hover {
  color: #fff !important;
  box-shadow: none;
	transform: translate(0, 4px);
}

.c_btn_type05:before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: -3px 15px 0 0;
  background: url("../images/icon_mail.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.c_btn_type05::after {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fbfbfb;
    animation: btn_animation 3.5s ease-in-out infinite;
}

@-webkit-keyframes btn_animation {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


/*----------------------------------------------
	.c_btn_type06
---------------------------------------------*/
.c_btn_type06 {
  text-align: center;
  display: inline-block;
  padding: 16px;
  min-width: 180px;
  margin-right: 13px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #333333;
  border-radius: 100px;
  height: 55px;
  font-size: 1.6rem;
   transition: 0.5s;
}
a.c_btn_type06:hover {
  opacity: 0.7;
}

.c_btn_type06::after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.6em;   /* arrow size */
  height: 0.6em;  /* arrow size */
  border-top: 1px solid #fff;  /* thickness, color */
  border-right: 1px solid #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/*----------------------------------------------
.fadeUp
---------------------------------------------*/
/*下からの出現アニメーション*/
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger{ opacity: 0; }


/*----------------------------------------------
メインビジュアル
---------------------------------------------*/
.c_mv_box {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  position: relative;
}
.c_mv_box.is_reverse {
  flex-direction: row-reverse;
}

.c_mv_item.is_tex {
  width: 40%;
}
.c_mv_item.is_img {
  width: 58%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c_mv_item img {
  width: 100%;
  border-radius: 15px;
}

.c_mv_img {
  position: relative;
}
.c_mv_btn {
  position: absolute;
  left: -10px;
  bottom: 0;
  width: 10%;
  filter: drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.15));
   transition: 0.5s;
  cursor: pointer;
}
.is_reverse .c_mv_btn {
  right: -10px;
  left: auto;
  }
a.c_mv_btn:hover {
  opacity: 0.6; 
}

.c_review_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.c_review_left, .c_review_right {
    position:relative;
    width:60%;
    height:auto;
    background:#FFFFFF;
    padding:20px;
    text-align:left;
    color:#333333;
    border-radius:15px;
    -webkit-border-radius:15px;
    -moz-border-radius:15px;
  filter:drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.15));
  display: table; 
}
.c_review_left:after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(255, 255, 255, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:30px;
    border-right-width:30px;
    margin-top: -10px;
    border-left-color:#FFFFFF;
    left:100%;
    top:50%;
}
.c_review_right:after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(255, 255, 255, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:30px;
    border-right-width:30px;
    margin-top: -10px;
    border-right-color:#FFFFFF;
    right:100%;
    top:50%;
}
.c_review_img {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c_review_img img {
  border-radius: 0 !important;
}

.c_mv_sub {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  position: static;
  width: 100%;
  left: 50%;
  margin: 0 auto;
}

.c_mv_sub p {
  flex-basis: calc(33.333% - 8px);
    max-width: 390px;
  
}
.c_mv_sub img {
  border-radius: 10px;
  width: 100%;
}

.c_mv_samplebox01 {
  background: #333;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px 45px 5px 20px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

  width: 160px;
  height: 160px;
  position: absolute;
  right: 150px;
  top: 0;
}

.c_mv_samplebox03 {
  background: #333;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 5px 45px 5px 20px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

  width: 160px;
  height: 160px;
  position: absolute;
  left: 0;
  top: 0;
}

.c_mv_samplebox02 {
  border: 2px solid #333;
  border-radius: 50%;
  background: #FFFFFF;
  font-weight: bold;

  width: 200px;
  height: 200px;
  position: absolute;
  left: -10px;
  top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c_mv_samplebox04 {
  border: 2px solid #333;
  border-radius: 50%;
  background: #FFFFFF;
  font-weight: bold;

  width: 200px;
  height: 200px;
  position: absolute;
  left: 120px;
  top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c_mv_samplebox02 p, .c_mv_samplebox04 p {
    text-align: center;
    font-size: 3rem;
}
.c_mv_samplebox02 p span.is_price, .c_mv_samplebox04 p span.is_price {
    text-align: center;
    font-size: 7.2rem;
    color: #BF3E3E;
    line-height: 0.8;
}

.c_mv_samplebox02 {
    right: -10px;
    left: auto;
}



/*----------------------------------------------
ピックアップ
---------------------------------------------*/
.c_pickup_box {
display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  max-width: 1200px;
  margin: 1em auto;
  padding: 0;
  text-align: center;
}
.c_pickup_box li {
    flex-basis: calc(33.333% - 8px);
    position: relative;
    max-width: 390px;
    border-radius: 15px;
   box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.2);
}

.c_pickup_box .image {
    margin: 0;
}

.c_pickup_box .image img {
    max-width: 100%;
  width: 100%;
    height: auto;
    border-radius: 15px;
    vertical-align: middle;
}

.c_pickup_box .text {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    width: 100%;
   height: 40%;
    position: absolute;
    bottom: 0;
    /*inset: 0;*/
    margin: 0;
    padding: 16px 24px;
    border-radius: 8px;
    text-align: left;
    background: #E3E3E3;
}
.c_pickup_box .text dt {
  font-size: 1.3em;
  justify-self: flex-start;
  align-self: flex-end;
}
.c_pickup_box .text dd {
    margin: 0.5em 0 0;
    font-size: .9em;
    line-break: strict;
    overflow-wrap: break-word;
}

/*type01*/
.c_pickup_box {
  margin-top: 12% !important;
}

.c_pickup_box .type01 {
    overflow: hidden;
}
.c_pickup_box .type01:not(:hover) .text {
    opacity: 0;
    transform: translateY(100%);
}
.c_pickup_box .type01 .text {
    transition: opacity .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}


.c_pickup_ttl {
  position: absolute;
  top: 50px;
  left:50%;
  transform: translate(-50%,-50%);
  margin:0;
  font-size: 2.4rem;
  line-height:1.4;
  font-weight: bold;
  width: 100%;
  color: #fff;
  text-shadow: 0 0 7px #000;
  /*background: rgba(165, 199, 157, 0.2);*/
  background:  linear-gradient(to top, transparent 0, #b7b7b7 180%);
  padding: 40px;
  /*backdrop-filter: blur(3px);*/
}

/*----------------------------------------------
商品一覧
---------------------------------------------*/
.c_lineup_box {
display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  max-width: 1200px;
  margin: 1em auto;
  padding: 0;
  text-align: center;
}
.c_lineup_box li {
    flex-basis: calc(25% - 8px);
    position: relative;
    max-width: 290px;
    border-radius: 15px;
   box-shadow: 3px 3px 6px 0px rgba(0, 0, 0, 0.2);
  margin-right: 10px;
  margin-bottom: 10px;
}

.c_lineup_box .image {
    margin: 0;
}

.c_lineup_box .image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    vertical-align: middle;
}

.c_lineup_box .text {
    display: grid;
    grid-template-rows: 1fr auto 1fr;
    width: 100%;
   height: 40%;
    position: absolute;
    bottom: 0;
    /*inset: 0;*/
    margin: 0;
    padding: 16px 24px;
    border-radius: 8px;
    text-align: left;
    background: #E3E3E3;
}
.c_lineup_box .text dt {
  font-size: 1.3em;
  justify-self: flex-start;
  align-self: flex-end;
}
.c_lineup_box .text dd {
    margin: 0.5em 0 0;
    font-size: .9em;
    line-break: strict;
    overflow-wrap: break-word;
}

/*type01*/
.c_lineup_box .type01 {
    overflow: hidden;
}
.c_lineup_box .type01:not(:hover) .text {
    opacity: 0;
    transform: translateY(100%);
}
.c_lineup_box .type01 .text {
    transition: opacity .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}


.c_lineup_ttl {
  position: absolute;
  top: 50px;
  left:50%;
  transform: translate(-50%,-50%);
  padding:0;
  margin:0;
  font-size: 1.8rem;
  line-height:1.4;
  font-weight: bold;
  width: 90%;
  color: #fff;
  text-shadow: 0 0 7px #000;
}

/*----------------------------------------------
モーダル
---------------------------------------------*/
.button-open {
  text-align: center;
  display: inline-block;
  padding: 16px;
  margin-right: -25px;
  text-decoration: none!important;
  color: #fff!important;
  position: relative;
  background: #108968;
  border-radius: 5px;
  font-weight: bold;
  height: 55px;
  font-size: 1.8rem;
  cursor: pointer;
  border: none;
   transition: 0.5s;
}
.button-open:hover {
  opacity: 0.7;
}

.button-open::after{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.6em;   /* arrow size */
  height: 0.6em;  /* arrow size */
  border-top: 1px solid #fff;  /* thickness, color */
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* モーダルウィンドウ */
.modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 93%;
  max-width: 1200px;
  height: auto;
  min-height: 300px;
  background-color: #fff;
  border-radius: 5px;
  z-index: 11;
  padding: 2rem;
  overflow-y: auto;
  max-height: 90%;
}
.c_modal_box {
  display: flex;
  justify-content: space-between;
}
.c_modal_item {
  width: 48%;
}
.c_modal_item img {
  width: 100%;
  border-radius: 15px;
}
.c_modal_item .c_table_type02 {
  margin-top: 5rem;
  margin-bottom: 2rem;
}

/* 閉じるボタン */
.button-close {
  position: fixed;
  top: 5%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  font-size: 2.5rem;
  background-color: #333;
  color: #eaeaea;
  border-radius: 20rem;
  cursor: pointer;
  border: none;
  z-index: 30;
  display: none;
}
/* オーバーレイ */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 10;
}
.no_scroll {
  overflow: hidden;
}

/*----------------------------------------------
4つのポイント
---------------------------------------------*/
.c_point_box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
.c_point_left, .c_point_right {
    position:relative;
    width:800px;
    height:190px;
    background:#FFFFFF;
    text-align:left;
    color:#333333;
    border-radius:15px;
    -webkit-border-radius:15px;
    -moz-border-radius:15px;
  filter:drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.15));
  display: table; 
}
.c_point_left:after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(255, 255, 255, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:30px;
    border-right-width:30px;
    margin-top: -10px;
    border-left-color:#FFFFFF;
    left:100%;
    top:50%;
}
.c_point_right:after{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    border-color: rgba(255, 255, 255, 0);
    border-top-width:10px;
    border-bottom-width:10px;
    border-left-width:30px;
    border-right-width:30px;
    margin-top: -10px;
    border-right-color:#FFFFFF;
    right:100%;
    top:50%;
}
.c_point_text {
  font-size: 3rem;
  color: #108968;
  display: table-cell;
  vertical-align: middle;
  font-weight: bold;
}
.c_point_text_kome {
  font-size: 1.6rem;
  font-weight: normal;
  color: #777777;
  margin-top: 15px;
}

.c_point_img {
  width: 30%;
  position: relative;
}
.c_point_img img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.c_point_left, .c_point_right {
    width: 60%;
}
.c_point_left div,.c_point_right div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}

/*----------------------------------------------
お客様事例
---------------------------------------------*/
.c_customer_box {
    width:100%;
    height:auto;
    background:#FFFFFF;
    padding:20px;
    color:#333333;
    border-radius:15px;
    -webkit-border-radius:15px;
    -moz-border-radius:15px;
  filter:drop-shadow(0px 3px 4px rgba(0, 0, 0, 0.15));
  height: 190px;
  display: table; 
  margin-bottom: 50px;
}
.c_cus_main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.c_cus_img, .c_cus_detail {
  width: 49%;
}

.c_cus_ttl {
  width: 100%;
  font-weight: bold;
  border-bottom: 1px solid #333;
  font-size: 2.6rem;
}
.c_cus_lineup {
  font-size: 1.6rem;
  text-align: right;
  margin-top: 10px;
}
.c_cus_imgbox {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.c_cus_imgbox img {
  width: 49%;
  border-radius: 15px;
}


/*----------------------------------------------
オプションパーツ・サービス
---------------------------------------------*/
.tab3 {
  position: relative;
  display: flex;
  flex-direction: row;
  text-align: center;
  align-items: center;
  background-color: #F3F3F3 !important;
  margin: 0 !important;
  padding: 10px 0 !important;
  list-style: none;
  height: 70px;
  z-index: 0;
  font-weight: bold;
  border-radius: 100px;
  }
  .tab3:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 20%;
    border-radius: 100px;
    transition: all 0.6s ease;
    height: 70px;
    background: #333;
    z-index: -1
  }
  .tab3--1:after {
    left: 0;
  }
  .tab3--2:after {
    left: 20%;
  }
  .tab3--3:after {
    left: 40%;
  }
  .tab3--4:after {
    left: 60%;
  }
  .tab3--5:after {
    left: 80%;
  }
  .tab3__item {
    flex: 1;
  }
  .tab3__link {
    display: block;
    text-decoration: none;
    color: #333;
    cursor: pointer;
  }
  .tab3__link.tab_on.active {
    color: #fff;
  }
  .tab3-body__item {
    margin: 15px;
    display: none;
  }
  .tab3-body__item.on {
    display: block;
  }

.tab3 .active {
    color: #fff;
}

.c_tab_content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.c_tab_item {
  width: 18%;
  margin-bottom: 20px;
}
.c_tab_img {
  border-radius: 50%;
  width: 220px;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.c_tab_content02 {
  display: flex;
  justify-content: space-around;
}

.c_tab_item02 {
  width: 47%;
  margin-bottom: 20px;
}
.c_tab_img_square, .c_option_img_square {
  border-radius: 15px;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0 auto 20px auto;
}




/*----------------------------------------------
ご注文の流れ
---------------------------------------------*/
.c_order_box {
  display: flex;
  align-items: center;
}

.c_order_item {
  width: 100%;
  padding-left: 0;
  counter-reset: number;
}

.c_order_item > li {
  list-style-type: none;
  display: flex;
  padding: 20px 0;
}

.c_order_item > li dl dt {
  font-size: 2.5rem;
  line-height: 2;
  font-weight: bold;
}

.c_order_item > li .c_order_step {
  line-height: 1;
  font-weight: bold;
  color: #333;
  text-align: center;
  width: 70px;
  position: relative;
  margin-top: 0;
  
  background: #fff;
  min-height: 130px;
  min-width: 130px;
  border-radius: 15px;
  padding: 20px;
  z-index: 0;
}

.c_order_item > li .c_order_step::before {
  counter-increment: number; /* counter-resetと同じ文字列 */
	content: "0" counter(number);
  display: block;
  margin-bottom: 3px;
  letter-spacing: 1px;
  
  font-size: 1.4em;
  margin-bottom: 10px;
}

.c_order_item > li .c_order_step::after {
  content: "";
  display: block;
  width: 5px;
  height: calc(100% - 20px);
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  top: 60px;
  margin: auto;
  z-index: -1;
}
.c_order_item .c_order_step.is_last::after { display: none !important; }

.c_order_item > li dl {
  background: #fff;
  min-height: 130px;
  border-radius: 15px;
  padding: 15px;
  width: calc(100% - 70px);
  margin-left: 10px;
  align-items: center;
}


/*----------------------------------------------
特記事項
---------------------------------------------*/
.c_notice_ttl {
  margin-bottom:10px;
  color: #333;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c_notice_ttl:after {
  border-top: 1px solid #333;
  content: "";
  flex-grow: 0.95;
}
.c_notice_ttl:before {
  margin-right: 10px; /* 文字の右隣 */
}


.c_notice_list li {
  position: relative;
  padding-left: 15px;
  list-style: none;
  color: #333;
  margin-bottom: 10px;
}
.c_notice_list li:before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 7px;
  }
