@charset "utf-8";



/* 確認用に一時記述----------*/
/*header{ background-color: rgb(172, 172, 172); }*/
/*main{border: solid 1px red;}*/
/*footer{ background-color: #FAF1F6 }*/




/* 共通 ------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.4em;
  letter-spacing: 0.2rem;

  /*background*/
  /*background-color: #486d46;             背景色 */
  /*
	background-image: url("../images/img_bg.jpg");
	background-attachment: fixed;
	background-size: cover; 
	background-position: center center;
  */
}

body::before {
  /*
  content:””;
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
	background-image: url("../images/img_bg.jpg");
  background-size:cover;
  */
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background-repeat:no-repeat;
  background-position:50% 100%;
  /*background-image:url(https://web.runland.co.jp/wp-content/uploads/2020/04/20200510_bg.jpg);*/
  background-image: url("../images/img_bg.jpg");
  background-size:cover;
}

header {
  position: relative;
  width: 1080px;
  height: auto;
  margin: 0 auto;
}
@media screen and ( max-width:640px ) {
  header {
    width: 100%;
    padding: 30px 15px 0 15px;
  }
}



footer{ 
  margin-top: 150px;
  padding: 30px 0 50px 0;
  background-color: #FAF1F6 ;
  background-color: rgba(196, 87, 141, 0.08);
}



/* #fCopyrights 設定 -----------------------------*/

#fCopyrights{
  text-align: center;
}

#fCopyrights small {
  line-height: 2.4rem;
}



/* font 設定 -----------------------------*/
.title {
  text-align: center;
  margin-top: 50px;
}

h1 {
  font-size: 2.4rem;
  font-weight: bold;
}

h2 { /* 必ず1行に収めること */
  display: inline-block;
  font-size: 1.8rem;
  font-weight: normal;
  padding-bottom: 10px;
  border-bottom: 1px solid gray;
}

h3 {
  font-size: 1.8rem;
  font-weight: normal;
}

.text {
  margin-top: 50px;
}

p {
  font-size: 1.8rem;
  padding-bottom: 3.6rem;
}

a {
  font-size: 2.0rem;
  text-decoration: none;
}
a p::after {
  content: " ＞";
}

/* color 設定 -----------------------------*/

.sakura {
  color: #C4578D;
}

.moisteane {
  color:#4C42A8;
}

/* main 設定 -----------------------------*/
main {
  width: 1080px;
  height: auto;
  margin: 0 auto;
  padding-bottom: 0;
}
@media screen and ( max-width:640px ) {
  main {
    width: 100%;
    padding: 0 20px;
  }
}


/* article,section 設定 -----------------------------*/

section {
  margin-top: 150px;
}

.topSpace {
  margin-top: 150px;
}


/* logo 設定 -----------------------------*/

#logo {
  text-align: center;
  padding-top: 30px;
  width: 1080px;
  height: auto;
}
@media screen and ( max-width:640px ) {
  #logo {
    padding-top: 10px;
    width: 100%;
    height: auto;
  }
}

#logo img {
  display: inline-block;
  width: auto;
  height: 50px;
}
@media screen and ( max-width:640px ) {
  #logo img {
    width: 200px;
    height: auto;
  }
}



/* flex 設定 -----------------------------*/

.fb {
  display:flex;
  flex-direction: row; /* 横 */
}
@media screen and ( max-width:640px ) {
  .fb {
    flex-direction: column; /* 縦 */
  }
}

.fbItem {
	flex: 1; /* 主軸に沿って、各要素の割合 */	
	padding: 15px;
}

@media screen and ( max-width:640px ) {
	.fbItem {
		padding: 0px;
	}	
}



/*=== スマホ・PC切り替え用  ===*/
.disp-mb {
	display: none!important;
}
.disp-pc {
	display: inline!important;
}
@media screen and ( max-width:640px ){
	.disp-mb {
		display: inline!important;
	}
	.disp-pc {
		display: none!important;
	}
}




/*-ハンバーガーメニュー 設定 --------------------------------*/
/*-▼--------------------------------*/
/* ALL */

.hamburger {
  display: inline-block;
  position: absolute;
  padding-top: 30px;
  z-index: 100;
}
@media screen and ( max-width:640px ) {
  .hamburger {
    padding-top: 15px;
  }
}

.hamburger .line{
  width: 50px;
  height: 5px;
  background-color: black;
  display: block;
  margin: 0px auto 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and ( max-width:640px ) {
  .hamburger .line{
    width: 30px;
    height: 3px;
    margin: 0px auto 4px auto;
  }
}

.hamburger:hover{
  cursor: pointer;
}

/* ONE */
#hamburger-1.is-active .line:nth-child(2){
  opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1){
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  -o-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg);
}
@media screen and ( max-width:640px ) {
  #hamburger-1.is-active .line:nth-child(1){
    -webkit-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -o-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
}

#hamburger-1.is-active .line:nth-child(3){
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  -o-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}
@media screen and ( max-width:640px ) {
  #hamburger-1.is-active .line:nth-child(3){
    -webkit-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -o-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
}
/*-▲--------------------------------*/




/* #global 設定 -----------------------------*/

#global {
  width: 100%;
  height: auto;
  position: relative;
  /*background: seagreen;*/
}

#global #headerLogo a {
  display: block;
  /*border: 1px solid blue;*/
  width: 200px;
  height: 70px;
  background-image: url("../images/irud_logo_la.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
}
@media screen and ( max-width:640px ) {
  #global #headerLogo a {
    width: 100px;
    height: 70px;
    background-image: url("../images/irud_logo_lo.png");
    background-position: top center;
    margin: 0 auto;
  }
}


/*メニュー 設定 ------------------------*/
.is-on {
  display: block!important;
}

#modal-overlay {
    display:none;
}
@media screen and ( max-width:640px ) {
  #modal-overlay {
    display: block;
    z-index:5;
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh; /* iPhoneの上下のナビゲーションが隠れる分大きめに */
    background-color:rgba(240, 240, 240, 1.0);
  }
}


/* instagram 設定 -----------------------------*/
#instagram {
  display: inline-block;
  position: absolute;
  padding-top: 30px;
  z-index: 100;
  top:0;
  right: 0;
}
#instagram img {
	width: 50px;
	height: 50px;
}
@media screen and ( max-width:640px ) {
  #instagram {
    padding-top: 35px;
    padding-right: 15px;
  }
  #instagram img {
    width: 40px;
    height: 40px;
  }
}


/* #global .globalMenu 設定 -----------------------------*/

#global .globalMenu {
  padding-top: 20px;
  position: absolute; 
  top: 0;
  right: 0;
  z-index: 10;

  width: 100%;
  /*padding-top: 100px;*/
  /*background: rgb(139, 137, 46);*/
  display: none;
}
/*@media screen and ( max-width:640px ) {
 #global .globalMenu {
    width: 100%;
    padding-top: 100px;
    background: rgb(139, 137, 46);
    display: none;
  }
}*/

.menu  {
  padding: 0;
  list-style: none;
}
.menu li {
  line-height: 4rem;
}
.menu a::before {
  content: "＜ ";
}




