@charset "utf-8";
/*
Theme Name: senkawapj
Theme URI: 

フォント一覧：
font-family: "Zen Kaku Gothic New", sans-serif;　（ゴシック） w400,700,900
font-family: "Zen Maru Gothic", sans-serif;　（丸ゴシック）　w400,500,700,900
font-family: font-family: "Montserrat", sans-serif;　（英文　数字） w100〜900
*/


/*-----------------------------------------------
　ヘッダー
--------------------------------------------------*/
.header{
  position: relative;
  width: 100vw;
  min-width: 1350px;
  z-index: 999;
  background-color: #fff;
}
.header__outer{
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  width: 100vw;
  height: 60px;
  background-color: #fff;
}
.header__btn{
  position: fixed;
  top: 0;
  right: 60px;
  width: auto;
  height: 60px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: var(--font-size-S);
  font-weight: 700;
  z-index: 999;
}
.header__btn a{
  display: block;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  height: 60px;
  text-align: center;
  background-color: var(--main-color2);
  transition: all .3s ease-in-out;
}
.header__btn a img{
  width: 25px;
  margin-right: 10px;
}
.header__btn a:hover{
  opacity: 0.85;
}
.header__logo{
  width: fit-content;
  height: 100%;
  margin-left: 3%;
}
.header__logo a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: all .3s ease-in-out;
}
.header__logo a:hover{
  opacity: .6;
}
.header__logo a img{
  height: 60%;
}
.header__nav{
  width: 80vw;
  margin-right: 225px;
  font-size: var(--font-size-S);
}
.header__nav h2{
  font-size: var(--font-size-S);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
}
.header__nav ul{
  display: flex;
  justify-content: right;
  justify-items: center;
}
.header__nav ul li{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: fit-content;
  height: 60px;
  line-height: 1.2;
  white-space: nowrap;
}
.header__nav ul li::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background-color: var(--text-color);
}
.header__nav ul li p{
  font-size: 10px;
  font-weight: 300;
}
.header__nav ul li a{
  display: block;
  width: 100%;
  padding: 15px 1vw;
  color: var(--text-color);
}
.header__nav ul li a:hover{
  color: var(--main-color1);
  transition: all .3s ease-in-out;
}
/* ドロップダウン式サブメニュー */
.sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  white-space: nowrap;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  visibility: hidden; 
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.header__nav ul li:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.sub-menu li a{
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 15px 15px 30px;
}
.sub-menu li a::after{
  content: '>';
  position: absolute;
  top: 45%;
  left: 10px;
  transform: translateY(-50%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 11px;
  font-weight: 500;
  transition: all .3s ease-in-out;
}
.sub-menu li a:hover::after {
  transform: translateY(-50%) translateX(3px);
}
/* サブメニュー調整用 */
.header__nav ul li ul li{
  justify-content: left;
  text-align: left;
  width: 100%;
  height: 40px;
}
.header__nav ul li ul li::after{
  display: none;
}
.header__nav ul li ul li a{
  padding-left: 25px;
}

/*-- ハンバーガーメニューに関するCSS --*/
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: var(--main-color1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}
/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 1px;
  width: 25px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}
/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}
/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}
.drawer_open_text{
  font-family: 'Roboto', sans-serif;
  margin-top: 25px;
  font-size: 10px;
  font-weight: 300;
  color: #fff;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
/*-- //ハンバーガーメニューに関するCSS --*/
  
/*-- メニューのデザインに関するCSS --*/
.nav_content {
  width: 450px;
  height: 100%;
  position: fixed;
  top: 0;
  right: -450px;
  transform: translateY(0) translateX(0);
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.9);
  text-align: left;
  transition: all .5s ease-in-out;
  z-index: 998;
  overflow-y: auto;
}
/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  top: 0;/* メニューを画面に入れる */
  right: 0;
  transform: translateY(0) translateX(0);
}
.nav__outer{
  width: 100%;
  margin: 20px auto 0;
}
.nav__logo{
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
}
.nav__logo img{
  width: 40%;
  margin: 0 auto;
}
.nav__list{
  width: 90%;
  margin: 0 auto;
}
.nev__list_btn{
  width: 90%;
  margin: 10px auto 20px;
}
.nev__list_btn ul{
  display: flex;
  justify-content: space-between;
}
.nev__list_btn ul li{
  width: 45%;
}
.nev__list_btn ul li span{
  display: block;
  margin-top: 5px;
  font-size: var(--font-size-S);
}
.nev__list_btn ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: var(--font-size-SS);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  background-color: var(--main-color1);
  border-radius: 5px;
  transition: all .3s ease-in-out;
}
.nev__list_btn ul li a:hover{
  opacity: 0.6;
}
.nev__list_btn ul li img{
  display: block;
  width: 25%;
  margin: 10px auto 0;
}
.nav__list ul li{
  width: 100%;
  border-top: 1px solid var(--text-color);
}
.nav__list_icon1,
.nav__list_icon2{
  position: relative;
  display: inline-flex;
}
.nav__list_icon1::before{
  content: '';
  position: absolute;
  top: 23px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--main-color1);
  border-right: 2px solid var(--main-color1);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  z-index: 99;
}
.nav__list_icon1:hover::before{
  transform: rotate(45deg) translate(5px, -5px);
}
.nav__list_icon2::before{
  content: '';
  position: absolute;
  top: 23px;
  left: 16px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  z-index: 99;
}
.nav__list_icon2:hover::before{
  transform: rotate(45deg) translate(5px, -5px);
}
.nav__list ul li a{
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 15px 15px 2em;
  font-size: var(--font-size-S);
  font-weight: 400;
  letter-spacing: 0.2rem;
  transition: all .3s ease-in-out;
}
.nav__list ul li a:hover{
  background-color: #D2EDF2;
}
.nav__list ul li:last-of-type{
  border-bottom: 1px solid var(--text-color);
}
.nav__list ul > .nav__list_sub{
  padding-left: 10px;
  border-top: 1px dotted var(--text-color);
}


/*-----------------------------------------------
　レスポンシブ（タブレット）
--------------------------------------------------*/
@media screen and (max-width: 1199px) {

  .header__nav ul {
    display: none;
  }
  .nav_content {
    width: 80%;
    right: -80%;
  }
  .nav__logo img {
    width: 50%;
  }
  .nev__list_btn p br{
    display: none;
  }
  .nev__list_btn ul li a {
    height: stretch;
  }
  .nev__list_btn ul li span {
    font-size: var(--font-size-M);
  }

}


/*-----------------------------------------------
　レスポンシブ（スマホ）
--------------------------------------------------*/
@media screen and (max-width: 767px) {
  
  .header{
    width: 100%;
    min-width: auto;
  }
  .header__outer{
    width: 100%;
  }
  .header__btn{
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
  }
  .header__btn a{
    display: block;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    height: 60px;
    text-align: center;
    background-color: var(--main-color2);
    transition: all .3s ease-in-out;

    font-size: var(--font-size-M2);
  }
  .header__btn a img{
    width: 25px;
    margin-right: 10px;
  }
  .header__btn a:hover{
    opacity: 0.85;
  }
  .header__logo{
    width: fit-content;
    height: 100%;
    margin-left: 5%;
  }
  .header__logo a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    transition: all .3s ease-in-out;
  }
  .header__logo a:hover{
    opacity: .6;
  }
  .header__logo a img{
    height: 60%;
  }
  .header__nav{
    width: 80vw;
    margin-right: 225px;
    font-size: var(--font-size-S);

    display: none;
  }
  .header__nav h2{
    font-size: var(--font-size-S);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
  }
  .header__nav ul{
    display: flex;
    justify-content: right;
    justify-items: center;
  }
  .header__nav ul li{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: fit-content;
    height: 60px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .header__nav ul li::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background-color: var(--text-color);
  }
  .header__nav ul li p{
    font-size: 10px;
    font-weight: 300;
  }
  .header__nav ul li a{
    display: block;
    width: 100%;
    padding: 15px 1.4vw;
    color: var(--text-color);
  }
  .header__nav ul li a:hover{
    color: var(--main-color1);
    transition: all .3s ease-in-out;
  }
  /* ドロップダウン式サブメニュー */
  .sub-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    white-space: nowrap;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    visibility: hidden; 
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .header__nav ul li:hover .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .sub-menu li a{
    position: relative;
    display: block;
    width: 100%;
    padding: 15px 15px 15px 30px;
  }
  .sub-menu li a::after{
    content: '>';
    position: absolute;
    top: 45%;
    left: 10px;
    transform: translateY(-50%);
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 11px;
    font-weight: 500;
    transition: all .3s ease-in-out;
  }
  .sub-menu li a:hover::after {
    transform: translateY(-50%) translateX(3px);
  }
  /* サブメニュー調整用 */
  .header__nav ul li ul li{
    justify-content: left;
    text-align: left;
    width: 100%;
    height: 40px;
  }
  .header__nav ul li ul li::after{
    display: none;
  }
  .header__nav ul li ul li a{
    padding-left: 25px;
  }

  /*-- ハンバーガーメニューに関するCSS --*/
  /* チェックボックスを非表示にする */
  .drawer_hidden {
    display: none;
  }
  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background-color: var(--main-color1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
  }
  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 1px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
    transition: 0.5s;
    position: absolute;
  }
  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 8px;
  }
  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 8px;
  }
  .drawer_open_text{
    font-family: 'Roboto', sans-serif;
    margin-top: 25px;
    font-size: 10px;
    font-weight: 300;
    color: #fff;
  }
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0);
  }
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  /*-- //ハンバーガーメニューに関するCSS --*/
    
  /*-- メニューのデザインに関するCSS --*/
  .nav_content {
    width: 100%;
    height: 100%;
    right: -100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__outer{
    width: 100%;
    margin: 20px auto 0;
  }
  .nav__list{
    width: 90%;
    margin: 0 auto;
  }
  .nev__list_btn{
    width: 90%;
    margin: 10px auto 20px;
  }
  .nev__list_btn ul{
    display: block;
  }
  .nev__list_btn ul li{
    width: 100%;
  }
  .nev__list_btn ul li:last-of-type{
    margin-top: 15px;
  }
  .nev__list_btn ul li p br{
    display: none;
  }
  .nev__list_btn ul li span{
    font-size: var(--font-size-M);
  }
  .nev__list_btn ul li a{
    font-size: var(--font-size-S);
  }
  .nev__list_btn ul li a:hover{
    opacity: 1;
  }
  .nev__list_btn ul li img{
    width: 20%;
  }
  .nav__list ul li{
    width: 100%;
    border-top: 1px solid var(--text-color);
  }
  .nav__list_icon1,
  .nav__list_icon2{
    position: relative;
    display: inline-flex;
  }
  .nav__list_icon1::before{
    content: '';
    position: absolute;
    top: 23px;
    left: 8px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--main-color1);
    border-right: 2px solid var(--main-color1);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav__list_icon1:hover::before{
    transform: rotate(45deg) translate(5px, -5px);
  }
  .nav__list_icon2::before{
    content: '';
    position: absolute;
    top: 23px;
    left: 16px;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--text-color);
    border-right: 1px solid var(--text-color);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    z-index: 99;
  }
  .nav__list_icon2:hover::before{
    transform: rotate(45deg) translate(5px, -5px);
  }
  .nav__list ul li a{
    position: relative;
    display: block;
    width: 100%;
    padding: 15px 15px 15px 2em;
    font-size: var(--font-size-S);
    font-weight: 400;
    letter-spacing: 0.2rem;
    transition: all .3s ease-in-out;
  }
  .nav__list ul li a:hover{
    background-color: #D2EDF2;
  }
  .nav__list ul li:last-of-type{
    border-bottom: 1px solid var(--text-color);
  }
  .nav__list ul > .nav__list_sub{
    padding-left: 10px;
    border-top: 1px dotted var(--text-color);
  }

}





