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

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
  color: inherit;
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  transition: 0.2s;
  cursor: pointer;
}

p > a {
  display: inline;
  text-decoration: underline;
}
p > a:hover, p > a:active {
  text-decoration: none;
}

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

del {
  text-decoration: line-through;
}

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

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

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

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

/*--------------------------------------------------------------
	html/body
---------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  color: #222;
  line-height: 1.8;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.container {
  overflow: hidden;
}

/*--------------------------------------------------------------
	レスポンシブスイッチ
----------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

/*------------------------------------------------------
	タイトル / テキスト
--------------------------------------------------------*/
.heading-xl {
  font-size: 54px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .heading-xl {
    font-size: 32px;
    font-size: 8.5333333333vw;
  }
}

.heading-l {
  font-size: 36px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .heading-l {
    font-size: 26px;
    font-size: 6.9333333333vw;
  }
}

.heading-m {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.5em;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .heading-m {
    margin-bottom: 10px;
    font-size: 22px;
    font-size: 5.8666666667vw;
  }
}

.heading-s {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .heading-s {
    margin-bottom: 10px;
    font-size: 18px;
    font-size: 4.8vw;
  }
}

.heading-xs {
  font-size: 20px;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .heading-xs {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}

/*------------------------------------------------------
	カラー
--------------------------------------------------------*/
.wh-txt {
  color: #fff !important;
}

/*------------------------------------------------------
	ボタン
--------------------------------------------------------*/
.btn {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 60px auto 0;
}
.btn button, .btn a {
  position: relative;
  display: block;
  width: 300px;
  height: 65px;
  border: 2px solid #2e3640;
  line-height: 65px;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .btn button, .btn a {
    width: 100%;
  }
}
.btn button::after, .btn a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  transition: 0.3s;
  top: calc(50% - 3px);
}
.btn a {
  background-color: #2e3640;
  color: #fff;
}
.btn a::after {
  right: 30px;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.btn a:hover {
  background-color: #fff;
  color: #2e3640;
}
.btn a:hover::after {
  right: 25px;
  border-color: #2e3640;
}
.btn button[type=submit] {
  background-color: #2e3640;
  color: #fff;
}
.btn button[type=submit]::after {
  right: 3rem;
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.btn button[type=submit]:hover {
  background-color: #fff;
  color: #2e3640;
}
.btn button[type=submit]:hover::after {
  right: 25px;
  border-color: #2e3640;
}
.btn button[type=button] {
  background-color: #fff;
  color: #2e3640;
}
.btn button[type=button]::after {
  left: 30px;
  transform: rotate(-135deg);
  border-top: 2px solid #2e3640;
  border-right: 2px solid #2e3640;
}
.btn button[type=button]:hover {
  background-color: #2e3640;
  color: #fff;
}
.btn button[type=button]:hover::after {
  left: 25px;
  border-color: #fff;
}

/*------------------------------------------------------
	ホバーアクション
--------------------------------------------------------*/
a img {
  transition: 0.2s;
}
a img:hover {
  opacity: 0.7;
}

/*------------------------------------------------------
	幅
--------------------------------------------------------*/
.sec-in {
  width: min(90%, 1100px);
  margin: 0 auto 9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  .sec-in {
    margin: 0 auto 100px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-in {
    width: 100%;
    margin: 0 auto 13.3333333333vw;
    padding: 0 5.3333333333vw;
  }
}
.sec-in.sec-in-bg {
  padding: 9.0909090909vw 0;
  margin: 0 auto;
}
@media only screen and (min-width: 1100px) {
  .sec-in.sec-in-bg {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  .sec-in.sec-in-bg {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
.sec-in p small {
  font-size: 1.4rem;
}

.under_page section:not(:last-of-type) {
  margin-bottom: 120px;
}

/*------------------------------------------------------
	flex レイアウト
--------------------------------------------------------*/
.flex {
  display: flex;
}

.f-sb {
  justify-content: space-between;
}

.f-ed {
  justify-content: flex-end;
}

.f-ct {
  justify-content: center;
}

.f-wp {
  flex-wrap: wrap;
}

.f-ic {
  align-items: center;
}

/* ---------------------------------------------
パンくず
------------------------------------------------*/
.topic-path {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 90%;
  margin: 10px auto 9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  .topic-path {
    margin-bottom: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .topic-path {
    margin-bottom: 13.3333333333vw;
    font-size: 1rem;
  }
}
.topic-path li {
  margin-right: 10px;
  font-size: 1.2rem;
  padding-left: 15px;
  box-sizing: border-box;
  position: relative;
}
.topic-path li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
}
.topic-path li:first-of-type {
  padding-left: 0;
}
.topic-path li:first-of-type::before {
  display: none;
}
.topic-path li a {
  display: block;
  opacity: 0.5;
}
.topic-path li a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
	リスト
----------------------------------------------------------------*/
.disc,
.decimal {
  margin-left: 1.2em;
}
.disc li,
.decimal li {
  list-style-type: disc;
  text-align: left;
  margin-bottom: 10px;
}
.disc li > .disc, .disc li > .decimal,
.decimal li > .disc,
.decimal li > .decimal {
  margin: 15px 0 15px 1.2em;
}

.decimal li {
  list-style-type: decimal;
}

/*--------------------------------------------------------------
	表示位置
----------------------------------------------------------------*/
.taC {
  text-align: center !important;
}

.taL {
  text-align: left !important;
}
@media only screen and (max-width: 767px) {
  .taL {
    text-align: center !important;
  }
}

.taR {
  text-align: right !important;
}

/*--------------------------------------------------------------
	スクロールアニメーション
----------------------------------------------------------------*/
.inview {
  opacity: 0;
  position: relative;
}
.inview.animate {
  animation: inview_slide_up 2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards 0.2s;
}

.inview-group .inview-list,
.inview-group .inview-list2 {
  opacity: 0;
  position: relative;
}

.inview-group .inview-list.animate {
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.2s;
}

.inview-group .inview-list2.animate {
  animation: inview_slide_up 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
}

@keyframes inview_slide_up {
  0% {
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------
	フォーム関連
----------------------------------------------------------------*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

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

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

/*--------------------------------------------------------------
	汎用CSS
----------------------------------------------------------------*/
.sec-ttl {
  margin-bottom: 7.2727272727vw;
  color: #2e3640;
  text-align: center;
}
@media only screen and (min-width: 1100px) {
  .sec-ttl {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-ttl {
    width: 100%;
    margin-bottom: 10.6666666667vw;
  }
}
.sec-ttl.wh {
  color: #fff;
}
.sec-ttl.wh span {
  color: #fff;
}
.sec-ttl span {
  display: block;
}
.sec-ttl span:nth-of-type(1) {
  font: normal 500 5.4rem/1.8 "Red Rose", serif;
  font-optical-sizing: auto;
}
@media only screen and (max-width: 767px) {
  .sec-ttl span:nth-of-type(1) {
    font-size: 4.8rem;
  }
}
.sec-ttl span:nth-of-type(2) {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: #222;
}
@media only screen and (max-width: 767px) {
  .sec-ttl span:nth-of-type(2) {
    margin-top: -2.6666666667vw;
    font-size: 2.8rem;
  }
}

.sec-sub-ttl {
  font-size: 2.4rem;
}
@media only screen and (max-width: 767px) {
  .sec-sub-ttl {
    font-size: 2rem;
  }
}

.main-u-v {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 36.3636363636vw;
  background-color: #2e3640;
  color: #777;
}
@media only screen and (min-width: 1100px) {
  .main-u-v {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .main-u-v {
    height: 53.3333333333vw;
    margin-top: 4rem;
  }
}
.main-u-v.top-center video {
  -o-object-position: 50% 13%;
     object-position: 50% 13%;
}
.main-u-v > img,
.main-u-v > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-u-v .main-u-v-in {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  width: 100%;
  text-align: center;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .main-u-v .main-u-v-in {
    transform: translate(-50%, -50%);
  }
}
.main-u-v .main-u-v-in h2 {
  position: relative;
}
.main-u-v .main-u-v-in h2 span:nth-of-type(1) {
  font-size: 5.8rem;
  font-weight: 500;
  font-family: "Red Rose", sans-serif;
}
@media only screen and (max-width: 767px) {
  .main-u-v .main-u-v-in h2 span:nth-of-type(1) {
    line-height: 1;
    font-size: 4.8rem;
  }
}
.main-u-v .main-u-v-in h2 span:nth-of-type(2) {
  display: block;
  margin-top: -15px;
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.29rem;
}
@media only screen and (max-width: 767px) {
  .main-u-v .main-u-v-in h2 span:nth-of-type(2) {
    margin-top: 0.5rem;
  }
}

.column-2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto 100px;
}

.main {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .main {
    width: 100%;
  }
}

.side {
  width: 24%;
}
@media only screen and (max-width: 767px) {
  .side {
    width: 100%;
    order: 2;
    margin-top: 10.6666666667vw;
  }
}
.side .box h3 {
  font-weight: bold;
  line-height: 1.4;
  padding: 2px 0 0 10px;
  border-left: 8px solid #2e3640;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .side .box h3 {
    font-size: 3.2rem;
  }
}
.side .box ul {
  border: 1px solid #ddd;
}
.side .box ul li {
  border-bottom: 1px solid #ddd;
}
.side .box ul li:last-child {
  border-bottom: none;
}
.side .box ul li a {
  padding: 14px 0 10px 12px;
}
.side .box ul li a:hover {
  transform: translateX(7px);
  color: #555;
}

.pagination ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.pagination ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #2e3640;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  color: #2e3640;
  transition: 0.2s ease-in-out;
}
.pagination ul li a:hover, .pagination ul li a.current {
  background: #2e3640;
  color: #fff;
}

.no-link {
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  height: 8.5rem;
  padding-bottom: 0.1rem;
  background: #0e3a4e linear-gradient(to right, #0e3a4e 0%, #292e37 100%) center no-repeat;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 2.5rem 5rem -1.2rem;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 767px) {
  .header {
    height: 5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
}
.header h1 {
  width: 21rem;
  margin-left: 3rem;
}
@media only screen and (max-width: 767px) {
  .header h1 {
    width: 12rem;
    margin-left: 1.5rem;
  }
}
.header h1 a, .header h1 img {
  display: block;
}
.header-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
  width: min(100%, 40rem);
  height: 100dvh;
  padding-top: 6rem;
  transform: scaleX(0);
  transform-origin: top right;
  transition: transform 0.3s;
}
@media only screen and (max-width: 767px) {
  .header-nav {
    padding-top: 40px;
  }
}
.header-nav input {
  display: none;
}
.header-nav label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  aspect-ratio: 1;
}
.header-nav label:hover, .header-nav label:active {
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .header-nav label {
    width: 4rem;
  }
}
.header-nav label::after {
  position: relative;
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 2;
  background-color: #f9662b;
  clip-path: polygon(0px 0px, 3px 0px, 10px 7px, 17px 0px, 20px 0px, 10px 10px);
  transform: rotateX(0deg);
  transition: transform 0.3s;
}
.header-nav .inner {
  height: 100%;
  padding: 20px;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.header-nav .inner > li {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #999;
}
.header-nav .inner > li:has(label) > a {
  width: calc(100% - 6rem);
}
@media only screen and (max-width: 767px) {
  .header-nav .inner > li:has(label) > a {
    width: calc(100% - 4rem);
  }
}
.header-nav .inner > li:has(label input:checked) label::after {
  transform: rotateX(180deg);
}
.header-nav .inner > li:has(label input:checked) .inner-menu {
  grid-template-rows: 1fr;
}
.header-nav .inner > li:has(label input:checked) .inner-menu ul {
  border-top: 1px solid #999;
}
.header-nav .inner-menu {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  transition: grid-template-rows 0.3s;
}
.header-nav .inner-menu > ul {
  overflow: hidden;
}
.header-nav .inner-menu li {
  margin-left: 20px;
}
.header-nav .inner-menu li:not(:last-of-type) {
  border-bottom: 1px solid #999;
}
.header-nav .inner a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 6rem;
  padding: 0.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Red Rose", "Noto Sans Japanese", "FP-ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Arial", "MS PGothic", osaka, sans-serif;
  font-optical-sizing: auto;
  color: #f9662b;
  transition: 0.2s;
}
.header-nav .inner a span {
  margin-right: 0.8rem;
  text-transform: lowercase;
}
@media only screen and (max-width: 767px) {
  .header-nav .inner a span {
    margin-right: 1rem;
  }
}
.header-nav .inner a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .header-nav .inner a {
    height: auto;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .header-nav .inner a.small {
    font-size: min(1.6rem, 4dvw);
  }
}
.header:has(.nav_toggle input:checked) {
  background-color: rgba(153, 153, 153, 0.3);
}
.header:has(.nav_toggle input:checked) .header-nav {
  transform: scaleX(1);
}
.header.on {
  background-color: rgba(46, 54, 64, 0.3);
}
.header .marquee {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 6rem;
}
@media only screen and (max-width: 767px) {
  .header .marquee {
    height: 4rem;
  }
}
.header .marquee::before {
  content: "Off the Road. On Your Terms.";
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 100%;
  white-space: nowrap;
  font-weight: 600;
  font-size: 2rem;
  font-family: "Red Rose", "Noto Sans Japanese", "FP-ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Arial", "MS PGothic", osaka, sans-serif;
  font-optical-sizing: auto;
  color: #f9662b;
  animation: marquee 60s linear 3s infinite;
}
@media only screen and (max-width: 767px) {
  .header .marquee::before {
    font-size: 1.2rem;
    animation-duration: 20s;
  }
}
.header::after {
  content: "";
  position: fixed;
  top: 8.4rem;
  left: 0%;
  z-index: -1;
  width: 100%;
  height: 21.5rem;
  background: transparent url(../img/common/bg_header.svg) top left/100% 100% no-repeat;
}
@media only screen and (max-width: 767px) {
  .header::after {
    top: 4.9rem;
    height: 28.6666666667vw;
  }
}

.nav_toggle {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  width: 12rem;
  padding: 1.5rem;
  height: 6rem;
}
.nav_toggle:hover, .nav_toggle:active {
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .nav_toggle {
    width: 40px;
    height: auto;
    aspect-ratio: 1;
    padding: 10px;
  }
}
.nav_toggle input {
  display: none;
}
.nav_toggle:has(input:checked) .toggle_icon span:nth-child(1) {
  top: 50%;
  transform: rotate(135deg);
}
.nav_toggle:has(input:checked) .toggle_icon span:nth-child(2) {
  opacity: 0;
}
.nav_toggle:has(input:checked) .toggle_icon span:nth-child(3) {
  top: 50%;
  transform: rotate(-135deg);
}
.nav_toggle:hover .toggle_icon span, .nav_toggle:active .toggle_icon span {
  background-color: #f9662b;
}
.nav_toggle:hover .toggle_label, .nav_toggle:active .toggle_label {
  color: #f9662b;
}

.toggle_icon {
  position: relative;
  width: 2.4rem;
  aspect-ratio: 1;
}
@media only screen and (max-width: 767px) {
  .toggle_icon {
    width: 100%;
  }
}
.toggle_icon span {
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
.toggle_icon span:nth-of-type(1) {
  top: 10%;
}
.toggle_icon span:nth-of-type(2) {
  top: 50%;
}
.toggle_icon span:nth-of-type(3) {
  top: 90%;
}
.toggle_label {
  text-transform: uppercase;
  font-family: "Red Rose", "Noto Sans Japanese", "FP-ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Arial", "MS PGothic", osaka, sans-serif;
  font-optical-sizing: auto;
  color: #fff;
  transition: color 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .toggle_label {
    display: none;
  }
}

@keyframes marquee {
  from {
    transform: translate(0);
  }
  to {
    transform: translate(-120%);
  }
}
.footer {
  background-color: #ababab;
  padding: 60px 0;
  position: relative;
  box-sizing: border-box;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .footer {
    height: auto;
    padding: 25px 20px;
  }
}
.footer .footer-in {
  width: 70rem;
  margin: 0 auto;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer .footer-in {
    width: 100%;
  }
}
.footer .footer-in .footer-nav-upper nav {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-in .footer-nav-upper nav ul {
    display: none;
  }
}
.footer .footer-in .footer-nav-upper nav ul li {
  position: relative;
  font-family: "Red Rose", "Noto Sans Japanese", "FP-ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "Arial", "MS PGothic", osaka, sans-serif;
  font-optical-sizing: auto;
  text-transform: uppercase;
}
.footer .footer-in .footer-nav-upper nav ul li a {
  transition: 0.2s;
}
.footer .footer-in .footer-nav-upper nav ul li a:hover {
  opacity: 0.4;
}
.footer .footer-in .footer-nav-upper nav ul li a span {
  text-transform: lowercase;
}
.footer .footer-in .logo {
  width: 160px;
  margin: 0 auto 40px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-in .logo {
    padding-bottom: 15px;
    width: 25%;
  }
}
.footer .footer-in .copy-light {
  font-size: 10px;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer .footer-in .copy-light {
    margin: 0 auto;
    line-height: 1.4em;
  }
}

.btn-to-top {
  display: none;
}
.btn-to-top a {
  width: 60px;
  height: 60px;
  background-color: #2e3640;
  position: fixed;
  right: 0;
  bottom: 0;
}
.btn-to-top a:after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(-45deg);
  position: absolute;
  top: 24px;
  left: 19px;
}
.btn-to-top.current {
  position: absolute;
  top: -34px;
  bottom: inherit;
}

#TOP {
  /*
  .header {
  	align-items: center;
  	justify-content: center;
  	height: 6rem;
  	background-color: rgba($color-1, 1);
  	background-image: none;

  	@include media(sp) {
  		height: 4rem;
  	}

  	h1 {
  		width: 16rem;
  		margin-left: 0;

  		@include media(sp) {
  			width: 12rem;
  		}
  	}

  	&::after {
  		background-image: url(../img/common/bg_header_top.svg);

  		@include media(pc) {
  			top: 5.9rem;
  		}

  		@include media(sp) {
  			top: 4rem;
  		}
  	}
  }
  */
}
#TOP .main-video {
  position: relative;
  width: 100%;
  height: 90dvh;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #TOP .main-video {
    height: 95dvh;
  }
}
#TOP .main-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(102, 102, 102, 0.8), rgba(0, 0, 0, 0.8));
  z-index: 1;
}
#TOP .main-video-bg {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#TOP .main-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -2;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: transparent url("../img/poster.jpg") center/cover no-repeat;
}
#TOP .main-video .scroll {
  display: inline-block;
  position: absolute;
  right: 45px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}
@media only screen and (max-width: 767px) {
  #TOP .main-video .scroll {
    font-size: 12px;
    font-size: 3.2vw;
    right: 20px;
  }
}
#TOP .main-video .scroll:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
#TOP .main-video figure {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(40px - 50%));
  z-index: 2;
  width: min(50%, 500px);
}
@media only screen and (max-width: 767px) {
  #TOP .main-video figure {
    width: 50%;
    transform: translate(-50%, -50%);
  }
}
@media only screen and (min-width: 768px) and (max-height: 768px) {
  #TOP .main-video figure {
    width: 100%;
    height: calc(100% - 130px);
  }
}
#TOP .main-video figure.off {
  visibility: hidden;
  opacity: 0;
}
#TOP .main-video figure.on {
  animation: fadein 10s cubic-bezier(0.5, 0, 0.8, 0) 7s 1 both;
}
@media only screen and (min-width: 768px) and (max-height: 768px) {
  #TOP .main-video figure img {
    display: block;
    width: auto;
    height: 100%;
    margin: 0 auto;
  }
}
#TOP .main-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 4rem;
  align-items: center;
  width: 100%;
  height: 40rem;
  background: transparent url("../img/top/bg_main_image.jpg") center/cover no-repeat;
}
@media only screen and (max-width: 767px) {
  #TOP .main-image {
    row-gap: 4rem;
    height: 50rem;
  }
}
#TOP .main-image .main-ttl {
  width: 100%;
  line-height: 1.6em;
  text-align: center;
  letter-spacing: 0.1em;
  font-style: italic;
  font-size: 5.6rem;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #TOP .main-image .main-ttl {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 768px) {
  #TOP .main-image .main-ttl span {
    margin: 0 -4px;
  }
}
#TOP .main-image p {
  line-height: 2;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #TOP .main-image p {
    font-size: 2rem;
  }
}
#TOP .sec01 {
  background: linear-gradient(90deg, #ccc 42vw, #0a3448 10%);
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 {
    background: linear-gradient(90deg, #ccc 50vw, #0a3448 10%);
  }
}
#TOP .sec01 .sec-in > div:not(:last-of-type) {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .sec-in > div:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .sec-ttl span:nth-of-type(1) {
    background: transparent linear-gradient(90deg, #2e3640 50%, #fff 10%) center repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .sec-ttl span:nth-of-type(2) {
    background: transparent linear-gradient(90deg, #222 50%, #fff 10%) center repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
#TOP .sec01 .box {
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
  padding: 4.5454545455vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (min-width: 1100px) {
  #TOP .sec01 .box {
    padding: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .box {
    padding: 5.3333333333vw;
  }
}
#TOP .sec01 .box .img-area,
#TOP .sec01 .box .info-area {
  width: 47%;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .box .img-area,
  #TOP .sec01 .box .info-area {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec01 .box .img-area {
    order: 1;
    margin-bottom: 20px;
  }
  #TOP .sec01 .box .info-area {
    order: 2;
  }
}
#TOP .sec02 {
  background: #ccc;
}
#TOP .sec02 .slider-area {
  position: relative;
}
#TOP .sec02 .slider-area .slider {
  max-width: 1100px;
  overflow: hidden;
}
#TOP .sec02 .slider-area .swiper-button-next,
#TOP .sec02 .slider-area .swiper-button-prev {
  right: -25px;
  background-color: #2e3640;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .slider-area .swiper-button-next,
  #TOP .sec02 .slider-area .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
}
#TOP .sec02 .slider-area .swiper-button-prev {
  left: -25px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .slider-area .swiper-button-prev {
    left: -15px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .slider-area .swiper-button-next {
    right: -15px;
  }
}
#TOP .sec02 .slider-area .swiper-button-prev:after,
#TOP .sec02 .slider-area .swiper-button-next:after {
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(225deg);
  width: 12px;
  height: 12px;
  background-size: contain;
  content: "";
  left: 20px;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .slider-area .swiper-button-prev:after,
  #TOP .sec02 .slider-area .swiper-button-next:after {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    width: 8px;
    height: 8px;
    left: 15px;
  }
}
#TOP .sec02 .slider-area .swiper-button-next:after {
  transform: rotate(45deg);
  left: 15px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 .slider-area .swiper-button-next:after {
    left: 10px;
  }
}
#TOP .sec02 ul li {
  width: 30.5%;
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 ul li {
    width: 100%;
  }
  #TOP .sec02 ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
#TOP .sec02 ul li .info-area {
  padding: 2.7272727273vw;
}
@media only screen and (min-width: 1100px) {
  #TOP .sec02 ul li .info-area {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 ul li .info-area {
    padding: 5.3333333333vw;
  }
}
#TOP .sec02 ul li .info-area h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec02 ul li .info-area h4 {
    font-size: 3.6rem;
  }
}
#TOP .sec02 ul li .info-area h4 + p {
  line-height: 1.7em;
  text-align: justify;
}
#TOP .sec03 {
  background: linear-gradient(90deg, #2e3640 42vw, #fff 10%);
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 {
    background: none;
  }
  #TOP .sec03 .sec-ttl.wh {
    color: #234872;
    text-align: center;
    width: 100%;
  }
  #TOP .sec03 .sec-ttl.wh span {
    color: #222;
  }
}
#TOP .sec03 .box {
  overflow: hidden;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .box {
    width: 100%;
    margin-bottom: 30px;
  }
}
#TOP .sec03 .box dl {
  display: flex;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
#TOP .sec03 .box dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
#TOP .sec03 .box dl dt {
  width: 20%;
  font-weight: bold;
}
#TOP .sec03 .box dl dd {
  width: 75%;
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 .box dl {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
#TOP .sec03 iframe {
  width: 100%;
  background: #fff;
  padding: 30px;
  height: 500px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec03 iframe {
    background: none;
    padding: 0;
    height: 300px;
  }
}
#TOP .sec04 {
  background: rgba(48, 126, 183, 0.1);
}
#TOP .sec04 .accordion-type-1 {
  width: 900px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #TOP .sec04 .accordion-type-1 {
    width: 90%;
  }
}
#TOP .sec04 .accordion-type-1 dl {
  margin-bottom: 2px;
  cursor: pointer;
}
#TOP .sec04 .accordion-type-1 dl dt,
#TOP .sec04 .accordion-type-1 dl dd {
  padding: 20px 20px 20px 30px;
}
#TOP .sec04 .accordion-type-1 dl dt {
  background: #fff;
  position: relative;
}
#TOP .sec04 .accordion-type-1 dl dt:after {
  content: "+";
  display: block;
  position: absolute;
  font-size: 3.2rem;
  font-weight: 100;
  right: 30px;
  color: #71afd1;
  top: 7px;
  transition: 0.2s;
}
#TOP .sec04 .accordion-type-1 dl dt.active:after {
  top: 20px;
  transform: rotate(45deg);
}
#TOP .sec04 .accordion-type-1 dl dd {
  background: #ebf2f8;
  display: none;
}
#TOP .sec05 {
  background-color: #999;
}
#TOP .sec05 .news-type {
  max-width: 850px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 .news-type {
    width: 100%;
  }
}
#TOP .sec05 .news-type li {
  background-color: #fff;
}
#TOP .sec05 .news-type li:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 .news-type li:not(:last-child) {
    margin-bottom: 10px;
  }
}
#TOP .sec05 .news-type li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 30px;
}
#TOP .sec05 .news-type li a .time {
  vertical-align: middle;
  line-height: 1.4;
  color: #888;
}
#TOP .sec05 .news-type li a .cat {
  background: #333;
  display: inline-table;
  font-size: 1.2rem;
  table-layout: initial;
  line-height: 22px;
  height: 22px;
  padding: 0 5px;
  text-align: center;
  color: #fff;
  margin: -3px 10px 0;
}
#TOP .sec05 .news-type li a .txt {
  width: 100%;
  margin-top: 10px;
  vertical-align: middle;
  display: inline-table;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #TOP .sec05 .news-type li a {
    padding: 20px;
  }
  #TOP .sec05 .news-type li a .time {
    width: auto;
    padding: 0;
    display: inline-block;
  }
  #TOP .sec05 .news-type li a .cat {
    margin: 0 0 0 10px;
    width: 80px;
    padding: 5px 0 1px;
    line-height: 1.2em;
    font-size: 11px;
    font-size: 2.9333333333vw;
  }
  #TOP .sec05 .news-type li a .txt {
    margin-top: 10px;
    width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
#TOP .sec-sub-ttl {
  font-size: 3rem;
  margin-bottom: 1.8181818182vw;
  line-height: 1.4em;
}
@media only screen and (min-width: 1100px) {
  #TOP .sec-sub-ttl {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #TOP .sec-sub-ttl {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 4vw;
  }
}

@keyframes fadein {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#ABOUT .main-u-v {
  color: #fff;
}
#ABOUT .sec01 .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#ABOUT .sec01 .box .l-area {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec01 .box .l-area {
    order: 2;
  }
}
#ABOUT .sec01 .box .l-area h4 {
  margin-bottom: 10px;
  font-size: 2.6rem;
  color: #2e3640;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec01 .box .l-area h4 {
    font-size: 2rem;
  }
}
#ABOUT .sec01 .box:has(.r-area) .l-area {
  width: 47%;
}
#ABOUT .sec01 .box .r-area {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec01 .box .r-area {
    width: 100%;
    order: 1;
    margin-bottom: 4vw;
  }
}
#ABOUT .sec01 .box .r-area figcaption {
  margin-top: 5px;
  text-align: center;
}
#ABOUT .sec02, #ABOUT .history-sec {
  background-color: rgba(153, 153, 153, 0.6);
  /*
  margin-bottom: getvwPc(100);

  @include media(lg) {
  	margin-bottom: 100px;
  }

  @include media(sp) {
  	margin-bottom: getvw(100);
  }
  */
}
#ABOUT .sec02 dl, #ABOUT .history-sec dl {
  display: flex;
  border-bottom: 1px solid #555;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 28px;
}
#ABOUT .sec02 dl:last-of-type, #ABOUT .history-sec dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
#ABOUT .sec02 dl dt, #ABOUT .history-sec dl dt {
  width: 15%;
  font-weight: bold;
}
#ABOUT .sec02 dl dd, #ABOUT .history-sec dl dd {
  width: 80%;
}
#ABOUT .sec02 dl dd img, #ABOUT .history-sec dl dd img {
  width: auto;
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec02, #ABOUT .history-sec {
    width: 100%;
  }
  #ABOUT .sec02 dl, #ABOUT .history-sec dl {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #ABOUT .sec02 dl dt, #ABOUT .history-sec dl dt {
    margin-bottom: 5px;
  }
  #ABOUT .sec02 dl dt,
  #ABOUT .sec02 dl dd, #ABOUT .history-sec dl dt,
  #ABOUT .history-sec dl dd {
    width: 100%;
  }
}
#ABOUT .history-sec {
  background-color: #fff;
}
#ABOUT .sec03 iframe {
  width: 100%;
  height: 36.3636363636vw;
}
@media only screen and (min-width: 1100px) {
  #ABOUT .sec03 iframe {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  #ABOUT .sec03 iframe {
    height: 300px;
  }
}
#ABOUT .sec03 iframe + p {
  text-align: center;
  margin-top: 10px;
}

#SERVICE .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
#SERVICE .box .l-area {
  width: 47%;
}
@media only screen and (max-width: 767px) {
  #SERVICE .box .l-area {
    width: 100%;
    order: 2;
  }
}
#SERVICE .box .l-area h4 {
  margin-bottom: 1rem;
  font-size: 2.6rem;
  color: #2e3640;
}
@media only screen and (max-width: 767px) {
  #SERVICE .box .l-area h4 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
  }
}
#SERVICE .box .r-area {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #SERVICE .box .r-area {
    width: 100%;
    order: 1;
    margin-bottom: 4vw;
  }
}
#SERVICE .box .r-area figcaption {
  margin-top: 5px;
  text-align: center;
}
#SERVICE .intro {
  margin-bottom: 50px;
}
#SERVICE .intro p {
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  #SERVICE .intro p {
    margin-bottom: 20px;
  }
}
#SERVICE .intro *:last-child {
  margin-bottom: 0;
}
#SERVICE section[class^=sec] {
  padding: 9.0909090909vw 0;
}
@media only screen and (min-width: 1100px) {
  #SERVICE section[class^=sec] {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  #SERVICE section[class^=sec] {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
#SERVICE .cc {
  color: #fff;
}
#SERVICE .sec-in {
  margin: 0 auto;
}
#SERVICE .sec-in.sec-in-bg {
  padding: 0;
}
#SERVICE .even {
  background-color: rgba(153, 153, 153, 0.6);
}
#SERVICE .even .l-area {
  order: 2;
}
#SERVICE .even .r-area {
  order: 1;
}
#SERVICE .sec01 {
  margin-top: -9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  #SERVICE .sec01 {
    margin-top: -100px;
  }
}
@media only screen and (max-width: 767px) {
  #SERVICE .sec01 {
    margin-top: -13.3333333333vw;
  }
}

#EVENTS .container .main-u-v {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  #EVENTS .container:has(.header) .main-u-v {
    margin-top: 4rem;
  }
}
#EVENTS .main-u-v.large {
  height: 72.7272727273vw;
  color: #fff;
}
@media only screen and (min-width: 1100px) {
  #EVENTS .main-u-v.large {
    height: 800px;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .main-u-v.large {
    height: 106.6666666667vw;
  }
}
#EVENTS .main-u-v.large::before {
  display: none;
}
#EVENTS .main-u-v.large .main-u-v-in h2 span:nth-of-type(1) {
  line-height: 1.5;
  font-family: "Helvetica", "Arial", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
}
#EVENTS .main-u-v.large.event-20251018 {
  background: #555 url(../img/events/20251018-event/front.jpg) center/cover no-repeat;
}
#EVENTS .main-u-v.large.event-20251018 .main-u-v-in {
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 768px) {
  #EVENTS .main-u-v.large.event-20251018 .main-u-v-in {
    top: 20%;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .main-u-v.large.event-20251018 .main-u-v-in {
    top: 40%;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .main-u-v.large.event-20251018 .main-u-v-in h2 span:nth-of-type(1) {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .main-u-v.large.event-20251018 .main-u-v-in h2 span:nth-of-type(2) {
    font-size: 2rem;
  }
}
#EVENTS .main-u-v.large .coverimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#EVENTS .main-u-v.large .coverimage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#EVENTS .main {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  #EVENTS .main {
    width: 100%;
  }
}
#EVENTS .main .p-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px 2.75%;
}
@media only screen and (max-width: 767px) {
  #EVENTS .main .p-list {
    gap: 20px;
  }
}
#EVENTS .main .p-list::after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}
#EVENTS .main .p-list li {
  width: 31.5%;
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
}
@media only screen and (max-width: 767px) {
  #EVENTS .main .p-list li {
    width: 100%;
  }
}
#EVENTS .main .p-list li a:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#EVENTS .main .p-list li .info-area {
  padding: 1.8181818182vw;
}
@media only screen and (min-width: 1100px) {
  #EVENTS .main .p-list li .info-area {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .main .p-list li .info-area {
    padding: 4vw;
  }
}
#EVENTS .main .p-list li .info-area h4 {
  margin-bottom: 0.9090909091vw;
  line-height: 1.3;
  font-size: 1.6rem;
  color: #2e3640;
}
@media only screen and (min-width: 1100px) {
  #EVENTS .main .p-list li .info-area h4 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .main .p-list li .info-area h4 {
    font-size: 3.2rem;
    margin-bottom: 1.0666666667vw;
  }
}
#EVENTS .main .p-list li .info-area h4 + p {
  line-height: 1.7em;
  font-size: 1.4rem;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #EVENTS .main .p-list li .info-area h4 + p {
    font-size: 2.6rem;
  }
}
#EVENTS .mainlead {
  margin-bottom: 12rem;
}
@media only screen and (max-width: 767px) {
  #EVENTS .mainlead {
    margin-bottom: 6rem;
  }
}
#EVENTS .mainlead p {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  #EVENTS .mainlead p {
    font-size: 1.6rem;
  }
}
#EVENTS .mainlead figure {
  display: flex;
}
@media only screen and (min-width: 768px) {
  #EVENTS .mainlead figure {
    -moz-column-gap: 4.5rem;
         column-gap: 4.5rem;
    align-items: flex-start;
    margin-top: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .mainlead figure {
    flex-direction: column;
    row-gap: 2rem;
    margin-top: 3rem;
  }
}
@media only screen and (min-width: 768px) {
  #EVENTS .mainlead figure img {
    width: calc(33.3333333333% - 3rem);
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .mainlead figure img {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .sec-ttl span:nth-of-type(1) {
    background: transparent linear-gradient(90deg, #2e3640 50%, #fff 10%) center repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .sec-ttl span:nth-of-type(2) {
    background: transparent linear-gradient(90deg, #222 50%, #fff 10%) center repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
#EVENTS .details .p-ttl {
  font-size: 3rem;
  margin-bottom: 1.3636363636vw;
}
@media only screen and (min-width: 1100px) {
  #EVENTS .details .p-ttl {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .details .p-ttl {
    font-size: 4rem;
    margin-bottom: 2.6666666667vw;
  }
}
#EVENTS .details .item-image {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0 40px;
}
@media only screen and (max-width: 767px) {
  #EVENTS .details .item-image {
    margin-top: 1.3333333333vw;
  }
}
#EVENTS .details .item-image li {
  width: 19%;
}
#EVENTS .details .item-image li:not(:last-of-type) {
  margin-right: 1.25%;
}
#EVENTS .details .item-image li.current {
  opacity: 0.7;
}
#EVENTS .details dl:not(:last-of-type) {
  margin-bottom: 40px;
}
#EVENTS .details dl dt {
  font-weight: bold;
  line-height: 1.4;
  padding: 2px 0 0 10px;
  border-left: 8px solid #2e3640;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  #EVENTS .details dl dt {
    font-size: 3.2rem;
  }
}
#EVENTS .sec01 p {
  margin-bottom: 5rem;
  text-align: center;
}
#EVENTS .sec01 p.error {
  margin-bottom: 0;
  text-align: left;
  font-weight: 700;
  color: #c00;
}
#EVENTS .sec02 {
  margin-bottom: 9.0909090909vw;
  background-image: linear-gradient(90deg, #fff 42vw, #2e3640 10%);
}
@media only screen and (min-width: 1100px) {
  #EVENTS .sec02 {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .sec02 {
    margin-bottom: 13.3333333333vw;
    background-image: linear-gradient(90deg, #fff 50vw, #2e3640 10%);
  }
}
#EVENTS .sec02 .sec-in > div:not(:last-of-type) {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #EVENTS .sec02 .sec-in > div:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
#EVENTS .sec02 .box {
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.3) 0px 8px 24px;
  padding: 4.5454545455vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (min-width: 1100px) {
  #EVENTS .sec02 .box {
    padding: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .sec02 .box {
    padding: 5.3333333333vw;
  }
}
#EVENTS .sec02 .box .img-area,
#EVENTS .sec02 .box .info-area {
  width: 47%;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  #EVENTS .sec02 .box .img-area,
  #EVENTS .sec02 .box .info-area {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #EVENTS .sec02 .box .img-area {
    order: 1;
    margin-bottom: 20px;
  }
  #EVENTS .sec02 .box .info-area {
    order: 2;
  }
}
#EVENTS .input_area dl {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#EVENTS .input_area dl dt {
  width: 300px;
  text-align: left;
  line-height: 1.5;
  font-weight: 500;
}
#EVENTS .input_area dl dt:has(.required) {
  display: flex;
  align-items: flex-start;
}
#EVENTS .input_area dl dt .dt_width {
  width: 16.3636363636vw;
  display: inline-block;
}
@media only screen and (min-width: 1100px) {
  #EVENTS .input_area dl dt .dt_width {
    width: 180px;
  }
}
#EVENTS .input_area dl dt .normal {
  display: block;
  width: min(100%, 270px);
}
#EVENTS .input_area dl dt .required {
  color: #fff;
  background: #f00000;
  padding: 5px 5px 3px;
  text-align: center;
  font-size: 12px;
}
#EVENTS .input_area dl dd {
  width: calc(100% - 300px);
}
#EVENTS .input_area dl dd label {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
#EVENTS .input_area dl .group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
#EVENTS .input_area dl .group + div {
  margin-top: 10px;
}
#EVENTS .input_area dl .activity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #EVENTS .input_area dl .activity {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 768px) {
  #EVENTS .input_area dl .activity label:nth-of-type(odd) {
    width: 190px;
  }
}
@media only screen and (min-width: 768px) {
  #EVENTS .input_area dl .activity label:nth-of-type(even) {
    width: calc(100% - 190px);
  }
}
#EVENTS .input_area .error {
  font-weight: 700;
  color: #f00;
}
#EVENTS .input_area figure {
  display: flex;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin-bottom: 30px;
}
#EVENTS .input_area figure img {
  width: 400px;
}
#EVENTS .input_area figure figcaption {
  width: calc(100% - 450px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #EVENTS .input_area {
    width: 100%;
  }
  #EVENTS .input_area dl {
    margin-bottom: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
  #EVENTS .input_area dl dt {
    width: auto;
    margin-bottom: 10px;
  }
  #EVENTS .input_area dl dt .dt_width {
    width: auto;
  }
  #EVENTS .input_area dl dt .required {
    padding: 3px 4px 2px;
    font-size: 10px;
    font-size: 2.6666666667vw;
    margin-left: 10px;
  }
  #EVENTS .input_area dl dt .normal {
    width: 100%;
  }
  #EVENTS .input_area dl dd {
    width: 100%;
  }
  #EVENTS .input_area figure {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  #EVENTS .input_area figure img {
    width: min(300px, 100%);
  }
  #EVENTS .input_area figure figcaption {
    width: 100%;
  }
}
#EVENTS .input_area input[type=text], #EVENTS .input_area input[type=email], #EVENTS .input_area input[type=tel], #EVENTS .input_area input[type=number], #EVENTS .input_area input[name=zip], #EVENTS .input_area input[name=password] {
  height: 50px;
  padding: 0 1em;
  border: 0;
  box-sizing: border-box;
  background-color: rgba(153, 153, 153, 0.4);
  line-height: 50px;
  font-family: inherit;
  font-size: 1.6rem;
  outline: none;
}
#EVENTS .input_area input[type=text], #EVENTS .input_area input[type=email], #EVENTS .input_area input[type=tel], #EVENTS .input_area input[name=zip] {
  width: 100%;
}
#EVENTS .input_area input[type=number] {
  width: 60px;
}
#EVENTS .input_area input[type=password] {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #EVENTS .input_area input[type=password] {
    width: 100%;
  }
}
#EVENTS .input_area input::-moz-placeholder {
  font-size: 1.6rem;
  color: rgba(46, 54, 64, 0.6);
}
#EVENTS .input_area input::placeholder {
  font-size: 1.6rem;
  color: rgba(46, 54, 64, 0.6);
}
@media only screen and (max-width: 767px) {
  #EVENTS .input_area input::-moz-placeholder {
    font-size: 1.4rem;
  }
  #EVENTS .input_area input::placeholder {
    font-size: 1.4rem;
  }
}
#EVENTS .input_area textarea {
  width: 100%;
  height: 160px;
  border: none;
  padding: 1em;
  background-color: rgba(153, 153, 153, 0.4);
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
#EVENTS .input_area .select_box {
  width: auto;
  margin-bottom: 15px;
  background-color: rgba(153, 153, 153, 0.4);
  overflow: hidden;
  text-align: center;
  position: relative;
}
#EVENTS .input_area .select_box::before {
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  content: "";
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #2e3640;
  pointer-events: none;
}
#EVENTS .input_area .select_box select {
  height: 50px;
  line-height: 54px;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 0 38px 0 20px;
  color: #333;
}
#EVENTS .input_area .select_box select::-ms-expand {
  display: none;
}
#EVENTS .input_area .half {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #EVENTS .input_area .half {
    width: 100%;
  }
}
#EVENTS .lead {
  margin-bottom: 6rem;
  text-align: center;
  font-weight: 700;
}
#EVENTS .privacy_area {
  height: 300px;
  border: 1px solid #f2f2f2;
  padding: 40px;
  text-align: left;
  overflow-y: scroll;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  margin: 65px 0 40px;
}
@media screen and (max-width: 767px) {
  #EVENTS .privacy_area {
    padding: 20px;
  }
}
#EVENTS .privacy_area li {
  list-style-type: disc;
}
#EVENTS .agree_check {
  display: flex;
  justify-content: center;
}
#EVENTS .agree_check label {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
#EVENTS .agree_check + p.error {
  margin: -5rem 0 4rem;
  text-align: center;
}
#EVENTS .agree_check + p.error:empty {
  display: none;
}
#EVENTS .checkbox_list h3 {
  margin-bottom: 3.2rem;
  text-align: center;
  font-size: 2.4rem;
}
#EVENTS .checkbox_list p {
  margin-bottom: 2.4rem;
  text-align: left;
}
#EVENTS .checkbox_list table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-top: 0.1rem solid #222;
}
#EVENTS .checkbox_list table tr {
  border-bottom: 0.1rem solid #222;
}
#EVENTS .checkbox_list table td {
  padding: 1rem;
  vertical-align: top;
}
#EVENTS .checkbox_list table td:nth-of-type(1) {
  width: 4rem;
  text-align: center;
}
#EVENTS .thanks_sec {
  margin: 0 0 15vh;
}
@media only screen and (max-width: 767px) {
  #EVENTS .thanks_sec {
    margin: 0 0 15vh;
  }
}
#EVENTS .thanks_sec h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #EVENTS .thanks_sec h2 {
    font-size: 24px;
    font-size: 6.4vw;
    margin-bottom: 20px;
  }
}
#EVENTS .thanks_sec h2 + p {
  text-align: center;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  #EVENTS .thanks_sec h2 + p {
    font-size: 16px;
    font-size: 4.2666666667vw;
    margin-bottom: 40px;
  }
}
#EVENTS .thanks_sec h2 + p span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  #EVENTS .thanks_sec h2 + p span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}

#NEWS .main {
  width: 70%;
}
@media only screen and (max-width: 767px) {
  #NEWS .main {
    width: 100%;
  }
}
#NEWS .main .n-list1 {
  margin-bottom: 100px;
}
#NEWS .main .n-list1 li {
  border-bottom: 1px solid #ddd;
}
#NEWS .main .n-list1 li:first-child {
  border-top: 1px solid #ddd;
}
#NEWS .main .n-list1 li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 25px 0;
}
#NEWS .main .n-list1 li a .time {
  vertical-align: middle;
  line-height: 1.4;
}
#NEWS .main .n-list1 li a .cat {
  background-color: #2e3640;
  display: inline-table;
  font-size: 1.2rem;
  table-layout: initial;
  padding: 1px 5px 0;
  text-align: center;
  color: #fff;
  margin: -3px 20px 0;
}
#NEWS .main .n-list1 li a .txt {
  width: 100%;
  vertical-align: middle;
  display: inline-table;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #NEWS .main .n-list1 li a {
    padding: 20px 0;
  }
  #NEWS .main .n-list1 li a .time {
    width: auto;
    padding: 0;
    display: inline-block;
  }
  #NEWS .main .n-list1 li a .cat {
    margin: 0 0 0 10px;
    padding: 3px 5px 1px;
    line-height: 1.4em;
    font-size: 2rem;
  }
  #NEWS .main .n-list1 li a .txt {
    margin-top: 10px;
    width: 100%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
#NEWS .main .n-list2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#NEWS .main .n-list2:after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}
#NEWS .main .n-list2 li {
  width: 31.5%;
  background: #fff;
  box-shadow: rgba(50, 50, 93, 0.1) 0px 13px 27px -5px, rgba(0, 0, 0, 0.1) 0px 8px 16px -8px;
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li {
    width: 100%;
  }
  #NEWS .main .n-list2 li:not(:last-child) {
    margin-bottom: 20px;
  }
}
#NEWS .main .n-list2 li:nth-child(n+4) {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li:nth-child(n+4) {
    margin-top: auto;
  }
}
#NEWS .main .n-list2 li a:hover {
  opacity: 0.7;
  transition: 0.2s;
}
#NEWS .main .n-list2 li .info-area {
  padding: 1.8181818182vw;
}
@media only screen and (min-width: 1100px) {
  #NEWS .main .n-list2 li .info-area {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li .info-area {
    padding: 4vw;
  }
}
#NEWS .main .n-list2 li .info-area h4 {
  line-height: 1.3;
  font-size: 1.6rem;
  color: #555;
}
#NEWS .main .n-list2 li .info-area h4:not(:last-child) {
  margin-bottom: 0.9090909091vw;
}
@media only screen and (min-width: 1100px) {
  #NEWS .main .n-list2 li .info-area h4:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li .info-area h4 {
    font-size: 3.2rem;
  }
  #NEWS .main .n-list2 li .info-area h4:not(:last-child) {
    margin-bottom: 1.0666666667vw;
  }
}
#NEWS .main .n-list2 li .info-area .info-head {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li .info-area .info-head {
    font-size: 2.4rem;
  }
}
#NEWS .main .n-list2 li .info-area .info-head .time {
  color: #888;
  margin-right: 10px;
}
#NEWS .main .n-list2 li .info-area .info-head .cat {
  background-color: #2e3640;
  color: #fff;
  padding: 4px 6px 2px;
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  margin-top: -2px;
}
@media only screen and (max-width: 767px) {
  #NEWS .main .n-list2 li .info-area .info-head .cat {
    font-size: 2rem;
  }
}
#NEWS.details .info-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#NEWS.details .info-head .time {
  color: #888;
  margin-right: 10px;
}
#NEWS.details .info-head .cat {
  background-color: #555;
  color: #fff;
  padding: 4px 6px 2px;
  font-size: 1.2rem;
  line-height: 1;
  display: block;
  margin-top: -2px;
}
@media only screen and (max-width: 767px) {
  #NEWS.details .info-head .cat {
    font-size: 2rem;
  }
}
#NEWS.details .n-ttl {
  font-size: 3rem;
  margin-bottom: 1.3636363636vw;
}
@media only screen and (min-width: 1100px) {
  #NEWS.details .n-ttl {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #NEWS.details .n-ttl {
    font-size: 4rem;
    margin-bottom: 2.6666666667vw;
  }
}
#NEWS.details .item-main-img {
  margin-bottom: 40px;
}
#NEWS.details dl:not(:last-of-type) {
  margin-bottom: 40px;
}
#NEWS.details dl dt {
  font-weight: bold;
  line-height: 1.4;
  padding: 2px 0 0 10px;
  border-left: 8px solid #2e3640;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  #NEWS.details dl dt {
    font-size: 3.2rem;
  }
}

#RECRUIT .sec01 {
  margin-bottom: 9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  #RECRUIT .sec01 {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT .sec01 {
    margin-bottom: 13.3333333333vw;
  }
}
#RECRUIT .sec01 .sec-in {
  max-width: 850px;
}
#RECRUIT .sec01 .r-list dl {
  display: flex;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 28px;
  margin-bottom: 28px;
}
#RECRUIT .sec01 .r-list dl:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
#RECRUIT .sec01 .r-list dl dt {
  width: 15%;
  font-weight: bold;
}
#RECRUIT .sec01 .r-list dl dd {
  width: 80%;
}
@media only screen and (max-width: 767px) {
  #RECRUIT .sec01 .r-list {
    width: 100%;
  }
  #RECRUIT .sec01 .r-list dl {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  #RECRUIT .sec01 .r-list dl dt {
    margin-bottom: 5px;
  }
  #RECRUIT .sec01 .r-list dl dt,
  #RECRUIT .sec01 .r-list dl dd {
    width: 100%;
  }
}
#RECRUIT.interview .sec-in {
  max-width: 1100px;
}
#RECRUIT.interview .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
#RECRUIT.interview .box .l-area {
  width: 45%;
}
@media only screen and (max-width: 767px) {
  #RECRUIT.interview .box .l-area {
    width: 100%;
    order: 1;
  }
}
#RECRUIT.interview .box .r-area {
  width: 55%;
  padding: 4.5454545455vw;
  background-color: #2e3640;
  color: #fff;
}
@media only screen and (min-width: 1100px) {
  #RECRUIT.interview .box .r-area {
    padding: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #RECRUIT.interview .box .r-area {
    width: 100%;
    order: 2;
  }
}
#RECRUIT.interview .box .r-area h4 {
  font-size: 2.6rem;
  margin: 5px 0;
}
@media only screen and (max-width: 767px) {
  #RECRUIT.interview .box .r-area h4 {
    font-size: 2.4rem;
  }
}
#RECRUIT.interview .box .r-area h4 .department {
  font-size: 1.8rem;
  display: inline-block;
  margin-left: 15px;
  font-weight: normal;
}
#RECRUIT.interview .box .r-area .joined {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.8181818182vw;
  display: block;
}
@media only screen and (min-width: 1100px) {
  #RECRUIT.interview .box .r-area .joined {
    margin-bottom: 20px;
  }
}
#RECRUIT.interview .box .r-area .joined + p {
  font-size: 1.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  #RECRUIT.interview .box .r-area .joined + p {
    font-size: 1.6rem;
  }
}
#RECRUIT.interview dl:not(:last-of-type) {
  margin-bottom: 40px;
}
#RECRUIT.interview dl dt {
  margin-bottom: 15px;
  padding: 2px 0 0 10px;
  border-left: 8px solid #2e3640;
  line-height: 1.4;
  font-weight: bold;
  font-size: 2.2rem;
}
@media only screen and (max-width: 767px) {
  #RECRUIT.interview dl dt {
    font-size: 1.6rem;
  }
}

#CONTACT .sec01 .lead {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .sec01 .lead {
    margin-bottom: 30px;
  }
}
#CONTACT .sec-in {
  max-width: 850px;
}
#CONTACT .input_area > dl {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#CONTACT .input_area > dl dt {
  width: 300px;
  text-align: left;
  line-height: 1.5;
  font-weight: 500;
}
#CONTACT .input_area > dl dt:has(.required) {
  display: flex;
  align-items: flex-start;
}
#CONTACT .input_area > dl dt .dt_width {
  width: 16.3636363636vw;
  display: inline-block;
}
@media only screen and (min-width: 1100px) {
  #CONTACT .input_area > dl dt .dt_width {
    width: 180px;
  }
}
#CONTACT .input_area > dl dt .normal {
  display: block;
  width: min(100%, 270px);
}
#CONTACT .input_area > dl dt .required {
  color: #fff;
  background: #f00000;
  padding: 5px 5px 3px;
  text-align: center;
  font-size: 12px;
}
#CONTACT .input_area > dl dd {
  width: calc(100% - 300px);
}
#CONTACT .input_area > dl dd label {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
#CONTACT .input_area > dl .group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
#CONTACT .input_area > dl .group + div {
  margin-top: 10px;
}
#CONTACT .input_area > dl .activity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#CONTACT .input_area > dl .activity label:nth-of-type(odd) {
  width: 190px;
}
#CONTACT .input_area figure {
  display: flex;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
  margin-bottom: 30px;
}
#CONTACT .input_area figure img {
  width: 400px;
}
#CONTACT .input_area figure figcaption {
  width: calc(100% - 450px);
  line-height: 2;
}
@media screen and (max-width: 767px) {
  #CONTACT .input_area {
    width: 100%;
  }
  #CONTACT .input_area dl {
    margin-bottom: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
  #CONTACT .input_area dl dt {
    width: auto;
    margin-bottom: 10px;
  }
  #CONTACT .input_area dl dt .dt_width {
    width: auto;
  }
  #CONTACT .input_area dl dt .required {
    padding: 3px 4px 2px;
    font-size: 10px;
    font-size: 2.6666666667vw;
    margin-left: 10px;
  }
  #CONTACT .input_area dl dt .normal {
    width: 100%;
  }
  #CONTACT .input_area dl dd {
    width: 100%;
  }
  #CONTACT .input_area figure {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
  }
  #CONTACT .input_area figure img {
    width: min(300px, 100%);
  }
  #CONTACT .input_area figure figcaption {
    width: 100%;
  }
}
#CONTACT .input_area input[type=text], #CONTACT .input_area input[type=email], #CONTACT .input_area input[type=tel], #CONTACT .input_area input[type=number], #CONTACT .input_area input[name=zip] {
  height: 50px;
  line-height: 50px;
  background-color: rgba(153, 153, 153, 0.4);
  border: 0;
  box-sizing: border-box;
  padding: 0 1em;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: inherit;
  outline: none;
}
@media only screen and (max-width: 767px) {
  #CONTACT .input_area input[type=text], #CONTACT .input_area input[type=email], #CONTACT .input_area input[type=tel], #CONTACT .input_area input[type=number], #CONTACT .input_area input[name=zip] {
    font-size: 1.4rem;
  }
}
#CONTACT .input_area input[type=text], #CONTACT .input_area input[type=email], #CONTACT .input_area input[type=tel], #CONTACT .input_area input[name=zip] {
  width: 100%;
}
#CONTACT .input_area input[type=number] {
  width: 60px;
}
#CONTACT .input_area input::-moz-placeholder {
  color: rgba(46, 54, 64, 0.6);
}
#CONTACT .input_area input::placeholder {
  color: rgba(46, 54, 64, 0.6);
}
#CONTACT .input_area textarea {
  width: 100%;
  height: 160px;
  border: none;
  padding: 1em;
  background-color: rgba(153, 153, 153, 0.4);
  font-family: inherit;
  font-weight: 500;
  font-size: inherit;
  color: #2e3640;
  outline: none;
}
#CONTACT .input_area .select_box {
  position: relative;
  width: auto;
  margin-bottom: 15px;
  background-color: rgba(153, 153, 153, 0.4);
  overflow: hidden;
  text-align: center;
}
#CONTACT .input_area .select_box::before {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #2e3640;
  pointer-events: none;
}
#CONTACT .input_area .select_box select {
  height: 50px;
  line-height: 54px;
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 0 38px 0 20px;
  color: #333;
}
#CONTACT .input_area .select_box select::-ms-expand {
  display: none;
}
#CONTACT .input_area .half {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  #CONTACT .input_area .half {
    width: 100%;
  }
}
#CONTACT .input_area .error {
  font-weight: 700;
  color: #f00000;
}
#CONTACT .privacy_area {
  height: 300px;
  border: 1px solid #f2f2f2;
  padding: 40px;
  text-align: left;
  overflow-y: scroll;
  line-height: 1.6em;
  letter-spacing: 0.05em;
  margin: 65px 0 40px;
}
@media screen and (max-width: 767px) {
  #CONTACT .privacy_area {
    padding: 20px;
  }
}
#CONTACT .privacy_area h4 {
  margin: 3rem 0;
}
#CONTACT .privacy_area dl {
  margin: 2rem 0;
}
#CONTACT .privacy_area dt {
  font-weight: 600;
}
#CONTACT .privacy_area dd {
  margin-bottom: 1.5rem;
}
#CONTACT .privacy_area li {
  list-style-type: disc;
}
#CONTACT .agree_check {
  display: flex;
  justify-content: center;
}
#CONTACT .agree_check label {
  display: flex;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
#CONTACT .agree_check + p {
  text-align: center;
}
#CONTACT .btn input[type=submit] {
  color: #fff;
}
#CONTACT .thanks_sec {
  margin: 0 0 15vh;
}
@media only screen and (max-width: 767px) {
  #CONTACT .thanks_sec {
    margin: 0 0 15vh;
  }
}
#CONTACT .thanks_sec h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .thanks_sec h2 {
    font-size: 24px;
    font-size: 6.4vw;
    margin-bottom: 20px;
  }
}
#CONTACT .thanks_sec h2 + p {
  text-align: center;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .thanks_sec h2 + p {
    font-size: 16px;
    font-size: 4.2666666667vw;
    margin-bottom: 40px;
  }
}
#CONTACT .thanks_sec h2 + p span {
  display: block;
  font-size: 14px;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  #CONTACT .thanks_sec h2 + p span {
    font-size: 12px;
    font-size: 3.2vw;
  }
}

#CONCEPT .main-u-v {
  color: #fff;
}
#CONCEPT .sec-ttl span:nth-of-type(1) {
  display: none;
}
@media only screen and (max-width: 767px) {
  #CONCEPT .sec-ttl span:nth-of-type(2) {
    font-size: 2rem;
  }
}

#WORKS .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
}
#WORKS .box .l-area {
  width: 47%;
}
@media only screen and (max-width: 767px) {
  #WORKS .box .l-area {
    width: 100%;
    order: 2;
  }
}
#WORKS .box .l-area h4 {
  margin-bottom: 10px;
  font-size: 2.6rem;
  color: #2e3640;
}
@media only screen and (max-width: 767px) {
  #WORKS .box .l-area h4 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
  }
}
#WORKS .box .l-area h5 {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  #WORKS .box .l-area h5 {
    font-size: 1.8rem;
  }
}
#WORKS .box .l-area p {
  margin-bottom: 3rem;
}
#WORKS .box .l-area ul {
  padding-left: 2.4rem;
}
@media only screen and (max-width: 767px) {
  #WORKS .box .l-area ul {
    padding-left: 2.1rem;
  }
}
#WORKS .box .l-area ul:not(:last-child) {
  margin-bottom: 3rem;
}
#WORKS .box .l-area ul li {
  list-style-type: disc;
}
#WORKS .box .l-area ul a {
  display: inline;
  color: #0e3a4e;
  text-decoration: underline;
}
#WORKS .box .l-area ul a:hover, #WORKS .box .l-area ul a:active {
  text-decoration: none;
}
#WORKS .box .r-area {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #WORKS .box .r-area {
    width: 100%;
    order: 1;
    margin-bottom: 4vw;
  }
}
#WORKS .box .r-area figcaption {
  margin-top: 5px;
  text-align: center;
}
#WORKS .cc {
  color: #fff;
}
#WORKS section[class^=sec] {
  padding: 9.0909090909vw 0;
}
@media only screen and (min-width: 1100px) {
  #WORKS section[class^=sec] {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  #WORKS section[class^=sec] {
    padding: 13.3333333333vw 5.3333333333vw;
  }
}
#WORKS .sec-in {
  margin: 0 auto;
}
#WORKS .sec-in.sec-in-bg {
  padding: 0;
}
#WORKS .even {
  background-color: rgba(153, 153, 153, 0.6);
}
#WORKS .even .l-area {
  order: 2;
}
#WORKS .even .r-area {
  order: 1;
}
#WORKS .sec01 {
  margin-top: -9.0909090909vw;
}
@media only screen and (min-width: 1100px) {
  #WORKS .sec01 {
    margin-top: -100px;
  }
}
@media only screen and (max-width: 767px) {
  #WORKS .sec01 {
    margin-top: -13.3333333333vw;
  }
}/*# sourceMappingURL=style.css.map */