@charset "utf-8";

/****************************************
 * Base
 ****************************************/
:root{
  --scrollbar-width: 16px;
  --100vw: calc(100vw - var(--scrollbar-width));
  --main-inner: min(var(--100vw) - 10rem, 136.6rem);
  --side-margin: calc((var(--100vw) - var(--main-inner)) / 2);
  --header-height: 13.1rem;
  --text-color: #333;
  --color-darkbrown: #4A4038;
  --color-orange: #FF9547;
  --color-lightorange: #FFEBE3;
  --color-red: #D24351;
  --color-yellow: #F2F220;
  --color-white: #FFF;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-family-en: "Oswald", sans-serif;
  --main-gradient-deg: 90deg;
  --main-gradient: linear-gradient(var(--main-gradient-deg),  var(--color-orange) 0%, var(--color-red) 100%);
  --button-main-gradient: linear-gradient(var(--main-gradient-deg), var(--color-red) 0%, var(--color-orange) 50%, var(--color-red) 100%);
  --main-border-radius: 4rem;
  --font-family-ja: "Noto Sans JP", sans-serif;
  --scroll-margin: 100px;
}

html{
  font-size: 62.5%;
}
body{
  font-size: 1.6em;
  color: var(--text-color);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-ja);
  background-color: var(--color-white);
}
:target[id]{
  scroll-margin-top: var(--scroll-margin);
}
:where(a){
  font-size: inherit;
  color: inherit;
}
@media (width <= 1280px){
  :where(img, picture, video){
    max-width: 100%;
    height: auto;
  }
}
@media (width <= 1080px){
  :root{
    --header-height: 8rem;
  }
}
@media (width <= 768px){
  :root{
    --scrollbar-width: 0px;
    --main-inner: min(var(--100vw) - 4rem, 64rem);
    --header-height: 8.6rem;
    --main-border-radius: 2rem;
    /* --scroll-margin: 100px; */
  }
}

/****************************************
 * Layout
 ****************************************/
.l-header{
  display: grid;
  grid-auto-columns: 1fr max-content;
  grid-template-areas: 
    "logo cta"
    "nav nav";
  justify-content: center;
  align-items: center;
  row-gap: 2rem;
  width: 100%;
  padding-top: 2.1rem;
  padding-right: var(--side-margin);
  padding-left: var(--side-margin);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: 0px 3px 6px rgb(0 0 0 / 0.16);
}
.l-header__logo-container{
  grid-area: logo;
  display: flex;
  align-items: center;
  column-gap: 2rem;
  padding-top: 0.4rem;
}
.l-header__logo img{
  height: auto;
}
.l-header__logo-description{
  font-size: 1.4rem;
}

.l-header__cta{
  grid-area: cta;
  display: flex;
  column-gap: 2rem;
}
.l-header__cta-company{
  --this-hover-text-color: var(--color-white);
  --this-hover-bg-color: var(--color-orange);
  --this-hover-border-color: var(--this-hover-bg-color);
  width: 16.3rem;
  height: 4.8rem;
  font-size: 1.6rem;
  color: var(--color-orange);
  font-weight: var(--font-weight-medium);
}

.l-header__cta-company::after{
  margin-right: 2rem;
}
.l-header__cta-contact{
  --this-hover-text-color: var(--color-white);
  width: 18.7rem;
  height: 4.8rem;
  font-size: 1.8rem;
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  border-width: 0;
  background-image: var(--button-main-gradient);
}
.l-header__cta-contact::after{
  margin-right: 2rem;
}

.l-header__nav{
  grid-area: nav;
}
.l-header__nav-list{
  list-style-type: none;
  display: flex;
  column-gap: clamp(4rem, 7vw, 7.5rem);
  justify-content: center;
}
.l-header__nav-item{
  padding: 0 0 1.5rem;
  position: relative;
  color: var(--text-color);
}
.l-header__nav-item:has(.l-header__nav-link:hover),
.l-header__nav-item:has(.is-current){
  color: var(--color-orange);
}
.l-header__nav-item:has(.is-current)::before{
  content: "";
  display: block;
  width: calc(100% + 1.7rem);
  height: 0.5rem;
  position: absolute;
  bottom: 0;
  left: -0.9rem;
  z-index: 0;
  background-color: currentColor;
  pointer-events: none;
}
.l-header__nav-link{
  text-decoration: none;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  font-weight: var(--font-weight-bold);
}
.l-header__trigger-container{
  display: none;
}
.l-header__nav-trigger{
  cursor: pointer;
  display: flex;
  width: 100%;
  height: 4.4rem;
  padding: 0;
  position: relative;
  border: none;
  background-color: transparent;
  text-indent: var(--100vw);
  white-space: nowrap;
  overflow: hidden;
}
.l-header__nav-trigger > span{
  width: 100%;
}
@media (width <= 1080px){
  .l-header{
    display: flex;
    flex-direction: column;
    padding-bottom: 2.1rem;
  }
  .l-header__logo-container{
    align-self: flex-start;
  }
  .l-header__trigger-container{
    display: block;
    width: 4.4rem;
    position: absolute;
    top: 2.1rem;
    right: var(--side-margin);
    z-index: 5;
  }
  .l-header__nav-trigger::before,
  .l-header__nav-trigger::after,
  .l-header__nav-trigger > span::before{
    content: "";
    display: block;
    width: 3.2rem;
    height: 0.4rem;
    position: absolute;
    left: calc(50% - 1.6rem);
    z-index: 5;
    background-image: var(--main-gradient);
    border-radius: 1rem;
  }
  .l-header__nav-trigger::before{
    top: 0.8rem;
  }
  .l-header__nav-trigger::after{
    top: calc(100% - (0.8rem + 0.4rem));
  }
  .l-header__nav-trigger > span::before{
    top: calc(50% - 0.2rem);
  }
  .nav-open .l-header__nav-trigger::before{
    top: calc(50% - 0.2rem);
    rotate: 45deg;
  }
  .nav-open .l-header__nav-trigger::after{
    top: calc(50% - 0.2rem);
    rotate: -45deg;
  }
  .nav-open .l-header__nav-trigger > span::before{
    opacity: 0;
  }

  body:not(.nav-open) .l-header__cta,
  body:not(.nav-open) .l-header__nav{
    display: none;
  }
  .l-header__cta{
    order: 3;
  }
}
@media (width <= 768px){

  .l-header__logo-container{
    flex-direction: column;
    align-items:flex-start;
    gap: 0.4rem;
  }
  .l-header__logo{
    width: 12rem;
  }
  .l-header__logo-description{
    font-size: clamp(1rem, 2.7vw, 1.4rem);
  }

  .l-header__nav-list{
    flex-direction: column;
    row-gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 0;
  }
  .l-header__nav-item{
    text-align: center;
  }
  .l-header__nav-link{
    font-weight: var(--font-weight-semibold);
  }

  .l-header__cta-contact{
    width: min(45vw, 18.7rem);
    font-size: 1.6rem;
  }
  .l-header__cta-company{
    width: min(39vw, 16.3rem);
    font-size: 1.6rem;
  }

}


.l-news{
  width: var(--main-inner);
  height: 6.5rem;
  color: var(--text-color);
  background-color: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 0.16);
  overflow: hidden;
}
.l-news__item{
  background-color: var(--color-white);
}
.l-news__item-inner{
  display: flex;
  align-items: center;
  column-gap: 6.5rem;
  padding: 1.7rem 2.5rem;
}
.l-news__date{
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-family-en);
  letter-spacing: 0.05em;
}
.l-news__headline{
  flex-grow: 1;
  font-size: 1.8rem;
  /* overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; */
}
@media (width <= 768px){
  .l-news{
    height: auto;
  }
  .l-news__track{
    align-items: stretch;
  }
  .l-news__item{
    /* height: 100%!important; */
    height: auto;
  }
  .l-news__item-inner{
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    column-gap: 2rem;
    height: 100%;
    padding: 1rem 1.2rem 1.2rem 2rem;
  }
  .l-news__date{
    font-size: 1.8rem;
  }
  .l-news__headline{
    /* padding-right: 1em; */
    font-size: 1.6rem;
    white-space: break-spaces;
  }
}


.l-bottom-cta{
  display: flex;
}
.l-bottom-cta__item{
  --this-item-width: min(100%, 50rem);
  --this-side-padding: min(5.2rem);
  flex-basis: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: var(--color-white);
  background-color: var(--color-orange);
  background-image: var(--main-gradient);
}
.l-bottom-cta__heading{
  width: var(--this-item-width);
  margin-bottom: 4.5rem;
  font-size: 3.2rem;
  text-align: center;
  font-weight: var(--font-weight-bold);
}

.l-bottom-corporate{
  padding-right: var(--this-side-padding);
  padding-left: var(--side-margin);
}

.l-bottom-contact{
  padding-right: var(--side-margin);
  padding-left: var(--this-side-padding);
}
.l-bottom-cta__button-link{
  width: min(100%, 50rem);
  height: 10rem;
  color: var(--color-orange);
  font-size: 2.4rem;
  font-weight: var(--font-weight-bold);
  background-color: var(--color-white);
  border-color: var(--color-white);
  border-radius: 10rem;
}
.l-bottom-cta__button-link + .l-bottom-cta__button-link{
  margin-top: 5rem;
}
.l-bottom-corporate__other-link{
  display: flex;
  justify-content: center;
  column-gap: 7.1rem;
  margin-top: 4rem;
  font-weight: var(--font-weight-regular);
}
.l-bottom-contact__tel-box{
  margin-top: 5rem;
}
.l-bottom-contact__tel-heading{
  margin-bottom: 0;
}
.l-bottom-contact__tel-heading > span{
  font-size: 2.4rem;
}
.l-bottom-contact__tel-number{
  font-size: min(5vw, 5.6rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  text-decoration: none;
}
.l-bottom-contact__tel-reception{
  padding-left: 2.3rem;
  font-size: 1.8rem;
  font-weight: var(--font-weight-regular);
  text-align: center;
}

@media (width <= 1080px){
  .l-bottom-cta{
    flex-direction: column;
  }
  .l-bottom-cta__item{
    --this-narrow-padding: 3rem;
    --this-wide-padding: 6rem;
    --this-side-padding: var(--side-margin);
    flex-basis: auto;
  }
  .l-bottom-corporate{
    padding-top: var(--this-wide-padding);
    padding-bottom: var(--this-narrow-padding);
  }
  .l-bottom-contact{
    padding-top: var(--this-narrow-padding);
    padding-bottom: var(--this-wide-padding);
  }
  .l-bottom-cta__heading{
    margin-bottom: 2rem;
  }
  
  .l-bottom-cta__button-link + .l-bottom-cta__button-link{
    margin-top: 2rem;
  }
  .l-bottom-corporate__other-link{
    margin-top: 3rem;
  }
  .l-bottom-contact__tel-box{
    margin-top: 3rem;
    text-align: center;
  }
  .l-bottom-contact__tel-number{
    display: inline-block;
    margin-top: -1.6rem;
    font-size: clamp(2rem, 6vw, 5.6rem);
    
  }
}
@media (width <= 768px){
  .l-bottom-cta__item{
    --this-narrow-padding: 2rem;
    --this-wide-padding: 4rem;
  }
  .l-bottom-cta__heading{
    margin-bottom: 1.2rem;
    font-size: min(6vw, 2.4rem);
    font-weight: var(--font-weight-semibold);
  }
  .l-bottom-contact__tel-heading > span{
    font-size: min(5vw, 2rem);
  }
  .l-bottom-cta__button-link{
    width: min(100%, 32rem);
    height: 6rem;
    font-size: min(5vw, 2rem);
    font-weight: var(--font-weight-semibold);
  }
  .l-bottom-corporate__other-link{
    column-gap: 4rem;
    margin-top: 2rem;
  }

  .l-bottom-contact__tel-number{
    font-size: 2.8rem;
  }
  .l-bottom-contact__tel-reception{
    padding-left: 0;
    font-size: 1.6rem;
  }
}

.l-breadclumb{
  padding: 3rem var(--side-margin);
}
.l-breadclumb__list{
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  padding-left: 0;
  list-style-type: none;
}
.l-breadclumb__item{
  padding-left: 0;
}
.l-breadclumb__item + .l-breadclumb__item{
  position: relative;
}
.l-breadclumb__item + .l-breadclumb__item::before{
  content: ">";
  display: inline-block;
  margin-right: 2rem;
}
.l-breadclumb__item a{
  text-decoration: none;
}
@media (hover: hover){
  .l-breadclumb__item a:hover{
    text-decoration: underline;
  }
}
@media (width <= 1080px){
  .l-breadclumb__list{
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .l-breadclumb__item{
    flex-shrink: 0;
  }
}
@media (width <= 768px){
  .l-breadclumb{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .l-breadclumb__list{
    column-gap: 1rem;
  }
  .l-breadclumb__item{
    font-size: 1.4rem;
  }
  .l-breadclumb__item + .l-breadclumb__item::before{
    margin-right: 1rem;
  }
}

.l-footer{
  padding-top: 6rem;
  padding-bottom: 1.6rem;
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-darkbrown);
}
.l-footer__app-list{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 3rem;
  width: 26rem;
  margin: 2.5rem auto 0;
  padding-left: 0;
  list-style-type: none;
}
.l-footer__app-item{
  flex-basis: 6.4rem;
}

.l-footer__copyright{
  margin-top: 7.3rem;
  font-size: 1.6rem;
  font-weight: var(--font-weight-regular);
}

@media (width <= 768px){
  .l-footer{
    padding-top: 4rem;
  }
  .l-footer__app-list{
    column-gap: 1rem;
    margin-top: 1rem;
  }
  .l-footer__app-item{
    flex-basis: 4.4rem;
  }
  .l-footer__copyright{
    margin-top: 4rem;
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }
}

/****************************************
 * Component
 ****************************************/
:where(.c-button-plain, .c-button-chevron){
  align-items: center;
  justify-content: center;
  border-radius: 4rem;
  border-width: 0.2rem;
  border-color: currentColor;
  border-style: solid;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  background-size: 200% 100%;
  background-position: 100%  0%;
}
:where(.c-button-plain){
  display: inline-flex;
}
:where(.c-button-chevron){
  display: inline-grid;
  grid-template-columns: 1fr auto;
  justify-content: center;
  text-align: center;
}
:where(.c-button-chevron) > span{
  display: inline-block;
  margin-left: 1.4rem;
  margin-bottom: 0.2rem;
}
:where(.c-button-chevron)::after{
  justify-self: flex-end;
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1.6rem;
  background-color: currentColor;
  mask-image: url(./mask-image/chevron.svg);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

:where(.c-link-square){
  display: inline-block;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
:where(.c-link-square__inner){
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
  position: relative;
}
:where(.c-link-square__inner)::before{
  content: "";
  display: inline-block;
  width: 2.8rem;
  height: 2.8rem;
  background-color: var(--color-orange);
  border-radius: 0.4rem;
}
:where(.c-link-square__inner)::after{
  --this-icon-width: 0.8rem;
  --this-icon-height: 1.5rem;
  content: "";
  display: inline-block;
  width: var(--this-icon-width);
  height: var(--this-icon-height);
  position: absolute;
  top: calc(50% - var(--this-icon-height) / 2);
  right: calc(100% - (1.1rem + var(--this-icon-width)));
  z-index: 5;
  background-color: var(--color-white);
  mask-image: url(./mask-image/chevron.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
}
@media (hover: hover){
  :where(.c-button-plain, .c-button-chevron){
    transition: all 200ms ease 0s;
  }
  .c-button-plain:hover, .c-button-chevron:hover{
    /* --main-gradient-deg: 270deg; */
    color: var(--this-hover-text-color);
    background-color: var(--this-hover-bg-color);
    border-color: var(--this-hover-border-color, currentColor);
    background-position: 0% 0%;
  }
  :where(.c-link-square):hover{
    color: var(--color-orange);
  }
}

@media (width <= 768px){
  :where(.c-link-square){
    font-size: 1.6rem;
    font-weight: var(--font-weight-semibold);
  }
  :where(.c-link-square__inner)::before{
    width: 2rem;
    height: 2rem;
  }
  :where(.c-link-square__inner)::after{
    --this-icon-width: 0.4rem;
    --this-icon-height: 0.8rem;
    right: calc(100% - (0.8rem + var(--this-icon-width)));
  }
}