@charset "utf-8";
/* CSS Document */
main {
  /*  margin-top: -100px;
  background: #f9f5f0;
  height: 500px;
  width: 100%;*/
  text-align: center;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 50px;
  }
}
/*=================================
HEADERMENU
===================================*/
.header nav ul li.has-child > a::before, .header nav ul li.has-child.active > a::before {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .btn__wht a, .btn__org a {
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 45px;
    font-size: 1.4rem;
    padding: 0 !important;
    background: #fd452d;
    color: #fff;
  }
  .btn__wht a {
    background: #fff;
    border: 1px solid #000;
    color: #000;
    transform: translate(15px);
  }
  .menu {
    margin: 0 auto;
    width: 1200px;
    max-width: 1200px;
    background: #fff;
    box-shadow: 3px 3px 40px rgb(0, 0, 0, 0.11);
    border-radius: 13px;
    overflow: hidden;
  }
  .menu__items {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: 500;
  }
  .menu__item__img {
    max-width: 270px;
    display: block;
    width: 22.6%;
  }
  .menu__item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .menu__item__ttl {
    width: 24%;
    padding: 50px 0 50px 75px;
  }
  .menu__item__ttl .line {
    border-right: 1px solid #e5e5e5;
    display: block;
    height: 100%;
  }
  .menu__item__link.first {
    width: 24%;
    padding: 50px 0 50px 55px;
  }
  .menu__item__link.end {
    width: 29.4%;
    padding: 50px 0;
  }
  .menu__item__link li {
    margin-bottom: 20px;
    font-weight: 400;
  }
  .menu__ttl {
    font-size: 2.0rem;
    margin-bottom: 5px;
  }
  .menu__sub__ttl {
    color: #8c8c8c
  }
}
/*========= ドロップダウン===============*/
@media screen and (min-width:769px) {
  .header__hamburger {
    display: none;
  }
  .header {
    height: 100px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
  }
  .header .logo {
    font-size: 1.3rem;
    display: flex;
    column-gap: 20px;
  }
  .header .logo span {
    padding-top: 30px;
  }
  .header nav {
    width: 100%;
    padding-right: 30px;
    margin-top: 20px;
  }
  .header nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    grid-column-gap: 25px;
    position: relative;
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .header nav ul a {
    padding-bottom: 35px;
  }
  .mordal-arrow {
    background: url("../images/common/icon_arrow_05.png") no-repeat right top 10px;
    padding-right: 20px;
  }
  #top .mordal-arrow {
    background: url("../images/common/icon_arrow_03.png") no-repeat right top 10px;
  }
  .header nav ul ul {
    display: block !important;
  }
  .header nav ul ul.sp {
    display: none !important;
  }
  .header nav ul ul a {
    color: #000;
    margin-bottom: 35px;
    padding-bottom: 0;
  }
  .header nav li.has-child .menu {
    position: absolute;
    left: calc(50% - 570px);
    top: 58px;
    z-index: 1000;
    /*はじめは非表示
 display: none;*/
    visibility: hidden;
    opacity: 0;
    transition: all .8s;
  }
  .header nav li.has-child:hover .menu {
    /*display:block;*/
    visibility: visible;
    opacity: 1;
  }
  .bg__blk {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.54);
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
  }
  .bg__blk.blk {
    display: block;
  }
}
@media screen and (max-width:1200px) {
  .header nav li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  }
  .header nav li.has-child:hover > ul {
    display: none;
  }
  .header nav li.has-child ul li {
    width: 50%;
    border-top: 1px solid #e7e7e7;
    display: inline-block;
    background: #f7f7f7;
    margin: 0;
  }
  .header nav li.has-child ul li:nth-child(odd) {
    border-right: 1px solid #e7e7e7;
  }
  /*矢印の位置と向き*/
  .header nav ul li.has-child > a {
    position: relative;
    padding-right: 50px;
  }
  .header nav ul li.has-child > a::before {
    content: '+';
    position: absolute;
    right: 15px;
    top: 15px;
    color: #000;
    font-size: 2.6rem;
    line-height: 1;
    text-align: center;
  }
  .header nav ul li.has-child.active > a::before {
    content: '-';
    font-size: 3.6rem;
    line-height: 0;
    top: 25px;
    right: 17px;
  }
}
/* SP MENU */
@media screen and (max-width: 768px) {
	  a.btn__org {
    border-radius: 100px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 130px;
    height: 35px;
    font-size: 1.1rem;
    padding: 0 !important;
    background: #fd452d;
    color: #fff;
    position: absolute;
    right: 60px;
    top: 8px;
  }
  .header {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header.is-show {
    background: rgba(255, 255, 255, 0.50)
  }
  #top .header.is-show {
    background: rgba(255, 255, 255, 0.50)
  }
  .header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
  }
  .header__nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    padding-top: 30px;
  }
  .header__hamburger {
    width: 26px;
    height: 100%;
    position: absolute;
    right: 15px;
    top: 0;
  }
  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }
  .hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    display: block;
  }
  #top .hamburger span {
    background-color: #000;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 8px 0;
    width: 19px;
  }
  .hamburger span:nth-child(3) {
    top: 0;
    width: 13px;
  }
  .header__nav.active {
    transform: translateX(0);
    overflow-y: scroll;
  }
  .hamburger.active span:nth-child(1), #top .hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
    background: #000;
  }
  .hamburger.active span:nth-child(2), #top .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3), #top .hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
    background: #000;
    width: 26px;
  }
  .header {
    height: 54px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
  }
  .header .logo {
    display: flex;
    column-gap: 10px;
  }
  .header .logo span {
    display: none
  }
  .header .logo a {
    width: 100px;
    display: inline-block
  }
  .nav__items > li {
    width: 100%;
  }
  .nav__items > li > a {
    display: block;
    padding: 18px;
    border-top: 1px solid #e7e7e7;
    font-weight: 400;
    width: 100%;
  }
  .nav__items > li.has-child ul {
    font-size: 0;
  }
  .nav__items > li.has-child ul li {
    font-size: 1.4rem;
  }
  .nav__items > li.has-child ul li a {
    padding: 18px;
    display: inline-block;
  }
  .sns__items {
    display: flex;
    column-gap: 30px;
    justify-content: center;
    margin: 30px 0;
  }
}
/*=================================
ふわっと順番に表示
===================================*/
.animate {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1.0s;
}
.animate.show {
  opacity: 1;
  transform: translateY(0);
}
.animate.show.fadein01 {
  transition-delay: 0s;
}
.animate.show.fadein02 {
  transition-delay: 0.1s;
}
.animate.show.fadein03 {
  transition-delay: 0.2s;
}
.animate.show.fadein04 {
  transition-delay: 0.3s;
}
.animate.show.fadein05 {
  transition-delay: 0.4s;
}
.animate.show.fadein06 {
  transition-delay: 0.5s;
}
.animate.show.fadeina {
  transition-delay: 0.5s;
}
.animate.show.fadeinb {
  transition-delay: 1.0s;
}
.animate.show.fadeinc {
  transition-delay: 1.5s;
}
/*=================================
toppage
===================================*/
.news__box {
  /*width: 405px;
  box-shadow: 3px 3px 11px rgb(0, 0, 0, 0.08);*/
  position: absolute;
  left: 30px;
  top: 500px;
  z-index: 50;
}
.close-btn {
  position: absolute;
  right: 8px;
  top: 4px;
  cursor: pointer;
  border: 1px solid #000;
  background: rgba(255, 255, 255, 0.67);
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}
.news__box.hidden {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .news__box {
    width: 60%;
    left: 10px;
    top: 92vw;
  }
	}
  /*=================================

===================================*/
  @media screen and (max-width: 768px) {}
  /*=================================

===================================*/
  @media screen and (max-width: 768px) {}