@charset "UTF-8";

/* equipment
======================================================================*/
.equipment{
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding-top: 80px;
    margin-bottom: 120px;
}

.equipment .inner{
    /*max-width: 920px;*/
}

@media screen and (max-width: 480px) {
.equipment{
    padding-top: 40px;
    margin-bottom: 60px;
}
}

.equipment h2{
    font-size: 2.6rem;
    padding-bottom: 10px;
    margin-bottom: 80px;
    text-align: center;
    border-bottom: 1px solid #1E3E23;
}
.equipment h2 span{
    font-size: 1.8rem;
    display: block;
}

@media screen and (max-width: 480px) {
.equipment h2{
    font-size: 2.0rem;
    margin-bottom: 20px;
}
.equipment h2 span{
    font-size: 1.6rem;
}
}

.equipment h3.intro{
    font-size: 2.8rem;
    margin-bottom: 40px;
    text-align: center;
}

@media screen and (max-width: 768px) {
.equipment h3.intro{
    font-size: 2.4rem;
}
}

@media screen and (max-width: 480px) {
.equipment h3.intro{
    font-size: 2.0rem;
}
}

/*tabの形状*/

.equipment .tab{
	display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.equipment .tab li {
    position: relative;
}

.equipment .tab li::after{
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 16px;
    background-color: #c8bb9b;
}

.equipment .tab li:last-child::after{
    content: none;
}

.equipment .tab li a{
    font-size: 1.9rem;
    display: block;
    margin: 0 0;
    padding: 0px 30px;
    opacity: 0.5;
    transition: all 0.3s linear;
    color: #c8bb9b;
}

@media only screen and (max-width: 768px) {
.equipment .tab{
	flex-wrap: wrap;
	flex-direction: column;
    margin-bottom: 10px;
}

.equipment .tab li{
    width: 100%;
}
    
.equipment .tab li::after{
    content: none;
}

.equipment .tab li a{
    padding: 0px 10px;
}
}

/*liにactiveクラスがついた時の形状*/
.equipment .tab li.active a{
	opacity: 1.0;
}

/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* equip_wrap
======================================================================*/

.equip_wrap{
    width: 100%;
    text-align: center;
    padding-top: 30px;
}

.equip_wrap h3{
    border-top: 1px solid #c8bb9b;
    text-align: center;
    position: relative;
    color: #c8bb9b;
    padding-top: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 2.0rem;
    letter-spacing: 0.1em;
}

.equip_wrap h3::before{
    position: absolute;
    content: '';
    top: 6px;
    left: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background-color: #c8bb9b;
}

.equip_wrap .ttlbox{
    height: 46px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 10px 0;
}

.equip_wrap h4{
    font-family: 'Noto Sans JP', 'Roboto', "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    color: #c8bb9b;
}

.equip_wrap h4 span{
    font-family: 'Shippori Mincho', 'Noto Serif JP', 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'HiraMinProN-W3', 'HGS明朝E', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: #FFFFFF;
}

.equip_wrap h4 span.sml{
    font-size: 1.0rem;
}

.equip_wrap p.lead{
    color: #c8bb9b;
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 2.0rem;
    letter-spacing: 0.1em;
    text-align: center;
}

/*
.equip_wrap h5{
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.equip_wrap h5:before {
  content: '';
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 32px;
  height: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #5e8153;
}
*/
.equip_wrap p.caption{
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: justify;
}

.equip_wrap p.caption span{
    font-size: 1.1rem;
}

.equip_wrap p.caption.row2{
    letter-spacing: -0.1em;
    margin-bottom: 30px;
}

.equip_wrap p.caption.mb20{
    margin-bottom: 20px;
}

.equip_wrap p.caption.mb30{
    margin-bottom: 30px;
}

.equip_wrap .main_ph{
    margin-bottom: 30px;
}

/* equip_wrap ul */

.equip_wrap ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    margin-bottom: 40px;
}

.equip_wrap ul::before{
  content:"";
  display: block;
  width:23%;
  order:1;
}

.equip_wrap ul::after{
  content:"";
  display: block;
  width:23%;
}

.equip_wrap ul li {
    width: 23%;
    max-width: 230px;
    margin-bottom: 40px;
}

.equip_wrap ul li.one {
    width: 48%;
    max-width: 478px;
}

.equip_wrap ul li.one-all {
    width: 100%;
    max-width: 100%;
}

.equip_wrap ul li.w628 {
    width: 62%;
    max-width: 628px;
}

.equip_wrap ul li.w316 {
    width: 32%;
    max-width: 316px;
}

.equip_wrap ul li.btm {
    display: flex;
	flex-wrap: wrap;
}

.equip_wrap ul li .thumb {
    /*margin-bottom: 10px;*/
}

.equip_wrap ul li .thumb.btm {
    margin-top: auto;
}


@media screen and (max-width: 768px) {
.equip_wrap{
    padding-top: 20px;
}
.equip_wrap h3{
    font-size: 1.8rem;
}
.equip_wrap .ttlbox{
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 10px 0;
}
.equip_wrap h4{
    font-size: 1.2rem;
}
.equip_wrap h4 span{
    font-size: 1.0rem;
}
.equip_wrap p.caption{
    font-size: 1.1rem;
}
.equip_wrap p.caption.row2{
    margin-bottom: 20px;
}
.equip_wrap p.caption.mb20{
    margin-bottom: 10px;
}
.equip_wrap p.caption.mb30{
    margin-bottom: 20px;
}  
.equip_wrap .main_ph{
    margin-bottom: 20px;
}
.equip_wrap ul {
    margin-bottom: 30px;
} 
.equip_wrap ul li {
    width: 48%;
    max-width: auto;
    margin-bottom: 30px;
}
.equip_wrap ul li.one {
    width: 100%;
    max-width: auto;
}
.equip_wrap ul li.w628 {
    width: 100%;
    max-width: auto;
}
.equip_wrap ul li.w316 {
    width: 48%;
    max-width: auto;
}
    
}

