@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Roboto&display=swap");
/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1240px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/*==============================
//  Font Size Rem
//
//  【概要】        font-sizeの単位をremに変換する
//  【第一引数】    希望のfont-size（数字のみ）
//  【備考】        IE対応のためpxでも出力する
//==============================*/
/*==============================
//  Font Size Rem Line Height Half Leading
//
//  【概要】
//      ・font-sizeの単位をremに変換
//      ・行間のサイズをもとに自動でline-heightを指定
//      ・ハーフリーディングを自動調整
//  【第一引数】
//      ・希望のfont-size（数字のみ）
//  【第二引数】
//      ・希望の行間サイズ（数字のみ）
//==============================*/
/*==============================
//
//  【概要】
//      ・pxをvwに変換
//  【第一引数】
//      ・pxサイズ（数字のみ）
//  【第二引数】
//      ・デザイン幅（数字のみ）初期値はf-variableに記述
//==============================*/
/*==============================
//  px→vwの計算
//==============================*/
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  top: -0.5em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: normal;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333333;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 180%;
  position: relative;
  min-width: 1240px;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 0.8888888889rem;
    min-width: initial;
  }
}

a {
  text-decoration: underline;
  color: #07A87E;
  transition: 0.3s all;
}
a:hover {
  text-decoration: none;
}

button {
  outline: none;
}

td,
th {
  vertical-align: middle;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

img {
  max-width: 100%;
  backface-visibility: hidden;
}

[v-cloak] {
  display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[v-cloak] {
  display: none;
}

main {
  position: relative;
}

main {
  padding: 0;
}
@media screen and (max-width: 767px) {
  main {
    padding: 60px 0 0;
  }
}

.l-section {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 140px 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 13.3333333333vw 0;
  }
}
.l-section.bg_color {
  background-color: #F4F9F4;
}
.l-section.bg_color2 {
  background-color: #F7F7F7;
}
.l-section.p-top-access {
  padding: 100px 0 0;
}
@media screen and (max-width: 767px) {
  .l-section.p-top-access {
    padding: 16vw 0 0;
  }
}

.l-inner {
  width: 1240px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 4vw;
  }
}

p {
  line-height: 180%;
}

.c-btn_right {
  margin: 0;
  text-align: center;
  position: relative;
}
.c-btn_right a {
  width: 330px;
  padding: 17px 0 16px;
  border-radius: 6px;
  background-color: #07A87E;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: bold;
  line-height: 150%;
  font-size: 18px;
  transition: 0.3s all;
  margin: 0;
  text-decoration: none;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-btn_right a {
    width: 100%;
    font-size: 4.8vw;
    padding: 4.2666666667vw 0 4.5333333333vw;
  }
}
.c-btn_right a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/arrow_white.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
.c-btn_right a:hover {
  background-color: #1dc69a;
}
.c-btn_right a:hover:after {
  right: 15px;
}
@media screen and (max-width: 767px) {
  .c-btn_right a:hover:after {
    right: 4vw;
  }
}
.c-btn_right2 {
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.c-btn_right2 a {
  min-width: 420px;
  width: 100%;
  padding: 24px 0 26px;
  border-radius: 100px;
  background-color: #07A87E;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: 500;
  line-height: 150%;
  font-size: 20px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-btn_right2 a {
    min-width: 100%;
    font-size: 4.8vw;
    padding: 3.7333333333vw 2.6666666667vw 4.2666666667vw 0;
  }
}
.c-btn_right2 a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/arrow_w.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_right2 a::after {
    right: 5.3333333333vw;
    width: 6.4vw;
    height: 6.4vw;
  }
}
.c-btn_right2 a:hover {
  background-color: #07A87E;
}
.c-btn_right2 a:hover:after {
  right: 15px;
}
.c-btn_right_or {
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.c-btn_right_or a {
  min-width: 430px;
  width: 100%;
  padding: 20px 0 20px 40px;
  border-radius: 100px;
  background: linear-gradient(180deg, #EB5D01 0%, #F39800 100%);
  color: #ffffff;
  text-align: center;
  font-weight: 500;
  line-height: 150%;
  font-size: 18px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-btn_right_or a {
    min-width: 100%;
    font-size: 4vw;
    padding: 4vw 0 4vw 10.6666666667vw;
  }
}
.c-btn_right_or a span {
  position: relative;
}
.c-btn_right_or a span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_mail.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_right_or a span::before {
    left: -8vw;
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.c-btn_right_or a:hover {
  opacity: 0.8;
}
.c-btn_left {
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.c-btn_left a {
  max-width: 340px;
  width: 100%;
  padding: 14px 0 16px;
  border-radius: 100px;
  background-color: #07A87E;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: 500;
  line-height: 150%;
  font-size: 20px;
  transition: 0.3s all;
  margin: 0 auto;
  text-decoration: none;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-btn_left a {
    max-width: 100%;
    max-width: calc(100% - 8vw);
    font-size: 5.3333333333vw;
    padding: 3.7333333333vw 0 4.2666666667vw;
  }
}
.c-btn_left a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%) scaleX(-1);
  background: url(../../src/img/icon/arrow_w.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .c-btn_left a::after {
    left: 5.3333333333vw;
    width: 6.4vw;
    height: 6.4vw;
  }
}
.c-btn_left a:hover {
  background-color: #07A87E;
}
.c-btn_left a:hover:after {
  left: 15px;
}
@media screen and (max-width: 767px) {
  .c-btn_left a:hover:after {
    left: 4vw;
  }
}

.c-list_dot li {
  padding-left: 12px;
  position: relative;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 160%;
}
@media screen and (max-width: 767px) {
  .c-list_dot li {
    padding-left: 3.2vw;
    margin-bottom: 1.3333333333vw;
    font-size: 15px;
    font-size: 0.8333333333rem;
  }
}
.c-list_dot li:last-of-type {
  margin-bottom: 0px;
}
.c-list_dot li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .c-list_dot li::before {
    width: 1.0666666667vw;
    height: 1.0666666667vw;
    top: 2.9333333333vw;
    left: 0.5333333333vw;
  }
}

.c-table_top {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
}
.c-table_top th {
  background: #EAF3EA;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  text-align: center;
  vertical-align: middle;
  padding: 16px 23px;
  font-size: 18px;
  line-height: 150%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-table_top th {
    font-size: 14px;
    font-size: 0.7777777778rem;
    padding: 2.1333333333vw 1.3333333333vw;
  }
}
.c-table_top th:first-of-type {
  width: 120px;
  border-right: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .c-table_top th:first-of-type {
    width: 10.6666666667vw;
  }
}
.c-table_top td {
  background: #ffffff;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  padding: 30px 23px;
  text-align: center;
  vertical-align: middle;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .c-table_top td {
    padding: 2.6666666667vw;
  }
}
.c-table_top td img {
  margin: auto;
}

.c-title-toph2 {
  margin: 0 0 30px;
  font-size: 36px;
  font-weight: bold;
  line-height: 160%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title-toph2 {
    margin: 0 0 4vw;
    font-size: 30px;
    font-size: 1.6666666667rem;
    line-height: 130%;
  }
}
.c-title-toph2 .en {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  font-family: "Montserrat", sans-serif;
  display: block;
  color: #07A87E;
}
@media screen and (max-width: 767px) {
  .c-title-toph2 .en {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 0;
  }
}

.p-header {
  width: 100%;
  height: 125px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  /*background-color: rgba(255, 255, 255, 0.95);*/
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1240px) {
  .p-header {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .p-header {
    position: fixed;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    position: fixed;
    height: 60px;
  }
}
.p-header .logo {
  width: 294px;
  height: 79px;
  margin: 0 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header .logo {
    height: 60px;
    width: 40%;
    margin: 0 0 0 2.6666666667vw;
  }
}
.p-header .logo:hover {
  opacity: 0.8;
}
.p-header .logo img {
  width: 100%;
}
.p-header-right {
  width: calc(100% - 365px);
  display: flex;
  flex-wrap: wrap;
}
.p-header-right_top {
  width: 100%;
  height: 64px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid #E5E5E5;
}
.p-header-right_nav {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.p-header-right_nav .naviUl {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.p-header-right_nav .naviUl li {
  width: 16.6666%;
  border-left: 1px solid #E5E5E5;
}
.p-header-right_nav .naviUl li.current a {
  color: #07A87E;
}
.p-header-right_nav .naviUl li a {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #333333;
  background-color: #ffffff;
  line-height: 150%;
  text-align: center;
}
@media screen and (max-width: 1590px) {
  .p-header-right_nav .naviUl li a {
    font-size: 15px;
    line-height: 140%;
  }
}
.p-header-right_nav .naviUl li a:hover {
  background-color: #F4F9F4;
  color: #07A87E;
}
.p-header_tel {
  margin-right: 20px;
}
.p-header_tel span {
  position: relative;
}
.p-header_tel span a {
  font-size: 32px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
}
.p-header_tel span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: -37px;
  width: 37px;
  height: 37px;
  margin-top: -3px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_tel.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
.p-header_tel_txt {
  margin-right: 20px;
  font-size: 14px;
  font-weight: bold;
  border: 1.5px solid #07A87E;
  line-height: 100%;
  padding: 9px 15px 7px;
  border-radius: 6px;
  color: #07A87E;
  letter-spacing: 0;
}
.p-header_btn a {
  width: 190px;
  height: 64px;
  background-color: #07A87E;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding-right: 10px;
  text-decoration: none;
  position: relative;
}
.p-header_btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/arrow_white.svg) center center no-repeat;
  background-size: cover;
}
.p-header_btn a:hover {
  background-color: #1dc69a;
}
.p-header_spbox {
  width: 120px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.p-header_spbox .tel a {
  width: 60px;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #2AC4CE;
}
.p-header_spbox .reserve a {
  width: 60px;
  height: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #4BCE2A;
  text-decoration: none;
}
.p-header_spbox .reserve a p {
  font-size: 15px;
  line-height: 120%;
  color: #ffffff;
  font-weight: bold;
  text-align: center;
}
.p-header_spbox .reserve a p span {
  font-size: 11px;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  /*ハンバーガー*/
  #globalMenuSp {
    z-index: 2500;
    color: #333333;
    background: #F4F9F4;
    text-align: left;
    width: 100vw;
    transition: top 0.5s ease;
    position: absolute;
    top: 60px;
    right: 0;
    height: auto;
    display: none;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
    padding: 8vw 10.6666666667vw 40vw;
  }
  #globalMenuSp.active {
    display: block;
    height: 100vh;
    overflow: auto;
  }
  #globalMenuSp .btn_wrap {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  #globalMenuSp .btn_wrap ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0 50px;
  }
  #globalMenuSp .btn_wrap ul li {
    width: 50%;
  }
  #globalMenuSp .btn_wrap ul li a {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
  }
  .navToggle {
    display: block;
    position: fixed;
    z-index: 2501;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    background-color: #07A87E;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 26px;
    height: 2px;
    right: 17px;
    background: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .navToggle span:nth-child(1) {
    top: 20px;
  }
  .navToggle span:nth-child(2) {
    top: 29px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle.active {
    width: 60px;
    height: 60px;
    mix-blend-mode: inherit;
    transition: 0.3s ease-in-out;
  }
  .navToggle.active span:nth-child(1) {
    top: 28px;
    background: #ffffff;
    transform: rotate(-40deg);
  }
  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
    top: 28px;
    background: #ffffff;
    transform: rotate(40deg);
  }
  .innerBox .naviUl li {
    width: 100%;
    padding: 4vw 0;
    border-bottom: 1px solid #07A87E;
  }
  .innerBox .naviUl li:first-child {
    border-top: 1px solid #07A87E;
  }
  .innerBox .naviUl li a {
    font-size: 18px;
    font-size: 1rem;
    text-decoration: none;
    color: #333333;
  }
  .innerBox .naviUl li.reserve {
    border-bottom: none;
  }
  .innerBox .naviUl li.reserve a {
    width: 100%;
    font-size: 4.8vw;
    padding: 3.7333333333vw 0 4.2666666667vw;
    border-radius: 6px;
    background-color: #07A87E;
    color: #ffffff;
    text-align: center;
    position: relative;
    font-weight: bold;
    line-height: 150%;
    transition: 0.3s all;
    margin: 0;
    text-decoration: none;
    display: inline-block;
    margin-top: 4vw;
  }
  .innerBox .naviUl li.tel {
    border-bottom: none;
    text-align: center;
    padding: 1.3333333333vw 0;
  }
  .innerBox .naviUl li.tel span {
    position: relative;
  }
  .innerBox .naviUl li.tel span a {
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    font-size: 32px;
    font-size: 1.7777777778rem;
    padding-left: 7.2vw;
    color: #07A87E;
  }
  .innerBox .naviUl li.tel span a::before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    left: -2.6666666667vw;
    width: 9.8666666667vw;
    height: 9.8666666667vw;
    margin-top: -3px;
    transform: translateY(-50%);
    background: url(../../src/img/icon/icon_tel.svg) center center no-repeat;
    background-size: cover;
    transition: 0.3s all;
  }
}
.p-footer {
  width: 100%;
  position: relative;
  text-align: center;
  background-color: #3C3C3C;
}
.p-footer_top {
  width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
  color: #ffffff;
  border-bottom: 1px solid #999999;
}
@media screen and (max-width: 767px) {
  .p-footer_top {
    width: 90%;
    padding: 8vw 0 5.3333333333vw;
  }
}
.p-footer_top p {
  font-size: 14px;
  line-height: 170%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer_top p {
    font-size: 13px;
    font-size: 0.7222222222rem;
    text-align: left;
  }
}
.p-footer_bottom {
  width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom {
    width: 90%;
    padding: 5.3333333333vw 0;
  }
}
.p-footer_bottom .footer_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.p-footer_bottom .footer_nav li a {
  font-size: 14px;
  line-height: 170%;
  color: #ffffff;
  text-decoration: none;
  transform: 0.3s all;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom .footer_nav li a {
    font-size: 14px;
    font-size: 0.7777777778rem;
  }
}
.p-footer_bottom .footer_nav li a:hover {
  color: #07A87E;
}
.p-footer_bottom .copy {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 150%;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom .copy {
    margin-top: 4vw;
    font-size: 12px;
    font-size: 0.6666666667rem;
  }
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 60px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transform: translateY(100px);
  z-index: 9;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 10px;
    padding-bottom: 25px;
  }
}
.pagetop.on {
  transform: translateY(0);
}
.pagetop a {
  display: inline-block;
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
}
.pagetop a:hover {
  opacity: 0.8;
}

.p-top_bana {
  width: 100%;
  overflow: hidden;
}
.p-top_bana ul li a:hover {
  opacity: 0.8;
}
.p-top_bana_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.1333333333vw;
}
.p-top_news {
  width: 100%;
  padding: 120px 0 140px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .p-top_news {
    padding: 13.3333333333vw 0;
    margin-top: 8vw;
  }
}
.p-top_news_box {
  background-color: #ffffff;
  padding: 40px 50px;
  border-radius: 6px;
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .p-top_news_box {
    padding: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top_news_box .ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-top_news_box .ttl {
    font-size: 18px;
    font-size: 1rem;
    margin-bottom: 2.1333333333vw;
  }
}
.p-top_news_box p {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_news_box p {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-top_news_box p b {
  font-weight: bold;
  color: #07A87E;
}
.p-top_news_wrap {
  background-color: #ffffff;
  padding: 40px 90px 50px;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap {
    padding: 5.3333333333vw;
  }
}
.p-top_news_wrap_ditail li {
  width: 100%;
  font-size: 16px;
  padding: 25px 0;
  color: #333333;
  line-height: 170%;
  display: flex;
  align-items: flex-start;
  text-align: left;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap_ditail li {
    display: block;
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding: 4vw 0;
    position: relative;
  }
}
.p-top_news_wrap_ditail li .date {
  width: 115px;
  font-size: 16px;
  color: #888888;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap_ditail li .date {
    width: 100%;
    font-size: 16px;
    font-size: 0.8888888889rem;
    display: block;
  }
}
.p-top_news_wrap_ditail li .ico_news {
  width: 110px;
  height: 30px;
  font-size: 13px;
  line-height: 150%;
  letter-spacing: -0.05em;
  color: #07A87E;
  border-radius: 4px;
  border: 1px solid #07A87E;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-right: 25px;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap_ditail li .ico_news {
    width: 26.6666666667vw;
    height: 5.8666666667vw;
    line-height: 5.8666666667vw;
    font-size: 13px;
    font-size: 0.7222222222rem;
    margin-right: 0;
    position: absolute;
    top: 4vw;
    right: 0;
  }
}
.p-top_news_wrap_ditail li .main {
  width: calc(100% - 85px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap_ditail li .main {
    width: 100%;
  }
}
.p-top_news_wrap_ditail li .main a {
  color: #07A87E;
  transition: 0.3s all;
  text-decoration: underline;
}
.p-top_news_wrap_ditail li .main a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-top_news_wrap .news__link {
  position: relative;
  text-align: center;
}
.p-top_news_wrap .news__body {
  margin: 0;
}
.p-top_news_wrap .news__text {
  width: 330px;
  height: 60px;
  border-radius: 6px;
  background-color: #07A87E;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s all;
  display: inline-block;
  cursor: pointer;
  margin: 35px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_news_wrap .news__text {
    width: 100%;
    height: 14.6666666667vw;
    margin: 5.3333333333vw auto 0;
    font-size: 18px;
    font-size: 1rem;
  }
}
.p-top_news_wrap .news__text:hover {
  background-color: #1dc69a;
}
.p-top_news_wrap .news__text::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(90deg);
  background: url(../../src/img/icon/arrow_white.svg) center center no-repeat;
  background-size: cover;
}
.p-top_news_wrap .news__text.close {
  position: relative;
}
.p-top_news_wrap .news__text.close::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../../src/img/icon/arrow_white.svg) center center no-repeat;
  background-size: cover;
}
.p-top_kanpo {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_kanpo {
    padding: 0 0 13.3333333333vw;
  }
  .p-top_kanpo .l-inner {
    padding: 0;
  }
}
.p-top_kanpo_img {
  width: 50%;
  height: 830px;
  position: absolute;
  top: 140px;
  left: 0;
  border-radius: 0 6px 6px 0;
  display: block;
  content: "";
  background: url(../../src/img/top_img.jpg) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top_kanpo_img {
    width: 100%;
    position: relative;
    top: inherit;
    border-radius: 0;
    height: 66.6666666667vw;
  }
}
.p-top_kanpo_ttl {
  font-size: 36px;
  font-weight: bold;
  line-height: 170%;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .p-top_kanpo_ttl {
    font-size: 24px;
    font-size: 1.3333333333rem;
    margin: 8vw 0 5.3333333333vw;
  }
}
.p-top_kanpo_txt {
  width: 600px;
  margin-left: 600px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_kanpo_txt {
    width: 100%;
    margin-left: 0;
    padding: 0 4vw;
  }
}
.p-top_kanpo .kanpo__link {
  position: relative;
  text-align: center;
}
.p-top_kanpo .kanpo__body {
  margin: 140px 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-top_kanpo .kanpo__body {
    margin: 6.6666666667vw 0 0;
    padding: 0 4vw;
  }
}
.p-top_kanpo .kanpo__text {
  width: 330px;
  height: 60px;
  border-radius: 6px;
  background-color: #07A87E;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  transition: 0.3s all;
  display: inline-block;
  cursor: pointer;
  margin: 40px 0 0 750px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top_kanpo .kanpo__text {
    width: 90%;
    height: 16vw;
    margin: 5.3333333333vw auto 0;
  }
}
.p-top_kanpo .kanpo__text:hover {
  background-color: #1dc69a;
}
.p-top_kanpo .kanpo__text::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(90deg);
  background: url(../../src/img/icon/arrow_white.svg) center center no-repeat;
  background-size: cover;
}
.p-top_kanpo .kanpo__text.close {
  position: relative;
}
.p-top_kanpo .kanpo__text.close::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%) rotate(-90deg);
  background: url(../../src/img/icon/arrow_white.svg) center center no-repeat;
  background-size: cover;
}
.p-top_access {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top_access {
    flex-direction: column-reverse;
  }
}
.p-top_access_map {
  width: 60%;
  height: 750px;
}
@media screen and (max-width: 767px) {
  .p-top_access_map {
    width: 100%;
    height: 80vw;
  }
}
.p-top_access_map iframe {
  width: 100%;
  height: 750px;
}
@media screen and (max-width: 767px) {
  .p-top_access_map iframe {
    height: 80vw;
  }
}
.p-top_access_txt {
  width: 40%;
  text-align: left;
  padding: 100px 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-top_access_txt {
    width: 100%;
    padding: 13.3333333333vw 4vw 8vw;
  }
}
.p-top_access_txt .c-title-toph2 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top_access_txt .c-title-toph2 {
    text-align: center;
  }
}
.p-top_access_txt .txt01 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-top_access_txt .txt01 {
    margin-bottom: 4vw;
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-top_access_txt .access_wrap {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_access_txt .access_wrap {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-top_access_txt .access_wrap .access_ttl {
  color: #07A87E;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-top_access_txt .access_wrap .access_ttl {
    margin-bottom: 1.3333333333vw;
  }
}
.p-top_access_btn {
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top_access_btn {
    margin: 5.3333333333vw 0 0;
    width: 100%;
  }
  .p-top_access_btn li {
    width: 100%;
  }
}
.p-top_footer-nav {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-top_footer-nav {
    display: none;
  }
}
.p-top_footer-nav ul {
  max-width: 1200px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.p-top_footer-nav ul li {
  width: 16.6666666667%;
  text-align: center;
  border-left: 1px solid #E5E5E5;
}
.p-top_footer-nav ul li a {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  text-decoration: none;
}
.p-top_footer-nav ul li a:hover {
  color: #07A87E;
}
.p-top_footer-nav ul li:first-child {
  border-left: none;
}
.p-top_info {
  padding: 85px 0 100px;
}
@media screen and (max-width: 767px) {
  .p-top_info {
    padding: 13.3333333333vw 0;
  }
}
.p-top_info_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-end;
}
.p-top_info_wrap_txt {
  width: 370px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_txt {
    width: 100%;
    text-align: center;
    padding-bottom: 8vw;
  }
}
.p-top_info_wrap_txt .c-title-toph2 {
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_txt .c-title-toph2 {
    text-align: center;
    margin-bottom: 5.3333333333vw;
  }
}
.p-top_info_wrap_txt .txt01 {
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  margin-bottom: 11px;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_txt .txt01 {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 2.6666666667vw;
  }
}
.p-top_info_wrap_txt .tel {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_txt .tel {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 2.6666666667vw;
  }
}
.p-top_info_wrap_txt .tel span {
  position: relative;
}
.p-top_info_wrap_txt .tel span a {
  font-size: 32px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  padding-left: 37px;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_txt .tel span a {
    font-size: 32px;
    font-size: 1.7777777778rem;
    padding-left: 9.8666666667vw;
  }
}
.p-top_info_wrap_txt .tel span::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 37px;
  height: 37px;
  margin-top: -3px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_tel.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_txt .tel span::before {
    width: 9.8666666667vw;
    height: 9.8666666667vw;
  }
}
.p-top_info_wrap_txt .txt02 {
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  margin-bottom: 17px;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_txt .txt02 {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 4.5333333333vw;
  }
}
.p-top_info_wrap_txt .txt02 span {
  font-weight: bold;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_txt .txt02 span {
    font-size: 16px;
    font-size: 0.8888888889rem;
  }
}
.p-top_info_wrap_schedule {
  width: calc(100% - 370px);
}
@media screen and (max-width: 767px) {
  .p-top_info_wrap_schedule {
    width: 100%;
  }
}
.p-top_info_btn li a {
  display: inline-block;
}
.p-top_info_btn li a:hover {
  opacity: 0.8;
}

/* ---------------------------------------------------------------------------
 * アニメーション
--------------------------------------------------------------------------- */
.sa {
  opacity: 0;
  transition: all 0.8s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 50px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(0.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-mv_top {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv_top {
    height: calc(100dvh - 60px);
    overflow: hidden;
  }
}
.p-mv_top .top_catch {
  width: 95%;
  position: absolute;
  top: calc(125px + 13%);
  left: 5%;
  text-align: left;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-mv_top .top_catch {
    width: 90%;
    top: 7%;
  }
}
.p-mv_top .top_catch .txt01 {
  width: 46%;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .p-mv_top .top_catch .txt01 {
    width: 70%;
    margin-bottom: 6.6666666667vw;
  }
}
.p-mv_top .top_catch .txt02 {
  width: 55%;
}
@media screen and (max-width: 767px) {
  .p-mv_top .top_catch .txt02 {
    width: 100%;
  }
}
.p-mv_top .fadein {
  opacity: 0;
  animation: SlideIn 1.6s ease forwards;
}
.p-mv_top .txt01 {
  animation-delay: 1s;
}
.p-mv_top .txt02 {
  animation-delay: 2s;
}
.p-mv_top .follow-banner {
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 10;
  width: 588px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #F31810;
}
@media screen and (max-width: 767px) {
  .p-mv_top .follow-banner {
    width: 90%;
    bottom: 5%;
  }
}
.p-mv_top .follow-banner_head {
  position: relative;
  height: 54px;
  background-color: #F31810;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 767px) {
  .p-mv_top .follow-banner_head {
    height: 10.6666666667vw;
  }
}
.p-mv_top .follow-banner_head .close-btn {
  position: absolute;
  width: 32px;
  height: 32px;
  top: -11px;
  right: -11px;
}
@media screen and (max-width: 767px) {
  .p-mv_top .follow-banner_head .close-btn {
    width: 8vw;
    height: 8vw;
    top: -2.6666666667vw;
    right: -2.6666666667vw;
  }
}
.p-mv_top .follow-banner_head h2 {
  font-size: 20px;
  color: #ffffff;
  font-weight: bold;
  padding-left: 62px;
  position: relative;
  line-height: 160%;
  padding-top: 11px;
}
@media screen and (max-width: 767px) {
  .p-mv_top .follow-banner_head h2 {
    font-size: 18px;
    font-size: 1rem;
    padding-left: 13.3333333333vw;
    padding-top: 1.8666666667vw;
  }
}
.p-mv_top .follow-banner_head h2::before {
  display: block;
  content: "";
  position: absolute;
  top: 11px;
  left: 26px;
  width: 30px;
  height: 30px;
  background: url(../../src/img/icon/icon_news.svg) center center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-mv_top .follow-banner_head h2::before {
    top: 1.6vw;
    left: 4vw;
    width: 7.2vw;
    height: 7.2vw;
  }
}
.p-mv_top .follow-banner .important-news {
  margin: 20px 30px;
}
@media screen and (max-width: 767px) {
  .p-mv_top .follow-banner .important-news {
    margin: 4vw;
  }
}
.p-mv_top .follow-banner .important-news li {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  padding-left: 13px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-mv_top .follow-banner .important-news li {
    font-size: 16px;
    font-size: 0.8888888889rem;
    padding-left: 2.6666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}
.p-mv_top .follow-banner .important-news li:last-child {
  margin-bottom: 0;
}
.p-mv_top .follow-banner .important-news li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  background-color: #333333;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
}
.p-mv_top .follow-banner .important-news li .txt_s {
  font-size: 14px;
  margin-top: -3px;
}
@media screen and (max-width: 767px) {
  .p-mv_top .follow-banner .important-news li .txt_s {
    font-size: 12px;
    font-size: 0.6666666667rem;
    margin-top: -0.5333333333vw;
  }
}

@keyframes SlideIn {
  0% {
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main_imgBox {
  width: 100%;
  height: 100vh;
  min-height: 850px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main_imgBox {
    height: 70vh;
  }
}
@media screen and (max-width: 767px) {
  .main_imgBox {
    height: 100%;
  }
}

.main_img {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  animation: anime 48s infinite;
  /* アニメーション全体を48秒に設定（8秒 × 6枚） */
}

.main_img:nth-child(1),
.main_img:nth-child(4) {
  background: url(../../src/img/main01_pc.jpg) no-repeat top center;
  background-size: cover;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .main_img:nth-child(1),
  .main_img:nth-child(4) {
    background: url(../../src/img/main01_sp.jpg) no-repeat top center;
    background-size: auto 100%;
  }
}

.main_img:nth-child(2),
.main_img:nth-child(5) {
  background: url(../../src/img/main02_pc.jpg) no-repeat top center;
  background-size: cover;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .main_img:nth-child(2),
  .main_img:nth-child(5) {
    background: url(../../src/img/main02_sp.jpg) no-repeat top center;
    background-size: auto 100%;
  }
}

.main_img:nth-child(3),
.main_img:nth-child(6) {
  background: url(../../src/img/main03_pc.jpg) no-repeat top center;
  background-size: cover;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .main_img:nth-child(3),
  .main_img:nth-child(6) {
    background: url(../../src/img/main03_sp.jpg) no-repeat top center;
    background-size: auto 100%;
  }
}

/* 各画像のアニメーション遅延設定 */
.main_img:nth-of-type(2) {
  animation-delay: 8s;
}

.main_img:nth-of-type(3) {
  animation-delay: 16s;
}

.main_img:nth-of-type(4) {
  animation-delay: 24s;
}

.main_img:nth-of-type(5) {
  animation-delay: 32s;
}

.main_img:nth-of-type(6) {
  animation-delay: 40s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
.u-mb--0 {
  margin-bottom: 0px !important;
}
.u-mb--xxs {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xxs {
    margin-bottom: 1.3333333333vw !important;
  }
}
.u-mb--xs {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xs {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--s {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--s {
    margin-bottom: 5.3333333333vw !important;
  }
}
.u-mb--m {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--m {
    margin-bottom: 6.6666666667vw !important;
  }
}
.u-mb--l {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--l {
    margin-bottom: 9.3333333333vw !important;
  }
}
.u-mb--15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--15 {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--60 {
    margin-bottom: 8vw !important;
  }
}
.u-mb--80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--80 {
    margin-bottom: 16vw !important;
  }
}
.u-mb--120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--120 {
    margin-bottom: 16vw !important;
  }
}

.u-mt--0 {
  margin-top: 0px !important;
}
.u-mt--xxs {
  margin-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xxs {
    margin-top: 1.3333333333vw !important;
  }
}
.u-mt--xs {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xs {
    margin-top: 2.6666666667vw !important;
  }
}
.u-mt--s {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--s {
    margin-top: 4vw !important;
  }
}
.u-mt--m {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--m {
    margin-top: 5.3333333333vw !important;
  }
}
.u-mt--l {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--l {
    margin-top: 6.6666666667vw !important;
  }
}
.u-mt--60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--60 {
    margin-top: 8vw !important;
  }
}
.u-mt--25 {
  margin-top: 25px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--25 {
    margin-top: 5.3333333333vw !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-nav-only {
  display: none !important;
}
@media screen and (max-width: 1590px) {
  .u-nav-only {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .u-nav-only {
    display: none !important;
  }
}

.u-fontsize--l {
  font-size: 28px;
  font-size: 1.5555555556rem;
  line-height: 1.2857142857;
}
.u-fontsize--l::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.2857142857) * 0.5em);
  content: "";
}
.u-fontsize--l::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.2857142857) * 0.5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .u-fontsize--l {
    font-size: 20px;
    font-size: 1.1111111111rem;
    line-height: 1.4;
  }
  .u-fontsize--l::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.4) * 0.5em);
    content: "";
  }
  .u-fontsize--l::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.4) * 0.5em);
    content: "";
  }
}
.u-fontsize--16 {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .u-fontsize--16 {
    font-size: 1.4rem;
  }
}

.u-fontcolor--red {
  color: #F31810;
}

.u-lineheight--140 {
  line-height: 140% !important;
}

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