@charset "UTF-8";
:root {
  --themeyellow:#EFD669;
  --themered:#AE3923;
  --themewhite: #F3F0EB;
  --themebeige: #C0A17B;
  --themeblack: #3E3A39;
  --beige40: #e6d9ca;
}

/*第一弾アップ
.header_bot_about{
  opacity: .3;
}

.header_parent_under {
  height: 50px;
  color: var(--white);
  line-height: 50px;
  border-bottom: 1px solid var(--themelightnavy);
  cursor: pointer;
  transition: .3s;
  padding-left: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  position: relative;
  margin: 15px 0 0 0;
  font-size: 14px;
  opacity: .4;
}

.header_parent_under::before{
    content: "";
    height: 1.5px;
    background: var(--themelightnavy);
    width: 100%;
    position: absolute;
    bottom: 3px;
    left: 0;
}*/


header{
	height: 60px;
	position: fixed;
	width: 100%;
  top: 0;
  left: 0;
  z-index: 3000;
  font-family:  "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;

}
header a {
    text-decoration: none;
}


#fixed-header { 
  width: 100%;
  height: 60px;
}


.iks_logo_left{
	height: 30px;
  position: absolute;
  top: 16px;
  left: 15px;
  display: inline-block;
  z-index: 700;
}
.iks_logo_left::after{
    content: "";
    position: absolute;
    display: block;
    background: #fff;
    filter: blur(10px);
    width: 70%;
    height: 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.iks_logo_left img,.iks_logo_right img{
  width: 100%;
  height: 100%;
}

.iks_logo_right{
  display: inline-block;
    width: auto;
    height: 30px;
    position: absolute;
    top: 17px;
    left: 55px;
    z-index: 3000;
}







#header_bot{
	height: 75px;
	width: 100%;
	z-index: 9900;
	background: white;
	position: fixed;
	bottom: 0;
  left: 0;
	display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  border-top: solid 1.5px var(--themered);

}



#header_bot_list{
list-style: none;
display: flex;
justify-content: center;
width:100%;
height: 100%;
}

#header_bot_list>a{
  width:calc(100%/5);
  display: flex; 
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  row-gap: 4px;
  text-decoration: none;
}

#header_bot_list>a>img{
  height: 22px;
}
#header_bot_list>a>p{
  color: var(--themered);
  font-size: 9.5px;
  white-space: nowrap;
  font-family:  "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
}





/*ハンバーガーの仕組み*/
#header_ham {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: #DFD0BD;
  transform: translateX(100%);
  opacity: 0;
  z-index: 999;
}

#header_ham {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), visibility 0.8s;
}

#header_ham.panelactive {
  visibility: visible;
  opacity: 1;
}


/* 表示状態 */
#header_ham.panelactive {
  transform: translateX(0);
  opacity: 1;
}
.header_ham_content {
  width: 100%;
  padding: 80px 0 30px;
}

.iks_logo_left_ham{
  height: 30px;
  position: absolute;
  top: 16px;
  left: 15px;
  display: inline-block;
  z-index: 3000;
}

.iks_logo_left_ham img,.iks_logo_right_ham img{
  width: 100%;
  height: 100%;
}

.iks_logo_right_ham{
    height: 30px;
    position: absolute;
    top: 17px;
    left: 55px;
    z-index: 3000;
}


/*ハンバーガーメニュー*/
/*========= ナビゲーションのためのCSS ===============*/

.header_parent {
  position: relative;
  height: 30px;
  line-height: 50px;
  cursor: pointer;
  transition: .3s;
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0 10%;
  opacity: 0;
  transform: translateY(30px);
}

/* スライドイン */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header_parent.open {
  color: var(--themered);
}

.header_parent:after {
  content: "";
  position: absolute;
  right: 3%;
  top: 70%;
  width: 8px;
  height: 8px;
  border-top: solid 2px var(--themeblack);
  border-right: solid 2px var(--themeblack);
  transform: rotate(135deg);
  transition: all 0.6s ease;
}


/* ▼ 赤線（クリックで左から伸びる） */
.header_parent::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--themered);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--before-transition, transform 0.6s ease);
}

/* open時に左から右へ */
.header_parent.open::before {
  transform: scaleX(1);
}

/* ▼ open時の矢印 */
.header_parent.open:after {
  transform: rotate(-45deg);
  top: 80%;
  border-top: solid 2px var(--themered);
  border-right: solid 2px var(--themered);
}



.header_child {
  padding: 10px 10%;
  overflow: hidden;
  height: 0;
  transition: height 0.6s ease;
  pointer-events: none;
}

.header_child.open {
  pointer-events: auto;
  height: auto;
}





.header_childtheme {
  height: 38px;

}
.header_child a {
    color: var(--themeblack);
    display: block;
    margin: 9px 0;
    font-size: 13px;
    padding: 3px;
    font-weight: bold;
    font-family:  "Noto Serif JP", serif;
    font-style: normal;
    text-decoration: none;
       border-bottom: .5px solid var(--themeblack);
}



.hamburger-fade {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-fade__wrapper {
  position: relative;
  margin: -35px -10px 0px auto;
  width: 45px; /* 円の大きさ */
  height: 45px;
  background-color: var(--themered); /* 円の色 */
  border-radius: 50%; /* 円にする */
  display: flex; /* 中央揃え */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  scale: 0.8;
  z-index: 0;
    box-shadow: 0 0 10px 2px var(--themewhite);
}





.hamburger-fade__line {
  position: absolute;
  left: 9px;
  height: 1.7px;
  background-color: var(--themewhite);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-fade__line:nth-child(1) { top: 13px; width: 50%; }
.hamburger-fade__line:nth-child(2) { top: 21px; width: 60%; }
.hamburger-fade__line:nth-child(3) { top: 29px; width: 35%; }

.hamburger-fade.active .hamburger-fade__line {
  background-color: var(--themewhite);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  width: 60%;
}

.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 60%;
}




/*アクティブクラスがついたら位置を0に*/
#header_ham.panelactive{
    left: 0;
}

#header_ham-list{
    margin: 0 auto;
}
/*ナビゲーション*/
#header_ham li{
    list-style: none; 
}

#header_ham li a{
   position: relative;
   color: #eae9dc;
   text-decoration: none;
   display: inline-block;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   font-weight: bold;
   text-align: left;
   font-size: 12px;

}


#header_ham li a::after {
  position: absolute;
  bottom: 3px;
  left: 0;
  content: '';
  width: 100%;
  height: 0.5px;
  background: #eae9dc;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#header_ham li a:hover::after {
  transform: scale(1, 1);
}






/*========= ボタンのためのCSS ===============
.header_openbtn div{
  position: relative;
  cursor: pointer;
  height:24px;
  width: 100%;
}*/
   
/*×に変化
.header_openbtn div span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 1.5px;
    background-color: #eae9dc;
    width: 26px;
  }

.header_openbtn div span:nth-of-type(1) {
   top:20%;   
}

.header_openbtn div span:nth-of-type(2) {
   top:50%;
}

.header_openbtn div span:nth-of-type(3) {
   top:80%;
}

.header_openbtn.active div span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 30%;
}
.header_openbtn.active div span:nth-of-type(2) {opacity: 0;}

.header_openbtn.active div span:nth-of-type(3){
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(45deg);
    width: 30%;
}*/ 

/*ハンバーガーメニュー fin*/






.pcheader{
  display: none;
}


.display_none{display: none!important;}





/*PC版*/
@media screen and (min-width:1024px){


header{height: 65px;}
#header_bot,.iks_logo_left,.iks_logo_right{
  display: none;
}


#fixed-header { 
  height: 65px;
}


.pcheader {
  display: flex;
  justify-content: space-between;
  height: 100%;
  align-items: center;
  background-color: #ECE3D7;
  position: relative;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  width: 100%;
  top: 0;
  z-index: 3000;
}

.iks_logo_pc{
  height: 40px;
  margin-left: 20px;
  transition: all .3s;

}
.iks_logo_pc img{
  width: 100%;
  height: 100%;
}

.iks_logo_pc:hover{
  opacity: .8;
}


.header_nav{
  display: flex;
  align-items: center;
  margin-right: 20px;
  height: 100%;
}


.headercontent {
  font-size: 14px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.headercontent p {
  font-size: 14px;
  color: var(--themeblack);
  white-space: nowrap;
  margin-bottom: 0 !important;

}

/*第一弾アップ*/
.headercontent_under {
  font-size: 14px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;

}
.headercontent_under p {
  font-size: 14px;
  color: var(--themeblack);
   opacity: .7;
}



.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 65px;
    left: 0;
    padding-left: 0;
    font-weight: 400;
}
.others_lists {
  display: none;/*デフォルトでは非表示の状態にしておく*/
    position: absolute;
    top: 65px;
    right: 0;
}
.headercontent:hover {
  background-color: var(--themered);
}
.headercontent:hover p{
  color: white;
}
.headercontent:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.headercontent:hover .others_lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}




.dropdown__list {
    background-color: var(--themered);
    list-style: none;
    height: 50px;
    transition: all .3s;
    position: relative;
    width: 300px;
    padding-left: 0;
}


.dropdown__list:hover{
  background-color: #8F3727;

}

.dropdown__list a {
    display: flex;
    align-items: center;
    color: var(--themewhite);
    text-decoration: none;
    position: relative;
    height: 100%;
    width: 100%;
    padding-left: 20px;
}

.dropdown__list div{
    display: inline-block;
    width: 20px;
    height: 0.5px;
    position: absolute;
    top: 50%;
    right: 10px;
    transition: all .3s;
    background-color: var(--white);
}
.dropdown__list div::after{
  content: "";
  position: absolute;
  height: 0.5px;
  width: 7px;
  transform:rotate(45deg);
  right: 0px;
  top: -2.5px;
  background-color: var(--white);
}



.mypage_btn,.english_btn {
        width: fit-content;
        padding: 0 28px;
        font-size: 12px;
        line-height: 33px;
        background-color: var(--themered);
        color: var(--themewhite);
        text-align: center;
        cursor: pointer;
        transition: .3s;
        margin-left: 15px;
        position: relative;
}
.mypage_btn{
        padding: 0 28px 0 36px;
        display: none !important;
      }


.english_btn{
  background-color: var(--themeblack) !important;
  margin-left: 60px !important;
}
.mypage_btn::before{
         position: absolute;
        content: "";
        background-image: url(https://ikkyosai.com/visitor/56/img/icon/header_mypage_icon.svg);
        width: 16px;
        height: 15px;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
}

.english_btn:hover,.mypage_btn:hover {
  opacity: .7;
}
.display_none{display: none!important;}
}