@charset "UTF-8";
/*--◇全体--*/
/*色指定*/
:root {
  --main-color1:#ffffff;
  --main-color2:#242424;
  --main-color3:#3890C5;
  --main-color4:#3AC2DE;
  --main-color5:#EBF4FB;
  --main-color6:#fbbe06;
  --main-color7:#9e9e9e;
  --main-color8:#f77709;
  --main-color9:#53bd89;
  --main-color10:#00479d;
  --main-gray1:#dfdfdf;
  --main-gray2:#c2c2c2;
  --footer-color1:#FBF8F2;
}

/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*角丸*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントサイズを調整*/
/*影*/
/*グラデーション*/
/*--その他--*/
/*全体の調整*/
main.main-wrap {
  overflow-x: hidden;
  min-height: 100vh;
}
@media screen and (max-width: 820px) {
  main.main-wrap {
    padding-right: 0;
  }
}

/*文字デフォルト*/
div.ccm-page {
  height: 100vh;
}
div.ccm-page p {
  margin-bottom: 0.2em;
}
@media screen and (max-width: 540px) {
  div.ccm-page p {
    font-size: 0.9em;
  }
}

/*編集中のテキストブロックに余白を設ける*/
div.ccm-block-content-edit-inline textarea + div {
  padding: 5px;
}
div.ccm-block-content-edit-inline textarea + div table th, div.ccm-block-content-edit-inline textarea + div table td {
  min-width: 20px;
}

/*スマホのみ表示するクラス*/
.sp-only {
  display: none;
}
@media screen and (max-width: 540px) {
  .sp-only {
    display: block;
  }
}

/*タブレット2以下のみ表示するクラス*/
.tb2-only {
  display: none;
}
@media screen and (max-width: 820px) {
  .tb2-only {
    display: block;
  }
}

/*スマホのみ非表示のクラス*/
@media screen and (max-width: 540px) {
  .pc-only {
    display: none;
  }
}

/*スタックを透過*/
.col-md-12 .ccm-custom-style-main {
  background-image: unset;
}

/*--カスタムクラス--*/
/*conctainerの幅調整*/
.container-width {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 2%;
}
@media screen and (max-width: 540px) {
  .container-width {
    padding: 0 0;
  }
}

.container-width-s {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 2%;
}
@media screen and (max-width: 540px) {
  .container-width-s {
    padding: 0 0;
  }
}

/*スマートフォンで上下反転*/
@media screen and (max-width: 820px) {
  .sp-column-reverse .row {
    flex-direction: column-reverse;
  }
}

/*PC中央寄せ、スマートフォン左寄せ*/
.pc-center-sp-left p {
  text-align: center;
}
@media screen and (max-width: 540px) {
  .pc-center-sp-left p {
    text-align: left;
  }
}
.pc-center-sp-left div {
  text-align: center;
}
@media screen and (max-width: 540px) {
  .pc-center-sp-left div {
    text-align: left;
  }
}

p.pc-center-sp-left {
  text-align: center;
}
@media screen and (max-width: 540px) {
  p.pc-center-sp-left {
    text-align: left;
  }
}

/*背景色*/
.bg-color {
  position: relative;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 20px 20px;
  border: 2px solid var(--main-color1);
  z-index: 1;
  border-radius: 10px;
}
@media screen and (max-width: 540px) {
  .bg-color {
    padding: 10px 5px;
  }
}

.bg-color-gray {
  position: relative;
  background-color: #f9f9f9;
  padding: 20px 20px;
  border: 2px solid var(--main-color1);
  z-index: 1;
}
@media screen and (max-width: 540px) {
  .bg-color-gray {
    padding: 10px 5px;
  }
}

.bg-color-white {
  position: relative;
  background-color: var(--main-color1);
  z-index: 1;
}

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

.relative {
  position: relative;
}

/*--カスタム：テキストブロック--*/
/*表デザインnormal*/
table.table_normal {
  border-collapse: collapse;
  width: 100%;
}
table.table_normal th, table.table_normal td {
  border-top: 1px solid var(--main-gray2);
  border-bottom: 1px solid var(--main-gray2);
  padding: 0.5em 0.5em 0.5em 1em;
  min-width: 5.5em;
}
@media screen and (max-width: 820px) {
  table.table_normal th, table.table_normal td {
    display: block;
    padding: 0.4em 0.4em;
    font-size: 0.9em;
  }
}
table.table_normal th {
  color: var(--main-color2);
  text-align: left;
  min-width: 25%;
  background-color: var(--main-gray1);
}
@media screen and (max-width: 820px) {
  table.table_normal th {
    border-bottom: none;
    width: 100%;
  }
}
table.table_normal td {
  background-color: var(--main-color1);
}
@media screen and (max-width: 820px) {
  table.table_normal td {
    border-top: none;
    border-bottom: 1px solid var(--main-color5);
  }
}

table.table_normal.white th, table.table_normal.white td {
  background-color: var(--main-color1);
}
@media screen and (max-width: 820px) {
  table.table_normal.white th {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 820px) {
  table.table_normal.white td {
    padding-top: 0.25em;
  }
}

/*表デザイン01*/
table.table_design01 {
  border-collapse: collapse;
  width: 100%;
}
table.table_design01 th, table.table_design01 td {
  border: 2px solid var(--main-color5);
  background-color: var(--main-color1);
  padding: 0.7em 1em;
}
@media screen and (max-width: 820px) {
  table.table_design01 th, table.table_design01 td {
    display: block;
    padding: 0.4em 0.4em;
    border: none;
    font-size: 0.9em;
  }
}
table.table_design01 th {
  background-color: var(--main-color3);
  color: var(--main-color1);
  font-weight: 500;
  text-align: center;
  width: 20%;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  table.table_design01 th {
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  table.table_design01 td {
    border-bottom: 2px solid var(--main-color1);
  }
}

/*丸ul*/
ul.maru_ul {
  list-style: none;
  padding-left: 0.2em;
}
ul.maru_ul li {
  position: relative;
  padding-left: 1.1em;
}
@media screen and (max-width: 540px) {
  ul.maru_ul li {
    font-size: 0.9em;
  }
}
ul.maru_ul li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--main-color3);
  border-radius: 4px;
}

/*数字ol*/
ol.num_ol {
  list-style: none;
  counter-reset: listnum;
  padding-left: 0.3em;
}
ol.num_ol li {
  position: relative;
  padding-left: 1em;
  text-indent: -1.2em;
}
@media screen and (max-width: 540px) {
  ol.num_ol li {
    font-size: 0.9em;
  }
}
ol.num_ol li::before {
  counter-increment: listnum;
  content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
  padding-right: 0.2em;
  color: var(--main-color3);
  vertical-align: baseline;
  font-size: 1.05em;
  font-family: "Roboto", sans-serif;
  font-weight: 750;
}

/*webボタン*/
div.ccm-page a.webbtn1 {
  position: relative;
  display: inline-block;
  padding: 0.8em 1.25em;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--main-color1);
  background-color: var(--main-color9);
  border: 2px solid var(--main-color9);
  border-radius: 2em;
  transition: all 0.3s;
}
div.ccm-page a.webbtn1:hover {
  color: var(--main-color9);
  background-color: var(--main-color1);
}

div.ccm-page a.webbtn2 {
  position: relative;
  display: inline-block;
  padding: 0.8em 1.25em;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--main-color1);
  background-color: var(--main-color6);
  outline: solid 1px var(--main-color1);
  outline-offset: -4px;
  transition: all 0.3s;
  z-index: 2;
}
div.ccm-page a.webbtn2:hover {
  color: var(--main-color6);
  outline-color: var(--main-color6);
  background-color: var(--main-color1);
}

/*色の囲み*/
span.color-border-block {
  display: inline-block;
  padding: 0 0.2em 0.05em 0.3em;
  margin-right: 0.3em;
  color: var(--main-color10);
  border: 1px solid var(--main-color10);
}

span.color-block {
  display: inline-block;
  padding: 0.5em 0.75em;
  background-color: var(--main-color10);
  color: var(--main-color1);
  font-weight: 500;
  margin-right: 0.5em;
  border-radius: 5px;
}

/*黄色マーカー*/
.yellow_marker {
  background: linear-gradient(transparent 60%, #fae6a0 60%);
}

/*フォント調整*/
.fontsize-12 {
  font-size: 1.2em;
}

/*見出し*/
div.ccm-page h1 {
  position: relative;
  text-align: center;
  font-family: "Roboto", "Noto Sans JP";
  font-size: 1.8em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 540px) {
  div.ccm-page h1 {
    font-size: 1.5em;
  }
}

div.ccm-page h2 {
  position: relative;
  font-family: "Roboto", "Noto Sans JP";
  font-size: 1.75em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 0.05em 0.1em 0.05em 0.55em;
  border-left: 5px solid var(--main-color3);
  background-color: var(--main-color1);
}
@media screen and (max-width: 540px) {
  div.ccm-page h2 {
    font-size: 1.5em;
  }
}

div.ccm-page h3 {
  font-family: "Roboto", "Noto Sans JP";
  border-left: 5px solid var(--main-color3);
  padding-left: 0.35em;
  font-size: 1.25em;
  font-weight: 650;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  div.ccm-page h3 {
    font-size: 1.1em;
  }
}

div.ccm-page h4 {
  font-family: "Roboto", "Noto Sans JP";
  position: relative;
  display: table;
  color: var(--main-color3);
  padding: 0.25em 0em;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  div.ccm-page h4 {
    font-size: 1.05em;
  }
}

div.ccm-page h5 {
  font-family: "Roboto", "Noto Sans JP";
  color: var(--main-color9);
  padding: 0.25em 0em;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  div.ccm-page h5 {
    font-size: 1.05em;
  }
}

div.ccm-page h6 {
  position: relative;
  color: var(--main-color2);
  font-family: "Roboto", "Noto Sans JP";
  padding: 0.25em 0em;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 540px) {
  div.ccm-page h6 {
    font-size: 1em;
  }
}

/*余白*/
.margin-pc100-sp50 {
  height: 100px;
}
@media screen and (max-width: 540px) {
  .margin-pc100-sp50 {
    height: 50px;
  }
}

/*header*/
header#org {
  position: relative;
}
header#org #header-box {
  position: absolute;
  display: flex;
  width: 100%;
  z-index: 99;
}
header#org #header-box .header-logo {
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-width: 250px;
  width: 100%;
}
header#org #header-box .header-navi {
  width: 100%;
}
header#org #header-box .header-navi .global-btn {
  position: fixed;
  top: 0;
  right: 100px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 99;
}
@media screen and (max-width: 540px) {
  header#org #header-box .header-navi .global-btn {
    display: none;
  }
}
header#org #header-box .header-navi .global-btn a > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 15px;
  color: var(--main-color3);
  border: 1px solid transparent;
  text-align: center;
  font-size: 0.9em;
}
header#org #header-box .header-navi .global-btn a > div img {
  width: 35px;
}
header#org #header-box .header-navi .global-btn a:hover > div {
  color: var(--main-color8);
}

/*ハンバーガーメニュー（jsにて切り替え）*/
#hamburger-btn {
  position: fixed;
  display: block;
  width: 65px;
  height: 65px;
  top: 10px;
  right: 15px;
  caret-color: transparent;
  cursor: pointer;
  border: 2px solid var(--main-color3);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  z-index: 100;
}
#hamburger-btn .box {
  position: relative;
  padding: 0 10px;
}
#hamburger-btn .box span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  height: 2px;
  transform: translateX(-50%);
  background-color: var(--main-color2);
  width: 55%;
}
#hamburger-btn .box span:nth-child(1) {
  top: 20px;
}
#hamburger-btn .box span:nth-child(2) {
  top: 28px;
}
#hamburger-btn .box span:nth-child(3) {
  top: 36px;
}
#hamburger-btn.active .box span:nth-of-type(1) {
  top: 23px;
  transform: translateX(-50%) translateY(6px) rotate(-45deg);
  width: 30%;
}
#hamburger-btn.active .box span:nth-of-type(2) {
  opacity: 0;
}
#hamburger-btn.active .box span:nth-child(3) {
  top: 35px;
  transform: translateX(-50%) translateY(-6px) rotate(45deg);
  width: 30%;
}

#global-nav-area { /*グローバルナビ*/
  display: flex;
  justify-content: flex-end;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: all 0.2s;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  overflow-x: hidden;
}
#global-nav-area.view {
  opacity: 1;
  pointer-events: all;
}
#global-nav-area.view .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color3);
  opacity: 0.4;
  z-index: 0;
}
#global-nav-area.view .global-nav {
  transform: translateX(0);
}
#global-nav-area .global-nav {
  position: relative;
  padding: 3%;
  padding-top: 100px;
  padding-bottom: 50px;
  min-width: 25%;
  background-color: var(--main-color1);
  z-index: 1;
  transform: translateX(100%);
  transition: all 0.25s ease-out;
  overflow-y: scroll;
}
@media screen and (max-width: 820px) {
  #global-nav-area .global-nav {
    padding-top: 80px;
  }
}
@media screen and (max-width: 540px) {
  #global-nav-area .global-nav {
    padding-right: 3%;
    padding-left: 3%;
    width: 100%;
  }
}
#global-nav-area .global-nav > ul {
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 540px) {
  #global-nav-area .global-nav > ul {
    font-size: 1em;
  }
}
#global-nav-area .global-nav > ul > li {
  margin-bottom: 0.8em;
}
@media screen and (max-width: 820px) {
  #global-nav-area .global-nav > ul > li {
    margin-bottom: 1em;
  }
}
#global-nav-area .global-nav > ul > li a {
  display: block;
  min-width: 250px;
  text-decoration: none;
  color: var(--main-color2);
  font-weight: 700;
  padding: 0.5em 0.5em 0.5em 0.5em;
  transition: all 0.3s;
  z-index: 2;
  font-weight: 600;
}
#global-nav-area .global-nav > ul > li a:hover {
  color: var(--main-color1);
  background-color: var(--main-color9);
}

/*footer*/
footer {
  position: relative;
  z-index: 2;
  background-color: var(--footer-color1);
}
footer a {
  color: var(--main-color2) !important;
}
footer a:hover {
  opacity: 0.5;
}

.footer-top .footer-top-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 0.6fr;
  -moz-column-gap: 1em;
       column-gap: 1em;
  padding: 70px 3% 80px 3%;
}
@media screen and (max-width: 1025px) {
  .footer-top .footer-top-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 540px) {
  .footer-top .footer-top-inner {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
.footer-top .footer-top-inner .footer-column1 {
  font-size: 0.9em;
}
.footer-top .footer-top-inner .footer-column2 .ccm-block-page-list-pages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  padding-left: 2em;
}
@media screen and (max-width: 540px) {
  .footer-top .footer-top-inner .footer-column2 .ccm-block-page-list-pages {
    padding-left: 0;
  }
}
.footer-top .footer-top-inner .footer-column2 .ccm-block-page-list-pages a {
  font-size: 0.9em;
  font-weight: 500;
}
.footer-top .footer-top-inner .footer-column3 {
  border-left: 1px solid var(--main-gray2);
}
@media screen and (max-width: 1025px) {
  .footer-top .footer-top-inner .footer-column3 {
    border-top: 1px solid var(--main-gray2);
    border-left: none;
  }
}
.footer-top .footer-top-inner .footer-column3 .link-box {
  padding-left: 2em;
}
@media screen and (max-width: 1025px) {
  .footer-top .footer-top-inner .footer-column3 .link-box {
    padding-left: 0;
    padding-top: 2em;
  }
}
.footer-top .footer-top-inner .footer-column3 .link-box a {
  font-size: 0.9em;
  display: block;
  margin-bottom: 1em;
}
.footer-top .footer-top-inner .footer-column3 .link-box a .btn-box img {
  width: 35px;
}

.footer-middle {
  text-align: center;
  padding: 1em;
}
.footer-middle .other-btns a {
  font-size: 0.85em;
}

.footer-bottom {
  font-size: 0.8em;
  background-color: var(--main-color1);
  color: var(--main-color1);
}
.footer-bottom #footer-wave {
  position: relative;
}
.footer-bottom #footer-wave > div {
  position: absolute;
  width: 100%;
  height: 50px;
  background-repeat: repeat-x;
  background-position-x: 0;
  animation: wave-anime 2.5s linear infinite, wave-anime-tate 4s ease-in-out infinite;
  z-index: 10;
}
@keyframes wave-anime {
  0% {
    background-position-x: 0;
    -webkit-mask-position: 0 0;
            mask-position: 0 0;
  }
  100% {
    background-position-x: 400px;
    -webkit-mask-position: 400px 0;
            mask-position: 400px 0;
  }
}
@keyframes wave-anime-tate {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.footer-bottom #slider-in-footer .img {
  width: 100%;
  aspect-ratio: 16/10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}
@media screen and (max-width: 540px) {
  .footer-bottom #slider-in-footer .img {
    aspect-ratio: 4/3;
  }
}

/*背景の水アニメーション*/
#bg-wave {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: var(--main-color1);
  z-index: -1;
}
#bg-wave .bg1 {
  height: 100%;
}
#bg-wave .bg1 .wave {
  width: 100%;
  height: 50px;
  background-repeat: repeat-x;
  background-position-x: 0;
  animation: wave-anime 2.5s linear infinite, wave-anime-tate2 4s ease-in-out infinite;
  background-color: var(--main-color5);
}
#bg-wave .bg1 .bg {
  height: 100%;
  background-color: var(--main-color5);
}
@keyframes wave-anime-tate2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
#bg-wave .bg2 {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30vh;
}
#bg-wave .bg2 .wave {
  width: 100%;
  height: 50px;
  background-repeat: repeat-x;
  background-position-x: 0;
  animation: wave-anime 2.7s linear infinite, wave-anime-tate2 4.2s ease-in-out infinite;
  background-color: #d7e3fb;
}
#bg-wave .bg2 .bg {
  height: 100%;
  background-color: #d7e3fb;
}

/*mv*/
#slider-mv {
  margin: 100px 8% 30px 8%;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  #slider-mv {
    margin: 100px 3% 30px 3%;
  }
}
#slider-mv .splide .item {
  position: relative;
  width: 100%;
  height: calc(100vh - 150px);
}
@media screen and (max-width: 1025px) {
  #slider-mv .splide .item {
    max-height: 900px;
  }
}
@media screen and (max-width: 820px) {
  #slider-mv .splide .item {
    height: auto;
    aspect-ratio: 1/1.2;
  }
}
#slider-mv .splide .item img {
  border-radius: 10px;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#top-koshiki-img-box {
  position: relative;
}
#top-koshiki-img-box img {
  position: absolute;
  bottom: -10px;
  right: 0px;
  opacity: 0;
  animation: 1s ease-out 0.8s forwards koshiki-img-anime;
}
@media screen and (max-width: 820px) {
  #top-koshiki-img-box img {
    width: 50%;
  }
}

@keyframes koshiki-img-anime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
/*トップページのナビゲーション*/
.top-page-navi {
  position: relative;
}
@media screen and (max-width: 820px) {
  .top-page-navi {
    display: none;
  }
}
.top-page-navi .box {
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 3%;
  padding: 1.6em;
  border: 2px solid var(--main-color3);
  background-color: var(--main-color1);
  border-radius: 10px;
}
.top-page-navi .box ul {
  padding-left: 0;
  margin-bottom: 0;
}
.top-page-navi .box ul li {
  list-style: none;
  margin-bottom: 0.2em;
}
.top-page-navi .box ul li a {
  display: block;
  font-size: 1.1em;
  padding: 0.2em 0.25em;
  color: var(--main-color2);
}
@media screen and (max-width: 1025px) {
  .top-page-navi .box ul li a {
    font-size: 1em;
  }
}
.top-page-navi .box ul li a:hover {
  color: var(--main-color1);
  background-color: var(--main-color9);
}

/*TOP用見出し*/
div.ccm-page h2.top-page {
  font-size: 1.8em;
  border-left: none;
  background-color: transparent;
  padding: 0.025em 0 0.025em 0;
}
@media screen and (max-width: 540px) {
  div.ccm-page h2.top-page {
    font-size: 1.5em;
  }
}

.top-page-h-eng {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--main-color9);
  font-family: "Roboto";
}
@media screen and (max-width: 540px) {
  .top-page-h-eng {
    font-size: 0.9em;
  }
}

.message-h {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  .message-h {
    font-size: 1.3em;
  }
}

/*おすすめ（PickUp）*/
.osusume-wrap {
  padding: 0 5%;
}
.osusume-wrap ul.osusume-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -moz-column-gap: 3%;
       column-gap: 3%;
  row-gap: 3%;
  padding-left: 0;
}
@media screen and (max-width: 820px) {
  .osusume-wrap ul.osusume-box {
    grid-template-columns: 1fr 1fr;
  }
}
.osusume-wrap ul.osusume-box li {
  list-style: none;
  border: 2px solid var(--main-color3);
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--main-color1);
}
.osusume-wrap ul.osusume-box li a {
  display: block;
  background-color: var(--main-color1);
  transition: all 0.3s;
  color: var(--main-color2);
  height: 100%;
}
.osusume-wrap ul.osusume-box li a .thumbnail {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.osusume-wrap ul.osusume-box li a .thumbnail img {
  transition: all 0.3s;
}
.osusume-wrap ul.osusume-box li a .title {
  font-size: 1.15em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 0.5em 5% 0.25em 5%;
  color: var(--main-color10);
}
@media screen and (max-width: 540px) {
  .osusume-wrap ul.osusume-box li a .title {
    font-size: 1em;
  }
}
.osusume-wrap ul.osusume-box li a .description {
  padding: 0.25em 5% 0.8em 5%;
}
@media screen and (max-width: 540px) {
  .osusume-wrap ul.osusume-box li a .description {
    font-size: 0.9em;
  }
}
.osusume-wrap ul.osusume-box li a:hover {
  background-color: var(--main-color5);
}
.osusume-wrap ul.osusume-box li a:hover .thumbnail img {
  transform: scale(1.15);
}

.cover-parts-box {
  position: relative;
  margin-bottom: 20px;
}
.cover-parts-box .fade-in-parts {
  position: absolute;
  bottom: -50px;
  left: -50px;
}
@media screen and (max-width: 1025px) {
  .cover-parts-box .fade-in-parts {
    height: 200px;
    bottom: -10px;
  }
}
@media screen and (max-width: 820px) {
  .cover-parts-box .fade-in-parts {
    left: -10px;
  }
}

.top-lineup-area {
  width: 100%;
  height: auto;
  border: 2px solid var(--main-color1);
  border-radius: 10px;
  overflow: hidden;
}
.top-lineup-area .wrap {
  width: 100%;
  height: 100%;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 2.5em 5% 4.5em 5%;
}
@media screen and (max-width: 820px) {
  .top-lineup-area .wrap {
    padding: 2.5em 3% 4em 3%;
  }
}
.top-lineup-area .wrap h2 {
  color: var(--main-color1);
  display: inline-block;
}
.top-lineup-area .wrap .info {
  max-width: 450px;
  margin: 0 0 0 auto;
}
.top-lineup-area .wrap .info h6 {
  color: var(--main-color1);
  font-size: 1.4em;
  font-weight: 500;
}
.top-lineup-area .wrap .info h6 span {
  color: var(--main-color10);
  text-shadow: 1px 1px 0 var(--main-color5), -1px -1px 0 var(--main-color5), -1px 1px 0 var(--main-color5), 1px -1px 0 var(--main-color5), 0px 1px 0 var(--main-color5), 0 -1px 0 var(--main-color5), -1px 0 0 var(--main-color5), 1px 0 0 var(--main-color5);
}
@media screen and (max-width: 540px) {
  .top-lineup-area .wrap .info h6 {
    font-size: 1.2em;
  }
}
.top-lineup-area .wrap .info p {
  color: var(--main-color1);
  line-height: 1.8;
  margin-bottom: 2em;
}

/*中間のスライダー*/
.slider-middle-wave-top > div {
  width: 100%;
  height: 50px;
  background-repeat: repeat-x;
  background-position-x: 0;
}
@media screen and (max-width: 540px) {
  .slider-middle-wave-top > div {
    height: 25px;
    background-size: 50%;
  }
}

#slider-middle {
  width: 100%;
}
#slider-middle img {
  border-radius: 10px;
}

.slider-middle-wave-bottom > div {
  position: absolute;
  width: 100%;
  height: 50px;
  background-repeat: repeat-x;
  background-position-x: 0;
}
@media screen and (max-width: 540px) {
  .slider-middle-wave-bottom > div {
    height: 25px;
    background-size: 50%;
  }
}

.service-item-box {
  display: grid;
  aspect-ratio: 16/6;
  grid-template-columns: 1.35fr 1fr;
  max-width: 450px;
  margin: 0 auto;
  background-color: var(--main-color3);
  border: 2px solid var(--main-color3);
  border-radius: 10px;
  overflow: hidden;
}
.service-item-box:hover .l > div {
  transform: scale(1.15);
}
.service-item-box .r {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25em 0.5em 1.25em 2em;
  color: var(--main-color1);
  font-size: 0.95em;
}
.service-item-box .r span {
  font-size: 1.3em;
  font-weight: 600;
}
.service-item-box .l {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.service-item-box .l > div {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s;
}

/*問合せ３つのカード*/
a.info-item-box {
  color: var(--main-color2) !important;
  display: block;
  padding: 1em 1.5em;
  border: 2px solid var(--main-color3);
  background-color: var(--main-color1);
  margin-bottom: 20px;
  border-radius: 10px;
  min-height: 130px;
}
a.info-item-box:hover {
  color: var(--main-color2) !important;
  background-color: var(--main-color5);
}
a.info-item-box .strong {
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 0.1em;
}

/*装飾*/
.fish-box {
  position: relative;
  height: 30px;
}
.fish-box .fish {
  position: absolute;
  bottom: 0;
  pointer-events: none;
}
@media screen and (max-width: 820px) {
  .fish-box .fish {
    max-width: 250px;
    bottom: -30px;
  }
}
@media screen and (max-width: 540px) {
  .fish-box .fish {
    max-width: 200px;
  }
}

.w-font .yellow_marker {
  background: linear-gradient(transparent 60%, #0d9955 60%);
}
.w-font span.color-border-block {
  color: var(--main-color6);
  border-color: var(--main-color6);
}

/*◇サブページ*/
#sub-page-top {
  margin: 80px 0 30px 0;
}
#sub-page-top .frame {
  width: 100%;
  aspect-ratio: 10/2.5;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
  background-color: var(--main-color3);
  border-radius: 10px;
}
@media screen and (max-width: 820px) {
  #sub-page-top .frame {
    aspect-ratio: 10/3.5;
    margin-bottom: 40px;
  }
}
#sub-page-top .top-page-h-eng {
  text-align: center;
}

#breadcrumb-adjustment li.breadcrumb-item {
  font-size: 0.9em;
}
@media screen and (max-width: 540px) {
  #breadcrumb-adjustment li.breadcrumb-item {
    font-size: 0.8em;
  }
}

.sub-bold-h {
  font-size: 1.7em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--main-color2);
  font-family: "Roboto", sans-serif;
  background-color: var(--main-color1);
  padding: 0.75em 0.4em 0.8em 0.4em;
  text-align: center;
  border-radius: 10px 0 10px 0;
}
@media screen and (max-width: 540px) {
  .sub-bold-h {
    font-size: 1.4em;
    text-align: left;
  }
}
.sub-bold-h span {
  color: var(--main-color10);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.25));
}

/*レガシーフォーム調整*/
.hrs_legacyform .form-group {
  margin-bottom: 20px !important;
}
.hrs_legacyform .form-group label span.text-muted {
  opacity: 1;
  font-size: 0.8em;
  color: var(--main-color1) !important;
  padding: 0.15em 0.5em 0.25em 0.5em;
  background-color: var(--main-color4);
}
.hrs_legacyform input[type=submit] {
  background-color: var(--main-color10);
  border-color: var(--main-color10);
}
.hrs_legacyform input[type=submit]:focus {
  border-color: var(--main-color3);
}
.hrs_legacyform .checkboxList {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 540px) {
  .hrs_legacyform .checkboxList {
    display: block;
  }
}
.hrs_legacyform .checkboxList .form-check {
  margin-right: 1.5em;
}

/*faq*/
.org_faq .ccm-faq-entry-content {
  margin-bottom: 40px;
}
.org_faq .ccm-faq-entry-content h6 {
  pointer-events: auto;
  cursor: pointer;
}

.img-radius img {
  border-radius: 10px;
}

#osusumeh1-wrap {
  padding: 30px 0 10px 0;
}

#recruit-mv {
  width: 100%;
  max-width: 100vw;
  height: auto;
  margin-top: 100px;
}
#recruit-mv .splide__track {
  min-height: 200px;
}
#recruit-mv img {
  border-radius: 10px;
}

.recruit-cathc-copy {
  margin-bottom: 50px;
  padding: 0 5%;
}
.recruit-cathc-copy .main {
  font-size: 2em;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--main-color3);
  filter: drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.1)) drop-shadow(0px 3px 6px rgba(50, 50, 50, 0.16));
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 820px) {
  .recruit-cathc-copy .main {
    text-align: left;
  }
}
@media screen and (max-width: 540px) {
  .recruit-cathc-copy .main {
    font-size: 1.5em;
  }
}
.recruit-cathc-copy .sub {
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .recruit-cathc-copy .sub {
    text-align: left;
  }
}
@media screen and (max-width: 540px) {
  .recruit-cathc-copy .sub {
    font-size: 1em;
  }
}

div.ccm-page .recruit-h {
  margin-bottom: 3em;
}
div.ccm-page .recruit-h h2 {
  text-align: center;
  border: none;
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
  color: var(--main-color10);
  font-size: 1.5em;
}
div.ccm-page .recruit-h .eng {
  color: #00224b;
  text-align: center;
  font-family: "Prompt", sans-serif;
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
}
@media screen and (max-width: 540px) {
  div.ccm-page .recruit-h .eng {
    font-size: 2.5em;
  }
}

.recruit-info-box {
  position: relative;
  padding: 0 2%;
}
@media screen and (max-width: 540px) {
  .recruit-info-box {
    padding: 0 0;
  }
}
.recruit-info-box .flex-box {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  .recruit-info-box .flex-box {
    display: block;
  }
}
.recruit-info-box .flex-box .num {
  color: var(--main-color3);
  font-size: 3em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 540px) {
  .recruit-info-box .flex-box .num {
    font-size: 2em;
  }
}
.recruit-info-box .flex-box .text {
  padding-left: 30px;
}
@media screen and (max-width: 540px) {
  .recruit-info-box .flex-box .text {
    padding-left: 0;
  }
}
.recruit-info-box .flex-box .text .bold {
  font-size: 1.7em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  border-bottom: 1px solid var(--main-color3);
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 0.2em;
}
@media screen and (max-width: 820px) {
  .recruit-info-box .flex-box .text .bold {
    font-size: 1.4em;
    padding-bottom: 0.4em;
  }
}
.recruit-info-box .flex-box .text .normal {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
.recruit-info-box .flex-box .text .normal .sub {
  font-size: 1.2em;
  font-weight: 700;
  padding-top: 5px;
  padding-bottom: 5px;
  color: var(--main-color3);
}
@media screen and (max-width: 820px) {
  .recruit-info-box .flex-box .text .normal .sub {
    font-size: 1em;
  }
}

.merit-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 3%;
       column-gap: 3%;
  margin-bottom: 30px;
}
.merit-wrap .merit-box h6 {
  position: relative;
  text-align: left;
  padding-left: 1.2em;
}
.merit-wrap .merit-box h6::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  content: "";
  width: 0.8em;
  aspect-ratio: 1/1;
  background-color: var(--main-color9);
  border-radius: 50%;
}/*# sourceMappingURL=koshiki2.css.map */