@charset "UTF-8";

html,
body {
  font-size: 62.5%;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: 0.06em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.c-sp {
  display: none;
}

section p {
  font-size: max(1vw, 1.6rem);
}

.gill {
  font-family: gill-sans-nova, sans-serif;
}

/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUpTrigger {
  opacity: 0;
}

/* fadeLeft */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeLeftTrigger {
  opacity: 0;
}

/* fadeRight */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeRightTrigger {
  opacity: 0;
}

/* Delay */
.delay-1 {
  animation-delay: 0.3s;
}

/* Header */
header {
  position: absolute;
  z-index: 100;
  width: 100%;
}

header h1 {
  width: 22.3vw;
  max-width: 428px;
  min-width: 200px;
  margin: 1vw;
}

header h1 img {
  width: 100%;
}

.info_btnWrap {
  position: absolute;
  top: 1vw;
  right: 1vw;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 470px;
}

.btn_tel {
  width: 100%;
  display: block;
}

.btn_sub {
  width: calc((100% - 8px)/2);
  text-align: center;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.btn_sub.sub01 {
  background-color: #7bc12f;
  color: #ffffff;
}

.btn_sub.sub02 {
  background-color: #f6eb8d;
  color: #333333;
}


/* Navigation */
.head-nav {
  font-size: 1.8rem;
  color: #000;
  line-height: 1.5;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}

.head-nav-menu {
  display: flex;
  align-items: baseline;
  width: 80rem;
  max-width: 60vw;
  justify-content: space-between;
}

.head-nav-menu li {
  text-align: center;
}

.head-nav-menu li a {
  position: relative;
  padding: 1rem 0;
}

.head-nav-menu>li a::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 3px;
  background-color: #ccc;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.3s;
}

.head-nav-menu li a:hover::before {
  opacity: 1;
}

/* Toggle */
.nav-toggle {
  display: none;
}

.sub-nav {
  display: none;
}

.sp-on {
  height: 100%;
  overflow: hidden;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0;
  /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #ffa200;
  /*動き*/
  transition: all 0.3s;
  font-size: 1.6rem;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 5px;
  right: 5px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background: #ffa200;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 11px;
}

.openbtn1 span:nth-of-type(2) {
  top: 19px;
}

.openbtn1 span:nth-of-type(3) {
  top: 27px;
}

.openbtn1 span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 7px;
  left: -4px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 13px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 13px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

.openbtn1.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 8px;
  left: 10px;
}


/************************
Footer
************************/

@media screen and (max-width:980px) {
  .c-sp {
    display: block;
  }

  /* fadeUp */
  .fadeUp {
    animation: none;
  }

  .fadeUpTrigger {
    opacity: 1;
  }

  /* fadeLeft */
  .fadeLeft {
    animation: none;
  }

  .fadeLeftTrigger {
    opacity: 1;
  }

  /* fadeRight */
  .fadeRight {
    animation: none;
  }

  .fadeRightTrigger {
    opacity: 1;
  }

  /* Delay */
  .delay-1 {
    animation-delay: unset;
  }

  /* Navigation */
  .head-nav {
    display: none;
  }

  /* Toggle */
  .nav-toggle {
    width: 8rem;
    height: 8rem;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    display: block;
    background: #ccc;
  }

  .nav-toggle span {
    position: absolute;
    font-size: 0.9em;
    color: #fff;
    bottom: 5px;
    left: 13px;
  }

  .nav-toggle ul {
    display: flex;
  }

  .nav-toggle ul li {
    position: relative;
    width: 100%;
  }

  .nav-toggle ul li span {
    display: inline-block;
    position: absolute;
    height: 2px;
    background: #fff;
    width: 50%;
    left: 2rem;
    transition: all 0.4s;
  }

  .nav-toggle ul li span:nth-child(1) {
    top: 2.5rem;
  }

  .nav-toggle ul li span:nth-child(2) {
    top: 4rem;
  }

  .nav-toggle ul li span:nth-child(3) {
    top: 5.5rem;
  }

  .sp-active span:nth-child(1) {
    transform: translateY(1.5rem) rotate(-45deg);
  }

  .sp-active span:nth-child(2) {
    opacity: 0;
  }

  .sp-active span:nth-child(3) {
    transform: translateY(-1.5rem) rotate(45deg);
  }

  .head-l-sp {
    width: 50px;
    height: 8rem;
  }

  .sub-nav {
    background: rgba(0, 0, 0, 0.9);
    width: 100vw;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    opacity: 0;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    visibility: hidden;
  }

  .sub-disp {
    opacity: 1;
    visibility: visible;
  }

  .sp-menu {
    width: 80%;
    margin: auto;
    font-size: 1.8rem;
    font-weight: 500;
    font-style: normal;
    color: #fff;
  }

  .sp-menu li {
    width: 100%;
    text-align: center;
    margin: 0 0 5px;
  }

  .sp-menu li a {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .sp-on {
    height: 100%;
    overflow: hidden;
  }

  /* Floating 画像あり*/
  .fix-nav {
    position: fixed;
    right: 3vw;
    bottom: 3vw;
    z-index: 1000;
    opacity: 0;
    transition: 0.5s;
  }

  .active {
    opacity: 1;
  }

  /* Floating 画像なし*/
  .fix-nav {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 9997;
    opacity: 0;
    transition: 0.5s;
    width: 50px;
    height: 50px;
    background-color: #808253;
    border-radius: 50%;
  }

  .fix-nav a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
  }

  .fix-nav a::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(-45deg) translate(-20%, -50%);
  }

  .active {
    opacity: 1;
  }

  .flex-txt {
    width: 100%;
    margin-bottom: 3%;
  }

  .flex-img {
    width: 100%;
    margin-bottom: 3%;
  }

  header {
    position: relative;
    background-color: #ffffff;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


}

/************************
    下層ページ
    ************************/
.h2_ttl {
  background: url("../images/h2_ttl.png") no-repeat center / cover;
  text-align: center;
  font-weight: 700;
  font-size: max(3vw, 3rem);
  padding: max(18vw, 6rem) 0 max(6vw, 5rem);
  color: #FFFFFF;
  line-height: 1;
}

.h2_ttl span {
  font-size: 1.6rem;
  font-family: gill-sans-nova, sans-serif;
}

.sec01 {
  padding: 3% 0;
}

.sec_ttl {
  text-align: center;
  font-size: max(2.6vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  background: url("../images/ttl_bg.png") no-repeat center / contain;
  background-position: center;
  padding: 2rem 0;
}

.h3_ttl {
  text-align: center;
  font-size: max(1.8vw, 2rem);
  font-weight: 700;
  margin-bottom: 3%;
  padding-bottom: 3%;
  position: relative;
}

.h3_ttl::before {
  content: "";
  height: 2px;
  width: 15rem;
  background: #FFA200;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.h4_ttl {
  padding: 1rem;
  font-weight: 700;
  font-size: max(1.4vw, 1.8rem);
  background: #FFE6BA;
  margin-bottom: 3%;
}

.flex-2 {
  width: 100%;
  margin-bottom: 3%;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gap3
{
    gap: 30px;
}
.re {
  flex-direction: row-reverse;
}

.list_anchor {
  display: flex;
  gap: 2rem 2.8vw;
  flex-wrap: wrap;
}

.list_anchor li {
  width: calc(100% / 4 - 3vw);
}

.list_anchor li a {
  padding: 1rem 2rem;
  font-size: max(1vw, 1.6rem);
  border-bottom: 5px solid #C9C9C9;
  border-right: 5px solid #C9C9C9;
  position: relative;
  width: 100%;
  display: block;
  background: #ffd5d5;
  border-radius: 20px;
}

.list_anchor li a::before {
  content: ">";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}

.sec_bg {
  background: #fff5eb;
  padding: 1% 0;
}

.flex-txt {
  width: 68%;
}

.flex-img {
  width: 28%;
}

.flow .item {
  padding: 35px 2%;
  background: #F4E9E9;
  margin-bottom: 90px;
  position: relative;
  z-index: 1;
}

.flow .item::before {
  content: "▼";
  color: #FFA200;
  font-size: 50px;
  position: absolute;
  bottom: -80px;
  right: 50%;
  transform: translateX(50%);
  z-index: 1;
}

.flow .item .ttl {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  border-bottom: none;
  font-size: 28px;
}

.flow .item .ttl .number {
  font-size: 35px;
  width: 50px;
  color: #FFA200;
  position: relative;
  z-index: 1;
  text-align: center;
}

.flow .item .ttl .number::before {
  content: "STEP";
  font-size: 16px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.txt p {
  margin-bottom: 30px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  font-size: max(0.9vw, 1.6rem);
}

.flow .item:last-child::before {
  display: none;
}

.bg_box {
  padding: 3vw;
  background: #F4E9E9;
  margin: 3% 0;
}

.list_disc {
  margin-left: 2rem;
}

.list_disc li {
  list-style: disc;
  font-size: max(1vw, 1.6rem);
  line-height: 1.8;
    margin-left: 1rem;
}

.flex-3 {
  width: 30%;
}

.box_border {
  border: 1px solid #ffd5d5;
  border-radius: 10px;
  padding: 1vw;
}

.box_ttl {
  text-align: center;
  font-weight: 700;
  font-size: max(1.2vw, 1.8rem);
  margin-bottom: 1rem;
}

.right {
  text-align: right;
  padding: 3% 0;
}

.tc {
  text-align: center;
}

.tel {
  font-size: max(2vw, 2rem);
  color: #FFA200;
  font-weight: 700;
  line-height: 1;
}

.tel span {
  font-size: max(1vw, 1.6rem);
}

.list_flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}

.list_flex li {
  width: 32%;
}

.list_flex2 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 800px;
}

.list_flex2 li {
  width: 48%;
}

.h5_ttl {
  font-size: max(1.2vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  margin-top: 3%;
  color: #FFA200;
  border-bottom: #FFA200 solid 1px;
}

.table-bordered {
  border-collapse: collapse;
  border: solid 1px #dddddd;
  width: 100%;
  background: #fff;
}

.th20 th {
  width: 20%;
}

.table-bordered th {
  text-align: center;
  border-bottom: #dddddd solid 1px;
  background: #FFA200;
  color: #FFFFFF;
    width: 20%;
}

.table-bordered th,
.table-bordered td {
  border: solid 1px #dddddd;
  padding: 10px 15px;
  vertical-align: middle;
}
.career li
{
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #CCCCCC;
    font-size: max(1vw , 1.6rem);
}
.career dl
{
    display: flex;
    align-items: flex-start;
}
.career dt
{
    width: 20%;
    padding: 0 10px;
}
.career dd
{
    width: 80%;
}

.t16 {
  font-size: max(0.9vw, 1.4rem);
}

.gnavi__list {
  position: relative;
  transition: all .3s;
}

.gnav ul .dropdown__lists {
  display: none;
  /*デフォルトでは非表示の状態にしておく*/
  width: 100%;
  position: absolute;
  top: 88px;
  left: 50px;
}

.gnavi__list:hover .dropdown__lists {
  display: block;
  /*Gナビメニューにホバーしたら表示*/
}

.gnav ul li .dropdown__list {
  background-color: #FFA200;
  height: 60px;
  transition: all .3s;
  position: relative;
  width: 320px;
  z-index: 99;
  display: grid;
}

.dropdown__list:not(:first-child)::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #FFF9F9;
  position: absolute;
  top: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #FFA200;
}

.dropdown__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.sp-listlayout {
  font-size: max(0.9vw, 1.6rem);
}

.time {
  text-align: center;
  margin: 3% auto;
}

/*==================================================
お問い合わせフォーム
===================================*/
.box_con {
  max-width: 900px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .box_con {
    width: 95%;
  }
}

.box_con form {
  width: 100%;
}

.box_con form table {
  width: 100%;
  font-size: 1.8rem;
  padding: 1rem;
  margin-top: 5rem;
}

.box_con form table tr {
  position: relative;
}

.box_con form table tr:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: dotted #cdcdcd 1px;
}

.box_con form table tr th {
  width: 30%;
  font-weight: normal;
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .box_con form table tr th {
    text-align: center;
    width: 100%;
    display: block;
    background: #FFA200;
    padding: .8em .2em;
    color: #fff;
  }
}

.box_con form table tr th span {
  background: #cd6f55;
  padding: 0 .3em;
  color: #fff;
  margin-left: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.box_con form table tr td {
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media only screen and (max-width: 768px) {
  .box_con form table tr td {
    padding: 1.5em .5em;
    display: block;
    width: 100%;
  }
}

.box_con form table tr .box_br {
  display: block;
}

.box_con form table tr select {
  border: 1px solid #FFA200;
}

.box_con form table tr label input {
  cursor: pointer;
  display: none;
  vertical-align: middle;
}

.box_con form table tr .radio02-input+label {
  padding-left: 23px;
  margin-right: 20px;
  position: relative;
}

.box_con form table tr .radio02-input+label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.box_con form table tr .radio02-input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #FFA200;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.box_con form table tr select,
.box_con form table tr input,
.box_con form table tr textarea {
  width: 100%;
  height: 3em;
  padding: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #EEEEEE;
}

.box_con form table tr textarea {
  height: 10em;
}

/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}

.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}

.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}

.con_pri .box_pri .box_tori h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 2rem;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}

.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}

.con_pri .box_pri .box_num {
  margin-top: 30px;
}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}

.con_pri .box_pri .box_num h4 {
  font-size: 2rem;
  font-weight: 600;
}

.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;

}

@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}

.box_num ul li {
  font-size: 1.8rem;
  line-height: 1.7;
  list-style: square outside none;
  margin: 0 0 0 4rem;
  padding: 0;
}

.box_check {
  text-align: center;
  margin: 1em auto;
}

.box_check label {
  display: inline-block;
}

.box_check label span {
  margin-left: .3em;
  font-size: 1.8rem;
}

.btn {
  text-align: center;
}

.btn input {
  display: inline-block;
  background: #eee;
  padding: .5em 4em;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider02 {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider02 img {
  width: 45vw;
  /*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}

.slider02 .slick-slide {
  transform: scale(0.8);
  /*左右の画像のサイズを80%に*/
  transition: all .5s;
  /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;
  /*透過50%*/
}

.slider02 .slick-slide.slick-center {
  transform: scale(1);
  /*中央の画像のサイズだけ等倍に*/
  opacity: 1;
  /*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.price_box
{
    background: #F1F1F1;
    padding: 3vw;
    border-radius: 10px;
}
.price_ttl
{
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #FFA200;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: max(1.6vw , 1.8rem);
    font-weight: 700;
}
.price_name
{
    width: 60%;
}
.price
{
    width: 40%;
    text-align: right;
    color: #FFA200;
}
.price_inner
{
    margin-bottom: 6%;
}
.mt3
{
    margin-top: 3%;
}
.footer .flex {
  margin-bottom: 5vw;
}





@media screen and (max-width: 980px) {
  .flex-txt {
    width: 100%;
    margin-bottom: 3%;
  }

  .flex-img {
    width: 100%;
    text-align: center;
    margin-bottom: 3%;
  }

  .flex-3 {
    width: 100%;
    margin-bottom: 3%;
  }

  .list_flex li {
    width: 48%;
  }

  .list_flex2 li {
    width: 100%;
  }

  .scroll {
    overflow-x: scroll;
    white-space: nowrap;
  }

  .list_anchor li {
    width: calc(100% / 2 - 2vw);
  }

  .list_anchor li a::before {
    right: 1rem;
  }

  .sp-listlayout {
    table-layout: fixed;
    font-size: max(0.9vw, 1.6rem);
  }

  .sp-listlayout tr {
    display: block;
  }

  .sp-listlayout th {
    border: none !important;
    display: list-item;
    list-style: none;
    width: 100% !important;
  }

  .sp-listlayout td {
    border: none !important;
    display: list-item;
    list-style: none;
    width: 100% !important;
  }

  .slider02 img {
    width: 60vw;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: auto;
  }

  .footer .flex {
    margin-bottom: 5vw;
    gap: 40px;
  }

  /* sp float */
  #sp_float {
    height: 15vw;
    display: flex;
    flex-wrap: nowrap;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    transform: translateY(100px);
  }

  #sp_float .tel {
    display: inline-block;
    width: 85vw;
    background-color: #ffa200;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

  }

  #sp_float .tel::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15vw 0 0 85vw;
    transform: scaleX(-1);
    border-color: transparent transparent transparent rgba(255, 181, 69, 1);
    z-index: 1;
  }

  #sp_float .tel img {
    height: 80%;
    width: auto;
    position: relative;
    z-index: 2;

  }

  #sp_float .go_top {
    display: inline-block;
    width: 15vw;
    background-color: #ffffff;
    border: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #sp_float .go_top img {
    height: 80%;
    width: auto;

  }
        .price_name
{
    width: 100%;
}
.price
{
    width: 100%;

}

  /*　上への動き　*/

  #sp_float.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);
    }
  }

}