@charset "UTF-8";
/***************************
	ALL SETTING 
****************************/
:root {
  --col-orange: #FF5C00;
  --col-purple: #7747C5;
  --col-light: #fff;
  --col-dark: #27292C;
  --col-txt-light: #fff;
  --col-txt-dark: #333;
  --col-txt-gray: #666;
  --col-disable: #C6C6C6;
}

body {
  width: 100%;
  height: 100%;
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "palt" 1;
  color: var(--col-txt-light);
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  background: var(--col-dark);
  background-repeat: no-repeat;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 34px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 18px;
}

p {
  font-size: 16px;
  line-height: 1.2;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

span.strong {
  font-weight: bold;
}

a {
  color: var(--col-txt-light);
  transition: all 0.25s cubic-bezier(0.47, 0, 0.745, 0.715);
  text-decoration: none;
}

a:hover {
  color: var(--col-orange);
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
  padding: 0;
}

.content-wrap {
  max-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.base-container {
  width: 1000px;
  height: 100%;
  margin: 0 auto;
  padding: 30px 0 60px;
  position: relative;
  text-align: center;
}

.flex-container {
  width: 100%;
  height: auto;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.content-title {
  display: block;
  width: 150px;
  height: auto;
  margin: 0px auto 0px;
}

.content-title img {
  width: 100px;
  margin: 0;
}

.content-title h2 {
  font-family: myriad-pro, sans-serif;
  font-size: 40px;
  font-weight: 900;
  margin-top: -0.5em;
}

.btn,
a.btn,
button.btn {
  font-size: 20px;
  font-family: myriad-pro, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #333;
  border-radius: 0.5rem;
}

a.btn-gradient {
  font-weight: normal;
  color: #fff;
  border-radius: 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(40%, #B347C5), to(#FF4545));
  background-image: -webkit-linear-gradient(left, #B347C5 40%, #FF4545 100%);
  background-image: linear-gradient(90deg, #B347C5 40%, #FF4545 100%);
}

a.btn-gradient:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(#FF5C00), to(#7747C5));
  background-image: -webkit-linear-gradient(left, #FF5C00, #7747C5);
  background-image: linear-gradient(90deg, #FF5C00, #7747C5);
}

a.btn-gradient span {
  position: relative;
  z-index: 1;
}

a.btn-gradient:hover {
  color: #fff;
}

a.btn-gradient:hover:after {
  opacity: 0;
}

.sp-br {
  display: none;
}

.pc-br {
  display: inline;
}

.sp-none {
  display: inline;
  opacity: 1;
}

.pc-none {
  display: none;
  opacity: 0;
}

@media (max-width: 828px) {
  /*スマホ*/
  .content-wrap {
    max-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
  }
  .base-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 20px 0 40px;
    position: relative;
    text-align: center;
  }
  .content-title {
    display: block;
    width: auto;
    height: auto;
    margin: 0px auto 0px;
  }
  .content-title .txt-title {
    font-size: 35px;
    font-weight: bold;
  }
  .sp-br {
    display: inline;
  }
  .pc-br {
    display: none;
  }
  .sp-none {
    display: none;
    opacity: 0;
  }
  .pc-none {
    display: inline;
    opacity: 1;
  }
}

#xyz-scroll {
  display: none;
}

/***************************
	loading
****************************/
#loading {
  width: 100vw;
  height: 100vh;
  height: -webkit-fill-available;
  background: #27292c;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 900;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loading-inner {
  left: 50%;
  position: absolute;
  top: 50%;
}

.loading-inner img {
  transform: translate(-50%, -50%);
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-inner {
  left: 50%;
  position: absolute;
  top: 50%;
}

.loading-inner img {
  transform: translate(-50%, -50%);
}

.hollow-dots-spinner, .hollow-dots-spinner * {
  box-sizing: border-box;
}

.hollow-dots-spinner {
  height: 12px;
  width: calc(30px * 3);
  transform: translate(-50%, -50%);
}

.hollow-dots-spinner .dot {
  width: 12px;
  height: 12px;
  margin: 0 calc(15px / 2);
  border: calc(15px / 10) solid #FFF;
  border-radius: 50%;
  float: left;
  transform: scale(0);
  animation: hollow-dots-spinner-animation 1000ms ease infinite 0ms;
}

.hollow-dots-spinner .dot:nth-child(1) {
  animation-delay: calc(300ms * 1);
}

.hollow-dots-spinner .dot:nth-child(2) {
  animation-delay: calc(300ms * 2);
}

.hollow-dots-spinner .dot:nth-child(3) {
  animation-delay: calc(300ms * 3);
}

@keyframes hollow-dots-spinner-animation {
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/***************************
	animate.css
****************************/
:root {
  --animate-delay: 0.5s;
}

/***************************
	header
****************************/
header {
  width: 100%;
  margin: 0 auto;
  background: var(--col-dark);
}

header .header-grad {
  width: 100%;
  margin: 0 auto;
  height: 10px;
  background: -moz-linear-gradient(left, #FF5C00, #7747C5);
  background: -webkit-linear-gradient(left, #FF5C00, #7747C5);
  background: linear-gradient(left, #FF5C00, #7747C5);
}

header .logo-container {
  position: absolute;
  top: 10px;
  left: 0;
  width: 240px;
  height: 240px;
  background: rgba(39, 41, 44, 0.9);
  z-index: 90;
}

header .logo-container img {
  text-align: center;
  margin: 30px 35px 0px 35px;
}

header .logo-container img:hover {
  width: 153px;
  margin: 30px 35px 0px 37px;
  transition: all 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

header .menu-btn {
  display: none;
}

header #menu-btn-check {
  display: none;
}

header .header-container {
  width: 96%;
  margin: 0 auto;
  padding: 20px 0 0 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .flex-container {
  justify-content: flex-end;
  align-items: flex-end;
}

header .manu-wrapper {
  width: 100%;
  height: 100%;
}

header .menu-item {
  flex: 0 1 100px;
  text-align: center;
}

header .menu-item p {
  font-family: myriad-pro, sans-serif;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2em;
}

@media (max-width: 828px) {
  /*スマホ*/
  header {
    width: 100%;
    margin: 0 auto;
    background: var(--col-dark);
  }
  header .header-grad {
    height: 5px;
  }
  header .logo-container {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100px;
    height: 100px;
    background: rgba(39, 41, 44, 0.9);
    z-index: 60;
  }
  header .logo-container img {
    text-align: center;
    width: 80px;
    height: 75px;
    margin: 10px 10px 0px 10px;
  }
  header .logo-container img:hover {
    width: 80px;
    margin: 10px 10px 0px 10px;
  }
  header .menu-btn {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #fff;
    cursor: pointer;
  }
  header .menu-btn span {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(#FF5C00), to(#7747C5));
    background-image: -webkit-linear-gradient(left, #FF5C00, #7747C5);
    background-image: linear-gradient(90deg, #FF5C00, #7747C5);
    position: absolute;
    opacity: 1;
    transition: all .3s;
  }
  header .menu-btn span:nth-of-type(1) {
    top: 20px;
  }
  header .menu-btn span:nth-of-type(2) {
    top: 28px;
  }
  header .menu-btn span:nth-of-type(3) {
    bottom: 20px;
  }
  header #menu-btn-check:checked ~ .menu-btn span:nth-of-type(2) {
    opacity: 0;
  }
  header #menu-btn-check:checked ~ .menu-btn span:nth-of-type(1) {
    transform: translateY(8px) rotate(45deg);
  }
  header #menu-btn-check:checked ~ .menu-btn span:nth-of-type(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  header .header-container {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .manu-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 50;
    background: rgba(39, 41, 44, 0.9);
    transition: all 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  }
  header #menu-btn-check:checked ~ .manu-wrapper {
    left: 0%;
    transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
  header .flex-container {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    align-content: center;
  }
  header .menu-item {
    flex: 0 1 300px;
    text-align: center;
  }
  header .menu-item svg {
    display: inline-block;
    margin: 0 5px 10px 0;
  }
  header .menu-item p {
    display: inline-block;
    font-family: myriad-pro, sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 2em;
  }
}

/***************************
	hero
****************************/
.hero-container {
  width: 100%;
  height: 80vh;
  margin: 0 auto 0;
  position: relative;
}

.hero-container .hero-desc {
  position: absolute;
  bottom: 0px;
  right: 3%;
  width: 50vw;
  z-index: 10;
  text-align: right;
}

.hero-container .hero-desc p {
  font-size: 10px;
  line-height: 2em;
}

.hero-container .hero-desc .tel {
  font-size: 18px;
  margin: 0.5em 0 0.5em 0;
}

.hero-container .swiper-container {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 90%;
  min-width: 1140px;
  height: 100vw;
  max-height: 80vh;
  min-height: 400px;
  z-index: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
}

.hero-container .swiper-container .swiper-slide {
  text-align: center;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero-container .swiper-container .swiper-slide img {
  display: inline;
  width: auto;
  max-width: 105%;
  align-self: center;
}

.hero-container .img-hero-sp {
  display: none;
}

@media (max-width: 828px) {
  /*スマホ*/
  .hero-container {
    width: 100%;
    height: 475px;
    margin: 0 auto 0;
    position: relative;
  }
  .hero-container .hero-desc {
    position: absolute;
    bottom: 0px;
    right: 3%;
    width: 92%;
    z-index: 10;
    text-align: right;
  }
  .hero-container .hero-desc p {
    font-size: 9px;
    line-height: 1.5em;
  }
  .hero-container .hero-desc .tel {
    font-size: 18px;
    margin: 0.3em 0 0.3em 0;
  }
  .hero-container .swiper-container {
    position: relative;
    overflow: hidden;
    margin: 40px auto 0;
    min-width: 320px;
    height: 100vh;
    max-height: 425px;
    min-height: 387px;
    z-index: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  }
  .hero-container .swiper-container .swiper-slide {
    text-align: center;
    line-height: 1;
    display: flex;
  }
  .hero-container .swiper-container .swiper-slide img {
    width: auto;
    max-height: 100%;
    max-width: none;
  }
  .hero-container .img-hero-sp {
    display: none;
  }
}

/***************************
	turing
****************************/
.turing-container {
  position: relative;
  width: 100%;
  margin-top: 120px;
}

.turing-container .turing-bg {
  position: relative;
  width: 100%;
  background: url("../img/bg-turing.png") no-repeat;
  background-position: center;
  background-size: 100%;
  -webkit-clip-path: polygon(0 0, 100% 18%, 100% 84%, 0 100%);
  clip-path: polygon(0 0, 100% 18%, 100% 84%, 0 100%);
  padding: 50px 0 100px 0;
  margin: -50px 0 -50px 0;
}

.turing-container .content-title img {
  width: 100px;
}

.turing-container .content-title h2 {
  margin-top: -0.5em;
}

.turing-container .flex-container {
  justify-content: space-between;
  width: 1140px;
  margin: 80px auto 20px;
}

.turing-container .flex-container .turing-item {
  flex: 0 1 360px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.turing-container .flex-container .turing-item .turing-item-img {
  height: 360px;
  width: 360px;
  overflow: hidden;
  position: relative;
}

.turing-container .flex-container .turing-item img {
  width: auto;
  height: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.turing-container .flex-container .turing-item .turing-item-txt {
  width: 100%;
  height: 90px;
  position: relative;
  padding: 10px 15px;
  background: var(--col-light);
  border-image: -moz-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
  border-image: -webkit-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
  border-image: linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
  border-style: solid;
}

.turing-container .flex-container .turing-item p {
  font-size: 12px;
  font-weight: 200;
  text-align: left;
  margin-bottom: 1em;
  color: var(--col-txt-gray);
}

.turing-container .flex-container .turing-item h3 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: var(--col-txt-dark);
}

.turing-container .flex-container .turing-item:hover {
  box-shadow: 0px 1px 5px #333;
  transform: translate(0, -2px);
}

.turing-container .btn-container {
  width: 1140px;
  text-align: right;
  margin: 0px auto 0px;
}

@media (max-width: 828px) {
  /*スマホ*/
  .turing-container {
    position: relative;
    width: 100%;
    margin-top: 30px;
  }
  .turing-container .turing-bg {
    position: relative;
    width: 100%;
    background: url("../img/bg-turing.png") no-repeat;
    background-position: center;
    background-size: 200%;
    -webkit-clip-path: polygon(0 0, 100% 12%, 100% 92%, 0 100%);
    clip-path: polygon(0 0, 100% 12%, 100% 92%, 0 100%);
    padding: 50px 0 50px 0;
    margin: -20px 0 -40px 0;
  }
  .turing-container .content-title img {
    width: 80px;
  }
  .turing-container .content-title h2 {
    margin-top: -0.5em;
    font-size: 32px;
  }
  .turing-container .flex-container {
    justify-content: space-around;
    width: 320px;
    margin: 20px auto 10px;
  }
  .turing-container .flex-container .turing-item {
    flex: 0 1 150px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .turing-container .flex-container .turing-item .turing-item-img {
    height: 150px;
    width: 150px;
    overflow: hidden;
    position: relative;
  }
  .turing-container .flex-container .turing-item img {
    width: auto;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .turing-container .flex-container .turing-item .turing-item-txt {
    width: 100%;
    height: 90px;
    position: relative;
    padding: 10px 15px;
    background: var(--col-light);
    border-image: -moz-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
    border-image: -webkit-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
    border-image: linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
    border-style: solid;
  }
  .turing-container .flex-container .turing-item p {
    font-size: 12px;
    font-weight: 200;
    text-align: left;
    margin-bottom: 1em;
    color: var(--col-txt-gray);
  }
  .turing-container .flex-container .turing-item h3 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: var(--col-txt-dark);
  }
  .turing-container .flex-container .turing-item:hover {
    box-shadow: 0px 1px 5px #333;
    transform: translate(0, -2px);
  }
  .turing-container .btn-container {
    width: 320px;
    text-align: right;
    margin: 0px auto 0px;
  }
  .turing-container .btn-container a {
    font-size: 14px;
  }
}

/***************************
	about
****************************/
.about-container {
  position: relative;
  width: 100%;
  padding-bottom: 50px;
}

.about-container .content-title img {
  width: 80px;
}

.about-container .content-title h2 {
  margin-top: 0em;
}

.about-container .flex-container-ab01 {
  justify-content: space-between;
  align-items: center;
  width: 1140px;
  margin: 80px auto 20px;
}

.about-container .flex-container-ab01 .about-main-box {
  flex: 0 1 550px;
}

.about-container .flex-container-ab01 .about-main-box .about-main-img {
  height: 500px;
  width: 500px;
  overflow: hidden;
  position: relative;
}

.about-container .flex-container-ab01 .about-main-box img {
  width: auto;
  height: 500px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-container .flex-container-ab01 .about-main-txt {
  flex: 0 1 560px;
  text-align: left;
}

.about-container .flex-container-ab01 .about-main-txt h4 {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 1em;
}

.about-container .flex-container-ab01 .about-main-txt p {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 300;
  margin-bottom: 5em;
}

.about-container .flex-container-ab01 .about-main-txt .btn-container {
  width: 100%;
  text-align: right;
  margin: 0px auto 0px;
}

.about-container .flex-container-ab02 {
  justify-content: space-between;
  align-items: center;
  width: 1140px;
  margin: 80px auto 50px;
}

.about-container .flex-container-ab02 .about-sub-logo {
  flex: 0 1 190px;
}

.about-container .flex-container-ab02 .about-sub-logo img {
  width: auto;
  width: 190px;
  margin: 0 40px 0 0;
}

.about-container .flex-container-ab02 .about-sub-item {
  flex: 0 1 200px;
  height: 100px;
  text-align: center;
}

.about-container .flex-container-ab02 .about-sub-item h5 {
  width: 150px;
  font-size: 16px;
  font-weight: 600;
  margin: 10px auto 0px;
  padding: 2.5px 0px 2.5px 0px;
  color: var(--col-dark);
  background: var(--col-light);
}

.about-container .flex-container-ab02 .about-sub-item p {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 300;
  margin-top: 0.5em;
}

.about-container .flex-container-ab02 .about-sub-item .supplement {
  font-size: 10px;
  margin-top: 0em;
}

.about-container .flex-container-ab02 .about-sub-line {
  flex: 0 1 20px;
}

.about-container .flex-container-ab03 {
  justify-content: space-between;
  align-items: center;
  width: 1140px;
  margin: 0px auto 80px;
}

.about-container .flex-container-ab03 .about-shop-item {
  flex: 0 1 180px;
}

.about-container .flex-container-ab03 img {
  width: 360px;
}

@media (max-width: 828px) {
  /*スマホ*/
  .about-container {
    position: relative;
    width: 100%;
    padding-bottom: 30px;
  }
  .about-container .content-title img {
    width: 70px;
  }
  .about-container .content-title h2 {
    margin-top: 0em;
    font-size: 32px;
  }
  .about-container .flex-container-ab01 {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 20px auto 20px;
  }
  .about-container .flex-container-ab01 .about-main-box {
    flex: 0 1 100%;
  }
  .about-container .flex-container-ab01 .about-main-box .about-main-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .about-container .flex-container-ab01 .about-main-box img {
    width: auto;
    height: 250px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .about-container .flex-container-ab01 .about-main-txt {
    flex: 0 1 92%;
    max-width: 500px;
    text-align: center;
  }
  .about-container .flex-container-ab01 .about-main-txt h4 {
    font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    font-size: 20px;
    text-align: center;
    font-weight: 900;
    margin-bottom: 1em;
    margin-top: 20px;
  }
  .about-container .flex-container-ab01 .about-main-txt p {
    font-size: 15px;
    line-height: 1.4em;
    font-weight: 300;
    margin-bottom: 3em;
  }
  .about-container .flex-container-ab01 .about-main-txt .btn-container {
    width: 90%;
    text-align: center;
    margin: 0px auto 0px;
  }
  .about-container .flex-container-ab01 .about-main-txt .btn-container a {
    font-size: 14px;
  }
  .about-container .flex-container-ab02 {
    justify-content: space-between;
    align-items: center;
    width: 320px;
    margin: 60px auto 20px;
  }
  .about-container .flex-container-ab02 .about-sub-logo {
    flex: 0 1 100%;
  }
  .about-container .flex-container-ab02 .about-sub-logo img {
    width: auto;
    width: 120px;
    margin: 0 0 20px 0;
  }
  .about-container .flex-container-ab02 .about-sub-item {
    flex: 0 1 130px;
    height: 100px;
    text-align: center;
  }
  .about-container .flex-container-ab02 .about-sub-item h5 {
    width: 110px;
    font-size: 10px;
    font-weight: 600;
    margin: 10px auto 0px;
    padding: 5px 0px 5px 0px;
    color: var(--col-dark);
    background: var(--col-light);
  }
  .about-container .flex-container-ab02 .about-sub-item p {
    font-size: 15px;
    line-height: 1.5em;
    font-weight: 300;
    margin-top: 0.5em;
  }
  .about-container .flex-container-ab02 .about-sub-item .supplement {
    font-size: 10px;
    margin-top: 0em;
  }
  .about-container .flex-container-ab02 .about-sub-line {
    flex: 0 1 20px;
    margin: 0 0 5px 0;
    opacity: 0.5;
  }
  .about-container .flex-container-ab03 {
    justify-content: space-between;
    align-items: center;
    width: 320px;
    margin: 0px auto 80px;
  }
  .about-container .flex-container-ab03 .about-shop-item {
    flex: 0 1 155px;
  }
  .about-container .flex-container-ab03 img {
    width: 155px;
    margin-top: 10px;
  }
}

/***************************
	Access
****************************/
.access-container {
  position: relative;
  width: 100%;
}

.access-container .content-title img {
  width: 80px;
}

.access-container .content-title h2 {
  margin-top: -0.3em;
}

.access-container .gmap {
  margin: 50px 0 0 0;
}

.access-container .access-txt {
  margin-top: 50px;
}

.access-container p {
  font-size: 16px;
  line-height: 2;
}

@media (max-width: 828px) {
  /*スマホ*/
  .access-container {
    position: relative;
    width: 100%;
  }
  .access-container .content-title img {
    width: 80px;
  }
  .access-container .content-title h2 {
    margin-top: -0.3em;
    font: 32px;
  }
  .access-container .gmap {
    margin: 20px 0 0 0;
  }
  .access-container .gmap iframe {
    height: 400px;
  }
  .access-container .access-txt {
    margin-top: 20px;
  }
}

/***************************
	Footer
****************************/
.footer-container {
  position: relative;
  width: 100%;
  height: auto;
  margin-top: 50px;
  padding: 150px 0 50px 0px;
  -webkit-clip-path: polygon(0 35%, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 35%, 100% 0, 100% 100%, 0% 100%);
  background: -moz-linear-gradient(left, #743B1E, #573B88);
  background: -webkit-linear-gradient(left, #743B1E, #573B88);
  background: linear-gradient(left, #743B1E, #573B88);
  text-align: center;
}

.footer-container .flex-container {
  width: 320px;
  margin: 30px auto 10px;
  justify-content: center;
}

.footer-container .flex-container .footer-navi-item {
  flex: 0 1 4em;
}

.footer-container .flex-container .footer-navi-item p {
  font-size: 14px;
}

.footer-container .copyright {
  font-size: 10px;
}

/***************************
	report
****************************/
.report-container {
  position: relative;
  width: 100%;
  margin-top: -30px;
}

.report-container .report-cover {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 360px;
  background: url("../img/bg-turing.png") no-repeat;
  background-position: center;
  background-size: 100%;
}

.report-container .report-title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.report-container .report-title h2 {
  font-size: 72px;
  font-weight: 700;
  margin-top: -50px;
}

.report-container .report-title p {
  font-size: 16px;
  margin-top: 1em;
}

.report-container .report-wrap {
  z-index: 10;
  position: relative;
  width: 1140px;
  height: auto;
  margin: -50px auto 0;
  padding: 60px 90px 90px 90px;
  background: var(--col-light);
}

.report-container .report-wrap img {
  width: 960px;
  height: auto;
  margin: 100px auto 30px;
}

.report-container .report-wrap p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
  text-align: left;
  margin-bottom: 1em;
  color: var(--col-txt-dark);
}

.report-container .report-footer {
  position: relative;
  width: 1140px;
  margin: 100px auto;
  height: auto;
}

.report-container .report-footer h4 {
  text-align: left;
  font-weight: 300;
  font-size: 20px;
}

.report-container .flex-container {
  justify-content: space-between;
  width: 1140px;
  margin: 10px auto 20px;
}

.report-container .flex-container .turing-item {
  flex: 0 1 360px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.report-container .flex-container .turing-item .turing-item-img {
  height: 360px;
  width: 360px;
  overflow: hidden;
  position: relative;
}

.report-container .flex-container .turing-item img {
  width: auto;
  height: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.report-container .flex-container .turing-item .turing-item-txt {
  width: 100%;
  height: 90px;
  position: relative;
  padding: 10px 15px;
  background: var(--col-light);
  border-image: -moz-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
  border-image: -webkit-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
  border-image: linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
  border-style: solid;
}

.report-container .flex-container .turing-item p {
  font-size: 12px;
  font-weight: 200;
  text-align: left;
  margin-bottom: 1em;
  color: var(--col-txt-gray);
}

.report-container .flex-container .turing-item h3 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: var(--col-txt-dark);
}

.report-container .flex-container .turing-item:hover {
  box-shadow: 0px 1px 5px #333;
  transform: translate(0, -2px);
}

.report-container .btn-container {
  width: 1140px;
  text-align: right;
  margin: 0px auto 0px;
}

@media (max-width: 828px) {
  /*スマホ*/
  .report-container {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }
  .report-container .report-cover {
    position: relative;
    width: 100%;
    height: 180px;
    background: url("../img/bg-turing.png") no-repeat;
    background-position: center;
    background-size: 100%;
  }
  .report-container .report-title {
    width: 90%;
  }
  .report-container .report-title h2 {
    font-size: 36px;
    font-weight: 700;
    margin-top: 0px;
  }
  .report-container .report-title p {
    margin-top: -0.5em;
  }
  .report-container .report-wrap {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px 5% 90px 5%;
  }
  .report-container .report-wrap img {
    width: 100%;
    height: auto;
    margin: 30px auto 10px;
  }
  .report-container .report-wrap p {
    font-size: 16px;
    font-weight: 200;
    text-align: left;
    margin-bottom: 1em;
    color: var(--col-txt-dark);
  }
  .report-container .report-footer {
    width: 100%;
    margin: 30px auto;
    height: auto;
  }
  .report-container .report-footer h4 {
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    margin-left: 0.5em;
  }
  .report-container .flex-container {
    justify-content: space-around;
    width: 320px;
    margin: 20px auto 10px;
  }
  .report-container .flex-container .turing-item {
    flex: 0 1 150px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .report-container .flex-container .turing-item .turing-item-img {
    height: 150px;
    width: 150px;
    overflow: hidden;
    position: relative;
  }
  .report-container .flex-container .turing-item img {
    width: auto;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .report-container .flex-container .turing-item .turing-item-txt {
    width: 100%;
    height: 90px;
    position: relative;
    padding: 10px 15px;
    background: var(--col-light);
    border-image: -moz-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
    border-image: -webkit-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
    border-image: linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
    border-style: solid;
  }
  .report-container .flex-container .turing-item p {
    font-size: 12px;
    font-weight: 200;
    text-align: left;
    margin-bottom: 1em;
    color: var(--col-txt-gray);
  }
  .report-container .flex-container .turing-item h3 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: var(--col-txt-dark);
  }
  .report-container .flex-container .turing-item:hover {
    box-shadow: 0px 1px 5px #333;
    transform: translate(0, -2px);
  }
  .report-container .btn-container {
    width: 320px;
    text-align: right;
    margin: 30px auto 0px;
  }
  .report-container .btn-container a {
    font-size: 14px;
  }
}

/***************************
	turing-info
****************************/
.turing-info-container {
  position: relative;
  width: 100%;
  margin-top: -30px;
}

.turing-info-container .turing-info-cover {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 360px;
  background: url("../img/bg-turing.png") no-repeat;
  background-position: center;
  background-size: 100%;
}

.turing-info-container .turing-info-title {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.turing-info-container .turing-info-title h2 {
  font-size: 72px;
  font-weight: 700;
  margin-top: -50px;
}

.turing-info-container .turing-info-title p {
  font-size: 16px;
  margin-top: 1em;
  line-height: 1.6;
}

.turing-info-container .schedule-wrap {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.turing-info-container .year-wrap {
  margin-top: 80px;
  position: relative;
}

.turing-info-container .year-wrap h4 {
  position: absolute;
  top: -220px;
  left: -50px;
  z-index: 1;
  font-size: 200px;
  font-weight: 700;
}

.turing-info-container .flex-container {
  justify-content: space-around;
  width: 1140px;
  margin: 10px auto 20px;
}

.turing-info-container .flex-container .turing-item {
  flex: 0 1 360px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.turing-info-container .flex-container .turing-item .turing-item-img {
  height: 360px;
  width: 360px;
  overflow: hidden;
  position: relative;
}

.turing-info-container .flex-container .turing-item img {
  width: auto;
  height: 360px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.turing-info-container .flex-container .turing-item .turing-item-txt {
  width: 100%;
  height: 90px;
  position: relative;
  padding: 10px 15px;
  background: var(--col-light);
  border-image: -moz-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
  border-image: -webkit-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
  border-image: linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
  border-style: solid;
}

.turing-info-container .flex-container .turing-item p {
  font-size: 12px;
  font-weight: 200;
  text-align: left;
  margin-bottom: 1em;
  color: var(--col-txt-gray);
}

.turing-info-container .flex-container .turing-item h3 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: var(--col-txt-dark);
}

.turing-info-container .flex-container .turing-item .turing-recent-title {
  width: 240px;
  position: absolute;
  top: 15px;
  left: 0px;
  padding: 20px 30px 20px 30px;
  text-align: center;
  border-image: -moz-linear-gradient(left, #FF5C00, #7747C5) 1/2px 0 0 0;
  border-image: -webkit-linear-gradient(left, #FF5C00, #7747C5) 1/2px 0 0 0;
  border-image: linear-gradient(left, #FF5C00, #7747C5) 1/2px 0 0 0;
  border-style: solid;
  background-color: var(--col-dark);
}

.turing-info-container .flex-container .turing-item .turing-recent-title h5 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: var(--col-txt-light);
}

.turing-info-container .flex-container .turing-item:hover {
  box-shadow: 0px 1px 5px #333;
  transform: translate(0, -2px);
}

.turing-info-container .flex-container .turing-info {
  flex: 0 1 680px;
  height: 450px;
  padding: 20px 30px 25px 30px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  background-color: var(--col-light);
  color: var(--col-txt-dark);
  text-align: left;
  position: relative;
  z-index: 10;
}

.turing-info-container .flex-container .turing-info .turing-schedule-title {
  width: 320px;
  margin: 0px 0px 30px -30px;
  padding: 20px 30px 20px 30px;
  text-align: center;
  border-image: -moz-linear-gradient(left, #FF5C00, #7747C5) 1/2px 0 0 0;
  border-image: -webkit-linear-gradient(left, #FF5C00, #7747C5) 1/2px 0 0 0;
  border-image: linear-gradient(left, #FF5C00, #7747C5) 1/2px 0 0 0;
  border-style: solid;
  background-color: var(--col-dark);
}

.turing-info-container .flex-container .turing-info .turing-schedule-title h5 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: var(--col-txt-light);
}

.turing-info-container .flex-container .turing-info li {
  font-size: 14px;
  line-height: 1.9;
}

.turing-info-container .flex-container .turing-info b {
  margin-left: 10px;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
}

.turing-info-container .flex-container .turing-info p {
  font-size: 14px;
  font-weight: 200;
  line-height: 1.7;
  margin-top: 25px;
}

.turing-info-container .flex-container .flex-container-schedule {
  display: flex;
  justify-content: space-between;
  width: 690px;
}

.turing-info-container .flex-container .flex-container-schedule .turing-schedule {
  flex: 0 1 390px;
}

@media (max-width: 828px) {
  /*スマホ*/
  .turing-info-container {
    margin-top: 20px;
  }
  .turing-info-container .turing-info-cover {
    height: 280px;
    background-size: 100%;
  }
  .turing-info-container .turing-info-title {
    width: 90%;
  }
  .turing-info-container .turing-info-title h2 {
    font-size: 48px;
    font-weight: 700;
    margin-top: -10px;
  }
  .turing-info-container .turing-info-title p {
    margin-top: 0.5em;
  }
  .turing-info-container .schedule-wrap {
    margin-top: 0px;
    z-index: 10;
    position: relative;
  }
  .turing-info-container .year-wrap {
    margin-top: 80px;
    margin-bottom: 50px;
  }
  .turing-info-container .year-wrap h4 {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
    font-size: 150px;
    font-weight: 700;
  }
  .turing-info-container .flex-container {
    justify-content: space-around;
    width: 320px;
    margin: 20px auto 10px;
  }
  .turing-info-container .flex-container .turing-item {
    flex: 0 1 150px;
  }
  .turing-info-container .flex-container .turing-item .turing-item-img {
    height: 150px;
    width: 150px;
    overflow: hidden;
    position: relative;
  }
  .turing-info-container .flex-container .turing-item img {
    width: auto;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .turing-info-container .flex-container .turing-item .turing-item-txt {
    width: 100%;
    height: 90px;
    position: relative;
    padding: 10px 15px;
    background: var(--col-light);
    border-image: -moz-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
    border-image: -webkit-linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
    border-image: linear-gradient(left, #FF5C00, #7747C5) 1/0 0 2px 0;
    border-style: solid;
  }
  .turing-info-container .flex-container .turing-item p {
    font-size: 12px;
    font-weight: 200;
    text-align: left;
    margin-bottom: 1em;
    color: var(--col-txt-gray);
  }
  .turing-info-container .flex-container .turing-item h3 {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: var(--col-txt-dark);
  }
  .turing-info-container .flex-container .turing-item:hover {
    box-shadow: 0px 1px 5px #333;
    transform: translate(0, -2px);
  }
  .turing-info-container .flex-container .turing-info {
    flex: 0 1 320px;
    height: 600px;
    padding: 20px 30px 25px 30px;
  }
  .turing-info-container .flex-container .turing-info .turing-schedule-title {
    width: 320px;
    margin: 0px 0px 30px -30px;
    padding: 20px 10px 20px 10px;
    text-align: center;
    border-image: -moz-linear-gradient(left, #FF5C00, #7747C5) 1/2px 0 0 0;
    border-image: -webkit-linear-gradient(left, #FF5C00, #7747C5) 1/2px 0 0 0;
    border-image: linear-gradient(left, #FF5C00, #7747C5) 1/2px 0 0 0;
    border-style: solid;
    background-color: var(--col-dark);
  }
  .turing-info-container .flex-container .turing-info .turing-schedule-title h5 {
    font-size: 20px;
    line-height: 22px;
    font-weight: 600;
    color: var(--col-txt-light);
  }
  .turing-info-container .flex-container .turing-info li {
    width: 300px;
    font-size: 14px;
    line-height: 1.9;
  }
  .turing-info-container .flex-container .turing-info b {
    margin-left: 10px;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
  }
  .turing-info-container .flex-container .turing-info p {
    font-size: 14px;
    font-weight: 200;
    line-height: 1.7;
    margin-top: 10px;
  }
  .turing-info-container .flex-container .flex-container-schedule {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 300px;
  }
  .turing-info-container .flex-container .flex-container-schedule .turing-schedule {
    flex: 0 1 300px;
  }
}

/***************************
	Swiper
****************************/
.swiper-container {
  max-width: 100%;
  margin: 30px 0;
}

.swiper-container img {
  max-width: 100vw;
  margin: 30px 0;
}

:root {
  --swiper-navigation-color: #ff0000;
  --swiper-pagination-color: #ff00ff;
}

/***************************
	Items
****************************/
.clearfix {
  overflow: hidden;
}

/*clearfix*/
.clear:after {
  font-size: 100%;
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clear {
  display: inline-table;
  zoom: 1;
}

* html .clear {
  height: 1%;
}

.rdstr {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fwb {
  font-weight: bold !important;
}

.tal {
  text-align: left !important;
}

.tar {
  text-align: right !important;
}

.tac {
  text-align: center !important;
}

.img_cen {
  display: block;
  text-align: center !important;
  margin: 0 auto  !important;
}

.bold {
  font-weight: bold;
}

.u-line {
  border-bottom: solid 3px var(--col-txt-dark);
}

.bg-b {
  background: var(--col-dark);
  background-repeat: no-repeat;
}

.bg-g {
  background: var(--col-disable);
  background-repeat: no-repeat;
}

.bg-p {
  background: #24182a url(../img/bg-p.png);
  background-repeat: repeat;
}

.bg-w {
  background: #b0b0b9 url(../img/bg-w.png);
  background-repeat: repeat;
}

.bg-b {
  background: #181d2a url(../img/bg-b.png);
  background-repeat: repeat;
}

.bg-main {
  background: var(--col-main);
  background-repeat: no-repeat;
}

.txt-cyan {
  color: var(--col-cyan);
}

.dn {
  display: none !important;
}
