@charset "UTF-8";

/*
Theme Name:		ミライリスホールディングスグループ 採用サイト
Theme URI:		https://www.mirairis-recruit.com/
Author:			Ｏ－ＧＯＥ
*/

/* --------------------------------------------------------------------------------
	class
-------------------------------------------------------------------------------- */
/********** デバイスごとの表示・非表示 **********/
.device-pc {
  display: block;
}
.device-sp {
  display: none;
}
/********** 共有クラス **********/
.overflow{
  overflow-x: hidden;
}
:root {
  --color-main: #ff8c0a;
  --color-sub: #96d26e;
  --color-sub2: #fffff0;
  --color-matsuoka: #0091db;
  --color-pride: #f5dc46;
  --color-ashital: #00af89;
  --color-mubiluto: #e84d92;
  --color-koyo: #e50043;
  --color-kato: #6fba2c;
}
/* --------------------------------------------------------------------------------
	fade
-------------------------------------------------------------------------------- */
.fadein {
  opacity: 0.1;
  transform: translate(-30px, 0);
  transition: all 800ms;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.fadein2 {
  opacity: 0.1;
  transform: translate(30px, 0);
  transition: all 800ms;
}
.fadein2.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.fadein3 {
  opacity: 0.1;
  transform: translate(0, 30px);
  transition: all 800ms;
}
.fadein3.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
.fadein4 {
  opacity: 0.1;
  transform: translate(0, 0);
  transition: all 800ms;
}
.fadein4.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* --------------------------------------------------------------------------------
	header
-------------------------------------------------------------------------------- */
header{
  position: absolute;
  width: 100%;
  height: 100px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
}
.fixed{
  position: fixed;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  left: 0;
  height: 80px;
}
.header__wrap{
  max-width: 1728px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  justify-content: space-between;
  box-sizing: content-box;
}
.header__logobox{
  width: 407px;
  height: 70px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header__logobox.small{
  width: 291px;
  height: 50px;
}
.header__logobox h1 {
  width: 100%;
  height: 100%;
}
.header__logobox h1 a {
  display: block;
  cursor: pointer;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  background: url(images/common/logo.svg) no-repeat;
  background-position: left;
  background-size: contain;
}
.header__menubox{
  width: calc(100% - 407px);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center; /* 縦方向中央揃え（Safari用） */
  align-items: center; /* 縦方向中央揃え */
  justify-content: flex-end;
  gap: 20px;
}
.header__menu{
  width: 250px;
  &.small{
    width: 200px;
  }
}
/* --------------------------------------------------------------------------------
	button
-------------------------------------------------------------------------------- */
.btn04 {
  position: relative;
  display: inline-block;
  width: calc(100% - 4px);
  padding: 10px 0;
  background: #fff;
  border: 2px solid var(--color-main);
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 100%;
  -webkit-transition: .8s;
  transition: .8s;
  text-align: center;
  &.small{
    font-size: 1.6rem;
  }
}
.btn04 span {
  position: relative;
  z-index: 1;
}
.btn04::before,
.btn04::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 51%;
  height: 100%;
  -webkit-transition: .2s;
  transition: .2s;
  background-color: var(--color-main);
}
.btn04::before {
  left: 0;
}
.btn04::after {
  right: 0;
}
.btn04:hover::before,
.btn04:hover::after {
  width: 0;
  background: var(--color-main);
}
.btn04:hover {
  color: var(--color-main);
}
.btn05 {
  position: relative;
  display: inline-block;
  width: calc(100% - 4px);
  padding: 10px 0;
  background: #fff;
  border: 2px solid var(--color-sub);
  color: #fff;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 100%;
  -webkit-transition: .8s;
  transition: .8s;
  text-align: center;
  &.small{
    font-size: 1.6rem;
  }
}
.btn05 span {
  position: relative;
  z-index: 1;
}
.btn05::before,
.btn05::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 51%;
  height: 100%;
  -webkit-transition: .2s;
  transition: .2s;
  background-color: var(--color-sub);
}
.btn05::before {
  left: 0;
}
.btn05::after {
  right: 0;
}
.btn05:hover::before,
.btn05:hover::after {
  width: 0;
  background: var(--color-sub);
}
.btn05:hover {
  color: var(--color-sub);
}
.button_00 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background: #fff;
  z-index: 2;
}
.button_00:hover {
  color: #fff;
  z-index: 2;
}
.button_00::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: var(--color-main);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_00:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button_00::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: var(--color-main);
  transition-delay: .2s;
}
.button_00:hover::after {
  color: #fff;
  transition-delay: .2s;
  z-index: 2;
}
.button_01 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  border: 1px solid #0091db;
  color: #0091db;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background: #fff;
  z-index: 2;
}
.button_01:hover {
  color: #fff;
  z-index: 2;
}
.button_01::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #0091db;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_01:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button_01::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: #0091db;
  transition-delay: .2s;
}
.button_01:hover::after {
  color: #fff;
  transition-delay: .2s;
  z-index: 2;
}
.button_02 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  border: 1px solid var(--color-pride);
  color: var(--color-pride);
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background: #fff;
  z-index: 2;
}
.button_02:hover {
  color: #fff;
  z-index: 2;
}
.button_02::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: var(--color-pride);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_02:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button_02::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: var(--color-pride);
  transition-delay: .2s;
}
.button_02:hover::after {
  color: #fff;
  transition-delay: .2s;
  z-index: 2;
}
.button_03 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  border: 1px solid #00af89;
  color: #00af89;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background: #fff;
  z-index: 2;
}
.button_03:hover {
  color: #fff;
  z-index: 2;
}
.button_03::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #00af89;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_03:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button_03::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: #00af89;
  transition-delay: .2s;
}
.button_03:hover::after {
  color: #fff;
  transition-delay: .2s;
  z-index: 2;
}
.button_04 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  border: 1px solid #e84d92;
  color: #e84d92;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background: #fff;
  z-index: 2;
}
.button_04:hover {
  color: #fff;
  z-index: 2;
}
.button_04::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #e84d92;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_04:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button_04::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: #e84d92;
  transition-delay: .2s;
}
.button_04:hover::after {
  color: #fff;
  transition-delay: .2s;
  z-index: 2;
}
.button_05 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  border: 1px solid #e50043;
  color: #e50043;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background: #fff;
  z-index: 2;
}
.button_05:hover {
  color: #fff;
  z-index: 2;
}
.button_05::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #e50043;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_05:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button_05::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: #e50043;
  transition-delay: .2s;
}
.button_05:hover::after {
  color: #fff;
  transition-delay: .2s;
  z-index: 2;
}
.button_06 {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  border: 1px solid #6fba2c;
  color: #6fba2c;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background: #fff;
  z-index: 2;
}
.button_06:hover {
  color: #fff;
  z-index: 2;
}
.button_06::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #6fba2c;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_06:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button_06::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: #6fba2c;
  transition-delay: .2s;
}
.button_06:hover::after {
  color: #fff;
  transition-delay: .2s;
  z-index: 2;
}
.button_main {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5% 0;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background: #fff;
  z-index: 2;
}
.button_main:hover {
  color: #fff;
  z-index: 2;
}
.button_main::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: var(--color-main);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_main:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.button_main::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: var(--color-main);
  transition-delay: .2s;
}
.button_main:hover::after {
  color: #fff;
  transition-delay: .2s;
  z-index: 2;
}
.button_iv00 {
  position: relative;
  display: inline-block;
  width: 60%;
  padding: 3% 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--color-main);
  color: var(--color-main);
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background-color: #fff;
  z-index: 2;
}
.button_iv00:hover {
  color: #fff;
  z-index: 2;
}
.button_iv00 span {
  position: relative;
  z-index: 2;
  font-weight: bold;
  pointer-events: none;
}
.button_iv00 span::before {
  position: absolute;
  top: -25%;
  left: -60%;
  font-family: 'Font Awesome 5 Brands';
  content: '\f4d5';
  font-weight: 900;
  font-size: 2.5rem;
}
.button_iv00::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: var(--color-main);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_iv00:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  z-index: 1;
}
.button_iv00::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: var(--color-main);
  transition-delay: .2s;
  z-index: 1;
}
.button_iv00:hover::after {
  color: #fff;
  transition-delay: .2s;
}
.button_iv01 {
  position: relative;
  display: inline-block;
  width: 60%;
  padding: 3% 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #0091db;
  color: #0091db;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background-color: #fff;
  z-index: 2;
}
.button_iv01:hover {
  color: #fff;
  z-index: 2;
}
.button_iv01 span {
  position: relative;
  z-index: 2;
  font-weight: bold;
  pointer-events: none;
}
.button_iv01 span::before {
  position: absolute;
  top: -25%;
  left: -60%;
  font-family: 'Font Awesome 5 Brands';
  content: '\f4d5';
  font-weight: 900;
  font-size: 2.5rem;
}
.button_iv01::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #0091db;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_iv01:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  z-index: 1;
}
.button_iv01::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: #0091db;
  transition-delay: .2s;
  z-index: 1;
}
.button_iv01:hover::after {
  color: #fff;
  transition-delay: .2s;
}
.button_iv02 {
  position: relative;
  display: inline-block;
  width: 60%;
  padding: 3% 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--color-pride);
  color: var(--color-pride);
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background-color: #fff;
  z-index: 1;
}
.button_iv02:hover {
  color: #fff;
  z-index: 1;
}
.button_iv02 span {
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.button_iv02 span::before {
  position: absolute;
  top: -25%;
  left: -60%;
  font-family: 'Font Awesome 5 Brands';
  content: '\f4d5';
  font-weight: 900;
  font-size: 2.5rem;
}
.button_iv02::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: var(--color-pride);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_iv02:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  z-index: 1;
}
.button_iv02::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);;
  right: 5%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: var(--color-pride);
  transition-delay: .2s;
  z-index: 1;
}
.button_iv02:hover::after {
  color: #fff;
  transition-delay: .2s;
}
.button_iv03 {
  position: relative;
  display: inline-block;
  width: 60%;
  padding: 3% 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #00af89;
  color: #00af89;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background-color: #fff;
  z-index: 1;
}
.button_iv03:hover {
  color: #fff;
  z-index: 1;
}
.button_iv03 span {
  position: relative;
  z-index: 1;
  font-weight: bold;
}
.button_iv03 span::before {
  position: absolute;
  top: -25%;
  left: -60%;
  font-family: 'Font Awesome 5 Brands';
  content: '\f4d5';
  font-weight: 900;
  font-size: 2.5rem;
}
.button_iv03::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: #00af89;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_iv03:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  z-index: 1;
}
.button_iv03::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: #00af89;
  transition-delay: .2s;
  z-index: 1;
}
.button_iv03:hover::after {
  color: #fff;
  transition-delay: .2s;
}
.button_iv04 {
  position: relative;
  display: inline-block;
  width: 60%;
  padding: 3% 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e84d92;
  color: #e84d92;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background-color: #fff;
  z-index: 1;
}
.button_iv04:hover {
  color: #fff;
  z-index: 1;
}
.button_iv04 span {
  position: relative;
  z-index: 30;
  font-weight: bold;
}
.button_iv04 span::before {
  position: absolute;
  top: -25%;
  left: -60%;
  font-family: 'Font Awesome 5 Brands';
  content: '\f4d5';
  font-weight: 900;
  font-size: 2.5rem;
}
.button_iv04::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: #e84d92;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_iv04:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  z-index: 1;
}
.button_iv04::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: #e84d92;
  transition-delay: .2s;
  z-index: 1;
}
.button_iv04:hover::after {
  color: #fff;
  transition-delay: .2s;
}
.button_iv05 {
  position: relative;
  display: inline-block;
  width: 60%;
  padding: 3% 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e50043;
  color: #e50043;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background-color: #fff;
  z-index: 1;
}
.button_iv05:hover {
  color: #fff;
  border: 1px solid #fff;
  z-index: 1;
}
.button_iv05 span {
  position: relative;
  z-index: 30;
  font-weight: bold;
}
.button_iv05 span::before {
  position: absolute;
  top: -25%;
  left: -60%;
  font-family: 'Font Awesome 5 Brands';
  content: '\f4d5';
  font-weight: 900;
  font-size: 2.5rem;
}
.button_iv05::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: #e50043;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_iv05:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  z-index: 1;
}
.button_iv05::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: #e50043;
  transition-delay: .2s;
  z-index: 1;
}
.button_iv05:hover::after {
  color: #fff;
  transition-delay: .2s;
}
.button_iv06 {
  position: relative;
  display: inline-block;
  width: 60%;
  padding: 3% 0;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--color-kato);
  color: var(--color-kato);
  text-align: center;
  text-decoration: none;
  transition: .3s;
  background-color: #fff;
  z-index: 1;
}
.button_iv06:hover {
  color: #fff;
  border: 1px solid #fff;
  z-index: 1;
}
.button_iv06 span {
  position: relative;
  z-index: 30;
  font-weight: bold;
}
.button_iv06 span::before {
  position: absolute;
  top: -25%;
  left: -60%;
  font-family: 'Font Awesome 5 Brands';
  content: '\f4d5';
  font-weight: 900;
  font-size: 2.5rem;
}
.button_iv06::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: var(--color-kato);
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.button_iv06:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  z-index: 1;
}
.button_iv06::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  font-family: 'Font Awesome 6 Pro';
	content: '\f105';
  font-weight: 900;
  color: var(--color-kato);
  transition-delay: .2s;
  z-index: 1;
}
.button_iv06:hover::after {
  color: #fff;
  transition-delay: .2s;
}
/* --------------------------------------------------------------------------------
	footer
-------------------------------------------------------------------------------- */
footer{
  background-color: #333;
}
.copyright{
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 5% 0 0.5% 0;
}
.footer__box{
  max-width:980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2%;
  padding-right: 2%;
  padding-top: 3%;
}
.footer__box ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
  gap: 30px;
}
.footer__box ul li{
  width: 30%;
  text-align: left;
  color: #fff;
}

.footer__btn {
  position: relative;
  display: inline-block;
  width: 90%;
  padding: 16px 5%;
  background: var(--color-main);
  color: #333;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 100%;
  transition: .5s;
  text-align: center;
}
.footer__btn span {
  position: relative;
  z-index: 1;
}
.footer__btn span i {
  margin-right: 1em;
}
.footer__btn::before,
.footer__btn::after {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 51%;
  height: 100%;
  -webkit-transition: .2s;
  transition: .2s;
  background-color: #fff;
}
.footer__btn::before {
  left: 0;
}
.footer__btn::after {
  right: 0;
}
.footer__btn:hover::before,
.footer__btn:hover::after {
  width: 0;
  background: #fff;
}
.footer__btn:hover {
  color: #fff;
}
.footer__ttl{
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
  padding-bottom: 8px;
  margin-bottom: 5%;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.footer__ttl span{
  margin-left: 1em;
}
.footer__mainlink{
  width: 45%;
  margin: 0 auto 30px auto;
}
/* --------------------------------------------------------------------------------
	TOPに戻る
-------------------------------------------------------------------------------- */
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background: #333;
	border-radius: 100%;
	width: 50px;
	height: 50px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	transition:all 0.5s;
  font-size: 2.5rem;
}
#page-top a:hover{
	background: var(--color-main);
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 1%;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

@media screen and (min-width: 0px) and (max-width: 767px) {

  /********** デバイスごとの表示・非表示 **********/
  .device-pc {
    display: none;
  }
  .device-sp {
    display: block;
  }
  header{
    height: 70px;
  }
  .fixed{
    height: 70px;
  }
  .header__wrap{
    padding: 0 0 0 5%;
  }
  .header__logobox{
    width: 233px;
    height: 40px;
  }
  .header__logobox.small{
    width: 233px;
    height: 40px;
  }
  .header__menubox2{
    display: block;
    width: 70px;
    height: 100%;
  }
  /* --------------------------------------------------------------------------------
    ハンバーガーメニュー
  -------------------------------------------------------------------------------- */
  #nav-toggle {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    height: 31px;
    cursor: pointer;
  }
  #nav-toggle>div {
    position: relative;
    width: 36px;
  }
  #nav-toggle span {
    width: 100%;
    height: 3px;
    left: 0;
    background: #333;
    display: block;
    position: absolute;
    -webkit-transition: top .5s ease, -webkit-transform .6s ease-in-out;
    transition: top .5s ease, -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out, top .5s ease;
    transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
  }
  #nav-toggle.small span {
    background: #333;
  }
  #nav-toggle span:nth-child(1) {
    top: 0;
  }
  #nav-toggle span:nth-child(2) {
    top: 14px;
  }
  #nav-toggle span:nth-child(3) {
    top: 28px;
  }
  #nav-toggle:hover span:nth-child(1) {
    top: 4px;
  }
  #nav-toggle:hover span:nth-child(3) {
    top: 24px;
  }
  .open #nav-toggle span {
    background: #fff;
  }
  .open #nav-toggle span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open #nav-toggle span:nth-child(2) {
    top: 15px;
    width: 0;
    left: 50%;
  }
  .open #nav-toggle span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* z-index */
  #nav-toggle {
    z-index: 10000;
  }
  #container {
    z-index: 9000;
  }
  #gloval-nav {
    background: rgba(34, 34, 34, .9);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9900;
    text-align: center;
    display: -webkit-box;
    display: flex;
    visibility: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 20px;
    opacity: 0;
    -webkit-transition: opacity .6s ease, visibility .6s ease;
    transition: opacity .6s ease, visibility .6s ease;
    width: 100%;
  }
  #gloval-nav nav {
    width: 100%;
  }
  #gloval-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    -webkit-transition: color .6s ease;
    transition: color .6s ease;
  }
  #gloval-nav a:hover {
    opacity: 0.5;
  }
  #gloval-nav ul {
    list-style: none;
    font-size: 2rem;
  }
  #gloval-nav ul li {
    opacity: 0;
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: opacity .2s ease, -webkit-transform .6s ease;
    transition: opacity .2s ease, -webkit-transform .6s ease;
    transition: transform .6s ease, opacity .2s ease;
    transition: transform .6s ease, opacity .2s ease, -webkit-transform .6s ease;
    margin-top: 5%;
  }
  #gloval-nav ul li:first-child {
    margin-top: 0;
  }
  #gloval-nav ul li:nth-child(2) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
  }
  #gloval-nav ul li:nth-child(3) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
  }
  #gloval-nav ul li:nth-child(4) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
  }
  #gloval-nav ul li:nth-child(5) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
  }

  #gloval-nav ul li:nth-child(6) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
  }
  #gloval-nav ul li:nth-child(7) {
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
  }
  #gloval-nav ul li:nth-child(8) {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
  }
  /* open */
  .open {
    overflow: hidden;
  }
  .open #gloval-nav {
    visibility: visible;
    opacity: 1;
  }
  .open #gloval-nav li {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: opacity .9s ease, -webkit-transform 1s ease;
    transition: opacity .9s ease, -webkit-transform 1s ease;
    transition: transform 1s ease, opacity .9s ease;
    transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
  }

  /* --------------------------------------------------------------------------------
  	TOPに戻る
  -------------------------------------------------------------------------------- */
  #page-top {
  	position: fixed;
  	right: 5%;
  }
  /* --------------------------------------------------------------------------------
  	footer
  -------------------------------------------------------------------------------- */
  .footer__box{
    padding-top: 8%;
  }
  .copyright{
    padding: 10% 0 2% 0;
  }
  .footer__ttl{
    padding-bottom: 8px;
    margin-bottom: 8%;
  }
  .footer__ttl span{
    margin-left: 0;
  }
  .footer__box ul{
    width: 100%;
    gap: 20px;
  }
  .footer__box ul li{
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__btn span i {
    margin-right: 0.5em;
  }
  .footer__mainlink{
    width: 96%;
    margin: 0 auto 20px auto;
  }
  .footer__btn {
    width: 94%;
    padding: 16px 3%;
  }
  /* --------------------------------------------------------------------------------
  	スマホメニュー
  -------------------------------------------------------------------------------- */
    .scroll-prevent {
      overflow: hidden;
    }

    .button_01,.button_02,.button_03,.button_04,.button_05,.button_06 {
      width: 85%;
      padding: 3% 10% 4% 5%;
      text-align: left;
    }
    .button_01::after,.button_02::after,.button_03::after,.button_04::after,.button_05::after,.button_06::after {
      right: 3%;
    }
    .button_iv01 span::before,.button_iv02 span::before,.button_iv03 span::before,.button_iv04 span::before,.button_iv05 span::before,.button_iv06 span::before {
      top: 55%;
      transform: translateY(-50%);
      left: -40%;
      font-size: 2.3rem;
    }
}

.wpcf7-spinner{
  display:none!important
}
.wpcf7-mail-sent-ok{
display:none!important
}
.wpcf7-list-item{
margin: 0!important
}
.ajax-loader{
  display:none!important
}

/*reCAPTCHA v3 バッジを左下に移動*/
.grecaptcha-badge {
width: 70px !important;
overflow: hidden !important;
transition: all 0.3s ease !important;
left: 4px !important;
}
.grecaptcha-badge:hover {
width: 256px !important;
}
