@charset "UTF-8";

:root {
  --Gray1: #f8f8f8;
  --Gray2: #efefef;
  --Gray3: #b1b1b1;
  --Green: #519714;
  --Yellow: #FECB00;
  --Red: #bb4000;
  --Blue1: #e8f2fc;
  --Blue2: #2275c8;
  --Blue3: #034c95;
  --White: #ffffff;
  --Black: #202020;
  --Rajdhani: 'Rajdhani',sans-serif;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, address, em, img, small, strong, sub, sup, b, i, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, figure, figcaption, footer, header, nav, section, time, audio, video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 400;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
}

html {
  font-size: 62.5%;
  line-height: 1.15;
}

@media print {
  html {
    font-size: 40%;
  }
}

/*************************/
@media screen and (max-width: 991px) {
  html, body {
    min-width: 100%;
    height: 100%;
  }
}

/*************************/
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow: auto;
  width: 100%;
  min-width: 320px;
  /* max-width: 1680px; */
  margin: auto;
  letter-spacing: 0.1em;
  color: var(--Black);
  background: var(--White);
  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*************************/
@media screen and (max-width: 991px) {
  body {
    font-size: 1.6rem;
    font-weight: 400;
  }
}

/*************************/
a {
  transition: 0.2s ease-in-out;
  text-decoration: none;
  color: var(--Blue2);
  background-color: transparent;
}
a:hover {
  color: #333;
}
button {
  transition: 0.2s ease-in-out;
}
figure {
  margin: 0 0 1rem;
}
iframe {
  max-width: 100%;
  height: auto;
}
ol, ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
}
sup {
  font-size: 1rem;
  font-weight: bold;
  position: relative;
  top: -0.5em;
  left: 0.5em;
}
img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
}
.wrap {
  position: relative;
  overflow-x: hidden;
  width: 100%;
}
.sp-only {
  display: none;
}
p + p {
  margin-top: 2rem;
}

/*************************/
@media screen and (max-width: 991px) {
  .sp-only {
    display: block;
  }
}

/*************************/

/* =======================================================
   LOADER
======================================================== */
#loading {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
}
.loaded {
  visibility: hidden;
  opacity: 0;
}

body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}
/* =======================================================
   HEADER
======================================================== */
header {
  position: relative;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  padding:  0 clamp(2vw,3.333vw,40px);
  transition: all .3s;
}

/*************************/
@media screen and (max-width: 767px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
  }
}
/*************************/

.header-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 145px auto;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "header-logo gNavi";
  align-items: center;
  justify-content: space-between;
  line-height: 1.4;
}
.header-logo {
  display: block;
  width: clamp(190px,16.406vw,210px); /*1280*/
}
/*************************/
@media screen and (max-width: 767px)
{
  .header-logo {
    width: clamp(160px,24.772vw,190px); /*767*/
  }
}
/*************************/



/* =======================================================
   gNavi
======================================================== */

/*************************/
@media screen and (min-width: 768px)
{
  .gNavi {
    grid-area: gNavi;
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-gap: 0 clamp(32px,3.906vw,50px); /*1280*/
    height: 100px;
    align-items: center;
    justify-self: end;
  }
  .contact-btn { grid-area: contact-btn; }
  .header-logo { grid-area: header-logo; }
}
/*************************/
@media screen and (max-width: 767px)
{
  .header-inner .gNavi {
    display: none;
  }
  .gNavi {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100vw;
    padding: 40px clamp(2vw,3.333vw,40px);
    height: calc(100vh - 70px);
    background: var(--Black);
    min-width: 320px;
    overflow-y: auto;
  }
  .active .gNavi {
    margin-left: clamp(-40px,-3.333vw,-2vw);
  }
}
/*************************/



/*======== gNavi-menu ==========================*/

/*************************/
@media screen and (min-width: 768px)
{
  .gNavi-menu {
    display: flex;
    align-items: center;
    justify-content: end;
    cursor: pointer;
    height: 100px;
    position: relative;
    transition: all .3s;
  }
  .gNavi-menu:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: clamp(37px,3.359vw,43px); /*1280*/
    background: var(--Black);
    transform: rotate(45deg);
    margin-left: clamp(32px,3.906vw,50px); /*1280*/
  }
  a.gNavi-menu__parent {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "en arrow"
      "ja arrow";
    place-items: center;
    color: var(--Black);
    position: relative;
    justify-content: end;
  }
  .gNavi-menu__parent .en {
    grid-area: en;
    font-family: var(--Rajdhani);
    font-weight: 700;
    font-size: clamp(1.8rem,1.563vw,2rem); /*1280*/
    line-height: 1;
    letter-spacing: 1px;
  }
  
  .gNavi-menu__parent .ja {
    grid-area: ja;
    font-size: 1.2rem;
  }
  .gNavi-menu__parent.current,
  a.gNavi-menu__parent:hover {
    color: var(--Yellow);
  }

}
/*************************/
@media screen and (max-width: 767px)
{
  .gNavi-menu {
    max-width: 600px;
    margin: 0 auto;
  }
  .gNavi-menu:not(:last-child) {
    margin-bottom: 40px;
  }
  .gNavi-menu__parent {
    color: #fff;
    position: relative;
    display: block;
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
    position: relative;
  }
  .gNavi-menu__parent .en {
    font-family: var(--Barlow);
    font-weight: 500;
    font-size: 1.8rem;
  }
  .gNavi-menu__parent .ja {
    font-size: 1.2rem;
    color: var(--Gray3)
  }
  .gNavi-menu__parent .arrow i {
    display: none;
  }
}
/*************************/



/*************************/
@media screen and (max-width: 767px)
{
  header {
    height: 70px;
  }
}
/*************************/

/* =======================================================
   toggle
======================================================== */
.toggle {
  display: none;
}
/*************************/
@media screen and (max-width: 767px)
{
.toggle {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: clamp(2vw,3.333vw,40px);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  width: clamp(70px,5.952vw,100px);
  height: clamp(70px,5.952vw,100px);
  cursor: pointer;
  opacity: 0.6;
}
.toggle span {
  position: relative;
  width: 33px;
  height: 2px;
  transition: all 0.3s;
  background: var(--Black);
}
.toggle span:first-child {
  top: -9px;
}
.toggle span:nth-child(2) {
}
.toggle span:last-child {
  bottom: -9px;
}

/*======== open ==========================*/
  .toggle.open {
    right: 0;
  }
  .toggle.open span:first-child {
    top: 0;
    width: 33px;
    transform: rotate(45deg);
  }
  .toggle.open span:nth-child(2) {
    display: none;
  }
  .toggle.open span:last-child {
    top: -2px;
    width: 33px;
    transform: rotate(-45deg);
  }
}
/*************************/


/*======== header-menu ==========================*/
.header-menu {
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  width: 100%;
  width: min(800px,100%);
  height: 100vh;
  padding: clamp(70px,5.952vw,100px) min(80px,4vw) 0;
  transition: 0.2s ease-in-out;
  pointer-events: none;
  opacity: 0;
  background: rgb(0 0 0 / 88%);
}
.header-menu__item {
  position: relative;
  z-index: 998;
  order: 1;
  width: min(800px,100%);
  margin: 40px auto min(80px,4vw);
}
.header-menu__item ul {
  flex-direction: column;
  height: auto;
}
.header-menu__item ul li::before {
  display: none;
  margin: 0;
  content: '';
}
.header-menu__item ul li {
  line-height: 1;
  width: 100%;
}
.header-menu__item ul li a {
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: min(20px,5vh);
  padding-right: 3px;
  padding-bottom: min(20px,5vh);
  padding-left: 3px;
  color: #fff;
  border-bottom: 1px solid #ddd;
}
.header-menu__item ul li a:hover {
  color: #a38839;
}
.header-menu__item ul li a::after {
  font-family: katachi-font;
  font-size: 1rem;
  content: '\e901';
}

@media screen and (max-width: 1199px) {
  .header-menu__item ul li {
    font-size: 1.4rem;
  }
  .header-menu__item ul li::before {
    display: inline-block;
    margin-left: 2rem;
  }
}
/*************************/

/*======== active ==========================*/
.header-menu.active {
  pointer-events: auto;
  opacity: 1;
}
.header-menu__item ul li:not(:last-child)::after {
  content: '';
}


/* =======================================================
   layout
======================================================== */
section {
  position: relative;
}
.c-sec {
  overflow: hidden;
  margin-bottom: clamp(80px,8.824vw,120px); /*1360*/
}
.cts-wrapper .c-sec:first-of-type {
  padding-top: clamp(80px,10.294vw,140px);
}
.cts-wrapper .c-sec:last-of-type {
  margin-bottom: 0;
}
#news .c-sec {
  margin-bottom: clamp(40px,5.882vw,80px); /*1360*/
}
.c-container {
  width: 100%;
  margin: 0 auto;
}

.-full {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}
.-wide {
  position: relative;
  z-index: 2;
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: clamp(10px,3.333vw,40px); /*1200*/
  padding-left: clamp(10px,3.333vw,40px);
}

.bg-w {
  position: relative;
}
.bg-w::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  opacity: 0.8;
  background: #fff;
}
.page-sec > *, .bg-w > * {
  position: relative;
  z-index: 2;
}
.page-sec:first-child {
  padding-bottom: clamp(100px,8.333vw,140px); /*1680*/
}
.page-sec:not(:first-child):not(.order) {
  padding-top: clamp(100px,8.333vw,140px); /*1680*/
}

.vision .page-sec:nth-child(2) {
  padding-top: clamp(0px,4.762vw,80px); /*1680*/
}
@media screen and (max-width: 599px) {
  main section:first-child {
    padding-top: 60px;
  }
}
/*************************/


/* =======================================================
   cts
======================================================== */
.cts-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}
.cts-wrapper::before {
  content: '';
  position: absolute;
  display: block;
  width: clamp(80px,10.156vw,130px);
  height: 100%;
  background: var(--Black);
  left: -65px;
  top: 0;
  z-index: 2;
}
/*************************/
@media screen and (min-width: 1280px)
{
  .cts-wrapper::before {
    left: calc(50% - 640px - 65px); /* 画面幅が1280pxのときと同じ位置に配置 */
  }
}
/*************************/
@media screen and (max-width: 991px)
{
  .cts-wrapper::after {
    content: '';
  position: absolute;
  display: block;
  width: clamp(80px,10.156vw,130px);
  height: 100%;
  background: var(--Black);
  right: -65px;
  top: 0;
  z-index: 2;
  }
}
/*************************/


.text {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 200px;
  line-height: 2.4;
}
/*************************/
@media screen and (max-width: 1279px)
{
  .text {
    padding-left: 100px;
  }
}
/*************************/
@media screen and (max-width: 991px)
{
  .text {
    padding-left: clamp(16px,3.027vw,30px);
    padding-right: clamp(16px,3.027vw,30px);
    line-height: 1.8
  }
}
/*************************/


/* =======================================================
   btm-contact
======================================================== */
#contact {
  position: relative;
}
#contact::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--Black);
  position: absolute;
  top: 160px;
}
#contact .-wide {
  position: relative;
  z-index: 3;
  background: var(--Gray1);
  padding: clamp(60px,6.25vw,80px) clamp(20px,4.688vw,60px);
  text-align: center;
  font-weight: 500;
}
.btm-contact {
  margin-bottom: clamp(40px,4.688vw,60px);
}
.btm-contact span {
  display: block;
  font-weight: 500;
}
.btm-contact .en {
  font-family: var(--Rajdhani);
  font-size: clamp(3.8rem,5.99vw,4.6rem);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.btm-contact__cts {
  display: flex;
  justify-content: space-between;
}
.btm-contact__cts > div {
  width: 48%;
}
.c-tel p,
.c-mail p {
  margin-bottom: 14px;
}
.c-tel a {
  color: var(--Black);
  font-family: var(--Rajdhani);
  font-size: 4.2rem;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.c-mail .btn {
  text-align: center;
  margin-top: 0;
}
.c-mail .btn a {
  padding: 16px 40px 12px 40px;
}

/*************************/
@media screen and (max-width: 991px)
{
  #contact .-wide {
    z-index: 0;
  }
}
/*************************/
@media screen and (max-width: 767px)
{
  .btm-contact__cts {
    flex-direction: column;
  }
  .btm-contact__cts > div {
    width: 100%;
  }
  .btm-contact {
    border-bottom: 1px solid var(--Black);
    padding-bottom: 40px;
  }
  .c-tel {
    margin-bottom: 40px;
  }
}
/*************************/


/* =======================================================
   bg01
======================================================== */
.bg01 {
  position: relative;
}
.bg01::before {
  content: '';
  position: absolute;
  width: calc(100% + 1.458vw);
  height: 100%;
  background: var(--Gray1);
  top: -1.458vw;
  left: calc((60% - 640px) * -1);
}
/*************************/
@media screen and (max-width: 1279px)
{
  .bg01::before {
    left: -10%;
  }
}
/*************************/
@media screen and (max-width: 991px)
{
  .bg01::before {
    top: -28px;
  }
}
/*************************/

/* =======================================================
   bg02
======================================================== */
.bg02 {
  background: var(--Black);
  padding-top: clamp(80px,8.824vw,120px); /*1360*/
  padding-bottom: clamp(80px,11.765vw,160px); /*1360*/
}
.bg02 .head01 {
  color: #fff;
}
.bg02 .head01 .en::after {
  background: #fff;
}

/* =======================================================
   bg03
======================================================== */
.bg03 {
  position: relative;
}
.bg03::before {
  content: '';
  position: absolute;
  width: calc(100% + 1.458vw);
  height: 100%;
  background: var(--Gray1);
  top: 80px;
  left: calc((60% - 640px) * -1);
}
.bg03.wide::before {
  width: calc(100% + 3.125vw)
}
/*************************/
@media screen and (max-width: 1279px)
{
  .bg03::before {
    left: -10%;
  }
}
/*************************/
@media screen and (max-width: 991px)
{
  .bg03::before {
    top: -28px;
  }
}
/*************************/

/* =======================================================
   bg04
======================================================== */
.bg04 {
  position: relative;

}
.bg04::before {
  content: '';
  position: absolute;
  width: calc(100% - (50% - 640px));
  height: 100%;
  background: var(--Gray1);
  top: 0;
  left: 0;
}
/*************************/
@media screen and (max-width: 1279px)
{
  .bg04::before {
    left: -10%;
  }
}
/*************************/
@media screen and (max-width: 991px)
{
  .bg04::before {
    top: -28px;
  }
}
/*************************/

/* =======================================================
   mfp_buttons
======================================================== */
.mfp_buttons {
  display: inline-block;
  margin-top: 40px;
}

.mfp_buttons button {
  padding: 20px 60px;
}

/* =======================================================
   footer
======================================================== */
footer {
  background: var(--Black);
  padding: clamp(40px,6.054vw,60px) 0 20px;
}
footer,
footer a,
.copy{
  color: #fff;
}
footer a:hover {
  color: var(--Yellow)
}
.f-navi {
  display: flex;
  justify-content: center;
  margin-bottom: 100px;
}
.f-navi li {
  margin: 0 40px;
}

.f-company {
  text-align: center;
  margin-bottom: 100px;
}
.f-company h1 {
  position: relative;
  font-size: 2rem;
  margin-bottom:  10px;
}
.f-company h1::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  top: 50%;
  
}
.f-company h1 span {
  background: var(--Black);
  display: inline-block;
  padding: 10px 30px;
  position: relative;
  z-index: 2;
}
/*************************/
@media screen and (max-width: 767px)
{
  .f-navi {
    display: none;
  }
  .f-company {
    padding-top: 40px;
  }
}
/*************************/
@media screen and (max-width: 599px)
{
  .f-company h1 {
    font-size: 1.8rem;
  }
}
/*************************/


/*== copy ================*/
.copy {
  font-family: var(--Rajdhani);
  font-weight: 500;
  text-align: center;
}


/* =======================================================
   btn
======================================================== */
.btn {
  text-align: right;
  margin-top: 60px;
}
.btn a {
  display: inline-block;
  background: var(--Black);
  color: var(--White);
  font-family: var(--Rajdhani);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 10px 40px 8px 40px;
  white-space: nowrap;
  border: 1px solid;
}
.btn a:hover {
  background: #fff;
  color: var(--Black)
}

.btn a span::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  position: relative;
  top: -2px;
  margin-left: 30px;
  transition: all .2s;
}
.btn a:hover span::after {
  border-color: var(--Black)
}


.btn.-white a {
  background: #fff;
  color: var(--Black);
  font-weight: 500;
}
.btn.-white a span::after {
  border-color: var(--Black);
}
.btn.-white a:hover {
  background: var(--Black);
  color: #fff;
}
.btn.-white a:hover span::after {
  border-color: #fff;
}
/*************************/
@media screen and (max-width: 767px)
{
  .btn {
    text-align: center;
  }
}
/*************************/



/* =======================================================
   head01
======================================================== */
.head01 {
  font-weight: 500;
  line-height: 1.8;
  padding-left: 50px;
  display: flex;
  align-items: center;
  margin-bottom: clamp(20px,3.125vw,60px);
}
.head01 .en {
  font-family: var(--Rajdhani);
  font-size: clamp(3.8rem,5.99vw,4.6rem);
  display: flex;
  align-items: center;
  letter-spacing: 0.1em;
}
.head01 .en::after {
  content: '';
  display: inline-block;
  width: clamp(20px,5.208vw,40px); /*768*/
  height: 1px;
  background: var(--Black);
  margin: 0 clamp(10px,2.604vw,20px); /*768*/
}
/*************************/
@media screen and (max-width: 991px)
{
  .head01 {
    padding-left: clamp(16px,3.027vw,30px)
  }
}
/*************************/


/* =======================================================
   head02
======================================================== */
.head02 {
  padding-left: 50px;
  margin-bottom: clamp(40px,6.25vw,80px);
  position: relative;
}
.head02 .ja {
  display: block;
}
.news-cts .date {
  display: block;
}
.news-cts .head02 .ja {
  font-size: clamp(2rem,2.422vw,2.4rem); /*991*/
}
.head02 .en,
.news-cts .head02 .ja {
  position: relative;
  display: inline-block;
}
.head02 .en {
  font-family: var(--Rajdhani);
  font-size: clamp(3.8rem,3.594vw,4.6rem);
  letter-spacing: 0.1em;
}
.head02 .en::before,
.news-cts .head02 .ja::before {
  content: '';
  display: inline-block;
  width: 140%;
  height: 1px;
  background: var(--Black);
  position: relative;
  top: clamp(40px,3.125vw,50px);
  left: -17%;
}
.bg02 .head02 {
  color: #fff;
}
.bg02 .head02 .en::before {
  background: #fff;
}
/*************************/
@media screen and (max-width: 991px)
{
  .head02 {
    padding-left: clamp(16px,3.027vw,30px)
  }
}
/*************************/

/* =======================================================
   head03
======================================================== */
.head03 {
  font-weight: 500;
  font-size: 1.8rem;
}

/* =======================================================
   head04
======================================================== */
.head04 {
  border-top: 1px solid var(--Black);
  font-size: clamp(2rem,2.22vw,2.2rem); /*991*/
  font-weight: 600;
  padding-top: 10px;
  margin-bottom: clamp(30px,4.412vw,60px);  /*1360*/
}

/* =======================================================
   head04-2
======================================================== */
.head04-2 {
  font-size: clamp(2rem,2.22vw,2.2rem); /*991*/
  font-weight: 600;
  padding-top: 10px;
  margin-bottom: clamp(20px,2.206vw,30px);  /*1360*/
}

/* =======================================================
   head05
======================================================== */
.head05 {
  color: var(--Blue2);
  font-weight: 500;
  font-size: clamp(1.6rem,1.816vw,1.8rem);
  margin-bottom: clamp(20px,2.941vw,40px); /*1360*/
}

/* =======================================================
   head06
======================================================== */
.head06 {
  font-weight: 500;
  background: var(--Gray2);
  padding: 15px 30px;
  font-size: clamp(1.6rem,1.816vw,1.8rem);
  margin-bottom: clamp(20px,2.941vw,40px); /*1360*/
}

/* =======================================================
   head07
======================================================== */
.head07 {
  font-size: clamp(1.8rem,2.604vw,2rem);
  border-bottom: 2px solid var(--Black);
  padding-bottom: 3px;
  color: var(--Blue2);
  display: inline-block;
  margin-bottom: 20px;
}

/* =======================================================
   head08
======================================================== */
.head08 {
  font-weight: 600;
  margin-bottom: 5px;
}

/* =======================================================
   emphasis
======================================================== */
.emphasis01 {
  display: inline-block;
  margin: 10px 0;
  color: var(--Blue2)
}

/* =======================================================
   MARGIN,PADDIN
======================================================== */
.mt_20 { margin-top: clamp(10px,1.471vw,20px); } /*1360*/

.mt_40 { margin-top: clamp(20px,2.941vw,40px); } /*1360*/

.mt_60 { margin-top: clamp(30px,4.412vw,60px); } /*1360*/

.mt_80 { margin-top: clamp(40px,5.882vw,80px); } /*1360*/

.mb_20 { margin-bottom: clamp(10px,1.471vw,20px); } /*1360*/

.mb_40 { margin-bottom: clamp(20px,2.941vw,40px); } /*1360*/

.mb_60 { margin-bottom: clamp(30px,4.412vw,60px); } /*1360*/

.mb_80 { margin-bottom: clamp(40px,5.882vw,80px); } /*1360*/

.mt_5 { margin-top: 5px; }
.mb_5 { margin-bottom: 5px; }
.mt_10 { margin-top: 10px; }
.mb_10 { margin-bottom: 10px; }

/* =======================================================
   TEXT-ALIGN
======================================================== */
.center {
  text-align: center;
}

/* =======================================================
   LINE-HEIGHT
======================================================== */
.lh-14 {
  line-height: 1.4;
}

/* =======================================================
   FONT
======================================================== */
.ft-small {
  font-size: 90%;
}
.fs_20 {
  font-size: 2rem;
}
.ft_bold {
  font-weight: bold;
}
.under {
  text-decoration: underline;
}

/* =======================================================
   COLOR
======================================================== */
.bg-gray {
  background: var(--Gray1);
}
.ft_red {
  color: var(--Red);
}
._blue {
  color: var(--Blue2);
}

/* =======================================================
   DISPLAY
======================================================== */
.dp-ilbk {
  display: inline-block;
}
.dp-bk {
  display: block;
}

/* =======================================================
   only
======================================================== */
.pc-only_767 {
  display: block;
}

/*************************/
@media screen and (max-width: 767px) {
  .pc-only_767 {
    display: none;
  }
}

/*************************/
.sp-only_767 {
  display: none;
}

/*************************/
@media screen and (max-width: 767px) {
  .sp-only_767 {
    display: block;
  }
}

/*************************/
/* =======================================================
   WEB-FONT
======================================================== */
@font-face {
  font-family: 'webfont';
  font-weight: normal;
  font-style: normal;

  src: url('fonts/webfont.eot?txxr3j');
  src: url('fonts/webfont.eot?txxr3j#iefix') format('embedded-opentype'), url('fonts/webfont.ttf?txxr3j') format('truetype'), url('fonts/webfont.woff?txxr3j') format('woff'), url('fonts/webfont.svg?txxr3j#webfont') format('svg');
  font-display: block;
}

[class^='icon-'], [class*=' icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'webfont' !important;
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;

  speak: never;

/* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-download2:before {
  content: "\e900";
}
.icon-uniF479:before {
  content: "\e903";
}
.icon-location:before {
  content: "\e947";
}
.icon-radio-unchecked:before {
  content: "\ea56";
}
.icon-arrow-bold:before {
  content: "\f054";
}
.icon-angle-left:before {
  content: "\f104";
}
.icon-arrow-light:before {
  content: "\f105";
}
.icon-circle:before {
  content: "\f111";
}


.menu-toggle {
  margin-bottom: 30px;
}
/*************************/
@media screen and (min-width: 992px) {
  .menu-toggle ul {
    display: none;
    margin-top: 10px;
  }
}
/*************************/
@media screen and (max-width: 991px) {
  ul.main.menu-toggle .gnavi-cat {
    margin-bottom: 15px;
    padding-right: 0;
    padding-left: 0;
  }
  .menu-toggle ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    padding-top: 20px;
    border-top: 1px dashed #fff;
  }
}
/*************************/
/* =======================================================
   Inview
======================================================== */
.Inview {
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
  opacity: 0;
}
.active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

/* =======================================================
   page-top
======================================================== */
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 5;
}
.page-top__img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--Black);
  border-radius: 50%;
  position: relative;
  background: #fff;
  color: var(--Black);
  transition: 0.2s ease-in-out;
}
.page-top__img::before {
  display: block;
  font-family: webfont;
  font-size: 2.4rem;
  content: "\f105";
  transform-origin: 50% 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) rotate(-90deg);
}

.page-top__img:hover {
  background: var(--Black);
  color: #fff;
}
/*************************/
@media screen and (max-width: 991px) {
  #page-top {
    display: none;
  }
}
/*************************/
