@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

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

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

:root {
  --vw: 1vw;
  --icon-arrow-height: 6px;
}

:root {
  font-size: 62.5%;
}
@media only screen and (max-width: 1399px) {
  :root {
    font-size: getvwPc(10);
  }
}
@media only screen and (max-width: 768px) {
  :root {
    font-size: getvw(10);
  }
}

/*
------------------------
用途：個別にhover要素付けたい時用
------------------------
例）
div {
    width:100px;
    height:100px;
    @include hover;
}
*/
/*
------------------------
用途：良く使うflexを1行に短縮
------------------------
例）
div {
    @include flex(b,w);
}
↑これは↓これを一行で書いた例
div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
*/
:root {
  --primary-color: #333;
  --secondary-color: #222;
  --tertiary-color: #111;
  --gray-01-color: #ddd;
  --gray-02-color: #f6f6f6;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #333;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  font-style: normal;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 13px;
  }
}

.mainSection {
  margin-top: 80px;
}
@media only screen and (max-width: 768px) {
  .mainSection {
    margin-top: 50px;
  }
}

.container {
  overflow: hidden;
}

.pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a.link-hover:hover {
  opacity: 0.6;
}

section.sec {
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  section.sec {
    margin-bottom: 60px;
  }
}

.sec-in {
  max-width: 1168px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (max-width: 768px) {
  .sec-in {
    width: 100%;
  }
}
.sec-in--short {
  max-width: 868px;
}
.sec-in--bg {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .sec-in--bg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.sec-in--top {
  padding-top: 80px;
}
@media only screen and (max-width: 768px) {
  .sec-in--top {
    padding-top: 60px;
  }
}
.sec-in--bottom {
  padding-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .sec-in--bottom {
    padding-bottom: 60px;
  }
}

.bg-gray {
  background-color: var(--gray-02-color);
}

.bg-white {
  background-color: #fff;
}

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

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

textarea {
  resize: none;
  width: auto;
  height: auto;
}

@media (min-width: 1024px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.confirm-area {
  max-width: 900px;
  margin: calc(9.6463022508 * var(--vw)) auto;
}
@media only screen and (min-width: 1200px) {
  .confirm-area {
    margin: 120px auto;
  }
}
@media only screen and (max-width: 768px) {
  .confirm-area {
    width: 100%;
    margin: calc(16 * var(--vw)) 0;
    padding: 0 calc(5.3333333333 * var(--vw));
  }
}
.confirm-area h3 {
  margin-bottom: calc(1.6077170418 * var(--vw));
  text-align: center;
  font-size: 2.6rem;
}
@media only screen and (min-width: 1200px) {
  .confirm-area h3 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .confirm-area h3 {
    margin-bottom: calc(4 * var(--vw));
    font-size: 2rem;
  }
}
.confirm-area .formTable {
  width: 100%;
  margin: calc(3.2154340836 * var(--vw)) auto 0;
  border-collapse: collapse;
}
@media only screen and (min-width: 1200px) {
  .confirm-area .formTable {
    margin: 40px auto 0;
  }
}
@media only screen and (max-width: 768px) {
  .confirm-area .formTable {
    margin: calc(5.3333333333 * var(--vw)) auto 0;
  }
}
@media only screen and (max-width: 768px) {
  .confirm-area .formTable tr:first-of-type th {
    border-top: 1px solid #ccc;
  }
}
.confirm-area .formTable td,
.confirm-area .formTable th {
  border-bottom: 1px solid #ccc;
  padding: calc(1.2057877814 * var(--vw));
  text-align: left;
}
@media only screen and (min-width: 1200px) {
  .confirm-area .formTable td,
  .confirm-area .formTable th {
    padding: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .confirm-area .formTable td,
  .confirm-area .formTable th {
    padding: calc(4 * var(--vw));
    display: block;
    width: 100%;
  }
}
.confirm-area .formTable th {
  width: 30%;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .confirm-area .formTable th {
    background-color: #eee;
  }
}
.confirm-area .btn:last-of-type {
  margin-top: 15px;
}

.error_messe {
  margin: 5px 0;
  color: red;
}

.column {
  display: grid;
}
.column--2 {
  grid-template-columns: repeat(2, 1fr);
}
.column--3 {
  grid-template-columns: repeat(3, 1fr);
}
.column--4 {
  grid-template-columns: repeat(4, 1fr);
}
.column--5 {
  grid-template-columns: repeat(5, 1fr);
}
.column--1-11 {
  grid-template-columns: 1fr 11fr;
}
.column--2-10 {
  grid-template-columns: 2fr 10fr;
}
.column--3-9 {
  grid-template-columns: 3fr 9fr;
}
.column--4-8 {
  grid-template-columns: 4fr 8fr;
}
.column--5-7 {
  grid-template-columns: 5fr 7fr;
}
.column--11-1 {
  grid-template-columns: 11fr 1fr;
}
.column--10-2 {
  grid-template-columns: 10fr 2fr;
}
.column--9-3 {
  grid-template-columns: 9fr 3fr;
}
.column--8-4 {
  grid-template-columns: 8fr 4fr;
}
.column--7-5 {
  grid-template-columns: 7fr 5fr;
}
.column--auto-fill {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.column--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .column--1-sp {
    grid-template-columns: repeat(1, 1fr);
  }
  .column--2-sp {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gap-2l {
  gap: 32px;
}

.gap-l {
  gap: 24px;
}

.gap-m {
  gap: 16px;
}

.gap-s {
  gap: 8px;
}

@media only screen and (max-width: 768px) {
  .gap-l-sp {
    gap: 24px;
  }
  .gap-m-sp {
    gap: 16px;
  }
  .gap-s-sp {
    gap: 8px;
  }
}
.gap-r-4l {
  row-gap: 60px;
}

.gap-r-3l {
  row-gap: 40px;
}

.gap-r-2l {
  row-gap: 32px;
}

.gap-r-l {
  row-gap: 24px;
}

.gap-r-m {
  row-gap: 16px;
}

.gap-r-s {
  row-gap: 8px;
}

@media only screen and (max-width: 768px) {
  .gap-r-2l-sp {
    row-gap: 32px;
  }
  .gap-r-l-sp {
    row-gap: 24px;
  }
  .gap-r-m-sp {
    row-gap: 16px;
  }
  .gap-r-s-sp {
    row-gap: 8px;
  }
}
.gap-c-4l {
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}

.gap-c-3l {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.gap-c-2l {
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
}

.gap-c-l {
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.gap-c-m {
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}

.gap-c-s {
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

@media only screen and (max-width: 768px) {
  .gap-c-2l-sp {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
  .gap-c-l-sp {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
  .gap-c-m-sp {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  .gap-c-s-sp {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}
.pd-2l {
  padding: 40px;
}

.pd-l {
  padding: 32px;
}

.pd-m {
  padding: 24px;
}

.pd-s {
  padding: 16px;
}

@media only screen and (max-width: 768px) {
  .pd-m-sp {
    padding: 24px;
  }
  .pd-s-sp {
    padding: 16px;
  }
  .pd-xs-sp {
    padding: 8px;
  }
}
.list-001 {
  padding-left: 20px;
  list-style-type: none;
}
.list-001__item {
  position: relative;
}
.list-001__item:not(:last-child) {
  margin-bottom: 12px;
}
.list-001__item::before {
  content: "・";
  position: absolute;
  left: -20px;
}

.list-002 {
  padding-left: 20px;
  list-style-type: decimal;
}
.list-002__item {
  padding-left: 8px;
  position: relative;
}
.list-002__item:not(:last-child) {
  margin-bottom: 12px;
}

.txt-bold {
  font-weight: bold;
}

h1 {
  font-size: 36px;
}
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: 16px;
  }
}

h5 {
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  h5 {
    font-size: 16px;
  }
}

.txt-6l {
  font-size: 36px;
}
@media only screen and (max-width: 768px) {
  .txt-6l {
    font-size: 28px;
  }
}

.txt-5l {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  .txt-5l {
    font-size: 24px;
  }
}

.txt-4l {
  font-size: 28px;
}
@media only screen and (max-width: 768px) {
  .txt-4l {
    font-size: 20px;
  }
}

.txt-3l {
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  .txt-3l {
    font-size: 16px;
  }
}

.txt-2l {
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .txt-2l {
    font-size: 16px;
  }
}

.txt-l {
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .txt-l {
    font-size: 16px;
  }
}

.txt-s {
  font-size: 12px;
}

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

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .txt-center-sp {
    text-align: center;
  }
  .txt-left-sp {
    text-align: left;
  }
  .txt-right-sp {
    text-align: right;
  }
}
.m-center {
  margin: 0 auto;
}

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

.mb-80 {
  margin-bottom: 80px;
}

@media only screen and (max-width: 768px) {
  .mt-80-sp {
    margin-top: 80px;
  }
}

@media only screen and (max-width: 768px) {
  .mb-80-sp {
    margin-bottom: 80px;
  }
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
  .mt-60-sp {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 768px) {
  .mb-60-sp {
    margin-bottom: 60px;
  }
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .mt-40-sp {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .mb-40-sp {
    margin-bottom: 40px;
  }
}

.mt-32 {
  margin-top: 32px;
}
@media only screen and (max-width: 768px) {
  .mt-32 {
    margin-top: 32px;
  }
}

.mb-32 {
  margin-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .mb-32 {
    margin-bottom: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .mt-32-sp {
    margin-top: 32px;
  }
}

@media only screen and (max-width: 768px) {
  .mb-32-sp {
    margin-bottom: 32px;
  }
}

.mt-24 {
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .mt-24 {
    margin-top: 20px;
  }
}

.mb-24 {
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .mb-24 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .mt-24-sp {
    margin-top: 24px;
  }
}

@media only screen and (max-width: 768px) {
  .mb-24-sp {
    margin-bottom: 24px;
  }
}

.mt-16 {
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .mt-16 {
    margin-top: 16px;
  }
}

.mb-16 {
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .mb-16 {
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .mt-16-sp {
    margin-top: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .mb-16-sp {
    margin-bottom: 16px;
  }
}

.mt-8 {
  margin-top: 8px;
}
@media only screen and (max-width: 768px) {
  .mt-8 {
    margin-top: 8px;
  }
}

.mb-8 {
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .mb-8 {
    margin-bottom: 8px;
  }
}

@media only screen and (max-width: 768px) {
  .mt-8-sp {
    margin-top: 8px;
  }
}

@media only screen and (max-width: 768px) {
  .mb-8-sp {
    margin-bottom: 8px;
  }
}

.notes {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .notes {
    font-size: 12px;
  }
}
.notes::before {
  content: "※";
  position: absolute;
  left: 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  padding: 24px 0;
  gap: 8px 20px;
}
@media only screen and (max-width: 768px) {
  .breadcrumb {
    max-width: 100%;
    gap: 0 15px;
    padding: 16px 0;
  }
}
.breadcrumb__item {
  font-size: 12px;
  position: relative;
  color: #fff;
}
.breadcrumb__item:not(:last-child):after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  top: calc(50% - 2.5px);
  right: -11px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .breadcrumb__item:not(:last-child):after {
    right: -8px;
  }
}
.breadcrumb__item.current {
  font-weight: bold;
}
.breadcrumb__item a {
  display: block;
  text-decoration: underline;
}
.breadcrumb__item a:hover {
  text-decoration: none;
}

.kv-002 {
  background: url("https://placehold.jp/dddddd/dddddd/700x500.jpg") no-repeat center;
  background-size: cover;
  height: 300px;
  position: relative;
  margin-bottom: 80px;
}
@media only screen and (max-width: 768px) {
  .kv-002 {
    height: auto;
    aspect-ratio: 16/9;
    margin-bottom: 60px;
  }
}
.kv-002::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.kv-002__in {
  position: relative;
  max-width: 1168px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
@media only screen and (max-width: 768px) {
  .kv-002__in {
    width: 100%;
    padding: 0 16px;
  }
}
.kv-002__in h1 {
  position: absolute;
  z-index: 2;
  color: #fff;
  top: 50%;
  left: 24px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  text-align: left;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .kv-002__in h1 {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    text-align: center;
    font-size: 20px;
  }
}

.btn-001 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  cursor: pointer;
  line-height: 1.3;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 256px;
  padding: 0 24px;
  min-height: 50px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  font-weight: bold;
}
.btn-001:hover {
  background-color: #fff;
  color: var(--primary-color);
}
.btn-001:hover::after {
  border-color: var(--primary-color);
}
@media only screen and (max-width: 768px) {
  .btn-001 {
    margin-left: auto;
    margin-right: auto;
  }
}
.btn-001--s {
  width: 128px;
}
.btn-001--back.icon-arrow-001::after {
  right: auto;
  left: 16px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.icon-arrow-001 {
  position: relative;
}
.icon-arrow-001::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  right: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.icon-img {
  position: relative;
}
.icon-img::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: -2px 6px 0 0;
}
.icon-img--search::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-image: url("../../assets/img/common/icon_search.svg");
}
.icon-img--search:hover::before {
  background-image: url("../../assets/img/common/icon_search_on.svg");
}

.txt-link {
  text-decoration: underline;
  color: #1558d6;
}
.txt-link:hover {
  text-decoration: none;
}

.voice-001__img {
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .voice-001__img {
    width: 168px;
    margin: 0 auto -60px;
    position: relative;
    z-index: 2;
  }
}
.voice-001 .speech {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .voice-001 .speech {
    padding-top: 80px;
  }
}
.voice-001 .speech::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #f6f6f6 transparent transparent;
  border-width: 12px 24px 12px 0px;
  left: -24px;
  top: 30px;
}
@media only screen and (max-width: 768px) {
  .voice-001 .speech::before {
    content: none;
  }
}

.card-01 {
  border: 1px solid var(--gray-01-color);
  background-color: #fff;
}
.card-01__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-01__txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}

.card-02.column {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card-02__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow-001 {
  gap: 48px;
}
.flow-001__item {
  position: relative;
}
.flow-001__item:not(:last-child)::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 12px;
  top: calc(50% - 6px);
  right: -28px;
  vertical-align: middle;
  border-top: 4px solid #ddd;
  border-right: 4px solid #ddd;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .flow-001__item:not(:last-child)::before {
    right: calc(50% - 6px);
    top: auto;
    bottom: -28px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
.flow-001__img {
  border-radius: 50%;
  width: 70%;
}
@media only screen and (max-width: 768px) {
  .flow-001__img {
    width: 45%;
  }
}

.accordion-001 dl {
  border-bottom: 1px solid #ddd;
}
.accordion-001 dl:first-of-type {
  border-top: 1px solid #ddd;
}
.accordion-001 dl dt {
  padding: 24px 56px 24px 0;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .accordion-001 dl dt {
    padding: 16px 24px 16px 0;
  }
}
.accordion-001 dl dt::before, .accordion-001 dl dt::after {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
}
.accordion-001 dl dt::before {
  width: 3px;
  height: 16px;
  top: calc(50% - 8px);
  right: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 768px) {
  .accordion-001 dl dt::before {
    right: 7px;
  }
}
.accordion-001 dl dt::after {
  width: 17px;
  height: 3px;
  top: calc(50% - 1.5px);
  right: 23px;
}
@media only screen and (max-width: 768px) {
  .accordion-001 dl dt::after {
    right: 0;
  }
}
.accordion-001 dl dt.open::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion-001 dl dd {
  display: none;
  padding-bottom: 24px;
}

.side-menu-001 {
  width: 265px;
}
@media only screen and (max-width: 768px) {
  .side-menu-001 {
    width: 100%;
  }
}
.side-menu-001__list {
  border: 1px solid var(--gray-01-color);
}
.side-menu-001__item {
  border-bottom: 1px solid var(--gray-01-color);
}
.side-menu-001__item:last-child {
  border: none;
}
.side-menu-001__item a {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 56px;
  padding-left: 16px;
}
.side-menu-001__item a.icon-arrow-001::after {
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}
.side-menu-001__item a:hover, .side-menu-001__item a.current {
  color: #fff;
  background-color: var(--primary-color);
  padding-left: 24px;
}
.side-menu-001__item a:hover::after, .side-menu-001__item a.current::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.pagination-001__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination-001__item a {
  display: inline-block;
  color: var(--primary-color);
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 42px;
  width: 44px;
  height: 44px;
  white-space: nowrap;
  border: 1px solid var(--primary-color);
}
@media only screen and (max-width: 768px) {
  .pagination-001__item a {
    line-height: 32px;
    width: 32px;
    height: 32px;
  }
}
.pagination-001__item a.prev.icon-arrow-001::after, .pagination-001__item a.next.icon-arrow-001::after {
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  right: calc(50% - 3px);
}
.pagination-001__item a.prev.icon-arrow-001::after {
  right: auto;
  left: calc(50% - 3px);
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
.pagination-001__item a:hover, .pagination-001__item a.current {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}
.pagination-001__item a:hover.icon-arrow-001::after, .pagination-001__item a.current.icon-arrow-001::after {
  border-color: #fff;
}

.overview-001__item {
  border-bottom: 1px solid var(--gray-01-color);
  padding-bottom: 24px;
  display: grid;
  grid-template-columns: 2fr 10fr;
}
@media only screen and (max-width: 768px) {
  .overview-001__item {
    grid-template-columns: 1fr;
    padding-bottom: 16px;
  }
}
.overview-001__item:not(:last-of-type) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  .overview-001__item:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
.overview-001__item:first-of-type {
  border-top: 1px solid var(--gray-01-color);
  padding-top: 24px;
}
@media only screen and (max-width: 768px) {
  .overview-001__item:first-of-type {
    padding: 16px 0;
  }
}
.overview-001__item dt {
  margin-bottom: 8px;
}

.swiper-slide {
  height: auto;
}
.swiper-slide a {
  display: block;
  height: 100%;
}

.swiper-contents {
  position: relative;
}
.swiper-contents .swiper-btn-next,
.swiper-contents .swiper-btn-prev {
  position: absolute;
  top: calc(50% - 20px);
  cursor: pointer;
  z-index: 99;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
}
.swiper-contents .swiper-btn-next::before,
.swiper-contents .swiper-btn-prev::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  left: calc(50% - 5.3333333333px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.swiper-contents .swiper-btn-next .swiper-button-disabled,
.swiper-contents .swiper-btn-prev .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.swiper-contents .swiper-btn-next {
  right: -20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .swiper-contents .swiper-btn-next {
    right: -10px;
  }
}
.swiper-contents .swiper-btn-prev {
  left: -20px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media only screen and (max-width: 768px) {
  .swiper-contents .swiper-btn-prev {
    left: -10px;
  }
}
.swiper-contents .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -40px;
}
.swiper-contents .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background-color: var(--primary-color);
}
@media only screen and (max-width: 768px) {
  .swiper-contents .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    margin: 0 6px;
  }
}

.news-001__list {
  border-bottom: solid 1px #ddd;
}
.news-001__list:first-child {
  border-top: solid 1px #ddd;
}
.news-001__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
  padding: 30px 40px 30px 10px;
}
@media only screen and (max-width: 768px) {
  .news-001__link {
    gap: 0 20px;
    padding: 16px 32px 16px 10px;
  }
}
.news-001__link:hover .news-001__ttl {
  text-decoration: underline;
}
.news-001__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 6px;
  top: calc(50% - 3px);
  right: 16px;
  border-top: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.news-001__cat {
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  padding: 0 8px 2px;
  color: #fff;
  background-color: var(--primary-color);
}
.news-001__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .news-001__ttl {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    margin-top: 10px;
  }
}

.tag-001 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0 8px;
  border: 1px solid var(--primary-color);
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .tag-001 {
    font-size: 12px;
  }
}

input[type=text], input[type=email], input[type=tel], input[type=number], input[name=zip], input[type=date] {
  width: 100%;
  height: 50px;
  border: 1px solid #888;
  border-radius: 4px;
  padding: 0 15px;
  outline: none;
  font-size: 16px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  input[type=text], input[type=email], input[type=tel], input[type=number], input[name=zip], input[type=date] {
    font-size: 13px;
  }
}
input.error {
  background-color: #FBEFF3;
  border-color: #df0000;
}
input::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

textarea {
  width: 100%;
  height: 240px;
  border: 1px solid #888;
  border-radius: 4px;
  line-height: 1.4;
  font-size: 16px;
  padding: 16px;
  outline: none;
  resize: none;
}

input,
textarea {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #bbb;
  font-size: 16px;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
  font-size: 16px;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #bbb;
  font-size: 16px;
}
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #bbb;
  font-size: 16px;
}
input::placeholder,
textarea::placeholder {
  color: #bbb;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 13px;
  }
  input::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 13px;
  }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 13px;
  }
  input::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 13px;
  }
  input::placeholder,
  textarea::placeholder {
    font-size: 13px;
  }
}
input:focus,
textarea:focus {
  border: 2px #005fcc solid;
}

.select-box {
  overflow: hidden;
  position: relative;
  border: 1px solid #888;
  border-radius: 4px;
}
.select-box::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 7px;
  height: 7px;
  top: calc(50% - 5.25px);
  right: 24px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.select-box select {
  font-size: 16px;
  height: 50px;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 32px 0 15px;
  color: #333;
}
@media only screen and (max-width: 768px) {
  .select-box select {
    font-size: 13px;
  }
}
.select-box select::-ms-expand {
  display: none;
}
.select-box select:focus {
  border: 2px #005fcc solid;
}

.radio:not(:last-of-type) {
  margin-bottom: 8px;
}
.radio label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-left: 32px;
}
.radio label::before, .radio label::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 15px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .radio label::before, .radio label::after {
    top: 13px;
  }
}
.radio label::before {
  background-color: #fff;
  border: 1px solid #888;
  width: 20px;
  height: 20px;
}
.radio label::after {
  background-color: var(--primary-color);
  opacity: 0;
  width: 12px;
  height: 12px;
  left: 5px;
}
.radio input:checked + label::after {
  opacity: 1;
}
.radio__input {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.check-box:not(:last-of-type) {
  margin-bottom: 8px;
}
.check-box label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  padding-left: 32px;
}
.check-box__input {
  margin: 0;
  width: 0;
  opacity: 0;
}
.check-box__input:checked + .check-box__border {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.check-box__input:checked + .check-box__border::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: contain;
  background: url("../../assets/img/common/icon_check.svg") no-repeat center;
}
.check-box__border {
  position: absolute;
  top: 5px;
  left: 0;
  border: 1px solid #888;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
@media only screen and (max-width: 768px) {
  .check-box__border {
    top: 2px;
  }
}

@media only screen and (max-width: 768px) {
  .layout-001__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .layout-001__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media only screen and (max-width: 768px) {
  .layout-002__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .layout-002__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#NEWS.details .details-sec__contents p + p, #NEWS.details .details-sec__contents p + img, #NEWS.details .details-sec__contents p + ul, #NEWS.details .details-sec__contents p + ol, #NEWS.details .details-sec__contents p + table,
#NEWS.details .details-sec__contents img + p,
#NEWS.details .details-sec__contents img + img,
#NEWS.details .details-sec__contents img + ul,
#NEWS.details .details-sec__contents img + ol,
#NEWS.details .details-sec__contents img + table,
#NEWS.details .details-sec__contents ul + p,
#NEWS.details .details-sec__contents ul + img,
#NEWS.details .details-sec__contents ul + ul,
#NEWS.details .details-sec__contents ul + ol,
#NEWS.details .details-sec__contents ul + table,
#NEWS.details .details-sec__contents ol + p,
#NEWS.details .details-sec__contents ol + img,
#NEWS.details .details-sec__contents ol + ul,
#NEWS.details .details-sec__contents ol + ol,
#NEWS.details .details-sec__contents ol + table,
#NEWS.details .details-sec__contents table + p,
#NEWS.details .details-sec__contents table + img,
#NEWS.details .details-sec__contents table + ul,
#NEWS.details .details-sec__contents table + ol,
#NEWS.details .details-sec__contents table + table,
#PRODUCTS.details .details-sec__contents p + p,
#PRODUCTS.details .details-sec__contents p + img,
#PRODUCTS.details .details-sec__contents p + ul,
#PRODUCTS.details .details-sec__contents p + ol,
#PRODUCTS.details .details-sec__contents p + table,
#PRODUCTS.details .details-sec__contents img + p,
#PRODUCTS.details .details-sec__contents img + img,
#PRODUCTS.details .details-sec__contents img + ul,
#PRODUCTS.details .details-sec__contents img + ol,
#PRODUCTS.details .details-sec__contents img + table,
#PRODUCTS.details .details-sec__contents ul + p,
#PRODUCTS.details .details-sec__contents ul + img,
#PRODUCTS.details .details-sec__contents ul + ul,
#PRODUCTS.details .details-sec__contents ul + ol,
#PRODUCTS.details .details-sec__contents ul + table,
#PRODUCTS.details .details-sec__contents ol + p,
#PRODUCTS.details .details-sec__contents ol + img,
#PRODUCTS.details .details-sec__contents ol + ul,
#PRODUCTS.details .details-sec__contents ol + ol,
#PRODUCTS.details .details-sec__contents ol + table,
#PRODUCTS.details .details-sec__contents table + p,
#PRODUCTS.details .details-sec__contents table + img,
#PRODUCTS.details .details-sec__contents table + ul,
#PRODUCTS.details .details-sec__contents table + ol,
#PRODUCTS.details .details-sec__contents table + table {
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  #NEWS.details .details-sec__contents p + p, #NEWS.details .details-sec__contents p + img, #NEWS.details .details-sec__contents p + ul, #NEWS.details .details-sec__contents p + ol, #NEWS.details .details-sec__contents p + table,
  #NEWS.details .details-sec__contents img + p,
  #NEWS.details .details-sec__contents img + img,
  #NEWS.details .details-sec__contents img + ul,
  #NEWS.details .details-sec__contents img + ol,
  #NEWS.details .details-sec__contents img + table,
  #NEWS.details .details-sec__contents ul + p,
  #NEWS.details .details-sec__contents ul + img,
  #NEWS.details .details-sec__contents ul + ul,
  #NEWS.details .details-sec__contents ul + ol,
  #NEWS.details .details-sec__contents ul + table,
  #NEWS.details .details-sec__contents ol + p,
  #NEWS.details .details-sec__contents ol + img,
  #NEWS.details .details-sec__contents ol + ul,
  #NEWS.details .details-sec__contents ol + ol,
  #NEWS.details .details-sec__contents ol + table,
  #NEWS.details .details-sec__contents table + p,
  #NEWS.details .details-sec__contents table + img,
  #NEWS.details .details-sec__contents table + ul,
  #NEWS.details .details-sec__contents table + ol,
  #NEWS.details .details-sec__contents table + table,
  #PRODUCTS.details .details-sec__contents p + p,
  #PRODUCTS.details .details-sec__contents p + img,
  #PRODUCTS.details .details-sec__contents p + ul,
  #PRODUCTS.details .details-sec__contents p + ol,
  #PRODUCTS.details .details-sec__contents p + table,
  #PRODUCTS.details .details-sec__contents img + p,
  #PRODUCTS.details .details-sec__contents img + img,
  #PRODUCTS.details .details-sec__contents img + ul,
  #PRODUCTS.details .details-sec__contents img + ol,
  #PRODUCTS.details .details-sec__contents img + table,
  #PRODUCTS.details .details-sec__contents ul + p,
  #PRODUCTS.details .details-sec__contents ul + img,
  #PRODUCTS.details .details-sec__contents ul + ul,
  #PRODUCTS.details .details-sec__contents ul + ol,
  #PRODUCTS.details .details-sec__contents ul + table,
  #PRODUCTS.details .details-sec__contents ol + p,
  #PRODUCTS.details .details-sec__contents ol + img,
  #PRODUCTS.details .details-sec__contents ol + ul,
  #PRODUCTS.details .details-sec__contents ol + ol,
  #PRODUCTS.details .details-sec__contents ol + table,
  #PRODUCTS.details .details-sec__contents table + p,
  #PRODUCTS.details .details-sec__contents table + img,
  #PRODUCTS.details .details-sec__contents table + ul,
  #PRODUCTS.details .details-sec__contents table + ol,
  #PRODUCTS.details .details-sec__contents table + table {
    margin-top: 16px;
  }
}
#NEWS.details .details-sec__contents a,
#PRODUCTS.details .details-sec__contents a {
  text-decoration: underline;
  color: #1558d6;
}
#NEWS.details .details-sec__contents a:hover,
#PRODUCTS.details .details-sec__contents a:hover {
  text-decoration: none;
}
#NEWS.details .details-sec__contents ul,
#PRODUCTS.details .details-sec__contents ul {
  padding-left: 20px;
  list-style-type: none;
}
#NEWS.details .details-sec__contents ul li,
#PRODUCTS.details .details-sec__contents ul li {
  position: relative;
}
#NEWS.details .details-sec__contents ul li:not(:last-child),
#PRODUCTS.details .details-sec__contents ul li:not(:last-child) {
  margin-bottom: 12px;
}
#NEWS.details .details-sec__contents ul li::before,
#PRODUCTS.details .details-sec__contents ul li::before {
  content: "・";
  position: absolute;
  left: -20px;
}
#NEWS.details .details-sec__contents ol,
#PRODUCTS.details .details-sec__contents ol {
  padding-left: 20px;
  list-style-type: decimal;
}
#NEWS.details .details-sec__contents ol li,
#PRODUCTS.details .details-sec__contents ol li {
  padding-left: 8px;
  position: relative;
}
#NEWS.details .details-sec__contents ol li:not(:last-child),
#PRODUCTS.details .details-sec__contents ol li:not(:last-child) {
  margin-bottom: 12px;
}
#NEWS.details .details-sec__contents table,
#PRODUCTS.details .details-sec__contents table {
  width: 100%;
}
#NEWS.details .details-sec__contents table thead,
#PRODUCTS.details .details-sec__contents table thead {
  background-color: #f2f2f2;
  text-align: center;
}
#NEWS.details .details-sec__contents table th,
#NEWS.details .details-sec__contents table td,
#PRODUCTS.details .details-sec__contents table th,
#PRODUCTS.details .details-sec__contents table td {
  border: 1px solid #ddd;
  padding: 16px;
}
#NEWS.details .details-sec__contents table th,
#PRODUCTS.details .details-sec__contents table th {
  width: 30%;
  background-color: #f2f2f2;
}
#NEWS.details .details-sec__contents table td,
#PRODUCTS.details .details-sec__contents table td {
  width: 70%;
}

.header-001 {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 7.2rem;
  padding: 0 2.7rem 0 4rem;
  z-index: 10;
  background: transparent url(../img/common/bg_header.png) center/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .header-001 {
    height: 5rem;
    padding: 0 1.3rem;
  }
}
.header-001__in {
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .header-001__in {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    width: 100%;
  }
}
.header-001 .icon-arrow {
  position: relative;
}
.header-001 .icon-arrow::after {
  content: none;
  width: 6px;
  height: var(--icon-arrow-height);
  display: inline-block;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  position: absolute;
  top: 50%;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  right: 24px;
}
@media only screen and (max-width: 768px) {
  .header-001 .icon-arrow::after {
    content: "";
  }
}
.header-001__logo {
  width: 13.7rem;
}
@media only screen and (max-width: 768px) {
  .header-001__logo {
    width: 7.8rem;
  }
}
.header-001__logo img {
  display: block;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .header-001__logo img {
    height: 100%;
  }
}
.header-001__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 768px) {
  .header-001__nav {
    position: fixed;
    display: none;
    width: 100%;
    height: calc(100dvh - 5rem);
    inset: 50px 0 0 0;
    overflow: auto;
  }
}
@media only screen and (max-width: 768px) {
  .header-001__nav-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff5ba;
  }
}
.header-001__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1.8rem;
  padding: 0.6rem 3.6rem;
  border-radius: 3.6rem;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .header-001__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    border-radius: 0;
    background-color: #fff5ba;
  }
}
.header-001__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.8rem;
     -moz-column-gap: 1.8rem;
          column-gap: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .header-001__item {
    display: block;
  }
}
.header-001__item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.8rem;
     -moz-column-gap: 1.8rem;
          column-gap: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media only screen and (max-width: 768px) {
  .header-001__item > a {
    -webkit-column-gap: 1.6rem;
       -moz-column-gap: 1.6rem;
            column-gap: 1.6rem;
    min-height: 8rem;
    line-height: 1;
    font-size: 2.4rem;
  }
}
.header-001__item > a::before {
  content: "";
  width: 0.4rem;
  height: 1.2rem;
  background: transparent url(../img/common/marker_header.png) center/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  .header-001__item > a::before {
    width: 0.6rem;
    height: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-001__item > a.icon-arrow::after {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .header-001__item > a:hover {
    color: red;
  }
}
@media only screen and (max-width: 768px) {
  .header-001__other-menu {
    margin: 0 1.6rem 0 auto;
  }
}
.header-001__other-menu .btn-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 8.4rem;
  height: 3.5rem;
  border-radius: 0.8rem;
  background: #de5602 url(../img/common/bg_btn_header.png) center/contain no-repeat;
  text-align: center;
  text-shadow: 0.1rem 0.1rem 0.2rem rgba(0, 0, 0, 0.5);
  font-weight: 900;
  font-size: 1.2rem;
  color: #fff;
}
.header-001__toggle {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header-001__toggle {
    display: grid;
    place-content: center;
    width: 3.6rem;
    aspect-ratio: 1;
    border: 0.2rem solid #ec6800;
    border-radius: 50%;
    background-color: #fff;
  }
  .header-001__toggle span {
    display: block;
    width: 1.9rem;
    height: 0.2rem;
    background-color: #ec6800;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header-001__toggle span:nth-of-type(2) {
    opacity: 0;
  }
  .header-001__toggle span:not(:last-of-type) {
    margin-bottom: 0.4rem;
  }
  .header-001__toggle.open span:not(:last-of-type) {
    margin-bottom: -0.2rem;
  }
  .header-001__toggle.open span:nth-child(1) {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .header-001__toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .header-001__toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
}

.footer-001 {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3.6rem 3rem 3rem;
  background-color: #585858;
  line-height: 1;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .footer-001 {
    padding: 1.8rem 1.5rem 1.5rem;
    font-size: 1.2rem;
  }
}

.section-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  margin-bottom: 6rem;
  text-align: center;
  line-height: 1.125;
  font-size: 4rem;
  font-weight: 900;
  color: #ec6800;
}
@media only screen and (max-width: 768px) {
  .section-header {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
}
.section-header[id] {
  margin-top: -15.2rem;
  padding-top: 15.2rem;
}
@media only screen and (max-width: 768px) {
  .section-header[id] {
    margin-top: -9rem;
    padding-top: 9rem;
  }
}
.section-header::before, .section-header::after {
  content: "";
  width: 3.9rem;
  height: 5.1rem;
}
@media only screen and (max-width: 768px) {
  .section-header::before, .section-header::after {
    width: 2.2rem;
    height: 2.8rem;
  }
}
.section-header::before {
  background: transparent url(../img/common/bg_header_1.png) center/contain no-repeat;
}
.section-header::after {
  background: transparent url(../img/common/bg_header_2.png) center/contain no-repeat;
}

section.sec {
  margin-bottom: 0;
  padding: 8rem 0 10rem;
}
@media only screen and (max-width: 768px) {
  section.sec {
    padding: 4rem 0 5rem;
  }
}

#TOP .kv {
  position: relative;
}
@media only screen and (max-width: 768px) {
  #TOP .kv {
    padding-bottom: 2rem;
    background-color: #ffd253;
  }
}
#TOP .kv .btn {
  position: fixed;
  z-index: 15;
  right: -0.5rem;
  top: 51rem;
}
#TOP .kv .btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 9.2rem;
  height: 20.3rem;
  border: 0.5rem solid #ec6800;
  border-radius: 0.5rem;
  background: #de5602 url(../img/top/bg_btn_kv.png) center/contain no-repeat;
  line-height: 3.2rem;
  text-align: center;
  text-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.5);
  font-size: 2.8rem;
  font-weight: 900;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#TOP .kv .btn a:hover {
  opacity: 0.7;
}
#TOP .kv .news {
  background-color: #fff;
}
@media only screen and (min-width: 769px) {
  #TOP .kv .news {
    position: absolute;
    top: 63.3%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: min(100%, 112rem);
    padding: 3rem 0;
    border-radius: 2.4rem;
  }
}
@media only screen and (max-width: 768px) {
  #TOP .kv .news {
    position: relative;
    z-index: 1;
    margin: -14vw 2rem 0;
    padding: 2rem 0;
    border-radius: 2rem;
  }
}
#TOP .kv .news h2 {
  max-width: 98rem;
  padding: 10.2rem 2rem 0;
  margin: -10.2rem auto 2.4rem;
  line-height: 1;
  font-size: 2.4rem;
  color: #ec6800;
}
@media only screen and (max-width: 768px) {
  #TOP .kv .news h2 {
    margin-top: -7rem;
    margin-bottom: 1.5rem;
    padding-top: 7rem;
    font-size: 2rem;
  }
}
#TOP .kv .news .news-001 {
  max-width: 98rem;
  margin: 0 auto;
  padding: 0 2rem;
}
#TOP .kv .news .news-001__list {
  border-bottom: none;
}
#TOP .kv .news .news-001__list:not(:first-child) {
  margin-top: 1rem;
}
@media only screen and (max-width: 768px) {
  #TOP .kv .news .news-001__list:not(:first-child) {
    margin-top: 0;
    border-top: 0.1rem solid #000;
  }
}
#TOP .kv .news .news-001__list:first-child {
  border-top: none;
}
#TOP .kv .news .news-001__link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 2.5rem;
  padding: 1.2rem 4rem 1.2rem 0;
}
@media only screen and (max-width: 768px) {
  #TOP .kv .news .news-001__link {
    gap: 0;
    padding: 0.6rem 2rem 0.6rem 0;
  }
}
#TOP .kv .news .news-001__link:hover .news-001__ttl {
  text-decoration: underline;
}
#TOP .kv .news .news-001__link::after {
  border-top-color: #ec6800;
  border-right-color: #ec6800;
}
@media only screen and (max-width: 768px) {
  #TOP .kv .news .news-001__link::after {
    right: 0.7rem;
  }
}
#TOP .kv .news .news-001__date {
  width: 10rem;
  line-height: 1.75;
}
#TOP .kv .news .news-001__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.75;
  line-clamp: 1;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  #TOP .kv .news .news-001__ttl {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
    margin-top: 0.5rem;
  }
}
#TOP .intro {
  position: relative;
  z-index: 1;
  margin-top: -1%;
  padding-bottom: 14rem;
  background: url(../img/top/bg_intro_1.png) left 16.25% bottom 6rem/19.4rem auto no-repeat, transparent url(../img/top/bg_intro_2.png) left 84.375% bottom 6.5rem/19.9rem auto no-repeat;
}
@media only screen and (max-width: 768px) {
  #TOP .intro {
    padding-bottom: 4rem;
    background: none;
  }
}
#TOP .intro p {
  line-height: 2.25;
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #TOP .intro p {
    line-height: 2;
    font-size: 1.6rem;
  }
}
#TOP .scroll-infinity-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
#TOP .scroll-infinity-img__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: infinity-scroll-left 30s infinite linear;
          animation: infinity-scroll-left 30s infinite linear;
}
#TOP .scroll-infinity-img__item {
  width: 20.8333333333vw;
}
@media only screen and (max-width: 768px) {
  #TOP .scroll-infinity-img__item {
    width: 41.6666666667vw;
  }
}
#TOP .scroll-infinity-img__item > img {
  width: 100%;
}
#TOP .about {
  position: relative;
  background-color: #fff5ba;
}
@media only screen and (max-width: 768px) {
  #TOP .about {
    padding-bottom: 10rem;
  }
}
#TOP .about::after {
  content: "";
  position: absolute;
  left: 75%;
  bottom: -8rem;
  width: 21.8rem;
  height: 25.5rem;
  background: transparent url(../img/top/obj_about.png) center/contain no-repeat;
}
@media only screen and (max-width: 768px) {
  #TOP .about::after {
    left: 65%;
    width: 10.9rem;
    height: 12.8rem;
    bottom: -4rem;
  }
}
#TOP .about .layout-001 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#TOP .about .layout-001__img {
  width: 43.75%;
  border-radius: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  #TOP .about .layout-001__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin-bottom: 24px;
  }
}
#TOP .about .layout-001__info {
  width: 50%;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  #TOP .about .layout-001__info {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 1.6rem;
  }
}
#TOP .about .layout-001__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.6rem;
     -moz-column-gap: 0.6rem;
          column-gap: 0.6rem;
  width: 27rem;
  height: 5rem;
  margin-top: 6.4rem;
  border-radius: 5rem;
  background-color: #ffeb79;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  cursor: pointer;
}
#TOP .about .layout-001__btn::after {
  content: "";
  width: 1.6rem;
  aspect-ratio: 1;
  background: transparent url(../img/common/icon_nw.png) center/contain no-repeat;
}
#TOP .about .layout-001__btn:hover {
  background-color: #fff;
  color: var(--primary-color);
}
#TOP .about .layout-001__btn:hover::after {
  border-color: var(--primary-color);
}
@media only screen and (max-width: 768px) {
  #TOP .about .layout-001__btn {
    margin: 32px auto 0;
  }
}
#TOP .event .table-003 {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto 7rem;
  table-layout: fixed;
}
@media only screen and (max-width: 768px) {
  #TOP .event .table-003 {
    margin-bottom: 3.5rem;
  }
}
#TOP .event .table-003 tr {
  border-bottom: 0.1rem solid #000;
}
#TOP .event .table-003 tr:first-of-type {
  border-top: 0.1rem solid #000;
}
#TOP .event .table-003 th, #TOP .event .table-003 td {
  vertical-align: top;
  padding: 1.8rem 0;
  line-height: 4rem;
  font-size: 2.4rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #TOP .event .table-003 th, #TOP .event .table-003 td {
    line-height: 3rem;
    font-size: 1.8rem;
  }
}
#TOP .event .table-003 th {
  width: 32%;
  font-weight: 700;
  color: #ec6800;
}
@media only screen and (max-width: 768px) {
  #TOP .event .table-003 th {
    width: 9rem;
  }
}
#TOP .event .table-003 td small {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  #TOP .event .table-003 td small {
    font-size: 1.6rem;
  }
}
#TOP .event .table-003 table tr {
  border: none !important;
}
#TOP .event .table-003 table th, #TOP .event .table-003 table td {
  padding: 0;
}
#TOP .event .table-003 table th {
  width: 7.5rem;
  font-weight: 400;
  color: #000;
}
#TOP .event .stayplan {
  padding: 4rem;
  border-radius: 1.6rem;
  background-color: #ffeb79;
  color: #000;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan {
    padding: 2rem;
    border-radius: 0.8rem;
    font-size: 1.4rem;
  }
}
#TOP .event .stayplan h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4rem;
  color: #ec6800;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan h3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 2rem;
  }
}
#TOP .event .stayplan h3::before {
  content: "";
  width: 31%;
  aspect-ratio: 2.6;
  background: transparent url(../img/top/bg_plan_1.png) center/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan h3::before {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 46%;
  }
}
#TOP .event .stayplan h3::after {
  content: "";
  width: 32.3%;
  aspect-ratio: 3;
  background: transparent url(../img/top/bg_plan_2.png) center/cover no-repeat;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan h3::after {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 48%;
  }
}
#TOP .event .stayplan h3 .text {
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan h3 .text {
    width: 100%;
  }
}
#TOP .event .stayplan h3 .text div:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.5rem;
     -moz-column-gap: 0.5rem;
          column-gap: 0.5rem;
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan h3 .text div:nth-of-type(1) {
    font-size: 2rem;
  }
}
#TOP .event .stayplan h3 .text div:nth-of-type(1)::before, #TOP .event .stayplan h3 .text div:nth-of-type(1)::after {
  content: "";
  width: 0.8rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #fff;
}
#TOP .event .stayplan h3 .text div:nth-of-type(2) {
  font-size: 4rem;
  font-weight: 900;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan h3 .text div:nth-of-type(2) {
    font-size: 3.2rem;
  }
}
#TOP .event .stayplan .note {
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .note {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
}
#TOP .event .stayplan .note small {
  display: block;
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .note small {
    margin-top: 0.5rem;
    font-size: 1.2rem;
  }
}
#TOP .event .stayplan .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2rem;
  }
}
#TOP .event .stayplan .wrapper .info {
  width: calc(50% - 4rem);
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .info {
    width: 100%;
  }
}
#TOP .event .stayplan .wrapper .info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 2rem;
  line-height: 1.2;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .info dl {
    font-size: 1.6rem;
  }
}
#TOP .event .stayplan .wrapper .info dl dt {
  width: 12rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .info dl dt {
    width: 9.6rem;
  }
}
#TOP .event .stayplan .wrapper .info dl dd {
  width: calc(100% - 12rem);
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .info dl dd {
    width: calc(100% - 9.6rem);
  }
}
#TOP .event .stayplan .wrapper .info dl dd a {
  text-decoration: underline;
  color: #ec6800;
}
#TOP .event .stayplan .wrapper .info dl dd a:hover, #TOP .event .stayplan .wrapper .info dl dd a:active {
  text-decoration: none;
}
#TOP .event .stayplan .wrapper .plan {
  width: 50%;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .plan {
    width: 100%;
  }
}
#TOP .event .stayplan .wrapper .plan h4 {
  position: relative;
  z-index: 1;
  margin: 0 0.5rem;
  padding: 1.2rem;
  border-radius: 4rem;
  background-color: #ec6800;
  text-align: center;
  line-height: 2.4rem;
  font-size: 2rem;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .plan h4 {
    padding: 1rem;
    line-height: 2.2rem;
    font-size: 1.8rem;
  }
}
#TOP .event .stayplan .wrapper .plan h4 span {
  line-height: inherit;
  font-size: 3.2rem;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .plan h4 span {
    font-size: 2.6rem;
  }
}
#TOP .event .stayplan .wrapper .plan-inner {
  margin-top: -2.7rem;
  padding: 5.2rem 2.5rem 2rem;
  border-radius: 0.8rem;
  background-color: #fff;
  line-height: 2.4rem;
}
#TOP .event .stayplan .wrapper .plan-inner p:not(:last-child) {
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 0.1rem solid #b9b9b9;
}
#TOP .event .stayplan .wrapper .plan-inner p:nth-of-type(1), #TOP .event .stayplan .wrapper .plan-inner p:nth-of-type(2) {
  letter-spacing: -0.1rem;
}
#TOP .event .stayplan .wrapper .plan-inner p:nth-of-type(1) strong, #TOP .event .stayplan .wrapper .plan-inner p:nth-of-type(2) strong {
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .plan-inner p:nth-of-type(1) strong, #TOP .event .stayplan .wrapper .plan-inner p:nth-of-type(2) strong {
    font-size: 2.2rem;
  }
}
#TOP .event .stayplan .wrapper .plan-inner p:last-child small {
  display: block;
  margin: 1.6rem 0 0 1.6rem;
  font-size: 100%;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .plan-inner p:last-child small {
    margin: 1.4rem 0 0;
  }
}
#TOP .event .stayplan .wrapper .plan-inner p time {
  font-size: 2.4rem;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .plan-inner p time {
    font-size: 2rem;
  }
}
#TOP .event .stayplan .wrapper .plan-inner p time span {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan .wrapper .plan-inner p time span {
    font-size: 1.6rem;
  }
}
#TOP .event .stayplan .wrapper .plan-inner dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
  margin-bottom: 1.3rem;
  padding-bottom: 1.3rem;
  border-bottom: 0.1rem solid #b9b9b9;
  color: #7e7e7e;
}
#TOP .event .stayplan .wrapper .plan-inner dl a {
  text-decoration: underline;
  color: #ec6800;
}
#TOP .event .stayplan .wrapper .plan-inner dl a:hover, #TOP .event .stayplan .wrapper .plan-inner dl a:active {
  text-decoration: none;
}
#TOP .event .stayplan .swiper-slide img {
  border-radius: 1.6rem;
}
#TOP .event .stayplan .swiper-slide div {
  margin-top: 0.8rem;
}
#TOP .event .stayplan .swiper-slide div p {
  line-height: 1.5;
}
#TOP .event .stayplan-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  margin: 1.2rem 0 4rem;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan-pagination {
    margin: 0.6rem 0 2rem;
  }
}
#TOP .event .stayplan-pagination span.swiper-pagination-bullet {
  display: block;
  width: 1.6rem;
  height: auto;
  aspect-ratio: 1;
  margin: 0;
  background-color: #fff;
  opacity: 1;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}
@media only screen and (max-width: 768px) {
  #TOP .event .stayplan-pagination span.swiper-pagination-bullet {
    width: 1.2rem;
  }
}
#TOP .event .stayplan-pagination span.swiper-pagination-bullet-active {
  background-color: #ec6800;
}
#TOP .access {
  background-color: #fff5ba;
}
#TOP .access .layout-001 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#TOP .access .layout-001__img {
  width: 52.8rem;
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__img {
    width: 100%;
    margin-bottom: 24px;
  }
}
#TOP .access .layout-001__img h3 {
  font-size: 2.4rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__img h3 {
    font-size: 2rem;
  }
}
#TOP .access .layout-001__img p {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__img p {
    margin-top: 1.6rem;
    font-size: 1.6rem;
  }
}
#TOP .access .layout-001__img p a {
  text-decoration: underline;
  color: #ec6800;
}
#TOP .access .layout-001__img p a:hover, #TOP .access .layout-001__img p a:active {
  text-decoration: none;
}
#TOP .access .layout-001__img .swiper-contents {
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__img .swiper-contents {
    margin-top: 2rem;
  }
}
#TOP .access .layout-001__img .swiper-slide img {
  display: block;
}
#TOP .access .layout-001__img .swiper-slide figcaption {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__img .swiper-slide figcaption {
    margin-top: 1rem;
    font-size: 1.6rem;
  }
}
#TOP .access .layout-001__img .swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  margin-top: 1.5rem;
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__img .swiper-pagination {
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
    margin-top: 1rem;
  }
}
#TOP .access .layout-001__img .swiper-pagination span {
  width: 1.4rem;
  height: auto;
  aspect-ratio: 1;
  margin: 0 !important;
  opacity: 1;
  background-color: #fff;
  -webkit-transition: background-color 1s;
  transition: background-color 1s;
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__img .swiper-pagination span {
    width: 1.2rem;
  }
}
#TOP .access .layout-001__img .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #ec6800;
}
#TOP .access .layout-001__info {
  width: calc(100% - 55.2rem);
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__info {
    width: 100%;
    font-size: 1.4rem;
  }
}
#TOP .access .layout-001__info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 2.4rem;
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__info dl {
    row-gap: 1.2rem;
  }
}
#TOP .access .layout-001__info dl dt {
  width: 13.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__info dl dt {
    width: 12rem;
  }
}
#TOP .access .layout-001__info dl dd {
  width: calc(100% - 13.6rem);
}
@media only screen and (max-width: 768px) {
  #TOP .access .layout-001__info dl dd {
    width: calc(100% - 12rem);
  }
}
#TOP .caution ul {
  width: 100%;
  max-width: 93rem;
  margin: 0 auto;
  padding-left: 3rem;
}
@media only screen and (max-width: 768px) {
  #TOP .caution ul {
    padding-left: 2.4rem;
  }
}
#TOP .caution ul li {
  list-style-type: disc;
}
@media only screen and (max-width: 768px) {
  #TOP .caution ul li {
    font-size: 1.4rem;
  }
}
#TOP .subscription {
  background-color: #fff5ba;
}
#TOP .subscription .flow-001 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  #TOP .subscription .flow-001 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5rem;
    margin-bottom: 4rem;
  }
}
#TOP .subscription .flow-001__item {
  width: calc((100% - 16rem) / 3);
  position: relative;
  padding: 4.2rem 2.2rem 2.6rem;
  border-radius: 2rem;
  background-color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #TOP .subscription .flow-001__item {
    width: 100%;
    padding: 2rem;
  }
}
#TOP .subscription .flow-001__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  right: auto;
  -webkit-transform: translate(1.75rem, -50%);
          transform: translate(1.75rem, -50%);
  display: block;
  width: 4.5rem;
  height: auto;
  aspect-ratio: 1;
  border: none;
  background: transparent url(../img/top/icon_flow.png) center/contain no-repeat;
}
@media only screen and (max-width: 768px) {
  #TOP .subscription .flow-001__item:not(:last-child)::before {
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 1rem) rotate(90deg);
            transform: translate(-50%, 1rem) rotate(90deg);
    width: 3rem;
  }
}
#TOP .subscription .flow-001__item:nth-child(1) img {
  width: 19.7rem;
}
@media only screen and (max-width: 768px) {
  #TOP .subscription .flow-001__item:nth-child(1) img {
    width: 9.8rem;
  }
}
#TOP .subscription .flow-001__item:nth-child(2) img, #TOP .subscription .flow-001__item:nth-child(3) img {
  width: 8.1rem;
}
@media only screen and (max-width: 768px) {
  #TOP .subscription .flow-001__item:nth-child(2) img, #TOP .subscription .flow-001__item:nth-child(3) img {
    width: 4rem;
  }
}
#TOP .subscription .flow-001__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 5.4rem;
  margin-bottom: 3.2rem;
}
@media only screen and (max-width: 768px) {
  #TOP .subscription .flow-001__img {
    height: 2.7rem;
    margin-bottom: 2rem;
  }
}
#TOP .subscription .flow-001__step {
  margin-bottom: 3.6rem;
  line-height: 1;
  text-align: left;
  font-weight: bold;
  font-size: 2.4rem;
  color: #ec6800;
}
@media only screen and (max-width: 768px) {
  #TOP .subscription .flow-001__step {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
#TOP .subscription .flow-001__ttl {
  margin-bottom: 1.2rem;
  font-weight: bold;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  #TOP .subscription .flow-001__ttl {
    margin-bottom: 1rem;
    font-size: 1.8rem;
  }
}
#TOP .subscription .btn-002 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 46.4rem;
  height: 8.8rem;
  margin: 0 auto;
  border: 0.2rem solid #ec6800;
  border-radius: 8.8rem;
  background-color: #ec6800;
  line-height: 1;
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #TOP .subscription .btn-002 {
    width: 100%;
    height: 6rem;
    font-size: 2.4rem;
  }
}
#TOP .subscription .btn-002:hover {
  background-color: #fff;
  color: #ec6800;
}
#TOP .subscription .btn-002:hover::after {
  border-color: #ec6800;
}
#TOP .subscription .icon-arrow-001 {
  position: relative;
  -webkit-box-shadow: 0rem 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
          box-shadow: 0rem 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}
#TOP .subscription .icon-arrow-001::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2rem;
  display: block;
  width: 0.6rem;
  aspect-ratio: 1;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
#TOP .staff-table {
  max-width: 100%;
  margin: -1rem auto;
}
@media only screen and (max-width: 768px) {
  #TOP .staff-table {
    margin: -0.5rem 0;
  }
}
#TOP .staff-table td, #TOP .staff-table th {
  padding: 1rem 0;
  vertical-align: top;
  line-height: 4rem;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  #TOP .staff-table td, #TOP .staff-table th {
    padding: 0.5rem 0;
    line-height: 2rem;
  }
}
#TOP .staff-table th {
  width: 10.8rem;
  font-weight: 700;
  font-size: 2.4rem;
  color: #ec6800;
}
@media only screen and (max-width: 768px) {
  #TOP .staff-table th {
    width: 6rem;
    font-size: 1.6rem;
  }
}
#TOP .staff-table td {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  #TOP .staff-table td {
    font-size: 1.4rem;
  }
}

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

@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
#POST {
  background-color: #ffd253;
}
#POST .post .sec-in {
  padding: 4rem 2rem;
  border-radius: 2.4rem;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  #POST .post .sec-in {
    border-radius: 2rem;
  }
}
#POST .post-inner {
  max-width: 98rem;
  margin: 0 auto;
  padding: 0 2rem;
}
#POST .post-inner h2 {
  margin-bottom: 4rem;
  line-height: 1;
  font-size: 2.4rem;
  color: #ec6800;
}
@media only screen and (max-width: 768px) {
  #POST .post-inner h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
#POST .post-header {
  margin-bottom: 4.8rem;
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid #000;
}
@media only screen and (max-width: 768px) {
  #POST .post-header {
    margin-bottom: 3.6rem;
    padding-bottom: 1.8rem;
  }
}
#POST .post-header h3 {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  #POST .post-header h3 {
    font-size: 1.8rem;
  }
}
#POST .post-header time {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  #POST .post-header time {
    font-size: 1.2rem;
  }
}
#POST .post .article {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  #POST .post .article {
    margin-bottom: 4rem;
  }
}
#POST .post .article > * {
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 768px) {
  #POST .post .article > * {
    margin-bottom: 2rem;
  }
}
#POST .post .btn-002 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 23.2rem;
  height: 4.4rem;
  margin: 0 auto;
  border: 0.2rem solid #ec6800;
  border-radius: 4.4rem;
  background-color: #ec6800;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  #POST .post .btn-002 {
    height: 3rem;
    font-size: 1.4rem;
  }
}
#POST .post .btn-002:hover {
  background-color: #fff;
  color: #ec6800;
}
#POST .post .btn-002:hover::after {
  border-color: #ec6800;
}/*# sourceMappingURL=style.css.map */