@charset "UTF-8";
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

button {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  appearance: none;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

ul,
ol {
  list-style: none;
}

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

blockquote,
q {
  quotes: none;
}

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

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

cite {
  font-style: normal;
}

input, textarea, select {
  appearance: none;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  font: inherit;
  line-height: 1;
  text-indent: 0;
  text-overflow: "";
  vertical-align: baseline;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
}

textarea {
  resize: both;
}

::placeholder {
  font: inherit;
  color: #999;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
  margin: 0;
}

select::-ms-expand {
  display: none;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 0.8333333333vw;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 2.6666666667vw;
  }
}
body {
  position: relative;
  direction: ltr;
  font-family: Arial, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 1;
  color: #333;
}

/* Heading */
.title-medium {
  font-size: 4rem;
  font-weight: 600;
  font-family: "Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 1.2;
  text-align: center;
  color: #555;
}
.title-medium-en {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.2;
  text-align: center;
  color: #0AAC66;
}

@media screen and (max-width: 600px) {
  .title-medium {
    font-size: 2.4rem;
  }
  .title-medium-en {
    font-size: 1.4rem;
  }
}
.title-sub {
  margin-bottom: 1.6rem;
  font-size: 2.8rem;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .title-sub {
    margin-bottom: 1.6rem;
    font-size: 2rem;
  }
}
.title-sub01 {
  margin-bottom: 3.6rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.title-sub01::before {
  content: "\f04a";
  font-family: "Remixicon";
}

@media screen and (max-width: 600px) {
  .title-sub01 {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
  }
}
/* Paragraph */
.text-def {
  font-size: 1.6rem;
  line-height: 1.6;
}

.notes {
  font-size: 1.3rem;
}

a {
  text-decoration: none;
  color: #00f;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  padding: 0.8rem 1.6rem;
  color: #fff;
  background-color: #1660FF;
  border: 1px solid #1660FF;
  border-radius: 1.2rem;
  border-radius: 1rem;
  transition: 0.3s;
}
.btn:hover {
  text-decoration: none;
  color: #1660FF;
  background-color: #fff;
}

/* General Accordion Function */
.accordion {
  border: 1px solid #ddd;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.accordion-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem;
  background-color: #f5f5f5;
  cursor: pointer;
}
.accordion-body {
  display: flex;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.accordion-body-in {
  padding: 1.6rem;
  line-height: 1.6;
}
.accordion.is-active .accordion-body {
  max-height: 50rem;
  opacity: 1;
}
.accordion.is-active .icontoggle-plus::before {
  transform: scaleY(0);
}

.wholewrapper {
  position: relative;
  min-height: 100vh;
  padding-bottom: 6rem;
}

@media screen and (max-width: 600px) {
  .wholewrapper {
    padding-bottom: 5rem;
  }
}
.areas {
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.areas_def {
  position: relative;
  margin: 0 auto;
  padding: 0 3.3333333333%;
  width: 100%;
  max-width: 1200px;
}
.areas_colored {
  background-color: #efefef;
}

@media screen and (max-width: 600px) {
  .areas_def {
    padding: 0 5.3333333333%;
    max-width: initial;
  }
}
.section_def {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.section_def > *:last-child {
  margin-bottom: 0 !important;
}
.section-head {
  margin-bottom: 8rem;
}
.section-body-unit {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 3.2rem;
  margin-bottom: 6.4rem;
}
.section-cont {
  flex: 1;
}
.section-fig {
  flex: 1;
}

@media screen and (max-width: 600px) {
  .section_def {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .section-head {
    margin-bottom: 4rem;
  }
  .section-body-unit {
    display: block;
    margin-bottom: 3.2rem;
  }
  .section-cont {
    margin-bottom: 1.6rem;
  }
}
.g_header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 3.3333333333%;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 10px 0px rgb(136, 136, 136);
}
.g_header_in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}

@media screen and (max-width: 600px) {
  .g_header {
    position: relative;
    padding: 0 5.3333333333%;
  }
  .g_header_in {
    height: 5rem;
  }
}
.glogo-text {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-size: 2.8rem;
  font-weight: 500;
  color: #666;
}

@media screen and (max-width: 600px) {
  .glogo-text {
    font-size: 2rem;
  }
}
.g_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 6rem;
  background-color: #fff;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 600px) {
  .g_footer {
    height: 5rem;
  }
}
.copyright {
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 600px) {
  .copyright {
    font-size: 1.2rem;
  }
}
.gnav {
  display: flex;
  align-items: center;
  gap: 0 3.2rem;
}
.gnav-list {
  display: flex;
  align-items: center;
  gap: 0 1.6rem;
}
.gnav-items {
  font-size: 1.4rem;
}
.gnav-title {
  color: #333;
}

@media screen and (max-width: 600px) {
  .gnav {
    display: none;
  }
}
.btn-gnav {
  display: none;
  position: fixed;
  top: 0.5rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
}
.btn-gnav-line {
  position: absolute;
  top: 0;
  left: 0.5rem;
  width: 3rem;
  height: 0.2rem;
  background-color: #333;
  transition: 0.3s;
}
.btn-gnav-line:nth-child(1) {
  top: 1rem;
}
.btn-gnav-line:nth-child(2) {
  top: 2rem;
}
.btn-gnav-line:nth-child(3) {
  top: 3rem;
}
.btn-gnav.is-active .btn-gnav-line {
  position: absolute;
  top: 0;
  left: 0.5rem;
  width: 3rem;
  height: 0.2rem;
  background-color: #fff;
}
.btn-gnav.is-active .btn-gnav-line:nth-child(1) {
  top: 2rem;
  transform: rotate(45deg);
}
.btn-gnav.is-active .btn-gnav-line:nth-child(2) {
  top: 2rem;
  left: 2rem;
  width: 0;
}
.btn-gnav.is-active .btn-gnav-line:nth-child(3) {
  top: 2rem;
  transform: rotate(-45deg);
}

@media screen and (max-width: 600px) {
  .btn-gnav {
    display: block;
  }
}
.gnav-window-sp {
  position: fixed;
  top: -100dvh;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 5rem 4rem;
  width: 100vw;
  height: 100dvh;
  background-color: #006e32;
  transition: top 0.3s;
}
.gnav-window-sp.is-active {
  top: 0;
}
.gnav-window-sp .gnav-list {
  display: flex;
  flex-flow: column;
  gap: 3.2rem 0;
  width: 100%;
}
.gnav-window-sp .gnav-items {
  width: 100%;
  font-size: 2rem;
}
.gnav-window-sp .gnav-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.gnav-window-sp .gnav-title::after {
  content: "\ea4e";
  font-family: "Remixicon";
  font-size: 3.2rem;
}

@media screen and (max-width: 600px) {
  .gnav-window-sp {
    display: flex;
  }
}
.btn_topagetop {
  display: none;
  position: fixed;
  bottom: 0.5rem;
  right: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s; /* フェードイン・アウトのアニメーション */
}
.btn_topagetop.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 600px) {
  .btn_topagetop {
    bottom: 1.3333333333vw;
    right: 1.3333333333vw;
  }
}
@media print {
  .btn_topagetop {
    display: none;
    visibility: hidden;
  }
}
.btn_topagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 14px;
  width: 50px;
  height: 50px;
  font-size: 5rem;
  line-height: 1;
  color: #ffffff;
  background-color: #cccccc;
  border: 1px solid #cccccc;
  border-radius: 5px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn_topagetop a:hover {
  text-decoration: none;
  color: #cccccc;
  background-color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .btn_topagetop a {
    padding-top: 1.1666666667vw;
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (max-width: 600px) {
  .btn_topagetop a {
    padding-top: 3.7333333333vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.btn_topagetop a > span {
  width: 24px;
  height: 24px;
  text-indent: 120%;
  white-space: nowrap;
  overflow: hidden;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
}

@media screen and (max-width: 1200px) {
  .btn_topagetop a > span {
    width: 2vw;
    height: 2vw;
  }
}
@media screen and (max-width: 600px) {
  .btn_topagetop a > span {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.btn_topagetop a:hover > span {
  border-color: #ccc;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero .section_def {
  padding-top: 9rem;
}
.hero .areas_def {
  position: relative;
  height: 40rem;
  background-color: transparent;
}
.hero-title {
  margin-bottom: 3.2rem;
  font-size: 8rem;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  line-height: 1;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
}
.hero-text {
  margin: 0 0 0 10rem;
  width: 50rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
}

@media screen and (max-width: 600px) {
  .hero .areas_def {
    height: 60rem;
  }
  .hero-title {
    margin-bottom: 3.2rem;
    font-size: 4.8rem;
  }
  .hero-text {
    margin: 0;
    width: auto;
  }
}
.mainslide {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
}

.swiper-slide {
  overflow: hidden;
}
.swiper-slide img {
  transform: scale(1.05);
  filter: saturate(0%);
}

@media screen and (max-width: 600px) {
  .swiper-slide img {
    height: 70rem;
    width: auto;
    object-fit: cover;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1.05);
    filter: saturate(0%);
  }
  100% {
    transform: scale(1);
    filter: saturate(100%);
  }
}
.swiper-slide-active img,
.swiper-slide-duplicate-active img,
.swiper-slide-prev img {
  animation: zoomUp 7s linear 0s normal both;
}

.works-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4.8rem 5%;
}
.works-items {
  display: flex;
  flex-direction: column;
  width: 30%;
}
.works-fig {
  height: 24rem;
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 0.8rem;
}
.works-detail {
  position: relative;
}
.works-explist {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  line-height: 1.5;
}
.works-exphead {
  padding: 0.8rem 0;
  width: 26%;
  font-size: 1.3rem;
  border-bottom: 1px solid #ccc;
}
.works-exptext {
  padding: 0.8rem 0;
  width: 74%;
  font-size: 1.4rem;
  color: #000;
  border-bottom: 1px solid #ccc;
}
.works-expsublist {
  position: relative;
}
.works-expsubitem {
  padding-left: 1em;
  text-indent: -1em;
}
.works-expsubitem::before {
  content: "・";
}
.works-current {
  margin-bottom: 6.4rem;
}
.works-past {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4.8rem 5%;
}
.works-past .works-explist {
  width: 30%;
  border-top: 1px solid #ccc;
}

@media screen and (max-width: 600px) {
  .works-items {
    width: 100%;
  }
  .works-fig {
    height: 22rem;
  }
  .works-past {
    display: flex;
  }
  .works-past .works-explist {
    width: 100%;
  }
}
.slills {
  display: flex;
  justify-content: center;
  margin-bottom: 4.8rem;
}
.slills-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 70%;
  line-height: 1.75;
  border-top: 1px solid #ccc;
}
.slills-head {
  padding: 0.8rem 0;
  width: 25%;
  font-size: 1.4rem;
  border-bottom: 1px solid #ccc;
}
.slills-body {
  padding: 0.8rem 0;
  width: 75%;
  font-size: 1.6rem;
  color: #000;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 600px) {
  .slills-list {
    width: 100%;
  }
}
.about {
  display: flex;
  justify-content: center;
  margin-bottom: 4.8rem;
}
.about-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 70%;
  line-height: 1.75;
  border-top: 1px solid #ccc;
}
.about-head {
  padding: 0.8rem 0;
  width: 25%;
  font-size: 1.4rem;
  border-bottom: 1px solid #ccc;
}
.about-body {
  padding: 0.8rem 0;
  width: 75%;
  font-size: 1.6rem;
  color: #000;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 600px) {
  .about-list {
    width: 100%;
  }
}
/* Icon */
.icontoggle-plus {
  position: relative;
  width: 2rem;
  height: 2rem;
}
.icontoggle-plus::before {
  content: "";
  position: absolute;
  background-color: #333;
  width: 0.2rem;
  height: 2rem;
  top: 0;
  left: 0.9rem;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.icontoggle-plus::after {
  content: "";
  position: absolute;
  background-color: #333;
  transition: transform 0.3s ease;
  width: 2rem;
  height: 0.2rem;
  top: 0.9rem;
  left: 0;
}

.question {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  padding: 1.6rem;
  background-color: #f5f5f5;
  cursor: pointer;
}
.question::-webkit-details-marker {
  display: none;
}
.question-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  background-color: #555;
  border-radius: 2.4rem;
}
.question-text {
  flex: 1;
}
.question-toggleicon {
  position: relative;
  width: 2rem;
  height: 2rem;
}
.question-toggleicon::before {
  content: "";
  position: absolute;
  background-color: #333;
  width: 0.2rem;
  height: 2rem;
  top: 0;
  left: 0.9rem;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.question-toggleicon::after {
  content: "";
  position: absolute;
  background-color: #333;
  transition: transform 0.3s ease;
  width: 2rem;
  height: 0.2rem;
  top: 0.9rem;
  left: 0;
}

.faq-item[open] .question-toggleicon::before {
  transform: scaleY(0);
}

.answer-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3.2rem;
  height: 3.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #555;
  background-color: #fff;
  border: 1px solid #555;
  border-radius: 2.4rem;
}
.answer-text {
  flex: 1;
}
.answer .faq-cont {
  padding: 1.6rem;
}

/* Animation */
@keyframes custom-fade-in-up {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
[data-aos=custom-fade-in-up].aos-animate {
  animation-name: custom-fade-in-up;
  animation-duration: 1s; /* この行を追加 */
  animation-fill-mode: forwards; /* アニメーション終了時の状態を保持する */
}

/* ビューポート外のデフォルト表示 */
[data-aos=custom-fade-in-up] {
  opacity: 0;
  transform: translateY(10px);
  transition-property: transform, opacity;
  /* AOSのデフォルト値を上書きすることでスムーズな遷移を実現 */
}

/* 子要素であるテキスト（一文字単位）のスタイル */
[data-aos=aos-custom-delaytext] .char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* アニメーション中の文字の最終スタイル */
[data-aos=aos-custom-delaytext].aos-animate .char {
  opacity: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clearfix:before {
  content: "";
  display: block;
  clear: both;
}

.clearfix {
  display: block;
}

.mb_0 {
  margin-bottom: 0 !important;
}

.mb_10 {
  margin-bottom: 1rem !important;
}

.mb_20 {
  margin-bottom: 2rem !important;
}

.mb_30 {
  margin-bottom: 3rem !important;
}

.mb_40 {
  margin-bottom: 4rem !important;
}

.mb_50 {
  margin-bottom: 5rem !important;
}

.mb_50_23 {
  margin-bottom: 5rem !important;
}

.mb_50_30 {
  margin-bottom: 5rem !important;
}

.mb_50_40 {
  margin-bottom: 5rem !important;
}

.mb_60 {
  margin-bottom: 5rem !important;
}

.mb_70 {
  margin-bottom: 5rem !important;
}

.mb_80 {
  margin-bottom: 5rem !important;
}

.mb_90 {
  margin-bottom: 5rem !important;
}

.mb_100 {
  margin-bottom: 10rem !important;
}

@media screen and (max-width: 600px) {
  .mb_50_23 {
    margin-bottom: 2.3rem !important;
  }
  .mb_50_30 {
    margin-bottom: 3rem !important;
  }
  .mb_50_40 {
    margin-bottom: 4rem !important;
  }
}
.mb_30_15 {
  margin-bottom: 3rem !important;
}

.mb_20_10 {
  margin-bottom: 2rem !important;
}

@media screen and (max-width: 600px) {
  .mb_30_15 {
    margin-bottom: 1.5rem !important;
  }
  .mb_20_10 {
    margin-bottom: 1rem !important;
  }
}
.mb_70_100 {
  margin-bottom: 7rem !important;
}

@media screen and (max-width: 600px) {
  .mb_70_100 {
    margin-bottom: 10rem !important;
  }
}
.pad_18_0 {
  padding: 0 1.8rem !important;
}

.pad_20_0 {
  padding: 0 0 0 2rem !important;
}

@media screen and (max-width: 600px) {
  .pad_18_0 {
    padding: 0 !important;
  }
  .pad_20_0 {
    padding: 0 !important;
  }
}
.small_t1 {
  font-size: 0.6666666667em;
  vertical-align: 0.2rem;
}

.fw_300 {
  font-weight: 300;
}

.fw_400 {
  font-weight: 400;
}

.fw_500 {
  font-weight: 500;
}

.fw_700 {
  font-weight: 700;
}

.fw_900 {
  font-weight: 900;
}

.talgn_l {
  text-align: left !important;
}

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

.talgn_c {
  text-align: center !important;
}

.talgn_ctol {
  text-align: center !important;
}

@media screen and (max-width: 600px) {
  .talgn_ctol {
    text-align: left !important;
  }
}
.uppercase {
  text-transform: uppercase;
}

.wspace_1em {
  word-spacing: 0.1em;
}

.wspace_2em {
  word-spacing: 0.2em;
}

.wspace_3em {
  word-spacing: 0.3em;
}

.wspace_4em {
  word-spacing: 0.4em;
}

.wspace_5em {
  word-spacing: 0.5em;
}

.br_pc {
  display: inline;
}

.br_sp {
  display: none;
}

@media screen and (max-width: 600px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: inline;
  }
}
.wdt_100p {
  width: 100% !important;
}

.wdt_6rem {
  width: 6rem;
}

.wdt_38rem_100 {
  width: 38rem;
}

@media screen and (max-width: 600px) {
  .wdt_38rem_100 {
    width: 100%;
  }
}
.flexwrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.flexwrap_no {
  flex-wrap: nowrap;
}

.jcont_c {
  justify-content: center;
}

.jcont_b {
  justify-content: space-between;
}

.alignitem_c {
  align-items: center;
}

.alignitem_s {
  align-items: flex-start;
}

.alignitem_e {
  align-items: flex-end;
}

.justify_left {
  justify-content: flex-start !important;
}

.justify_right {
  justify-content: flex-end !important;
}

.justify_center {
  justify-content: center !important;
}

.justify_left_center {
  justify-content: flex-start !important;
}

.justify_right_center {
  justify-content: flex-end !important;
}

@media screen and (max-width: 600px) {
  .justify_left_center {
    justify-content: center !important;
  }
  .justify_right_center {
    justify-content: center !important;
  }
}
.alignitem_center {
  align-items: center !important;
}

.alignitem_end {
  align-items: flex-end !important;
}

.direction_rev {
  flex-direction: row-reverse;
}

.templink:hover {
  text-decoration: none;
}

.btn-gnav {
  z-index: 101;
}

.gnav-window-sp {
  z-index: 100;
}

.hero .areas_def {
  z-index: 10;
}

.g_header {
  z-index: 99;
}

.btn_topagetop {
  z-index: 50;
}

.print_on {
  display: none;
}

.print_mv {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(12px);
}
.print_mv img {
  filter: blur(8px);
}

@media print {
  .mainslide {
    visibility: hidden;
  }
  .print_mv {
    display: block;
  }
  .print_on {
    display: block;
  }
  .print_off {
    display: none;
  }
  .print_pt32 {
    padding-top: 3.2rem;
  }
  .print_mb30 {
    margin-bottom: 0rem !important;
  }
  .pagebreakafter {
    page-break-after: always;
  }
  .pagebreakafter_avoid {
    page-break-after: avoid;
  }
  .pagebreakbefore {
    page-break-before: always;
  }
  .pagebreakbefore_avoid {
    page-break-before: avoid;
  }
  body {
    font-weight: 300;
  }
  .g_header {
    position: relative;
    display: none;
  }
  .g_footer {
    display: none;
  }
  * {
    border-color: #666 !important;
    border-width: 1px !important;
  }
}