@charset "utf-8";
/*
Theme Name: ACAオリジナルテーマ
Author: Aknows create
Author URI: https://aknowscreate.com/
Description: Aknows createが制作したオリジナルのテーマです
Version: 1.0
License: GNU General Public License v2 or later
*/


:root {
  --font-color: #000000;
  --lighter-red:#e60012;
  --middle-dark-red:#94252a;
  --darker-red: #76161b;
  --back-red: #fff0f1;
  --gray: #cfcec2;
}

html {
  font-style: normal;
  font-size: 62.5%;
  position: relative;
  text-align: justify;
  color: var(--font-color);

}



body {
  font-family: "Noto Sans JP", sans-serif;

  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}

.robot {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  /* font-style: italic; */
  font-variation-settings:
    "wdth" 100;
}

.gradation_back {
  background: linear-gradient(45deg, var(--lighter-red) 0%, var(--middle-dark-red) 73%, var(--darker-red) 100%);
}


img {
  max-width: 100%;
  width: auto;
  height: auto;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  border: none;
  border: 1px solid #9EA0A2;
  padding: 5px;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
}

.wrapper {
  max-width: 1200px;
  width: calc(100% - 80px);
}

.wrapper.narrow {
  max-width: 100rem;
}



.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

h1,h2,h3,h4,h5,h6,p,th,td,li,dt,dd {

}
h1,h2,h3,h4,h5,h6 {
  font-weight: 600;
  line-height: 1.4;
}
h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.6rem;
}

h3 {
  font-size: 3.2rem;
}

h4,h5,h6 {
  font-size: 2.4rem;
}

p,th,td,li,dt,dd {
  font-size: 1.6rem;
  line-height: 1.7;
}



a,button {
  cursor: pointer;
}



a {

  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.7;
}
section {
  position: relative;
}

strong {
  font-weight: bold;
}

@media screen and (min-width: 801px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }

  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.4rem;

  }
  
  h3 {
    font-size: 1.6rem;

  }
  
  h4,h5,h6 {
    font-size: 1.5rem;
  }

  p,th,td,li,dt,dd {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  
  .wrapper {
    width: calc(100% - 4rem);
  }
}

@media screen and (min-width: 501px) {
  .minsp {
    display: none;
  }


}

@media screen and (max-width: 500px) {
  .minpc {
    display: none;
  }
}



/***共通***/
.line_back {
  position: relative;
  z-index: 1;
}

.line_back::after {
  z-index: -1;
  height: 30%;
  left: 0;
  bottom: 0;
  width: 100%;
  content: '';
  background: linear-gradient(45deg, var(--lighter-red) 0%, var(--middle-dark-red) 73%, var(--darker-red) 100%);
  background: var(--lighter-red);
  position: absolute;
  opacity: 0.2;
}



/*title*/
.sec_title {
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.4;
}

.sec_title::after {
  content: '';
  width: 100%;
  max-width: 36px;
  height: 8px;
  background: linear-gradient(45deg, var(--lighter-red) 0%, var(--middle-dark-red) 73%, var(--darker-red) 100%);
  background: var(--lighter-red);
  position: absolute;
  bottom: 0;
  left: 0;
}

.sec_title.center {
  text-align: center;
}

.sec_title.center::after {
  left: 50%;
  transform: translateX(-50%);
}


.red_center_line {
  background: var(--lighter-red);
  /* background: linear-gradient(45deg, var(--lighter-red) 0%, var(--middle-dark-red) 73%, var(--darker-red) 100%); */
  width: 36px;
  height: 8px;
  margin: 0 auto 50px;
}


.red_center_line.wide {
  width: 72px;
}

/*btn*/
.normal_btn a {
  /* background: linear-gradient(45deg, var(--lighter-red) 0%, var(--middle-dark-red) 73%, var(--darker-red) 100%); */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 80px;
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.3s ease;
}

.normal_btn a:hover {
  opacity: 1;
  color: var(--darker-red);
  border: 2px solid var(--darker-red);
  background-color: white;
  box-sizing:border-box;
  transition: all 0s ease;
}

.normal_btn.center a {
  margin: 0 auto;
}

.normal_btn.right a {
  margin-left: auto;
}

.normal_btn a::before{
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--lighter-red) 0%, var(--middle-dark-red) 73%, var(--darker-red) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s ease;
}

.normal_btn a:hover::before {
  left: 100%;
}

.normal_btn a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2.5px solid white;
  border-right: 2.5px solid white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 20px;
}


.normal_btn.small a {
  height: 60px;
  max-width: 280px;
}

@media screen and (max-width: 800px) {

  .sec_title {
    font-size: 2.4rem;
  }
  
  
}

/***header***/

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  min-height: 70px;
  /* border-bottom: 2px solid var(--lighter-red); */
}


header::after {
  content: '';
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, var(--lighter-red) 0%, var(--middle-dark-red) 73%, var(--darker-red) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}



header .openbtn {
  display: none;
}

header .header_logo .logo {
  width: 160px;
  z-index: 1000;
  position: relative;
  display: block;
}


header .header_logo p {
  font-size: 1.6rem;
}

@media screen and (min-width: 801px) {
.header_navi .header_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;

}





}


@media screen and (max-width: 800px) {

  .header_navi  {
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    width: 100%;
    height: 100vh;
    padding: 100px 20px 10px;
    display: none;
  }

  .header_menu li {
    padding: 10px;
    border-bottom: 1px solid var(--gray);
  }



  header .openbtn{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 30px;
    height: 20px;
    display: block;
    z-index: 100;
  }
  
  /*ボタン内側*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 0;
      height: 3px;
      border-radius: 3px;
    background: var(--font-color);
      width: 100%;
    }
  
  .openbtn span:nth-of-type(1) {
    top:0px; 
  }
  
  .openbtn span:nth-of-type(2) {
    top:50%;
  }
  
  .openbtn span:nth-of-type(3) {
    top:100%;
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
      transform: translate(-50%, -50%) rotate(-45deg);

  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .openbtn.active span:nth-of-type(3){
    top: 50%;
    left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);

  }

}





/***footer***/
footer {
  position: relative;
  color: white;
  padding: 50px 0 20px;
  background: linear-gradient(45deg, var(--lighter-red) 0%, var(--middle-dark-red) 73%, var(--darker-red) 100%);
}


.footer_wrapper {
  width: 90%;
  margin: 0 auto;
}


.footer_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
  gap: 30px;
}

.footer_info .footer_logo {
  max-width: 180px;
  margin-bottom: 30px;
}

footer .logo_text {
  font-size: 2.6rem;
  margin-bottom: 10px;
}

.footer_main_menu > ul {
  display: flex;
  align-items: center;
  gap: 5px 30px;
  flex-wrap: wrap;
}

.footer_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}



.footer_sub_menu > ul {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}
.footer_sub_menu > ul > li {
  font-size: 1.4rem;
}
.footer_sub_menu > ul > li:not(:last-of-type) {
  padding-right: 20px;
  border-right: 1px solid white;
}

.footer_bottom .copy {
  font-size: 1.3rem;
}


@media screen and (max-width: 800px) {



}


@media screen and (max-width: 500px) {
  .footer_main_menu {
    margin: 0 auto;
  }

  .footer_main_menu > ul {
    flex-direction: column;
    margin: 0 auto;
  }

  .footer_sub_menu {
    width: 100%;
  }
  .footer_sub_menu > ul {
    flex-direction: column;
    gap: 10px 20px;
  }

  .footer_sub_menu > ul > li {
    font-size: 1.3rem;
  }
  
  .footer_sub_menu > ul > li:not(:last-of-type) {
    padding-right: 0px;
    border-right: none;
  }

  .footer_bottom .copy {
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }


}