@charset "UTF-8";
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    background-color: #fff !important;
    font-size: 62.5%;
    scroll-behavior: smooth;
}
body {
    margin: 0 auto;
    padding: 0;
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

a {
    display: block;
    width: 100%;
    transition: 0.8s;
}
a:hover {
    opacity: 0.75;
}

ul{
    list-style: none;
}

img {
  	max-width: 100%;
  	height: auto;
	border: 0;
    display: block;
    vertical-align: bottom;
    margin: auto;
}

#wrapper {
    margin: auto;
    font-size: 1.7em;
    letter-spacing: 1px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
}

.bg{
    background-image: url(../img/bg.webp);
    background-position: center 100%;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -1;
}


main{
    width: 480px;
    max-width: 100%;
    margin: auto;
    background: #fff;
    position: relative;
}
main::before{
  content: "";
  filter: drop-shadow(0px 2px 4px #aaa);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 1);
}

.rltv{
    position: relative;
}
.txt_right{
    text-align: right;
}
.max_90{
    max-width: 90%;
}


/*--------トップへ戻るボタン--------*/
#page-top {
    position: fixed;
    bottom: 3%;
    right: 1%;
}
#page-top a {
    display: table-cell;
    font-size: 10px;
    vertical-align: middle;
    background:rgba(255, 255, 255, 0.8);
    color: #B99A1E;
    width: 68px;
    height: 68px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
    border: 1px solid rgba(246, 246, 246, 1);
}



/***ヘッダーナビメニュー*/
header{
    height: 0;
}
header .sns_area{
    position: fixed;
    bottom: 3%;
    right: 8.5%;
    display: flex;
    flex-direction: column;
}
header .sns_area li:first-of-type{
    margin-bottom: 1.5rem;
}


  /* ===============================================
  メニューのスタイリング
  =============================================== */
  .nav {
    position: fixed;
    width: 240px;
    right: unset;
    left: 3%;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 2.5rem;
    border-radius: 5px; 
    z-index: 10;
  }

  .nav li.ttl{
    color: #5C4217;
    font-weight: 600;
    font-size: larger;
    margin-bottom: 1.5rem;
  }
  .nav li.ttl::before{
    content: "";
    border-left: 0.2rem solid;
    padding-right: 1.25rem;
    font-size: medium;
  }
  .nav li a {
    display: block;
    color: #5C4217;
    text-decoration: none;
    line-height: 2;
    font-size: 1.6rem;
  }
  .nav li a:hover {
    color: #a46d6d;
  }



/**section**/
#top h1{
    position: absolute;
    left: 1%;
    top: 2%;
    width: 100%;
    max-width: 21%;
}

#top h1 .logo_sub{
  margin-top: .3rem;
  margin-left: 10%;
  max-width: 84%;
}

.btn_top{
    width: 443px;
    max-width: 93%;
    position: absolute;
    bottom: 1%;
    left: 50%;
    transform: translate(-50%, 0);
    transition: .3s;
}
.btn_top:hover{
    opacity: 1;
    transform: translate(-50%, -5%)
}

.top_block{
    position: absolute;
}
.top_block.b1{
    max-width: 65%;
    top: 20%;
    left: 0;
    right: 0;
}
.top_block.b2{
    max-width: 33%;
    top: 31%;
    left: 13%;
}
.top_block.b3{
    max-width: 33%;
    top: 31%;
    right: 12%;
}
.top_block.b4{
    max-width: 7%;
    top: 38%;
    left: 0;
    right: 0;
}



#intro{
    background-image: url(../img/intro_bg.webp);
    background-size: cover;
    background-position: 50% 50%;

}
#intro a{
    color: #3C362C;
    padding-right: 1.5rem;
}

/**挿絵**/
#ir .abslt{
    position: absolute;
    transform: translateX(-50%);
}
#ir .abslt.a1{
    top: 10%;
    left: 35%;
    max-width: 45%;
}
#ir .abslt.a2{
    top: 23%;
    right: 0;
    max-width: 25%;
}
#ir .abslt.a3{
    top: 44%;
    left: 40%;
    max-width: 40%;
}
#ir .abslt.a4{
    top: 60%;
    right: -2%;
    max-width: 40%;
}

/**スクロールアニメーション**/
.scroll-in{
    opacity: 0;
}
  .s_lft.displayed{
    animation: fadeInLeft 1s forwards .4s;
  }
  .s_rght.displayed{
    animation: fadeInRight 1s forwards .7s;
  }
  .s_btm.displayed{
    animation: fadeInBottom 1s forwards 1.0s;
  }

  .s_top.displayed{
    animation: fadeInTop 1s forwards .7s;
  }
  .s_lft2.displayed{
    animation: fadeInLeft2 0.8s forwards 1.2s;
  }
  .s_rght2.displayed{
    animation: fadeInRight2 0.8s forwards 1.4s;
  }
  .s_in.displayed{
    animation: fadeIn 1s forwards 1.6s;
  }
  
  @keyframes fadeInLeft{
    0%{transform: translateX(-65%); opacity: 0;}
  100%{transform: translateX(-50%); opacity: 1;}
  }
  @keyframes fadeInRight{
    0%{transform: translateX(-35%); opacity: 0}
  100%{transform: translateX(-50%); opacity: 1}
  }
  @keyframes fadeInBottom{
    0%{transform: translate(-50%, 15%); opacity: 0}
  100%{transform: translate(-50%, 0); opacity: 1}
  }
  
  @keyframes fadeInTop{
    0%{transform: translateY(-15%); opacity: 0}
  100%{transform: translateY(0); opacity: 1}
  }
  @keyframes fadeInLeft2{
    0%{transform: translateX(-15%); opacity: 0;}
  100%{transform: translateX(0); opacity: 1;}
  }
  @keyframes fadeInRight2{
    0%{transform: translateX(15%); opacity: 0}
  100%{transform: translateX(0); opacity: 1}
  }
  @keyframes fadeIn{
    0%{opacity: 0}
  100%{opacity: 1}
  }

/* 丸の描写 */
#ir:before {
    content: "";
    /*描画位置*/
    position: absolute;
    left: 50.75%;
    transform: translate(-50%, 0);
    z-index: 2;
    /*丸の形状*/
	width:0.8rem;
	height:0.8rem;
	border-radius: 50%;
	background:#aaa;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 2.4s ease-in-out infinite,
		cirlemovehide 2.4s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom: 26%;}
     100%{bottom: 7%;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }





/**モーダル動画**/
  .modal_button {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6%;
    filter: drop-shadow(0px 2px 3px #aaa);
    transition: .5s;
}
.modal_button::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: unset;
    top: 0;
    left: 0;
    border-radius: 12px;
    transition: .5s;
}
.modal_button:hover::after{
    background: rgb(51, 51, 51, 0.6);
}
  
  .modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal__close {
    background: transparent;
    border: 0;
  }
  .modal__close:before {
    content: "\2715";
    font-size: 4rem;
}
  
  .modal__content video{
    display: block;
    margin: auto;
    width: 500px;
    max-width: 90vw;
    height: 80vh;
  }
  
  /**************************\
    Demo Animation Style
  \**************************/
  @keyframes mmfadeIn {
      from { opacity: 0; }
        to { opacity: 1; }
  }
  @keyframes mmfadeOut {
      from { opacity: 1; }
        to { opacity: 0; }
  }
  @keyframes mmslideIn {
    from { transform: translateY(15%); }
      to { transform: translateY(0); }
  }
  @keyframes mmslideOut {
      from { transform: translateY(0); }
      to { transform: translateY(-10%); }
  }
  
  .micromodal-slide {
    display: none;
  }
  .micromodal-slide.is-open {
    display: block;
  }
  .micromodal-slide[aria-hidden="false"] .modal__overlay {
    z-index: 3;
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
  }
  .micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
  }
  .micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
  }
  .micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
  }
  .micromodal-slide .modal__container,
  .micromodal-slide .modal__overlay {
    will-change: transform;
  }
/**/


/**access**/
#access .tel{
    font-weight: bold;
    color: #010101;
    text-decoration: none;
    position: absolute;
    width: 155px;
    max-width: 38%;
    left: 10%;
}
#access .tel:hover{
    color: #474747;
}
#access .t_horie{
    top: 44%;
}
#access .t_dojima{
    top: 87.5%;
}
#access iframe{
    position: absolute;
    right: 6%;
    max-width: 37%;
    max-height: 17%;
}
#access iframe.if1{
    top: 37%;
}
#access iframe.if2{
    top: 80%;
}
.gm-style .default-card {
    padding: 3px !important;
}



/**多くのタレントが利用**/
#talent{
    background: #9F938E;
    padding: 3rem 0;
}

/** スライダー **/
.splide__arrow > svg {
    display: none;
   }


/** アコーディオン**/
#qa{
    background-color: #fff;
    padding-bottom: 3rem;
}
#qa .inner{
    width: 90%;
    margin: auto;
}
.accordion-content p{
    text-align: justify;
    background: #fff;
    padding: 2rem;
    margin-top: -2rem;
}
.accordion-btn{
    cursor: pointer;
    background: #F3F3F3;
    padding: 2rem 5rem;
    margin: 0 0 2rem;
    position: relative;
    transition: .5s;
    border-radius: 2px;
}
.accordion-btn:hover{
    background:  #e0e0e0;
}
.accordion-btn::before{
    content: "\e902";
    font-size: 2.3rem;
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
}
.accordion-btn::after{
    content: '\e901';
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    font-size: 1rem;
}
.accordion-btn.open::after{
        content: "\e900";
    }
/**icomoon**/
@font-face {
    font-family: 'icomoon';
    src:
      url('../fonts/icomoon.ttf?8kpl2h') format('truetype'),
      url('../fonts/icomoon.woff?8kpl2h') format('woff'),
      url('../fonts/icomoon.svg?8kpl2h#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  [class^="icon-"], [class*=" icon-"], .accordion-btn::before, .accordion-btn::after {
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  /****/



/**footer**/
footer{
    background-color:#474747;
    color: #fff;
    font-size: 1.4rem;
}
footer a{
    color: #fff;
}
footer .inner{
    padding: 4%;
}
footer .inner ul.inc{
    line-height: 2;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}
footer .inner ul.inc li:first-of-type{
    border-right: 1px solid #fff;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
}
footer .inner ul.sns_area{
    display: flex;
    justify-content: center;
}
footer .inner ul.sns_area li{
    margin: 0 1rem;
}

footer small{
    display: block;
    text-align: center;
    padding-bottom: 2rem;
}




/**mainのボタンエリア**/
.btn_block{
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
}
.btn_block a{
    width: 45%;
}

#voice .btn_block{
  bottom: 6%;
}
#about .btn_block{
  bottom: 7%;
}
#menu2 .btn_block{
    bottom: 9%;
}
#about .btn_block a{
    width: 186px;
    max-width: 42%;
    margin: 0 .5rem;
}


/*--------固定ボタン--------*/
.btn_area.show {
    opacity: 1;
    z-index: 2;
    transition: opacity .5s ease-in-out;
}

.btn_area{
    display: flex;
    justify-content: space-evenly;
    position: fixed;
    width: 480px;
    max-width: 100%;
    left: 50%;
    bottom: 0%;
    transform: translateX(-50%);
    opacity: 0;
    z-index: -10;
    transition: .5s ease-in-out;
}
.btn_area a{
  width: fit-content;
  max-width: 45%;
  padding-bottom: 5px;
}








/*---------------------------------------------------
レスポンシブ
----------------------------------------------------*/
    @media screen and (max-width:950px) {
        /* ===============================================
        ハンバーガーボタンのスタイリング
        =============================================== */
.hamburger {
    display: block;
    width: 4rem;
    height: 4rem;
    position: fixed;
    appearance: none;
    cursor: pointer;
    z-index: 11;
    right: 4%;
    top: 1%;
  }
  .hamburger span,
  .hamburger span::after,
  .hamburger span::before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.5s;
    border-radius: 10px;
    filter: drop-shadow(0px 1px 2px rgba(92, 66, 23, 0.5));
  }
  .hamburger span::before {
    top: -10px;
  }
  .hamburger span::after {
    bottom: -10px;
  }
  .hamburger.open span {
    background-color: transparent;
  }
  .hamburger.open span::before {
    top: 0;
    transform: rotate(45deg);
  }
  .hamburger.open span::after {
    bottom: 0;
    transform: rotate(-45deg);
  }

  header .sns_area{
    display: none;
    opacity: 0;
  }
  header .nav.open .sns_area{
    display: flex;
    flex-direction: row;
    opacity: 1;
  }
  header .sns_area li:first-of-type{
    margin: 0 1rem 0 0;
  }

        .nav {
            width: 100%;
            max-width: 100%;
            height: 100vh;
            left: unset;
            right: -100%;
            transition: all 0.5s;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 0;
          }
          .nav.open {
            right: 0;
            z-index: 10;
          }

          .nav ul.nav__list{
            position: absolute;
            transform: translate(-50%, -50%);
            left: 50%;
            top: 50%;
            width: min(250px, 58%);
          }
          .nav ul.nav__list li a{
            line-height: 2.6;
            font-size: 2.0rem;
            font-weight: 600;
          }
  }

@media screen and (max-width:620px) {
  #page-top {
    bottom: 13.5%;
  }
}

@media screen and (max-width:480px) {
    html{
        font-size: 2.4vw;
    }
    main::after{
      content: none;
    }
    .btn_block a{
        margin: 0 0.5rem;
        width: 43%;
    }
}