@charset "utf-8";

/*---------------------------------
リセットｃｓｓ
---------------------------------*/

*{
  padding: 0;
  margin: 0;
}


html{
 font-size: 100%;
}

body{
 color: #24292e;
 font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

a{
 text-decoration: none;
}

p{
 font-size: 1rem;
}

img{
 max-width: 100%;
}

li{
 list-style: none;
 font-size: 1.2rem;
}

.wrapper{
max-width: 1000px;
margin: 0 auto 130px auto;
font-size: 0.9rem;
padding: 0 4%;
}
.button {
  position: relative;
  display: inline-block;
  padding: 0.8em 2em;
  text-decoration: none;
  color: black;
  background: pink;/*色*/
  border: solid 1px pink;/*線色*/
  border-radius: 25px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
  text-shadow: 0 1px 0 rgba(0,0,0,0.2);
  margin: 5px;
  font-size: 16px;
}
  
.button:active {
  /*押したとき*/
  border: solid 1px #f74d71;
  box-shadow: none;
  text-shadow: none;
  
}
.button:hover{
  opacity: 0.8;
}

/* ヘッダー */
header{
  display: flex;
  justify-content: space-between;
  padding: 20px;
  background-color: white;
}

.head_menu .flex {
  display: flex; 
  justify-content: flex-end;
    
}   

header .pc img {
 width: 250px;
}

.pc p {
 font-size:23px; 
 font-weight:bold;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
.headmenu .boxs img {
 width: 250px;
}


@media screen and (max-width:600px) {
 header{
  position: fixed;
  padding: 4px;
  width: 100%;
  top:0;
  left:0;
  border-bottom: solid 2px;  
}
 
 .pc { display: none !important; }
 .sp { display: block !important; }

 .head_menu {
   display: none;
 }
 
 .marquee {
   display: none;
 }
}

/* ナビ */
#g_nav{

padding-bottom: 0px;
background-color: pink;
}
#g_nav ul {
  display: flex;
  margin: 0 auto;
  padding: 0 3%;
  width: 94%;
  max-width: 1000px;
  list-style-type: none;
}
#g_nav ul li {
  position: relative;
  width: 25%;
  font-size: 1rem;
  font-weight: bold;
}
#g_nav ul li:first-child::before {
  position: absolute;
  display: block;
  content: "";
  top: 25%;
  left: 0px;
  width: 1px;
  height: 50%;
  background-color: #976d52;
}
#g_nav ul li::after {
  position: absolute;
  display: block;
  content: "";
  top: 25%;
  right: 0px;
  width: 1px;
  height: 40%;
  background-color: #976d52;
}
#g_nav ul li a {
  display: block;
  padding: 17px 10px;
  color: black;
  text-align: center;
  
}
#g_nav ul li a:hover {
  opacity: 0.5;
}
  
nav .inner {
 display: none;
}

                
@media screen and (max-width:600px) {
 body{
  font-weight: 400;
 }
 nav {
  display: block;
  width: 220px;
  position: fixed;
  background-color: #ffffff;
  top: 0;
  
  left: -300px;
  bottom: 0;
  transition: all 0.5s;
  z-index: 999;
  opacity: 0;
 }
 .open nav {
  left: 0;
  opacity: 1;
 }
 
 nav .inner {
  display: block;
  padding: 25px;
 
 }
 nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

 nav .inner ul li {
  margin: 0;
  border-bottom: 1px solid #333;
}
 nav .inner ul li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  padding: 1rem;
  transition-duration: 0.2s;
}
 nav .inner ul li a:hover {
  background-color: #e4e4e4;
}
 .toggle-btn {
  display: block;
  position: fixed;
  top: 10px;
  right: 30px;
  width: 30px;
  height: 30px;
  z-index: 3;
  cursor: pointer;
}
 .toggle-btn span {
  position: absolute;
  display: block;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  transition: all 0.5s;
  border-radius: 4px;
 }
 .toggle-btn span:nth-child(1) {
  top: 4px;
 }
 .toggle-btn span:nth-child(2) {
  top: 14px;
 }
 
 .toggle-btn span:nth-child(3) {
  bottom: 4px;
 }
 .open .toggle-btn span {
  background-color: #fff;
 }
 .open .toggle-btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg)
 }
 .open .toggle-btn span:nth-child(2) {
  opacity: 0;
 }
 .open .toggle-btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg)
 }
 
 #mask {
  display: none;
  transition: 0.5s;
 }
 
 .open #mask {
  display: block;
  background-color: #000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  opacity: 0.3;
  cursor: pointer;
 }
 
 }
#hero {
  text-align: center;
}
#hero img {
  width: 1000px;
}
#top {
    border-radius: 20px;

 }
h1 {
  text-align: center;
  margin-top: 100px;
  padding: 30px;
} 

#top .flex {
  display: flex;
}
#top img {
  padding: 10px;
}
#notice {
  background-color: pink;
}
#notice a {
  color: black;
  font-size: 18px;
}
#notice p {
  text-align: center;
}

.design08 {
 width: 100%;
 border-collapse: collapse;
 border-spacing: 0;
}
.design08 th {
 padding: 10px 0;
 background: #778ca3;
 border: solid 1px #666666;
 color: #ffffff;
 text-align: left;
}
.design08 .table_top {
    padding-left: 10px;
}
.design08 td {
 padding: 10px;
 border: solid 1px #666666;
}
.design08 td:first-child {
 background: #e9faf9;
}
@media screen and (max-width:600px) {
#hero img {
  margin-top: 60px;
}
}

#contents .flex {
  display: flex;
  margin-top: 40px;

}
#contents .box img{
  width: 500px;
  padding: 10px;

}

.bun {
  font-size: 15px;
  font-weight: 500;
  max-width: 700px;
}
.t-h2 {
  padding: 10px;
}

#access .flex {
  display: flex;
}
#access .flex .box {
  width: 50%;
  border-radius: 20px;
  margin-top: 20px;
  padding: 10px;
  margin-left: 10px;

}
#access address {
  font-style: normal;
  }
#access p {
  font-size: 15px;
}
#access address ul li {
  font-size: 18px;
}
#access address img {
margin: 20px 0;
}

@media screen and (max-width:600px) {

#contents .flex {
    flex-direction: column;
  }
#contents .box:nth-child(1) {
  order: 2;
}
#contents .box:nth-child(2) {
  order: 1;
}

#contents .box img{
  width: 100%;

}


#access .flex {
flex-direction: column;

}
#access iframe {
max-width: 100%;
height: auto;
} 
#access .box p {
text-align: left;
}
#access ul li span {
display: inline-block;
}
aside {
text-align: center;
}
#access .flex .box {
  width: 100%;
}
}
h2 {
  font-size: 25px;
  text-align: center;
  padding: 30px;
  margin-top: 80px;
}

.question {
  text-align: center;
  margin-top: 50px;
}

#photo .flex {
  display: flex;
}
#photo p {
  font-size: 14px;
  max-width: 200px;
}
.photo-a {
  width: 200px;

}
.arrow {
  width: 15px;
  height: 15px;
  margin: 60px 10px;
}
@media screen and (max-width:600px) {
#photo .flex {
  flex-direction: column;
}
.photo-a {
  width: 100%;

}
#photo p {
  font-size: 14px;
  max-width: 100%;
}

.arrow {
  display: none;
}
  
}

   
   /*---------------------------------
トップへもどるボタン
---------------------------------*/

.go-top{
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 9999;
}
.go-top a{
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #E94E66;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: black;
  text-decoration: none;
}

.go-top a:hover{
    opacity: 0.8;
  }

@media screen and (max-width:600px) {

.go-top{
position: fixed;
z-index: 9999;
bottom: 10px;
left: 10px;

}
}


/*---------------------------------
フッター
---------------------------------*/


   /*--------------------------------------------
   FOOTER
   ---------------------------------------------*/
   
   #footer{ clear:both;  overflow:hidden;}
   
   
   #footer ul li a{text-decoration: none; line-height: 1.0; font-size: x-small; }
   
   #footer ul li a:link{color: #272727; }
   
   #footer ul li a:visited{color: #272727;}
   
   #footer ul li a:hover{color: #272727; text-decoration: underline;  }
   
   #footer ul li a:active{color: #272727; text-decoration: underline;  }
   
   
   #footer {
     position: relative;
   }
   
   #searchStore {
     position: fixed;
     z-index: 10;
     backface-visibility: hidden;
     will-change: opacity;
     transition: opacity 0.3s ease-in;
   }
   
   #searchStore.is-absolute {
     position: absolute;
   }
   
   #searchStore img {
     display: block;
     width: 100%;
     max-width: 100%;
     height: auto;
   }
   
   @media screen and (max-width: 768px) {
     #searchStore {
       right: calc(20 * 100vw / 750);
       width: calc(300 * 100vw / 750);
       height: calc(300 * 100vw / 750);
     }
     #searchStore.is-absolute {
       top: calc(-200 * 100vw / 750) !important;
     }
     #searchStore:not(.is-absolute) {
       bottom: calc(20 * 100vw / 750) !important;
     }
   }
   
   @media screen and (min-width: 769px) and (max-width: 9366px) {
     #searchStore {
       right: calc(20 * 100vw / 1366);
       width: calc(120 * 100vw / 1366);
       height: calc(120 * 100vw / 1366);
     }
     #searchStore:hover {
       opacity: 0.7;
     }
     #searchStore.is-absolute {
       top: calc(-140 * 100vw / 1366);
     }
     #searchStore:not(.is-absolute) {
       bottom: calc(20 * 100vw / 1366);
     }
   }
   
   @media print, screen and (min-width: 9200px) {
     #searchStore {
       right: 20px;
       width: 120px;
       height: 120px;
     }
     #searchStore.is-absolute {
       top: -140px;
     }
     #searchStore:not(.is-absolute) {
       bottom: 20px;
     }
   }
   
   #footerContacts {
     background-repeat: no-repeat;
     background-size: cover;
     background-color: #F1B0B2;
   }
   
   #footerContacts .wrap {
     position: relative;
   }
   #footerContacts p {
       width: calc(145 * 100vw / 1366);
       height: calc(145 * 100vw / 1366);
       font-size: calc(20 * 100vw / 1366);
       line-height: 1.2;
       left: calc(275 * 100vw / 1366);
       top: calc(-22 * 100vw / 1366);
   }
   #footerContacts p {
     position: absolute;
     background: url("img/bg_text02.png") center / contain no-repeat;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     letter-spacing: -0.04em;
     font-weight: 700;
     transform: rotate(-15deg);
   }
   
   #footerContacts h3 {
     text-align: center;
     font-weight: 700;
   }
   
   #footerContacts ul a {
     background-color: #fff;
     color:#F1B0B2;
     background-position-y: center;
     background-repeat: no-repeat;
     display: flex;
     flex-direction: column;
     justify-content: center;
     font-weight: 700;
   }
   
   #footerContacts ul a span {
     display: block;
     text-align: center;
     font-weight: 400;
     color: #333;
   }
   
   #footerContacts li:nth-child(1) a {
     background-image: url("img/tel03.png");
   }
   
   
   @media screen and (max-width: 768px) {
     #footerContacts {
       /*background-image : url("/ren1909/images/footer/bg_sp.png");*/
       background-position: 0 0;
     }
     #footerContacts .wrap {
       padding-top: calc((100 - 5) * 100vw / 750);
       padding-bottom: calc(148 * 100vw / 750);
     }
     #footerContacts p {
       width: calc(181 * 100vw / 750);
       height: calc(181 * 100vw / 750);
       font-size: calc(25 * 100vw / 750);
       line-height: 1.2;
       left: calc(31 * 100% / 750);
       top: calc(-47 * 100vw / 750);
     }
     #footerContacts h3 {
       font-size: calc(36 * 100vw / 750);
       line-height: 1.28;
     }
     #footerContacts ul {
       margin-top: calc((30 - 3) * 100vw / 750);
     }
     #footerContacts li+li {
       margin-top: calc(40 * 100vw / 750);
     }
     #footerContacts ul a {
       width: calc(670 * 100vw / 750);
       height: calc(120 * 100vw / 750);
       border-radius: calc(60 * 100vw / 750);
       background-size: auto calc(90 * 100vw / 750);
       background-position-x: calc(20 * 100vw / 750);
       display: flex;
       align-items: center;
       flex-direction: column;
     }
     #footerContacts li:nth-child(1) a {
       font-size: calc(50 * 100vw / 750);
     }
     #footerContacts li:nth-child(1) a span {
       font-size: calc(26 * 100vw / 750);
       margin-top: calc(6 * 100vw / 750);
     }
     #footerContacts li:nth-child(2) a {
       font-size: calc(34 * 100vw / 750);
     }
   }
   
   @media print, screen and (min-width: 769px) {
     #footerContacts {
       /*background-image : url("/ren1909/images/footer/bg.png");*/
       background-position-y: top;
       background-size: auto 100%;
       background-position-x: calc(50vw - calc(95 * 100vw / 1366));
     }
     #footerContacts ul {
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
     }
     #footerContacts ul a:hover {
       opacity: 0.9;
     }
   }
   
   @media screen and (min-width: 769px) and (max-width: 9366px) {
     #footerContacts .wrap {
       padding-top: calc((54 - 3) * 100vw / 1366);
       padding-bottom: calc(62 * 100vw / 1366);
     }
     #footerContacts p {
       width: calc(145 * 100vw / 1366);
       height: calc(145 * 100vw / 1366);
       font-size: calc(20 * 100vw / 1366);
       line-height: 1.2;
       left: calc(275 * 100vw / 1366);
       top: calc(-22 * 100vw / 1366);
     }
     #footerContacts h3 {
       font-size: calc(24 * 100vw / 1366);
       line-height: 1.25;
     }
     #footerContacts ul {
       margin-top: calc((30 - 3) * 100vw / 1366);
     }
     #footerContacts li+li {
       margin-left: calc(20 * 100vw / 1366);
     }
     #footerContacts ul a {
       width: calc(400 * 100vw / 1366);
       height: calc(70 * 100vw / 1366);
       border-radius: calc(35 * 100vw / 1366);
       background-size: auto calc(53 * 100vw / 1366);
       background-position-x: calc(10 * 100vw / 1366);
     }
     #footerContacts li:nth-child(1) a {
       padding-left: calc(20 * 100vw / 1366);
       font-size: calc(32 * 100vw / 1366);
     }
     #footerContacts li:nth-child(1) a span {
       font-size: calc(14 * 100vw / 1366);
       margin-top: calc(3 * 100vw / 1366);
     }
     #footerContacts li:nth-child(2) a {
       /*padding-left : calc( 40 * 100vw / 1366 );*/
       font-size: calc(22 * 100vw / 1366);
     }
   }
   
   @media print, screen and (min-width: 9200px) {
     #footerContacts {
       background-position-x: calc(50vw - 95px);
     }
     #footerContacts .wrap {
       padding-top: calc(54px - 3px);
       padding-bottom: 62px;
     }
     #footerContacts p {
       width: 145px;
       height: 145px;
       font-size: 20px;
       line-height: 1.2;
       left: 275px;
       top: -22px;
     }
     #footerContacts h3 {
       font-size: 24px;
       line-height: 1.25;
     }
     #footerContacts ul {
       margin-top: calc(30px - 3px);
     }
     #footerContacts li+li {
       margin-left: 20px;
     }
     #footerContacts ul a {
       width: 400px;
       height: 70px;
       border-radius: 35px;
       background-size: auto 53px;
       background-position-x: 10px;
     }
     #footerContacts li:nth-child(1) a {
       padding-left: 20px;
       font-size: 32px;
     }
     #footerContacts li:nth-child(1) a span {
       font-size: 14px;
       margin-top: 3px;
     }
     #footerContacts li:nth-child(2) a {
       padding-left: 40px;
       font-size: 22px;
     }
   }
   
   #footerLinks {
     background-color: #2c2c2c;
   }
   
   #footerLinks .wrap {
     position: relative;
   }
   
   #footerLinks .wrap>a {
     position: absolute;
     bottom: calc(100% - 1px);
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     justify-content: center;
     align-items: flex-end;
     background: url("img/bg_pagetop.png") center bottom / contain no-repeat;
     color: #878787;
   }
   
   #footerLinks .wrap>a:before {
     content: "";
     display: block;
     position: absolute;
     left: 50%;
     transform: translateX(-50%);
     background: url("/ren1909/images/ui/icon/arrowup.png") center / contain no-repeat;
   }
   
   #footerLinks ul a, #footerLinks li {
     color: white;
   }
   
   #footerLinks p {
     text-align: center;
     color: #707070;
   }
   #footerLinks .wrap ul .fontSC {
     color: white;
   }
   #footerFixedNav {
     display: none;
   }
   
/*--------------------------------------------
Footer FixedNav
---------------------------------------------*/
@media screen and (max-width: 768px) {
     #footerFixedNav {
       position: fixed;
       left: 0;
       bottom: 0;
       z-index: 10;
       backface-visibility: hidden;
       will-change: opacity;
       transition: opacity 0.3s ease-in;
     }
     #footerFixedNav.is-absolute {
       position: absolute;
     }
     #footerFixedNav ul {
       display: flex;
       flex-wrap: wrap;
     }
     #footerFixedNav ul li {
       width: calc(250 * 100vw / 750);
     }
     #footerFixedNav ul li a {
       display: block;
       width: 100%;
       height: 100%;
     }
     #footerFixedNav ul li a img {
       max-width: 100%;
     }
   }
   
   @media screen and (max-width: 768px) {
     #footerLinks .wrap {
       padding-top: calc(82 * 100vw / 750);
       padding-bottom: calc(30 * 100vw / 750);
     }
     #footerLinks .wrap>a {
       width: calc(250 * 100vw / 750);
       height: calc(98 * 100vw / 750);
       font-size: calc(28 * 100vw / 750);
     }
     #footerLinks .wrap>a:before {
       width: calc(20 * 100vw / 750);
       height: calc(12 * 100vw / 750);
       top: calc(27 * 100vw / 750);
     }
     #footerLinks ul li {
       font-size: calc(28 * 100vw / 750);
     }
     #footerLinks li+li {
       margin-top: calc(32 * 100vw / 750);
     }
     #footerLinks p {
       margin-top: calc(90 * 100vw / 750);
       font-size: calc(24 * 100vw / 750);
     }
   }
   
   @media print, screen and (min-width: 769px) {
     #footerLinks ul {
       display: flex;
       align-items: center;
       justify-content: center;
       text-align: center;
     }
     #footerLinks li+li:before {
       content: "|";
       margin-left: 1.25em;
       margin-right: 1.25em;
     }
   }
   
   @media screen and (min-width: 769px) and (max-width: 9366px) {
     #footerLinks .wrap {
       padding-top: calc(48 * 100vw / 1366);
       padding-bottom: calc(42 * 100vw / 1366);
     }
     #footerLinks .wrap>a {
       width: calc(120 * 100vw / 1366);
       height: calc(48 * 100vw / 1366);
       font-size: calc(14 * 100vw / 1366);
     }
     #footerLinks .wrap>a span {
       font-size: calc(28 * 100vw / 1366);
       display: block;
       white-space: nowrap;
       transform: scale(0.5);
       transform-origin: center bottom;
     }
     #footerLinks .wrap>a:before {
       width: calc(10 * 100vw / 1366);
       height: calc(6 * 100vw / 1366);
       top: calc(22 * 100vw / 1366);
     }
     #footerLinks ul li {
       font-size: calc(14 * 100vw / 1366);
     }
     #footerLinks p {
       margin-top: calc(32 * 100vw / 1366);
       font-size: calc(12 * 100vw / 1366);
     }
   }
   
   @media print, screen and (min-width: 9200px) {
     #footerLinks .wrap {
       padding-top: 48px;
       padding-bottom: 42px;
     }
     #footerLinks .wrap>a {
       width: 120px;
       height: 48px;
       font-size: 14px;
     }
     #footerLinks .wrap>a:before {
       width: 10px;
       height: 6px;
       top: 22px;
     }
     #footerLinks ul li {
       font-size: 14px;
     }
     #footerLinks p {
       margin-top: 32px;
       font-size: 12px;
     }
   }
   
   
   





/*---------------------------------
トップへもどるボタン
---------------------------------*/

.go-top{
  position: fixed;
  bottom: 100px;
  left: 30px;
  z-index: 9999;
  
}
.go-top a{
  
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #E94E66;
  border-radius: 50px;
  text-align: center;
  line-height: 50px;
  color: black;
  text-decoration: none;

  

  
}

.go-top a:hover{
    opacity: 0.8;
  }
  @media screen and (max-width:600px) {
    .go-top {
      position: relative;
      left: 0;
      bottom: 0;
    }
  }
