@charset "utf-8";
/*
-----------------------------------------------
▼基本デザイン 2025.06
----------------------------------------------- */
.main_color {
  color: #574191;
}
.sub_color {
  color: #e5e2ee;
}
html {
  scroll-behavior: smooth;
  scroll-margin-top: 120px;
  font-size: 62.5%;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-style: normal;
  word-break: normal;
  word-wrap: break-word;
}
body {
  font-size: 1.6rem;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
article, aside, figure, footer, header, main, menu, nav, section {
  display: block;
}
audio, canvas, video {
  display: inline-block;
}
img {
  vertical-align: bottom;
}
input, select {
  font-size: 100%;
  vertical-align: middle;
}
ul, ol {
  list-style-type: none;
}
h1, h2, h3, h4, h5, h6, strong {
  -webkit-font-smoothing: antialiased;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: #08c;
  text-decoration: none;
  transition: 0.6s all;
}
/* a:hover,a:active {
text-decoration:underline;
}
 */
/* a img {
transition:opacity 0.5s ease-in-out;
} */
/* a:hover img {
opacity:0.6;
} */
.pcOnly {
  display: block;
}
.tabOnly {
  display: none;
}
.spOnly {
  display: none;
}
@media screen and (max-width: 768px) {
  .pcOnly {
    display: none;
  }
  .tabOnly {
    display: block;
  }
  .spOnly {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tabOnly {
    display: none;
  }
}
/*
-----------------------------------------------
フェードイン
----------------------------------------------- */
.fadein {
  animation: fadeImage 2.5s;
}
@keyframes fadeImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
-----------------------------------------------
ページTOP
----------------------------------------------- */
.pagetop {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 54px;
  height: 54px;
  transition: .3s;
  /*   デフォルトは非表示 */
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .pagetop {
    cursor: pointer;
    position: fixed;
    right: 2.6vw;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
  .pagetop:hover {
    box-shadow: none;
  }
}
/*
-----------------------------------------------
flex
----------------------------------------------- */
.container01 {
  display: flex;
  flex-wrap: wrap;
}
.container02 {
  display: flex;
  flex-wrap: nowrap;
}
.container03 {
  display: flex;
  flex-wrap: wrap-reverse;
}
.al-item01 {
  align-items: flex-end
}
.c-type01 {
  justify-content: space-between;
}
.c-type02 {
  justify-content: space-around;
}
.c-type03 {
  justify-content: flex-start;
}
.c-type04 {
  justify-content: center;
}
.c-type05 {
  justify-content: flex-end;
}
.ai-01 {
  align-items: flex-start;
}
.ai-02 {
  align-items: flex-end;
}
.ai-03 {
  align-items: center;
}
.ai-04 {
  align-items: baseline;
}
.ai-04 {
  align-items: stretch;
}
/*
-----------------------------------------------
▼全体
----------------------------------------------- */
body {}
/*
-----------------------------------------------
▼ヘッダー
----------------------------------------------- */
header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  padding-left: 2%;
  padding-right: 2%;
  transition-duration: .4s;
  height: 90px;
  background: #fff;
}

header h1{display:none;}

.mx-img {
  width: auto;
  height: auto;
  max-width: 100%;
}
.pc_menu_wrap {
  display: flex;
  align-items: center;
  height: 100%;
}
.pc_menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.5em;
}
.menu-list li a {
  font-size: 1.7rem;
  color: #333;
  text-decoration: none;
  position: relative;
}
.menu-item a {
  display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
  transition: color .6s;
}
.menu-item a::before {
  background-color: #574191;
  content: "";
  height: 100%;
  left: 0;
  position: absolute; /* 絶対位置指定 */
  transform: scaleY(0); /* 下線の非表示 */
  transform-origin: top; /* 変形の原点を上部に指定 */
  transition: transform .5s; /* アニメーション速度 */
  width: 100%; /* 要素の幅 */
  z-index: -1; /* 背景色は文字の下 */
}
.menu-item a:hover {
  color: #fff;
}
.menu-item a:hover::before {
  transform: scaleY(1);
  transform-origin: bottom;
}
#head_toi a {
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  background: #574191;
  border: solid 1px #574191;
  transition: 0.6s all;
}
#head_toi a:hover {
  color: #574191;
  background: #fff;
  opacity: 1;
}
/*
-----------------------------------------------
▼スクロールヘッダー
----------------------------------------------- */
.is-animation .head_logo {
  transition: 0.6s all;
  opacity: 1;
}
header.is-animation {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.2);
}

header.is-animation .head_logo a{
  pointer-events: auto;
}


/*
-----------------------------------------------
▼ヘッダーレスポンシブ
----------------------------------------------- */
@media screen and (max-width: 1360px) {
  .head_logo {
    max-width: auto;
    width: 15vw;
  }
  .menu-list li a {
    font-size: 1.4vw;
  }
  .menu-item a {
    padding-left: 0.5vw;
    padding-right: 0.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .menu-list {
    display: none;
  }
  .head_logo {
    opacity: 1 !important;
    width: 28vw;
  }

.head_logo a{
  pointer-events: auto;
}

}
@media screen and (max-width: 650px) {
  header {
    height: 16vw;
  }
  .head_logo {
    width: 34vw;
  }
}
/*
-----------------------------------------------
▼スクロールヘッダー　レスポンシブ
----------------------------------------------- */
@media screen and (max-width: 1410px) {}

/*
-----------------------------------------------
▼共通
----------------------------------------------- */
main {
  margin-top: 90px;
}

.link_type01 {
  position: relative;
  display: inline-block;
  padding-left: 12px;
  padding-right: 24px;
  color: #574191;
  border-bottom: solid 1px #574191;
}
.link_type01:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #574191;
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  margin: auto;
  transition: 0.3s all;
}
.link_type01:hover:after {
  right: 0;
}
.link_type01:hover {
  opacity: 0.6;
}
.in_box01 {
  width: 1110px;
  margin-left: auto;
  margin-right: auto;
}
.in_box02 {
  width: 1370px;
  margin-left: auto;
  margin-right: auto;
}

.btn_type01 {
  display: block;
  text-align: center;
  width: 260px;
  height: 56px;
  line-height: 54px;
  color: #574191;
  border: solid 1px #574191;
  font-size: 1.8rem;
  background: #fff;
}
.btn_type01 span {
  position: relative;
  margin-left: -1em;
}
.btn_type01 span:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #574191;
  position: absolute;
  top: 2px;
  right: -20px;
  bottom: 0;
  margin: auto;
  transition: 0.3s all;
}
.btn_type01:hover {
  color: #fff;
  background: #574191;
}
.btn_type01:hover span:after {
  border-color: transparent transparent transparent #fff;
}

/*
-----------------------------------------------
▼共通　レスポンシブ
----------------------------------------------- */
@media screen and (max-width: 1430px) {
.in_box02 {
  width: 92vw;
}
}

@media screen and (max-width: 1240px) {
.in_box01 {
  width: 92vw;
}

.btn_type01 {
  width: 23vw;
  height: 50px;
  line-height: 48px;
  font-size: 1.55vw;
}
}

@media screen and (max-width: 650px) {
  header {
    height: 16vw;
  }
  .head_logo {
    width: 34vw;
  }

main {
  margin-top: 16vw;
}

.btn_type01 {
  width: 44vw;
  height: 44px;
  line-height: 42px;
  font-size: 3.3vw;
}

.btn_type01 span:after {
  border-width: 5px 0 5px 7px;
  right: -3.5vw;
}

}

/*
-----------------------------------------------
▼フッター
----------------------------------------------- */
footer {
  border-top: solid 1px #999;
}
.font_ic {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
footer .font_ic a {
  color: #999;
  font-size: 4.5rem;
}
footer .font_ic {
  column-gap: 20px;
}
footer .font_ic a:hover {
  opacity: 0.6;
}
.foot_logo {
  padding: 50px 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.foot_logo .p01 {
  font-size: 2.0rem;
  margin-top: 15px;
}
.foot_logo .tel {
  font-size: 2.0rem;
  margin-top: 5px;
  margin-bottom: 15px;
}
.foot_cr {
  color: #fff;
  background: #574191;
  text-align: center;
  padding: 20px 10px;
}


/*
-----------------------------------------------
▼フッター レスポンシブ
----------------------------------------------- */
@media screen and (max-width: 650px) {

.foot_logo img {
width:45vw;
}

.foot_logo .p01 {
  font-size: 1.5rem;
  margin-top: 10px;
}
.foot_logo .tel {
  font-size: 1.5rem;
  margin-top: 5px;
  margin-bottom: 10px;
}

.foot_cr {
  font-size:1.4rem;
  padding: 10px 5px;
}
.foot_logo {
  padding: 5vw 0 3vw;
}

footer .font_ic a {
  font-size: 3.5rem;
}
footer .font_ic {
  column-gap: 15px;
}

}

/* css_end */