@charset "utf-8";
/* CSS Document */

a:visited {
    color: #2a2a33;
}


p {
    font-size: 1rem;
    line-height: 1.85;
}

.section.intro {
    background-color: #d76594;
}

.intro--image {
    margin: 20px auto 0;
    width: 100%;
    max-width: 480px;
}

.section.attention {
    background-color: #8f8585;
    padding: 100px 0;
}


.attention--inner {
    width: 80%;
    max-width: 900px;
    margin: auto;
}
.attention-description {
    text-align: center;
    font-size: 1.2rem;
    color: #FFF;
    margin: 2em 0;
}


.attention-title h2 {
    width: 8em;
    font-size: 2rem;
    line-height: 2;
    background-color: white;
    text-align: center;
    font-weight: 600;
    margin: auto;
}



.attention--heading h3 {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2.4;
    font-weight: 600;
    background-color: white;
    text-align: center;
    margin: auto;
}





.attention--txt {
    color: #FFF;
}


.attention--txt p {
    margin: 1em;
    font-size: 1rem;
}



.caution__notes {
    margin: 20px 0;
    padding: 1rem;
    border: solid 1px #CCC;
    font-size: 0.9rem;
}



/* テキストアニメーション前のスタイル */
.js-marker {
    display: inline;
    position: relative;
    background-image: linear-gradient(90deg, #9c9c71, #b0b03e);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0 30%;
    transition: all 1s ease-in-out;
    font-weight: bold;
    line-height: 2;
}
/* テキストアニメーション発火時 */
.js-marker.inview {
  background-size: 100% 30%; /* '30%'の部分は上で設定した太さに合わせる */
}




span.link {
    font-weight: 600;
    border-bottom: solid;
}





@media screen and (max-width: 767px) {
    
    .attention-description {
    font-size: 0.9rem;
}
    .attention-title h2 {
    font-size: 1.4rem;
}

    
    .attention--heading h3 {
    font-size: 1.2rem;
}

    
    
    

.section.attention {
    padding: 60px 0;
}

.attention--inner {
    width: 90%;
    max-width: 900px;
    margin: auto;
}

.attention--txt p {
    font-size: 1rem;
}




}







.menu {
    padding: 50px 0;
    background-color: #f3f8d7;
}

.menu--list {
    width: 80%;
    max-width: 1024px;
    margin: auto;
}
.menu--list ul {
    display: inline-block;
    width: 100%;
}


.menu--list li {
    float: left;
    width: 31%;
    margin-right: 20px;
    border: solid 2px #000;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    line-height: 3;
}


li.mr_n {
    margin-right: 0!important;
}


.menu--link {
    margin: 1em 0 0;
    text-align: center;
    font-size: 2.4em;
    line-height: 3;
    padding: 1em 0;
    background-color: #d76594;
    color: #FFF;
    font-weight: 600;
}

.category {
padding: 50px;
}


.category--heading {
    font-size: 2rem;
    text-align: center;
    font-weight: 600;

}






.category--inner {
    max-width: 1024px;
    margin: auto;
}





@media screen and (max-width: 767px) {

.menu--list {
    width: 90%;
}
.menu--link {
    font-size: 1rem;
}
    
   .menu--list li {
    width: 100%;
    margin-right: 0px;
       margin-bottom: 10px;
} 
    
    
    
    
    
    
}















/*====================================================================
レコメンド
====================================================================*/

.parent {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 10px;
grid-row-gap: 10px;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 3; }
.div3 { grid-area: 2 / 1 / 3 / 2; }
.div4 { grid-area: 2 / 2 / 3 / 3; }


.reccomend--imageArea {
    margin: 40px 0;
}

.recommend--inner {
    margin: auto;
	    width: 80%;
    max-width: 1400px;

}



@media screen and (max-width: 767px) {
#recommend {
    padding: 20px 0;
}



.recommend--inner {
    margin: auto;
    width: 90%;
    max-width: 1400px;
}

.parent {
display: grid;
grid-template-columns: 1fr;
grid-template-rows: repeat(4, 1fr);
grid-column-gap: 10px;
grid-row-gap: 10px;
}

.div1 { grid-area: 1 / 1 / 2 / 2; }
.div2 { grid-area: 2 / 1 / 3 / 2; }
.div3 { grid-area: 3 / 1 / 4 / 2; }
.div4 { grid-area: 4 / 1 / 5 / 2; }


}




/*====================================================================
アコーディオンメニュー
====================================================================*/
.s_02 .accordion_one {
  max-width: 1024px;
  margin: 0 auto 10px;
}




.accordion_header {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 10px 1%;
  text-align: left;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
  border-bottom: solid 2px;
}

.s_02 .accordion_one .accordion_header:hover {
  opacity: .8;
}
.s_02 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  margin-top: -20px;
  box-sizing: border-box;
    /* -webkit-transform: rotate(45deg); */
    /* transform: rotate(45deg); */
  transform-origin: center center;
  transition-duration: 0.2s;
}
.s_02 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
    /* -webkit-transform: rotate(45deg); */
    /* transform: rotate(45deg); */
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s_02 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.s_02 .accordion_one .accordion_header .i_box .one_i:before, .s_02 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: #000;
  border-radius: 10px;
  width: 18px;
  height: 2px;
  position: absolute;
  top: 8px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.s_02 .accordion_one .accordion_header .i_box .one_i:before {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}
.s_02 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.s_02 .accordion_one .accordion_header.open .i_box .one_i:after {
    /* -webkit-transform: rotate(-45deg); */
    /* transform: rotate(-45deg); */
}
.accordion_inner {
  display: none;
  padding: 30px 0;
  box-sizing: border-box;
}


.s_02 .accordion_one .accordion_inner p.txt_a_ac {
  margin: 0;
}
@media screen and (max-width: 1024px) {

.s_02 .accordion_one {
  margin: 0 auto 0;
}


  .s_02 .accordion_one .accordion_header {
    font-size: 18px;
  }
  .s_02 .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {

.category {
    padding: 20px;
}


.category--heading {
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
}

.s_02 {
    margin: 10px 0;
}



  .s_02 .accordion_one .accordion_header {
    font-size: 16px;
    text-align: left;
    padding: 15px 60px 15px 15px;
  }
}















.submenu {
    display: flex;
    flex-wrap: wrap;
}

.submenu li {
    color: #24adb2;
    font-weight: 600;
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 2;
}



/* ボタン共通設定 */
.btn06{
    /*矢印の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
	color:#fff;
    padding: 10px 40px 10px 30px;
	border: solid 2px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    transition: ease .2s;
}

.btn06:hover{
	background:#c9f8f1;
}


/* 矢印が右に移動 */

.btnarrow1::after {
    content: '';
    position: absolute;
    top: 42%;
    right: 13px;
    width: 5px;
    height: 5px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(45deg);
    transition: all .3s;
}

/*hoverした際の移動*/
.btnarrow1:hover::after{
    right: 15px;
}


@media screen and (max-width: 769px) {


.accordion_inner {
    padding: 0px 0;
}

.submenu li {
    width: 100%;
    border-bottom: solid 2px #000;
    color: #24adb2;
    font-weight: 600;
    margin-right: 20px;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 2;
}



.btn06 {
    position: relative;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    padding: 10px 40px 10px 30px;
    border: none;
    text-align: center;
    outline: none;
    transition: ease .2s;
    width: 100%;
}





}
