@charset "UTF-8";
@font-face {
  font-family: "my-font";
  src: url(../font/Butler_Regular.otf) format("opentype");
  font-display: swap;
}
html {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  word-break: phrase-all;
}
@media screen and (min-width: 600px) {
  html {
    font-size: 16px;
  }
}

h1 {
  font-family: "my-font";
  font-weight: 400;
}

h2 {
  font-weight: 400;
  line-height: 1;
}

h3 {
  color: #B48D14;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  h3 {
    font-size: 18px;
  }
}

a {
  text-decoration: none;
  color: white;
}
a:hover {
  text-decoration: underline;
}

p {
  line-height: 1.75;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  color: white;
  word-break: auto-phrase;
  background-color: #000;
  transition: background-color 0.5s, color 0.5s;
}
body canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
  max-width: 100%;
}

.container {
  margin: 80px auto 0;
  max-width: 100%;
  position: relative;
  min-height: 80svh;
}
@media screen and (min-width: 600px) {
  .container {
    margin: 160px auto 0;
  }
}
.container-rec {
  margin: 0 auto;
  max-width: 100%;
  min-height: 80svh;
}

.sp {
  display: block;
}
@media screen and (min-width: 600px) {
  .sp {
    display: none;
  }
}

.sm {
  display: none;
}
@media screen and (max-width: 375px) {
  .sm {
    display: block;
  }
}

.contents {
  position: relative;
  max-width: 95%;
  margin: 3rem auto 5rem;
}
@media screen and (min-width: 600px) {
  .contents {
    max-width: 70%;
  }
}
.contents__wrapper {
  margin-top: 5rem;
}
.contents__title {
  position: relative;
  margin: 5rem auto 2rem 3.5rem;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .contents__title {
    margin: 5rem auto 1rem;
    padding: 0;
  }
}
.contents__title-contact {
  margin: 1rem auto !important;
}
.contents__title-rec {
  margin: 0 auto;
  position: absolute;
  top: calc(60px + 5rem);
  left: 15%;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  .contents__title-rec {
    top: calc(100px + 5rem);
    left: 8%;
  }
}
.contents__title-inner {
  width: 80%;
}
.contents__title-deco {
  position: absolute;
}
.contents__title-deco-page {
  animation: 1s fadeDownAnime forwards;
}
.contents__title-deco-01 {
  opacity: 0;
  top: -2rem;
  left: -3rem;
  animation-delay: 0.2s;
}
.contents__title-deco-02 {
  opacity: 0;
  top: -5rem;
  left: -1.5rem;
}
.contents__title-circle {
  position: absolute;
  left: -8rem;
  top: -15rem;
  z-index: -1;
  width: 240px;
  height: 240px;
  background: transparent;
  border: 1px solid rgba(180, 141, 20, 0.2745098039);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: expansion-anim 1.5s ease-out;
  animation-fill-mode: forwards;
  opacity: 0.3;
}
@media screen and (min-width: 600px) {
  .contents__title-circle {
    width: 360px;
    height: 360px;
  }
}
.contents__title-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 12px;
}
@media screen and (min-width: 600px) {
  .contents__title-text {
    font-size: 1.25rem;
  }
}
.contents__title-text > h3 {
  line-height: 1;
}
.contents__title-text-black {
  color: #000;
}
.contents__title-en {
  color: white;
  font-size: 2.5rem;
  font-family: "my-font";
  font-weight: 400;
}
@media screen and (min-width: 600px) {
  .contents__title-en {
    font-size: 3rem;
  }
}
.contents__title-en-black {
  color: black;
  font-size: 2.5rem;
  font-family: "my-font";
  font-weight: 400;
}
@media screen and (min-width: 960px) {
  .contents__title-en-black {
    font-size: 3rem;
  }
}
.contents__title-en-page {
  font-size: 2.5rem;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .contents__title-en-page {
    font-size: 5rem;
    line-height: 0.8;
  }
}
.contents__btn > a {
  color: #F05454;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: right;
  position: relative;
  display: inline-block;
  padding-right: 20px;
}
.contents__btn > a:after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #F05454;
  border-right: solid 2px #F05454;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.contents__btn > a:hover::before {
  content: "";
  /*絶対配置で波形の位置を決める*/
  position: absolute;
  right: 15%;
  top: -60%;
  /*波形の形状*/
  background-color: #F05454;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /*はじめは不透明*/
  opacity: 1;
  /*アニメーションの設定*/
  animation: 0.5s circleanime2 forwards;
}
.contents__contact {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .contents__contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.contents__contact-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 2px solid #D5D5D5;
  background-color: #fff;
  padding: 2.5rem 1rem;
}
.contents__contact-item:hover {
  background-color: #d5d5d5;
  text-decoration: none;
}
.contents__contact-item-text {
  margin-left: 2.5rem;
}
.contents__contact-item-text > a {
  margin-top: 1.5rem;
  display: block;
}
@media screen and (min-width: 960px) {
  .contents__contact-item-text > a {
    display: none;
  }
}
.contents__contact-item-text-title {
  position: relative;
  font-size: 2.5rem;
  background: linear-gradient(0deg, #056B7C, #9AD7E3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  padding-top: 1.5rem;
  display: none;
}
@media screen and (min-width: 960px) {
  .contents__contact-item-text-title {
    display: block;
  }
}
.contents__contact-item-text-title:before {
  content: "";
  width: 1rem;
  border: 0;
  border-top: solid 2px #B48D14;
  position: absolute;
  top: 0;
  left: 0;
}
.contents__contact-item-img {
  display: none;
}
@media screen and (min-width: 960px) {
  .contents__contact-item-img {
    display: block;
  }
}
.contents__contact-item-img-sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .contents__contact-item-img-sp {
    display: none;
  }
}
.contents__table {
  max-width: 960px;
  margin: 2rem auto;
}
.contents__table > table > tbody > tr {
  border-top: 1px solid #B48D14;
  border-bottom: 1px solid #B48D14;
}
.contents__table > table > tbody > tr > td {
  padding: 1rem 0 1rem 2rem;
  border: none;
}
.contents__ptable {
  max-width: 960px;
  margin: 2rem 0;
}
.contents__ptable > table > tbody > tr {
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
}
.contents__ptable > table > tbody > tr:nth-child(1) {
  border-top: none;
  border-bottom: 1px solid #cdcdcd;
}
.contents__ptable > table > tbody > tr > td {
  padding: 1rem 0 1rem 2rem;
  border: none;
}

@keyframes expansion-anim {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(2);
    opacity: 1;
  }
}
.page__title {
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 0;
}
@media screen and (min-width: 600px) {
  .page__title {
    padding: 5rem 0;
  }
}
.page__title-head {
  background: linear-gradient(0deg, rgb(54, 152, 168), rgb(180, 253, 216));
  font-size: 2.5rem;
  text-align: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .page__title-head {
    font-size: 5rem;
  }
}
.page__title-text {
  font-size: 1rem;
  color: #B48D14;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .page__title-text {
    font-size: 1.5rem;
  }
}

.htitle > h2 {
  font-size: 2rem;
}
.htitle > p {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
}
.htitle .catch:before {
  border-top: 1px solid;
  content: "";
  width: 3em; /* 線の長さ */
}
.htitle .catch:before {
  margin-right: 1em; /* 文字の右隣 */
}

/*波形が広がるアニメーション*/
@keyframes circleanime2 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}
.aioseo-breadcrumbs {
  margin: 0.5rem auto 0;
  width: 95%;
}
@media screen and (min-width: 600px) {
  .aioseo-breadcrumbs {
    width: 80%;
  }
}

.aioseo-breadcrumb {
  color: white;
  padding-right: 0.5rem;
  position: relative;
  z-index: 2;
}
.aioseo-breadcrumb:nth-child(n+2) {
  padding: 0 0.5rem;
}
.aioseo-breadcrumb > a {
  text-decoration: none;
  color: white;
}

.policy {
  color: #000;
}
.policy__cont {
  margin: 3rem 0;
  background-color: white;
  padding: 5rem 1rem;
  color: #000;
}
.policy__inner {
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .policy__inner {
    width: 80%;
  }
}
.policy__text {
  margin-bottom: 5rem;
}
.policy__title {
  font-size: 1.25rem;
  color: #000;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #B48D14;
  margin: 2rem 0 1rem;
  line-height: 1.5;
}

.pagination {
  text-align: center;
}

.nav-links .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.nav-links a.page-numbers,
.nav-links .current,
.nav-links a.prev,
.nav-links a.next,
.nav-links .dots {
  text-align: center;
  line-height: 50px;
  margin-right: 25px;
  font-size: 20px;
}

.nav-links .current {
  padding: 0;
  border-bottom: 1px solid #B48D14;
  font-weight: bold;
}

.nav-links .dots {
  background: transparent;
  border: none;
}

.nav-links a.prev {
  background-image: url(../img/arrow-prev.svg);
  width: 80px;
  height: 50px;
  border-radius: 0;
  -o-object-fit: fill;
     object-fit: fill;
  border: none;
  margin-right: 2.5rem;
}

.nav-links a.next {
  background-image: url(../img/arrow-next.svg);
  width: 80px;
  height: 50px;
  border-radius: 0;
  -o-object-fit: fill;
     object-fit: fill;
  border: none;
  margin-left: 2.5rem;
}

.fixed-item {
  position: fixed;
  top: 45%;
  rotate: 90deg;
  z-index: 25;
  display: none;
}
@media screen and (min-width: 960px) {
  .fixed-item {
    right: calc(0% - 8rem);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
.fixed-item > p {
  margin-right: 3rem;
  font-weight: bold;
}
.fixed-item > a {
  rotate: -90deg;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 555;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.loader .txt {
  font-size: 45px;
  font-weight: bold;
  color: rgb(30, 50, 93);
}

/* スクロール禁止用クラス */
.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.invisible-style {
  background-color: transparent !important;
}

.sp-invisible {
  display: none;
}
@media screen and (min-width: 600px) {
  .sp-invisible {
    display: block;
  }
}

.sp-visible {
  display: block;
}
@media screen and (min-width: 600px) {
  .sp-visible {
    display: none;
  }
}

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  margin: 0 auto;
}

.accordion-area li {
  margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

.accordion-area-faq {
  border: none !important;
  border-bottom: 1px solid #ccc !important;
}

/*アコーディオンタイトル*/
.accordion__title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 0.5rem 2.5rem 0.5rem 0.5rem;
  transition: all 0.5s ease;
  color: #000;
  font-size: 1rem;
}
@media screen and (min-width: 600px) {
  .accordion__title {
    padding: 3% 3rem 3% 3%;
    font-size: 1.25rem;
  }
}
.accordion__title > span {
  color: #B48D14;
  font-size: 2rem;
  padding-right: 0.5rem;
}

/*アイコンの＋と×*/
.accordion__title::before,
.accordion__title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #B48D14;
}

.accordion__title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}

.accordion__title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.accordion__title.close::before {
  transform: rotate(45deg);
}

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

/*アコーディオンで現れるエリア*/
.accordion__box {
  display: none; /*はじめは非表示*/
  margin: 0 2% 2% 2%;
  padding: 0.5rem;
}

body {
  transition: background-color 2s ease, color 2s ease;
}

.fv {
  position: relative;
  margin: 0 auto;
  min-height: 100vh;
}
.fv__slider {
  display: none;
  width: 100%;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .fv__slider {
    display: block;
  }
}
.fv__slider:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #333; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.fv__slider-img {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.9;
}
@media screen and (min-width: 960px) {
  .fv__slider-img {
    opacity: 0.8;
  }
}
.fv__slider-img-first {
  animation-name: animationZoomout;
  animation-delay: 1s;
  animation-duration: 4s;
}
.fv__slider-text {
  position: absolute;
  bottom: 60%;
  left: 2%;
  padding: 1rem;
  border-left: 1px solid #fff;
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s ease;
  font-size: 1rem;
  display: none;
}
@media screen and (min-width: 960px) {
  .fv__slider-text {
    padding: 1rem 2rem;
    bottom: 30%;
    left: 5%;
    font-size: 1rem;
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .fv__slider-text {
    padding: 1rem 2rem;
    bottom: 10%;
    left: 5%;
  }
}
.fv__slider-text > h2 {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 600px) {
  .fv__slider-text > h2 {
    font-size: 1.75rem;
  }
}
.fv__slider-text > p {
  font-weight: 800;
}
.fv__slider-sp {
  width: 100%;
  padding: 0;
  display: block;
  max-height: 100vh;
}
@media screen and (min-width: 960px) {
  .fv__slider-sp {
    display: none;
  }
}
.fv__slider-sp-img {
  width: 100%;
  height: auto;
  max-height: 100vh;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
}
.fv__title {
  position: absolute;
  bottom: 10%;
  right: 5%;
  z-index: 10;
}
.fv__title > h1 {
  font-size: 2.5rem;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-align: end;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 600px) {
  .fv__title > h1 {
    font-size: 3.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .fv__title > h1 {
    font-size: 5rem;
  }
}
.fv__title > p {
  font-family: "my-font";
}

.fv__slider-text.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes animationZoomout {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.slick-dotted.slick-slider {
  margin: 0;
}

.slick-prev {
  display: none !important;
}

.company {
  position: relative;
  display: none;
}
@media screen and (min-width: 960px) {
  .company {
    display: block;
  }
}
.company__title {
  margin-bottom: 1rem;
}
@media screen and (min-width: 960px) {
  .company__title {
    margin: 0 0 5rem 2rem;
  }
}
@media screen and (min-width: 1280px) {
  .company__title {
    margin: 0 0 5rem 5rem;
  }
}
.company__cont {
  width: 80%;
  margin: 10rem auto;
  padding: 2rem 0 8rem;
}
@media screen and (min-width: 600px) {
  .company__cont {
    width: 70%;
  }
}
@media screen and (min-width: 960px) {
  .company__cont {
    width: 90%;
  }
}
.company__item {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.company__item-wrap {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 960px) {
  .company__item-wrap {
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}
.company__item-text {
  width: -moz-max-content;
  width: max-content;
}
.company__item-text > h4 {
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid white;
  padding-bottom: 0.5rem;
  color: #B48D14;
  line-height: 1.3;
}
@media screen and (min-width: 1280px) {
  .company__item-text > h4 {
    font-size: 1.375rem;
  }
}
.company__item-text > p {
  font-weight: bold;
  line-height: 1.3;
  font-size: 14px;
}
.company__item-text-01 {
  position: relative;
}
@media screen and (min-width: 960px) {
  .company__item-text-01 {
    position: absolute;
    top: -5%;
    left: -8%;
  }
}
@media screen and (min-width: 1280px) {
  .company__item-text-01 {
    position: absolute;
    top: 5%;
    left: -20%;
  }
}
.company__item-text-02 {
  position: relative;
}
@media screen and (min-width: 960px) {
  .company__item-text-02 {
    position: absolute;
    top: 60%;
    left: -25%;
  }
}
@media screen and (min-width: 1280px) {
  .company__item-text-02 {
    position: absolute;
    top: 60%;
    left: -40%;
  }
}
.company__item-text-03 {
  position: relative;
}
@media screen and (min-width: 960px) {
  .company__item-text-03 {
    position: absolute;
    top: 100%;
    left: -5%;
  }
}
@media screen and (min-width: 1280px) {
  .company__item-text-03 {
    position: absolute;
    top: 90%;
    left: -10%;
  }
}
.company__item-text-04 {
  position: relative;
}
@media screen and (min-width: 960px) {
  .company__item-text-04 {
    position: absolute;
    top: 100%;
    right: -28%;
  }
}
@media screen and (min-width: 1280px) {
  .company__item-text-04 {
    position: absolute;
    top: 90%;
    right: -40%;
  }
}
.company__item-text-05 {
  position: relative;
}
@media screen and (min-width: 960px) {
  .company__item-text-05 {
    position: absolute;
    top: 55%;
    right: -28%;
  }
}
@media screen and (min-width: 1280px) {
  .company__item-text-05 {
    position: absolute;
    top: 55%;
    right: -45%;
  }
}
.company__item-text-06 {
  position: relative;
}
@media screen and (min-width: 960px) {
  .company__item-text-06 {
    position: absolute;
    top: -5%;
    right: -30%;
  }
}
@media screen and (min-width: 1280px) {
  .company__item-text-06 {
    position: absolute;
    top: 5%;
    right: -42%;
  }
}
.company__item-text-07 {
  position: relative;
}
@media screen and (min-width: 960px) {
  .company__item-text-07 {
    position: absolute;
    top: -45%;
    left: 45%;
  }
}
@media screen and (min-width: 1280px) {
  .company__item-text-07 {
    position: absolute;
    top: -25%;
    left: 45%;
  }
}
.company__item-img {
  display: none;
}
@media screen and (min-width: 960px) {
  .company__item-img {
    display: block;
    margin-left: 4rem;
    width: 50%;
    height: auto;
  }
}
@media screen and (min-width: 1280px) {
  .company__item-img {
    width: 75%;
    margin-left: 10rem;
  }
}
.company__item-img-sp {
  display: block;
  margin: 0 auto;
  height: auto;
}
@media screen and (min-width: 960px) {
  .company__item-img-sp {
    display: none;
  }
}
.company__item-post {
  width: 18px;
  height: 100%;
  background-image: linear-gradient(180deg, rgb(248, 226, 130) 10%, rgb(180, 141, 20) 90%);
}
@media screen and (min-width: 600px) {
  .company__item-post {
    width: 30px;
  }
}
.company__item-post-01 {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 600px) {
  .company__item-post-01 {
    left: 2%;
  }
}
.company__item-post-02 {
  position: absolute;
  top: 0;
  right: 0;
  animation-delay: 0.5s;
}
@media screen and (min-width: 600px) {
  .company__item-post-02 {
    right: 2%;
  }
}
.company__btn {
  text-align: end;
  margin: 0 1.5rem 0 auto;
}

.topic {
  width: 90%;
  margin: 3rem auto 0;
  padding: 3rem 0;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .topic {
    flex-direction: row;
    margin: 5rem auto 0;
    padding: 10rem 0;
  }
}
.topic__list {
  width: 100%;
}
.topic__list-link:hover {
  text-decoration: none;
}
.topic__list-link:hover > h3 {
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px;
}
.topic__list-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 1.5rem 0;
}
@media screen and (min-width: 960px) {
  .topic__list-item {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    gap: 0.25rem;
    margin: 2.5rem 0;
  }
}
.topic__list-item:nth-child(1) {
  margin: 0 0 1.5rem;
}
@media screen and (min-width: 960px) {
  .topic__list-item:nth-child(1) {
    margin: 0 0 2.5rem;
  }
}
.topic__list-item-upper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}
.topic__list-item > h3 {
  padding: 0.25rem;
  font-size: 1rem;
  line-height: 1.2;
  color: #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 960px) {
  .topic__list-item > h3 {
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: bottom right; /* 下線の初期位置 */
    background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
    transition: background-size 0.5s;
    border-bottom: none;
    padding: 0.5rem 0.25rem;
    font-size: 1rem;
  }
}
.topic__list-item > img {
  margin-bottom: 1rem;
}
.topic__list-item > p {
  font-size: 1rem;
  line-height: 1.2;
}
.topic__list-item-cat {
  border: solid 1px white;
  padding: 0.125rem 0.5rem;
  font-size: 10px;
}
@media screen and (min-width: 600px) {
  .topic__list-item-cat {
    padding: 0.25rem 1rem;
    font-size: 12px;
  }
}
.topic__cont {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .topic__cont {
    width: 70%;
  }
}
.topic__link {
  display: flex;
  justify-content: flex-end;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 3rem 0 auto;
  padding-bottom: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  background-image: linear-gradient(#F8E282, #B48D14);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 2px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.5s;
}
.topic__link:hover {
  text-decoration: none;
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 2px;
}

.group {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0 0;
}
@media screen and (min-width: 600px) {
  .group {
    padding: 15rem 0 3rem;
    margin: 0 auto 5rem;
  }
}
.group__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 1rem auto;
  gap: 1rem;
  width: 95%;
}
@media screen and (min-width: 960px) {
  .group__inner {
    margin: 2rem 0 0;
    gap: 1rem;
    padding-right: 2rem;
    width: auto;
  }
}
@media screen and (min-width: 1280px) {
  .group__inner {
    margin: 5rem 0 0;
    gap: 2rem;
  }
}
.group__inner > h3 {
  position: absolute;
  top: 3rem;
  left: 5%;
  padding-left: 1rem;
  border-left: 1px solid #B48D14;
  font-size: 2rem;
  color: black;
  line-height: 1.2;
  font-weight: 600;
}
@media screen and (min-width: 600px) {
  .group__inner > h3 {
    position: relative;
    top: 0;
    left: 0;
  }
}
@media screen and (min-width: 1280px) {
  .group__inner > h3 {
    font-size: 2.5rem;
  }
}
.group__inner > p {
  color: #000;
  font-size: 12px;
  line-height: 1.5;
}
@media screen and (min-width: 1280px) {
  .group__inner > p {
    font-size: 16px;
  }
}
.group__wrapper {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .group__wrapper {
    display: grid;
    width: 95%;
    grid-template-columns: 1.3fr 1fr;
  }
}
.group__wrapper > h3 {
  position: absolute;
  top: 1rem;
  left: 5%;
  padding-left: 1rem;
  border-left: 1px solid #B48D14;
  font-size: 1.5rem;
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.862745098);
}
.group__fixed-area {
  position: relative;
}
.group__container {
  position: relative;
  width: 100%;
}
.group__container-sec01 > img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 600px) {
  .group__container-sec01 > img {
    height: 320px;
  }
}
@media screen and (min-width: 960px) {
  .group__container-sec01 > img {
    height: auto;
    max-height: 80vh;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
  }
}
.group__container-sec02 > img {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.group__container-sec03 > img {
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.group__link {
  color: #000;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 600px) {
  .group__link {
    margin: 0 3rem 0 auto;
    height: auto;
  }
}

.top-fixed {
  position: relative; /*sticky解除*/
  top: 0; /*70px⇒0pxに戻す*/
  background-color: #fff;
  margin: 1rem auto;
}
@media screen and (min-width: 600px) {
  .top-fixed {
    margin: 5rem auto 25rem;
  }
}
.top-fixed:first-of-type {
  padding: 0;
  background-color: transparent;
}
@media screen and (min-width: 1280px) {
  .top-fixed:first-of-type {
    padding: 100px 1rem 0;
  }
}
.top-fixed:last-of-type {
  margin: 3rem auto;
}
@media screen and (min-width: 600px) {
  .top-fixed:last-of-type {
    margin: 5rem auto;
  }
}
@media screen and (min-width: 600px) {
  .top-fixed { /*Safari*/
    position: sticky;
    top: 0; /*Header高さ分で止まるようにする*/
    padding: 5rem 1rem 0; /*デモ画面の高さを持たすための上下余白*/
  }
  .top-fixed:last-of-type {
    padding-top: 80px 1rem 0;
  }
}

.section03 {
  position: relative;
  z-index: 1;
}

.about {
  width: 90%;
  margin: 2rem auto 0;
  padding: 2rem 0;
}
@media screen and (min-width: 600px) {
  .about {
    width: 80%;
    margin: 5rem auto 0;
  }
}
.about__cont {
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .about__cont {
    flex-direction: row;
  }
}
.about__item {
  position: relative;
  font-size: 1.25rem;
}
.about__item-img {
  width: 100%;
  -o-object-position: 50% 10%;
     object-position: 50% 10%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 200px;
}
@media screen and (min-width: 600px) {
  .about__item-img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 960px) {
  .about__item-img {
    height: auto;
  }
}
.about__item-arrow {
  position: absolute;
  bottom: 20%;
  right: 5%;
}
@media screen and (min-width: 600px) {
  .about__item-arrow {
    bottom: 10%;
    right: 5%;
  }
}
.about__item:hover {
  opacity: 0.7;
  text-decoration: none;
}
.about__item > p {
  text-decoration: underline;
}
@media screen and (min-width: 600px) {
  .about__item > p {
    text-decoration: none;
  }
}

.service {
  width: 90%;
  margin: 3rem auto 0;
}
@media screen and (min-width: 960px) {
  .service {
    width: 80%;
    margin: 5rem auto 0 5%;
    padding: 2rem 0;
  }
}
.service__title {
  width: 90%;
}
@media screen and (min-width: 600px) {
  .service__title {
    width: 80%;
  }
}
.service__cont {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.service__item-01 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media screen and (min-width: 960px) {
  .service__item-01 {
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
  }
}
.service__item-01-text {
  max-width: 460px;
}
.service__item-02 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media screen and (min-width: 960px) {
  .service__item-02 {
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
  }
}
.service__item-02-text {
  max-width: 460px;
}
.service__item-img-01 {
  height: auto;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .service__item-img-01 {
    max-width: 950px;
    flex-direction: column;
  }
}
.service__item-img-02 {
  height: auto;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .service__item-img-02 {
    max-width: 750px;
    flex-direction: column;
  }
}
.service__item-img > p {
  color: #B48D14;
  margin-top: 1rem;
}
.service__item-img-03 {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .service__item-img-03 {
    max-width: 100%;
    flex-direction: column;
  }
}
.service__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service__item-text > span {
  font-size: 3.5rem;
  font-family: "my-font";
  color: #B48D14;
  line-height: 1;
}
.service__item-text > h3 {
  color: #fff;
  font-size: 2rem;
}
.service__item-text > a {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}
.service__item-text-img {
  transition: transform 0.6s;
  transition-timing-function: var(--ease);
}
.service__item-text-img:hover {
  transform: translateX(1rem);
}

.recruit {
  position: relative;
  padding: 0.5rem 0;
}
.recruit__inner {
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .recruit__inner {
    padding: 0;
    width: 80%;
  }
}
.recruit__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 30% 0;
     object-position: 30% 0;
  height: 100%;
  display: none;
}
@media screen and (min-width: 600px) {
  .recruit__back {
    display: block;
    -o-object-position: 50% 0;
       object-position: 50% 0;
  }
}
@media screen and (min-width: 960px) {
  .recruit__back {
    -o-object-position: 45% 0;
       object-position: 45% 0;
  }
}
.recruit__back-sp {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (min-width: 600px) {
  .recruit__back-sp {
    display: none;
  }
}
.recruit__cont {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin: 3rem 0;
}
@media screen and (min-width: 960px) {
  .recruit__cont {
    margin-top: 1rem;
  }
}
.recruit__cont-head {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  padding: 0.5rem 1rem 0.5rem 25%;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 0.5rem;
  background-image: linear-gradient(90deg, rgb(0, 0, 0) 10%, rgb(255, 255, 255) 40%);
  color: #000;
}
@media screen and (min-width: 600px) {
  .recruit__cont-head {
    padding: 0.5rem;
    margin-bottom: 0.25rem;
    background-image: none;
    color: #fff;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #000;
    font-size: 2rem;
    background-color: transparent;
  }
}
.recruit__link {
  color: #fff;
  margin: 1rem auto;
}
@media screen and (min-width: 960px) {
  .recruit__link {
    margin: 1rem 0;
    height: auto;
  }
}

.contact {
  padding: 1rem 0 0;
  background-color: #fff;
  color: #000;
  border-top: 2px solid #000;
}
@media screen and (min-width: 960px) {
  .contact {
    padding: 1rem 0 3rem;
  }
}
.contact__inner {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 2rem auto 0;
  padding: 2rem 0;
  position: relative;
}
@media screen and (min-width: 960px) {
  .contact__inner {
    margin: 5rem auto 0;
    flex-direction: row;
    gap: 2rem;
    width: 80%;
    align-items: center;
  }
}
.contact__inner > a {
  position: relative;
  margin: 2rem 0 2rem auto;
}
@media screen and (min-width: 960px) {
  .contact__inner > a {
    margin: 0;
  }
}
.contact__inner > a:hover .contact__arrow-hover {
  visibility: visible;
}
.contact__inner > a:hover .contact__arrow {
  visibility: hidden;
}
.contact__title-head {
  color: #000;
  font-size: 3rem;
}
@media screen and (min-width: 600px) {
  .contact__title-head {
    font-size: 4rem;
  }
}
.contact__arrow {
  position: relative;
  visibility: visible;
  transition: all 0.3s;
}
.contact__arrow-hover {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.next-arrow {
  position: absolute;
  cursor: pointer;
  top: 40%;
  right: 2.5%;
  width: 48px;
  height: 48px;
  background-color: transparent;
  border-radius: 50px;
  border: 1px solid #fff;
  margin: 0.5rem;
  transition-duration: 0.75s;
  animation-timing-function: ease-out;
  z-index: 90;
}
@media screen and (min-width: 600px) {
  .next-arrow {
    top: 35%;
    width: 64px;
    height: 64px;
  }
}
@media screen and (min-width: 1280px) {
  .next-arrow {
    top: 40%;
  }
}
.next-arrow:hover {
  background-color: #B48D14;
  transition-duration: 0.75s;
  animation-timing-function: ease-out;
}
.next-arrow:before {
  content: "next company";
  position: absolute;
  right: 0;
  top: -2rem;
  color: #fff;
  margin: 0 auto;
  font-size: 12px;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 600px) {
  .next-arrow:before {
    left: -0.5rem;
    right: 0;
    top: -2rem;
  }
}
.next-arrow:after {
  content: "→";
  position: absolute;
  left: 14px;
  top: 8px;
  color: #fff;
  margin: 0 auto;
  font-size: 20px;
}
@media screen and (min-width: 600px) {
  .next-arrow:after {
    left: 20px;
    top: 16px;
  }
}
.next-arrow:after:hover {
  color: #B48D14;
}

@keyframes fadeinAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.prev-arrow {
  position: absolute;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 40%;
  left: 2.5%;
  width: 64px;
  height: 64px;
  background-color: transparent;
  border-radius: 50px;
  border: 1px solid #fff;
  margin: 0.5rem;
  transition-duration: 0.75s;
  animation-timing-function: ease-out;
  z-index: 90;
}
@media screen and (min-width: 600px) {
  .prev-arrow {
    top: 35%;
  }
}
@media screen and (min-width: 1280px) {
  .prev-arrow {
    top: 40%;
  }
}
.prev-arrow:hover {
  background-color: #B48D14;
  transition-duration: 0.75s;
  animation-timing-function: ease-out;
  cursor: pointer;
}
.prev-arrow:before {
  content: "prev company";
  position: absolute;
  left: -0.5rem;
  right: 0;
  top: -2rem;
  color: #fff;
  margin: 0 auto;
  font-size: 12px;
  width: -moz-max-content;
  width: max-content;
}
.prev-arrow:after {
  content: "←";
  position: absolute;
  left: 20px;
  top: 16px;
  color: #fff;
  margin: 0 auto;
  font-size: 20px;
}
.prev-arrow:after:hover {
  color: #B48D14;
}

.page-about__fv {
  margin: 2rem 0;
  position: relative;
}
.page-about__fv-img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 2rem;
}
@media screen and (min-width: 960px) {
  .page-about__fv-img {
    margin-bottom: 0;
  }
}
.page-about__fv-menu {
  display: none;
  margin: 0rem 5% 1rem auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 600px) {
  .page-about__fv-menu {
    display: block;
  }
}
.page-about__fv-menu > a {
  padding: 0.5rem 0;
  margin-right: 2rem;
  font-size: 1.25rem;
}
.page-about__fv-menu > a:not(:first-child):before {
  content: " / ";
  color: #B48D14;
  padding-right: 3rem;
}
.page-about__fv-menu > a:hover {
  text-decoration: none;
  color: #B48D14;
}
.page-about__fv-cont {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding: 0 5% 1rem;
  width: 100%;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgb(0, 0, 0) 100%);
}
@media screen and (min-width: 960px) {
  .page-about__fv-cont {
    position: absolute;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    height: 50%;
    bottom: 0;
    left: 0;
    padding: 0 5% 3rem;
  }
}
@media screen and (min-width: 600px) {
  .page-about__fv-item {
    padding-left: 2rem;
    border-left: 1px solid #B48D14;
  }
}
.page-about__fv-item > h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .page-about__fv-item > h2 {
    text-align: start;
    font-size: 1rem;
  }
}
.page-about__fv-item > p {
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .page-about__fv-item > p {
    font-size: 1.5rem;
    text-align: start;
  }
}
.page-about__fv-btn {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .page-about__fv-btn {
    flex-direction: row;
  }
}
.page-about__cont {
  position: relative;
  margin: 3rem auto;
}
@media screen and (min-width: 960px) {
  .page-about__cont {
    margin: 5rem auto;
  }
}
.page-about__cont-info {
  max-width: 95%;
  margin: 2.5rem auto;
  padding: 0;
  white-space: pre-wrap;
}
@media screen and (min-width: 600px) {
  .page-about__cont-info {
    max-width: 70%;
  }
}
.page-about__cont-info-list {
  border-bottom: 1px solid #B48D14;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1rem;
  list-style: none;
  padding: 0.5rem;
  font-size: 1rem;
}
@media screen and (min-width: 600px) {
  .page-about__cont-info-list {
    padding: 1.5rem 5%;
    font-size: 18px;
  }
}
.page-about__cont-info-list > p {
  line-height: 2;
}
.page-about__access {
  width: 90%;
  margin: 3rem auto 0;
  padding: 2rem 0;
}
@media screen and (min-width: 960px) {
  .page-about__access {
    margin: 5rem auto;
  }
}
.page-about__access-cont {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (min-width: 960px) {
  .page-about__access-cont {
    flex-direction: row;
    gap: 5rem;
    justify-content: space-evenly;
  }
}
.page-about__access-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .page-about__access-item {
    width: 40%;
  }
}
.page-about__access-item > h3 {
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .page-about__access-item > h3 {
    margin-bottom: 1rem;
  }
}
.page-about__access-item > p {
  white-space: pre-wrap;
  min-height: 80px;
}
@media screen and (min-width: 600px) {
  .page-about__access-item > p {
    min-height: 100px;
  }
}
.page-about__access-item > iframe {
  width: 100%;
  max-height: 200px;
}
@media screen and (min-width: 600px) {
  .page-about__access-item > iframe {
    height: 400px;
    max-height: 400px;
  }
}
.page-about__group {
  margin: 3rem auto 0;
  padding: 2rem 0;
}
@media screen and (min-width: 960px) {
  .page-about__group {
    margin: 5rem auto;
  }
}
.page-about__group-title {
  width: 90%;
  margin: 1rem auto;
}
.page-about__group-inner {
  margin: 2rem 0;
}
@media screen and (min-width: 960px) {
  .page-about__group-inner {
    margin: 5rem auto;
  }
}
.page-about__group-cont {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .page-about__group-cont {
    flex-direction: row;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.page-about__group-cont-r {
  margin: 2rem auto 4rem;
}
@media screen and (min-width: 960px) {
  .page-about__group-cont-r {
    width: 90%;
    margin: 2rem 0 5rem auto;
  }
}
.page-about__group-cont-l {
  margin: 2rem auto 4rem;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .page-about__group-cont-l {
    flex-direction: row;
    width: 90%;
    margin: 2rem auto 5rem 0;
  }
}
.page-about__group-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 600px) {
  .page-about__group-item {
    width: auto;
    margin: 0;
    gap: 1rem;
  }
}
.page-about__group-item > h3 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
}
@media screen and (min-width: 960px) {
  .page-about__group-item > h3 {
    padding: 1rem 0 1rem 2rem;
    border-left: 1px solid #B48D14;
    font-size: 2.5rem;
  }
}
.page-about__group-list {
  margin: 1rem 0;
}
.page-about__group-list > h4 {
  font-size: 14px;
  font-weight: 400;
  padding-bottom: 0.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #B48D14;
}
.page-about__group-list-text {
  padding-left: 1.5rem;
  font-size: 14px;
}
.page-about__group-list-text > a {
  color: #A4A09D;
  text-decoration: underline;
}
.page-about__group-list-mem {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  gap: 1rem;
}
.page-about__group-list-mem > h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.page-about__group-list-mem-text {
  font-size: 14px;
  line-height: 1.5;
}
.page-about__group-list-mem-text > a {
  color: #A4A09D;
  text-decoration: underline;
}
.page-about__group-img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 960px) {
  .page-about__group-img {
    max-width: 60%;
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.page-ceo {
  width: 95%;
  margin: 3rem auto 0;
  padding: 2rem 0;
}
.page-ceo__cont {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 2rem;
  gap: 1.5rem;
}
@media screen and (min-width: 960px) {
  .page-ceo__cont {
    flex-direction: row;
    justify-content: space-between;
    gap: 3rem;
  }
}
.page-ceo__text {
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .page-ceo__text {
    line-height: 3;
  }
}
.page-ceo__text > p {
  margin-bottom: 2rem;
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .page-ceo__text > p {
    line-height: 2.5;
  }
}
.page-ceo__text-en {
  color: #B48D14;
}
.page-ceo__img {
  position: relative;
  margin: 2rem 0;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .page-ceo__img {
    max-width: 40%;
    height: -moz-fit-content;
    height: fit-content;
    margin: -10rem 0 0;
  }
}
.page-ceo__img-sp {
  display: block;
  margin: 2rem 0;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .page-ceo__img-sp {
    display: none;
  }
}

.page-service {
  margin: 3rem 0;
  padding: 1rem 0;
  background-color: #fff;
}
@media screen and (min-width: 600px) {
  .page-service {
    padding: 5rem 0;
  }
}
.page-service__inner {
  width: 90%;
  margin: 1rem auto 0;
  padding: 2rem 0;
}
@media screen and (min-width: 600px) {
  .page-service__inner {
    margin: 3rem auto 0;
  }
}
.page-service__cont {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 960px) {
  .page-service__cont {
    flex-direction: row;
  }
}
.page-service__img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .page-service__img {
    max-width: 40%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.page-service__text {
  padding: 0 0 0 1rem;
  border-left: #B48D14 solid 1px;
  -o-border-image: linear-gradient(to bottom, #B48E16, #F8E282, #B48E16) 1;
     border-image: linear-gradient(to bottom, #B48E16, #F8E282, #B48E16) 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: black;
}
@media screen and (min-width: 600px) {
  .page-service__text {
    gap: 2rem;
    padding: 0 0 0 2rem;
    border-left: #B48D14 solid 3px;
  }
}
.page-service__text > h2 {
  color: black;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .page-service__text > h2 {
    font-size: 2rem;
  }
}
.page-service__text-title {
  color: #B48D14;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.page-service__text-title > p {
  font-size: 3rem;
  font-family: "my-font";
  line-height: 1;
  font-weight: bold;
}
.page-service__text-title > span {
  font-family: "my-font";
  line-height: 1;
}
.page-service__btn {
  margin: 1rem 0 1rem auto;
  color: #000;
}

.page-business__fv {
  margin: 2rem 0;
  position: relative;
  padding-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  .page-business__fv {
    padding-bottom: 5rem;
  }
}
.page-business__fv-menu {
  display: none;
  margin: 0rem 5% 1rem auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 600px) {
  .page-business__fv-menu {
    display: block;
  }
}
.page-business__fv-menu > a {
  padding: 0.5rem 0;
  margin-right: 2rem;
  font-size: 1.25rem;
}
.page-business__fv-menu > a:not(:first-child):before {
  content: " / ";
  color: #B48D14;
  padding-right: 3rem;
}
.page-business__fv-menu > a:hover {
  text-decoration: none;
  color: #B48D14;
}
.page-business__fv-img {
  padding-bottom: 2rem;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .page-business__fv-img {
    padding-bottom: 10rem;
  }
}
.page-business__fv-cont {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: 90%;
  margin: 0 auto 3rem;
}
@media screen and (min-width: 960px) {
  .page-business__fv-cont {
    position: absolute;
    padding: 0 8%;
    gap: 3rem;
    width: 100%;
    margin: 3rem auto 5rem;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgb(0, 0, 0) 100%);
  }
}
.page-business__fv-item {
  max-width: 100%;
}
@media screen and (min-width: 960px) {
  .page-business__fv-item {
    max-width: 70%;
  }
}
.page-business__fv-item > img {
  height: -moz-fit-content;
  height: fit-content;
}
.page-business__fv-text > h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  text-align: center;
  border-bottom: #B48D14 solid 2px;
  -o-border-image: linear-gradient(to bottom, #B48E16, #F8E282, #B48E16) 1;
     border-image: linear-gradient(to bottom, #B48E16, #F8E282, #B48E16) 1;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .page-business__fv-text > h2 {
    font-size: 2.5rem;
  }
}
.page-business__fv-text > p {
  font-size: 0.875rem;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .page-business__fv-text > p {
    font-size: 1rem;
  }
}
.page-business__wrap {
  background-color: #fff;
}
.page-business__cont {
  color: black;
  background-color: #fff;
}
.page-business__cont-title {
  padding-bottom: 1rem;
  border-bottom: 2px solid #B48D14;
}
.page-business__cont-title > h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  .page-business__cont-title > h2 {
    font-size: 3rem;
  }
}
.page-business__cont-data-title {
  text-align: center;
  color: #B48D14;
  font-size: 1.25rem;
  font-weight: bold;
}
.page-business__cont-data-svg {
  width: 320px !important;
  height: 320px !important;
}
.page-business__cont-data-cont {
  display: flex !important;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .page-business__cont-data-cont {
    flex-direction: row;
  }
}
.page-business__cont-data-item {
  height: 320px !important;
}
.page-business__inner {
  width: 95%;
  margin: 0 auto;
  padding: 1rem 0;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .page-business__inner {
    width: 85%;
    margin: 0 auto;
    padding: 2rem 0;
  }
}
.page-business__achive {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  .page-business__achive {
    gap: 5rem;
    margin: 5rem 0;
  }
}
.page-business__achive-img {
  display: flex;
  align-items: center;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .page-business__achive-img {
    justify-content: center;
  }
}
.page-business__achive-img > img {
  height: auto;
  margin: 0 auto;
  max-width: 45%;
}
@media screen and (min-width: 960px) {
  .page-business__achive-img > img {
    max-width: 30%;
  }
}
.page-business__achive-item {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .page-business__achive-item {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}
.page-business__achive-item > img {
  height: -moz-fit-content;
  height: fit-content;
}
.page-business__achive-item-text > h4 {
  color: #B48D14;
  font-size: 1.25rem;
}
.page-business__achive-item-text-title {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
}
.page-business__achive-item-text-title > h3 {
  font-weight: 600;
  font-size: 1.375rem;
}
.page-business__achive-item-text-title > span {
  font-size: 2.5rem;
  color: #B48D14;
  font-family: "my-font";
  line-height: 1.5;
  font-weight: bold;
  border-bottom: #B48D14 1px solid;
}
@media screen and (min-width: 600px) {
  .page-business__achive-item-text-title > span {
    font-size: 3rem;
  }
}
.page-business__achive02 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3rem;
  margin: 3rem auto;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .page-business__achive02 {
    gap: 5rem;
    margin: 5rem auto;
  }
}
@media screen and (min-width: 1280px) {
  .page-business__achive02 {
    width: 80%;
  }
}
.page-business__achive02-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .page-business__achive02-item {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 2rem;
  }
}
.page-business__achive02-item:nth-child(even) {
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .page-business__achive02-item:nth-child(even) {
    flex-direction: row;
  }
}
.page-business__achive02-item > img {
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 960px) {
  .page-business__achive02-item > img {
    width: 50%;
  }
}
.page-business__achive02-item-text-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}
@media screen and (min-width: 600px) {
  .page-business__achive02-item-text-title {
    margin-bottom: 2rem;
  }
}
.page-business__achive02-item-text-title > h3 {
  font-weight: 600;
  font-size: 1.25rem;
}
@media screen and (min-width: 600px) {
  .page-business__achive02-item-text-title > h3 {
    font-size: 2rem;
  }
}
.page-business__achive02-item-text-title > p {
  color: #B48D14;
}
.page-business__achive02-item-text-title > span {
  font-size: 1rem;
  color: white;
  font-family: "my-font";
  line-height: 1;
  padding: 0.75rem 1rem;
  background-color: #B48D14;
}
.page-business__case {
  position: relative;
  padding: 3cqh 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}
@media screen and (min-width: 600px) {
  .page-business__case {
    margin: 1rem 0;
  }
}
.page-business__case-title {
  position: relative;
  padding-bottom: 1rem;
  border-bottom: 1px solid #B48D14;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.page-business__case-title > h2 {
  font-size: 3rem;
  text-align: center;
}
.page-business__case-title > p {
  text-align: center;
}
.page-business__case-item {
  background-color: white;
  max-width: 100%;
  color: black;
}
@media screen and (min-width: 1280px) {
  .page-business__case-item {
    width: 30%;
  }
}
.page-business__case-item > p {
  line-height: 1.5;
  font-size: 0.75rem;
}
.page-business__case-item-title {
  margin-bottom: 1rem;
  position: relative;
}
.page-business__case-item-title > h3 {
  position: absolute;
  bottom: 0;
  height: 40%;
  height: auto;
  font-size: 1.25rem;
  line-height: 1.5;
  color: white;
  width: 100%;
  padding: 3rem 0.5rem 1rem;
  background-image: linear-gradient(180deg, rgba(180, 141, 20, 0), rgb(180, 141, 20) 100%, rgba(180, 141, 20, 0.5) 30%);
}
.page-business__case-item-title > img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-business__case-item-name {
  margin: 0 0 0 auto;
  color: #A4A09D;
  text-align: end;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1.5rem;
}
.page-business__case-item-name > strong {
  font-size: 1.5rem;
  color: #000;
  text-align: end;
}
.page-business__case-item-mdesc {
  margin: 2rem 0;
  padding: 0;
}
@media screen and (min-width: 600px) {
  .page-business__case-item-mdesc {
    padding: 0 1rem;
  }
}
.page-business__case-item-mdesc > h4 {
  position: relative;
  padding: 0 0 1rem 2rem;
  color: #B48D14;
  border-bottom: 1px solid #B48D14;
  font-size: 1.25rem;
}
.page-business__case-item-mdesc > h4::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  font-family: "my-font";
  color: #B48D14;
}
.page-business__case-btn {
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-business__flow {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}
@media screen and (min-width: 600px) {
  .page-business__flow {
    margin: 3rem 0;
  }
}
.page-business__flow-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem 0;
  max-width: 47%;
}
@media screen and (min-width: 1280px) {
  .page-business__flow-item {
    width: 24%;
  }
}
.page-business__flow-item > p {
  line-height: 1.5;
  min-height: 3rem;
}
.page-business__flow-item > img {
  height: auto;
}
.page-business__flow-item-title {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.page-business__flow-item-title > span {
  font-size: 2rem;
  font-family: "my-font";
  color: #B48D14;
  line-height: 1;
}
.page-business__flow-item-title > h3 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  color: black;
}
.page-business__agree {
  width: 95%;
  margin: 2rem auto;
}
@media screen and (min-width: 960px) {
  .page-business__agree {
    width: 80%;
  }
}
.page-business__agree-item {
  margin: 2rem auto 3rem;
  display: flex;
  gap: 1.5rem;
  flex-direction: column;
}
.page-business__agree-item > h3 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  color: black;
}
.page-business__agree-item > img {
  width: 100%;
  height: auto;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #f4f4f4;
  margin: 15% auto;
  width: 90%;
  height: 70vh;
  overflow-y: scroll;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  animation-name: modalopen;
  animation-duration: 1s;
}
@media screen and (min-width: 600px) {
  .modal-content {
    margin: 10% auto;
    width: 70%;
    height: 70vh;
  }
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.modal-header {
  padding: 3px 15px;
  display: flex;
  justify-content: flex-end;
}

.modalClose {
  font-size: 2rem;
}

.modalClose:hover {
  cursor: pointer;
}

.modal-body {
  padding: 1rem;
  color: black;
}
@media screen and (min-width: 600px) {
  .modal-body {
    padding: 1rem 2rem;
  }
}

.page-member {
  width: 90%;
  margin: 3rem auto 0;
  padding: 2rem 0;
}
.page-member__cont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 95%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .page-member__cont {
    display: flex;
    flex-direction: column;
    width: 70%;
    max-width: 960px;
    gap: 2rem;
  }
}
.page-member__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .page-member__item {
    gap: 2rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.page-member__item:nth-child(even) {
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .page-member__item:nth-child(even) {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
  }
}
.page-member__item:hover {
  background-color: rgba(248, 226, 130, 0.1176470588);
  text-decoration: none;
}
.page-member__item-img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .page-member__item-img {
    width: auto;
  }
}
.page-member__item-text {
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.25rem;
}
@media screen and (min-width: 960px) {
  .page-member__item-text {
    gap: 1rem;
    padding: 1rem;
  }
}
.page-member__item-text-cat {
  border: 1px solid #B48D14;
  color: #000;
  padding: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 10px;
}
@media screen and (min-width: 960px) {
  .page-member__item-text-cat {
    font-size: 1rem;
    padding: 0.25rem 1rem;
  }
}
.page-member__item-text > h2 {
  display: none;
}
@media screen and (min-width: 600px) {
  .page-member__item-text > h2 {
    display: block;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #B48D14;
    width: 100%;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1.5rem;
  }
}
.page-member__item-text-name {
  font-size: 1.125rem;
}
@media screen and (min-width: 960px) {
  .page-member__item-text-name {
    font-size: 1.5rem;
  }
}
.page-member__item-text-join {
  font-size: 10px;
}
@media screen and (min-width: 960px) {
  .page-member__item-text-join {
    font-size: 1rem;
  }
}
.page-member__img {
  position: relative;
  margin: 2rem 0;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .page-member__img {
    max-width: 50%;
    height: -moz-fit-content;
    height: fit-content;
    margin: -10rem 0 0;
  }
}

.single-member {
  margin: 3rem auto 0;
  padding: 2rem 0;
}
.single-member__cont {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  gap: 1rem;
  margin: 0 auto;
}
.single-member__inner {
  width: 90%;
  margin: 2rem auto 0;
  padding: 2rem 0;
}
@media screen and (min-width: 600px) {
  .single-member__inner {
    margin: 0 auto 0;
    width: 80%;
  }
}
.single-member__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .single-member__item {
    flex-direction: row;
  }
}
.single-member__item > img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .single-member__item > img {
    max-width: 50%;
  }
}
.single-member__item-title {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 960px) {
  .single-member__item-title {
    flex-direction: row;
  }
}
.single-member__item-title > img {
  margin: -5rem 0 0;
  width: 80%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .single-member__item-title > img {
    margin: -10rem 0 0;
    max-width: 400px;
  }
}
.single-member__item-text {
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
}
.single-member__item-text > h2 {
  padding-bottom: 0.75rem;
  width: 100%;
  white-space: pre-wrap;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.25rem;
}
@media screen and (min-width: 960px) {
  .single-member__item-text > h2 {
    font-size: 2rem;
  }
}
.single-member__item-text > p {
  color: #B48D14;
  white-space: pre-wrap;
}
.single-member__item-text-name {
  color: #000 !important;
  margin: 0 0 0 auto;
  font-size: 1.5rem;
  font-weight: 600;
}
.single-member__item-qa {
  margin: 2rem 0;
}
.single-member__item-qa > h3 {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #B48D14;
  margin-bottom: 1rem;
}
.single-member__item-qa > h3 > span {
  font-family: "my-font";
  font-size: 2rem;
  margin-right: 1rem;
}
.single-member__item-qa > p {
  color: #000;
}
.single-member__sche {
  color: #000;
  margin: 2rem auto;
  width: 90%;
  border: 1px solid #B48D14;
  position: relative;
}
@media screen and (min-width: 960px) {
  .single-member__sche {
    width: 80%;
  }
}
.single-member__sche > h2 {
  position: absolute;
  top: -2rem;
  left: 10%;
  font-size: 1.5rem;
  color: #B48D14;
  padding: 1rem;
  background-color: #fff;
}
@media screen and (min-width: 960px) {
  .single-member__sche > h2 {
    font-size: 2rem;
  }
}
.single-member__sche-cont {
  padding: 2rem 0.5rem;
}
@media screen and (min-width: 960px) {
  .single-member__sche-cont {
    padding: 2rem;
  }
}
.single-member__sche-item {
  display: flex;
  background-color: rgba(164, 160, 157, 0.1176470588);
  gap: 1rem;
  padding: 1rem;
  width: 95%;
  margin: 2rem auto;
}
@media screen and (min-width: 1280px) {
  .single-member__sche-item {
    width: 80%;
    padding: 1rem 2rem;
  }
}
.single-member__sche-item > p {
  font-size: 1rem;
}
@media screen and (min-width: 960px) {
  .single-member__sche-item > p {
    font-size: 1.25rem;
  }
}
.single-member__sche-item > p:nth-child(1) {
  padding-right: 2%;
  border-right: 1px solid #A4A09D;
  width: auto;
}
@media screen and (min-width: 960px) {
  .single-member__sche-item > p:nth-child(1) {
    width: 10%;
  }
}
.single-member__sche-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: rgba(180, 141, 20, 0.1176470588);
  padding: 1rem;
  width: 95%;
  margin: 2rem auto;
}
@media screen and (min-width: 1280px) {
  .single-member__sche-item-wrap {
    width: 80%;
    padding: 1rem 2rem;
  }
}
.single-member__sche-item-wrap > img {
  padding-left: 0;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .single-member__sche-item-wrap > img {
    padding-left: 12%;
  }
}
.single-member__sche-item-wrap > p {
  font-weight: bold;
  font-size: 0.75rem;
  padding-left: 0;
  white-space: pre-wrap;
}
@media screen and (min-width: 1280px) {
  .single-member__sche-item-wrap > p {
    padding-left: 12%;
  }
}
.single-member__sche-item-pick {
  display: flex;
  gap: 1rem;
  background-color: transparent;
  margin-bottom: 1rem;
}
.single-member__sche-item-pick > p {
  color: #B48D14;
  font-size: 1rem;
}
@media screen and (min-width: 1280px) {
  .single-member__sche-item-pick > p {
    font-size: 1.25rem;
  }
}
.single-member__sche-item-pick > p:nth-child(1) {
  padding-right: 2%;
  border-right: 1px solid #A4A09D;
  width: auto;
}
@media screen and (min-width: 960px) {
  .single-member__sche-item-pick > p:nth-child(1) {
    width: 10%;
  }
}

.page-intro {
  margin: 3rem auto 0;
  padding: 2rem 0;
}
.page-intro__cont {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  gap: 1rem;
  margin: 0 auto;
}
.page-intro__inner {
  width: 90%;
  margin: 2rem auto 0;
  padding: 2rem 0;
}
@media screen and (min-width: 600px) {
  .page-intro__inner {
    margin: 0 auto 0;
    width: 80%;
  }
}
.page-intro-data {
  color: #000;
  margin: 2rem auto 0;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .page-intro-data {
    padding: 2rem 0;
    margin: 3rem auto;
    border-left: 50px solid #B48D14;
    border-right: 50px solid #B48D14;
  }
}
.page-intro-data-title {
  text-align: center;
  width: 80%;
  border-bottom: 1px solid #B48D14;
  margin: 2rem auto;
}
.page-intro-data-title > h2 {
  font-size: 3rem;
  text-align: center;
  color: #000;
}
.page-intro-data-title > p {
  color: #000;
}
.page-intro-data-title > p > span {
  color: #B48D14;
}
.page-intro-data-cont {
  width: 95%;
  margin: 2rem auto 0;
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 2.5rem;
}
@media screen and (min-width: 600px) {
  .page-intro-data-cont {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    row-gap: 4rem;
  }
}
@media screen and (min-width: 960px) {
  .page-intro-data-cont {
    margin: 0 auto 0;
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
  .page-intro-data-cont {
    margin: 0 auto 0;
    flex-direction: row;
    width: 80%;
  }
}
.page-intro-data-cont > img {
  height: auto;
}
@media screen and (min-width: 600px) {
  .page-intro-data-cont > img {
    max-width: 45%;
  }
}
@media screen and (min-width: 960px) {
  .page-intro-data-cont > img {
    max-width: 30%;
  }
}
.page-intro-data-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
@media screen and (min-width: 600px) {
  .page-intro-data-item {
    width: 240px;
    height: 240px;
  }
}
@media screen and (min-width: 960px) {
  .page-intro-data-item {
    width: 320px;
    height: 240px;
  }
}
.page-intro-data-item > h3 {
  font-weight: bold;
  width: 100%;
  color: #000;
}
.page-intro-data-item > p {
  font-size: 1rem;
  text-align: center;
}
.page-intro-data-item > p > span {
  font-size: 2.5rem;
  padding: 0.25rem;
  color: #B48D14;
  font-weight: bold;
}
.page-intro-data-item-img {
  display: flex;
  flex-direction: row;
  gap: 4px;
  width: 80%;
  height: auto;
  z-index: 1;
}
.page-intro-data-item-img > img {
  width: 24%;
  height: auto;
}
.page-intro-data-item-img > img:nth-child(2) {
  animation-delay: 0.25s;
}
.page-intro-data-item-img > img:nth-child(3) {
  animation-delay: 0.5s;
}
.page-intro-data-item-img > img:nth-child(4) {
  animation-delay: 0.75s;
}
.page-intro-data-item-svg {
  width: 95%;
  height: auto;
}
@media screen and (min-width: 600px) {
  .page-intro-data-item-svg {
    width: 240px;
    height: 240px;
  }
}
.page-intro-project {
  color: #000;
  margin: 2rem auto 0;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .page-intro-project {
    margin: 3rem auto;
    padding: 2rem 0;
  }
}
.page-intro-project-title {
  width: 90%;
  border-bottom: 1px solid #B48D14;
  margin: 2rem auto;
}
.page-intro-project-title > h2 {
  font-size: 3rem;
  color: #000;
  line-height: 1.5;
}
.page-intro-project-title > p {
  color: #000;
}
.page-intro-project-title > p > span {
  color: #B48D14;
}
.page-intro-project-cont {
  width: 90%;
  margin: 2rem auto 0;
  padding: 2rem 0;
}
.page-intro-project-desc {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .page-intro-project-desc {
    flex-direction: row;
    align-items: center;
  }
}
.page-intro-project-desc > img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .page-intro-project-desc > img {
    max-width: 50%;
    height: 500px;
  }
}
.page-intro-project-desc-text > h3 {
  font-size: 1.5rem;
  color: #000;
  font-weight: 600;
  margin-bottom: 2rem;
}
.page-intro-service__inner {
  width: 80%;
  margin: 1rem auto 0;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 600px) {
  .page-intro-service__inner {
    margin: 3rem auto 0;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
  }
}
.page-intro-service__cont {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.page-intro-service__img {
  width: 100%;
  height: auto;
}
.page-intro-service__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: black;
}
.page-intro-service__text > h3 {
  color: black;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (min-width: 600px) {
  .page-intro-service__text > h3 {
    font-size: 1.25rem;
  }
}
.page-intro-service__text-title {
  color: #B48D14;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
.page-intro-service__text-title > p {
  font-size: 1rem;
  font-family: "my-font";
  line-height: 1;
  font-weight: bold;
}
.page-intro-service__btn {
  margin: 1rem auto;
  color: #000;
}
.page-intro-message {
  margin: 2rem auto 0;
  padding: 2rem 0;
  width: 100%;
}
.page-intro-message-title {
  width: 90%;
  margin: 2rem auto;
}
.page-intro-message-title > h2 {
  font-size: 3rem;
}
.page-intro-message-cont {
  width: 90%;
  margin: 2rem auto 0;
  padding: 2rem 0;
}
.page-intro-message-desc {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 960px) {
  .page-intro-message-desc {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
  }
}
.page-intro-message-desc > img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 960px) {
  .page-intro-message-desc > img {
    max-width: 30%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.page-intro-message-desc-text > h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: white;
}
.page-intro-officer {
  margin: 2rem auto 0;
  padding: 2rem 0;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .page-intro-officer {
    margin: 3rem auto;
  }
}
.page-intro-officer-title {
  width: 90%;
  border-bottom: 1px solid #B48D14;
  margin: 2rem auto;
}
.page-intro-officer-title > h2 {
  font-size: 3rem;
  color: #fff;
}
.page-intro-officer-cont {
  width: 90%;
  margin: 2rem auto 0;
  padding: 2rem 0;
}
.page-intro-officer__wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media screen and (min-width: 600px) {
  .page-intro-officer__wrap {
    display: block;
  }
}
@media screen and (min-width: 600px) {
  .page-intro-officer__wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
  }
}
.page-intro-officer__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem;
}
@media screen and (min-width: 600px) {
  .page-intro-officer__item {
    max-width: 45%;
    gap: 1rem;
  }
}
@media screen and (min-width: 960px) {
  .page-intro-officer__item {
    max-width: 22%;
  }
}
.page-intro-officer__item:hover {
  background-color: rgba(248, 226, 130, 0.1176470588);
  text-decoration: none;
}
.page-intro-officer__item-img {
  width: auto;
  height: auto;
}
.page-intro-officer__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0.25rem;
}
@media screen and (min-width: 960px) {
  .page-intro-officer__item-text {
    padding: 1rem;
  }
}
.page-intro-officer__item-text-cat {
  border: 1px solid #B48D14;
  padding: 0.125rem 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 960px) {
  .page-intro-officer__item-text-cat {
    padding: 0.25rem 1rem;
  }
}
.page-intro-officer__item-text > h3 {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #B48D14;
  width: 100%;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
.page-intro-officer__item-text > p {
  font-size: 0.75rem;
}
.page-intro-officer__item-text-name {
  font-size: 1rem !important;
}
@media screen and (min-width: 960px) {
  .page-intro-officer__item-text-name {
    font-size: 1.25rem !important;
  }
}
.page-intro-officer-btn {
  margin: 1rem auto;
}
@media screen and (min-width: 960px) {
  .page-intro-officer-btn {
    margin: 1rem 5% 1rem auto;
  }
}

.mem__slider {
  width: 100%;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 960px) {
  .mem__slider {
    width: 80%;
  }
}

.next-intro-arrow {
  position: absolute;
  top: 40%;
  right: 2.5%;
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 50px;
  border: 1px solid #fff;
  margin: 0.5rem;
  z-index: 10;
}
@media screen and (min-width: 600px) {
  .next-intro-arrow {
    top: 35%;
  }
}
.next-intro-arrow:after {
  content: "→";
  position: absolute;
  left: 20px;
  top: 16px;
  color: #000;
  margin: 0 auto;
  font-size: 20px;
}

.page-recruit__fv {
  position: relative;
  min-height: 100svh;
}
.page-recruit__fv-img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  display: none;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .page-recruit__fv-img {
    display: block;
  }
}
.page-recruit__fv-img-sp {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 960px) {
  .page-recruit__fv-img-sp {
    display: none;
  }
}
.page-recruit__fv-title {
  position: absolute;
  bottom: 5%;
  left: 5%;
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 2rem;
}
@media screen and (min-width: 960px) {
  .page-recruit__fv-title {
    display: flex;
  }
}
.page-recruit__fv-title > h2 {
  line-height: 1.5;
  font-weight: bold;
  font-size: 1.5rem;
}
.page-recruit__fv-title:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(90deg, rgb(180, 141, 20), rgb(248, 226, 130) 50%, rgb(180, 141, 20));
}
.page-recruit__fv-catch {
  position: absolute;
  bottom: 5%;
  right: 5%;
  display: flex;
  gap: 0.5rem;
}
@media screen and (min-width: 960px) {
  .page-recruit__fv-catch {
    top: 15%;
    right: 5%;
  }
}
.page-recruit__fv-catch > p {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 1.5rem;
  background-color: #000;
  padding: 1rem 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 960px) {
  .page-recruit__fv-catch > p {
    font-size: 2.5rem;
  }
}
.page-recruit__fv-catch > p:nth-child(1) {
  animation-delay: 1s;
}
.page-recruit__fv-catch > p:nth-child(2) {
  animation-delay: 0.5s;
}
.page-recruit__message-cont {
  margin: 3rem auto;
  width: 95%;
  background-color: #fff;
  padding: 3rem 0;
}
@media screen and (min-width: 960px) {
  .page-recruit__message-cont {
    width: 85%;
  }
}
.page-recruit__message-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: #000;
  margin: 1rem auto;
  width: 90%;
  font-size: 0.875rem;
}
@media screen and (min-width: 960px) {
  .page-recruit__message-item {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin: 2rem auto;
  }
}
@media screen and (min-width: 1280px) {
  .page-recruit__message-item {
    font-size: 1rem;
  }
}
.page-recruit__message-item > img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 960px) {
  .page-recruit__message-item > img {
    max-width: 50%;
  }
}
.page-recruit__calture {
  background-color: #fff;
  padding: 3rem 0;
}
.page-recruit__calture-cont {
  margin: 3rem auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .page-recruit__calture-cont {
    width: 85%;
    flex-direction: row;
  }
}
.page-recruit__calture-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem auto;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .page-recruit__calture-item {
    max-width: 32%;
  }
}
.page-recruit__calture-item > img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-recruit__calture-item-text {
  color: #000;
  font-size: 0.8rem;
}
.page-recruit__calture-item-text-title {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.page-recruit__calture-item-text-title > span {
  color: #B48D14;
  font-size: 2.5rem;
  font-family: "my-font";
}
@media screen and (min-width: 600px) {
  .page-recruit__calture-item-text-title > span {
    font-size: 2rem;
  }
}
.page-recruit__calture-item-text-title > h3 {
  color: #000;
  font-weight: 600;
  font-size: 1.125rem;
}
@media screen and (min-width: 600px) {
  .page-recruit__calture-item-text-title > h3 {
    font-size: 1.25rem;
  }
}
.page-recruit__environment {
  position: relative;
  padding: 3rem 0;
}
.page-recruit__environment__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.page-recruit__environment-cont {
  margin: 3rem auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 960px) {
  .page-recruit__environment-cont {
    gap: 5rem;
  }
}
.page-recruit__environment-item {
  background-color: rgba(255, 255, 255, 0.8901960784);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem auto;
  width: 90%;
}
@media screen and (min-width: 960px) {
  .page-recruit__environment-item {
    padding: 3rem;
    max-width: 70%;
    gap: 2rem;
    margin: 0 0 0 auto;
    flex-direction: row;
    align-items: center;
  }
}
.page-recruit__environment-item:nth-child(2) {
  background-color: rgba(255, 255, 255, 0.8901960784);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem auto;
  width: 90%;
}
@media screen and (min-width: 960px) {
  .page-recruit__environment-item:nth-child(2) {
    padding: 3rem;
    max-width: 70%;
    gap: 2rem;
    margin: 0 auto 0 0;
    flex-direction: row-reverse;
    align-items: center;
  }
}
.page-recruit__environment-item > img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-recruit__environment-item-text {
  color: #000;
  font-size: 0.8rem;
}
.page-recruit__environment-item-text-title {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.page-recruit__environment-item-text-title > h3 {
  color: #000;
  font-weight: 600;
  font-size: 1.25rem;
  border-bottom: 1px solid #000;
  padding: 0.5rem 0;
  width: 100%;
}
.page-recruit__desc {
  background-color: #fff;
  padding: 1rem 0;
}
@media screen and (min-width: 600px) {
  .page-recruit__desc {
    padding: 3rem 0;
  }
}
.page-recruit__desc-cont {
  margin: 1rem auto;
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 960px) {
  .page-recruit__desc-cont {
    margin: 3rem auto;
    width: 85%;
    flex-direction: row;
  }
}
.page-recruit__desc-item {
  margin: 1rem auto;
  width: 95%;
}
@media screen and (min-width: 600px) {
  .page-recruit__desc-item {
    width: 80%;
  }
}
.page-recruit__desc-item > h3 {
  padding: 1rem;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 1.5rem;
}
.page-recruit__desc-item-text {
  color: #000;
  font-size: 1rem;
}
.page-recruit__desc-item-text-title {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.page-recruit__desc-item-text-title > span {
  color: #B48D14;
  font-size: 2.5rem;
  font-family: "my-font";
}
@media screen and (min-width: 600px) {
  .page-recruit__desc-item-text-title > span {
    font-size: 2rem;
  }
}
.page-recruit__desc-item-text-title > h3 {
  color: #000;
  font-weight: 600;
  font-size: 1.125rem;
}
@media screen and (min-width: 600px) {
  .page-recruit__desc-item-text-title > h3 {
    font-size: 1.25rem;
  }
}
.page-recruit__link {
  padding: 1rem 0;
}
@media screen and (min-width: 600px) {
  .page-recruit__link {
    padding: 3rem 0;
  }
}
.page-recruit__link-cont {
  margin: 1rem auto;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 600px) {
  .page-recruit__link-cont {
    width: 80%;
    align-items: flex-end;
  }
}
.page-recruit__link-cont > h3 {
  font-size: 1.75rem;
  padding-bottom: 2rem;
  margin-bottom: 1rem;
  color: #fff;
  position: relative;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .page-recruit__link-cont > h3 {
    font-size: 3rem;
    width: -moz-fit-content;
    width: fit-content;
    text-align: start;
  }
}
.page-recruit__link-cont > h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(#F8E282, #B48D14, #F8E282);
}
@media screen and (min-width: 600px) {
  .page-recruit__link-cont > h3:before {
    height: 4px;
  }
}
.page-recruit__data {
  background-color: #fff;
  padding: 1rem 0;
}
@media screen and (min-width: 600px) {
  .page-recruit__data {
    padding: 3rem 0;
  }
}
.page-recruit__data-cont {
  margin: 1rem auto;
  width: 95%;
}
@media screen and (min-width: 960px) {
  .page-recruit__data-cont {
    margin: 3rem auto;
    width: 60%;
    flex-direction: row;
  }
}
.page-recruit__data-cont > a:hover {
  opacity: 0.8;
}
.page-recruit__data-cont > a > img {
  width: 100%;
  height: auto;
}

.page__completed {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .page__completed {
    width: 80%;
  }
}
.page__completed > h1 {
  font-size: fontSize(32);
  text-align: center;
}
@media screen and (min-width: 600px) {
  .page__completed > h1 {
    font-size: fontSize(64);
  }
}
.page__completed > h3 {
  margin-bottom: 2rem;
  text-align: center;
  color: #F05454;
}
.page__completed-desc {
  margin-top: 2rem;
  padding: 2rem 0;
}
.page__completed-desc > h2 {
  font-size: 2rem;
  margin: 2rem 0;
}
@media screen and (min-width: 600px) {
  .page__completed-desc > h2 {
    font-size: 2.5rem;
  }
}
.page__completed-desc > p {
  text-align: start;
}
@media screen and (min-width: 600px) {
  .page__completed-desc > p {
    text-align: center;
  }
}
.page__completed-ex > h2 {
  margin-bottom: 1rem;
}
.page__completed-ex > a {
  margin: 2rem auto;
  text-decoration: none;
  color: #fff;
  font-size: 0.8rem;
}
@media screen and (min-width: 600px) {
  .page__completed-ex > a {
    font-size: 1rem;
    width: 50%;
  }
}

.contact__cont {
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 1rem auto;
  padding: 0;
  max-width: 95vw;
}
@media screen and (min-width: 600px) {
  .contact__cont {
    max-width: 768px;
    gap: 2.5rem;
    margin: 3rem auto;
  }
}
.contact__cont > li {
  font-size: fontSize(24);
  list-style: none;
  gap: 1rem;
}
@media screen and (min-width: 960px) {
  .contact__cont > li {
    grid-template-columns: 1fr 3fr;
  }
}
.contact__phone {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 10;
  background-color: #000;
  padding: 3rem 5% 1rem 5%;
  width: 100%;
}
@media screen and (min-width: 960px) {
  .contact__phone {
    flex-direction: row;
  }
}
@media screen and (min-width: 1280px) {
  .contact__phone {
    position: absolute;
    top: 0;
    right: 5%;
    width: 50%;
    max-width: 50%;
    padding: 0;
  }
}
.contact__phone > a:hover {
  opacity: 0.8;
}
.contact__phone > a > img {
  height: auto;
}
.contact__flow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}
.contact__flow > p {
  color: #d5d5d5;
  text-align: center;
  padding: 0.5rem;
  border-bottom: 4px solid #f3f3f3;
}
@media screen and (min-width: 600px) {
  .contact__flow > p {
    padding: 1rem 1.5rem;
  }
}
.contact__flow-01 > p {
  font-weight: bold;
}
.contact__flow-01 > p:nth-child(1) {
  color: #B48D14;
  border-bottom: 4px solid #B48D14;
}
.contact__flow-02 > p {
  font-weight: bold;
}
.contact__flow-02 > p:nth-child(2) {
  color: #B48D14;
  border-bottom: 4px solid #B48D14;
}
.contact__flow-03 > p {
  font-weight: bold;
}
.contact__flow-03 > p:nth-child(3) {
  color: #B48D14;
  border-bottom: 4px solid #B48D14;
}
.contact__desc {
  text-align: left;
  color: #656565;
  padding: 1.5rem 2rem;
  border-radius: 5px;
}
.contact__desc > p {
  line-height: 2;
}
.contact__desc > p > span {
  color: red;
}
.contact__ano {
  margin: 3rem 0;
  padding-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid #000;
}
.contact__ano-text {
  color: #707070;
  font-size: 0.75rem;
}
.contact__sub {
  margin: 3rem 0;
  padding-top: 3rem;
  border-top: 1px solid #000;
}
.contact__item {
  width: 100%;
  margin: 2.5rem auto;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.contact__item-text > p {
  line-height: 1;
}
.contact__item-text > p > label {
  padding: 0.5rem 1rem 0.5rem 0;
  width: 100%;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #656565;
  line-height: 1;
}
.contact__item-text > p > label > span {
  margin-left: 0.5rem;
  font-size: fontSize(8);
  vertical-align: top;
  font-weight: 600;
  color: #B48D14;
}
.contact__item-policy {
  text-align: center;
}
.contact__btn > p {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
.contact__btnitem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto;
}
@media screen and (min-width: 600px) {
  .contact__btnitem {
    flex-direction: row;
  }
}
.contact__confirm {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.5rem;
  border-bottom: 1px solid #d5d5d5;
  color: #656565;
  padding: 0.5rem 1rem;
}
.contact__thanks {
  border: none;
}
.contact__thanks > h2 {
  font-size: 1.5rem;
}
.contact__thanks > p {
  margin-bottom: 2rem;
}

label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

textarea {
  resize: vertical;
  height: 200px;
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-bottom: #000 solid 1.5px;
  background-color: #f0f0f0;
}
textarea:focus {
  border: 2px solid #B48D14;
  outline: 0;
}

.wpcf7 {
  max-width: 95vw;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-form-control-wrap {
  position: inherit;
  max-width: 90%;
}
@media screen and (min-width: 600px) {
  .wpcf7-form-control-wrap {
    width: 100%;
  }
}

.wpcf7-submit {
  display: block;
  background-color: transparent;
  color: black;
  text-decoration: none;
  padding: 1rem 3rem;
  border: solid #B48D14 1px;
  font-size: 20px;
  width: 240px;
  margin: 0 auto;
}
.wpcf7-submit:hover {
  text-decoration: none;
  background-color: #B48D14;
  color: white;
}

.wpcf7-previous {
  display: block;
  background-color: transparent;
  color: #707070;
  text-decoration: none;
  padding: 1rem 3rem;
  border: solid #707070 1px;
  font-size: 20px;
  width: 240px;
  margin: 0 auto;
}
.wpcf7-previous:hover {
  text-decoration: none;
  background-color: #B48D14;
  color: white;
}

input {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-bottom: #000 solid 1.5px;
  background-color: #f0f0f0;
}
input:focus {
  border: 2px solid #B48D14;
  outline: 0;
}

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

input[type=radio] {
  width: -moz-fit-content;
  width: fit-content;
}

input[type=checkbox] {
  width: 2rem;
  height: 2rem;
}

select {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-bottom: #000 solid 1.5px;
  background-color: #f0f0f0;
}
select:focus {
  border: 2px solid #B48D14;
  outline: 0;
}

.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
  color: #cc0000;
  font-weight: bold;
}

.contact__item-policy > p > span > span > span > input {
  height: auto;
  margin-right: 1rem;
}

.cf7-accept-check {
  margin-bottom: 4rem;
}
.cf7-accept-check-link {
  color: #B48D14;
  text-decoration: underline;
}
.cf7-accept-check > p {
  text-align: center;
  font-weight: bold;
  color: #000;
}

.error {
  margin-top: 80px;
  height: 50vh;
}
@media screen and (min-width: 600px) {
  .error {
    margin-top: 120px;
  }
}
.error > h1 {
  font-size: fontSize(32);
  text-align: center;
}
@media screen and (min-width: 600px) {
  .error > h1 {
    font-size: fontSize(64);
  }
}
.error__cont {
  background-color: white;
  padding: 5rem 0;
}
.error__text {
  color: black;
  text-align: center;
  margin-bottom: 2rem;
}
.error__text > a {
  text-decoration: underline;
  color: #000;
  text-align: center;
  margin: 2rem auto;
}
.error__text > p {
  margin-bottom: 2rem;
}
.error__btn {
  display: block;
  background-color: transparent;
  color: black;
  text-decoration: none;
  padding: 1rem 3rem;
  border: solid #B48D14 1px;
  font-size: 20px;
  width: 240px;
  margin: 0 auto;
  text-align: center;
}
.error__btn:hover {
  text-decoration: none;
  background-color: #B48D14;
  color: white;
}

.single__inner {
  background-color: #fff;
  color: #000;
}
.single__cont {
  min-height: 50vh;
  width: 90%;
  margin: 2rem auto 0;
  padding: 2rem 0;
}
@media screen and (min-width: 600px) {
  .single__cont {
    margin: 3rem auto 0;
    width: 80%;
  }
}
.single__cont > h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (min-width: 600px) {
  .single__cont > h2 {
    font-size: 2rem;
  }
}
.single__cont-btn {
  display: none;
}
@media screen and (min-width: 960px) {
  .single__cont-btn {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    width: 70%;
    margin: 0 auto;
  }
}
.single__cont-btn-sp {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 70%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .single__cont-btn-sp {
    display: none;
  }
}
.single__cont-btn-sp-text {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.single__cont > img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 350px;
  height: 200px;
  margin: 2rem auto;
}
@media screen and (min-width: 600px) {
  .single__cont > img {
    width: 100%;
    height: auto;
    max-height: 800px;
  }
}
.single__article {
  margin: 2rem auto;
}
.single__category {
  color: #B48D14;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem 0;
}
.single__category > ul {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  padding: 0;
}
.single__category > ul > li {
  list-style: none;
  border: solid 1px #B48D14;
}
.single__category > ul > li > a {
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #B48D14;
}
.single__btn {
  background-color: #EEFFF6;
  color: #fff;
  text-decoration: none;
  padding: 1rem 3rem;
  color: #3698A8;
  display: flex;
  justify-content: center;
  width: 240px;
  margin: 0 auto;
  border-radius: 30px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
}
.single__btn:hover {
  box-shadow: none;
  border: 1px solid #B48D14;
  text-decoration: none;
}

.archive-btn {
  margin-top: 3rem;
}
.archive-btn > a {
  text-decoration: none;
  color: #fff;
}

.news {
  margin: 100px auto;
}
.news__area {
  width: 100%;
  margin: auto;
  flex-wrap: wrap;
  display: flex;
}
.news__cat {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3rem;
  margin: 1rem auto 5rem;
  flex-wrap: wrap;
  padding: 0 1rem;
}
.news__cat > a:not(:first-child):before {
  content: " / ";
  color: #B48D14;
  padding-right: 3rem;
}
.news__cat > a:hover {
  text-decoration: none;
}
.news__inner {
  background-color: white;
  padding: 2rem 0;
  width: 100%;
  min-height: 50vh;
}
@media screen and (min-width: 600px) {
  .news__inner {
    padding: 5rem 0;
  }
}
.news__cont {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 3rem auto 5rem;
  width: 85%;
}
@media screen and (min-width: 600px) {
  .news__cont {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 960px) {
  .news__cont {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.news__ul > h4 {
  margin-bottom: 1rem;
}
.news__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-bottom: 1rem;
}
.news__item:hover > img {
  box-shadow: none;
}
.news__item > img {
  width: 100%;
  width: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
  height: 200px;
}
@media screen and (min-width: 600px) {
  .news__item > img {
    width: 450px;
    height: 280px;
  }
}
.news__item-text {
  color: black;
}
.news__item-text > p {
  margin-bottom: 1rem;
}
.news__item-text > h2 {
  font-size: 1.25rem;
  font-weight: 400;
  color: black;
  line-height: 1.5;
}
.news__item-text-cat {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 1rem;
}
.news__item-text-cat > p:not(:first-child):before {
  content: " || ";
  color: black;
  padding-right: 1rem;
}
.news__noidea {
  color: #000;
  text-align: center;
}

.is-active {
  font-weight: 800;
  color: #B48D14;
}

.button-main {
  position: relative;
  display: block;
  background-color: #EEFFF6;
  color: #B48D14;
  text-decoration: none;
  text-align: center;
  padding: 1rem 2rem 1rem 1rem;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  width: 240px;
  margin: 0 auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 600px) {
  .button-main {
    padding: 1rem 3rem 1rem 2rem;
    font-size: 20px;
  }
}
.button-main:hover {
  text-decoration: none;
  box-shadow: none;
}
.button-main-arrow {
  position: absolute;
  top: 28%;
  right: 5%;
}

.button-sub {
  background-color: white;
  color: #B48D14;
  border: #B48D14 2px solid;
  text-decoration: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  width: 200px;
  text-align: center;
}
.button-sub:hover {
  background-color: #B48D14;
  color: white;
  text-decoration: none;
}

.button-ab {
  width: 320px;
  text-align: center;
  font-family: "my-font";
  font-size: 1.5rem;
  margin-top: 1rem;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s;
  color: #B48D14;
  display: inline-flex;
  display: flex;
  justify-content: center;
  padding: 20px;
}
.button-ab__container {
  display: flex;
  justify-content: center;
}
.button-ab::after {
  content: "";
  width: 80%;
  left: 50%;
  height: 1px;
  bottom: 0;
  transform: translatex(-50%);
  transition: width 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0.4s, background 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s;
  display: block;
  position: absolute;
  background: #B48D14;
}
.button-ab > span {
  display: block;
  position: absolute;
  transition: all 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9);
  width: 100%;
  top: 0;
  left: 0;
}
.button-ab > span::before, .button-ab > span::after {
  content: "";
  display: block;
  position: absolute;
  background: #B48D14;
  transition: transform 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9);
}
.button-ab > span:first-child {
  height: 100%;
}
.button-ab > span:first-child::before, .button-ab > span:first-child::after {
  width: 1px;
  height: 100%;
  bottom: 0;
  transform: scale3d(1, 0, 1);
  transform-origin: bottom center;
  transition: transform 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0.2s, background 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s;
}
.button-ab > span:first-child::before {
  left: 0;
}
.button-ab > span:first-child::after {
  right: 0;
}
.button-ab > span:last-child {
  width: 100%;
  height: 1px;
}
.button-ab > span:last-child::before, .button-ab > span:last-child::after {
  height: 1px;
  width: 100%;
  bottom: 0;
  transform: scale3d(0, 1, 1);
  transition: transform 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s, background 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s;
}
.button-ab > span:last-child::before {
  left: 0;
  transform-origin: bottom left;
}
.button-ab > span:last-child::after {
  right: 0;
  transform-origin: bottom right;
}
.button-ab:hover {
  opacity: 1;
  outline: 0;
  color: #FFF !important;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s;
  /* Positioning */
}
.button-ab:hover::after {
  width: 100%;
  background: #B48D14;
  transition: width 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s, background 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s;
}
.button-ab:hover span:first-child::before, .button-ab:hover span:first-child::after {
  transform: scale3d(1, 1, 1);
  background: #B48D14;
  transition: transform 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0.2s, background 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s;
}
.button-ab:hover span:last-child::before, .button-ab:hover span:last-child::after {
  transform: scale3d(1, 1, 1);
  background: #B48D14;
  transition: transform 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0.4s, background 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9) 0s;
}
.button-ab:focus {
  background: #B48D14;
  color: white !important;
  transition: all 0.2s cubic-bezier(0.2, 0.3, 0.25, 0.9);
}
.button-ab:focus::after {
  opacity: 0;
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeDownTrigger {
  opacity: 0;
}

.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　画像の縮小　*/
.zoomOut img {
  transform: scale(1.1);
  transition: 0.3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomOut a:hover img { /*hoverした時の変化*/
  transform: scale(1); /*拡大の値を変更したい場合はこの数値を変更*/
}

.mask {
  display: block;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}

.header {
  background-image: linear-gradient(180deg, rgb(0, 0, 0), rgba(255, 255, 255, 0) 100%);
  width: 100%;
  max-width: 1920px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
  height: 60px;
}
@media screen and (min-width: 600px) {
  .header {
    height: 100px;
  }
}
.header__logo {
  padding-left: 0.75rem;
  width: auto;
}
@media screen and (min-width: 1280px) {
  .header__logo {
    padding-left: 1.25rem;
  }
}
.header__logo > a {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}
.header__logo-img {
  width: 200px;
  min-width: 100%;
  height: auto;
  margin-right: 0.5rem;
}
@media screen and (min-width: 600px) {
  .header__logo-img {
    width: 235px;
  }
}
@media screen and (min-width: 960px) {
  .header__logo-img {
    width: 280px;
  }
}
.header__menu {
  display: none;
  flex-direction: row;
  gap: 2rem;
  padding-right: 3rem;
}
@media screen and (min-width: 1280px) {
  .header__menu {
    display: flex;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.header__nav-list {
  list-style: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-right: 0.5rem;
  flex-wrap: wrap;
}
@media screen and (min-width: 960px) {
  .header__nav-list {
    margin-right: 2rem;
    justify-content: space-between;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.header__nav-list-item {
  list-style: none;
  margin: 0 1rem;
  font-size: 1rem;
}
.header__nav-list-item-child {
  font-size: 14px;
}
.header__nav-list-item-child-list {
  margin: 1rem 0 1rem 1rem;
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 1px solid #B48D14;
}
.header__nav-list-item-policy {
  font-size: 0.75rem;
}
.header__nav-list-item__has-child {
  position: relative;
}
.header__nav-list-item__has-child:hover > ul {
  visibility: visible;
  opacity: 1;
}
.header__nav-list-item__has-child > ul {
  position: absolute;
  left: 0;
  top: 2.5rem;
  z-index: 4;
  /*形状を指定*/
  background: rgba(0, 0, 0, 0.631372549);
  width: 260px;
  padding: 1.5rem 1rem;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1280px) {
  .header__nav-list-item__has-child > ul {
    gap: 1.5rem;
  }
}
.header__nav-list-item__has-child > ul > li {
  list-style: none;
}
.header__nav-list-normal {
  padding: 0.5rem 0.25rem;
  text-decoration: none;
  color: white;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position: bottom right; /* 下線の初期位置 */
  background-size: 0 1px; /* 下線のサイズ（横幅、高さ） */
  transition: background-size 0.3s;
  font-size: 16px;
}
.header__nav-list-normal:hover {
  text-decoration: none;
  background-position: bottom left; /* 下線のホバー時位置 */
  background-size: 100% 1px;
}

@media screen and (min-width: 960px) {
  #header.UpMove {
    animation: UpAnime 0.5s forwards;
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
@media screen and (min-width: 960px) {
  #header.DownMove {
    animation: DownAnime 0.5s forwards;
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#breadcrumbs {
  width: 90%;
  margin: 1rem 0;
  z-index: 100;
  font-size: fontSize(12);
}
@media screen and (min-width: 600px) {
  #breadcrumbs {
    width: 70%;
  }
}
#breadcrumbs > span > span > a {
  text-decoration: none;
  color: #888888;
  margin: 0 1rem;
}

.breadcrumb_last {
  color: #B48D14;
  margin: 0 1rem;
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  min-height: 100svh; /*ナビの高さ*/
  background: #000;
  /*動き*/
  transition: all 0.6s;
  text-transform: none;
}
@media screen and (min-width: 600px) {
  #g-nav {
    width: 60%;
  }
}
#g-nav-list {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
#g-nav-list > a {
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  #g-nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    width: 70%;
  }
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100svh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 600px) {
  #g-nav.panelactive #g-nav-list {
    width: 60%;
  }
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  z-index: 999;
}
@media screen and (min-width: 600px) {
  #g-nav ul {
    padding: 2rem 0 0;
    z-index: 999;
    margin: 2rem 0 0;
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  #g-nav ul {
    width: auto;
    margin: 2rem 0;
  }
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  margin-top: 1rem;
  padding: 0.5rem 0 0;
  font-size: 1rem;
}

#g-nav li a {
  color: white;
  text-decoration: none;
  padding: 8px;
  display: block;
  text-transform: none;
  letter-spacing: 0.1em;
  font-weight: 400;
  white-space: nowrap;
}
#g-nav li a:hover {
  text-decoration: underline;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0px;
  right: 5%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: block;
}
@media screen and (min-width: 600px) {
  .openbtn {
    top: 20px;
  }
}
.openbtn:hover > span {
  width: 100% !important;
  transition: all 0.5s ease;
}
.openbtn:hover > span:nth-child(1) {
  transition-delay: 0.1s;
}
.openbtn__text {
  opacity: 0;
  margin: 3rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "my-font";
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  height: 1px;
  background-color: white;
  width: 45%;
  text-align: right;
}

.openbtn span:nth-of-type(1) {
  top: 10px;
  right: 0;
  width: 70%;
}

.openbtn span:nth-of-type(2) {
  top: 25px;
  right: 0;
  width: 70%;
}

.openbtn span:nth-of-type(3) {
  top: 40px;
  right: 0;
  width: 100%;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 0;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}

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

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 0;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

.openbtn.active p {
  opacity: 1;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  bottom: 0;
  display: flex;
  flex-direction: column;
  background-color: #000;
  padding: 0 2rem;
  z-index: 20;
  font-size: 14px;
}
@media screen and (min-width: 600px) {
  .footer {
    padding: 2rem;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__cont {
  border-top: 1px solid #B48D14;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 1rem 0;
  margin: 3em 0;
}
@media screen and (min-width: 960px) {
  .footer__cont {
    width: 90%;
    gap: 3rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 600px) {
  .footer__nav {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin-right: 8rem;
  }
}
.footer__nav-inner {
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: -webkit-fill-available;
  max-width: -moz-max-content;
  max-width: max-content;
  height: -moz-fit-content;
  height: fit-content;
}
.footer__nav-inner:nth-child(2) {
  margin: 0 0 2rem;
}
@media screen and (min-width: 600px) {
  .footer__nav-inner:nth-child(2) {
    margin: 2rem 0 0;
  }
}
@media screen and (min-width: 1280px) {
  .footer__nav-inner {
    margin: 2rem 0;
    gap: 1rem;
  }
}
.footer__nav-list {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__nav-list-child {
  font-size: 12px;
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__text {
  display: none;
}
@media screen and (min-width: 600px) {
  .footer__text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: fontSize(12);
    text-align: center;
    text-align: left;
  }
}
.footer__text-title {
  font-weight: 800;
  margin-bottom: 1rem;
}
.footer__text-item {
  margin-bottom: 2rem;
}
.footer__text-sp {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: fontSize(12);
}
@media screen and (min-width: 600px) {
  .footer__text-sp {
    display: none;
  }
}
.footer__text-sp > a:hover {
  color: #F05454;
}
.footer__text-sp-link {
  display: flex;
  flex-direction: row;
}
.footer__text-sp-link > a {
  color: #B48D14;
  text-decoration: none;
  margin-top: 1rem;
}
.footer__text-sp-link > a:hover {
  text-decoration: underline;
}
.footer__text-sp-link > a:nth-child(1) {
  padding: 0.25rem 1rem 0.25rem 0;
  border-right: 1px solid #B48D14;
}
.footer__text-sp-link > a:nth-child(2) {
  padding: 0.25rem 1rem;
}
.footer__text > a:hover {
  color: #F05454;
}
.footer__text-link {
  display: flex;
  flex-direction: row;
}
.footer__text-link > a {
  color: #B48D14;
  text-decoration: none;
  margin-top: 1rem;
}
.footer__text-link > a:hover {
  text-decoration: underline;
}
.footer__text-link > a:nth-child(1) {
  padding: 0.25rem 1rem 0.25rem 0;
  border-right: 1px solid #B48D14;
}
.footer__text-link > a:nth-child(2) {
  padding: 0.25rem 1rem;
}
.footer__logo {
  display: flex;
  text-decoration: none;
  flex-direction: row;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .footer__logo {
    justify-content: left;
  }
}
.footer__logo > img {
  max-width: 250px;
  margin-right: 0.5rem;
  height: auto;
}
@media screen and (min-width: 960px) {
  .footer__logo > img {
    max-width: 300px;
  }
}
.footer > p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1rem 0;
  text-align: center;
  font-size: fontSize(12);
}
@media screen and (min-width: 960px) {
  .footer > p {
    margin: 0;
  }
}
.footer__anchor {
  position: absolute;
  bottom: 10%;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.footer__anchor:hover {
  text-decoration: none;
}
.footer__anchor > img {
  rotate: -90deg;
}/*# sourceMappingURL=style.css.map */