@charset "UTF-8";

/*---------------------------------------------------------
Reset
---------------------------------------------------------*/

html {
  /*overflow-x: hidden;*/
  scroll-behavior: smooth;
}

body {
  /*overflow-x: hidden;*/
}

html,
body,
div,
article,
section,
main,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
input,
textarea,
address,
nav,
table,
th,
td,
a,
p,
img,
figure,
span,
em,
small {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

small {
  font-size: 12px;
  line-height: 1.2;
}

main {
  display: block;
}

ul,
li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
}

img {
  border: none;
}

a {
  text-decoration: none;
}

a,
button {
  outline: none;
}

a:focus,
button:focus {
  outline: none;
}

.mt4 {
  margin-top: 4px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px;
}

.bold {
  font-weight: bold;
}

.res-pc {
  display: block !important;
}

.res-sp {
  display: none !important;
}

.widthSp {
  width: calc(100% - 48px);
  margin: 40px auto;
}

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

.center_margin {
  margin: 0 auto;
}

.bold {
  font-weight: bold;
}

@media only screen and (max-width: 959px) {
  .res-pc {
    display: none !important;
  }
  .res-sp {
    display: block !important;
  }
  .widthSp {
    margin: 16px auto;
  }
}

/*---------------------------------------------------------
font
---------------------------------------------------------*/

/*---------------------------------------------------------
common
---------------------------------------------------------*/

html {
  font-size: 62.5%;
}

@media only screen and (min-width: 320px) and (max-width: 414px) {
  html {
    font-size: 2.41546vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1240px) {
  html {
    font-size: 0.80645vw;
  }
}

body {
  margin: inherit;
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  color: #151b28;
  line-height: 28px;
  letter-spacing: 0.04em;
  min-width: 320px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  font-weight: 500;
  position: relative;
  /*overflow: hidden;*/
}

@media only screen and (max-width: 959px) {
  body {
    margin: inherit;
    font-size: 1.4rem;
    color: #3b3b3b;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }
}

img {
  width: 100%;
  vertical-align: bottom;
}

a {
  color: #fff;
  text-decoration: none;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

a:hover {
}

.underline {
  text-decoration: underline;
}

.underline:hover {
  text-decoration: none;
}

.bgwhite {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
}

@media only screen and (max-width: 959px) {
  .bgwhite {
    padding: 24px;
  }
}

/*---------------------------------------------------------
header
---------------------------------------------------------*/

header {
  position: fixed;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 60%) 0%, rgba(0, 0, 0, 0) 100%);
}

header .headerL {
  padding-left: 24px;
  display: flex;
  align-items: center;
}

header .headerL ul {
  display: flex;
}

header .headerL ul li {
  margin-right: 16px;
}

header .headerL img {
  width: 128px;
  margin-right: 16px;
}

header .headerL ul li a {
  font-weight: bold;
}

header .headerL ul li a:hover {
  color: #ffff00;
}

header .headerR .headerbtn {
  text-align: right;
}

header .headerR .headerbtn a {
  min-width: 155px;
  font-size: 20px;
  padding: 10px 16px;
  line-height: 20px;
  font-weight: bold;
  color: #fff;
}

header .headerR .linebtn a {
  color: #1f1fa3;
  border: 2px solid #1f1fa3;
  background-color: #fff;
}

header .headerR .headerR_btn {
  display: flex;
  justify-content: flex-end;
}

header .headerR .headerbtn a:hover {
  opacity: 0.6;
}

header .headerR ul {
  padding-right: 24px;
}

header .headerR ul li {
  padding: 0;
}

header .headerR ul li a {
  font-weight: bold;
  font-size: 16px;
}

.headerbtn a:hover {
  background: #fff !important;
  color: #151b28 !important;
  opacity: 1 !important;
}

.button a {
  position: relative;
  display: inline-block;
  padding: 16px;
  color: #00030b;
  font-size: 18px;
  line-height: 1.3em;
  text-decoration: none;
  transition: 0.4s;
  font-weight: bold;
  z-index: 1;
}

.buttonpage a {
  padding: 32px 48px;
  font-size: 24px;
}

/* 疑似要素に平行四辺形の装飾を指定する */

.button a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background-color: #ffff00;
  transform: skewX(-15deg);
  transition: 0.4s;
}

.button a:hover::before {
  background: #111;
  opacity: 1 !important;
  transition: 0.4s;
  background-color: #eab52c;
}

/*---------------------------------------------------------
headerSP
---------------------------------------------------------*/

/* Navbar & Navmenu color */

:root {
  --background-navbar: rgba(0, 3, 11, 0.96);
}

.headersp {
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 8;
  background: linear-gradient(rgba(0, 0, 0, 60%) 0%, rgba(0, 0, 0, 0) 100%);
}

.headersp .logo {
  width: 100px;
  padding: 8px 0 0 8px;
}

.menu,
.menu span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu {
  position: fixed;
  top: 25px;
  right: 25px;
  width: 35px;
  height: 22px;
  z-index: 10;
  border: none;
  background: none;
}

.menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  z-index: 10;
}

.menu span:nth-of-type(1) {
  top: 0px;
}

.menu span:nth-of-type(2) {
  top: 10px;
}

.menu span:nth-of-type(3) {
  bottom: 0px;
}

.menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

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

.menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background: linear-gradient(#1c764f 0%, #14362e 100%);
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}

#nav.active {
  right: 0;
  opacity: 1;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}

#nav ul {
  margin: 20px 0;
  padding: 20px 0;
  text-align: center;
}

#nav ul li {
  list-style-type: none;
  padding: 8px;
}

#nav ul li a {
  display: block;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 24px;
}

#nav ul li a:hover {
  color: #f65d5d;
}

#nav .button {
  text-align: center;
}

.menuList .btn a {
  width: 100%;
  text-align: center !important;
  background: #1f1fa3;
}

.menuList .btnlist .btn a {
  margin: 0 auto;
  color: #fff !important;
}

.menuList .btnlist .linebtn a {
  color: #1f1fa3 !important;
  border: #1f1fa3 2px solid;
  background: none;
}

.spbutton {
  position: fixed;
  right: 80px;
  top: 20px;
}

.spbutton a {
  position: relative;
  display: inline-block;
  padding: 8px;
  color: #00030b;
  font-size: 14px;
  font-weight: bold;
}

.mv {
  position: relative;
}

.mv .txbox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  text-align: center;
}

.mv .txbox h1 {
  width: 880px;
}

.mv .btnbox {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 4;
}

.mv .btnbox a img {
  width: 217px;
}

.mv .btnarrow {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 4;
}

.slider {
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/*スライドは背景画像にする*/

.slider-img {
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  /*スライド画像の高さ*/
}

/*スライダー画像を指定*/

.slider-img-01 {
  background-image: url(../img/bg_main@2x.jpg);
}

.slider-img-02 {
  background-image: url(../img/bg_main_02@2x.jpg);
}

.slider-img-03 {
  background-image: url(../img/bg_main_03@2x.jpg);
}

.slick-list {
  width: 100%;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
    /* 拡大率 */
  }
}

.add-zoom {
  animation: fadezoom 10s 0s forwards;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  height: 100vh;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  /*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  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;
  color: #fff;
  border-radius: 0.5rem;
  color: #fff;
}

a.btn-border {
  border-radius: 0;
}

a.btn-border:after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: #fff;
}

a.btn-border:after {
  right: 0;
  bottom: 0;
}

a.btn-border:hover:before,
a.btn-border:hover:after {
  width: 0;
}

h2.title {
  font-family: "abolition", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 160px;
  line-height: 200px;
  text-align: center;
  color: #fff;
}

h2.title span {
  display: block;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #fff;
}

h3.title {
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #fff;
}

h4.title {
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.04em;
  line-height: 40px;
  text-align: left;
  color: #fff;
}

h4.title span {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 24px;
  text-align: left;
  color: #fff;
}

@media screen and (max-width: 959px) {
  .mv {
    position: relative;
  }
  .mv .txbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: #fff;
    text-align: center;
    width: 100%;
  }
  .mv .txbox h1 {
    width: 88%;
    text-align: center;
    margin: 0 auto;
  }
  .mv .btnbox {
    position: fixed;
    bottom: 0;
    right: 0;
  }
  .mv .btnbox a img {
    width: 150px;
  }
  h2.title {
    font-size: 120px;
    line-height: 120px;
  }
  h2.title span {
    font-size: 16px;
    line-height: 24px;
  }
  h3.title {
    font-size: 28px;
    line-height: 36px;
  }
  h4.title {
    font-size: 20px;
    line-height: 28px;
  }
  h4.title span {
    font-size: 12px;
    line-height: 24px;
  }
}

/*---------------------------------------------------------
readbox
---------------------------------------------------------*/

.readbox {
  padding: 120px 0 0;
  background: url("../img/bg_concept@2x.jpg") no-repeat center center;
  background-size: cover;
}

.readbox .img_concept {
  width: 340px;
  margin: 0 auto;
  text-align: center;
  display: block;
}

.readbox h2 {
  font-weight: bold;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  margin-top: 40px;
}

.readbox p.tx {
  font-weight: bold;
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  margin: 40px auto 0;
}

.readbox p.btnbox {
  margin: 24px auto 0;
  text-align: center;
}

.readbox .daihyoin {
  width: 960px;
  display: flex;
  margin: 40px auto 0;
  align-items: center;
  justify-content: space-between;
}

.readbox .daihyo {
  margin-top: 120px;
}

.readbox .daihyoin img {
  width: 38%;
}

.readbox .daihyoin p {
  width: 58%;
  color: #fff;
  line-height: 26px;
}

.readbox .daihyoin p span {
  display: block;
  text-align: right;
}

.junior {
  margin: 40px 0 64px;
  color: #fff;
  text-align: center;
}

.junior .title {
  font-size: 28px;
  font-weight: bold;
  display: inline-block;
  background: #7f6d55;
  padding: 8px;
  color: #fff;
}
.junior .name {
  font-size: 32px;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 8px;
}

.junior .name small {
  font-size: 14px;
}

.junior .tx {
  margin-top: 24px !important;
}

@media screen and (max-width: 959px) {
  .readbox {
    padding: 80px 0;
  }
  .readboxin {
    width: 80%;
    margin: 0 auto;
  }
  .readbox .img_concept {
    width: 240px;
  }
  .readbox h2 {
    font-weight: bold;
    font-size: 28px;
    line-height: 36px;
    margin-top: 24px;
  }
  .readbox p.tx {
    font-weight: bold;
    font-size: 16px;
    line-height: 32px;
    margin: 24px auto 0;
  }
  .readbox p.btnbox {
    margin: 16px auto 0;
  }
  .readbox .daihyoin {
    width: 100%;
    display: block;
    margin: 24px auto 0;
  }
  .readbox .daihyo {
    margin-top: 80px;
  }
  .readbox .daihyoin img {
    width: 240px;
    margin: 0 auto;
    text-align: center;
    display: block;
  }
  .readbox .daihyoin p {
    width: 100%;
    line-height: 28px;
    margin-top: 24px;
  }
  .junior {
    margin: 40px 0 64px;
    color: #fff;
    text-align: center;
  }

  .junior .title {
    font-size: 20px;
    padding: 4px 8px;
    font-feature-settings: "palt";
    color: #fff;
  }
  .junior .name {
    font-size: 28px;
    margin-top: 16px;
  }
  .junior .name2 {
    margin-top: 0;
  }

  .junior .tx {
    margin-top: 16px !important;
  }
}

/*---------------------------------------------------------
lesson
---------------------------------------------------------*/

.lesson {
  padding: 0;
  background: linear-gradient(#1c764f 0%, #14362e 100%);
  position: relative;
}

.lessonin {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.img_lesson_bg_star {
  position: absolute;
  width: 100%;
  z-index: 1;
}

.lesson h3 {
  margin-top: 40px;
}

.lesson ul {
  width: 960px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lesson ul li {
  width: 48%;
  color: #fff;
  margin-bottom: 56px;
}

.lesson ul li h4 {
  margin-top: 8px;
}

.lesson ul li p {
  margin-top: 8px;
}

.reasonin {
  width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #44655b;
}

.reason h3 {
  padding-bottom: 16px;
}

.reasonin .nb {
  font-family: "abolition", sans-serif;
  font-size: 40px;
  padding: 24px 32px;
  border-radius: 100px;
  background: #958367;
  color: #fff;
}

.reasonin .txbox {
  width: 860px;
}

.reasonin .txbox p {
  color: #fff;
  margin-top: 8px;
}

.ba {
  margin-top: 80px;
}

@media screen and (max-width: 959px) {
  .lesson {
    padding: 0;
  }
  .lessonin {
    padding: 80px 0;
  }
  .img_lesson_bg_star {
    position: absolute;
    width: 100%;
    z-index: 1;
  }
  .lesson h3 {
    margin-top: 24px;
  }
  .lesson ul {
    width: 80%;
    margin: 24px auto 0;
    display: block;
  }
  .lesson ul li {
    width: 100%;
    margin-bottom: 56px;
  }
  .lesson ul li h4 {
    margin-top: 16px;
  }
  .lesson ul li p {
    margin-top: 8px;
  }
  .reasonin {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 0;
  }
  .reason h3 {
    padding-bottom: 8px;
  }
  .reasonin .nb {
    font-size: 24px;
    padding: 4px 22px;
  }
  .reasonin .txbox {
    width: 80%;
    padding-left: 8px;
  }
  .reasonin .txbox p {
    color: #fff;
    margin-top: 8px;
  }
  .ba {
    margin-top: 80px;
  }
}

/*---------------------------------------------------------
staff
---------------------------------------------------------*/

.staff {
  padding: 120px 0;
  background: url("../img/bg_staff@2x.jpg") no-repeat center center;
  background-size: cover;
  z-index: 3;
  position: relative;
}

.staffbox {
  display: flex;
  justify-content: space-between;
  width: 960px;
  margin: 40px auto 0;
  align-items: center;
}

.staffbox img {
  width: 48%;
}

.staffbox .txbox {
  width: 48%;
  color: #fff;
}

.staffbox .txbox .name span {
  display: inline-block;
  background: linear-gradient(#1c764f 0%, #14362e 100%);
  padding: 8px;
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 28px;
  text-align: left;
  color: #fff;
}

.staffbox .txbox .tantobox {
  display: flex;
  align-items: center;
}

.staffbox .txbox .tantobox .tanto span {
  background: #806e52;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 16px;
  text-align: left;
  color: #fff;
  padding: 4px;
  margin-right: 16px;
}

.staffbox .txbox .tantobox .img_insta_s {
  width: 32px;
}

.staffbox .txbox .keireki {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
}

.staffbox .txbox .keireki .keirekitag {
  display: inline-block;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 16px;
  margin-right: 16px;
  width: 48px;
  background: #00030b;
  color: #fff;
  text-align: center;
  padding: 8px 0;
}

.staffbox .txbox .keireki .keirekitx {
  width: 375px;
  padding-top: 3px;
}

.staffbox .txbox .tx {
  width: 100%;
  margin-top: 16px;
}

@media screen and (max-width: 959px) {
  .staff {
    padding: 80px 0;
  }
  .staffbox {
    display: block;
    width: 80%;
    margin: 40px auto 0;
  }
  .staffbox img {
    width: 100%;
  }
  .staffbox .txbox {
    width: 100%;
    margin-top: 24px;
  }
  .staffbox .txbox .name span {
    padding: 8px;
    font-size: 28px;
    line-height: 28px;
  }
  .staffbox .txbox .keireki {
    display: flex;
    align-items: flex-start;
    margin-top: 16px;
  }
  .staffbox .txbox .keireki .keirekitag {
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 16px;
    margin-right: 16px;
    width: 48px;
    background: #00030b;
    color: #fff;
    text-align: center;
    padding: 8px 0;
  }
  .staffbox .txbox .keireki .keirekitx {
    width: 80%;
    padding-left: 8px;
  }
  .staffbox .txbox .tx {
    width: 100%;
    margin-top: 16px;
  }
  .staffbox .txbox .tantobox {
    margin-top: 2px;
  }
}

/*---------------------------------------------------------
facility
---------------------------------------------------------*/

.facility {
  padding: 120px 0;
}

.facility h2 {
  color: #00030b;
}

.facility h2 span {
  color: #00030b;
}

.facility h3 {
  color: #00030b;
  text-align: left;
}

.youtube {
  width: 640px;
  margin: 40px auto 120px;
  aspect-ratio: 16 / 9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.facility .accessbox {
  margin: 40px auto 0;
  width: 960px;
}

.facility .accessbox table {
  margin-top: 24px;
}

.facility .accessbox table th {
  width: 40px;
  margin-right: 16px;
  display: block;
}

.facility .accessbox .tx {
  margin-top: 8px;
  font-size: 12px;
}

.facility .accessbox .map {
  margin-top: 16px;
}

.facility .accesssub {
  display: flex;
  margin: 40px auto 0;
  width: 960px;
  justify-content: space-between;
}

.facility .accesssub .accessbox {
  width: 48%;
  margin: 0;
}

@media screen and (max-width: 959px) {
  .facility {
    padding: 80px 0;
  }
  .youtube {
    width: 80%;
    margin: 24px auto 120px;
    aspect-ratio: 16 / 9;
  }
  .youtube iframe {
    width: 100%;
    height: 100%;
  }
  .facility .accessbox {
    margin: 24px auto 0;
    width: 80%;
  }
  .facility .accessbox table {
    margin-top: 16px;
  }
  .facility .accessbox table th {
    width: 40px;
    margin-right: 8px;
    display: block;
  }
  .facility .accessbox .tx {
    margin-top: 4px;
  }
  .facility .accesssub {
    display: block;
    margin: 24px auto 0;
    width: 80%;
  }
  .facility .accesssub .accessbox {
    width: 100%;
    margin: 24px 0 0;
  }
}

/*---------------------------------------------------------
price
---------------------------------------------------------*/

.price {
  padding: 120px 0;
  background: linear-gradient(#1c764f 0%, #14362e 100%);
  position: relative;
}

div.scrollbar {
  overflow: auto;
  /*画面外になったときの扱いをautoに*/
  white-space: nowrap;
  /*セル内の文字の折り返しを禁止*/
  margin-top: 40px;
}

div.scroll::-webkit-scrollbar {
  height: 7px;
  /*スクロールバーの高さを指定*/
}

div.scroll::-webkit-scrollbar-track {
  background: #e5e5e5;
  /*スクロールバーじゃない部分のカラー*/
}

div.scroll::-webkit-scrollbar-thumb {
  background: #b3b3b3;
  /*スクロールバーの部分のカラー*/
}

.tableimg {
  width: 960px;
  margin: 0 auto;
}

.price .tx {
  width: 960px;
  margin: 16px auto 0;
  text-align: left;
  color: #fff;
}

.btnboxpage {
  width: 960px;
  margin: 40px auto 0;
  text-align: center;
}

.gold {
  margin: 12px auto 0;
  width: 960px;
}

.gold span {
  display: inline-block;
  color: #fff;
  background: #806e52;
  font-size: 20px;
  font-weight: bold;
  padding: 4px 8px;
}

.smalltx {
  width: 960px;
  margin: 12px auto 0;
  color: #fff;
}

.price h3 {
  text-align: left;
  width: 960px;
  margin: 24px auto 0;
}

.price h4 {
  margin: 16px auto;
  width: 960px;
}

@media screen and (max-width: 959px) {
  .price {
    padding: 80px 0;
  }
  div.scrollbar {
    overflow: auto;
    /*画面外になったときの扱いをautoに*/
    white-space: nowrap;
    /*セル内の文字の折り返しを禁止*/
    margin-top: 40px;
  }
  div.scroll::-webkit-scrollbar {
    height: 7px;
    /*スクロールバーの高さを指定*/
  }
  div.scroll::-webkit-scrollbar-track {
    background: #e5e5e5;
    /*スクロールバーじゃない部分のカラー*/
  }
  div.scroll::-webkit-scrollbar-thumb {
    background: #b3b3b3;
    /*スクロールバーの部分のカラー*/
  }
  .tableimg {
    width: 640px;
    margin: 0 auto;
    padding: 0 10%;
  }
  .price .tx {
    width: 80%;
    margin: 24px auto 0;
  }
  .btnboxpage {
    width: 80%;
    margin: 24px auto 0;
  }
  .gold {
    margin: 16px auto 0;
    width: 80%;
  }
  .gold span {
    font-size: 16px;
    font-weight: bold;
    padding: 4px 8px;
  }
  .price h3 {
    width: 80%;
  }
  .price h4 {
    margin: 16px auto;
    width: 80%;
  }
  .smalltx {
    width: 80%;
  }
}

/*---------------------------------------------------------
staff
---------------------------------------------------------*/

.faq {
  padding: 120px 0;
  background: linear-gradient(#1c764f 0%, #14362e 100%);
  position: relative;
}

.faqin {
  margin-top: 40px;
}

.faqbox {
  margin: 0 auto;
  width: 960px;
  border-bottom: 1px solid #44655b;
  padding: 24px 0;
}

.faqbox .faqq {
  color: #fff;
  position: relative;
  padding: 8px 0 8px 32px;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 28px;
  text-align: left;
}

.faqbox .faqq:before {
  position: absolute;
  content: "Q.";
  font-family: "abolition", sans-serif;
  font-size: 40px;
  line-height: 40px;
  left: 0;
  top: 0;
}

.faqbox .faqa {
  color: #fff;
  position: relative;
  padding: 8px 0 8px 32px;
  font-weight: normal;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: 28px;
  text-align: left;
  margin-top: 16px;
}

.faqbox .faqa:before {
  position: absolute;
  content: "A.";
  font-family: "abolition", sans-serif;
  font-size: 40px;
  line-height: 40px;
  left: 0;
  top: 0;
}

@media screen and (max-width: 959px) {
  .faq {
    padding: 80px 0;
  }
  .faqin {
    margin-top: 24px;
  }
  .faqbox {
    width: 80%;
    padding: 24px 0;
  }
  .faqbox .faqq {
    padding: 8px 0 8px 32px;
    font-size: 16px;
    line-height: 24px;
  }
  .faqbox .faqq:before {
    font-size: 32px;
    line-height: 32px;
  }
  .faqbox .faqa {
    padding: 8px 0 8px 32px;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
  }
  .faqbox .faqa:before {
    font-size: 32px;
    line-height: 32px;
  }
}

/*---------------------------------------------------------
yoyaku
---------------------------------------------------------*/

.yoyaku {
  padding: 120px 0;
  background: url("../img/bg_yoyaku@2x.jpg") no-repeat center center;
  background-size: cover;
}

.yoyaku .yoyakutitle {
  font-weight: bold;
  font-size: 56px;
  line-height: 67px;
  text-align: center;
  color: #fff;
}

.yoyaku .tx {
  padding: 24px 0 0;
  text-align: center;
  color: #fff;
}

/*---------------------------------------------------------
footer
---------------------------------------------------------*/

footer {
  padding: 120px 0;
  background: #00030b;
  text-align: center;
}

footer img {
  width: 280px;
}

footer ul {
  display: flex;
  width: 960px;
  margin: 40px auto 0;
  justify-content: center;
}

footer ul li {
  padding: 0 8px;
}

footer p.ad {
  font-family: "abolition", sans-serif;
  padding-top: 40px;
  text-align: center;
  color: #fff;
  font-size: 12px;
}

@media screen and (max-width: 959px) {
  footer {
    padding: 80px 0;
  }
  footer img {
    width: 160px;
  }
  footer ul {
    display: block;
    width: 80%;
    margin: 40px auto 0;
    text-align: center;
  }
  footer ul li {
    padding: 4px 0;
  }
  footer p.ad {
    font-family: "abolition", sans-serif;
    padding-top: 40px;
    text-align: center;
    color: #fff;
    font-size: 12px;
  }
}

/*---------------------------------------------------------
loopslider
---------------------------------------------------------*/

.loopslider {
  position: relative;
  z-index: 0;
}

/*
右から左へ
----------------------------*/

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*
IE11対策
----------------------------*/

_:-ms-lang(x)::-ms-backdrop,
.loopslider {
  display: -ms-grid;
  overflow: hidden;
}

/*----------------------------*/

.loopslider__wrap {
  display: flex;
  overflow: hidden;
}

.loopslider__list {
  display: flex;
  list-style: none;
  align-items: center;
}

.loopslider__list--left {
  animation: infinity-scroll-left 100s infinite linear 0.5s both;
}

.loopslider__item {
  width: calc(100vw / 2.4);
  margin-right: 0;
}

.loopslider__item > img {
  width: 100%;
}

.loopslider__wrap:hover .loopslider__list--left {
  /*
    animation-play-state: paused;
    */
}

@media screen and (max-width: 959px) {
  .loopslider {
  }
  .loopslider2 {
  }
  .loopslider__item {
    width: calc(100vw / 1.6);
    margin-right: 0;
  }
  .loopslider__item2 {
    width: calc(100vw / 0.2);
    margin-right: 0;
  }
}

/*---------------------------------------------------------
base
---------------------------------------------------------*/

p.mt {
  margin-top: 80px;
}

p.line {
  position: relative;
  padding: 1rem 2rem;
  border-bottom: 1px solid #e0dfdf;
  max-width: 1120px;
  margin: 120px auto;
  width: 100%;
}

p.line:before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 16px;
  height: 1px;
  content: "";
  background: #10a5cc;
}

.inner1360 {
  max-width: 1360px;
  margin: 0 auto;
}

.inner1120 {
  max-width: 1120px;
  margin: 0 auto;
}

.inner960 {
  max-width: 960px;
  margin: 0 auto;
}

.pankuzu {
  padding: 16px 0;
  position: absolute;
  width: 100%;
  top: 88px;
}

.pankuzu ul {
  display: flex;
}

.pankuzu ul li {
  margin-right: 8px;
  font-weight: normal;
  color: #fff;
}

.pankuzu ul li a {
  color: #fff;
  font-weight: normal;
}

.anc {
  width: 960px;
  margin: 80px auto;
}

.anc ul {
  display: flex;
  justify-content: center;
}

.anc ul li {
  width: 293px;
  padding: 2%;
}

.anc ul li a {
  width: 100%;
  max-width: 293px;
}

.anc ul li .button_solid019 a:after {
  display: none;
}

span.circle {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  line-height: inherit;
  text-align: center;
  color: #fff;
  background-color: #0a3464;
  border-radius: 40px;
  padding: 1px 9px;
  margin-right: 16px;
}

.blue {
  color: #1e6cc3;
}

span.number {
  background: #00508e;
  color: #fff;
  font-family: "Urbanist", sans-serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 36px;
  text-align: center;
  width: 56px;
  height: 56px;
  padding-top: 12px;
  border-radius: 40px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 16px;
}

@media only screen and (max-width: 959px) {
  p.mt {
    margin-top: 64px;
  }
  p.line {
    max-width: inherit;
    margin: 80px auto;
    width: calc(100% - 48px);
  }
  .inner1360 {
    max-width: inherit;
    width: 100%;
    margin: 0 auto;
  }
  .inner1120 {
    max-width: inherit;
    width: calc(100% - 48px);
    margin: 0 auto;
  }
  .inner960 {
    max-width: inherit;
    width: 100%;
    margin: 0 auto;
  }
  .anc {
    width: calc(100% - 48px);
    margin: 40px auto;
  }
  .anc ul {
    display: flex;
  }
  .anc ul li {
    width: 161px;
  }
  .anc ul li a {
    max-width: inherit;
  }
  .anc ul li .button_solid019 a:after {
    display: none;
  }
  span.circle {
    font-size: 16px;
    margin-right: 8px;
    padding: 7px;
  }
  .pankuzu {
    top: 72px;
  }
}

/*---------------------------------------------------------
fadein
---------------------------------------------------------*/

/* 画面外にいる状態 */

.fadein {
  opacity: 0.1;
  transform: translate(0, 24px);
  transition: all 500ms;
}

/* 画面内に入った状態 */

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@media only screen and (max-width: 959px) {
}

/*---------------------------------------------------------
Pagination
---------------------------------------------------------*/

.Pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.Pagination-Item-Link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  font-size: 14px;
  color: #111;
  font-weight: bold;
  transition: all 0.15s linear;
}

.Pagination-Item-Link img {
  width: 24px;
}

.Pagination-Item-Link.isActive {
  background: #0072c6;
  color: #fff;
  pointer-events: none;
}

.Pagination-Item-Link:not(.isActive):hover {
  background: #0072c6;
  color: #fff;
}

.Pagination > * + * {
  margin-left: 8px;
}
