@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** default settings
******************************************************************************
----------------------------------------------------------------------------*/
html {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 16px;
  color: #231815;
  line-height: 1.6;
  scroll-padding-top: 40px;
}

body, input, button, textarea, select {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
}

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

.sp {
  display: none;
}

.pc {
  display: block;
}

.common_container {
  min-width: 1252px;
  margin: 0 auto;
}

.common_inner {
  width: 1110px;
  margin: 0 auto;
}

.common_sub_inner {
  width: 1000px;
  margin: 0 auto;
}

.slick-dots > li:first-child:last-child {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
@media all and (min-width: 601px) {
  /* breakpoint */
  header {
    background-color: #fff;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 88px;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .hd_logo a {
    display: flex;
    align-items: center;
    grid-column-gap: 17px;
  }
  header .gmenu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    font-weight: 700;
  }
  header .gmenu li {
    margin-left: 52px;
  }
  header .gmenu li a {
    text-decoration: none;
    color: #231815;
    transition: 0.3s;
    height: 60px;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .gmenu li a:hover {
    color: #d70c18;
  }
  header .gmenu li .nolink {
    text-decoration: none;
    color: #b2b2b2;
    height: 60px;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .gmenu li.inquiry a {
    background-color: #d70c18;
    color: #FFFFFF;
    width: 100px;
  }

  /* breakpoint end */
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.pagetop {
  position: fixed;
  left: 50%;
  margin-left: 575px;
  z-index: 9;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
.pagetop a {
  width: 32px;
  height: 32px;
  display: block;
  transition: 0.3s;
}
.pagetop a:hover {
  transition: 0.3s;
  opacity: 0.7;
}

.pagetop.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
.pagetop.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
footer {
  width: 100%;
}

.ft_name {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 110px 0 80px 0;
}
.ft_name_link {
  margin-top: 40px;
}
.ft_name_link a {
  text-decoration: none;
  font-size: 15px;
  color: #231815;
  font-weight: 500;
}
.ft_name_copy {
  font-size: 12px;
  text-align: center;
}
.ft_name_syohyo {
  margin-top: 20px;
  font-size: 11px;
}

.ft_copy {
  border-top: 2px solid #d70c18;
  border-bottom: 2px solid #d70c18;
  text-align: center;
  padding: 20px 0;
  margin-bottom: 120px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.article {
  margin: 40px auto 0;
}
.article h1 {
  font-size: 40px;
  text-align: center;
  margin-bottom: 50px;
}

.sub_contact_box {
  margin: 120px auto;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** common
******************************************************************************
----------------------------------------------------------------------------*/
.line_wide {
  line-height: 3;
}

.common_btn01 a {
  background-color: #231815;
  display: inline-block;
  color: #FFFFFF;
  padding: 10px 40px;
  border-radius: 10px;
  margin-top: 80px;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** SPスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 600px) {
  /* breakpoint */
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** default settings
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  html {
    font-size: clamp(10px, 3.7333333333vw, 40px);
    scroll-padding-top: 6rem;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .common_container {
    min-width: auto;
  }

  .common_wideinner, .common_inner, .common_sub_inner {
    width: 100%;
  }

  .common_inner {
    padding: 0 1.2142857143rem;
  }

  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    height: 4.5714285714rem;
    width: 100%;
    background-color: #FFFFFF;
  }
}
@media (orientation: landscape) {
  body.mobile header {
    position: static;
  }

  body.mobile .top_main_bg_sp {
    margin-top: 0;
  }
}
@media screen and (max-width: 600px) {
  header h1 {
    width: 11rem;
    position: absolute;
    top: 1.4285714286rem;
    left: 1.4285714286rem;
  }
  header .inquiry_button {
    width: 6.6428571429rem;
    position: absolute;
    left: 15rem;
    top: 1.4285714286rem;
  }
  header .inquiry_button a {
    background-color: #d70c18;
    border-radius: 20px;
    display: block;
    font-size: 0.7142857143rem;
    letter-spacing: 0.05rem;
    padding: 0.3571428571rem;
    text-align: center;
    color: #FFFFFF;
    text-decoration: none;
  }
  header .inquiry_button.active {
    display: none;
  }
  header .sp_hamburger_btn {
    position: absolute;
    top: 1.2857142857rem;
    right: 1.4285714286rem;
    display: flex;
    justify-content: center;
    align-items: end;
    width: 28px;
    height: 28px;
    cursor: pointer;
  }
  header .sp_hamburger_btn span {
    position: absolute;
    display: block;
    width: 28px;
    height: 2px;
    background: #231815;
    transition: all .2s ease;
  }
  header .sp_hamburger_btn span:nth-child(1) {
    top: 9px;
  }
  header .sp_hamburger_btn span:nth-child(2) {
    top: 16px;
  }
  header .sp_hamburger_btn.active span:nth-child(1) {
    top: 13px;
    transform: rotate(45deg);
  }
  header .sp_hamburger_btn.active span:nth-child(2) {
    top: 13px;
    transform: rotate(-45deg);
  }
  header .sp_hamburger_menu {
    display: block;
    position: absolute;
    z-index: 5;
    top: 4.5714285714rem;
    left: 0;
    width: 100%;
    height: calc(100vh - 4.5714285714rem);
    background: #d70c18;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
    overflow-y: scroll;
    color: #FFFFFF;
  }
  header .sp_hamburger_menu.active {
    opacity: 1;
    visibility: visible;
  }
  header .sp_hamburger_title {
    height: 5.7857142857rem;
    padding-top: 1.7857142857rem;
    font-size: 1.7142857143rem;
    text-align: center;
  }
  header .gmenu {
    margin: 0 1.5714285714rem;
    padding: 1.4285714286rem 0;
    display: block;
    border-top: solid 1.5px #FFFFFF;
    border-bottom: solid 1.5px #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  header .gmenu li {
    width: 50%;
  }
  header .gmenu li a {
    font-size: 1.0357142857rem;
    padding: 0.7142857143rem 0;
    display: block;
    height: auto;
    color: #FFFFFF;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  header .gmenu li a span {
    display: inline;
  }
  header .gmenu li a:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 3px;
    margin-right: 6px;
    background-color: #FFFFFF;
  }
  header .gmenu li a.nolink {
    color: #9fa0a0;
  }
  header .gmenu li a.nolink:before {
    background-color: #9fa0a0;
  }
  header .gmenu li.inquiry a {
    background-color: transparent;
    width: auto;
  }
  header .gmenu li:nth-child(1) {
    order: 1;
  }
  header .gmenu li:nth-child(2) {
    order: 3;
  }
  header .gmenu li:nth-child(3) {
    order: 5;
  }
  header .gmenu li:nth-child(4) {
    order: 7;
  }
  header .gmenu li:nth-child(5) {
    order: 4;
  }
  header .gmenu li:nth-child(6) {
    order: 9;
  }
  header .gmenu li:nth-child(7) {
    order: 11;
  }
  header .gmenu li:nth-child(8) {
    order: 2;
  }
  header .gmenu li:nth-child(9) {
    order: 6;
  }
  header .gmenu li:nth-child(10) {
    order: 8;
  }
  header .gmenu li:nth-child(11) {
    order: 10;
  }
  header .sp_gmenu_footer {
    margin-top: 2.3571428571rem;
    margin: 2.3571428571rem 0 1.4285714286rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-column-gap: 1.7142857143rem;
  }
  header .sp_gmenu_footer li.tel {
    width: 100%;
    margin: 0 auto 1.9285714286rem;
    text-align: center;
  }
  header .sp_gmenu_footer li.tel img {
    width: 13.8571428571rem;
  }
  header .sp_gmenu_footer li.instagram {
    width: 2.6428571429rem;
  }
  header .sp_gmenu_footer li.facebook {
    width: 2.6428571429rem;
  }

  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .pagetop {
    right: 15px;
    left: auto;
    margin-left: 0;
  }

  .ft_name {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 4.6428571429rem 0 2.1428571429rem;
  }
  .ft_name_logo {
    width: 14.6428571429rem;
    margin: 0 auto;
  }
  .ft_name_link {
    margin-top: 2.1428571429rem;
  }
  .ft_name_link a {
    font-size: 0.8571428571rem;
  }
  .ft_name_copy {
    font-size: 0.8571428571rem;
  }
  .ft_name_syohyo {
    margin-top: 2.1428571429rem;
    font-size: 0.8571428571rem;
  }

  .ft_copy {
    padding: 1.4285714286rem 0;
    margin-bottom: 10.7142857143rem;
  }
  .ft_copy img {
    width: 17.7142857143rem;
  }

  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** sub
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .article {
    margin: 100px auto 0;
  }
  .article h1 {
    font-size: 30px;
    margin-bottom: 0;
  }

  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** common
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  /* breakpoint end */
}
