@charset "utf-8";

*	{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    outline: none !important;
    line-height: 187.5%;
    color: #333;
}

.inview.slideInUp {
    visibility: hidden;
    transform: translateY(40vw);
    transition: transform 0.5s ease-out;
}

.inview.slideInUp.is-show {
    visibility: visible;
    transform: translateY(0);
}
/* fonts */

.sansserif *  {
    font-family: "Noto Sans JP", sans-serif !important;
}

.lora * {
  font-family: "Lora", serif !important;
}

.inter * {
  font-family: "Inter", sans-serif !important;
}

.dmsans * {
  font-family: "DM Sans", sans-serif !important;
}

.roboto-condensed * {
  font-family: "Roboto Condensed", sans-serif !important;
}

.fustat * {
  font-family: "Fustat", sans-serif !important;
}

.sansserif  {
    font-family: "Noto Sans JP", sans-serif !important;
}

.lora {
  font-family: "Lora", serif !important;
}

.inter {
  font-family: "Inter", sans-serif !important;
}

.dmsans {
  font-family: "DM Sans", sans-serif !important;
}

.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif !important;
}

.fustat {
  font-family: "Fustat", sans-serif !important;
}

.weight_thin *   {
    font-weight: 100 !important;
}

.weight_extralight *   {
    font-weight: 200 !important;
}

.weight_light *   {
    font-weight: 300 !important;
}

.weight_normal *   {
    font-weight: 400 !important;
}

.weight_medium *   {
    font-weight: 500 !important;
}

.weight_semibold *   {
    font-weight: 600 !important;
}

.weight_bold *   {
    font-weight: 700 !important;
}

.weight_extrabold *   {
    font-weight: 800 !important;
}

.weight_black *   {
    font-weight: 900 !important;
}

.weight_thin   {
    font-weight: 100 !important;
}

.weight_extralight   {
    font-weight: 200 !important;
}

.weight_light   {
    font-weight: 300 !important;
}

.weight_normal   {
    font-weight: 400 !important;
}

.weight_medium   {
    font-weight: 500 !important;
}

.weight_semibold   {
    font-weight: 600 !important;
}

.weight_bold   {
    font-weight: 700 !important;
}

.weight_extrabold   {
    font-weight: 800 !important;
}

.weight_black   {
    font-weight: 900 !important;
}

/* responsive */

.sp {
    display: none !important;
}

/* box/layout */


.flex   {
    display: flex;
}

.flex_column    {
    flex-direction: column;
}

.flex_wrap  {
    flex-wrap: wrap;
}

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

.justify_center   {
    justify-content: center;
}

.align_middle {
    align-items: center;
}

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

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

.text-right {
    text-align: right;
}

/* color */

.white,
.white *  {
    color: #fff;
}

.orange,
.orange * {
  color: #ED5C00;
}

.bg_gray  {
  background-color: #666666 !important;
}

/* common */

img {
    max-width: 100%;
}

body    {
    background-color: #ECECEC;
}

.inner  {
    max-width: 1440px;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* header */

header  {
    max-width: 1440px;
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border-bottom: 1px solid #CCCCCC;
    z-index: 5;
}

header .logoarea    {
    flex: 1;
    padding: 20px;
}

header .logoarea img    {
    max-width: 77.5px;
    width: 100%;
}
header .navarea ul.flex {
    gap: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
}

header .buttonarea  {
    
}

header .buttonarea a   {
    aspect-ratio: 1/1;
    background-color: #000;
    width: 100px;
}

header .buttonarea .contact img {
    width: 30px;
    margin-top: 8px;
}
header .buttonarea .menu  {
  display: none;
}
header .buttonarea .menu a    {
    background-color: #ED5C00;
}

/* main */

main   {
    position: relative;
    padding: 40px 0 100px;
}

main:has(.sec_list) {
  padding-bottom: 0;
}

main > ul.slides li {
    aspect-ratio: 375/250;
    background-color: #ddd;
}

main > ul.slides li:nth-of-type(2n) {
    background-color: #f9f9f9;
}
main > section.sec  {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 38px;
  padding-right: 38px;
  position: relative;
  z-index: 2;
}

main:before    {
    content: "";
    display: block;
    background-color: #fff;
    border-left: 1px solid rgba(205, 205, 205, 0.5);
    border-right: 1px solid rgba(205, 205, 205, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 0;
    width: 124px;
    height: calc(100% + 200px);
}

/* footer */

footer  {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
footer .actionarea  {
    background-color: #000;
    padding: 40px 6.94% 58px;
    margin-bottom: 40px;
}

footer .actionarea .inner   {
    gap: 38px;
}

footer .actionarea .inner .col  {
    width: 50%;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
    align-items: center;
}

footer .actionarea .inner .col h3  {
    color: #FF8030;
    border-bottom: 1px solid #999999;
    padding: 0 0 20px;
    width: 100%;
}

footer .actionarea .inner .col .footer_action_button    {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 80px;
    max-width: 500px;
    width: 100vw;
}

footer .actionarea .inner .col .footer_action_button:hover  {
  background-color: #EB5C01;
}
footer .actionarea .inner .col .footer_action_text  {
    line-height: 171%;
    min-height: 82px;
}

footer .footerinfo  {
    background-color: #fff;
    padding: 30px 38px;
}

footer .footerinfo .logoarea    {
    padding-left: 25px;
    gap: 20px;
    line-height: 28px;
}
footer .footerinfo .sns_copy ul {
    gap: 30px;
    margin-bottom: 25px;
}

footer .footerinfo .sns_copy img    {
    height: 30px;
}

footer .footerinfo p   {
    color: #666666;
}
footer .footerinfo .sns_copy p:first-of-type    {
    margin-bottom: 20px;
}

/* parts */

.graybutton {
    transition: background-color 0.5s ease-out;
    background-color: #666;
}

.graybutton:hover  {
  background-color: #EB5C01;
}

.arrow_button {
  background-color: #666;
  background-image: url(../images/arrow_r.png);
  background-repeat: no-repeat;
  background-size: auto 12px;
  background-position: right 20px center;
  display: block;
  max-width: 400px;
  width: 100%;
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
}
/* subpage */

.sub .key    {
    position: relative;
    z-index: 2;
}

.sub .key > img {
  object-fit: cover;
  object-position: center center;
  width: auto;
  height: 100%;
}

.sub .key video   {
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.sub .key .inner {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
}

.sub .key .inner .titlearea {
    background-color: #fff;
    width: 39.5vw;
    max-width: 570px;
    height: 100%;
    padding-top: 100px;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.sub .key .inner .titlearea h2  {
    order: 2;
    gap: 20px;
}
.sub .key .inner .titlearea .title_en   {
    order: 1;
    border-bottom: 1px solid #ED5C00;
    width: 100px;
    line-height: 1;
    padding:0 0 19px;
}

@media screen and (max-width: 834px)  {
    
    *	{
        font-size: 3.56vw;
    }

    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

    .sp.flex {
        display: flex !important;
    }
    
    .sp.inline,

    br.sp   {
        display: inline-block !important;
    }
    
    header  {
      height: 25.45vw;
    }
    
    header .buttonarea a  {
      width: 25.45vw;
    }
    header .navarea {
      display: none;
    }
    
    .sub main:before    {
        width: 38.17vw;
    }

    footer .actionarea,
    footer .footerinfo  {
        padding-left: 5.08vw;
        padding-right: 5.08vw;
    }
    
    footer .actionarea .inner {
      flex-direction: column;
    }
    
    footer .actionarea .inner .col  {
      width: 100%;
    }
    
    footer .actionarea .inner .col > *  {
        width: 100%;
    }
    
    footer .actionarea .inner .col .footer_action_button  {
      width: 100%;
    }
    
    footer .footerinfo .logoarea    {
        padding-left: 0;
    }
    footer .footerinfo .inner.flex  {
        flex-direction: column;
        gap: 13.99vw;
    }
    footer .footerinfo .logoarea    {
        align-items: flex-start;
    }
    
    footer .footerinfo .logoarea p:not(:has(img))  {
        flex: 1;
        position: relative;
        top: -2.54vw;
    }
    
    footer .footerinfo .logoarea p:has(img)    {
        width: 19.08vw;
    }
    
    footer .footerinfo .sns_copy ul {
        justify-content: center;
    }
    
    footer .footerinfo .sns_copy img    {
        height: 10.18vw;
    }

    .sub .key    {
      width: 100vw;
      margin-top: 25.45vw;
      height: calc(100vh - 25.45vw);
      overflow: clip;
    }
    
    .sub .key > img {
      aspect-ratio: 393/700;
      max-width: none;
    }
    .sub .key .inner    {
        align-items: center;
        top: 0;
        bottom: 0;
        margin-top: auto;
        margin-bottom: 0;
        height: calc(100vh - 25.45vw);
    }
    .sub .key .inner .titlearea {
        width: 100%;
        height: 40vw;
        min-height: 150px;
        gap: 2.54vw;
        justify-content: flex-start;
    }   
    
    .sub .key .inner .titlearea h2  {
        gap: 0;
    }
    
    main > section.sec  {
        padding-left: 10.18vw;
        padding-right: 10.18vw;
    }

    main > section.sec.sec_list {
      flex-direction: column !important;
    }
}