@charset "UTF-8";
/*bootstrap対策*/
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: inherit;
  line-height: 1;
  color: inherit
}
p {
  margin: 0;
}
dl,
ol,
.ul {
  margin: 0;
}
dt,
.dd {
  margin: 0;
}
/****************************/
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
a,
span,
address,
blockquote,
table,
tr,
th,
.td {
  /*transform: rotate(0.03deg);*/
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /*overflow-x: hidden;*/
  /*横スクロールが出るのを隠すため*/
}
html {
  font-size: 62.5%;
  /*font-size: 0.390625vw*/
  /*期値を10pxとする場合：10/2560*100=0.396（表示させたい文字サイズ÷width×100*/
  /*transform: rotate(0.03deg);*/
}
html {
  scroll-padding-top: 70px;
  /* 固定ヘッダの高さ分 */
}
body {
  color: #1e1e1e;
  font-size: 1.7rem;
  font-weight: 600;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;*/
  line-height: 1;
}

/*iphone対策*/
button {
  appearance: none;
  -webkit-appearance: none;
  color: #1e1e1e;
}





/*汎用*/
.inner {
  width: 80%;
  max-width: 120rem;
  margin: auto;
}
.titleA {
  display: grid;
  gap: 1rem;
  width: fit-content;
  margin: 0 auto 5rem;
}
.titleA h3 {
  text-align: center;
  line-height: 1;
}
.titleA p {
  grid-row: 1/2;
  font-size: 3.7rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}
[class^="button"] {
  width: fit-content;
  min-width: 20rem;
  height: 4rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  text-align: center;
}
[class^="button"] :is(a, span) {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
}
[class^="button"] :is(a, span)::after {
  content: "▶";
  position: absolute;
  font-size: 1rem;
  right: 1rem;
}
[class^="button"] :is(a, span):hover::after {
  right: 0.5rem;
  transition: 0.5s;
}
.buttonA {
  background: #e2740e;
}
.buttonB {
  background: #276db6;
}



/*header*/
.header {
  width: 100%;
  height: 11.5rem;
  background: rgba(255, 255, 255, 1);
  padding: 0 2.08vw 0 7.29vw;
  /*4 14*/
  position: sticky;
  top: 0;
  z-index: 9;
}
.header h1 {}
.header .col2 {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 0 3rem;
}
.header .col2 .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5625vw;
  /*3*/
}
.header .col2 .right {
  width: 60%;
}
.header .col2 .right .nav {
  width: 100%;
}
.header .col2 .right .nav>.ul {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .col2 .right .nav>.ul>.li {
  list-style: none;
  min-height: 3.5rem;
  display: grid;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-grow: 1;
}
.header .col2 .right .nav>.ul>.li>p {}
.header .col2 .right .nav>.ul>.li a {
  color: inherit;
}

.header .col2 .right .nav>.ul>.li:first-of-type {
  display: none;
}
.header .col2 .right .nav>.ul>.li:last-of-type {
  min-width: 17rem;
  background: #E2740E;
  border-radius: 0.5rem;
}
.header .col2 .right .nav>.ul>.li:last-of-type a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.header .col2 .right .nav>.ul>.li:last-of-type a::before {
  content: "";
  background: url(/system_panel/uploads/images/icon_mail.png) no-repeat center;
  width: 1.5rem;
  height: 1.1rem;
  display: inline-block;
}
.header .col2 .right .nav>.ul>.li>.ul {
  display: none;
}
.header .col2 .right .nav>.ul>.li:hover .ul {
  width: 100%;
  display: block;
  position: absolute;
  top: 3.5rem;
}
.header .col2 .right .nav>.ul>.li>.ul>.li {
  width: 100%;
  height: 3.5rem;
  background: #fff;
  border-radius: 0.5rem;
  color: inherit;
  text-align: center;
  display: grid;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.5rem;
}





/*main*/
body {}
.main {
  position: relative;
}
.main::before {
  content: "";
  width: 100%;
  height: 30rem;
  background: linear-gradient(0deg, #f7f3e8 88.4%, rgba(247, 243, 232, 0) 88.4%);
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
}
.main::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.mainimg {
  width: 89%;
  height: 30rem;
  margin: 0 auto 0 0;
  position: relative;
  display: grid;
  align-items: center;
  justify-content: center;
}
.mainimg .pic {
  position: absolute;
  width: 100%;
  height: inherit;
  border-radius: 0 1rem 1rem 0;
  overflow: hidden;
  top: 0;
}
.mainimg .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.mainimg .title {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-content: center;
  gap: 1rem;
  height: 7.7rem;
  min-width: 30.2vw;
  /*58*/
  background: #fff;
  display: grid;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 0.5rem;
}
.mainimg .title h2 {
  font-size: 3.7rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.mainimg .title p {
  grid-row: 1/2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  color: #e2740e;
  text-align: center;
}
.bottom {
  padding: 14rem 0 12rem;
}
.bottom .inner {}
.bottom .inner .window {
  width: 100%;
  background: #fff;
  border-radius: 0.5rem;
  padding: clamp(2rem, 3.645vw, 7rem) clamp(2rem, 5.12vw, 10rem) clamp(2rem, 4.6875vw, 9rem);
}
.bottom .inner .window .col2 {
  display: flex;
}
.bottom .inner .window .col2 :is(.left, .right) {
  width: 50%;
  padding: 0 1rem;
}
.bottom .inner .window .col2 :is(.left, .right) h4 {
  font-size: 2.5rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  margin: 0 auto 3rem;
}
.bottom .inner .window .col2 .left {
  border-right: 0.1rem solid #1e1e1e;
}
.bottom .inner .window .col2 .left p {
  font-size: 2.3rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
}
.bottom .inner .window .col2 .left p a {
  font-size: 3.7rem;
  color: #276db6
}
.bottom .inner .window .col2 .right .buttonA {
  min-width: 26rem;
  margin: auto;
}




/*footer*/
.footer {
  width: 100%;
  background: #fff;
  padding: 10rem 0;
}
.footer .inner .col2 {
  display: flex;
}
.footer .inner .col2 .left {
  width: 50%;
}
.footer .inner .col2 .left .logo {
  margin: 0 0 3rem;
}
.footer .inner .col2 .left p:not(.copyright) {
  margin: 0 0 8rem;
}

.footer .inner .col2 .left .sns {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 3rem;
}
.footer .inner .col2 .left .sns .icon {
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer .inner .col2 .left .sns .icon img {
  width: 80%;
}
.footer .inner .col2 .right {
  width: 50%;
}
.footer .inner .col2 .right .nav {
  display: flex;
  align-items: start;
}
.footer .inner .col2 .right .nav .li {
  list-style: none;
  line-height: 2.64;
}
.footer .inner .col2 .right .nav .li p {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer .inner .col2 .right .nav .li a {
  color: inherit;
}
.footer .inner .col2 .right .nav>.ul {
  width: 50%;
}
.footer .inner .col2 .right .nav>.ul>.li:not(:has(.ul))>p {
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer .inner .col2 .right .nav>.ul>.li>p::before {
  content: ">";
  transform: scale(0.5, 1);
  display: inline-block;
}
.footer .inner .col2 .right .nav>.ul>.li>.ul {
  padding: 0 0 0 2em;
}
.footer .inner .col2 .right .nav>.ul>.li>.ul>.li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer .inner .col2 .right .nav>.ul>.li>.ul>.li>p::before {
  content: "-";
}








/*ページ遷移時のフェードイン効果*/
html {
  animation: fadein 3s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}




/*スムーススクロール*/
html {
  /*scroll-behavior: smooth;※smoooothでの使用は不可*/
}




/*-----ハンバーガーメニュー-----*/
.navToggle {
  display: none;
}




/*pagetopボタン用*/
.pagetop {
  position: fixed;
  bottom: 5rem;
  right: 10%;
  background: #000;
  color: #fff;
  width: 7rem;
  height: 7rem;
  z-index: 4;
}
.pagetop a {
  width: inherit;
  height: inherit;
  display: inline-grid;
  place-items: center;
  color: #fff;
}




/*.headerSwitch用*/
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.header {}
.header.scroll-nav {}
/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
.header.scroll-nav :is(.logo, .ul .li a) {}




/*アコーディオン*/
.aco2 {
  display: none;
  /*初期状態で開いておく場合はinitialに変更*/
}
#wrapper .aco2 {
  display: initial;
  /*初期状態で開いておく場合はinitialに変更*/
}
.aco-open {
  position: relative;
}
.aco-open::after {
  /* 閉じている時 */
  content: "×";
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 5rem;
  color: #b6e0c2;
}
.aco-open.active::after {
  /* 開いている時 */
  content: "＋";
  font-size: 5rem;
  color: #b6e0c2;
  top: 1.5rem;
}




/*========= 流れるテキストslideAnime ===============*/
/*全共通*/
.slide-in {
  overflow: hidden;
  display: inline-block;
}
.slide-in_inner {
  display: inline-block;
}
/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}
.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}




/*wow.js（animate.cssのスクロールのタイミングに発動させるライブラリ）用*/
.box {
  animation-fill-mode: forwards;
}




/*animate.cssの追加css*/
.animate__delay-1s {
  animation-delay: calc(var(--animate-delay)*0.5) !important;
}
.animate__delay-2s {
  animation-delay: calc(var(--animate-delay)*1) !important;
}
.animate__delay-3s {
  animation-delay: calc(var(--animate-delay)*1.5) !important;
}
.animate__delay-4s {
  animation-delay: calc(var(--animate-delay)*2) !important;
}
.animate__delay-5s {
  animation-delay: calc(var(--animate-delay)*2.5) !important;
}
.animate__delay-6s {
  animation-delay: calc(var(--animate-delay)*3) !important;
}