@charset "UTF-8";

/*===============================================================

 root

===============================================================*/
:root {
  --color-base: #4a4a4a;
  --color-subp: #ff4f64;
  --color-subb: #3a95e0;
  /* swiper root */
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
}

/*===============================================================

COMMON

===============================================================*/
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  word-break: break-all;
	text-transform: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  text-size-adjust: 100%;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;  /* 1rem = 10px */
  overflow-y: scroll;
}

@media (width <= 767px) {
  body {
    padding-bottom: 6rem;
  }
}

a,
a:hover,
a:visited {
  text-decoration: none;
  color: var(--color-base);
}

ul li {
  list-style: none;
}

h1 {
  font-family: "Arial black", "Arial", "Hiragino Sans";
  font-size: 6rem;
  color: #ff4f64;
}

h2 {
  font-family: 'Jost', sans-serif;
  font-size: 5rem;
  color: var(--color-base);
  font-weight: normal;
}

h3,
h4 {
  font-weight: bold;
  color: #ff4f64;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 3.6rem;
}

h5 {
  font-size: 5rem;
}

p {
  font-size: 1.6rem;
  color: #4a4a4a;
  line-height: 1.75;
}

html,
body,
h3,h4,h5,
p {
  font-family: ”ヒラギノ角ゴ Pro W3″, “Hiragino Kaku Gothic Pro”,
               “メイリオ”, Meiryo, Osaka, “ＭＳ Ｐゴシック”,
               “MS PGothic”, sans-serif;
}

.mt50 {
  margin-top: 5rem !important;
}

.mt80 {
  margin-top: 8rem !important;
}

.mt100 {
  margin-top: 10rem !important;
}

.mb80 {
  margin-bottom: 8rem !important;
}

.mb100 {
  margin-bottom: 10rem !important;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media (width <= 430px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/*===============================================================

 Fade Animattion

===============================================================*/
.fadeI {
  opacity: 0;
}

.fadeI.inv {
  opacity: 1;
  transition: 1s ease-in-out .2s;
}

.fadeD {
  opacity: 0;
  transform: translate3d(0, -20rem, 0);
}

.fadeD.inv {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s ease-in-out .2s;
}

.fadeU {
  opacity: 0;
  transform: translate3d(0, 20rem, 0);
}

.fadeU.inv {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s ease-in-out .2s;
}

.fadeR {
  opacity: 0;
  transform: translate3d(-20rem, 0, 0);
}

.fadeR.inv {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s ease-in-out .2s;
}

.fadeL {
  opacity: 0;
  transform: translate3d(20rem, 0, 0);
}

.fadeL.inv {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s ease-in-out .2s;
}

/*===============================================================

 BUTTON

===============================================================*/

/* CONTACT BUTTON -- header & footer -- */


/* READ MORE BUTTON */
.btn2 {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  width: 25rem;
  height: 5rem;
  background-image: linear-gradient(to top, #D8D9DB 0%, #fff 80%, #FDFDFD 100%);
  border-radius: 3rem;
  border: .1rem solid #8F9092;
  transition: all 0.2s ease;
  font-size: 1.4rem;
  font-weight: 600;
  text-shadow: 0 .1rem #fff;
  margin: 0 auto;
}

.btn2:hover {
  box-shadow: 0 .4rem .3rem .1rem #FCFCFC, 0 .6rem .8rem #D6D7D9, 0 -.4rem .4rem #CECFD1, 0 -.6rem .4rem #FEFEFE, inset 0 0 .3rem .3rem #CECFD1;
}

.btn2:active {
  box-shadow: 0 .4rem .3rem .1rem #FCFCFC, 0 .6rem .8rem #D6D7D9, 0 -.4rem .4rem #CECFD1, 0 -.6rem .4rem #FEFEFE, inset 0 0 .5rem .3rem #999, inset 0 0 3rem #aaa;
}

.btn2:focus {
  box-shadow: 0 .4rem .3rem .1rem #FCFCFC, 0 .6rem .8rem #D6D7D9, 0 -.4rem .4rem #CECFD1, 0 -.6rem .4rem #FEFEFE, inset 0 0 .5rem .3rem #999, inset 0 0 3rem #aaa;
}

/* INDEX BUTTON */
.btn3 {
 position: relative;
 font-size: 1.6rem;
 text-transform: uppercase;
 text-decoration: none;
 padding: 1.16em 6.6em;
 display: inline-block;
 border-radius: 6em;
 transition: all .2s;
 border: none;
 font-family: inherit;
 background: linear-gradient(to right,#ff4f64, #ff9819);
}

.btn3:hover {
 transform: translateY(-.3rem);
 box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}

.btn3:active {
 transform: translateY(-.1rem);
 box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.2);
}

.btn3::after {
 content: "";
 display: inline-block;
 height: 100%;
 width: 100%;
 border-radius: 10rem;
 position: absolute;
 top: 0;
 left: 0;
 z-index: -1;
 transition: all .4s;
}

.btn3::after {
 background: linear-gradient(to right,#ff4f64, #ff9819);
}

.btn3:hover::after {
 transform: scaleX(1.4) scaleY(1.6);
 opacity: 0;
}

.btn3::before,
.btn4::after {
  content: "";
  font-size: 2rem;
  right: 5%;
  bottom: 1.7rem;
  position: absolute;
  color: #fff;
}

@media (width <= 430px) {
  .btn3::before,
  .btn4::after {
    bottom: .7rem;
  }

  #works .btn4::after {
    bottom: 1.7rem;
  }
}

.btn4::after {
  color: #ff4f64;
}

.btn3 a,
.btn3 a:visited {
  color: #fff;
}

.btn4 {
  height: 6rem;
  width: 27.769rem;
  margin: 0 auto;
  margin-top: 3rem;
  background: linear-gradient(to right,#ff4f64, #ff9819);
  border-radius: 6em;
  box-sizing: border-box;
  display: block;
  font-size: 1.4em;
  padding: .2rem;
  position: relative;
  text-decoration: none;
  z-index: 2;
}

.btn4:hover,
.btn4:hover::after {
  color: #fff;
}

.btn4 a {
  align-items: center;
  background: #fff;
  border-radius: 4rem;
  display: flex;
  justify-content: center;
  height: 100%;
  transition: background 0.5s ease;
  width: 100%;
}

.btn4:hover a {
  background: transparent;
  color: #fff;
}

.btn4 a {
  color: #ff4f64;
}

.btn5 {
  width: 42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .7rem 2rem;
  font-size: 1.6rem;
  text-align: center;
  text-decoration: none;
  backface-visibility: hidden;
  border: .3rem solid transparent;
  border-radius: 3rem;
  border-color: transparent;
  background-color: #fff;
  transition: transform 0.2s cubic-bezier(0.235, 0, 0.05, 0.95);
}

.btn5:hover {
  transform: perspective(.1rem) scale3d(1.044, 1.044, 1) translateZ(0) !important;
}

.btn5 a,
.btn5 a:visited {
  width: 100%;
  color: #3a95e0;
  position: relative;
  margin-left: -3rem;
}

.btn5 a::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin-top: .35rem;
  margin-left: 1.8rem;
  width: 2rem;
  height: auto;
  background: url(../img/ad_icon.svg) no-repeat;
  background-size: 100%;
}

.cta {
  border: none;
  background: none;
}

.cta span {
  padding-bottom: .7rem;
  letter-spacing: .4rem;
  font-size: 1.4rem;
  padding-right: 1.5rem;
  text-transform: uppercase;
}

.cta svg {
  transform: translateX(-.8rem);
  transition: all .3s ease;
  fill: var(--color-subb);
}

.cta a {
  color: var(--color-subb);
}

.cta:hover svg {
  transform: translateX(0);
  fill: var(--color-subb);
}

.cta:active svg {
  transform: scale(0.9);
  fill: var(--color-subb);
}

.hover-underline-animation {
  position: relative;
  color: var(--color-subb);
  padding-bottom: 2rem;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: .2rem;
  bottom: 0;
  left: 0;
  background-color: var(--color-subb);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.cta:hover .hover-underline-animation::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
/*===============================================================

 header nav

===============================================================*/
.site-header {
  width: 100%;
  height: 5rem;
  padding: 4rem 1rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999;
  background: rgba(255, 255, 255, .6);
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, .37);
  backdrop-filter: blur(.25rem);
  -webkit-backdrop-filter: blur(.25rem);
  transition: all .3s ease;
}

.site-header_top {
  width: 100%;
  height: 5rem;
  padding: 4rem 1rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0);
  transition: all .3s ease;
  z-index: 9999;
}

.site-header_top a {
  color: #fff;
}

.site-header_top .hamhead a {
  color: var(--color-base);
}

@media (width >= 801px) {
  .site-header_top.change-color {
    position: fixed;
    background: rgba(255, 255, 255, .6);
    box-shadow: 0 .8rem 3.2rem 0 rgba(31, 38, 135, .37);
    backdrop-filter: blur(.25rem);
    -webkit-backdrop-filter: blur(.25rem);
    transition: all .3s ease;
    z-index: 99999999;
  }

  .site-header_top.change-color a {
    color: var(--color-base);
  }
}

/* nav */
.head {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

.head .logoh {
  display: inline-block;
  width: 20%;
  margin-top: 1rem;
}

.head .link {
  width: 100%;
  margin-right: 14rem;
}

.head .logoh img {
  margin-top: 7%;
  margin-left: 15%;
  width: 150px;
}

.head ul {
  display: flex;
  vertical-align: top;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}

.head ul li {
  display: flex;
  list-style: none;
  height: 6rem;
  line-height: 6rem;
  margin: 2% 2%;
  position: relative;
}

.head ul .h-line {
  display: inline-block;
  border: .1rem solid #9f9f9f;
  height: 3rem;
  margin: 3.4rem 3rem 0 3rem;
}

.site-header_top .head ul .h-line {
  border: .1rem solid #fff;
}

.site-header_top.change-color .head ul .h-line {
  border: .1rem solid #9f9f9f;
}

.head ul li a {
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: all .3s;
}

.head ul li a::after {
  position: absolute;
  content: '';
  width: 0;
  height: .1rem;
  background-color: var(--color-base);
  transition: .3s;
}

.site-header_top .head ul li a::after {
  background-color: #fff;
}

.site-header_top.change-color .head ul li a:hover::after,
.site-header_top .head li.has-child ul li a:hover::after {
  background-color: var(--color-base);
}

.head ul li a::after {
  bottom: 1.5rem;
  right: 0;
}

.head ul li a:hover::after {
  width: 100%;
}

.head .contact {
  width: 13%;
  margin-top: 2.3%;
  margin-right: 2%;
  position: relative;
}

.head .contact .tel {
  margin: 3% 3% 0 0;
  width: 35%;
  vertical-align: bottom;
  float: right;
}

.head .contact .tel img {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 6rem;
}

/* sub-nav */
.head ul ul {
  display: block;
}

.head ul li.has-child {
  margin-left: 2rem;
}

.head ul li.has-child::before {
	content:'';
	position: absolute;
	left: -1.5rem;
	top: 2.6rem;
	width: .6rem;
	height: .6rem;
	border-top: .2rem solid #4a4a4a;
  border-right: .2rem solid #4a4a4a;
  transform: rotate(135deg);
}

.site-header_top .head ul li.has-child::before {
  border-top: .2rem solid #fff;
  border-right: .2rem solid #fff;
}

.site-header_top.change-color .head ul li.has-child::before {
  border-top: .2rem solid #4a4a4a;
  border-right: .2rem solid #4a4a4a;
}

.head li.has-child ul {
  position: absolute;
  left: 0;
  top: 6.2rem;
  z-index: 4;
  width: 18rem;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 .8rem 3.2rem 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(.25rem);
  -webkit-backdrop-filter: blur(.25rem);
  border-radius: 1rem;
  border: .1rem solid rgba(255, 255, 255, 0.18);
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
}

.head li.has-child:hover > ul,
.head li.has-child ul li:hover > ul,
.head li.has-child:active > ul,
.head li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

.head li.has-child ul {
  padding: 1rem;
}

.head li.has-child ul li a {
  width: 90%;
	border-bottom: solid .1rem rgba(214, 214, 214, .6);
  color: var(--color-base);
}

.head li.has-child ul li:last-child a {
	border-bottom: none;
  font-size: 1.3rem;
}

/* header responsive */
@media (width <= 800px) {
  .site-header_top {
    background: rgba(255, 255, 255, .6);
    box-shadow: 0 .8rem 3.2rem 0 rgba(31, 38, 135, .37);
    backdrop-filter: blur(.25rem);
    -webkit-backdrop-filter: blur(.25rem);
    transition: all .3s ease;
  }

  .head .logoh {
    width: 70%;
  }

  .head ul {
    display: none;
  }

  .head .contact {
    display: none;
  }
}

/* hamburger menu */
@media (width >= 1024px) {
  .hamhead {
    display: none;
  }
}

@media (width < 1024px) {
  .hamhead {
    display: flex;
    width: 100%;
  }

  .head,
  .logoh img {
    display: none;
  }

  header.shownav {
    width: 100%;
    height: 65rem;
  }

  header {
    width: 100%;
    height: 5rem;
    position: relative;
    top: 0;
    left: 50% !important;
    transform: translateX(-50%);
    box-shadow: 0 0 1rem #000;
    overflow: hidden;
    backface-visibility: hidden;
    transition: all 0.3s cubic-bezier(0.7, 0.01, 0.3, 1);
    transition-delay: 400ms;
    z-index: 10000000;
  }

  nav {
    width: 5rem;
    height: 5rem;
  }

  .dc-menu-trigger {
    position: absolute;
    top: 1.5rem;
    right: 1.2rem;
    display: block;
    width: 2.8rem;
    height: 5rem;
    cursor: pointer;
    z-index: 30;
    transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
    transition-delay: 600ms;
  }

  .dc-menu-trigger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: .3rem;
    margin-top: -.2rem;
    background-color: #000;
    font-size: 0;
    user-select: none;
    transition: background-color 0.5s;
  }

  .dc-menu-open .dc-menu-trigger span {
    background-color: transparent;
  }

  .dc-menu-open .dc-menu-trigger {
    /* left: 95%; */
    transition: all 0.4s cubic-bezier(0.7, 0, 0.36, 0.63);
  }

  .dc-menu-trigger span::before,
  .dc-menu-trigger span::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    content: '';
    transition: all 0.5s cubic-bezier(0.7, 0, 0.36, 0.63);
  }

  .dc-menu-trigger span::before {
    transform: translateY(-250%);
  }

  .dc-menu-trigger span::after {
    transform: translateY(250%);
  }

  .dc-menu-open .dc-menu-trigger span::before {
    transform: translateY(0) rotate(45deg);
  }

  .dc-menu-open .dc-menu-trigger span::after {
    transform: translateY(0) rotate(-45deg);
  }

  .dc-menu-close .dc-menu-trigger::before {
    animation: plusVertical 0.3s ease forwards;
  }

  .dc-menu-close .dc-menu-trigger::after {
    animation: plusHorizontal 0.3s ease forwards;
  }

  .menu-overlay {
    z-index: 10;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: none;
  }

  .menu-overlay.open {
    height: 100%;
  }

  .menu-overlay ul {
    position: absolute;
    visibility: hidden;
    list-style-type: none;
    top: -40%;
    left: 0;
    width: 100%;
    padding: 0;
    opacity: 0;
    display: table-cell;
    vertical-align: middle;
    transition: all 0.6s cubic-bezier(0.7, 0, 0.36, 0.63);
  }

  .menu-overlay ul li {
    text-align: center;
    font-size: 1.75rem;
    font-weight: bold;
    margin: 2.5rem 0;
    text-transform: uppercase;
    letter-spacing: .5rem;
    line-height: 4.5rem;
    color: #000;
  }

  .menu-overlay ul li::after {
    content: '';
    display: block;
    width: 5rem;
    height: .1rem;
    background: #c1c1c1;
    margin: 1rem auto 0 auto;
  }

  .menu-overlay ul li:hover {
    color: #0a02a8;
    cursor: pointer;
  }

  .menu-overlay.open ul {
    width: 100%;
    top: 2rem;
    visibility: visible;
    opacity: 1;
    transition: all 0.6s cubic-bezier(0.7, 0, 0.36, 0.63);
    transition-delay: 400ms;
  }

  .hamhead .ham-logo {
    width: 100%;
    margin-left: -8rem;
  }

  .hamhead .ham-logo img {
    width: 14rem;
    margin: .5rem 0 0 3.1rem;
  }

  .hamhead .accordion-area .ac-title {
    position: absolute;
    margin-top: .2rem;
    right: 0;
    left: 60%;
  }

  .hamhead .accordion-area li {
    background: rgba(0, 0, 0, 0);
    box-shadow: none;
  }

  .hamhead .accordion-area .faqbox {
    background: rgba(0, 0, 0, 0);
    box-shadow: none;
    margin-left: 5.5rem;
    text-align: left;
  }

  .hamhead .accordion-area .faqbox a {
    line-height: 4rem;
    color: #3f3f3f;
    margin-left: 40%;
  }

  @media (width <= 479px) {
    .hamhead .accordion-area .faqbox {
      margin-right: 4rem !important;
      margin-left: 0 !important;
    }

    .hamhead .accordion-area .ac-title {
      margin-top: .9rem !important;
    }

    @media (width <= 430px) {
      .hamhead .ham-logo {
        margin-left: -7rem;
        transition: all .3s ease;
      }

      .hamhead .ham-logo-open {
        margin-top: 50rem;
        transition: all 1s ease;
        opacity: .4;
      }

      .menu-overlay ul {
        margin-left: -2rem;
      }

      .menu-overlay ul li {
        font-size: 1.3rem;
      }
    }
  }
}

.blur {
    opacity: .25;
    transform: translateX(100px);
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

/*===============================================================

 ACCORDION

===============================================================*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 90rem;
  margin: 0 auto;
}

.accordion-area li {
  margin: 3rem 0;
	border-radius: .7rem;
	background: linear-gradient(to right, #ffe8f2, #fff7fb, #);
	box-shadow:  1.3rem 1.3rem 1.2rem #f2f2f2,
             	 -.5rem -.5rem 1.2rem #F9FFFF;
}

.ac-title {
  position: relative;
  cursor: pointer;
  font-size: 2rem;
  font-weight: bold;
  padding: 3% 3% 3% 5rem;
  transition: all .5s ease;
}

@media (width <= 768px) {
  .ac-title {
    font-size:1.7rem;
	}
}

.ac-title::before,
.ac-title::after {
  position: absolute;
  content:'';
  width: 1.5rem;
  height: .2rem;
  background-color: #000;
}

.ac-title::before {
  top:48%;
  left: 1.5rem;
  transform: rotate(0deg);
  transition: .3s;
}

.ac-title::after {
  top:48%;
  left: 1.5rem;
  transform: rotate(90deg);
  transition: .3s;
}

/*　closeというクラスがついたら形状変化　*/

.ac-title.close::before {
	transform: rotate(45deg);
}

.ac-title.close::after {
	transform: rotate(-45deg);
}

.faqbox {
  display: none;
	border-radius: 0 0 .7rem .7rem;
	background: #fff;
  padding: 2rem 2.5rem 1.5rem 2.5rem;
}

/*===============================================================

 SECTION SIZE

===============================================================*/
body section {
  width: 80%;
  margin: 0 auto;
}

body section:first-child,
body section:last-child {
  width: 100%;
}

/*===============================================================

 swiper slide

===============================================================*/
.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.loops {
  overflow: hidden;
}

.loops .swiper {
  overflow: visible;
}

.loops .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}

.loops .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.loops .swiper-slide .mask {
  opacity: 0;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  border-radius: 1rem;
  background: rgba(0, 0, 0, .5);
  display: flex;
  justify-content: center;
  color: #fff;
  text-align: center;
  transition: all .6s ease;
}

.loops .swiper-slide .mask:hover {
  opacity: 1;
}

.loops .swiper-slide p.mask {
  padding-top: 45%;
  font-size: 1.6rem;
}

.loops .slide {
  overflow: hidden;
  width: 30rem;
  height: 30rem;
  border-radius: 1rem;
  box-shadow: 0 0 1.5rem -.2rem #c2c2c2;
}

.loops .slide-media {
  padding-top: 62.5%;
  width: 100%;
  height: 100%;
}

.loops .slide-media img {
  height: calc(100% + 1.6rem);
  /* -webkit-transform: translateY(-1.6rem);
          transform: translateY(-1.6rem); */
}

.loops .slide-content {
  padding: 3.2rem;
  background: radial-gradient(
    circle farthest-side at 20rem 20rem,
    #57f6fe 0%,
    #30c7ec 50%,
    #46aef7 100%);
}

.loops .slide-title {
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 !important;
  font-weight: 600;
  color: #fff !important;
  text-shadow: 0 0 1rem rgba(255, 255, 255, .7);
  font-size: 1.8rem !important;
  font-family: 'Sawarabi Gothic', sans-serif;
}

@media (width <= 1024px) {
 .l-inner {
   padding: 0 4rem;
 }
}

@media (width <= 599px) {
 .loops .slide {
   width: 24rem;
 }
}

@media (width <= 1025px) {
 .loops .slide {
   -webkit-transition: var(--transition);
   transition: var(--transition);
 }

 .loops .slide img {
   -webkit-transition: var(--transition);
   transition: var(--transition);
 }

 .loops .slide:hover {
   -webkit-box-shadow: #ffffff4f;
           box-shadow: #ffffff4f;
 }

 .loops .swiper:hover .slide:not(:hover) {
   opacity: 0.3;
 }
}

/*===============================================================

 Contact Space

===============================================================*/
#contactspace {
  width: 100%;
  height: 35rem;
  text-align: center;
  background-image: url(../img/cs_bg.jpg);
  background-position: center;
  background-size: cover;
}

#contactspace h2 {
  padding-top: 5rem;
  color: #fff;
}

#contactspace p {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: .2rem;
  color: #fff;
}

#contactspace .cont_inner {
  width: 100%;
  text-align: center;
  margin-top: 8rem;
}

#contactspace .cont_inner {
  position: relative;
}

@media (width <= 430px) {
  #contactspace p {
    font-size: 1.45rem;
  }

  #contactspace button {
    width: 70%;
    top: 50%;
    left: 35%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}

/*===============================================================

 Footer

===============================================================*/
footer {
  padding: 3rem;
  color: #fff;
  text-align: center;
  background: #4d4d4d;
  font-size: 1.45rem;
}

#footer a {
  position: relative;
  display: inline-block;
  transition: .3s;
  color: #fff;
  font-size: 1.45rem;
}

#footer a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: .1rem;
  background-color: #fff;
  transition: .3s;
}

#footer a:hover::after {
  width: 100%;
}

#footer .logof {
  width: 16rem;
  margin-bottom: 2rem;
}

#footer .footerp {
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
}

#footer .footerl {
  width: 30%;
  padding: .5rem;
  text-align: left;
}

#footer .footerr {
  position: relative;
  display: flex;
  margin-top: 1.5rem;
}

@media (width <= 600px) {
  #footer .footerp {
    display: block;
  }

  #footer .footerl {
    width: 100%;
    border-right: none;
    text-align: center;
    line-height: 2;
  }

  #footer .footerr ul {
    padding: .5rem !important;
  }

  #footer .logof {
    width: 13rem !important;
    margin: 0 auto;
  }

  #footer .footerr {
    width: 100%;
    justify-content: space-around;
  }
}

@media (width <= 470px) {
  #footer .footerp {
    margin-bottom: 6rem;
  }
}

@media (width <= 430px) {
  #footer .footerr ul {
    padding: .5rem 0 0 2.5rem !important;
  }
}

#footer .footerr ul {
  padding: .5rem 0 0 8rem;
}

#footer .footerr ul li {
  list-style: none;
  font-size: 1.6rem;
  text-align: left;
  padding: .5rem;
}
/* 
#footer .footerr ul:first-child li:nth-child(3) {
  margin-left: 2rem;
}
*/

#footer .footerr ul:first-child li:nth-child(3) span {
  letter-spacing: -.15rem;
}

.footer_copy {
  font-family: 'Jost', sans-serif;
  margin-top: 2rem;
}

/* SP bottom */
#sp-tap {
  display: none;
}

@media (width <= 767px) {
  #sp-tap {
    display: block;
    width: 100%;
    z-index: 3;
    position: fixed;
    bottom: 0;
    background-color: #FFFFFF;
    filter: drop-shadow(.4rem .4rem .4rem rgba(0, 0, 0, 0.8));
    text-align: center;
    padding: 1rem 0;
  }

  #sp-tap ul {
    width: 90%;
    margin: auto;
    padding: 0;
    font-size: 1.5rem;
  }

  #sp-tap ul li {
    vertical-align: top;
    list-style: none;
  }

  #sp-tap ul li.tel {
    float: left;
    width: 48%;
    height: 4.4rem;
    line-height: 4.4rem;
    font-size: 90%;
    font-weight: bold;
    background-color: #4DB118;
    border-radius: .4rem;
  }

  #sp-tap ul li.tel a {
    display: block;
    color: #FFF;
    text-decoration: none;
  }

  #sp-tap ul li.btn {
    float: right;
    width: 48%;
    height: 4.4rem;
    line-height: 4.4rem;
    font-size: 90%;
    font-weight: bold;
    background-color: #FFA400;
    border-radius: .4rem;
    padding: 0;
  }

  #sp-tap ul li.btn a {
    display: block;
    color: #FFF;
    text-decoration: none;
  }
}

/*===============================================================

	Bottom Navigation

===============================================================*/
.for_sp {
  display: none;
}

@media (width <= 470px) {
  #bottom_navi {
    display: block;
    background-color: var(--color-theme);
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 100%;
    filter: drop-shadow(.4rem .4rem .5rem rgba(0, 0, 0, .8));
  }

  #bottom_navi ul {
    display: -webkit-flex;
		display: -moz-flex;
		display: -ms-flex;
		display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }

  #bottom_navi ul li {
    width: 50%;
    background: #f27189;
  }

  #bottom_navi ul li a {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 6rem;
    text-shadow: .3rem .3rem 1rem rgba(120, 120, 120, .6);
  }

  #bottom_navi ul li:nth-of-type(2) {
    background: #e802ab;
  }

  #bottom_navi img {
    width: 3rem;
    margin-top: .2rem;
  }
}

/*===============================================================

 contents title

===============================================================*/
.contents_top {
  width: 100%;
  height: 50rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: -100;
}

.contents_top_bg {
  width: 120%;
  height: 120%;
  background-position: center;
  background-size: cover;
  margin-top: -9.5rem;
  z-index: -100;
}

.contents_top_title {
  text-align: center;
  margin-top: -4.5rem;
  z-index: 1000;
}

@media (width <= 430px) {
  .contents_top_title {
    margin-top: -2.8rem;
  }
  .contents_top_title h1 {
    font-size: 4rem;
  }
}


/* 003 */
.button003 a {
    background: #eee;
    border-radius: 50px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 260px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button003 a:hover {
    background: #313131;
    color: #FFF;
}
.button003 a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button003 a:hover:after {
    border-color: #FFF;
}






/* リセット */
* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;;
}

/* 基本設定 */
.inner {
  max-width: 800px;
  width: 97%;
  margin: 0 auto;
}

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

.mt50 {
  margin-top: 50px;
}

/*　ここから重要！　*/

.gradation-border-btn {
  display: inline-block;
  padding: 2px;/* 線の太さ */
  border-radius: 10px;
  background: linear-gradient(to right, #0099F7, #F11712);/* 線の色 */
}

.gradation-border-btn__txt {
  display: block;
  position: relative;
  z-index: 0;
  padding: 10px 20px;
  border-radius: 8px;/* 親要素のborder-radiousより若干小さく */
  background: #fff;
  font-size: 16px;
}

/* hover用 */
.gradation-border-btn__txt::after {
  content: '';
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(to right, #0099F7, #F11712);
}

/* ここからhover */
.gradation-border-btn:hover .gradation-border-btn__txt {
  background: transparent;
  color: #fff;
  transition: .3s;
}
.gradation-border-btn:hover .gradation-border-btn__txt::after {
  opacity: 1;
  transition: .3s;
}