@charset "UT-8";
*,*:before,*:after {
  /*outline: 1px solid red !important;
     opacity: 1 !important; */
}
html, body {
  overflow-x: hidden;
}
html{
  font-size: 16px;
}
body{
  height: 100%;
  background-color: #fff;
  color: #333;
  margin: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
a {
  text-decoration: none;
  color: #333;
  display: inline-block;
}
section{
    padding-bottom: 100px;
}
ul,li {
  list-style: none;
}
p,ul,li,ol{
    margin: 0;
    padding: 0;
}
p{
  letter-spacing: 0.1rem;
}
.sp-only{
    display: none !important;
}
.pc-only{
    display: block !important;
}
h1, h2, h3{
  margin: 0;
  letter-spacing: 0.1rem;
}
.flex_block{
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:767px){
    .pc-only{
        display: none !important;
    }
    .sp-only{
        display: block !important;
    }
    section{
    padding-bottom: 80px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px){
    .pc-only{
        display: none !important;
    }
    .sp-only{
        display: block !important;
    }
    
}

@media screen and (min-width: 768px) and (max-width: 1024px){
  section{
    padding-bottom: 100px;
  }
}


/*  --- ヘッダー --- */
.header_inner, .header_grouplogo, .header_nav ul{
  display: flex;
}
.header{
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  opacity: 0.85;
}
.header_inner{
  width: calc(100% - 200px);
  margin: 0 auto;
  justify-content: space-between;
  padding: 10px;
  align-items: center;

}
.header_title a {
  display: inline-block;
}
.header_title img {
  display: block;       
  width: 50%;          
  height: auto;
}
.header_nav li{
  padding: 10px 30px;
}
.header_nav li a:hover{
  color: #3AB8DA;
  transition: color 0.2s ease;
}
.header_contact{
  background-color: #3AB8DA;
  border-radius: 20px;
}
.header_contact a{
  color: #fff;
}
.header_contact a:hover{
  color: #333 !important;
  opacity: 0.8 !important;
  transition: color 0.3s ease !important;
}
.has-submenu{
  position: relative;
}
.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  border: 1px solid #c4c4c4;
  z-index: 150;
}
.has-submenu:hover .submenu {
  display: block;
}
.has-submenu > a {
  position: relative;
  padding-right: 30px; 
}
.has-submenu > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../img/arrow-down-bl.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.submenu li a {
  display: block;
  padding: 10px 15px;
  white-space: nowrap;
  text-decoration: none;
  color: #333;
}
.submenu li a:hover {
  background-color: #f5f5f5;
  color: #3AB8DA;
}

/*  --- タブレットサイズ --- */
@media screen and (min-width: 768px) and (max-width: 1024px){
  .header_inner{
    width: calc(100% - 100px);
  }
  .header_nav li{
    padding: 10px 20px;
  }
}
/*  --- スマホサイズ --- */
@media screen and (max-width:767px){
  .header_inner{
    width: 100%;
    padding: 10px 15px;
    box-sizing: border-box;
  }
  .header_title img{
      width: 40%;
  }
  .header_titile_groupname{
    font-size: 1rem;
  }
}

/*  --- ハンバーガーメニュー --- */
@media screen and (max-width:1024px){
  .hamburger {
    display: block;
    height: 50px;
    width: 0px;
    margin-left: auto;
    position: relative;
    z-index: 110;
    border: none;
    background-color: transparent;
  }
  .hamburger.-active .hamburger__line {
    background-color: transparent;
  }
  .hamburger.-active .hamburger__line::before {
    top: 0;
    transform: rotate(45deg);
  }
  .hamburger.-active .hamburger__line::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .hamburger.-active .hamburger__text::before {
  content: '閉じる';
  }
  .hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 23px;
    right: 0;
    transform: translateX(-50%);
    width: 30px;
    background-color: #333;
    transition: 0.4s;
  }
  .hamburger__line:before,
  .hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #333;
    transition: inherit;
  }
  .hamburger__line:before {
    top: -8px;
  }
  .hamburger__line:after {
    top: 8px;
  }
  .header {
    width: 100%;
  }
  .header_nav_area {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 105;
    height: 100vh;
    width: 80%;
    visibility: hidden;
    padding-top: 60px;
    background-color: #fff;
    transition: 0.4s;
  }
  .header_nav_area.-active {
    left: 0;
    visibility: visible;
  }
  .global_navigation {
    padding-top: 40px;
    padding-right: 25px;
    padding-bottom: 120px;
    padding-left: 25px;
  }
  .global_navigation_list > li {
    padding: 20px 30px;
    border-bottom: 1px solid #c4c4c4;
  }
  .global_navigation_list > li + li {
    margin-top: 0px;
  }
  .global_navigation_link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #333;
    font-weight: 900;
    transition: color 0.4s;
    font-weight: 500;
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
  .global_navigation_link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
  }
  .global_navigation_link.-accordion::after {
    content: '';
    display: block;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 2px;
    background-color: #333;
    transform: translateY(-50%);
    transition: transform 0.4s;
  }
  .global_navigation_link.-accordion::before {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    background-color: #333;
    transform: translateY(-50%);
    
  }
  .global_navigation_link.-active::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
  }
  .accordion.-active {
    height: auto;
    padding-top: 30px;
    visibility: visible;
  }
  .accordion_list li + li {
   margin-top: 21px;
  }
  .accordion_link {
    color: #333;
  }
  .global_navigation_link{
    font-size: 1.5rem;
    font-weight: 700;
  }
}
/*  --- ハンバーガーメニュー スマホサイズ --- */
@media screen and (max-width:767px){
  .global_navigation_link{
    font-size: 1rem;
  }
}

.btn_black a{
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    margin-top: 30px;
    letter-spacing: 0.1rem;
    background: #eee;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 200px;
    padding: 15px 10px;
    color: #333;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    z-index:0;
}
.btn_black a::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0;
    display: block;
    background: #333;
    transition: .3s;
    left:0;
}
.btn_black a:hover{
    color: #FFF;
}
.btn_black a:hover::before{
    width: 100%;
    z-index: -1;
}
@media screen and (max-width:767px){
    .btn_black a{
        margin-top: 10px;
    }
}


/*  --- パンくずリスト --- */
.breadcrumb_nav{
  padding-top: 150px;
}
.breadcrumb{
  width: calc(100% - 200px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.breadcrumb li:not(:last-of-type)::after{
  content: "/";
  margin: 0 .6em;
  color: #777;
}
@media screen and (min-width: 768px) and (max-width: 1024px){
  .breadcrumb{
    width: calc(100% - 100px);
  }
}
@media screen and (max-width:767px){
  .breadcrumb{
    width: calc(100% - 60px);
  }
  .breadcrumb_nav{
    padding-top: 100px;
  }
}

/*  --- 下層ページファーストビュー --- */
.fv_block{
    padding-bottom: 0;
}
.fv_block .title{
    width: calc(100% - 200px);
    margin: 0 auto;
    padding: 100px 0 30px 0;
}
.fv_block h1{
    font-size: 7rem;
    font-family: "Merriweather", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:"wdth" 100;
    letter-spacing: 0.2rem;
}
.fv_block p{
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    bottom: 10px;
}

/*  --- タブレットサイズ --- */
@media screen and (min-width: 768px) and (max-width: 1024px){
    .fv_block .title{
        width: calc(100% - 100px);
        padding: 100px 0 30px 0;
    }
    .fv_block h1{
        font-size: 5rem;
    }

}
/*  --- スマホサイズ --- */
@media screen and (max-width:767px){
    .fv_block .title{
        width: calc(100% - 60px);
        padding: 50px 0 20px 0;
    }
    .fv_block h1{
        font-size: 3.5rem;
    }
    .fv_block p{
        font-size: 1rem;
    }
}

/*  --- 下層ページファーストビュー画像 --- */
.lowerpage_bg_inner{
  clip-path: inset(0);
  width: 100%;
  height: 600px;
  padding: 16px;
  box-sizing:border-box;
  color: #fff;
}
.lowerpage_bg_inner::after{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    z-index: -10;
    width:100%;
    height:100%;
    background-size: cover;
    background-position: center;
}

/*  --- スマホサイズ --- */
@media screen and (max-width:767px){
  .lowerpage_bg_inner{
    height: 300px;
  }
}

/*  --- フッター --- */
footer section{
  width: 1200px;
  margin: 0 auto;
  padding-bottom: 0;
  padding-top: 100px;
}
.footer_flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*  --- 上部リンクボタン --- */

.footer_link_block{
  gap: 40px;        
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
}

.footer_link_block div p{
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 5px #c4c4c470;
}
.footer_link_btn_title{
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.footer_link_btn_sub{
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  position: relative;
  bottom: 15px;
}
.footer_link_block .item{
  padding: 10px 0;
}
.footer_link_block img{
  width: 12%;
  height: auto;
}
.footer_link_card {
  flex: 1 1 calc(50% - 15px);
  box-sizing: border-box;
  background-image: url(../img/footer-background-pc.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px;
  color: #fff;
  text-align: center;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
	transition: all 0.3s ease 0s;
}
.footer_link_card:hover{
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.3);
	transform: translateY(-0.8em);
}


/*  --- 下部リンク --- */
.footer_inner{
  padding: 100px 0;
}
.footer_title{
  padding-top: 15px;
}
.footer_title a {
  display: inline-block;
  margin-right: 15px;
}
.footer_title img {
  display: block;       
  width: 45px;          
  height: auto;
}
.footer_titile_groupname{
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0;
}
.footer_ec_link p, .footer_sns_link p{
  letter-spacing: 0.1rem;
}
.footer_ec_link .item, .footer_sns_link .item{
  font-size: 0.8rem;
}
.footer_ec_link a, .footer_sns_link a{
  display: inline-block; 
}
.footer_ec_link img, .footer_sns_link img{
  display: block;       
  width: 70px;          
  height: auto;
}
.ec_sns_block{
  gap: 20px;
}
.footer_ec_link, .footer_sns_link{
  width: 280px;
  padding: 15px 30px;
  gap: 10px;
}
.footer_ec_link{
  border: solid 2.5px #00A3CF;
}
.footer_sns_link{
  border: solid 2.5px #7DD786;
}
.footer_hover{
  transition: all 1.5s linear 0s;
  cursor: pointer;
}
.footer_hover:hover{
  transform: rotateY(360deg);
}

.footer_detail_link{
  padding-top: 50px;
  align-items: start;
}
.footer_detail_link_left{
  width: 40%;
}
.footer_detail_link_left .name{
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 10px;
}
.footer_detail_link_left .address{
  padding-bottom: 20px;
}
.footer_store{
  gap: 30px;
}
.footer_detail_link_right .footer_link_main a{
  padding-right: 20px;
}
.footer_detail_link_right nav{
  display: flex;
}
.footer_nav_ul{
  padding-right: 30px;
}
.footer_nav_ul_sub a{
  font-size: 0.8rem;
  font-weight: 400;
}
.footer_nav_ul li{
  padding-bottom: 10px;
}
.copy{
  font-size: 0.8rem;
  font-weight: 400;
}
.top-btn img{
  width: 80px;
  height: auto;
  display: block;
}
.top-btn a{
  display: inline-block;
}

/*  --- タブレットサイズ --- */
@media screen and (min-width: 768px) and (max-width: 1024px){
  footer section{
    width: 600px;
  }
  .footer_link_block .footer_flex{
    display: block;
  }
  .footer_link_block{
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    text-align: center;
    justify-content: center
  }
  .footer_link_card {
    width: 100%;
    margin: 0 auto;
  }
  footer section{
  padding-top: 0px;
  }
  .footer_inner{
  padding: 80px 0 100px 0;
  }
  .footer_logo_link, .ec_sns_block{
    display: block;
    width: 100%;
  }
  .footer_grouplogo{
    justify-content: left;
    align-items: start;
    padding-bottom: 50px;
  }
  .footer_link_block img{
    width: 20%;

  }
  .footer_ec_link, .footer_sns_link{
    width: 540px;
    
  }
  .ec_sns_block a{
    margin-bottom: 30px;
  }
  .footer_ec_link p, .footer_sns_link p{
    font-size: 1.5rem;
  }
  .footer_ec_link .item, .footer_sns_link .item{
    font-size: 1.2rem;
  }
  .footer_ec_link img, .footer_sns_link img{
    width: 90px;          
  }
  .footer_detail_link{
    display: block;
  }
  .footer_detail_link_left{
    width: 100%;
  }
  .top-btn{
    padding-top: 30px;
  }
  .footer_title{
    padding-top: 0;
  }
}
/*  --- スマホサイズ --- */
@media screen and (max-width:767px){
  footer section{
    width: 320px;
    padding-top: 0;
  }
  .footer_link_block{
    display: block;
  }
  .footer_link_card{
    padding: 20px;
    width: 100%;
    margin-bottom: 20px;
    background-image: url(../img/footer-background-sp.webp);

  }
  .footer_link_card_sp{
    display: flex;
    align-items: center;
  }
  .footer_link_block div p{
    text-align: left;
  }
  .footer_link_btn_title{
    font-size: 3rem;
  }
  .footer_link_btn_sub{
    font-size: 1rem;
    bottom: 0px;
  }
  .footer_link_block .item{
    font-size: 0.8rem;
    width: 160px;
  }
  .footer_link_block img{
    width: 70%;
    padding-left: 30px;
    padding-top: 20px;
  }
  .footer_title{
    padding-top: 0;
  }

  .footer_inner{
    padding: 50px 0;
  }
  .footer_logo_link, .ec_sns_block{
    display: block;
    width: 100%;
  }
  .footer_grouplogo{
    justify-content: left;
    align-items: start;
    padding-bottom: 30px;
  }
  .footer_title a {
    margin-right: 10px;
  }
  .footer_title img{
    width: 35px;
  }
  .footer_titile_groupname{
    font-size: 1.5rem;
  }
  .footer_ec_link, .footer_sns_link{
    width: 280px;
    padding: 15px;
    margin-bottom: 10px;
  }
  .footer_detail_link{
    padding-top: 30px;
  }
  .footer_detail_link_left{
    width: 100%;
  }
  .copy{
    font-size: 0.5rem;
  }
  .top-btn img{
    width: 60px;
  }
  .top-btn{
    padding-top: 60px;
  }
}

/*  --- アニメーション --- */
.animation_slide_in_left, .animation_slide_in_right, .animation_fadein_up, .animation_fadein_up_slow {
  opacity: 0;
}
.animation_slide_in_left.is-animated {
  animation: slideInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideInLeft {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animation_slide_in_right.is-animated {
  animation: slideInRight 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideInRight {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animation_fadein_up.is-animated {
  animation: fadeInUp 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease, transform 0.8s ease;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation_fadein_up_slow.is-animated {
  animation: fadeInUpSlow 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeInUpSlow {
  0% {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s ease, transform 0.8s ease;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*  --- ホバーアクション --- */

.roll_link a{
    overflow: hidden; 
    color: transparent; 
    text-shadow: 0 -1.5em 0 #00A3CF, 0 0 0 #00A3CF;
    transition: text-shadow 0.3s;
}
.roll_link a:hover{
    text-shadow: 0 0 0 #00A3CF, 0 1.5em 0 #00A3CF;
}

/*  --- 下層ページ　会社リンク --- */
.business_company_link{
  width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.business_company_link_inner{
  border-top: #c4c4c4 solid 1px;
  border-bottom: #c4c4c4 solid 1px;
  padding: 30px 0;
  width: 580px;
}
.business_company_link .flex_block a{
  display: inline-block;
}
.company_image01 img{
  width: auto;
  height: 100px;
}
.company_image01{
  padding-right: 30px;
}
.company_image02{
  padding-left: 150px;
}
.company_image02 img{
  width: 50px;
  height: auto;
}
.zoom_box{
    overflow: hidden;
}
.zoom_box img{
    transition: all 0.3s;
}
.zoom_box:hover img{
    transform: scale(1.1);
}
/*  --- タブレット・スマホ共通 --- */
@media screen and (max-width:1024px){
  .business_company_link_inner .flex_block{
    display: block;
  }
  .company_image01 img{
    width: 100%;
    height: auto;
  }
}

/*  --- タブレットサイズ --- */
@media screen and (min-width: 768px) and (max-width: 1024px){
  .business_company_link{
    width: 650px;
    margin-bottom: 80px;
  }
  .business_company_link_inner{
      width: 300px;
  }
  .company_image01{
    padding-right: 0;
  }
}
/*  --- スマホサイズ --- */
@media screen and (max-width:767px){
  .business_company_link{
    width: 320px;
    display: block;
    margin-bottom: 30px;

  }
  .business_company_link_inner{
    width: 320px;
    margin-bottom: 0;
    padding: 20px 0;

  }
  .company_image01{
    padding-right: 0px;
  }
  .business_company_link_inner{
      border-bottom: none;
  }
}