/*--- services/bromide ---*/
/* アルバム配下 共通要素 */
.bromide main * {
	font-family:"Lato","Yu Gothic Medium", YuGothic,"游ゴシック Medium","游ゴシック","Yu Gothic","游ゴシック体","Yu Gothic UI", sans-serif;
  letter-spacing: 0.12em;
  line-height: 2;
}
.bromide .pc {
  display: inline-block!important;
}
.bromide table.pc {
  display: table!important;
}
.bromide .sp {
  display: none!important;
}
.bromide table.sp {
  display: none!important;
}
@media screen and (max-width: 1000px) {
  .bromide .pc {
    display: none!important;
  }
  .bromide table.pc {
    display: none!important;
  }
  .bromide .sp {
    display: inline-block!important;
  }
  .bromide table.sp {
    display: table!important;
  }
}
/*========= ナビゲーションドロップダウンのためのCSS ===============*/
.bromide_menu {
  padding: 36px 0 50px;
}
.bromide_menu.top {
  padding: 0 2em 0;
}
.bromide_menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}
.bromide_menu ul li.bromide_menu-title a {
  color: #856A57;
}
.bromide_menu > ul > li:first-child {
  box-sizing: border-box;
  display: flex;
  font-size: 15px;
  padding: 0 0.2em;
  margin: 0 8px;
  position: relative;
}
.bromide_menu > ul > li:first-child::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #D1D9DD;
  top: 0;
  right: -4px;
}
.bromide_menu > ul > li {
  margin: 0 8px;
}
.bromide_menu > ul > li > a {
  box-sizing: border-box;
  font-size: 14px;
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
}
.bromide_menu > ul > li.selected > a {
  color: #856A57;
  border-bottom: 1px solid #856A57;
}
.bromide_menu > ul > li {
  position: relative;
}
.bromide_menu > ul > li::after {
  box-sizing: border-box;
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #856A57;
  bottom: 0; 
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.bromide_menu > ul > li:hover::after {
  transform: scale(1, 1);
}
.bromide h1 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-indent: 0;
  text-align: center;
  margin-top: 0;
  padding-bottom: 40px;
  line-height: 1.6;
}
.ttl_underline {
  position: relative;
  font-size: 30px;
  color: #856A57;
}
.ttl_underline::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #856A57;
  height: 2px;
  width: 30px;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}
.bromide .width1020 {
  box-sizing: border-box;
  max-width: 1020px;
  padding: 0 10px;
  margin: 0 auto;
}
.bromide .width1000 {
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .flow .width1000 {
    margin: 0 20px;
  }
  .bromide_menu > ul > li:first-child::before {
    right: -2px;
  }
  .bromide_menu > ul > li > a {
    font-size: 10px;
  }
  .bromide_menu > ul > li:first-child {
    margin: 0 4px;
  }
  .bromide_menu > ul > li {
    margin: 0 4px;
  }
}
/*アルバムCV*/
.bromide_cv {
  padding: 75px 1em;
}
.bromide_cv .bromide_cv-box {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #D1D9DD;
  padding: 40px 20px;
}
.bromide_cv .bromide_cv-box + .bromide_cv-box {
  margin-top: 2em;
}
.bromide_cv .bromide_cv-box .bromide_cv-box_inner:first-child {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
}
.bromide_cv .bromide_cv-box .bromide_cv-box_inner:last-child {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  width: 60%;
  border-left: 1px solid #D1D9DD;
  padding: 0 1.6em;
}
.bromide_cv .bromide_cv-box .bromide_cv-box_inner  .cv_title {
  font-size: 32px;
  text-align: center;
}
.bromide_cv .bromide_cv-box .bromide_cv-box_inner  .cv_text {
  padding-top: 0.6em;
}
a.cv_btn {
  position: relative;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.8em 0 0.6em;
  width: 100%;
  max-width: 300px;
  height: 50px;
  border: solid 1px #856A57;
  color: #fff;
  background-color: #856A57;
}
a.cv_btn:hover {
  background-color: #fff;
  color: #856A57;
}
a.cv_btn::before {
  position: absolute;
  height: 1px;
  background-color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  bottom: 22px;
  right: 32px;
  width: 15px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
a.cv_btn:hover::before {
  background-color: #856A57;
  right: 28px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
a.cv_btn::after {
  position: absolute;
  height: 1px;
  background-color: #fff;
  content: "";
  bottom: 23px;
  right: 31px;
  width: 4px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
a.cv_btn:hover::after {
  background-color: #856A57;
  right: 27px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
@media screen and (max-width: 768px) {
  .bromide .cv_btn {
    margin: 0.8em auto;
  }
  .bromide .bromide_cv .bromide_cv-box {
    padding: 20px 40px;
  }
  .bromide .bromide_cv .bromide_cv-box .bromide_cv-box_inner:first-child {
    width: 100%;
  }
  .bromide .bromide_cv .bromide_cv-box .bromide_cv-box_inner:last-child {
    width: 100%;
    border-top: 1px solid #D1D9DD;
    border-left: none;
    padding: 0;
  }
  .bromide .bromide_cv .bromide_cv-box .bromide_cv-box_inner .cv_title {
    font-size: 22px;
  }
  .bromide .bromide_cv .bromide_cv-box .bromide_cv-box_inner .cv_text {
    font-size: 14px;
    /*text-align: center;*/
    padding: 2em 0 1em;
  }
  @media screen and (max-width: 425px) {
    .bromide .bromide_cv .bromide_cv-box {
      padding: 20px 10px;
    }
  }
}
/* --- service/bromide/ --- */
.bromide main {
  overflow-x: hidden;
}
.bromide section h2 {
	font-size: 32px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-indent: 0;
	text-align: center;
	margin-top: 0;
	margin-bottom: 40px;
  line-height: 1.6;
}
.bromide .sub_title {
  font-size: 12px;
  color: #856A57;
  text-align: center;
}
.bromide .more_info_btn {
  position: relative;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
  width: 100%;
  max-width: 300px;
  height: 50px;
  border: solid 1px #856A57;
  color: #856A57;
}
.bromide .more_info_btn:hover {
  background-color: #856A57;
  color: #fff;
}
.bromide .more_info_btn::before {
  position: absolute;
  height: 1px;
  background-color: #856A57;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  bottom: 22px;
  right: 32px;
  width: 15px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.bromide .more_info_btn:hover::before {
  background-color: #fff;
  right: 28px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.bromide .more_info_btn::after {
  position: absolute;
  height: 1px;
  background-color: #856A57;
  content: "";
  bottom: 23px;
  right: 31px;
  width: 4px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.bromide .more_info_btn:hover::after {
  background-color: #fff;
  right: 27px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
.bromide .pc_flexnone {
  display: none;
}
.bromide h3 {
  text-align: center;
}
.bromide .background-color {
  background-color: #F2F4F4;
}
/*メインビジュアル*/
.bromide .kv {
	position: relative;
	width: 100%;
  max-width: 3000px;
  margin: 0 auto;
}
.bromide .kv .swiper_title {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 9;
}
.bromide .kv h1 {
	font-size: 32px;
	font-weight: 200;
	color: #fff;
	margin: 0px;
}

/*事例紹介*/
.bromide .works h2 {
  position: relative;
  color: #856A57;
  font-size: 30px;
}
/*---services/bromide/oem/---*/
.flow .flow_box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2em;
  margin: 0 auto;
  background-image : linear-gradient(to right, #856A57 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.flow .flow_box:last-child {
  background-image: none;
}
.flow .flow_box::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: rotate(45deg) translateY(70%);
  background-color: #F2F4F4;
  border-bottom: 2px solid #856A57;
  border-right: 2px solid #856A57;
}
.flow .flow_box:last-child::before {
  content: none;
}
.flow .flow_box .flow_box-img {
  display: flex;
  align-items: center;
  max-width: 150px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 15px;
}
.flow .flow_box .flow_box-img img {
  width: 100%;
}
.flow .flow_box .flow_box-text {
  width: calc(100% - 210px);
  padding: 0 15px;
}
.flow .flow_box .flow_box-text div {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
.flow .flow_box .flow_box-text div > span:first-child {
  display: inline-block;
  background-color: #856A57;
  color: #fff;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  padding: 0.3em 0.6em 0.3em 0.8em;
}
.flow .flow_box .flow_box-text div > span:last-child {
  display: inline-block;
  color: #856A57;
  font-weight: bold;
  margin-left: 0.8em;
}
.flow .flow_box .flow_box-text p > span {
  display: inline-block;
  font-size: 14px;
  line-height: 1.8;
}
.flow .flow_box .flow_box-text p a {
  color: #856A57;
  text-decoration: underline;
}
.flow .flow_box .flow_box-text p.flow_box-text-bg_w {
  background-color: #fff;
  font-weight: bold;
  padding: 0.6em 1em;
  line-height: 1.8;
  margin: 0.6em 0;
}
.fa-external-link-alt:before {
  font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	font-family: "Font Awesome 5 Free"; 
  color: #856A57;
  padding: 0 6px;
  content: "\f35d";
  font-weight: 900;
}
@media screen and (max-width: 600px) {
  .flow .flow_box .flow_box-text {
    width: 100%;
    padding: 0;
  }
}
/*---services/bromide/about_anoah/---*/
.anoah-concept img {
  display: block;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}
.bromide .anoah-concept h2 {
  margin-top: 2.2em;
  font-size: 32px;
}
.anoah-concept .width1020 p {
  padding: 0 10px;
  text-align: center;
}
.swiper-slide {
  width: 100%;
	margin: 0 auto;
}
.swiper-slide .history-box {
  width: 100%;
	margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap-reverse;
}
.swiper-slide .history-box::before {
  position: absolute;
  content: "";
  top: 45px;
  right: 0;
  z-index: -1;
  height: 1px;
  width: 100%;
  background-color: #856A57;
}
.swiper-slide:first-child .history-box::before {
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .swiper-slide:first-child .history-box::before {
    width: calc(100% - 10px);
  }
}
@media screen and (min-width: 1301px) {
  .swiper-slide:first-child .history-box::before {
    width: calc(100% - calc(calc(100% - 1140px) / 2));
  }
}
.swiper-slide .history-box .history-box_text {
  width: calc(100% - 470px);
  max-width: 670px;
  padding: 0 10px;
}
@media screen and (max-width: 941px) {
  .swiper-slide .history-box .history-box_text {
    width: 100%;
  }
}
.swiper-slide .history-box .history-box_text .history_year {
  font-size: 40px;
  line-height: 0.72;
  margin: 0.4em 0;
  color: #856A57;
}
.swiper-slide .history-box .history-box_text .history_ttl {
  font-size: 16px;
  line-height: 1.5;
  padding: 0.6em 0 0.2em;
}
.swiper-slide .history-box .history-box_text .history_b_text {
  font-size: 30px;
  font-weight: bold;
  padding-top: 0.4em;
}
.swiper-slide .history-box .history-box_text .history_text {
  padding: 1em 0;
}
.swiper-slide .history-box_img {
  aspect-ratio: 9 / 10;
  padding: 0 10px;
  max-width: 450px;
}
@media screen and (max-width: 941px) {
  .swiper-slide .history-box .history-box_img {
    width: 100%;
  }
}
.swiper-slide .history-box_img img {
  width: 100%;
}
.swiper-slide .history-box .history-box_text .history_link {
  padding-bottom: 3em;
}
.swiper-slide .history-box .history-box_text .history_link a {
  color: #856A57;
  text-decoration: underline;
}
.bromide-contents p {
  text-align: center;
  padding: 3em 10px;
}
.bromide-contents img {
  display: block;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}
/*---services/bromide/products/個別ページ---*/
.product_main h1 {
  margin-bottom: 0;
}
.product_main .sub_jp {
  text-align: center;
  font-size: 12px;
}
.product_main ul {
  display: flex;
  justify-content: center;
  margin: 0.6em auto 1.6em;
}
.product_main ul .categoly_tag {
  font-size: 12px;
  background-color: #F2F4F4;
  text-align: center;
  padding: 0 0.5em;
  margin: 0.2em;
}
.product_main img {
  display: block;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}
.product_detail {
  padding-top: 0;
  padding-bottom: 0;
}
.product_detail .width1020 {
  padding: 0 10px;
}
.product_detail .product_detail-txt {
  padding: 0;
}
.detail_slide {
  position: relative;
  display: flex;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.project_specifics {
  padding-bottom: 20px;
}
.product_specifics .spec,.project_specifics .spec {
	padding: 2em 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.product_specifics .spec table,.project_specifics .spec table {
	width: calc(50% - 4px);
	border-collapse: collapse;
  margin: 0;
}
.product_specifics .spec table:last-child {
	width: 100%;
  padding-top: 10px;
}
.product_specifics .spec table tr,.project_specifics .spec table tr {
	border-bottom: 2px solid #e2e2e2;
}
.product_specifics .spec table:last-child tr{
	padding: 5px 0;
}
.product_specifics .spec table th,
.product_specifics .spec table td,.project_specifics .spec table th,
.project_specifics .spec table td {
  border: none;
  padding: 0;
  margin: 0;
  background-color: unset;
	font-size: 14px;
	box-sizing: border-box;
}
.product_specifics .spec table th,.project_specifics .spec table th {
	width: 6.8em;
	color: #9e856c;
  text-align: left;
	line-height: 1;
	padding-top: 20px;
	padding-bottom: 20px;
}
.product_specifics .spec table:last-child th {
	width: 14em;
}
.product_specifics .spec table td {
	width: calc(100% - 7.4em);
	color: #333333;
	line-height: 1.9;
	padding-top: 14px;
	padding-bottom: 14px;
}
.product_specifics .spec table td .color {
	display: inline-block;
}
.product_specifics .spec table td .color img {
	max-width: 112px;
}
.product_specifics .spec table td .color div {
	text-align: center;
  font-size: 12px;
}
.usage_scene .usage_scene-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 30px 10px 50px;
  max-width: 1020px;
}
.usage_scene .usage_scene-box .usage_scene-box_img {
  width: 50%;
}
.usage_scene .usage_scene-box .usage_scene-box_img img {
  width: 100%;
}
.usage_scene .usage_scene-box .usage_scene-box_txt {
  width: 45%;
}
.usage_scene .usage_scene-box .usage_scene-box_txt .usage_scene-box_txt-ttl {
  font-size: 22px;
  color: #856A57;
  margin-bottom: 1em;
  line-height: 1.4;
}
.link_sec > div {
  padding: 0 10px;
}
.link_sec .link_sec-development_story_eterno {
  display: block;
  height: 320px;
  background: linear-gradient(90deg, rgba(51,51,51,1) 0%, rgba(51,51,51,1) 45%, rgba(51,51,51,0.7231267507002801) 59%, rgba(51,51,51,0) 73%), url("../../service/bromide/products/eterno/images/link_sec-development_story_eterno.jpg.webp") no-repeat center right / auto 100%;
}
.link_sec .link_sec-about_box {
  display: block;
  height: 320px;
  background: linear-gradient(90deg, rgba(51,51,51,0) 27%, rgba(51,51,51,0.7231267507002801) 41%, rgba(51,51,51,1) 55%, rgba(51,51,51,1) 100%), url("../../service/bromide/products/eterno/images/link_sec-about_box.jpg.webp") no-repeat center left / auto 100%;
}
.link_sec a + a {
  margin-top: 2em;
}
.link_sec a .link_sec_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 40%;
}
.link_sec a.link_sec-about_box .link_sec_text {
  margin-left: 60%;
}
.link_sec a .link_sec_text div {
  position: relative;
  padding: 10px 0;
}
.link_sec a .link_sec_text div:before {
  position: absolute;
  content: "";
  width: 25px;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  left: 21px;
}
.link_sec a .link_sec_text > p {
  color: #fff;
  line-height: 1.4;
  font-size: 15px;
  padding: 0 20px;
  margin: 1.6em 0;
}
.link_sec a .link_sec_text div p.link_sec_ttl {
  color: #fff;
  font-size: 30px;
  line-height: 1.6;
  padding: 0 20px;
}
/* QAアコーディオン */
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  line-height: 2;
}
.accordion-area section {
  border: 1px solid #ccc;
}
/* アコーディオンタイトル */
.faq ul.accordion-area li > section {
  padding: 0;
  border: none;
}
.faq ul.accordion-area li + li {
  border-top: 1px solid #ccc;
}
.faq .accordion-area .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: 400;
  padding: 3% 40px 3% 4%;
  transition: all .5s ease;
  text-align: left;
}
/*アイコンの＋と×*/
#bromide .faq .accordion-area .title::before, .faq .accordion-area .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #856A57;
}
#bromide .faq .accordion-area .title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
#bromide .faq .accordion-area .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
#bromide .faq .accordion-area .title.close::before {
  transform: rotate(45deg);
}
#bromide .faq .accordion-area .title.close::after {
  transform: rotate(-45deg);
}
#bromide .faq .accordion-area .title span {
  padding: 6px 7px 8px 9px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: #856A57;
  color: #fff;
}
/*アコーディオンで現れるエリア*/
#bromide .faq .accordion-area .box {
  display: none; /*はじめは非表示*/
  margin: 0 3% 3% 3%;
  padding: 3%;
}
#bromide .faq .accordion-area .box p {
  font-size: 15px;
}
#bromide .faq .accordion-area .box p a {
  color: #856A57;
  text-decoration: underline;
}


/*bromide dimchart*/
img#img {
  display: block;
  margin: 40px auto;
  max-width: 600px;
  width: 96%;
}
.btnWrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px auto 20px;
}
.btnWrapper .btn {
  font-size: 15px;
  width: 6.6em;
  text-align: center;
  margin: 0.4em;
}
.btnWrapper button.btn.show {
  background: #707070;
  color: #fff;
}
/*製品仕様*/
.spec_table table tr th {
  font-size: 16px;
  text-align: center;
  padding: 1em 0.4em;
  color: #fff;
  background-color: #606060;
  border: none;
  border-right: 1px solid #fff; 
}
.spec_table table tr td {
  font-size: 15px;
  text-align: center;
  padding: 1em 0.4em;
  border: 0;
  border-left: 1px solid #666;
  border-right: 1px solid #666;
}
.spec_table table tr td:nth-child(2) {
  text-align: left;
}
.spec_table table tr th:last-child {
  width: 8.6em;
  border-right: none; 
}
.spec_table table tr:last-child {
  border-bottom: 1px solid #707070;
}
.spec_table table tr td a {
  background-color: #707070;
  color: #fff;
  padding: 0.4em 0.6em;
}
.spec_table table tr td a:hover {
  opacity: 0.6;
}
.spec_table .s_note {
  font-size: 13px;
}
.spec_table .s_note span {
  font-weight: bold;
}
.spec_table .s_note + .s_note {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .spec_table table tr th {
    font-size: 14px;
    padding: 1.2em 0.2em;
  }
  .spec_table table tr td {
    font-size: 13px;
    padding: 1.2em 0.2em;
  }
}
/*オプションサービス*/
.bromide .option_service {
  background-color: #333333;
}
.bromide .option_service .sub_jp {
  color: #fff;
  text-align: center;
  font-size: 12px;
}
.bromide .option_service h2 {
  color: #fff;
}
.option_service ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.option_service ul li {
  width: 32%;
  margin: 2px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.option_service ul li.op_retouch {
  background: linear-gradient(90deg, rgba(0,0,0,0.6502976190476191) 0%, rgba(0,0,0,0.3533788515406162) 35%, rgba(0,0,0,0) 100%),url("../bromide/images/retouch.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1;
}
.option_service ul li.op_retouch:hover {
  background: url("../bromide/images/retouch.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1;
}
.option_service ul li.op_packing {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.6502976190476191) 0%, rgba(0,0,0,0.3533788515406162) 35%, rgba(0,0,0,0) 100%),url("../bromide/images/packing.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1;
}
.option_service ul li.op_packing:hover {
  background-image: url("../bromide/images/packing.png.webp");
}
.option_service ul li.op_backprint {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.6502976190476191) 0%, rgba(0,0,0,0.3533788515406162) 35%, rgba(0,0,0,0) 100%),url("../bromide/images/backprint.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1;
}
.option_service ul li.op_backprint:hover {
  background-image: url("../bromide/images/backprint.png.webp");
}
.option_service ul li.op_jancode {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.6502976190476191) 0%, rgba(0,0,0,0.3533788515406162) 35%, rgba(0,0,0,0) 100%),url("../bromide/images/jancode.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1;
}
.option_service ul li.op_jancode:hover {
  background-image: url("../bromide/images/jancode.png.webp");
}
.option_service ul li.op_foilstamping {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.6502976190476191) 0%, rgba(0,0,0,0.3533788515406162) 35%, rgba(0,0,0,0) 100%),url("../bromide/images/foilstamping.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 1 / 1; 
}
.option_service ul li.op_foilstamping:hover {
  background-image: url("../bromide/images/foilstamping.png.webp");
}
.option_service ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.option_service ul li a p {
  color: #fff;
  line-height: 1.4;
  padding: 0 14px;
}
.option_service ul li a p:last-child {
  font-size: 1.4em;
}
@media screen and (max-width: 768px) {
  .option_service ul li a p {
    font-size: 12px;
    padding: 0 8px;
  }
  .option_service ul li a p:last-child {
    font-size: 18px;
  }
}
/*制作事例*/
.works ul li {
  margin: 60px 0;
}
.works ul li > p {
  margin: 10px 0;
}
.works ul li > p:first-child {
  font-weight: bold;
}
/* /service/bromide/hardcase/ */


/* /service/bromide/filmstyle/ */
.spec_table .explain_text {
  margin: 1.6em 0;
}
.spec_table .filmstyle_table tr th:first-child, .spec_table .filmstyle_table tr td:first-child {
  width: auto;
}
.spec_table .filmstyle_table tr th:nth-child(2), .spec_table .filmstyle_table tr td:nth-child(2) {
  width: auto;
}
.spec_table .filmstyle_table tr th:last-child {
  width: auto;
}
/* /service/bromide/collection-album/ */
.spec_table .collectionalbum_table tr th:first-child, .spec_table .collectionalbum_table tr td:first-child {
  width: auto;
}
.spec_table .collectionalbum_table tr th:nth-child(2), .spec_table .collectionalbum_table tr td:nth-child(2) {
  width: auto;
}
.spec_table .collectionalbum_table tr th:nth-child(3), .spec_table .collectionalbum_table tr td:nth-child(3) {
  width: auto;
  text-align: center;
}
.spec_table .collectionalbum_table tr th:last-child {
  width: auto;
}
/* /service/bromide/optionservice/ */
.anchor_btn {
  display: flex;
}
.anchor_btn li {
  position: relative;
  aspect-ratio: 200 / 120;
  max-width: 200px;
  width: 20%;
  margin: 1px;
}
.anchor_btn li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-120%) rotate(135deg);
  transition: 0.2s;
}
.anchor_btn li:hover::before {
  transform: translateX(-50%) translateY(-70%) rotate(135deg);
  transition: 0.2s;
}
.anchor_btn li.retouch_btn {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.6502976190476191) 0%, rgba(0,0,0,0.3533788515406162) 35%, rgba(0,0,0,0) 100%),url("../optionservice/images/retouch_anchor.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 200 / 120 ;
  transition: 0.2s;
}
.anchor_btn li.retouch_btn:hover {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0) 100%),url("../optionservice/images/retouch_anchor.png.webp");
  transition: 0.2s;
}
.anchor_btn li.packing_btn {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.6502976190476191) 0%, rgba(0,0,0,0.3533788515406162) 35%, rgba(0,0,0,0) 100%),url("../optionservice/images/packing_anchor.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 200 / 120 ; 
}
.anchor_btn li.packing_btn:hover {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0) 100%),url("../optionservice/images/packing_anchor.png.webp");
  transition: 0.2s;
}
.anchor_btn li.backprint_btn {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.6502976190476191) 0%, rgba(0,0,0,0.3533788515406162) 35%, rgba(0,0,0,0) 100%),url("../optionservice/images/backprint_anchor.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 200 / 120 ; 
}
.anchor_btn li.backprint_btn:hover {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0) 100%),url("../optionservice/images/backprint_anchor.png.webp");
  transition: 0.2s;
}
.anchor_btn li.jancode_btn {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.6502976190476191) 0%, rgba(0,0,0,0.3533788515406162) 35%, rgba(0,0,0,0) 100%),url("../optionservice/images/jancode_anchor.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 200 / 120 ; 
}
.anchor_btn li.jancode_btn:hover {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0) 100%),url("../optionservice/images/jancode_anchor.png.webp");
  transition: 0.2s;
}
.anchor_btn li.foilstamping_btn {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.6502976190476191) 0%, rgba(0,0,0,0.3533788515406162) 35%, rgba(0,0,0,0) 100%),url("../optionservice/images/foilstamping_anchor.png.webp");
  background-size: contain;
  background-repeat: no-repeat;
  aspect-ratio: 200 / 120 ; 
}
.anchor_btn li.foilstamping_btn:hover {
  background-image: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0) 100%),url("../optionservice/images/foilstamping_anchor.png.webp");
  transition: 0.2s;
}
.anchor_btn li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.anchor_btn li a p {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
  margin: 0 10px;
}
.anchor_btn li a p span {
  font-size: 12px;
}
.bromide section.op_section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.op_section .sub_title {
  color: #333;
}
.op_section > ul {
  display: flex;
  justify-content: space-around;
}
.op_section > ul + ul {
  padding-top: 36px;
}
.op_section > ul > li {
  max-width: 480px;
  width: 100%;
  padding: 0 10px;
}
.op_section > ul > li img {
  width: 100%;
}
.op_section > ul > li h3 {
  font-size: 18px;
  text-align: left;
}
.op_section > ul > li ul {
  margin: 16px 0;
}
.op_section > ul > li ul li {
  font-size: 15px;
  line-height: 1.6;
  font-weight: bold;
}
.op_section > ul > li p {
  font-size: 15px;
  margin-top: 0.6em;
}
.op_section p.smalltxt {
  font-size: 13px;
  margin-top: 12px;
}

/*袋の種類*/
.op_section .pouchType {
	margin-bottom: 20px;
}
.op_section .pouchType > ul {
	margin-bottom: 40px;
	position: relative;
}
.op_section .slick-track > li {
	outline: none;
}
/*左右半透明*/
.op_section .slick-slide:not(.slick-center) {
	filter: opacity(50%);
	transition: 0.2s linear;
}
/*矢印*/
.op_section .prev, .op_section .next {
	background-color: rgba(255, 255, 255, 0.7);
	width: 50px;
	height: 50px;
	z-index: 100;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 19px 28px;
}
.op_section .prev {
	left: 0;
	background-image: url("../optionservice/images/arrow_left.png.webp");
}
.op_section .next {
	right: 0;
	background-image: url("../optionservice/images/arrow_right.png.webp");
}
.op_section .prev:hover, .op_section .next:hover {
	cursor: pointer;
}
/*ドット*/
.op_section .slick-dots li button:before {
	color: #5cadfc;
	opacity: 0.5;
	font-size: 36px;
}
.op_section .slick-dots li.slick-active button:before {
	color: #5cadfc;
	opacity: 1;
}
/*スライド内部*/
.op_section .slick-track > li .wrap {
	width: 480px;
	box-sizing: border-box;
	border: 1px solid #EEE;
	box-shadow: 3px 3px 3px #AAA;
	padding-top: 0;
	margin-left: 14px;
	margin-right: 14px;
	margin-bottom: 20px;
}
.op_section .slick-track > li .inner {
	position: relative;
	margin: 16px;
}
.op_section .pouchTypeImg .mainImg {
	width: 48%;
}
.op_section .pouchTypeImg .subImg {
	width: 48%;
	position: absolute;
	right: 0;
	bottom: 0;
}
.op_section .pouchTypeImg img {
	max-width: 100%;
}
.op_section .pouchTypeImg .textContainer {
	width: 49%;
	position: absolute;
	right: 0;
	top: 10px;
}
.op_section .pouchTypeImg .textContainer h3 {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.3;
	margin-bottom: 0.4em;
}
.op_section .pouchTypeImg .textContainer p {
	font-size: 15px;
	letter-spacing: 0.1em;
	line-height: 1.75;
	margin-bottom: 0;
}
.op_section .pouchTypeImg .textContainer ul {
	justify-content: flex-start;
}
.op_section .pouchTypeImg .textContainer li {
	width: 20%;
	box-sizing: border-box;
	padding-right: 20px;
}
.op_section .pouchTypeImg .textContainer li figcaption {
	margin-left: 0.1em;
	line-height: 30px;
}
.op_section .pouchTypeImg .textContainer li img {
	max-width: 100%;
}
@media screen and (max-width: 768px) {
  .anchor_btn li a {
    align-items: flex-start;
    justify-content: center;
  }
  .anchor_btn li a p {
    font-size: 14px;
    margin: 6px 2px;
  }
  .anchor_btn li a p span {
    display: none;
  }
  .anchor_btn li a p br {
    display: none;
  }
  .op_section > ul {
    flex-wrap: wrap;
  }
  .op_section > ul > li {
    max-width: 768px;
  }
  .op_section > ul > li:last-child {
    margin-top: 16px;
  }
  /*袋の種類*/
  .op_section .pouchType {
    margin-bottom: 20px;
  }
  /*矢印*/
  .op_section .prev, .op_section .next {
    width: 25px;
    height: 25px;
    background-size: 50%;
  }
  .op_section .pouchType .contents:first-child {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .op_section .pouchType > ul {
    margin-bottom: 60px;
  }
  .op_section .slick-track > li .wrap {
    width: auto;
    box-shadow: none;
    margin-bottom: 20px;
  }
  .op_section .slick-track > li .inner {
    margin: 10px;
  }
  .op_section .pouchTypeImg .mainImg {
    width: 48.4%;
  }
  .op_section .pouchTypeImg .subImg {
    width: 48.4%;
  }
  .op_section .pouchTypeImg .textContainer {
    width: 48.4%;
    top: 0px;
  }
  .op_section .pouchTypeImg .textContainer h3 {
    font-size: 13px;
  }
  .op_section .pouchTypeImg .textContainer p {
    font-size: 10.5px;
    padding: 0;
  }
  .op_section .pouchTypeImg .textContainer ul {
    justify-content: flex-start;
    margin-top: 0;
  }
  .op_section .pouchTypeImg .textContainer li {
    width: 30%;
    padding-right: 0;
  }
  .op_section .pouchTypeImg .textContainer li img {
    height: 28px;
    width: auto;
  }
  .op_section .pouchTypeImg .textContainer li figcaption {
    font-size: 10px;
    margin-left: 0;
    line-height: 28px;
  }
  .op_section section.pouchType p {
    line-height: 1.5;
    padding-top: 0.75em;
    padding-bottom: 0.75em;
  }
  .op_section > ul + ul {
    padding-top: 45px;
  }
  .op_section > ul > li p {
    font-size: 14px;
  }
  @media screen and (max-width: 500px) {
    .anchor_btn li::before {
      transform: translateX(-50%) translateY(-80%) rotate(135deg);
    }
    .anchor_btn li a p {
      font-size: 13px;
    }
  }
}
/* /service/bromide/ */
.top_section p {
  text-align: center;
}
.bromide .main_section {
  padding: 20px 0;
}
.bromide .bc_bromide, .bromide .bc_cheki, .bromide .bc_hardcase, .bromide .bc_filmstyle, .bromide .bc_collectionalbum {
  background: linear-gradient(to bottom, transparent 0%, transparent 32%, #F2F4F4 32%, #F2F4F4 90%, transparent 90%, transparent 100%);
  max-width: 1040px;
  padding: 0 10px;
  margin: 0 auto;
}
.main_section .main_flex_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.bromide .main_section:nth-child(odd) .main_flex_box {
  flex-direction: row-reverse;
}
.main_section .main_flex_box > div {
  width: 50%;
  max-width: 480px;
}
.main_section .main_flex_box > div.txt_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 20px 0;
}
.main_section .main_flex_box > div .sub_txt {
  font-size: 12px;
  line-height: 1.2;
}
.main_section .main_flex_box > div h2 {
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}
main .main_section .main_flex_box > div > p {
  text-align: left;
  font-size: 15px;
  margin: 18px 0px;
  width: 100%;
}
main .main_section .main_flex_box > div > a {
  width: 100%;
  max-width: 260px;
  padding: 6px 10px;
  background-color: #666666;
  border: 1px solid #666666;
  text-align: center;
  color: #ffffff;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}
main .main_section .main_flex_box > div > a:hover {
  background-color: transparent;
  color: #666666;
  transition: 0.3s;
}
main .main_section .main_flex_box > div > a::before {
  position: absolute;
  height: 1px;
  background-color: #ffffff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  bottom: 19px;
  right: 32px;
  width: 15px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
main .main_section .main_flex_box > div > a:hover::before {
  background-color: #666666;
  right: 28px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
main .main_section .main_flex_box > div > a::after {
  position: absolute;
  height: 1px;
  background-color: #ffffff;
  content: "";
  bottom: 20px;
  right: 31px;
  width: 4px;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
main .main_section .main_flex_box > div > a:hover::after {
  background-color: #666666;
  right: 27px;
  -webkit-transition: right 0.3s;
  transition: right 0.3s;
}
main .main_section .main_flex_box > div > img {
  max-width: 100%;
  filter: drop-shadow(2px 2px 3px #bbb);
}
.bromide_pc {
  display: block;
}
.bromide_sp {
  display: none;
}
@media screen and (max-width: 650px) {
  .main_section .main_flex_box {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .main_section .main_flex_box > div {
    width: 100%;
    max-width: 748px;
  }
  .bromide .bc_bromide, .bromide .bc_cheki, .bromide .bc_hardcase, .bromide .bc_filmstyle, .bromide .bc_collectionalbum {
    background: linear-gradient(to bottom, transparent 0%, transparent 3%, #F2F4F4 3%, #F2F4F4 94%, transparent 94%, transparent 100%);
  }
  .bromide_pc {
    display: none;
  }
  .bromide_sp {
    display: block;
  }
}










